Loading...
1/**
2 * \file drm_vm.c
3 * Memory mapping for DRM
4 *
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
36#include <drm/drmP.h>
37#include <linux/export.h>
38#if defined(__ia64__)
39#include <linux/efi.h>
40#include <linux/slab.h>
41#endif
42
43static void drm_vm_open(struct vm_area_struct *vma);
44static void drm_vm_close(struct vm_area_struct *vma);
45
46static pgprot_t drm_io_prot(struct drm_local_map *map,
47 struct vm_area_struct *vma)
48{
49 pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
50
51#if defined(__i386__) || defined(__x86_64__)
52 if (map->type == _DRM_REGISTERS && !(map->flags & _DRM_WRITE_COMBINING))
53 tmp = pgprot_noncached(tmp);
54 else
55 tmp = pgprot_writecombine(tmp);
56#elif defined(__powerpc__)
57 pgprot_val(tmp) |= _PAGE_NO_CACHE;
58 if (map->type == _DRM_REGISTERS)
59 pgprot_val(tmp) |= _PAGE_GUARDED;
60#elif defined(__ia64__)
61 if (efi_range_is_wc(vma->vm_start, vma->vm_end -
62 vma->vm_start))
63 tmp = pgprot_writecombine(tmp);
64 else
65 tmp = pgprot_noncached(tmp);
66#elif defined(__sparc__) || defined(__arm__) || defined(__mips__)
67 tmp = pgprot_noncached(tmp);
68#endif
69 return tmp;
70}
71
72static pgprot_t drm_dma_prot(uint32_t map_type, struct vm_area_struct *vma)
73{
74 pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
75
76#if defined(__powerpc__) && defined(CONFIG_NOT_COHERENT_CACHE)
77 tmp |= _PAGE_NO_CACHE;
78#endif
79 return tmp;
80}
81
82/**
83 * \c fault method for AGP virtual memory.
84 *
85 * \param vma virtual memory area.
86 * \param address access address.
87 * \return pointer to the page structure.
88 *
89 * Find the right map and if it's AGP memory find the real physical page to
90 * map, get the page, increment the use count and return it.
91 */
92#if __OS_HAS_AGP
93static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
94{
95 struct drm_file *priv = vma->vm_file->private_data;
96 struct drm_device *dev = priv->minor->dev;
97 struct drm_local_map *map = NULL;
98 struct drm_map_list *r_list;
99 struct drm_hash_item *hash;
100
101 /*
102 * Find the right map
103 */
104 if (!dev->agp)
105 goto vm_fault_error;
106
107 if (!dev->agp || !dev->agp->cant_use_aperture)
108 goto vm_fault_error;
109
110 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash))
111 goto vm_fault_error;
112
113 r_list = drm_hash_entry(hash, struct drm_map_list, hash);
114 map = r_list->map;
115
116 if (map && map->type == _DRM_AGP) {
117 /*
118 * Using vm_pgoff as a selector forces us to use this unusual
119 * addressing scheme.
120 */
121 resource_size_t offset = (unsigned long)vmf->virtual_address -
122 vma->vm_start;
123 resource_size_t baddr = map->offset + offset;
124 struct drm_agp_mem *agpmem;
125 struct page *page;
126
127#ifdef __alpha__
128 /*
129 * Adjust to a bus-relative address
130 */
131 baddr -= dev->hose->mem_space->start;
132#endif
133
134 /*
135 * It's AGP memory - find the real physical page to map
136 */
137 list_for_each_entry(agpmem, &dev->agp->memory, head) {
138 if (agpmem->bound <= baddr &&
139 agpmem->bound + agpmem->pages * PAGE_SIZE > baddr)
140 break;
141 }
142
143 if (&agpmem->head == &dev->agp->memory)
144 goto vm_fault_error;
145
146 /*
147 * Get the page, inc the use count, and return it
148 */
149 offset = (baddr - agpmem->bound) >> PAGE_SHIFT;
150 page = agpmem->memory->pages[offset];
151 get_page(page);
152 vmf->page = page;
153
154 DRM_DEBUG
155 ("baddr = 0x%llx page = 0x%p, offset = 0x%llx, count=%d\n",
156 (unsigned long long)baddr,
157 agpmem->memory->pages[offset],
158 (unsigned long long)offset,
159 page_count(page));
160 return 0;
161 }
162vm_fault_error:
163 return VM_FAULT_SIGBUS; /* Disallow mremap */
164}
165#else /* __OS_HAS_AGP */
166static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
167{
168 return VM_FAULT_SIGBUS;
169}
170#endif /* __OS_HAS_AGP */
171
172/**
173 * \c nopage method for shared virtual memory.
174 *
175 * \param vma virtual memory area.
176 * \param address access address.
177 * \return pointer to the page structure.
178 *
179 * Get the mapping, find the real physical page to map, get the page, and
180 * return it.
181 */
182static int drm_do_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
183{
184 struct drm_local_map *map = vma->vm_private_data;
185 unsigned long offset;
186 unsigned long i;
187 struct page *page;
188
189 if (!map)
190 return VM_FAULT_SIGBUS; /* Nothing allocated */
191
192 offset = (unsigned long)vmf->virtual_address - vma->vm_start;
193 i = (unsigned long)map->handle + offset;
194 page = vmalloc_to_page((void *)i);
195 if (!page)
196 return VM_FAULT_SIGBUS;
197 get_page(page);
198 vmf->page = page;
199
200 DRM_DEBUG("shm_fault 0x%lx\n", offset);
201 return 0;
202}
203
204/**
205 * \c close method for shared virtual memory.
206 *
207 * \param vma virtual memory area.
208 *
209 * Deletes map information if we are the last
210 * person to close a mapping and it's not in the global maplist.
211 */
212static void drm_vm_shm_close(struct vm_area_struct *vma)
213{
214 struct drm_file *priv = vma->vm_file->private_data;
215 struct drm_device *dev = priv->minor->dev;
216 struct drm_vma_entry *pt, *temp;
217 struct drm_local_map *map;
218 struct drm_map_list *r_list;
219 int found_maps = 0;
220
221 DRM_DEBUG("0x%08lx,0x%08lx\n",
222 vma->vm_start, vma->vm_end - vma->vm_start);
223
224 map = vma->vm_private_data;
225
226 mutex_lock(&dev->struct_mutex);
227 list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
228 if (pt->vma->vm_private_data == map)
229 found_maps++;
230 if (pt->vma == vma) {
231 list_del(&pt->head);
232 kfree(pt);
233 }
234 }
235
236 /* We were the only map that was found */
237 if (found_maps == 1 && map->flags & _DRM_REMOVABLE) {
238 /* Check to see if we are in the maplist, if we are not, then
239 * we delete this mappings information.
240 */
241 found_maps = 0;
242 list_for_each_entry(r_list, &dev->maplist, head) {
243 if (r_list->map == map)
244 found_maps++;
245 }
246
247 if (!found_maps) {
248 drm_dma_handle_t dmah;
249
250 switch (map->type) {
251 case _DRM_REGISTERS:
252 case _DRM_FRAME_BUFFER:
253 arch_phys_wc_del(map->mtrr);
254 iounmap(map->handle);
255 break;
256 case _DRM_SHM:
257 vfree(map->handle);
258 break;
259 case _DRM_AGP:
260 case _DRM_SCATTER_GATHER:
261 break;
262 case _DRM_CONSISTENT:
263 dmah.vaddr = map->handle;
264 dmah.busaddr = map->offset;
265 dmah.size = map->size;
266 __drm_pci_free(dev, &dmah);
267 break;
268 }
269 kfree(map);
270 }
271 }
272 mutex_unlock(&dev->struct_mutex);
273}
274
275/**
276 * \c fault method for DMA virtual memory.
277 *
278 * \param vma virtual memory area.
279 * \param address access address.
280 * \return pointer to the page structure.
281 *
282 * Determine the page number from the page offset and get it from drm_device_dma::pagelist.
283 */
284static int drm_do_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
285{
286 struct drm_file *priv = vma->vm_file->private_data;
287 struct drm_device *dev = priv->minor->dev;
288 struct drm_device_dma *dma = dev->dma;
289 unsigned long offset;
290 unsigned long page_nr;
291 struct page *page;
292
293 if (!dma)
294 return VM_FAULT_SIGBUS; /* Error */
295 if (!dma->pagelist)
296 return VM_FAULT_SIGBUS; /* Nothing allocated */
297
298 offset = (unsigned long)vmf->virtual_address - vma->vm_start; /* vm_[pg]off[set] should be 0 */
299 page_nr = offset >> PAGE_SHIFT; /* page_nr could just be vmf->pgoff */
300 page = virt_to_page((void *)dma->pagelist[page_nr]);
301
302 get_page(page);
303 vmf->page = page;
304
305 DRM_DEBUG("dma_fault 0x%lx (page %lu)\n", offset, page_nr);
306 return 0;
307}
308
309/**
310 * \c fault method for scatter-gather virtual memory.
311 *
312 * \param vma virtual memory area.
313 * \param address access address.
314 * \return pointer to the page structure.
315 *
316 * Determine the map offset from the page offset and get it from drm_sg_mem::pagelist.
317 */
318static int drm_do_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
319{
320 struct drm_local_map *map = vma->vm_private_data;
321 struct drm_file *priv = vma->vm_file->private_data;
322 struct drm_device *dev = priv->minor->dev;
323 struct drm_sg_mem *entry = dev->sg;
324 unsigned long offset;
325 unsigned long map_offset;
326 unsigned long page_offset;
327 struct page *page;
328
329 if (!entry)
330 return VM_FAULT_SIGBUS; /* Error */
331 if (!entry->pagelist)
332 return VM_FAULT_SIGBUS; /* Nothing allocated */
333
334 offset = (unsigned long)vmf->virtual_address - vma->vm_start;
335 map_offset = map->offset - (unsigned long)dev->sg->virtual;
336 page_offset = (offset >> PAGE_SHIFT) + (map_offset >> PAGE_SHIFT);
337 page = entry->pagelist[page_offset];
338 get_page(page);
339 vmf->page = page;
340
341 return 0;
342}
343
344static int drm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
345{
346 return drm_do_vm_fault(vma, vmf);
347}
348
349static int drm_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
350{
351 return drm_do_vm_shm_fault(vma, vmf);
352}
353
354static int drm_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
355{
356 return drm_do_vm_dma_fault(vma, vmf);
357}
358
359static int drm_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
360{
361 return drm_do_vm_sg_fault(vma, vmf);
362}
363
364/** AGP virtual memory operations */
365static const struct vm_operations_struct drm_vm_ops = {
366 .fault = drm_vm_fault,
367 .open = drm_vm_open,
368 .close = drm_vm_close,
369};
370
371/** Shared virtual memory operations */
372static const struct vm_operations_struct drm_vm_shm_ops = {
373 .fault = drm_vm_shm_fault,
374 .open = drm_vm_open,
375 .close = drm_vm_shm_close,
376};
377
378/** DMA virtual memory operations */
379static const struct vm_operations_struct drm_vm_dma_ops = {
380 .fault = drm_vm_dma_fault,
381 .open = drm_vm_open,
382 .close = drm_vm_close,
383};
384
385/** Scatter-gather virtual memory operations */
386static const struct vm_operations_struct drm_vm_sg_ops = {
387 .fault = drm_vm_sg_fault,
388 .open = drm_vm_open,
389 .close = drm_vm_close,
390};
391
392/**
393 * \c open method for shared virtual memory.
394 *
395 * \param vma virtual memory area.
396 *
397 * Create a new drm_vma_entry structure as the \p vma private data entry and
398 * add it to drm_device::vmalist.
399 */
400void drm_vm_open_locked(struct drm_device *dev,
401 struct vm_area_struct *vma)
402{
403 struct drm_vma_entry *vma_entry;
404
405 DRM_DEBUG("0x%08lx,0x%08lx\n",
406 vma->vm_start, vma->vm_end - vma->vm_start);
407
408 vma_entry = kmalloc(sizeof(*vma_entry), GFP_KERNEL);
409 if (vma_entry) {
410 vma_entry->vma = vma;
411 vma_entry->pid = current->pid;
412 list_add(&vma_entry->head, &dev->vmalist);
413 }
414}
415EXPORT_SYMBOL_GPL(drm_vm_open_locked);
416
417static void drm_vm_open(struct vm_area_struct *vma)
418{
419 struct drm_file *priv = vma->vm_file->private_data;
420 struct drm_device *dev = priv->minor->dev;
421
422 mutex_lock(&dev->struct_mutex);
423 drm_vm_open_locked(dev, vma);
424 mutex_unlock(&dev->struct_mutex);
425}
426
427void drm_vm_close_locked(struct drm_device *dev,
428 struct vm_area_struct *vma)
429{
430 struct drm_vma_entry *pt, *temp;
431
432 DRM_DEBUG("0x%08lx,0x%08lx\n",
433 vma->vm_start, vma->vm_end - vma->vm_start);
434
435 list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
436 if (pt->vma == vma) {
437 list_del(&pt->head);
438 kfree(pt);
439 break;
440 }
441 }
442}
443
444/**
445 * \c close method for all virtual memory types.
446 *
447 * \param vma virtual memory area.
448 *
449 * Search the \p vma private data entry in drm_device::vmalist, unlink it, and
450 * free it.
451 */
452static void drm_vm_close(struct vm_area_struct *vma)
453{
454 struct drm_file *priv = vma->vm_file->private_data;
455 struct drm_device *dev = priv->minor->dev;
456
457 mutex_lock(&dev->struct_mutex);
458 drm_vm_close_locked(dev, vma);
459 mutex_unlock(&dev->struct_mutex);
460}
461
462/**
463 * mmap DMA memory.
464 *
465 * \param file_priv DRM file private.
466 * \param vma virtual memory area.
467 * \return zero on success or a negative number on failure.
468 *
469 * Sets the virtual memory area operations structure to vm_dma_ops, the file
470 * pointer, and calls vm_open().
471 */
472static int drm_mmap_dma(struct file *filp, struct vm_area_struct *vma)
473{
474 struct drm_file *priv = filp->private_data;
475 struct drm_device *dev;
476 struct drm_device_dma *dma;
477 unsigned long length = vma->vm_end - vma->vm_start;
478
479 dev = priv->minor->dev;
480 dma = dev->dma;
481 DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
482 vma->vm_start, vma->vm_end, vma->vm_pgoff);
483
484 /* Length must match exact page count */
485 if (!dma || (length >> PAGE_SHIFT) != dma->page_count) {
486 return -EINVAL;
487 }
488
489 if (!capable(CAP_SYS_ADMIN) &&
490 (dma->flags & _DRM_DMA_USE_PCI_RO)) {
491 vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
492#if defined(__i386__) || defined(__x86_64__)
493 pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
494#else
495 /* Ye gads this is ugly. With more thought
496 we could move this up higher and use
497 `protection_map' instead. */
498 vma->vm_page_prot =
499 __pgprot(pte_val
500 (pte_wrprotect
501 (__pte(pgprot_val(vma->vm_page_prot)))));
502#endif
503 }
504
505 vma->vm_ops = &drm_vm_dma_ops;
506
507 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
508
509 drm_vm_open_locked(dev, vma);
510 return 0;
511}
512
513static resource_size_t drm_core_get_reg_ofs(struct drm_device *dev)
514{
515#ifdef __alpha__
516 return dev->hose->dense_mem_base;
517#else
518 return 0;
519#endif
520}
521
522/**
523 * mmap DMA memory.
524 *
525 * \param file_priv DRM file private.
526 * \param vma virtual memory area.
527 * \return zero on success or a negative number on failure.
528 *
529 * If the virtual memory area has no offset associated with it then it's a DMA
530 * area, so calls mmap_dma(). Otherwise searches the map in drm_device::maplist,
531 * checks that the restricted flag is not set, sets the virtual memory operations
532 * according to the mapping type and remaps the pages. Finally sets the file
533 * pointer and calls vm_open().
534 */
535int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma)
536{
537 struct drm_file *priv = filp->private_data;
538 struct drm_device *dev = priv->minor->dev;
539 struct drm_local_map *map = NULL;
540 resource_size_t offset = 0;
541 struct drm_hash_item *hash;
542
543 DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
544 vma->vm_start, vma->vm_end, vma->vm_pgoff);
545
546 if (!priv->authenticated)
547 return -EACCES;
548
549 /* We check for "dma". On Apple's UniNorth, it's valid to have
550 * the AGP mapped at physical address 0
551 * --BenH.
552 */
553 if (!vma->vm_pgoff
554#if __OS_HAS_AGP
555 && (!dev->agp
556 || dev->agp->agp_info.device->vendor != PCI_VENDOR_ID_APPLE)
557#endif
558 )
559 return drm_mmap_dma(filp, vma);
560
561 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash)) {
562 DRM_ERROR("Could not find map\n");
563 return -EINVAL;
564 }
565
566 map = drm_hash_entry(hash, struct drm_map_list, hash)->map;
567 if (!map || ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN)))
568 return -EPERM;
569
570 /* Check for valid size. */
571 if (map->size < vma->vm_end - vma->vm_start)
572 return -EINVAL;
573
574 if (!capable(CAP_SYS_ADMIN) && (map->flags & _DRM_READ_ONLY)) {
575 vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
576#if defined(__i386__) || defined(__x86_64__)
577 pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
578#else
579 /* Ye gads this is ugly. With more thought
580 we could move this up higher and use
581 `protection_map' instead. */
582 vma->vm_page_prot =
583 __pgprot(pte_val
584 (pte_wrprotect
585 (__pte(pgprot_val(vma->vm_page_prot)))));
586#endif
587 }
588
589 switch (map->type) {
590#if !defined(__arm__)
591 case _DRM_AGP:
592 if (dev->agp && dev->agp->cant_use_aperture) {
593 /*
594 * On some platforms we can't talk to bus dma address from the CPU, so for
595 * memory of type DRM_AGP, we'll deal with sorting out the real physical
596 * pages and mappings in fault()
597 */
598#if defined(__powerpc__)
599 pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
600#endif
601 vma->vm_ops = &drm_vm_ops;
602 break;
603 }
604 /* fall through to _DRM_FRAME_BUFFER... */
605#endif
606 case _DRM_FRAME_BUFFER:
607 case _DRM_REGISTERS:
608 offset = drm_core_get_reg_ofs(dev);
609 vma->vm_page_prot = drm_io_prot(map, vma);
610 if (io_remap_pfn_range(vma, vma->vm_start,
611 (map->offset + offset) >> PAGE_SHIFT,
612 vma->vm_end - vma->vm_start,
613 vma->vm_page_prot))
614 return -EAGAIN;
615 DRM_DEBUG(" Type = %d; start = 0x%lx, end = 0x%lx,"
616 " offset = 0x%llx\n",
617 map->type,
618 vma->vm_start, vma->vm_end, (unsigned long long)(map->offset + offset));
619
620 vma->vm_ops = &drm_vm_ops;
621 break;
622 case _DRM_CONSISTENT:
623 /* Consistent memory is really like shared memory. But
624 * it's allocated in a different way, so avoid fault */
625 if (remap_pfn_range(vma, vma->vm_start,
626 page_to_pfn(virt_to_page(map->handle)),
627 vma->vm_end - vma->vm_start, vma->vm_page_prot))
628 return -EAGAIN;
629 vma->vm_page_prot = drm_dma_prot(map->type, vma);
630 /* fall through to _DRM_SHM */
631 case _DRM_SHM:
632 vma->vm_ops = &drm_vm_shm_ops;
633 vma->vm_private_data = (void *)map;
634 break;
635 case _DRM_SCATTER_GATHER:
636 vma->vm_ops = &drm_vm_sg_ops;
637 vma->vm_private_data = (void *)map;
638 vma->vm_page_prot = drm_dma_prot(map->type, vma);
639 break;
640 default:
641 return -EINVAL; /* This should never happen. */
642 }
643 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
644
645 drm_vm_open_locked(dev, vma);
646 return 0;
647}
648
649int drm_mmap(struct file *filp, struct vm_area_struct *vma)
650{
651 struct drm_file *priv = filp->private_data;
652 struct drm_device *dev = priv->minor->dev;
653 int ret;
654
655 if (drm_device_is_unplugged(dev))
656 return -ENODEV;
657
658 mutex_lock(&dev->struct_mutex);
659 ret = drm_mmap_locked(filp, vma);
660 mutex_unlock(&dev->struct_mutex);
661
662 return ret;
663}
664EXPORT_SYMBOL(drm_mmap);
1/*
2 * \file drm_vm.c
3 * Memory mapping for DRM
4 *
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
36#include <linux/export.h>
37#include <linux/pci.h>
38#include <linux/seq_file.h>
39#include <linux/vmalloc.h>
40#include <linux/pgtable.h>
41
42#if defined(__ia64__)
43#include <linux/efi.h>
44#include <linux/slab.h>
45#endif
46#include <linux/mem_encrypt.h>
47
48#include <drm/drm_device.h>
49#include <drm/drm_drv.h>
50#include <drm/drm_file.h>
51#include <drm/drm_framebuffer.h>
52#include <drm/drm_print.h>
53
54#include "drm_internal.h"
55#include "drm_legacy.h"
56
57struct drm_vma_entry {
58 struct list_head head;
59 struct vm_area_struct *vma;
60 pid_t pid;
61};
62
63static void drm_vm_open(struct vm_area_struct *vma);
64static void drm_vm_close(struct vm_area_struct *vma);
65
66static pgprot_t drm_io_prot(struct drm_local_map *map,
67 struct vm_area_struct *vma)
68{
69 pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
70
71#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || \
72 defined(__mips__) || defined(__loongarch__)
73 if (map->type == _DRM_REGISTERS && !(map->flags & _DRM_WRITE_COMBINING))
74 tmp = pgprot_noncached(tmp);
75 else
76 tmp = pgprot_writecombine(tmp);
77#elif defined(__ia64__)
78 if (efi_range_is_wc(vma->vm_start, vma->vm_end -
79 vma->vm_start))
80 tmp = pgprot_writecombine(tmp);
81 else
82 tmp = pgprot_noncached(tmp);
83#elif defined(__sparc__) || defined(__arm__)
84 tmp = pgprot_noncached(tmp);
85#endif
86 return tmp;
87}
88
89static pgprot_t drm_dma_prot(uint32_t map_type, struct vm_area_struct *vma)
90{
91 pgprot_t tmp = vm_get_page_prot(vma->vm_flags);
92
93#if defined(__powerpc__) && defined(CONFIG_NOT_COHERENT_CACHE)
94 tmp = pgprot_noncached_wc(tmp);
95#endif
96 return tmp;
97}
98
99/*
100 * \c fault method for AGP virtual memory.
101 *
102 * \param vma virtual memory area.
103 * \param address access address.
104 * \return pointer to the page structure.
105 *
106 * Find the right map and if it's AGP memory find the real physical page to
107 * map, get the page, increment the use count and return it.
108 */
109#if IS_ENABLED(CONFIG_AGP)
110static vm_fault_t drm_vm_fault(struct vm_fault *vmf)
111{
112 struct vm_area_struct *vma = vmf->vma;
113 struct drm_file *priv = vma->vm_file->private_data;
114 struct drm_device *dev = priv->minor->dev;
115 struct drm_local_map *map = NULL;
116 struct drm_map_list *r_list;
117 struct drm_hash_item *hash;
118
119 /*
120 * Find the right map
121 */
122 if (!dev->agp)
123 goto vm_fault_error;
124
125 if (!dev->agp || !dev->agp->cant_use_aperture)
126 goto vm_fault_error;
127
128 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash))
129 goto vm_fault_error;
130
131 r_list = drm_hash_entry(hash, struct drm_map_list, hash);
132 map = r_list->map;
133
134 if (map && map->type == _DRM_AGP) {
135 /*
136 * Using vm_pgoff as a selector forces us to use this unusual
137 * addressing scheme.
138 */
139 resource_size_t offset = vmf->address - vma->vm_start;
140 resource_size_t baddr = map->offset + offset;
141 struct drm_agp_mem *agpmem;
142 struct page *page;
143
144#ifdef __alpha__
145 /*
146 * Adjust to a bus-relative address
147 */
148 baddr -= dev->hose->mem_space->start;
149#endif
150
151 /*
152 * It's AGP memory - find the real physical page to map
153 */
154 list_for_each_entry(agpmem, &dev->agp->memory, head) {
155 if (agpmem->bound <= baddr &&
156 agpmem->bound + agpmem->pages * PAGE_SIZE > baddr)
157 break;
158 }
159
160 if (&agpmem->head == &dev->agp->memory)
161 goto vm_fault_error;
162
163 /*
164 * Get the page, inc the use count, and return it
165 */
166 offset = (baddr - agpmem->bound) >> PAGE_SHIFT;
167 page = agpmem->memory->pages[offset];
168 get_page(page);
169 vmf->page = page;
170
171 DRM_DEBUG
172 ("baddr = 0x%llx page = 0x%p, offset = 0x%llx, count=%d\n",
173 (unsigned long long)baddr,
174 agpmem->memory->pages[offset],
175 (unsigned long long)offset,
176 page_count(page));
177 return 0;
178 }
179vm_fault_error:
180 return VM_FAULT_SIGBUS; /* Disallow mremap */
181}
182#else
183static vm_fault_t drm_vm_fault(struct vm_fault *vmf)
184{
185 return VM_FAULT_SIGBUS;
186}
187#endif
188
189/*
190 * \c nopage method for shared virtual memory.
191 *
192 * \param vma virtual memory area.
193 * \param address access address.
194 * \return pointer to the page structure.
195 *
196 * Get the mapping, find the real physical page to map, get the page, and
197 * return it.
198 */
199static vm_fault_t drm_vm_shm_fault(struct vm_fault *vmf)
200{
201 struct vm_area_struct *vma = vmf->vma;
202 struct drm_local_map *map = vma->vm_private_data;
203 unsigned long offset;
204 unsigned long i;
205 struct page *page;
206
207 if (!map)
208 return VM_FAULT_SIGBUS; /* Nothing allocated */
209
210 offset = vmf->address - vma->vm_start;
211 i = (unsigned long)map->handle + offset;
212 page = vmalloc_to_page((void *)i);
213 if (!page)
214 return VM_FAULT_SIGBUS;
215 get_page(page);
216 vmf->page = page;
217
218 DRM_DEBUG("shm_fault 0x%lx\n", offset);
219 return 0;
220}
221
222/*
223 * \c close method for shared virtual memory.
224 *
225 * \param vma virtual memory area.
226 *
227 * Deletes map information if we are the last
228 * person to close a mapping and it's not in the global maplist.
229 */
230static void drm_vm_shm_close(struct vm_area_struct *vma)
231{
232 struct drm_file *priv = vma->vm_file->private_data;
233 struct drm_device *dev = priv->minor->dev;
234 struct drm_vma_entry *pt, *temp;
235 struct drm_local_map *map;
236 struct drm_map_list *r_list;
237 int found_maps = 0;
238
239 DRM_DEBUG("0x%08lx,0x%08lx\n",
240 vma->vm_start, vma->vm_end - vma->vm_start);
241
242 map = vma->vm_private_data;
243
244 mutex_lock(&dev->struct_mutex);
245 list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
246 if (pt->vma->vm_private_data == map)
247 found_maps++;
248 if (pt->vma == vma) {
249 list_del(&pt->head);
250 kfree(pt);
251 }
252 }
253
254 /* We were the only map that was found */
255 if (found_maps == 1 && map->flags & _DRM_REMOVABLE) {
256 /* Check to see if we are in the maplist, if we are not, then
257 * we delete this mappings information.
258 */
259 found_maps = 0;
260 list_for_each_entry(r_list, &dev->maplist, head) {
261 if (r_list->map == map)
262 found_maps++;
263 }
264
265 if (!found_maps) {
266 switch (map->type) {
267 case _DRM_REGISTERS:
268 case _DRM_FRAME_BUFFER:
269 arch_phys_wc_del(map->mtrr);
270 iounmap(map->handle);
271 break;
272 case _DRM_SHM:
273 vfree(map->handle);
274 break;
275 case _DRM_AGP:
276 case _DRM_SCATTER_GATHER:
277 break;
278 case _DRM_CONSISTENT:
279 dma_free_coherent(dev->dev,
280 map->size,
281 map->handle,
282 map->offset);
283 break;
284 }
285 kfree(map);
286 }
287 }
288 mutex_unlock(&dev->struct_mutex);
289}
290
291/*
292 * \c fault method for DMA virtual memory.
293 *
294 * \param address access address.
295 * \return pointer to the page structure.
296 *
297 * Determine the page number from the page offset and get it from drm_device_dma::pagelist.
298 */
299static vm_fault_t drm_vm_dma_fault(struct vm_fault *vmf)
300{
301 struct vm_area_struct *vma = vmf->vma;
302 struct drm_file *priv = vma->vm_file->private_data;
303 struct drm_device *dev = priv->minor->dev;
304 struct drm_device_dma *dma = dev->dma;
305 unsigned long offset;
306 unsigned long page_nr;
307 struct page *page;
308
309 if (!dma)
310 return VM_FAULT_SIGBUS; /* Error */
311 if (!dma->pagelist)
312 return VM_FAULT_SIGBUS; /* Nothing allocated */
313
314 offset = vmf->address - vma->vm_start;
315 /* vm_[pg]off[set] should be 0 */
316 page_nr = offset >> PAGE_SHIFT; /* page_nr could just be vmf->pgoff */
317 page = virt_to_page((void *)dma->pagelist[page_nr]);
318
319 get_page(page);
320 vmf->page = page;
321
322 DRM_DEBUG("dma_fault 0x%lx (page %lu)\n", offset, page_nr);
323 return 0;
324}
325
326/*
327 * \c fault method for scatter-gather virtual memory.
328 *
329 * \param address access address.
330 * \return pointer to the page structure.
331 *
332 * Determine the map offset from the page offset and get it from drm_sg_mem::pagelist.
333 */
334static vm_fault_t drm_vm_sg_fault(struct vm_fault *vmf)
335{
336 struct vm_area_struct *vma = vmf->vma;
337 struct drm_local_map *map = vma->vm_private_data;
338 struct drm_file *priv = vma->vm_file->private_data;
339 struct drm_device *dev = priv->minor->dev;
340 struct drm_sg_mem *entry = dev->sg;
341 unsigned long offset;
342 unsigned long map_offset;
343 unsigned long page_offset;
344 struct page *page;
345
346 if (!entry)
347 return VM_FAULT_SIGBUS; /* Error */
348 if (!entry->pagelist)
349 return VM_FAULT_SIGBUS; /* Nothing allocated */
350
351 offset = vmf->address - vma->vm_start;
352 map_offset = map->offset - (unsigned long)dev->sg->virtual;
353 page_offset = (offset >> PAGE_SHIFT) + (map_offset >> PAGE_SHIFT);
354 page = entry->pagelist[page_offset];
355 get_page(page);
356 vmf->page = page;
357
358 return 0;
359}
360
361/** AGP virtual memory operations */
362static const struct vm_operations_struct drm_vm_ops = {
363 .fault = drm_vm_fault,
364 .open = drm_vm_open,
365 .close = drm_vm_close,
366};
367
368/** Shared virtual memory operations */
369static const struct vm_operations_struct drm_vm_shm_ops = {
370 .fault = drm_vm_shm_fault,
371 .open = drm_vm_open,
372 .close = drm_vm_shm_close,
373};
374
375/** DMA virtual memory operations */
376static const struct vm_operations_struct drm_vm_dma_ops = {
377 .fault = drm_vm_dma_fault,
378 .open = drm_vm_open,
379 .close = drm_vm_close,
380};
381
382/** Scatter-gather virtual memory operations */
383static const struct vm_operations_struct drm_vm_sg_ops = {
384 .fault = drm_vm_sg_fault,
385 .open = drm_vm_open,
386 .close = drm_vm_close,
387};
388
389static void drm_vm_open_locked(struct drm_device *dev,
390 struct vm_area_struct *vma)
391{
392 struct drm_vma_entry *vma_entry;
393
394 DRM_DEBUG("0x%08lx,0x%08lx\n",
395 vma->vm_start, vma->vm_end - vma->vm_start);
396
397 vma_entry = kmalloc(sizeof(*vma_entry), GFP_KERNEL);
398 if (vma_entry) {
399 vma_entry->vma = vma;
400 vma_entry->pid = current->pid;
401 list_add(&vma_entry->head, &dev->vmalist);
402 }
403}
404
405static void drm_vm_open(struct vm_area_struct *vma)
406{
407 struct drm_file *priv = vma->vm_file->private_data;
408 struct drm_device *dev = priv->minor->dev;
409
410 mutex_lock(&dev->struct_mutex);
411 drm_vm_open_locked(dev, vma);
412 mutex_unlock(&dev->struct_mutex);
413}
414
415static void drm_vm_close_locked(struct drm_device *dev,
416 struct vm_area_struct *vma)
417{
418 struct drm_vma_entry *pt, *temp;
419
420 DRM_DEBUG("0x%08lx,0x%08lx\n",
421 vma->vm_start, vma->vm_end - vma->vm_start);
422
423 list_for_each_entry_safe(pt, temp, &dev->vmalist, head) {
424 if (pt->vma == vma) {
425 list_del(&pt->head);
426 kfree(pt);
427 break;
428 }
429 }
430}
431
432/*
433 * \c close method for all virtual memory types.
434 *
435 * \param vma virtual memory area.
436 *
437 * Search the \p vma private data entry in drm_device::vmalist, unlink it, and
438 * free it.
439 */
440static void drm_vm_close(struct vm_area_struct *vma)
441{
442 struct drm_file *priv = vma->vm_file->private_data;
443 struct drm_device *dev = priv->minor->dev;
444
445 mutex_lock(&dev->struct_mutex);
446 drm_vm_close_locked(dev, vma);
447 mutex_unlock(&dev->struct_mutex);
448}
449
450/*
451 * mmap DMA memory.
452 *
453 * \param file_priv DRM file private.
454 * \param vma virtual memory area.
455 * \return zero on success or a negative number on failure.
456 *
457 * Sets the virtual memory area operations structure to vm_dma_ops, the file
458 * pointer, and calls vm_open().
459 */
460static int drm_mmap_dma(struct file *filp, struct vm_area_struct *vma)
461{
462 struct drm_file *priv = filp->private_data;
463 struct drm_device *dev;
464 struct drm_device_dma *dma;
465 unsigned long length = vma->vm_end - vma->vm_start;
466
467 dev = priv->minor->dev;
468 dma = dev->dma;
469 DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
470 vma->vm_start, vma->vm_end, vma->vm_pgoff);
471
472 /* Length must match exact page count */
473 if (!dma || (length >> PAGE_SHIFT) != dma->page_count) {
474 return -EINVAL;
475 }
476
477 if (!capable(CAP_SYS_ADMIN) &&
478 (dma->flags & _DRM_DMA_USE_PCI_RO)) {
479 vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
480#if defined(__i386__) || defined(__x86_64__)
481 pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
482#else
483 /* Ye gads this is ugly. With more thought
484 we could move this up higher and use
485 `protection_map' instead. */
486 vma->vm_page_prot =
487 __pgprot(pte_val
488 (pte_wrprotect
489 (__pte(pgprot_val(vma->vm_page_prot)))));
490#endif
491 }
492
493 vma->vm_ops = &drm_vm_dma_ops;
494
495 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
496
497 drm_vm_open_locked(dev, vma);
498 return 0;
499}
500
501static resource_size_t drm_core_get_reg_ofs(struct drm_device *dev)
502{
503#ifdef __alpha__
504 return dev->hose->dense_mem_base;
505#else
506 return 0;
507#endif
508}
509
510/*
511 * mmap DMA memory.
512 *
513 * \param file_priv DRM file private.
514 * \param vma virtual memory area.
515 * \return zero on success or a negative number on failure.
516 *
517 * If the virtual memory area has no offset associated with it then it's a DMA
518 * area, so calls mmap_dma(). Otherwise searches the map in drm_device::maplist,
519 * checks that the restricted flag is not set, sets the virtual memory operations
520 * according to the mapping type and remaps the pages. Finally sets the file
521 * pointer and calls vm_open().
522 */
523static int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma)
524{
525 struct drm_file *priv = filp->private_data;
526 struct drm_device *dev = priv->minor->dev;
527 struct drm_local_map *map = NULL;
528 resource_size_t offset = 0;
529 struct drm_hash_item *hash;
530
531 DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
532 vma->vm_start, vma->vm_end, vma->vm_pgoff);
533
534 if (!priv->authenticated)
535 return -EACCES;
536
537 /* We check for "dma". On Apple's UniNorth, it's valid to have
538 * the AGP mapped at physical address 0
539 * --BenH.
540 */
541 if (!vma->vm_pgoff
542#if IS_ENABLED(CONFIG_AGP)
543 && (!dev->agp
544 || dev->agp->agp_info.device->vendor != PCI_VENDOR_ID_APPLE)
545#endif
546 )
547 return drm_mmap_dma(filp, vma);
548
549 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash)) {
550 DRM_ERROR("Could not find map\n");
551 return -EINVAL;
552 }
553
554 map = drm_hash_entry(hash, struct drm_map_list, hash)->map;
555 if (!map || ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN)))
556 return -EPERM;
557
558 /* Check for valid size. */
559 if (map->size < vma->vm_end - vma->vm_start)
560 return -EINVAL;
561
562 if (!capable(CAP_SYS_ADMIN) && (map->flags & _DRM_READ_ONLY)) {
563 vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
564#if defined(__i386__) || defined(__x86_64__)
565 pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
566#else
567 /* Ye gads this is ugly. With more thought
568 we could move this up higher and use
569 `protection_map' instead. */
570 vma->vm_page_prot =
571 __pgprot(pte_val
572 (pte_wrprotect
573 (__pte(pgprot_val(vma->vm_page_prot)))));
574#endif
575 }
576
577 switch (map->type) {
578#if !defined(__arm__)
579 case _DRM_AGP:
580 if (dev->agp && dev->agp->cant_use_aperture) {
581 /*
582 * On some platforms we can't talk to bus dma address from the CPU, so for
583 * memory of type DRM_AGP, we'll deal with sorting out the real physical
584 * pages and mappings in fault()
585 */
586#if defined(__powerpc__)
587 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
588#endif
589 vma->vm_ops = &drm_vm_ops;
590 break;
591 }
592 fallthrough; /* to _DRM_FRAME_BUFFER... */
593#endif
594 case _DRM_FRAME_BUFFER:
595 case _DRM_REGISTERS:
596 offset = drm_core_get_reg_ofs(dev);
597 vma->vm_page_prot = drm_io_prot(map, vma);
598 if (io_remap_pfn_range(vma, vma->vm_start,
599 (map->offset + offset) >> PAGE_SHIFT,
600 vma->vm_end - vma->vm_start,
601 vma->vm_page_prot))
602 return -EAGAIN;
603 DRM_DEBUG(" Type = %d; start = 0x%lx, end = 0x%lx,"
604 " offset = 0x%llx\n",
605 map->type,
606 vma->vm_start, vma->vm_end, (unsigned long long)(map->offset + offset));
607
608 vma->vm_ops = &drm_vm_ops;
609 break;
610 case _DRM_CONSISTENT:
611 /* Consistent memory is really like shared memory. But
612 * it's allocated in a different way, so avoid fault */
613 if (remap_pfn_range(vma, vma->vm_start,
614 page_to_pfn(virt_to_page(map->handle)),
615 vma->vm_end - vma->vm_start, vma->vm_page_prot))
616 return -EAGAIN;
617 vma->vm_page_prot = drm_dma_prot(map->type, vma);
618 fallthrough; /* to _DRM_SHM */
619 case _DRM_SHM:
620 vma->vm_ops = &drm_vm_shm_ops;
621 vma->vm_private_data = (void *)map;
622 break;
623 case _DRM_SCATTER_GATHER:
624 vma->vm_ops = &drm_vm_sg_ops;
625 vma->vm_private_data = (void *)map;
626 vma->vm_page_prot = drm_dma_prot(map->type, vma);
627 break;
628 default:
629 return -EINVAL; /* This should never happen. */
630 }
631 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
632
633 drm_vm_open_locked(dev, vma);
634 return 0;
635}
636
637int drm_legacy_mmap(struct file *filp, struct vm_area_struct *vma)
638{
639 struct drm_file *priv = filp->private_data;
640 struct drm_device *dev = priv->minor->dev;
641 int ret;
642
643 if (drm_dev_is_unplugged(dev))
644 return -ENODEV;
645
646 mutex_lock(&dev->struct_mutex);
647 ret = drm_mmap_locked(filp, vma);
648 mutex_unlock(&dev->struct_mutex);
649
650 return ret;
651}
652EXPORT_SYMBOL(drm_legacy_mmap);
653
654#if IS_ENABLED(CONFIG_DRM_LEGACY)
655void drm_legacy_vma_flush(struct drm_device *dev)
656{
657 struct drm_vma_entry *vma, *vma_temp;
658
659 /* Clear vma list (only needed for legacy drivers) */
660 list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
661 list_del(&vma->head);
662 kfree(vma);
663 }
664}
665#endif