Files
linux-apfs/drivers/gpu/drm/drm_vm.c
T

673 lines
18 KiB
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/**
2005-09-25 14:28:13 +10:00
* \file drm_vm.c
2005-04-16 15:20:36 -07:00
* Memory mapping for DRM
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* \author Rickard E. (Rik) Faith <faith@valinux.com>
* \author Gareth Hughes <gareth@valinux.com>
*/
/*
* Created: Mon Jan 4 08:58:31 1999 by faith@valinux.com
*
* Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <drm/drmP.h>
#include <linux/export.h>
#include <linux/seq_file.h>
2005-04-16 15:20:36 -07:00
#if defined(__ia64__)
#include <linux/efi.h>
#include <linux/slab.h>
2005-04-16 15:20:36 -07:00
#endif
2014-08-29 12:12:33 +02:00
#include <asm/pgtable.h>
2015-03-13 14:51:25 +02:00
#include "drm_internal.h"
2014-08-29 12:12:32 +02:00
#include "drm_legacy.h"
2005-04-16 15:20:36 -07:00
struct drm_vma_entry {
struct list_head head;
struct vm_area_struct *vma;
pid_t pid;
};
2005-07-07 21:03:38 +10:00
static void drm_vm_open(struct vm_area_struct *vma);
static void drm_vm_close(struct vm_area_struct *vma);
2005-04-16 15:20:36 -07:00
static pgprot_t drm_io_prot(struct drm_local_map *map,
struct vm_area_struct *vma)
{
pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__)
if (map->type == _DRM_REGISTERS && !(map->flags & _DRM_WRITE_COMBINING))
tmp = pgprot_noncached(tmp);
else
tmp = pgprot_writecombine(tmp);
2008-03-28 14:23:07 -07:00
#elif defined(__ia64__)
if (efi_range_is_wc(vma->vm_start, vma->vm_end -
vma->vm_start))
tmp = pgprot_writecombine(tmp);
else
tmp = pgprot_noncached(tmp);
2012-08-11 09:32:17 +00:00
#elif defined(__sparc__) || defined(__arm__) || defined(__mips__)
2008-03-28 14:23:07 -07:00
tmp = pgprot_noncached(tmp);
#endif
return tmp;
}
static pgprot_t drm_dma_prot(uint32_t map_type, struct vm_area_struct *vma)
{
pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
#if defined(__powerpc__) && defined(CONFIG_NOT_COHERENT_CACHE)
tmp = pgprot_noncached_wc(tmp);
#endif
return tmp;
}
2005-04-16 15:20:36 -07:00
/**
2008-02-07 16:20:50 +10:00
* \c fault method for AGP virtual memory.
2005-04-16 15:20:36 -07:00
*
* \param vma virtual memory area.
* \param address access address.
* \return pointer to the page structure.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* Find the right map and if it's AGP memory find the real physical page to
* map, get the page, increment the use count and return it.
*/
2015-09-09 16:45:52 +02:00
#if IS_ENABLED(CONFIG_AGP)
2008-02-07 16:20:50 +10:00
static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-04-16 15:20:36 -07:00
{
struct drm_file *priv = vma->vm_file->private_data;
struct drm_device *dev = priv->minor->dev;
2009-02-02 16:55:46 +11:00
struct drm_local_map *map = NULL;
2007-07-11 16:53:40 +10:00
struct drm_map_list *r_list;
2007-07-12 10:26:44 +10:00
struct drm_hash_item *hash;
2005-04-16 15:20:36 -07:00
/*
2005-09-25 14:28:13 +10:00
* Find the right map
*/
2013-12-11 11:34:35 +01:00
if (!dev->agp)
2008-02-07 16:20:50 +10:00
goto vm_fault_error;
2005-04-16 15:20:36 -07:00
2005-09-25 14:28:13 +10:00
if (!dev->agp || !dev->agp->cant_use_aperture)
2008-02-07 16:20:50 +10:00
goto vm_fault_error;
2005-04-16 15:20:36 -07:00
if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash))
2008-02-07 16:20:50 +10:00
goto vm_fault_error;
2007-07-11 16:53:40 +10:00
r_list = drm_hash_entry(hash, struct drm_map_list, hash);
map = r_list->map;
2005-04-16 15:20:36 -07:00
if (map && map->type == _DRM_AGP) {
2008-02-07 16:20:50 +10:00
/*
* Using vm_pgoff as a selector forces us to use this unusual
* addressing scheme.
*/
resource_size_t offset = (unsigned long)vmf->virtual_address -
vma->vm_start;
resource_size_t baddr = map->offset + offset;
2005-04-16 15:20:36 -07:00
struct drm_agp_mem *agpmem;
struct page *page;
#ifdef __alpha__
/*
2005-09-25 14:28:13 +10:00
* Adjust to a bus-relative address
*/
2005-04-16 15:20:36 -07:00
baddr -= dev->hose->mem_space->start;
#endif
/*
2005-09-25 14:28:13 +10:00
* It's AGP memory - find the real physical page to map
*/
list_for_each_entry(agpmem, &dev->agp->memory, head) {
2005-04-16 15:20:36 -07:00
if (agpmem->bound <= baddr &&
2005-09-25 14:28:13 +10:00
agpmem->bound + agpmem->pages * PAGE_SIZE > baddr)
2005-04-16 15:20:36 -07:00
break;
}
2010-08-19 11:39:57 +02:00
if (&agpmem->head == &dev->agp->memory)
2008-02-07 16:20:50 +10:00
goto vm_fault_error;
2005-04-16 15:20:36 -07:00
/*
2005-09-25 14:28:13 +10:00
* Get the page, inc the use count, and return it
*/
2005-04-16 15:20:36 -07:00
offset = (baddr - agpmem->bound) >> PAGE_SHIFT;
page = agpmem->memory->pages[offset];
2005-04-16 15:20:36 -07:00
get_page(page);
2008-02-07 16:20:50 +10:00
vmf->page = page;
2005-04-16 15:20:36 -07:00
2005-09-25 14:28:13 +10:00
DRM_DEBUG
("baddr = 0x%llx page = 0x%p, offset = 0x%llx, count=%d\n",
(unsigned long long)baddr,
agpmem->memory->pages[offset],
(unsigned long long)offset,
2005-09-25 14:28:13 +10:00
page_count(page));
2008-02-07 16:20:50 +10:00
return 0;
2005-09-25 14:28:13 +10:00
}
2008-02-07 16:20:50 +10:00
vm_fault_error:
return VM_FAULT_SIGBUS; /* Disallow mremap */
2005-04-16 15:20:36 -07:00
}
2015-09-09 16:45:52 +02:00
#else
2008-02-07 16:20:50 +10:00
static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-04-16 15:20:36 -07:00
{
2008-02-07 16:20:50 +10:00
return VM_FAULT_SIGBUS;
2005-04-16 15:20:36 -07:00
}
2015-09-09 16:45:52 +02:00
#endif
2005-04-16 15:20:36 -07:00
/**
* \c nopage method for shared virtual memory.
*
* \param vma virtual memory area.
* \param address access address.
* \return pointer to the page structure.
2005-09-25 14:28:13 +10:00
*
2007-05-09 08:57:56 +02:00
* Get the mapping, find the real physical page to map, get the page, and
2005-04-16 15:20:36 -07:00
* return it.
*/
2008-02-07 16:20:50 +10:00
static int drm_do_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-04-16 15:20:36 -07:00
{
2009-02-02 16:55:46 +11:00
struct drm_local_map *map = vma->vm_private_data;
2005-09-25 14:28:13 +10:00
unsigned long offset;
unsigned long i;
struct page *page;
2005-04-16 15:20:36 -07:00
2005-09-25 14:28:13 +10:00
if (!map)
2008-02-07 16:20:50 +10:00
return VM_FAULT_SIGBUS; /* Nothing allocated */
2005-04-16 15:20:36 -07:00
2008-02-07 16:20:50 +10:00
offset = (unsigned long)vmf->virtual_address - vma->vm_start;
2005-04-16 15:20:36 -07:00
i = (unsigned long)map->handle + offset;
2007-03-24 17:55:16 +11:00
page = vmalloc_to_page((void *)i);
2005-04-16 15:20:36 -07:00
if (!page)
2008-02-07 16:20:50 +10:00
return VM_FAULT_SIGBUS;
2005-04-16 15:20:36 -07:00
get_page(page);
2008-02-07 16:20:50 +10:00
vmf->page = page;
2005-04-16 15:20:36 -07:00
2008-02-07 16:20:50 +10:00
DRM_DEBUG("shm_fault 0x%lx\n", offset);
return 0;
2005-04-16 15:20:36 -07:00
}
/**
* \c close method for shared virtual memory.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* \param vma virtual memory area.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* Deletes map information if we are the last
* person to close a mapping and it's not in the global maplist.
*/
2005-07-07 21:03:38 +10:00
static void drm_vm_shm_close(struct vm_area_struct *vma)
2005-04-16 15:20:36 -07:00
{
struct drm_file *priv = vma->vm_file->private_data;
struct drm_device *dev = priv->minor->dev;
struct drm_vma_entry *pt, *temp;
2009-02-02 16:55:46 +11:00
struct drm_local_map *map;
2007-07-11 16:53:40 +10:00
struct drm_map_list *r_list;
2005-04-16 15:20:36 -07:00
int found_maps = 0;
DRM_DEBUG("0x%08lx,0x%08lx\n",
vma->vm_start, vma->vm_end - vma->vm_start);
map = vma->vm_private_data;
2006-02-02 19:37:46 +11:00
mutex_lock(&dev->struct_mutex);
list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
2005-09-25 14:28:13 +10:00
if (pt->vma->vm_private_data == map)
found_maps++;
2005-04-16 15:20:36 -07:00
if (pt->vma == vma) {
list_del(&pt->head);
kfree(pt);
2005-04-16 15:20:36 -07:00
}
}
2005-04-16 15:20:36 -07:00
/* We were the only map that was found */
2005-09-25 14:28:13 +10:00
if (found_maps == 1 && map->flags & _DRM_REMOVABLE) {
2005-04-16 15:20:36 -07:00
/* Check to see if we are in the maplist, if we are not, then
* we delete this mappings information.
*/
found_maps = 0;
list_for_each_entry(r_list, &dev->maplist, head) {
2005-09-25 14:28:13 +10:00
if (r_list->map == map)
found_maps++;
2005-04-16 15:20:36 -07:00
}
2005-09-25 14:28:13 +10:00
if (!found_maps) {
2005-07-10 15:38:56 +10:00
drm_dma_handle_t dmah;
2005-04-16 15:20:36 -07:00
switch (map->type) {
case _DRM_REGISTERS:
case _DRM_FRAME_BUFFER:
2013-08-08 15:41:27 +02:00
arch_phys_wc_del(map->mtrr);
2007-01-08 21:56:59 +11:00
iounmap(map->handle);
2005-04-16 15:20:36 -07:00
break;
case _DRM_SHM:
vfree(map->handle);
break;
case _DRM_AGP:
case _DRM_SCATTER_GATHER:
break;
2005-07-10 14:34:13 +10:00
case _DRM_CONSISTENT:
2005-07-10 15:38:56 +10:00
dmah.vaddr = map->handle;
dmah.busaddr = map->offset;
dmah.size = map->size;
2014-09-10 12:43:51 +02:00
__drm_legacy_pci_free(dev, &dmah);
2005-07-10 14:34:13 +10:00
break;
2005-04-16 15:20:36 -07:00
}
kfree(map);
2005-04-16 15:20:36 -07:00
}
}
2006-02-02 19:37:46 +11:00
mutex_unlock(&dev->struct_mutex);
2005-04-16 15:20:36 -07:00
}
/**
2008-02-07 16:20:50 +10:00
* \c fault method for DMA virtual memory.
2005-04-16 15:20:36 -07:00
*
* \param vma virtual memory area.
* \param address access address.
* \return pointer to the page structure.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* Determine the page number from the page offset and get it from drm_device_dma::pagelist.
*/
2008-02-07 16:20:50 +10:00
static int drm_do_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-04-16 15:20:36 -07:00
{
struct drm_file *priv = vma->vm_file->private_data;
struct drm_device *dev = priv->minor->dev;
struct drm_device_dma *dma = dev->dma;
2005-09-25 14:28:13 +10:00
unsigned long offset;
unsigned long page_nr;
struct page *page;
2005-04-16 15:20:36 -07:00
2005-09-25 14:28:13 +10:00
if (!dma)
2008-02-07 16:20:50 +10:00
return VM_FAULT_SIGBUS; /* Error */
2005-09-25 14:28:13 +10:00
if (!dma->pagelist)
2008-02-07 16:20:50 +10:00
return VM_FAULT_SIGBUS; /* Nothing allocated */
2005-04-16 15:20:36 -07:00
2008-02-07 16:20:50 +10:00
offset = (unsigned long)vmf->virtual_address - vma->vm_start; /* vm_[pg]off[set] should be 0 */
page_nr = offset >> PAGE_SHIFT; /* page_nr could just be vmf->pgoff */
2013-10-27 21:52:39 +00:00
page = virt_to_page((void *)dma->pagelist[page_nr]);
2005-04-16 15:20:36 -07:00
get_page(page);
2008-02-07 16:20:50 +10:00
vmf->page = page;
2005-04-16 15:20:36 -07:00
2008-02-07 16:20:50 +10:00
DRM_DEBUG("dma_fault 0x%lx (page %lu)\n", offset, page_nr);
return 0;
2005-04-16 15:20:36 -07:00
}
/**
2008-02-07 16:20:50 +10:00
* \c fault method for scatter-gather virtual memory.
2005-04-16 15:20:36 -07:00
*
* \param vma virtual memory area.
* \param address access address.
* \return pointer to the page structure.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* Determine the map offset from the page offset and get it from drm_sg_mem::pagelist.
*/
2008-02-07 16:20:50 +10:00
static int drm_do_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-04-16 15:20:36 -07:00
{
2009-02-02 16:55:46 +11:00
struct drm_local_map *map = vma->vm_private_data;
struct drm_file *priv = vma->vm_file->private_data;
struct drm_device *dev = priv->minor->dev;
2007-07-11 16:53:40 +10:00
struct drm_sg_mem *entry = dev->sg;
2005-04-16 15:20:36 -07:00
unsigned long offset;
unsigned long map_offset;
unsigned long page_offset;
struct page *page;
2005-09-25 14:28:13 +10:00
if (!entry)
2008-02-07 16:20:50 +10:00
return VM_FAULT_SIGBUS; /* Error */
2005-09-25 14:28:13 +10:00
if (!entry->pagelist)
2008-02-07 16:20:50 +10:00
return VM_FAULT_SIGBUS; /* Nothing allocated */
2005-04-16 15:20:36 -07:00
2008-02-07 16:20:50 +10:00
offset = (unsigned long)vmf->virtual_address - vma->vm_start;
map_offset = map->offset - (unsigned long)dev->sg->virtual;
2005-04-16 15:20:36 -07:00
page_offset = (offset >> PAGE_SHIFT) + (map_offset >> PAGE_SHIFT);
page = entry->pagelist[page_offset];
get_page(page);
2008-02-07 16:20:50 +10:00
vmf->page = page;
2005-04-16 15:20:36 -07:00
2008-02-07 16:20:50 +10:00
return 0;
2005-04-16 15:20:36 -07:00
}
2008-02-07 16:20:50 +10:00
static int drm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-09-25 14:28:13 +10:00
{
2008-02-07 16:20:50 +10:00
return drm_do_vm_fault(vma, vmf);
2005-04-16 15:20:36 -07:00
}
2008-02-07 16:20:50 +10:00
static int drm_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-09-25 14:28:13 +10:00
{
2008-02-07 16:20:50 +10:00
return drm_do_vm_shm_fault(vma, vmf);
2005-04-16 15:20:36 -07:00
}
2008-02-07 16:20:50 +10:00
static int drm_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-09-25 14:28:13 +10:00
{
2008-02-07 16:20:50 +10:00
return drm_do_vm_dma_fault(vma, vmf);
2005-04-16 15:20:36 -07:00
}
2008-02-07 16:20:50 +10:00
static int drm_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2005-09-25 14:28:13 +10:00
{
2008-02-07 16:20:50 +10:00
return drm_do_vm_sg_fault(vma, vmf);
2005-04-16 15:20:36 -07:00
}
/** AGP virtual memory operations */
2009-09-27 22:29:37 +04:00
static const struct vm_operations_struct drm_vm_ops = {
2008-02-07 16:20:50 +10:00
.fault = drm_vm_fault,
2005-09-25 14:28:13 +10:00
.open = drm_vm_open,
.close = drm_vm_close,
2005-04-16 15:20:36 -07:00
};
/** Shared virtual memory operations */
2009-09-27 22:29:37 +04:00
static const struct vm_operations_struct drm_vm_shm_ops = {
2008-02-07 16:20:50 +10:00
.fault = drm_vm_shm_fault,
2005-09-25 14:28:13 +10:00
.open = drm_vm_open,
.close = drm_vm_shm_close,
2005-04-16 15:20:36 -07:00
};
/** DMA virtual memory operations */
2009-09-27 22:29:37 +04:00
static const struct vm_operations_struct drm_vm_dma_ops = {
2008-02-07 16:20:50 +10:00
.fault = drm_vm_dma_fault,
2005-09-25 14:28:13 +10:00
.open = drm_vm_open,
.close = drm_vm_close,
2005-04-16 15:20:36 -07:00
};
/** Scatter-gather virtual memory operations */
2009-09-27 22:29:37 +04:00
static const struct vm_operations_struct drm_vm_sg_ops = {
2008-02-07 16:20:50 +10:00
.fault = drm_vm_sg_fault,
2005-09-25 14:28:13 +10:00
.open = drm_vm_open,
.close = drm_vm_close,
2005-04-16 15:20:36 -07:00
};
static void drm_vm_open_locked(struct drm_device *dev,
struct vm_area_struct *vma)
2005-04-16 15:20:36 -07:00
{
struct drm_vma_entry *vma_entry;
2005-04-16 15:20:36 -07:00
DRM_DEBUG("0x%08lx,0x%08lx\n",
vma->vm_start, vma->vm_end - vma->vm_start);
vma_entry = kmalloc(sizeof(*vma_entry), GFP_KERNEL);
2005-04-16 15:20:36 -07:00
if (vma_entry) {
2005-09-25 14:28:13 +10:00
vma_entry->vma = vma;
vma_entry->pid = current->pid;
list_add(&vma_entry->head, &dev->vmalist);
2005-04-16 15:20:36 -07:00
}
}
static void drm_vm_open(struct vm_area_struct *vma)
{
struct drm_file *priv = vma->vm_file->private_data;
struct drm_device *dev = priv->minor->dev;
mutex_lock(&dev->struct_mutex);
drm_vm_open_locked(dev, vma);
mutex_unlock(&dev->struct_mutex);
}
static void drm_vm_close_locked(struct drm_device *dev,
struct vm_area_struct *vma)
2010-09-27 21:28:30 +01:00
{
struct drm_vma_entry *pt, *temp;
DRM_DEBUG("0x%08lx,0x%08lx\n",
vma->vm_start, vma->vm_end - vma->vm_start);
list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
if (pt->vma == vma) {
list_del(&pt->head);
kfree(pt);
break;
}
}
}
2005-04-16 15:20:36 -07:00
/**
* \c close method for all virtual memory types.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* \param vma virtual memory area.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* Search the \p vma private data entry in drm_device::vmalist, unlink it, and
* free it.
*/
2005-07-07 21:03:38 +10:00
static void drm_vm_close(struct vm_area_struct *vma)
2005-04-16 15:20:36 -07:00
{
struct drm_file *priv = vma->vm_file->private_data;
struct drm_device *dev = priv->minor->dev;
2005-04-16 15:20:36 -07:00
2006-02-02 19:37:46 +11:00
mutex_lock(&dev->struct_mutex);
drm_vm_close_locked(dev, vma);
2006-02-02 19:37:46 +11:00
mutex_unlock(&dev->struct_mutex);
2005-04-16 15:20:36 -07:00
}
/**
* mmap DMA memory.
*
* \param file_priv DRM file private.
2005-04-16 15:20:36 -07:00
* \param vma virtual memory area.
* \return zero on success or a negative number on failure.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* Sets the virtual memory area operations structure to vm_dma_ops, the file
* pointer, and calls vm_open().
*/
2005-07-07 21:03:38 +10:00
static int drm_mmap_dma(struct file *filp, struct vm_area_struct *vma)
2005-04-16 15:20:36 -07:00
{
struct drm_file *priv = filp->private_data;
struct drm_device *dev;
struct drm_device_dma *dma;
2005-09-25 14:28:13 +10:00
unsigned long length = vma->vm_end - vma->vm_start;
2005-04-16 15:20:36 -07:00
dev = priv->minor->dev;
2005-09-25 14:28:13 +10:00
dma = dev->dma;
DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
vma->vm_start, vma->vm_end, vma->vm_pgoff);
2005-04-16 15:20:36 -07:00
2005-09-25 14:28:13 +10:00
/* Length must match exact page count */
2005-04-16 15:20:36 -07:00
if (!dma || (length >> PAGE_SHIFT) != dma->page_count) {
return -EINVAL;
}
if (!capable(CAP_SYS_ADMIN) &&
(dma->flags & _DRM_DMA_USE_PCI_RO)) {
vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
#if defined(__i386__) || defined(__x86_64__)
pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
#else
/* Ye gads this is ugly. With more thought
we could move this up higher and use
`protection_map' instead. */
vma->vm_page_prot =
__pgprot(pte_val
(pte_wrprotect
(__pte(pgprot_val(vma->vm_page_prot)))));
#endif
}
2005-09-25 14:28:13 +10:00
vma->vm_ops = &drm_vm_dma_ops;
2005-04-16 15:20:36 -07:00
vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
2005-04-16 15:20:36 -07:00
drm_vm_open_locked(dev, vma);
2005-04-16 15:20:36 -07:00
return 0;
}
2010-08-23 22:53:28 +02:00
static resource_size_t drm_core_get_reg_ofs(struct drm_device *dev)
2005-04-16 15:20:36 -07:00
{
#ifdef __alpha__
return dev->hose->dense_mem_base;
2005-04-16 15:20:36 -07:00
#else
return 0;
#endif
}
2005-09-25 14:28:13 +10:00
2005-04-16 15:20:36 -07:00
/**
* mmap DMA memory.
*
* \param file_priv DRM file private.
2005-04-16 15:20:36 -07:00
* \param vma virtual memory area.
* \return zero on success or a negative number on failure.
2005-09-25 14:28:13 +10:00
*
2005-04-16 15:20:36 -07:00
* If the virtual memory area has no offset associated with it then it's a DMA
* area, so calls mmap_dma(). Otherwise searches the map in drm_device::maplist,
* checks that the restricted flag is not set, sets the virtual memory operations
* according to the mapping type and remaps the pages. Finally sets the file
* pointer and calls vm_open().
*/
2014-09-23 15:46:49 +02:00
static int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma)
2005-04-16 15:20:36 -07:00
{
struct drm_file *priv = filp->private_data;
struct drm_device *dev = priv->minor->dev;
2009-02-02 16:55:46 +11:00
struct drm_local_map *map = NULL;
resource_size_t offset = 0;
2007-07-12 10:26:44 +10:00
struct drm_hash_item *hash;
2005-04-16 15:20:36 -07:00
DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
vma->vm_start, vma->vm_end, vma->vm_pgoff);
2005-04-16 15:20:36 -07:00
2005-09-25 14:28:13 +10:00
if (!priv->authenticated)
return -EACCES;
2005-04-16 15:20:36 -07:00
/* We check for "dma". On Apple's UniNorth, it's valid to have
* the AGP mapped at physical address 0
* --BenH.
*/
if (!vma->vm_pgoff
2015-09-09 16:45:52 +02:00
#if IS_ENABLED(CONFIG_AGP)
2005-09-25 14:28:13 +10:00
&& (!dev->agp
|| dev->agp->agp_info.device->vendor != PCI_VENDOR_ID_APPLE)
2005-04-16 15:20:36 -07:00
#endif
)
return drm_mmap_dma(filp, vma);
if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash)) {
DRM_ERROR("Could not find map\n");
return -EINVAL;
2005-04-16 15:20:36 -07:00
}
2007-07-11 16:53:40 +10:00
map = drm_hash_entry(hash, struct drm_map_list, hash)->map;
2005-09-25 14:28:13 +10:00
if (!map || ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN)))
2005-04-16 15:20:36 -07:00
return -EPERM;
2005-09-25 14:28:13 +10:00
/* Check for valid size. */
2007-02-10 12:07:47 +11:00
if (map->size < vma->vm_end - vma->vm_start)
2005-09-25 14:28:13 +10:00
return -EINVAL;
2005-04-16 15:20:36 -07:00
if (!capable(CAP_SYS_ADMIN) && (map->flags & _DRM_READ_ONLY)) {
vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
#if defined(__i386__) || defined(__x86_64__)
pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
#else
2005-09-25 14:28:13 +10:00
/* Ye gads this is ugly. With more thought
we could move this up higher and use
`protection_map' instead. */
vma->vm_page_prot =
__pgprot(pte_val
(pte_wrprotect
(__pte(pgprot_val(vma->vm_page_prot)))));
2005-04-16 15:20:36 -07:00
#endif
}
switch (map->type) {
2010-05-27 13:40:26 -06:00
#if !defined(__arm__)
2005-09-25 14:28:13 +10:00
case _DRM_AGP:
2013-12-11 11:34:35 +01:00
if (dev->agp && dev->agp->cant_use_aperture) {
2005-09-25 14:28:13 +10:00
/*
* On some platforms we can't talk to bus dma address from the CPU, so for
* memory of type DRM_AGP, we'll deal with sorting out the real physical
2008-02-07 16:20:50 +10:00
* pages and mappings in fault()
2005-09-25 14:28:13 +10:00
*/
2005-04-16 15:20:36 -07:00
#if defined(__powerpc__)
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
2005-04-16 15:20:36 -07:00
#endif
2005-09-25 14:28:13 +10:00
vma->vm_ops = &drm_vm_ops;
break;
}
/* fall through to _DRM_FRAME_BUFFER... */
2010-05-27 13:40:26 -06:00
#endif
2005-04-16 15:20:36 -07:00
case _DRM_FRAME_BUFFER:
case _DRM_REGISTERS:
2010-08-23 22:53:28 +02:00
offset = drm_core_get_reg_ofs(dev);
vma->vm_page_prot = drm_io_prot(map, vma);
if (io_remap_pfn_range(vma, vma->vm_start,
(map->offset + offset) >> PAGE_SHIFT,
vma->vm_end - vma->vm_start,
vma->vm_page_prot))
2005-09-25 14:28:13 +10:00
return -EAGAIN;
2005-04-16 15:20:36 -07:00
DRM_DEBUG(" Type = %d; start = 0x%lx, end = 0x%lx,"
" offset = 0x%llx\n",
2005-04-16 15:20:36 -07:00
map->type,
vma->vm_start, vma->vm_end, (unsigned long long)(map->offset + offset));
2010-05-27 13:40:26 -06:00
2005-04-16 15:20:36 -07:00
vma->vm_ops = &drm_vm_ops;
break;
2005-07-10 14:34:13 +10:00
case _DRM_CONSISTENT:
2007-03-24 17:55:16 +11:00
/* Consistent memory is really like shared memory. But
2008-02-07 16:20:50 +10:00
* it's allocated in a different way, so avoid fault */
2007-03-24 17:55:16 +11:00
if (remap_pfn_range(vma, vma->vm_start,
page_to_pfn(virt_to_page(map->handle)),
vma->vm_end - vma->vm_start, vma->vm_page_prot))
return -EAGAIN;
2008-03-28 14:23:07 -07:00
vma->vm_page_prot = drm_dma_prot(map->type, vma);
2007-03-24 17:55:16 +11:00
/* fall through to _DRM_SHM */
case _DRM_SHM:
2005-04-16 15:20:36 -07:00
vma->vm_ops = &drm_vm_shm_ops;
vma->vm_private_data = (void *)map;
break;
case _DRM_SCATTER_GATHER:
vma->vm_ops = &drm_vm_sg_ops;
vma->vm_private_data = (void *)map;
2008-04-20 10:26:25 +10:00
vma->vm_page_prot = drm_dma_prot(map->type, vma);
2005-09-25 14:28:13 +10:00
break;
2005-04-16 15:20:36 -07:00
default:
return -EINVAL; /* This should never happen. */
}
vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
2005-04-16 15:20:36 -07:00
drm_vm_open_locked(dev, vma);
2005-04-16 15:20:36 -07:00
return 0;
}
2005-09-25 14:28:13 +10:00
2014-09-23 15:46:49 +02:00
int drm_legacy_mmap(struct file *filp, struct vm_area_struct *vma)
{
struct drm_file *priv = filp->private_data;
struct drm_device *dev = priv->minor->dev;
int ret;
if (drm_device_is_unplugged(dev))
return -ENODEV;
mutex_lock(&dev->struct_mutex);
ret = drm_mmap_locked(filp, vma);
mutex_unlock(&dev->struct_mutex);
return ret;
}
2014-09-23 15:46:49 +02:00
EXPORT_SYMBOL(drm_legacy_mmap);
void drm_legacy_vma_flush(struct drm_device *dev)
{
struct drm_vma_entry *vma, *vma_temp;
/* Clear vma list (only needed for legacy drivers) */
list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
list_del(&vma->head);
kfree(vma);
}
}