]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/drm_vm.c
drm: Create drm legacy driver header
[mirror_ubuntu-artful-kernel.git] / drivers / gpu / drm / drm_vm.c
CommitLineData
1da177e4 1/**
b5e89ed5 2 * \file drm_vm.c
1da177e4 3 * Memory mapping for DRM
b5e89ed5 4 *
1da177e4
LT
5 * \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
760285e7 36#include <drm/drmP.h>
2d1a8a48 37#include <linux/export.h>
03decbe5 38#include <linux/seq_file.h>
1da177e4
LT
39#if defined(__ia64__)
40#include <linux/efi.h>
5a0e3ad6 41#include <linux/slab.h>
1da177e4 42#endif
2791ee85 43#include <asm/pgtable.h>
cc5ea594 44#include "drm_legacy.h"
1da177e4 45
03decbe5
DH
46struct drm_vma_entry {
47 struct list_head head;
48 struct vm_area_struct *vma;
49 pid_t pid;
50};
51
c94f7029
DA
52static void drm_vm_open(struct vm_area_struct *vma);
53static void drm_vm_close(struct vm_area_struct *vma);
1da177e4 54
ff47eaf2
AL
55static pgprot_t drm_io_prot(struct drm_local_map *map,
56 struct vm_area_struct *vma)
5cc7f9ab
DA
57{
58 pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
59
60#if defined(__i386__) || defined(__x86_64__)
f435046d
AL
61 if (map->type == _DRM_REGISTERS && !(map->flags & _DRM_WRITE_COMBINING))
62 tmp = pgprot_noncached(tmp);
63 else
64 tmp = pgprot_writecombine(tmp);
5cc7f9ab
DA
65#elif defined(__powerpc__)
66 pgprot_val(tmp) |= _PAGE_NO_CACHE;
ff47eaf2 67 if (map->type == _DRM_REGISTERS)
5cc7f9ab 68 pgprot_val(tmp) |= _PAGE_GUARDED;
6876b3ba 69#elif defined(__ia64__)
5cc7f9ab
DA
70 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);
04cf55e1 75#elif defined(__sparc__) || defined(__arm__) || defined(__mips__)
6876b3ba
BH
76 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;
5cc7f9ab
DA
87#endif
88 return tmp;
89}
90
1da177e4 91/**
ca0b07d9 92 * \c fault method for AGP virtual memory.
1da177e4
LT
93 *
94 * \param vma virtual memory area.
95 * \param address access address.
96 * \return pointer to the page structure.
b5e89ed5 97 *
1da177e4
LT
98 * 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
ca0b07d9 102static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1da177e4 103{
84b1fd10 104 struct drm_file *priv = vma->vm_file->private_data;
2c14f28b 105 struct drm_device *dev = priv->minor->dev;
f77d390c 106 struct drm_local_map *map = NULL;
55910517 107 struct drm_map_list *r_list;
e0be428e 108 struct drm_hash_item *hash;
1da177e4
LT
109
110 /*
b5e89ed5
DA
111 * Find the right map
112 */
d9906753 113 if (!dev->agp)
ca0b07d9 114 goto vm_fault_error;
1da177e4 115
b5e89ed5 116 if (!dev->agp || !dev->agp->cant_use_aperture)
ca0b07d9 117 goto vm_fault_error;
1da177e4 118
1545085a 119 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash))
ca0b07d9 120 goto vm_fault_error;
8d153f71 121
55910517 122 r_list = drm_hash_entry(hash, struct drm_map_list, hash);
8d153f71 123 map = r_list->map;
1da177e4
LT
124
125 if (map && map->type == _DRM_AGP) {
ca0b07d9
NP
126 /*
127 * Using vm_pgoff as a selector forces us to use this unusual
128 * addressing scheme.
129 */
41c2e75e
BH
130 resource_size_t offset = (unsigned long)vmf->virtual_address -
131 vma->vm_start;
132 resource_size_t baddr = map->offset + offset;
1da177e4
LT
133 struct drm_agp_mem *agpmem;
134 struct page *page;
135
136#ifdef __alpha__
137 /*
b5e89ed5
DA
138 * Adjust to a bus-relative address
139 */
1da177e4
LT
140 baddr -= dev->hose->mem_space->start;
141#endif
142
143 /*
b5e89ed5
DA
144 * It's AGP memory - find the real physical page to map
145 */
bd1b331f 146 list_for_each_entry(agpmem, &dev->agp->memory, head) {
1da177e4 147 if (agpmem->bound <= baddr &&
b5e89ed5 148 agpmem->bound + agpmem->pages * PAGE_SIZE > baddr)
1da177e4
LT
149 break;
150 }
151
161c4810 152 if (&agpmem->head == &dev->agp->memory)
ca0b07d9 153 goto vm_fault_error;
1da177e4
LT
154
155 /*
b5e89ed5
DA
156 * Get the page, inc the use count, and return it
157 */
1da177e4 158 offset = (baddr - agpmem->bound) >> PAGE_SHIFT;
07613ba2 159 page = agpmem->memory->pages[offset];
1da177e4 160 get_page(page);
ca0b07d9 161 vmf->page = page;
1da177e4 162
b5e89ed5 163 DRM_DEBUG
41c2e75e
BH
164 ("baddr = 0x%llx page = 0x%p, offset = 0x%llx, count=%d\n",
165 (unsigned long long)baddr,
07613ba2 166 agpmem->memory->pages[offset],
41c2e75e 167 (unsigned long long)offset,
b5e89ed5 168 page_count(page));
ca0b07d9 169 return 0;
b5e89ed5 170 }
ca0b07d9
NP
171vm_fault_error:
172 return VM_FAULT_SIGBUS; /* Disallow mremap */
1da177e4 173}
b5e89ed5 174#else /* __OS_HAS_AGP */
ca0b07d9 175static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1da177e4 176{
ca0b07d9 177 return VM_FAULT_SIGBUS;
1da177e4 178}
b5e89ed5 179#endif /* __OS_HAS_AGP */
1da177e4
LT
180
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.
b5e89ed5 187 *
59c51591 188 * Get the mapping, find the real physical page to map, get the page, and
1da177e4
LT
189 * return it.
190 */
ca0b07d9 191static int drm_do_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1da177e4 192{
f77d390c 193 struct drm_local_map *map = vma->vm_private_data;
b5e89ed5
DA
194 unsigned long offset;
195 unsigned long i;
196 struct page *page;
1da177e4 197
b5e89ed5 198 if (!map)
ca0b07d9 199 return VM_FAULT_SIGBUS; /* Nothing allocated */
1da177e4 200
ca0b07d9 201 offset = (unsigned long)vmf->virtual_address - vma->vm_start;
1da177e4 202 i = (unsigned long)map->handle + offset;
38315878 203 page = vmalloc_to_page((void *)i);
1da177e4 204 if (!page)
ca0b07d9 205 return VM_FAULT_SIGBUS;
1da177e4 206 get_page(page);
ca0b07d9 207 vmf->page = page;
1da177e4 208
ca0b07d9
NP
209 DRM_DEBUG("shm_fault 0x%lx\n", offset);
210 return 0;
1da177e4
LT
211}
212
1da177e4
LT
213/**
214 * \c close method for shared virtual memory.
b5e89ed5 215 *
1da177e4 216 * \param vma virtual memory area.
b5e89ed5 217 *
1da177e4
LT
218 * Deletes map information if we are the last
219 * person to close a mapping and it's not in the global maplist.
220 */
c94f7029 221static void drm_vm_shm_close(struct vm_area_struct *vma)
1da177e4 222{
84b1fd10 223 struct drm_file *priv = vma->vm_file->private_data;
2c14f28b 224 struct drm_device *dev = priv->minor->dev;
8fc2fdf4 225 struct drm_vma_entry *pt, *temp;
f77d390c 226 struct drm_local_map *map;
55910517 227 struct drm_map_list *r_list;
1da177e4
LT
228 int found_maps = 0;
229
230 DRM_DEBUG("0x%08lx,0x%08lx\n",
231 vma->vm_start, vma->vm_end - vma->vm_start);
1da177e4
LT
232
233 map = vma->vm_private_data;
234
30e2fb18 235 mutex_lock(&dev->struct_mutex);
bd1b331f 236 list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
b5e89ed5
DA
237 if (pt->vma->vm_private_data == map)
238 found_maps++;
1da177e4 239 if (pt->vma == vma) {
bd1b331f 240 list_del(&pt->head);
9a298b2a 241 kfree(pt);
1da177e4
LT
242 }
243 }
bd1b331f 244
1da177e4 245 /* We were the only map that was found */
b5e89ed5 246 if (found_maps == 1 && map->flags & _DRM_REMOVABLE) {
1da177e4
LT
247 /* 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;
bd1b331f 251 list_for_each_entry(r_list, &dev->maplist, head) {
b5e89ed5
DA
252 if (r_list->map == map)
253 found_maps++;
1da177e4
LT
254 }
255
b5e89ed5 256 if (!found_maps) {
9c8da5eb
DA
257 drm_dma_handle_t dmah;
258
1da177e4
LT
259 switch (map->type) {
260 case _DRM_REGISTERS:
261 case _DRM_FRAME_BUFFER:
28185647 262 arch_phys_wc_del(map->mtrr);
004a7727 263 iounmap(map->handle);
1da177e4
LT
264 break;
265 case _DRM_SHM:
266 vfree(map->handle);
267 break;
268 case _DRM_AGP:
269 case _DRM_SCATTER_GATHER:
270 break;
2d0f9eaf 271 case _DRM_CONSISTENT:
9c8da5eb
DA
272 dmah.vaddr = map->handle;
273 dmah.busaddr = map->offset;
274 dmah.size = map->size;
275 __drm_pci_free(dev, &dmah);
2d0f9eaf 276 break;
1da177e4 277 }
9a298b2a 278 kfree(map);
1da177e4
LT
279 }
280 }
30e2fb18 281 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
282}
283
284/**
ca0b07d9 285 * \c fault method for DMA virtual memory.
1da177e4
LT
286 *
287 * \param vma virtual memory area.
288 * \param address access address.
289 * \return pointer to the page structure.
b5e89ed5 290 *
1da177e4
LT
291 * Determine the page number from the page offset and get it from drm_device_dma::pagelist.
292 */
ca0b07d9 293static int drm_do_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1da177e4 294{
84b1fd10 295 struct drm_file *priv = vma->vm_file->private_data;
2c14f28b 296 struct drm_device *dev = priv->minor->dev;
cdd55a29 297 struct drm_device_dma *dma = dev->dma;
b5e89ed5
DA
298 unsigned long offset;
299 unsigned long page_nr;
300 struct page *page;
301
302 if (!dma)
ca0b07d9 303 return VM_FAULT_SIGBUS; /* Error */
b5e89ed5 304 if (!dma->pagelist)
ca0b07d9 305 return VM_FAULT_SIGBUS; /* Nothing allocated */
b5e89ed5 306
ca0b07d9
NP
307 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 */
e1e78533 309 page = virt_to_page((void *)dma->pagelist[page_nr]);
1da177e4
LT
310
311 get_page(page);
ca0b07d9 312 vmf->page = page;
1da177e4 313
ca0b07d9
NP
314 DRM_DEBUG("dma_fault 0x%lx (page %lu)\n", offset, page_nr);
315 return 0;
1da177e4
LT
316}
317
318/**
ca0b07d9 319 * \c fault method for scatter-gather virtual memory.
1da177e4
LT
320 *
321 * \param vma virtual memory area.
322 * \param address access address.
323 * \return pointer to the page structure.
b5e89ed5 324 *
1da177e4
LT
325 * Determine the map offset from the page offset and get it from drm_sg_mem::pagelist.
326 */
ca0b07d9 327static int drm_do_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1da177e4 328{
f77d390c 329 struct drm_local_map *map = vma->vm_private_data;
84b1fd10 330 struct drm_file *priv = vma->vm_file->private_data;
2c14f28b 331 struct drm_device *dev = priv->minor->dev;
55910517 332 struct drm_sg_mem *entry = dev->sg;
1da177e4
LT
333 unsigned long offset;
334 unsigned long map_offset;
335 unsigned long page_offset;
336 struct page *page;
337
b5e89ed5 338 if (!entry)
ca0b07d9 339 return VM_FAULT_SIGBUS; /* Error */
b5e89ed5 340 if (!entry->pagelist)
ca0b07d9 341 return VM_FAULT_SIGBUS; /* Nothing allocated */
1da177e4 342
ca0b07d9 343 offset = (unsigned long)vmf->virtual_address - vma->vm_start;
d1f2b55a 344 map_offset = map->offset - (unsigned long)dev->sg->virtual;
1da177e4
LT
345 page_offset = (offset >> PAGE_SHIFT) + (map_offset >> PAGE_SHIFT);
346 page = entry->pagelist[page_offset];
347 get_page(page);
ca0b07d9 348 vmf->page = page;
1da177e4 349
ca0b07d9 350 return 0;
1da177e4
LT
351}
352
ca0b07d9 353static int drm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
b5e89ed5 354{
ca0b07d9 355 return drm_do_vm_fault(vma, vmf);
1da177e4
LT
356}
357
ca0b07d9 358static int drm_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
b5e89ed5 359{
ca0b07d9 360 return drm_do_vm_shm_fault(vma, vmf);
1da177e4
LT
361}
362
ca0b07d9 363static int drm_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
b5e89ed5 364{
ca0b07d9 365 return drm_do_vm_dma_fault(vma, vmf);
1da177e4
LT
366}
367
ca0b07d9 368static int drm_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
b5e89ed5 369{
ca0b07d9 370 return drm_do_vm_sg_fault(vma, vmf);
1da177e4
LT
371}
372
1da177e4 373/** AGP virtual memory operations */
f0f37e2f 374static const struct vm_operations_struct drm_vm_ops = {
ca0b07d9 375 .fault = drm_vm_fault,
b5e89ed5
DA
376 .open = drm_vm_open,
377 .close = drm_vm_close,
1da177e4
LT
378};
379
380/** Shared virtual memory operations */
f0f37e2f 381static const struct vm_operations_struct drm_vm_shm_ops = {
ca0b07d9 382 .fault = drm_vm_shm_fault,
b5e89ed5
DA
383 .open = drm_vm_open,
384 .close = drm_vm_shm_close,
1da177e4
LT
385};
386
387/** DMA virtual memory operations */
f0f37e2f 388static const struct vm_operations_struct drm_vm_dma_ops = {
ca0b07d9 389 .fault = drm_vm_dma_fault,
b5e89ed5
DA
390 .open = drm_vm_open,
391 .close = drm_vm_close,
1da177e4
LT
392};
393
394/** Scatter-gather virtual memory operations */
f0f37e2f 395static const struct vm_operations_struct drm_vm_sg_ops = {
ca0b07d9 396 .fault = drm_vm_sg_fault,
b5e89ed5
DA
397 .open = drm_vm_open,
398 .close = drm_vm_close,
1da177e4
LT
399};
400
1da177e4
LT
401/**
402 * \c open method for shared virtual memory.
b5e89ed5 403 *
1da177e4 404 * \param vma virtual memory area.
b5e89ed5 405 *
1da177e4
LT
406 * Create a new drm_vma_entry structure as the \p vma private data entry and
407 * add it to drm_device::vmalist.
408 */
b06d66be
RC
409void drm_vm_open_locked(struct drm_device *dev,
410 struct vm_area_struct *vma)
1da177e4 411{
8fc2fdf4 412 struct drm_vma_entry *vma_entry;
1da177e4
LT
413
414 DRM_DEBUG("0x%08lx,0x%08lx\n",
415 vma->vm_start, vma->vm_end - vma->vm_start);
1da177e4 416
9a298b2a 417 vma_entry = kmalloc(sizeof(*vma_entry), GFP_KERNEL);
1da177e4 418 if (vma_entry) {
b5e89ed5 419 vma_entry->vma = vma;
b5e89ed5 420 vma_entry->pid = current->pid;
bd1b331f 421 list_add(&vma_entry->head, &dev->vmalist);
1da177e4
LT
422 }
423}
d5028995 424EXPORT_SYMBOL_GPL(drm_vm_open_locked);
1da177e4 425
d7d8aac7
TH
426static void drm_vm_open(struct vm_area_struct *vma)
427{
84b1fd10 428 struct drm_file *priv = vma->vm_file->private_data;
2c14f28b 429 struct drm_device *dev = priv->minor->dev;
d7d8aac7
TH
430
431 mutex_lock(&dev->struct_mutex);
b06d66be 432 drm_vm_open_locked(dev, vma);
d7d8aac7
TH
433 mutex_unlock(&dev->struct_mutex);
434}
435
b06d66be
RC
436void drm_vm_close_locked(struct drm_device *dev,
437 struct vm_area_struct *vma)
1da177e4 438{
8fc2fdf4 439 struct drm_vma_entry *pt, *temp;
1da177e4
LT
440
441 DRM_DEBUG("0x%08lx,0x%08lx\n",
442 vma->vm_start, vma->vm_end - vma->vm_start);
1da177e4 443
bd1b331f 444 list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
1da177e4 445 if (pt->vma == vma) {
bd1b331f 446 list_del(&pt->head);
9a298b2a 447 kfree(pt);
1da177e4
LT
448 break;
449 }
450 }
31dfbc93
CW
451}
452
453/**
454 * \c close method for all virtual memory types.
455 *
456 * \param vma virtual memory area.
457 *
458 * Search the \p vma private data entry in drm_device::vmalist, unlink it, and
459 * free it.
460 */
461static void drm_vm_close(struct vm_area_struct *vma)
462{
463 struct drm_file *priv = vma->vm_file->private_data;
464 struct drm_device *dev = priv->minor->dev;
465
466 mutex_lock(&dev->struct_mutex);
b06d66be 467 drm_vm_close_locked(dev, vma);
30e2fb18 468 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
469}
470
471/**
472 * mmap DMA memory.
473 *
6c340eac 474 * \param file_priv DRM file private.
1da177e4
LT
475 * \param vma virtual memory area.
476 * \return zero on success or a negative number on failure.
b5e89ed5 477 *
1da177e4
LT
478 * Sets the virtual memory area operations structure to vm_dma_ops, the file
479 * pointer, and calls vm_open().
480 */
c94f7029 481static int drm_mmap_dma(struct file *filp, struct vm_area_struct *vma)
1da177e4 482{
84b1fd10
DA
483 struct drm_file *priv = filp->private_data;
484 struct drm_device *dev;
cdd55a29 485 struct drm_device_dma *dma;
b5e89ed5 486 unsigned long length = vma->vm_end - vma->vm_start;
1da177e4 487
2c14f28b 488 dev = priv->minor->dev;
b5e89ed5 489 dma = dev->dma;
1545085a
TH
490 DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
491 vma->vm_start, vma->vm_end, vma->vm_pgoff);
1da177e4 492
b5e89ed5 493 /* Length must match exact page count */
1da177e4 494 if (!dma || (length >> PAGE_SHIFT) != dma->page_count) {
1da177e4
LT
495 return -EINVAL;
496 }
1da177e4 497
3417f33e
GS
498 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
b5e89ed5 514 vma->vm_ops = &drm_vm_dma_ops;
1da177e4 515
314e51b9 516 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
1da177e4 517
b06d66be 518 drm_vm_open_locked(dev, vma);
1da177e4
LT
519 return 0;
520}
521
cbc60ca0 522static resource_size_t drm_core_get_reg_ofs(struct drm_device *dev)
1da177e4
LT
523{
524#ifdef __alpha__
82ba3fef 525 return dev->hose->dense_mem_base;
1da177e4
LT
526#else
527 return 0;
528#endif
529}
b5e89ed5 530
1da177e4
LT
531/**
532 * mmap DMA memory.
533 *
6c340eac 534 * \param file_priv DRM file private.
1da177e4
LT
535 * \param vma virtual memory area.
536 * \return zero on success or a negative number on failure.
b5e89ed5 537 *
1da177e4
LT
538 * 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 */
a2c0a97b 544int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma)
1da177e4 545{
84b1fd10 546 struct drm_file *priv = filp->private_data;
2c14f28b 547 struct drm_device *dev = priv->minor->dev;
f77d390c 548 struct drm_local_map *map = NULL;
41c2e75e 549 resource_size_t offset = 0;
e0be428e 550 struct drm_hash_item *hash;
1da177e4 551
1545085a
TH
552 DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
553 vma->vm_start, vma->vm_end, vma->vm_pgoff);
1da177e4 554
b5e89ed5
DA
555 if (!priv->authenticated)
556 return -EACCES;
1da177e4
LT
557
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 */
1545085a 562 if (!vma->vm_pgoff
1da177e4 563#if __OS_HAS_AGP
b5e89ed5
DA
564 && (!dev->agp
565 || dev->agp->agp_info.device->vendor != PCI_VENDOR_ID_APPLE)
1da177e4
LT
566#endif
567 )
568 return drm_mmap_dma(filp, vma);
569
1545085a 570 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash)) {
8d153f71
TH
571 DRM_ERROR("Could not find map\n");
572 return -EINVAL;
1da177e4
LT
573 }
574
55910517 575 map = drm_hash_entry(hash, struct drm_map_list, hash)->map;
b5e89ed5 576 if (!map || ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN)))
1da177e4
LT
577 return -EPERM;
578
b5e89ed5 579 /* Check for valid size. */
54ba2f76 580 if (map->size < vma->vm_end - vma->vm_start)
b5e89ed5 581 return -EINVAL;
1da177e4
LT
582
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
b5e89ed5
DA
588 /* 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)))));
1da177e4
LT
595#endif
596 }
597
598 switch (map->type) {
4b7fb9b5 599#if !defined(__arm__)
b5e89ed5 600 case _DRM_AGP:
d9906753 601 if (dev->agp && dev->agp->cant_use_aperture) {
b5e89ed5
DA
602 /*
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
ca0b07d9 605 * pages and mappings in fault()
b5e89ed5 606 */
1da177e4 607#if defined(__powerpc__)
b5e89ed5 608 pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
1da177e4 609#endif
b5e89ed5
DA
610 vma->vm_ops = &drm_vm_ops;
611 break;
612 }
613 /* fall through to _DRM_FRAME_BUFFER... */
4b7fb9b5 614#endif
1da177e4
LT
615 case _DRM_FRAME_BUFFER:
616 case _DRM_REGISTERS:
cbc60ca0 617 offset = drm_core_get_reg_ofs(dev);
ff47eaf2 618 vma->vm_page_prot = drm_io_prot(map, vma);
3d77461e 619 if (io_remap_pfn_range(vma, vma->vm_start,
b5e89ed5
DA
620 (map->offset + offset) >> PAGE_SHIFT,
621 vma->vm_end - vma->vm_start,
622 vma->vm_page_prot))
b5e89ed5 623 return -EAGAIN;
1da177e4 624 DRM_DEBUG(" Type = %d; start = 0x%lx, end = 0x%lx,"
41c2e75e 625 " offset = 0x%llx\n",
1da177e4 626 map->type,
41c2e75e 627 vma->vm_start, vma->vm_end, (unsigned long long)(map->offset + offset));
4b7fb9b5 628
1da177e4
LT
629 vma->vm_ops = &drm_vm_ops;
630 break;
2d0f9eaf 631 case _DRM_CONSISTENT:
38315878 632 /* Consistent memory is really like shared memory. But
ca0b07d9 633 * it's allocated in a different way, so avoid fault */
38315878
HD
634 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;
6876b3ba 638 vma->vm_page_prot = drm_dma_prot(map->type, vma);
38315878
HD
639 /* fall through to _DRM_SHM */
640 case _DRM_SHM:
1da177e4
LT
641 vma->vm_ops = &drm_vm_shm_ops;
642 vma->vm_private_data = (void *)map;
1da177e4
LT
643 break;
644 case _DRM_SCATTER_GATHER:
645 vma->vm_ops = &drm_vm_sg_ops;
646 vma->vm_private_data = (void *)map;
5ff64611 647 vma->vm_page_prot = drm_dma_prot(map->type, vma);
b5e89ed5 648 break;
1da177e4
LT
649 default:
650 return -EINVAL; /* This should never happen. */
651 }
314e51b9 652 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
1da177e4 653
b06d66be 654 drm_vm_open_locked(dev, vma);
1da177e4
LT
655 return 0;
656}
b5e89ed5 657
d7d8aac7
TH
658int drm_mmap(struct file *filp, struct vm_area_struct *vma)
659{
84b1fd10 660 struct drm_file *priv = filp->private_data;
2c14f28b 661 struct drm_device *dev = priv->minor->dev;
d7d8aac7
TH
662 int ret;
663
2c07a21d
DA
664 if (drm_device_is_unplugged(dev))
665 return -ENODEV;
666
d7d8aac7
TH
667 mutex_lock(&dev->struct_mutex);
668 ret = drm_mmap_locked(filp, vma);
669 mutex_unlock(&dev->struct_mutex);
670
671 return ret;
672}
1da177e4 673EXPORT_SYMBOL(drm_mmap);
03decbe5
DH
674
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
03decbe5
DH
686int 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}