3 * Memory management wrappers for DRM
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
10 * Created: Thu Feb 4 14:00:34 1999 by faith@valinux.com
12 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
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:
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
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.
36 #include <linux/export.h>
37 #include <linux/highmem.h>
38 #include <linux/pci.h>
39 #include <linux/vmalloc.h>
41 #include <drm/drm_cache.h>
42 #include <drm/drm_device.h>
44 #include "drm_legacy.h"
46 #if IS_ENABLED(CONFIG_AGP)
52 # define PAGE_AGP pgprot_noncached_wc(PAGE_KERNEL)
54 # define PAGE_AGP PAGE_KERNEL
58 static void *agp_remap(unsigned long offset, unsigned long size,
59 struct drm_device *dev)
61 unsigned long i, num_pages =
62 PAGE_ALIGN(size) / PAGE_SIZE;
63 struct drm_agp_mem *agpmem;
64 struct page **page_map;
65 struct page **phys_page_map;
68 size = PAGE_ALIGN(size);
71 offset -= dev->hose->mem_space->start;
74 list_for_each_entry(agpmem, &dev->agp->memory, head)
75 if (agpmem->bound <= offset
76 && (agpmem->bound + (agpmem->pages << PAGE_SHIFT)) >=
79 if (&agpmem->head == &dev->agp->memory)
83 * OK, we're mapping AGP space on a chipset/platform on which memory accesses by
84 * the CPU do not get remapped by the GART. We fix this by using the kernel's
85 * page-table instead (that's probably faster anyhow...).
87 /* note: use vmalloc() because num_pages could be large... */
88 page_map = vmalloc(array_size(num_pages, sizeof(struct page *)));
92 phys_page_map = (agpmem->memory->pages + (offset - agpmem->bound) / PAGE_SIZE);
93 for (i = 0; i < num_pages; ++i)
94 page_map[i] = phys_page_map[i];
95 addr = vmap(page_map, num_pages, VM_IOREMAP, PAGE_AGP);
101 #else /* CONFIG_AGP */
102 static inline void *agp_remap(unsigned long offset, unsigned long size,
103 struct drm_device *dev)
108 #endif /* CONFIG_AGP */
110 void drm_legacy_ioremap(struct drm_local_map *map, struct drm_device *dev)
112 if (dev->agp && dev->agp->cant_use_aperture && map->type == _DRM_AGP)
113 map->handle = agp_remap(map->offset, map->size, dev);
115 map->handle = ioremap(map->offset, map->size);
117 EXPORT_SYMBOL(drm_legacy_ioremap);
119 void drm_legacy_ioremap_wc(struct drm_local_map *map, struct drm_device *dev)
121 if (dev->agp && dev->agp->cant_use_aperture && map->type == _DRM_AGP)
122 map->handle = agp_remap(map->offset, map->size, dev);
124 map->handle = ioremap_wc(map->offset, map->size);
126 EXPORT_SYMBOL(drm_legacy_ioremap_wc);
128 void drm_legacy_ioremapfree(struct drm_local_map *map, struct drm_device *dev)
130 if (!map->handle || !map->size)
133 if (dev->agp && dev->agp->cant_use_aperture && map->type == _DRM_AGP)
136 iounmap(map->handle);
138 EXPORT_SYMBOL(drm_legacy_ioremapfree);