drm_vm.c 17.7 KB
Newer Older
L
Linus Torvalds 已提交
1
/**
D
Dave Airlie 已提交
2
 * \file drm_vm.c
L
Linus Torvalds 已提交
3
 * Memory mapping for DRM
D
Dave Airlie 已提交
4
 *
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
 * \author Rickard E. (Rik) Faith <faith@valinux.com>
 * \author Gareth Hughes <gareth@valinux.com>
 */

/*
 * Created: Mon Jan  4 08:58:31 1999 by faith@valinux.com
 *
 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */

#include "drmP.h"
#if defined(__ia64__)
#include <linux/efi.h>
#endif

D
Dave Airlie 已提交
41 42
static void drm_vm_open(struct vm_area_struct *vma);
static void drm_vm_close(struct vm_area_struct *vma);
L
Linus Torvalds 已提交
43 44 45 46 47 48 49

/**
 * \c nopage method for AGP virtual memory.
 *
 * \param vma virtual memory area.
 * \param address access address.
 * \return pointer to the page structure.
D
Dave Airlie 已提交
50
 *
L
Linus Torvalds 已提交
51 52 53 54 55
 * Find the right map and if it's AGP memory find the real physical page to
 * map, get the page, increment the use count and return it.
 */
#if __OS_HAS_AGP
static __inline__ struct page *drm_do_vm_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
56
						unsigned long address)
L
Linus Torvalds 已提交
57
{
D
Dave Airlie 已提交
58
	drm_file_t *priv = vma->vm_file->private_data;
L
Linus Torvalds 已提交
59
	drm_device_t *dev = priv->head->dev;
D
Dave Airlie 已提交
60 61
	drm_map_t *map = NULL;
	drm_map_list_t *r_list;
L
Linus Torvalds 已提交
62 63 64
	struct list_head *list;

	/*
D
Dave Airlie 已提交
65 66
	 * Find the right map
	 */
L
Linus Torvalds 已提交
67 68 69
	if (!drm_core_has_AGP(dev))
		goto vm_nopage_error;

D
Dave Airlie 已提交
70 71
	if (!dev->agp || !dev->agp->cant_use_aperture)
		goto vm_nopage_error;
L
Linus Torvalds 已提交
72 73 74 75

	list_for_each(list, &dev->maplist->head) {
		r_list = list_entry(list, drm_map_list_t, head);
		map = r_list->map;
D
Dave Airlie 已提交
76 77
		if (!map)
			continue;
78 79
		if (r_list->user_token == VM_OFFSET(vma))
			break;
L
Linus Torvalds 已提交
80 81 82 83
	}

	if (map && map->type == _DRM_AGP) {
		unsigned long offset = address - vma->vm_start;
84
		unsigned long baddr = map->offset + offset;
L
Linus Torvalds 已提交
85 86 87 88 89
		struct drm_agp_mem *agpmem;
		struct page *page;

#ifdef __alpha__
		/*
D
Dave Airlie 已提交
90 91
		 * Adjust to a bus-relative address
		 */
L
Linus Torvalds 已提交
92 93 94 95
		baddr -= dev->hose->mem_space->start;
#endif

		/*
D
Dave Airlie 已提交
96 97 98
		 * It's AGP memory - find the real physical page to map
		 */
		for (agpmem = dev->agp->memory; agpmem; agpmem = agpmem->next) {
L
Linus Torvalds 已提交
99
			if (agpmem->bound <= baddr &&
D
Dave Airlie 已提交
100
			    agpmem->bound + agpmem->pages * PAGE_SIZE > baddr)
L
Linus Torvalds 已提交
101 102 103
				break;
		}

D
Dave Airlie 已提交
104 105
		if (!agpmem)
			goto vm_nopage_error;
L
Linus Torvalds 已提交
106 107

		/*
D
Dave Airlie 已提交
108 109
		 * Get the page, inc the use count, and return it
		 */
L
Linus Torvalds 已提交
110 111 112 113
		offset = (baddr - agpmem->bound) >> PAGE_SHIFT;
		page = virt_to_page(__va(agpmem->memory->memory[offset]));
		get_page(page);

D
Dave Airlie 已提交
114 115 116 117
		DRM_DEBUG
		    ("baddr = 0x%lx page = 0x%p, offset = 0x%lx, count=%d\n",
		     baddr, __va(agpmem->memory->memory[offset]), offset,
		     page_count(page));
L
Linus Torvalds 已提交
118 119

		return page;
D
Dave Airlie 已提交
120 121 122
	}
      vm_nopage_error:
	return NOPAGE_SIGBUS;	/* Disallow mremap */
L
Linus Torvalds 已提交
123
}
D
Dave Airlie 已提交
124
#else				/* __OS_HAS_AGP */
L
Linus Torvalds 已提交
125
static __inline__ struct page *drm_do_vm_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
126
						unsigned long address)
L
Linus Torvalds 已提交
127 128 129
{
	return NOPAGE_SIGBUS;
}
D
Dave Airlie 已提交
130
#endif				/* __OS_HAS_AGP */
L
Linus Torvalds 已提交
131 132 133 134 135 136 137

/**
 * \c nopage method for shared virtual memory.
 *
 * \param vma virtual memory area.
 * \param address access address.
 * \return pointer to the page structure.
D
Dave Airlie 已提交
138
 *
L
Linus Torvalds 已提交
139 140 141 142
 * Get the the mapping, find the real physical page to map, get the page, and
 * return it.
 */
static __inline__ struct page *drm_do_vm_shm_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
143
						    unsigned long address)
L
Linus Torvalds 已提交
144
{
D
Dave Airlie 已提交
145 146 147 148
	drm_map_t *map = (drm_map_t *) vma->vm_private_data;
	unsigned long offset;
	unsigned long i;
	struct page *page;
L
Linus Torvalds 已提交
149

D
Dave Airlie 已提交
150 151 152 153
	if (address > vma->vm_end)
		return NOPAGE_SIGBUS;	/* Disallow mremap */
	if (!map)
		return NOPAGE_OOM;	/* Nothing allocated */
L
Linus Torvalds 已提交
154

D
Dave Airlie 已提交
155
	offset = address - vma->vm_start;
L
Linus Torvalds 已提交
156
	i = (unsigned long)map->handle + offset;
D
Dave Airlie 已提交
157
	page = (map->type == _DRM_CONSISTENT) ?
D
Dave Airlie 已提交
158
		virt_to_page((void *)i) : vmalloc_to_page((void *)i);
L
Linus Torvalds 已提交
159 160 161 162 163 164 165 166 167 168
	if (!page)
		return NOPAGE_OOM;
	get_page(page);

	DRM_DEBUG("shm_nopage 0x%lx\n", address);
	return page;
}

/**
 * \c close method for shared virtual memory.
D
Dave Airlie 已提交
169
 *
L
Linus Torvalds 已提交
170
 * \param vma virtual memory area.
D
Dave Airlie 已提交
171
 *
L
Linus Torvalds 已提交
172 173 174
 * Deletes map information if we are the last
 * person to close a mapping and it's not in the global maplist.
 */
D
Dave Airlie 已提交
175
static void drm_vm_shm_close(struct vm_area_struct *vma)
L
Linus Torvalds 已提交
176
{
D
Dave Airlie 已提交
177 178
	drm_file_t *priv = vma->vm_file->private_data;
	drm_device_t *dev = priv->head->dev;
L
Linus Torvalds 已提交
179 180 181 182 183 184 185 186 187 188 189 190
	drm_vma_entry_t *pt, *prev, *next;
	drm_map_t *map;
	drm_map_list_t *r_list;
	struct list_head *list;
	int found_maps = 0;

	DRM_DEBUG("0x%08lx,0x%08lx\n",
		  vma->vm_start, vma->vm_end - vma->vm_start);
	atomic_dec(&dev->vma_count);

	map = vma->vm_private_data;

D
Dave Airlie 已提交
191
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
192 193
	for (pt = dev->vmalist, prev = NULL; pt; pt = next) {
		next = pt->next;
D
Dave Airlie 已提交
194 195
		if (pt->vma->vm_private_data == map)
			found_maps++;
L
Linus Torvalds 已提交
196 197 198 199 200 201 202 203 204 205 206 207
		if (pt->vma == vma) {
			if (prev) {
				prev->next = pt->next;
			} else {
				dev->vmalist = pt->next;
			}
			drm_free(pt, sizeof(*pt), DRM_MEM_VMAS);
		} else {
			prev = pt;
		}
	}
	/* We were the only map that was found */
D
Dave Airlie 已提交
208
	if (found_maps == 1 && map->flags & _DRM_REMOVABLE) {
L
Linus Torvalds 已提交
209 210 211 212 213 214 215
		/* Check to see if we are in the maplist, if we are not, then
		 * we delete this mappings information.
		 */
		found_maps = 0;
		list = &dev->maplist->head;
		list_for_each(list, &dev->maplist->head) {
			r_list = list_entry(list, drm_map_list_t, head);
D
Dave Airlie 已提交
216 217
			if (r_list->map == map)
				found_maps++;
L
Linus Torvalds 已提交
218 219
		}

D
Dave Airlie 已提交
220
		if (!found_maps) {
221 222
			drm_dma_handle_t dmah;

L
Linus Torvalds 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
			switch (map->type) {
			case _DRM_REGISTERS:
			case _DRM_FRAME_BUFFER:
				if (drm_core_has_MTRR(dev) && map->mtrr >= 0) {
					int retcode;
					retcode = mtrr_del(map->mtrr,
							   map->offset,
							   map->size);
					DRM_DEBUG("mtrr_del = %d\n", retcode);
				}
				drm_ioremapfree(map->handle, map->size, dev);
				break;
			case _DRM_SHM:
				vfree(map->handle);
				break;
			case _DRM_AGP:
			case _DRM_SCATTER_GATHER:
				break;
D
Dave Airlie 已提交
241
			case _DRM_CONSISTENT:
242 243 244 245
				dmah.vaddr = map->handle;
				dmah.busaddr = map->offset;
				dmah.size = map->size;
				__drm_pci_free(dev, &dmah);
D
Dave Airlie 已提交
246
				break;
L
Linus Torvalds 已提交
247 248 249 250
			}
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
		}
	}
D
Dave Airlie 已提交
251
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
252 253 254 255 256 257 258 259
}

/**
 * \c nopage method for DMA virtual memory.
 *
 * \param vma virtual memory area.
 * \param address access address.
 * \return pointer to the page structure.
D
Dave Airlie 已提交
260
 *
L
Linus Torvalds 已提交
261 262 263
 * Determine the page number from the page offset and get it from drm_device_dma::pagelist.
 */
static __inline__ struct page *drm_do_vm_dma_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
264
						    unsigned long address)
L
Linus Torvalds 已提交
265
{
D
Dave Airlie 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
	drm_file_t *priv = vma->vm_file->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_device_dma_t *dma = dev->dma;
	unsigned long offset;
	unsigned long page_nr;
	struct page *page;

	if (!dma)
		return NOPAGE_SIGBUS;	/* Error */
	if (address > vma->vm_end)
		return NOPAGE_SIGBUS;	/* Disallow mremap */
	if (!dma->pagelist)
		return NOPAGE_OOM;	/* Nothing allocated */

	offset = address - vma->vm_start;	/* vm_[pg]off[set] should be 0 */
	page_nr = offset >> PAGE_SHIFT;
	page = virt_to_page((dma->pagelist[page_nr] + (offset & (~PAGE_MASK))));
L
Linus Torvalds 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295

	get_page(page);

	DRM_DEBUG("dma_nopage 0x%lx (page %lu)\n", address, page_nr);
	return page;
}

/**
 * \c nopage method for scatter-gather virtual memory.
 *
 * \param vma virtual memory area.
 * \param address access address.
 * \return pointer to the page structure.
D
Dave Airlie 已提交
296
 *
L
Linus Torvalds 已提交
297 298 299
 * Determine the map offset from the page offset and get it from drm_sg_mem::pagelist.
 */
static __inline__ struct page *drm_do_vm_sg_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
300
						   unsigned long address)
L
Linus Torvalds 已提交
301
{
D
Dave Airlie 已提交
302
	drm_map_t *map = (drm_map_t *) vma->vm_private_data;
L
Linus Torvalds 已提交
303 304 305 306 307 308 309 310
	drm_file_t *priv = vma->vm_file->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_sg_mem_t *entry = dev->sg;
	unsigned long offset;
	unsigned long map_offset;
	unsigned long page_offset;
	struct page *page;

D
Dave Airlie 已提交
311 312 313 314 315 316
	if (!entry)
		return NOPAGE_SIGBUS;	/* Error */
	if (address > vma->vm_end)
		return NOPAGE_SIGBUS;	/* Disallow mremap */
	if (!entry->pagelist)
		return NOPAGE_OOM;	/* Nothing allocated */
L
Linus Torvalds 已提交
317 318

	offset = address - vma->vm_start;
319
	map_offset = map->offset - (unsigned long)dev->sg->virtual;
L
Linus Torvalds 已提交
320 321 322 323 324 325 326 327
	page_offset = (offset >> PAGE_SHIFT) + (map_offset >> PAGE_SHIFT);
	page = entry->pagelist[page_offset];
	get_page(page);

	return page;
}

static struct page *drm_vm_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
328 329 330 331
				  unsigned long address, int *type)
{
	if (type)
		*type = VM_FAULT_MINOR;
L
Linus Torvalds 已提交
332 333 334 335
	return drm_do_vm_nopage(vma, address);
}

static struct page *drm_vm_shm_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
336 337 338 339
				      unsigned long address, int *type)
{
	if (type)
		*type = VM_FAULT_MINOR;
L
Linus Torvalds 已提交
340 341 342 343
	return drm_do_vm_shm_nopage(vma, address);
}

static struct page *drm_vm_dma_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
344 345 346 347
				      unsigned long address, int *type)
{
	if (type)
		*type = VM_FAULT_MINOR;
L
Linus Torvalds 已提交
348 349 350 351
	return drm_do_vm_dma_nopage(vma, address);
}

static struct page *drm_vm_sg_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
352 353 354 355
				     unsigned long address, int *type)
{
	if (type)
		*type = VM_FAULT_MINOR;
L
Linus Torvalds 已提交
356 357 358 359
	return drm_do_vm_sg_nopage(vma, address);
}

/** AGP virtual memory operations */
D
Dave Airlie 已提交
360
static struct vm_operations_struct drm_vm_ops = {
L
Linus Torvalds 已提交
361
	.nopage = drm_vm_nopage,
D
Dave Airlie 已提交
362 363
	.open = drm_vm_open,
	.close = drm_vm_close,
L
Linus Torvalds 已提交
364 365 366
};

/** Shared virtual memory operations */
D
Dave Airlie 已提交
367
static struct vm_operations_struct drm_vm_shm_ops = {
L
Linus Torvalds 已提交
368
	.nopage = drm_vm_shm_nopage,
D
Dave Airlie 已提交
369 370
	.open = drm_vm_open,
	.close = drm_vm_shm_close,
L
Linus Torvalds 已提交
371 372 373
};

/** DMA virtual memory operations */
D
Dave Airlie 已提交
374
static struct vm_operations_struct drm_vm_dma_ops = {
L
Linus Torvalds 已提交
375
	.nopage = drm_vm_dma_nopage,
D
Dave Airlie 已提交
376 377
	.open = drm_vm_open,
	.close = drm_vm_close,
L
Linus Torvalds 已提交
378 379 380
};

/** Scatter-gather virtual memory operations */
D
Dave Airlie 已提交
381
static struct vm_operations_struct drm_vm_sg_ops = {
L
Linus Torvalds 已提交
382
	.nopage = drm_vm_sg_nopage,
D
Dave Airlie 已提交
383 384
	.open = drm_vm_open,
	.close = drm_vm_close,
L
Linus Torvalds 已提交
385 386 387 388
};

/**
 * \c open method for shared virtual memory.
D
Dave Airlie 已提交
389
 *
L
Linus Torvalds 已提交
390
 * \param vma virtual memory area.
D
Dave Airlie 已提交
391
 *
L
Linus Torvalds 已提交
392 393 394
 * Create a new drm_vma_entry structure as the \p vma private data entry and
 * add it to drm_device::vmalist.
 */
D
Dave Airlie 已提交
395
static void drm_vm_open(struct vm_area_struct *vma)
L
Linus Torvalds 已提交
396
{
D
Dave Airlie 已提交
397 398
	drm_file_t *priv = vma->vm_file->private_data;
	drm_device_t *dev = priv->head->dev;
L
Linus Torvalds 已提交
399 400 401 402 403 404 405 406
	drm_vma_entry_t *vma_entry;

	DRM_DEBUG("0x%08lx,0x%08lx\n",
		  vma->vm_start, vma->vm_end - vma->vm_start);
	atomic_inc(&dev->vma_count);

	vma_entry = drm_alloc(sizeof(*vma_entry), DRM_MEM_VMAS);
	if (vma_entry) {
D
Dave Airlie 已提交
407
		mutex_lock(&dev->struct_mutex);
D
Dave Airlie 已提交
408
		vma_entry->vma = vma;
L
Linus Torvalds 已提交
409
		vma_entry->next = dev->vmalist;
D
Dave Airlie 已提交
410 411
		vma_entry->pid = current->pid;
		dev->vmalist = vma_entry;
D
Dave Airlie 已提交
412
		mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
413 414 415 416 417
	}
}

/**
 * \c close method for all virtual memory types.
D
Dave Airlie 已提交
418
 *
L
Linus Torvalds 已提交
419
 * \param vma virtual memory area.
D
Dave Airlie 已提交
420
 *
L
Linus Torvalds 已提交
421 422 423
 * Search the \p vma private data entry in drm_device::vmalist, unlink it, and
 * free it.
 */
D
Dave Airlie 已提交
424
static void drm_vm_close(struct vm_area_struct *vma)
L
Linus Torvalds 已提交
425
{
D
Dave Airlie 已提交
426 427
	drm_file_t *priv = vma->vm_file->private_data;
	drm_device_t *dev = priv->head->dev;
L
Linus Torvalds 已提交
428 429 430 431 432 433
	drm_vma_entry_t *pt, *prev;

	DRM_DEBUG("0x%08lx,0x%08lx\n",
		  vma->vm_start, vma->vm_end - vma->vm_start);
	atomic_dec(&dev->vma_count);

D
Dave Airlie 已提交
434
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
435 436 437 438 439 440 441 442 443 444 445
	for (pt = dev->vmalist, prev = NULL; pt; prev = pt, pt = pt->next) {
		if (pt->vma == vma) {
			if (prev) {
				prev->next = pt->next;
			} else {
				dev->vmalist = pt->next;
			}
			drm_free(pt, sizeof(*pt), DRM_MEM_VMAS);
			break;
		}
	}
D
Dave Airlie 已提交
446
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
447 448 449 450 451 452 453 454
}

/**
 * mmap DMA memory.
 *
 * \param filp file pointer.
 * \param vma virtual memory area.
 * \return zero on success or a negative number on failure.
D
Dave Airlie 已提交
455
 *
L
Linus Torvalds 已提交
456 457 458
 * Sets the virtual memory area operations structure to vm_dma_ops, the file
 * pointer, and calls vm_open().
 */
D
Dave Airlie 已提交
459
static int drm_mmap_dma(struct file *filp, struct vm_area_struct *vma)
L
Linus Torvalds 已提交
460
{
D
Dave Airlie 已提交
461 462
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev;
L
Linus Torvalds 已提交
463
	drm_device_dma_t *dma;
D
Dave Airlie 已提交
464
	unsigned long length = vma->vm_end - vma->vm_start;
L
Linus Torvalds 已提交
465 466

	lock_kernel();
D
Dave Airlie 已提交
467 468
	dev = priv->head->dev;
	dma = dev->dma;
L
Linus Torvalds 已提交
469 470 471
	DRM_DEBUG("start = 0x%lx, end = 0x%lx, offset = 0x%lx\n",
		  vma->vm_start, vma->vm_end, VM_OFFSET(vma));

D
Dave Airlie 已提交
472
	/* Length must match exact page count */
L
Linus Torvalds 已提交
473 474 475 476 477 478
	if (!dma || (length >> PAGE_SHIFT) != dma->page_count) {
		unlock_kernel();
		return -EINVAL;
	}
	unlock_kernel();

D
Dave Airlie 已提交
479
	vma->vm_ops = &drm_vm_dma_ops;
L
Linus Torvalds 已提交
480

D
Dave Airlie 已提交
481
	vma->vm_flags |= VM_RESERVED;	/* Don't swap */
L
Linus Torvalds 已提交
482

D
Dave Airlie 已提交
483
	vma->vm_file = filp;	/* Needed for drm_vm_open() */
L
Linus Torvalds 已提交
484 485 486 487
	drm_vm_open(vma);
	return 0;
}

D
Dave Airlie 已提交
488
unsigned long drm_core_get_map_ofs(drm_map_t * map)
L
Linus Torvalds 已提交
489 490 491
{
	return map->offset;
}
D
Dave Airlie 已提交
492

L
Linus Torvalds 已提交
493 494 495 496 497 498 499 500 501 502
EXPORT_SYMBOL(drm_core_get_map_ofs);

unsigned long drm_core_get_reg_ofs(struct drm_device *dev)
{
#ifdef __alpha__
	return dev->hose->dense_mem_base - dev->hose->mem_space->start;
#else
	return 0;
#endif
}
D
Dave Airlie 已提交
503

L
Linus Torvalds 已提交
504 505 506 507 508 509 510 511
EXPORT_SYMBOL(drm_core_get_reg_ofs);

/**
 * mmap DMA memory.
 *
 * \param filp file pointer.
 * \param vma virtual memory area.
 * \return zero on success or a negative number on failure.
D
Dave Airlie 已提交
512
 *
L
Linus Torvalds 已提交
513 514 515 516 517 518 519 520
 * If the virtual memory area has no offset associated with it then it's a DMA
 * area, so calls mmap_dma(). Otherwise searches the map in drm_device::maplist,
 * checks that the restricted flag is not set, sets the virtual memory operations
 * according to the mapping type and remaps the pages. Finally sets the file
 * pointer and calls vm_open().
 */
int drm_mmap(struct file *filp, struct vm_area_struct *vma)
{
D
Dave Airlie 已提交
521 522 523 524 525
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_map_t *map = NULL;
	drm_map_list_t *r_list;
	unsigned long offset = 0;
L
Linus Torvalds 已提交
526 527 528 529 530
	struct list_head *list;

	DRM_DEBUG("start = 0x%lx, end = 0x%lx, offset = 0x%lx\n",
		  vma->vm_start, vma->vm_end, VM_OFFSET(vma));

D
Dave Airlie 已提交
531 532
	if (!priv->authenticated)
		return -EACCES;
L
Linus Torvalds 已提交
533 534 535 536 537 538 539

	/* We check for "dma". On Apple's UniNorth, it's valid to have
	 * the AGP mapped at physical address 0
	 * --BenH.
	 */
	if (!VM_OFFSET(vma)
#if __OS_HAS_AGP
D
Dave Airlie 已提交
540 541
	    && (!dev->agp
		|| dev->agp->agp_info.device->vendor != PCI_VENDOR_ID_APPLE)
L
Linus Torvalds 已提交
542 543 544 545
#endif
	    )
		return drm_mmap_dma(filp, vma);

D
Dave Airlie 已提交
546 547 548 549 550 551 552
	/* A sequential search of a linked list is
	   fine here because: 1) there will only be
	   about 5-10 entries in the list and, 2) a
	   DRI client only has to do this mapping
	   once, so it doesn't have to be optimized
	   for performance, even if the list was a
	   bit longer. */
L
Linus Torvalds 已提交
553 554 555 556
	list_for_each(list, &dev->maplist->head) {

		r_list = list_entry(list, drm_map_list_t, head);
		map = r_list->map;
D
Dave Airlie 已提交
557 558
		if (!map)
			continue;
559 560
		if (r_list->user_token == VM_OFFSET(vma))
			break;
L
Linus Torvalds 已提交
561 562
	}

D
Dave Airlie 已提交
563
	if (!map || ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN)))
L
Linus Torvalds 已提交
564 565
		return -EPERM;

D
Dave Airlie 已提交
566 567 568
	/* Check for valid size. */
	if (map->size != vma->vm_end - vma->vm_start)
		return -EINVAL;
L
Linus Torvalds 已提交
569 570 571 572 573 574

	if (!capable(CAP_SYS_ADMIN) && (map->flags & _DRM_READ_ONLY)) {
		vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
#if defined(__i386__) || defined(__x86_64__)
		pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
#else
D
Dave Airlie 已提交
575 576 577 578 579 580 581
		/* Ye gads this is ugly.  With more thought
		   we could move this up higher and use
		   `protection_map' instead.  */
		vma->vm_page_prot =
		    __pgprot(pte_val
			     (pte_wrprotect
			      (__pte(pgprot_val(vma->vm_page_prot)))));
L
Linus Torvalds 已提交
582 583 584 585
#endif
	}

	switch (map->type) {
D
Dave Airlie 已提交
586 587 588 589 590 591 592
	case _DRM_AGP:
		if (drm_core_has_AGP(dev) && dev->agp->cant_use_aperture) {
			/*
			 * On some platforms we can't talk to bus dma address from the CPU, so for
			 * memory of type DRM_AGP, we'll deal with sorting out the real physical
			 * pages and mappings in nopage()
			 */
L
Linus Torvalds 已提交
593
#if defined(__powerpc__)
D
Dave Airlie 已提交
594
			pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
L
Linus Torvalds 已提交
595
#endif
D
Dave Airlie 已提交
596 597 598 599
			vma->vm_ops = &drm_vm_ops;
			break;
		}
		/* fall through to _DRM_FRAME_BUFFER... */
L
Linus Torvalds 已提交
600 601 602
	case _DRM_FRAME_BUFFER:
	case _DRM_REGISTERS:
#if defined(__i386__) || defined(__x86_64__)
D
Dave Airlie 已提交
603 604 605 606
		if (boot_cpu_data.x86 > 3 && map->type != _DRM_AGP) {
			pgprot_val(vma->vm_page_prot) |= _PAGE_PCD;
			pgprot_val(vma->vm_page_prot) &= ~_PAGE_PWT;
		}
L
Linus Torvalds 已提交
607
#elif defined(__powerpc__)
D
Dave Airlie 已提交
608 609 610
		pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
		if (map->type == _DRM_REGISTERS)
			pgprot_val(vma->vm_page_prot) |= _PAGE_GUARDED;
L
Linus Torvalds 已提交
611
#endif
D
Dave Airlie 已提交
612
		vma->vm_flags |= VM_IO;	/* not in core dump */
L
Linus Torvalds 已提交
613
#if defined(__ia64__)
D
Dave Airlie 已提交
614
		if (efi_range_is_wc(vma->vm_start, vma->vm_end - vma->vm_start))
L
Linus Torvalds 已提交
615
			vma->vm_page_prot =
D
Dave Airlie 已提交
616
			    pgprot_writecombine(vma->vm_page_prot);
L
Linus Torvalds 已提交
617
		else
D
Dave Airlie 已提交
618
			vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
L
Linus Torvalds 已提交
619 620 621 622
#endif
		offset = dev->driver->get_reg_ofs(dev);
#ifdef __sparc__
		if (io_remap_pfn_range(DRM_RPR_ARG(vma) vma->vm_start,
D
Dave Airlie 已提交
623 624 625
				       (map->offset + offset) >> PAGE_SHIFT,
				       vma->vm_end - vma->vm_start,
				       vma->vm_page_prot))
L
Linus Torvalds 已提交
626 627
#else
		if (io_remap_pfn_range(vma, vma->vm_start,
D
Dave Airlie 已提交
628 629 630
				       (map->offset + offset) >> PAGE_SHIFT,
				       vma->vm_end - vma->vm_start,
				       vma->vm_page_prot))
L
Linus Torvalds 已提交
631
#endif
D
Dave Airlie 已提交
632
			return -EAGAIN;
L
Linus Torvalds 已提交
633 634 635
		DRM_DEBUG("   Type = %d; start = 0x%lx, end = 0x%lx,"
			  " offset = 0x%lx\n",
			  map->type,
636
			  vma->vm_start, vma->vm_end, map->offset + offset);
L
Linus Torvalds 已提交
637 638 639
		vma->vm_ops = &drm_vm_ops;
		break;
	case _DRM_SHM:
D
Dave Airlie 已提交
640 641 642
	case _DRM_CONSISTENT:
		/* Consistent memory is really like shared memory. It's only
		 * allocate in a different way */
L
Linus Torvalds 已提交
643 644
		vma->vm_ops = &drm_vm_shm_ops;
		vma->vm_private_data = (void *)map;
D
Dave Airlie 已提交
645 646
		/* Don't let this area swap.  Change when
		   DRM_KERNEL advisory is supported. */
L
Linus Torvalds 已提交
647 648 649 650 651 652
		vma->vm_flags |= VM_RESERVED;
		break;
	case _DRM_SCATTER_GATHER:
		vma->vm_ops = &drm_vm_sg_ops;
		vma->vm_private_data = (void *)map;
		vma->vm_flags |= VM_RESERVED;
D
Dave Airlie 已提交
653
		break;
L
Linus Torvalds 已提交
654 655 656
	default:
		return -EINVAL;	/* This should never happen. */
	}
D
Dave Airlie 已提交
657
	vma->vm_flags |= VM_RESERVED;	/* Don't swap */
L
Linus Torvalds 已提交
658

D
Dave Airlie 已提交
659
	vma->vm_file = filp;	/* Needed for drm_vm_open() */
L
Linus Torvalds 已提交
660 661 662
	drm_vm_open(vma);
	return 0;
}
D
Dave Airlie 已提交
663

L
Linus Torvalds 已提交
664
EXPORT_SYMBOL(drm_mmap);