blob: 06cad0323699d12022d09020226994124379191e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_vm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Memory mapping for DRM
Dave Airlieb5e89ed2005-09-25 14:28:13 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
7 */
8
9/*
10 * Created: Mon Jan 4 08:58:31 1999 by faith@valinux.com
11 *
12 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files (the "Software"),
18 * to deal in the Software without restriction, including without limitation
19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * and/or sell copies of the Software, and to permit persons to whom the
21 * Software is furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
25 * Software.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
34 */
35
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/drmP.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040037#include <linux/export.h>
David Herrmann03decbe2014-08-29 12:12:29 +020038#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#if defined(__ia64__)
40#include <linux/efi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#endif
David Herrmann2791ee82014-08-29 12:12:33 +020043#include <asm/pgtable.h>
David Herrmanncc5ea592014-08-29 12:12:32 +020044#include "drm_legacy.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
David Herrmann03decbe2014-08-29 12:12:29 +020046struct drm_vma_entry {
47 struct list_head head;
48 struct vm_area_struct *vma;
49 pid_t pid;
50};
51
Dave Airliec94f7022005-07-07 21:03:38 +100052static void drm_vm_open(struct vm_area_struct *vma);
53static void drm_vm_close(struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Andy Lutomirskiff47eaf2013-05-13 23:58:42 +000055static pgprot_t drm_io_prot(struct drm_local_map *map,
56 struct vm_area_struct *vma)
Dave Airlie5cc7f9a2007-02-10 11:53:13 +110057{
58 pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
59
60#if defined(__i386__) || defined(__x86_64__)
Andy Lutomirskif4350462013-05-13 23:58:43 +000061 if (map->type == _DRM_REGISTERS && !(map->flags & _DRM_WRITE_COMBINING))
62 tmp = pgprot_noncached(tmp);
63 else
64 tmp = pgprot_writecombine(tmp);
Dave Airlie5cc7f9a2007-02-10 11:53:13 +110065#elif defined(__powerpc__)
66 pgprot_val(tmp) |= _PAGE_NO_CACHE;
Andy Lutomirskiff47eaf2013-05-13 23:58:42 +000067 if (map->type == _DRM_REGISTERS)
Dave Airlie5cc7f9a2007-02-10 11:53:13 +110068 pgprot_val(tmp) |= _PAGE_GUARDED;
Benjamin Herrenschmidt6876b3b2008-03-28 14:23:07 -070069#elif defined(__ia64__)
Dave Airlie5cc7f9a2007-02-10 11:53:13 +110070 if (efi_range_is_wc(vma->vm_start, vma->vm_end -
71 vma->vm_start))
72 tmp = pgprot_writecombine(tmp);
73 else
74 tmp = pgprot_noncached(tmp);
Huacai Chen04cf55e2012-08-11 09:32:17 +000075#elif defined(__sparc__) || defined(__arm__) || defined(__mips__)
Benjamin Herrenschmidt6876b3b2008-03-28 14:23:07 -070076 tmp = pgprot_noncached(tmp);
77#endif
78 return tmp;
79}
80
81static pgprot_t drm_dma_prot(uint32_t map_type, struct vm_area_struct *vma)
82{
83 pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
84
85#if defined(__powerpc__) && defined(CONFIG_NOT_COHERENT_CACHE)
86 tmp |= _PAGE_NO_CACHE;
Dave Airlie5cc7f9a2007-02-10 11:53:13 +110087#endif
88 return tmp;
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/**
Nick Pigginca0b07d2008-02-07 16:20:50 +100092 * \c fault method for AGP virtual memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
94 * \param vma virtual memory area.
95 * \param address access address.
96 * \return pointer to the page structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100097 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * Find the right map and if it's AGP memory find the real physical page to
99 * map, get the page, increment the use count and return it.
100 */
101#if __OS_HAS_AGP
Nick Pigginca0b07d2008-02-07 16:20:50 +1000102static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000104 struct drm_file *priv = vma->vm_file->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000105 struct drm_device *dev = priv->minor->dev;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +1100106 struct drm_local_map *map = NULL;
Dave Airlie55910512007-07-11 16:53:40 +1000107 struct drm_map_list *r_list;
Dave Airliee0be4282007-07-12 10:26:44 +1000108 struct drm_hash_item *hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 /*
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000111 * Find the right map
112 */
Daniel Vetterd9906752013-12-11 11:34:35 +0100113 if (!dev->agp)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000114 goto vm_fault_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000116 if (!dev->agp || !dev->agp->cant_use_aperture)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000117 goto vm_fault_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Thomas Hellstrom15450852007-02-08 16:14:05 +1100119 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash))
Nick Pigginca0b07d2008-02-07 16:20:50 +1000120 goto vm_fault_error;
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000121
Dave Airlie55910512007-07-11 16:53:40 +1000122 r_list = drm_hash_entry(hash, struct drm_map_list, hash);
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000123 map = r_list->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (map && map->type == _DRM_AGP) {
Nick Pigginca0b07d2008-02-07 16:20:50 +1000126 /*
127 * Using vm_pgoff as a selector forces us to use this unusual
128 * addressing scheme.
129 */
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100130 resource_size_t offset = (unsigned long)vmf->virtual_address -
131 vma->vm_start;
132 resource_size_t baddr = map->offset + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 struct drm_agp_mem *agpmem;
134 struct page *page;
135
136#ifdef __alpha__
137 /*
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000138 * Adjust to a bus-relative address
139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 baddr -= dev->hose->mem_space->start;
141#endif
142
143 /*
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000144 * It's AGP memory - find the real physical page to map
145 */
Dave Airliebd1b3312007-05-26 05:01:51 +1000146 list_for_each_entry(agpmem, &dev->agp->memory, head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (agpmem->bound <= baddr &&
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000148 agpmem->bound + agpmem->pages * PAGE_SIZE > baddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 break;
150 }
151
Dan Carpenter161c4812010-08-19 11:39:57 +0200152 if (&agpmem->head == &dev->agp->memory)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000153 goto vm_fault_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /*
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000156 * Get the page, inc the use count, and return it
157 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 offset = (baddr - agpmem->bound) >> PAGE_SHIFT;
Dave Airlie07613ba2009-06-12 14:11:41 +1000159 page = agpmem->memory->pages[offset];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 get_page(page);
Nick Pigginca0b07d2008-02-07 16:20:50 +1000161 vmf->page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000163 DRM_DEBUG
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100164 ("baddr = 0x%llx page = 0x%p, offset = 0x%llx, count=%d\n",
165 (unsigned long long)baddr,
Dave Airlie07613ba2009-06-12 14:11:41 +1000166 agpmem->memory->pages[offset],
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100167 (unsigned long long)offset,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000168 page_count(page));
Nick Pigginca0b07d2008-02-07 16:20:50 +1000169 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000170 }
Nick Pigginca0b07d2008-02-07 16:20:50 +1000171vm_fault_error:
172 return VM_FAULT_SIGBUS; /* Disallow mremap */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000174#else /* __OS_HAS_AGP */
Nick Pigginca0b07d2008-02-07 16:20:50 +1000175static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Nick Pigginca0b07d2008-02-07 16:20:50 +1000177 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000179#endif /* __OS_HAS_AGP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181/**
182 * \c nopage method for shared virtual memory.
183 *
184 * \param vma virtual memory area.
185 * \param address access address.
186 * \return pointer to the page structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000187 *
Michael Opdenacker59c51592007-05-09 08:57:56 +0200188 * Get the mapping, find the real physical page to map, get the page, and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * return it.
190 */
Nick Pigginca0b07d2008-02-07 16:20:50 +1000191static int drm_do_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +1100193 struct drm_local_map *map = vma->vm_private_data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000194 unsigned long offset;
195 unsigned long i;
196 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000198 if (!map)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000199 return VM_FAULT_SIGBUS; /* Nothing allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Nick Pigginca0b07d2008-02-07 16:20:50 +1000201 offset = (unsigned long)vmf->virtual_address - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 i = (unsigned long)map->handle + offset;
Hugh Dickins38315872007-03-24 17:55:16 +1100203 page = vmalloc_to_page((void *)i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (!page)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000205 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 get_page(page);
Nick Pigginca0b07d2008-02-07 16:20:50 +1000207 vmf->page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Nick Pigginca0b07d2008-02-07 16:20:50 +1000209 DRM_DEBUG("shm_fault 0x%lx\n", offset);
210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/**
214 * \c close method for shared virtual memory.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000215 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * \param vma virtual memory area.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000217 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * Deletes map information if we are the last
219 * person to close a mapping and it's not in the global maplist.
220 */
Dave Airliec94f7022005-07-07 21:03:38 +1000221static void drm_vm_shm_close(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000223 struct drm_file *priv = vma->vm_file->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000224 struct drm_device *dev = priv->minor->dev;
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000225 struct drm_vma_entry *pt, *temp;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +1100226 struct drm_local_map *map;
Dave Airlie55910512007-07-11 16:53:40 +1000227 struct drm_map_list *r_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 int found_maps = 0;
229
230 DRM_DEBUG("0x%08lx,0x%08lx\n",
231 vma->vm_start, vma->vm_end - vma->vm_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 map = vma->vm_private_data;
234
Dave Airlie30e2fb12006-02-02 19:37:46 +1100235 mutex_lock(&dev->struct_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000236 list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000237 if (pt->vma->vm_private_data == map)
238 found_maps++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (pt->vma == vma) {
Dave Airliebd1b3312007-05-26 05:01:51 +1000240 list_del(&pt->head);
Eric Anholt9a298b22009-03-24 12:23:04 -0700241 kfree(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243 }
Dave Airliebd1b3312007-05-26 05:01:51 +1000244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* We were the only map that was found */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000246 if (found_maps == 1 && map->flags & _DRM_REMOVABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* Check to see if we are in the maplist, if we are not, then
248 * we delete this mappings information.
249 */
250 found_maps = 0;
Dave Airliebd1b3312007-05-26 05:01:51 +1000251 list_for_each_entry(r_list, &dev->maplist, head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000252 if (r_list->map == map)
253 found_maps++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000256 if (!found_maps) {
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000257 drm_dma_handle_t dmah;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 switch (map->type) {
260 case _DRM_REGISTERS:
261 case _DRM_FRAME_BUFFER:
Daniel Vetter28185642013-08-08 15:41:27 +0200262 arch_phys_wc_del(map->mtrr);
Christoph Hellwig004a7722007-01-08 21:56:59 +1100263 iounmap(map->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 break;
265 case _DRM_SHM:
266 vfree(map->handle);
267 break;
268 case _DRM_AGP:
269 case _DRM_SCATTER_GATHER:
270 break;
Dave Airlie2d0f9ea2005-07-10 14:34:13 +1000271 case _DRM_CONSISTENT:
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000272 dmah.vaddr = map->handle;
273 dmah.busaddr = map->offset;
274 dmah.size = map->size;
Daniel Vetter1c96e842014-09-10 12:43:51 +0200275 __drm_legacy_pci_free(dev, &dmah);
Dave Airlie2d0f9ea2005-07-10 14:34:13 +1000276 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Eric Anholt9a298b22009-03-24 12:23:04 -0700278 kfree(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280 }
Dave Airlie30e2fb12006-02-02 19:37:46 +1100281 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
284/**
Nick Pigginca0b07d2008-02-07 16:20:50 +1000285 * \c fault method for DMA virtual memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 *
287 * \param vma virtual memory area.
288 * \param address access address.
289 * \return pointer to the page structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000290 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * Determine the page number from the page offset and get it from drm_device_dma::pagelist.
292 */
Nick Pigginca0b07d2008-02-07 16:20:50 +1000293static int drm_do_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000295 struct drm_file *priv = vma->vm_file->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000296 struct drm_device *dev = priv->minor->dev;
Dave Airliecdd55a22007-07-11 16:32:08 +1000297 struct drm_device_dma *dma = dev->dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000298 unsigned long offset;
299 unsigned long page_nr;
300 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000302 if (!dma)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000303 return VM_FAULT_SIGBUS; /* Error */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000304 if (!dma->pagelist)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000305 return VM_FAULT_SIGBUS; /* Nothing allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Nick Pigginca0b07d2008-02-07 16:20:50 +1000307 offset = (unsigned long)vmf->virtual_address - vma->vm_start; /* vm_[pg]off[set] should be 0 */
308 page_nr = offset >> PAGE_SHIFT; /* page_nr could just be vmf->pgoff */
Ben Hutchingse1e78532013-10-27 21:52:39 +0000309 page = virt_to_page((void *)dma->pagelist[page_nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 get_page(page);
Nick Pigginca0b07d2008-02-07 16:20:50 +1000312 vmf->page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Nick Pigginca0b07d2008-02-07 16:20:50 +1000314 DRM_DEBUG("dma_fault 0x%lx (page %lu)\n", offset, page_nr);
315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318/**
Nick Pigginca0b07d2008-02-07 16:20:50 +1000319 * \c fault method for scatter-gather virtual memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 *
321 * \param vma virtual memory area.
322 * \param address access address.
323 * \return pointer to the page structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000324 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * Determine the map offset from the page offset and get it from drm_sg_mem::pagelist.
326 */
Nick Pigginca0b07d2008-02-07 16:20:50 +1000327static int drm_do_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +1100329 struct drm_local_map *map = vma->vm_private_data;
Dave Airlie84b1fd12007-07-11 15:53:27 +1000330 struct drm_file *priv = vma->vm_file->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000331 struct drm_device *dev = priv->minor->dev;
Dave Airlie55910512007-07-11 16:53:40 +1000332 struct drm_sg_mem *entry = dev->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 unsigned long offset;
334 unsigned long map_offset;
335 unsigned long page_offset;
336 struct page *page;
337
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000338 if (!entry)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000339 return VM_FAULT_SIGBUS; /* Error */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000340 if (!entry->pagelist)
Nick Pigginca0b07d2008-02-07 16:20:50 +1000341 return VM_FAULT_SIGBUS; /* Nothing allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Nick Pigginca0b07d2008-02-07 16:20:50 +1000343 offset = (unsigned long)vmf->virtual_address - vma->vm_start;
Dave Airlied1f2b552005-08-05 22:11:22 +1000344 map_offset = map->offset - (unsigned long)dev->sg->virtual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 page_offset = (offset >> PAGE_SHIFT) + (map_offset >> PAGE_SHIFT);
346 page = entry->pagelist[page_offset];
347 get_page(page);
Nick Pigginca0b07d2008-02-07 16:20:50 +1000348 vmf->page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Nick Pigginca0b07d2008-02-07 16:20:50 +1000350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Nick Pigginca0b07d2008-02-07 16:20:50 +1000353static int drm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000354{
Nick Pigginca0b07d2008-02-07 16:20:50 +1000355 return drm_do_vm_fault(vma, vmf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
Nick Pigginca0b07d2008-02-07 16:20:50 +1000358static int drm_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000359{
Nick Pigginca0b07d2008-02-07 16:20:50 +1000360 return drm_do_vm_shm_fault(vma, vmf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Nick Pigginca0b07d2008-02-07 16:20:50 +1000363static int drm_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000364{
Nick Pigginca0b07d2008-02-07 16:20:50 +1000365 return drm_do_vm_dma_fault(vma, vmf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
Nick Pigginca0b07d2008-02-07 16:20:50 +1000368static int drm_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000369{
Nick Pigginca0b07d2008-02-07 16:20:50 +1000370 return drm_do_vm_sg_fault(vma, vmf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/** AGP virtual memory operations */
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400374static const struct vm_operations_struct drm_vm_ops = {
Nick Pigginca0b07d2008-02-07 16:20:50 +1000375 .fault = drm_vm_fault,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000376 .open = drm_vm_open,
377 .close = drm_vm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378};
379
380/** Shared virtual memory operations */
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400381static const struct vm_operations_struct drm_vm_shm_ops = {
Nick Pigginca0b07d2008-02-07 16:20:50 +1000382 .fault = drm_vm_shm_fault,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000383 .open = drm_vm_open,
384 .close = drm_vm_shm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
387/** DMA virtual memory operations */
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400388static const struct vm_operations_struct drm_vm_dma_ops = {
Nick Pigginca0b07d2008-02-07 16:20:50 +1000389 .fault = drm_vm_dma_fault,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000390 .open = drm_vm_open,
391 .close = drm_vm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392};
393
394/** Scatter-gather virtual memory operations */
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400395static const struct vm_operations_struct drm_vm_sg_ops = {
Nick Pigginca0b07d2008-02-07 16:20:50 +1000396 .fault = drm_vm_sg_fault,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000397 .open = drm_vm_open,
398 .close = drm_vm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399};
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/**
402 * \c open method for shared virtual memory.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000403 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * \param vma virtual memory area.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000405 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 * Create a new drm_vma_entry structure as the \p vma private data entry and
407 * add it to drm_device::vmalist.
408 */
Rob Clarkb06d66b2012-05-01 11:04:51 -0500409void drm_vm_open_locked(struct drm_device *dev,
410 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000412 struct drm_vma_entry *vma_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 DRM_DEBUG("0x%08lx,0x%08lx\n",
415 vma->vm_start, vma->vm_end - vma->vm_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Eric Anholt9a298b22009-03-24 12:23:04 -0700417 vma_entry = kmalloc(sizeof(*vma_entry), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (vma_entry) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000419 vma_entry->vma = vma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000420 vma_entry->pid = current->pid;
Dave Airliebd1b3312007-05-26 05:01:51 +1000421 list_add(&vma_entry->head, &dev->vmalist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423}
Arnd Bergmannd5028992013-04-25 19:28:52 +0200424EXPORT_SYMBOL_GPL(drm_vm_open_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Thomas Hellstromd7d8aac2007-03-24 17:52:49 +1100426static void drm_vm_open(struct vm_area_struct *vma)
427{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000428 struct drm_file *priv = vma->vm_file->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000429 struct drm_device *dev = priv->minor->dev;
Thomas Hellstromd7d8aac2007-03-24 17:52:49 +1100430
431 mutex_lock(&dev->struct_mutex);
Rob Clarkb06d66b2012-05-01 11:04:51 -0500432 drm_vm_open_locked(dev, vma);
Thomas Hellstromd7d8aac2007-03-24 17:52:49 +1100433 mutex_unlock(&dev->struct_mutex);
434}
435
Rob Clarkb06d66b2012-05-01 11:04:51 -0500436void drm_vm_close_locked(struct drm_device *dev,
437 struct vm_area_struct *vma)
Chris Wilson31dfbc92010-09-27 21:28:30 +0100438{
Chris Wilson31dfbc92010-09-27 21:28:30 +0100439 struct drm_vma_entry *pt, *temp;
440
441 DRM_DEBUG("0x%08lx,0x%08lx\n",
442 vma->vm_start, vma->vm_end - vma->vm_start);
Chris Wilson31dfbc92010-09-27 21:28:30 +0100443
444 list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
445 if (pt->vma == vma) {
446 list_del(&pt->head);
447 kfree(pt);
448 break;
449 }
450 }
451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/**
454 * \c close method for all virtual memory types.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000455 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * \param vma virtual memory area.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000457 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * Search the \p vma private data entry in drm_device::vmalist, unlink it, and
459 * free it.
460 */
Dave Airliec94f7022005-07-07 21:03:38 +1000461static void drm_vm_close(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000463 struct drm_file *priv = vma->vm_file->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000464 struct drm_device *dev = priv->minor->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Dave Airlie30e2fb12006-02-02 19:37:46 +1100466 mutex_lock(&dev->struct_mutex);
Rob Clarkb06d66b2012-05-01 11:04:51 -0500467 drm_vm_close_locked(dev, vma);
Dave Airlie30e2fb12006-02-02 19:37:46 +1100468 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
471/**
472 * mmap DMA memory.
473 *
Eric Anholt6c340ea2007-08-25 20:23:09 +1000474 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * \param vma virtual memory area.
476 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000477 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * Sets the virtual memory area operations structure to vm_dma_ops, the file
479 * pointer, and calls vm_open().
480 */
Dave Airliec94f7022005-07-07 21:03:38 +1000481static int drm_mmap_dma(struct file *filp, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000483 struct drm_file *priv = filp->private_data;
484 struct drm_device *dev;
Dave Airliecdd55a22007-07-11 16:32:08 +1000485 struct drm_device_dma *dma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000486 unsigned long length = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Dave Airlie2c14f282008-04-21 16:47:32 +1000488 dev = priv->minor->dev;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000489 dma = dev->dma;
Thomas Hellstrom15450852007-02-08 16:14:05 +1100490 DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
491 vma->vm_start, vma->vm_end, vma->vm_pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000493 /* Length must match exact page count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (!dma || (length >> PAGE_SHIFT) != dma->page_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return -EINVAL;
496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
George Sapountzis3417f332006-10-24 12:03:04 -0700498 if (!capable(CAP_SYS_ADMIN) &&
499 (dma->flags & _DRM_DMA_USE_PCI_RO)) {
500 vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
501#if defined(__i386__) || defined(__x86_64__)
502 pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
503#else
504 /* Ye gads this is ugly. With more thought
505 we could move this up higher and use
506 `protection_map' instead. */
507 vma->vm_page_prot =
508 __pgprot(pte_val
509 (pte_wrprotect
510 (__pte(pgprot_val(vma->vm_page_prot)))));
511#endif
512 }
513
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000514 vma->vm_ops = &drm_vm_dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700516 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Rob Clarkb06d66b2012-05-01 11:04:51 -0500518 drm_vm_open_locked(dev, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return 0;
520}
521
Daniel Vettercbc60ca2010-08-23 22:53:28 +0200522static resource_size_t drm_core_get_reg_ofs(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524#ifdef __alpha__
Jay Estabrook82ba3fe2011-06-09 18:18:39 -0400525 return dev->hose->dense_mem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526#else
527 return 0;
528#endif
529}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/**
532 * mmap DMA memory.
533 *
Eric Anholt6c340ea2007-08-25 20:23:09 +1000534 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * \param vma virtual memory area.
536 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000537 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 * If the virtual memory area has no offset associated with it then it's a DMA
539 * area, so calls mmap_dma(). Otherwise searches the map in drm_device::maplist,
540 * checks that the restricted flag is not set, sets the virtual memory operations
541 * according to the mapping type and remaps the pages. Finally sets the file
542 * pointer and calls vm_open().
543 */
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800544int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000546 struct drm_file *priv = filp->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000547 struct drm_device *dev = priv->minor->dev;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +1100548 struct drm_local_map *map = NULL;
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100549 resource_size_t offset = 0;
Dave Airliee0be4282007-07-12 10:26:44 +1000550 struct drm_hash_item *hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Thomas Hellstrom15450852007-02-08 16:14:05 +1100552 DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
553 vma->vm_start, vma->vm_end, vma->vm_pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000555 if (!priv->authenticated)
556 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 /* We check for "dma". On Apple's UniNorth, it's valid to have
559 * the AGP mapped at physical address 0
560 * --BenH.
561 */
Thomas Hellstrom15450852007-02-08 16:14:05 +1100562 if (!vma->vm_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563#if __OS_HAS_AGP
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000564 && (!dev->agp
565 || dev->agp->agp_info.device->vendor != PCI_VENDOR_ID_APPLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566#endif
567 )
568 return drm_mmap_dma(filp, vma);
569
Thomas Hellstrom15450852007-02-08 16:14:05 +1100570 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash)) {
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000571 DRM_ERROR("Could not find map\n");
572 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574
Dave Airlie55910512007-07-11 16:53:40 +1000575 map = drm_hash_entry(hash, struct drm_map_list, hash)->map;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000576 if (!map || ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return -EPERM;
578
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000579 /* Check for valid size. */
Dave Airlie54ba2f72007-02-10 12:07:47 +1100580 if (map->size < vma->vm_end - vma->vm_start)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000581 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (!capable(CAP_SYS_ADMIN) && (map->flags & _DRM_READ_ONLY)) {
584 vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
585#if defined(__i386__) || defined(__x86_64__)
586 pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
587#else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000588 /* Ye gads this is ugly. With more thought
589 we could move this up higher and use
590 `protection_map' instead. */
591 vma->vm_page_prot =
592 __pgprot(pte_val
593 (pte_wrprotect
594 (__pte(pgprot_val(vma->vm_page_prot)))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#endif
596 }
597
598 switch (map->type) {
Jordan Crouse4b7fb9b2010-05-27 13:40:26 -0600599#if !defined(__arm__)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000600 case _DRM_AGP:
Daniel Vetterd9906752013-12-11 11:34:35 +0100601 if (dev->agp && dev->agp->cant_use_aperture) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000602 /*
603 * On some platforms we can't talk to bus dma address from the CPU, so for
604 * memory of type DRM_AGP, we'll deal with sorting out the real physical
Nick Pigginca0b07d2008-02-07 16:20:50 +1000605 * pages and mappings in fault()
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000606 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607#if defined(__powerpc__)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000608 pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609#endif
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000610 vma->vm_ops = &drm_vm_ops;
611 break;
612 }
613 /* fall through to _DRM_FRAME_BUFFER... */
Jordan Crouse4b7fb9b2010-05-27 13:40:26 -0600614#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 case _DRM_FRAME_BUFFER:
616 case _DRM_REGISTERS:
Daniel Vettercbc60ca2010-08-23 22:53:28 +0200617 offset = drm_core_get_reg_ofs(dev);
Andy Lutomirskiff47eaf2013-05-13 23:58:42 +0000618 vma->vm_page_prot = drm_io_prot(map, vma);
Dave Airlie9e9c1322007-03-24 17:57:54 +1100619 if (io_remap_pfn_range(vma, vma->vm_start,
620 (map->offset + offset) >> PAGE_SHIFT,
621 vma->vm_end - vma->vm_start,
622 vma->vm_page_prot))
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000623 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 DRM_DEBUG(" Type = %d; start = 0x%lx, end = 0x%lx,"
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100625 " offset = 0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 map->type,
Benjamin Herrenschmidt41c2e752009-02-02 16:55:47 +1100627 vma->vm_start, vma->vm_end, (unsigned long long)(map->offset + offset));
Jordan Crouse4b7fb9b2010-05-27 13:40:26 -0600628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 vma->vm_ops = &drm_vm_ops;
630 break;
Dave Airlie2d0f9ea2005-07-10 14:34:13 +1000631 case _DRM_CONSISTENT:
Hugh Dickins38315872007-03-24 17:55:16 +1100632 /* Consistent memory is really like shared memory. But
Nick Pigginca0b07d2008-02-07 16:20:50 +1000633 * it's allocated in a different way, so avoid fault */
Hugh Dickins38315872007-03-24 17:55:16 +1100634 if (remap_pfn_range(vma, vma->vm_start,
635 page_to_pfn(virt_to_page(map->handle)),
636 vma->vm_end - vma->vm_start, vma->vm_page_prot))
637 return -EAGAIN;
Benjamin Herrenschmidt6876b3b2008-03-28 14:23:07 -0700638 vma->vm_page_prot = drm_dma_prot(map->type, vma);
Hugh Dickins38315872007-03-24 17:55:16 +1100639 /* fall through to _DRM_SHM */
640 case _DRM_SHM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 vma->vm_ops = &drm_vm_shm_ops;
642 vma->vm_private_data = (void *)map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 break;
644 case _DRM_SCATTER_GATHER:
645 vma->vm_ops = &drm_vm_sg_ops;
646 vma->vm_private_data = (void *)map;
Benjamin Herrenschmidt5ff64612008-04-20 10:26:25 +1000647 vma->vm_page_prot = drm_dma_prot(map->type, vma);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000648 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 default:
650 return -EINVAL; /* This should never happen. */
651 }
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700652 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Rob Clarkb06d66b2012-05-01 11:04:51 -0500654 drm_vm_open_locked(dev, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000657
Thomas Hellstromd7d8aac2007-03-24 17:52:49 +1100658int drm_mmap(struct file *filp, struct vm_area_struct *vma)
659{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000660 struct drm_file *priv = filp->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000661 struct drm_device *dev = priv->minor->dev;
Thomas Hellstromd7d8aac2007-03-24 17:52:49 +1100662 int ret;
663
Dave Airlie2c07a212012-02-20 14:18:07 +0000664 if (drm_device_is_unplugged(dev))
665 return -ENODEV;
666
Thomas Hellstromd7d8aac2007-03-24 17:52:49 +1100667 mutex_lock(&dev->struct_mutex);
668 ret = drm_mmap_locked(filp, vma);
669 mutex_unlock(&dev->struct_mutex);
670
671 return ret;
672}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673EXPORT_SYMBOL(drm_mmap);
David Herrmann03decbe2014-08-29 12:12:29 +0200674
675void drm_legacy_vma_flush(struct drm_device *dev)
676{
677 struct drm_vma_entry *vma, *vma_temp;
678
679 /* Clear vma list (only needed for legacy drivers) */
680 list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
681 list_del(&vma->head);
682 kfree(vma);
683 }
684}
685
David Herrmann03decbe2014-08-29 12:12:29 +0200686int drm_vma_info(struct seq_file *m, void *data)
687{
688 struct drm_info_node *node = (struct drm_info_node *) m->private;
689 struct drm_device *dev = node->minor->dev;
690 struct drm_vma_entry *pt;
691 struct vm_area_struct *vma;
692 unsigned long vma_count = 0;
693#if defined(__i386__)
694 unsigned int pgprot;
695#endif
696
697 mutex_lock(&dev->struct_mutex);
698 list_for_each_entry(pt, &dev->vmalist, head)
699 vma_count++;
700
701 seq_printf(m, "vma use count: %lu, high_memory = %pK, 0x%pK\n",
702 vma_count, high_memory,
703 (void *)(unsigned long)virt_to_phys(high_memory));
704
705 list_for_each_entry(pt, &dev->vmalist, head) {
706 vma = pt->vma;
707 if (!vma)
708 continue;
709 seq_printf(m,
710 "\n%5d 0x%pK-0x%pK %c%c%c%c%c%c 0x%08lx000",
711 pt->pid,
712 (void *)vma->vm_start, (void *)vma->vm_end,
713 vma->vm_flags & VM_READ ? 'r' : '-',
714 vma->vm_flags & VM_WRITE ? 'w' : '-',
715 vma->vm_flags & VM_EXEC ? 'x' : '-',
716 vma->vm_flags & VM_MAYSHARE ? 's' : 'p',
717 vma->vm_flags & VM_LOCKED ? 'l' : '-',
718 vma->vm_flags & VM_IO ? 'i' : '-',
719 vma->vm_pgoff);
720
721#if defined(__i386__)
722 pgprot = pgprot_val(vma->vm_page_prot);
723 seq_printf(m, " %c%c%c%c%c%c%c%c%c",
724 pgprot & _PAGE_PRESENT ? 'p' : '-',
725 pgprot & _PAGE_RW ? 'w' : 'r',
726 pgprot & _PAGE_USER ? 'u' : 's',
727 pgprot & _PAGE_PWT ? 't' : 'b',
728 pgprot & _PAGE_PCD ? 'u' : 'c',
729 pgprot & _PAGE_ACCESSED ? 'a' : '-',
730 pgprot & _PAGE_DIRTY ? 'd' : '-',
731 pgprot & _PAGE_PSE ? 'm' : 'k',
732 pgprot & _PAGE_GLOBAL ? 'g' : 'l');
733#endif
734 seq_printf(m, "\n");
735 }
736 mutex_unlock(&dev->struct_mutex);
737 return 0;
738}