drm_vm.c 17.9 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
pgprot_t drm_io_prot(uint32_t map_type, struct vm_area_struct *vma)
{
	pgprot_t tmp = vm_get_page_prot(vma->vm_flags);

#if defined(__i386__) || defined(__x86_64__)
	if (boot_cpu_data.x86 > 3 && map_type != _DRM_AGP) {
		pgprot_val(tmp) |= _PAGE_PCD;
		pgprot_val(tmp) &= ~_PAGE_PWT;
	}
#elif defined(__powerpc__)
	pgprot_val(tmp) |= _PAGE_NO_CACHE;
	if (map_type == _DRM_REGISTERS)
		pgprot_val(tmp) |= _PAGE_GUARDED;
#endif
#if defined(__ia64__)
	if (efi_range_is_wc(vma->vm_start, vma->vm_end -
				    vma->vm_start))
		tmp = pgprot_writecombine(tmp);
	else
		tmp = pgprot_noncached(tmp);
#endif
	return tmp;
}

L
Linus Torvalds 已提交
68 69 70 71 72 73
/**
 * \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 已提交
74
 *
L
Linus Torvalds 已提交
75 76 77 78 79
 * 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 已提交
80
						unsigned long address)
L
Linus Torvalds 已提交
81
{
D
Dave Airlie 已提交
82
	drm_file_t *priv = vma->vm_file->private_data;
L
Linus Torvalds 已提交
83
	drm_device_t *dev = priv->head->dev;
D
Dave Airlie 已提交
84 85
	drm_map_t *map = NULL;
	drm_map_list_t *r_list;
86
	drm_hash_item_t *hash;
L
Linus Torvalds 已提交
87 88

	/*
D
Dave Airlie 已提交
89 90
	 * Find the right map
	 */
L
Linus Torvalds 已提交
91 92 93
	if (!drm_core_has_AGP(dev))
		goto vm_nopage_error;

D
Dave Airlie 已提交
94 95
	if (!dev->agp || !dev->agp->cant_use_aperture)
		goto vm_nopage_error;
L
Linus Torvalds 已提交
96

97
	if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash))
98 99 100 101
		goto vm_nopage_error;

	r_list = drm_hash_entry(hash, drm_map_list_t, hash);
	map = r_list->map;
L
Linus Torvalds 已提交
102 103 104

	if (map && map->type == _DRM_AGP) {
		unsigned long offset = address - vma->vm_start;
105
		unsigned long baddr = map->offset + offset;
L
Linus Torvalds 已提交
106 107 108 109 110
		struct drm_agp_mem *agpmem;
		struct page *page;

#ifdef __alpha__
		/*
D
Dave Airlie 已提交
111 112
		 * Adjust to a bus-relative address
		 */
L
Linus Torvalds 已提交
113 114 115 116
		baddr -= dev->hose->mem_space->start;
#endif

		/*
D
Dave Airlie 已提交
117 118 119
		 * It's AGP memory - find the real physical page to map
		 */
		for (agpmem = dev->agp->memory; agpmem; agpmem = agpmem->next) {
L
Linus Torvalds 已提交
120
			if (agpmem->bound <= baddr &&
D
Dave Airlie 已提交
121
			    agpmem->bound + agpmem->pages * PAGE_SIZE > baddr)
L
Linus Torvalds 已提交
122 123 124
				break;
		}

D
Dave Airlie 已提交
125 126
		if (!agpmem)
			goto vm_nopage_error;
L
Linus Torvalds 已提交
127 128

		/*
D
Dave Airlie 已提交
129 130
		 * Get the page, inc the use count, and return it
		 */
L
Linus Torvalds 已提交
131 132 133 134
		offset = (baddr - agpmem->bound) >> PAGE_SHIFT;
		page = virt_to_page(__va(agpmem->memory->memory[offset]));
		get_page(page);

D
Dave Airlie 已提交
135 136 137 138
		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 已提交
139 140

		return page;
D
Dave Airlie 已提交
141 142 143
	}
      vm_nopage_error:
	return NOPAGE_SIGBUS;	/* Disallow mremap */
L
Linus Torvalds 已提交
144
}
D
Dave Airlie 已提交
145
#else				/* __OS_HAS_AGP */
L
Linus Torvalds 已提交
146
static __inline__ struct page *drm_do_vm_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
147
						unsigned long address)
L
Linus Torvalds 已提交
148 149 150
{
	return NOPAGE_SIGBUS;
}
D
Dave Airlie 已提交
151
#endif				/* __OS_HAS_AGP */
L
Linus Torvalds 已提交
152 153 154 155 156 157 158

/**
 * \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 已提交
159
 *
L
Linus Torvalds 已提交
160 161 162 163
 * 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 已提交
164
						    unsigned long address)
L
Linus Torvalds 已提交
165
{
D
Dave Airlie 已提交
166 167 168 169
	drm_map_t *map = (drm_map_t *) vma->vm_private_data;
	unsigned long offset;
	unsigned long i;
	struct page *page;
L
Linus Torvalds 已提交
170

D
Dave Airlie 已提交
171 172 173
	if (address > vma->vm_end)
		return NOPAGE_SIGBUS;	/* Disallow mremap */
	if (!map)
174
		return NOPAGE_SIGBUS;	/* Nothing allocated */
L
Linus Torvalds 已提交
175

D
Dave Airlie 已提交
176
	offset = address - vma->vm_start;
L
Linus Torvalds 已提交
177
	i = (unsigned long)map->handle + offset;
D
Dave Airlie 已提交
178
	page = (map->type == _DRM_CONSISTENT) ?
D
Dave Airlie 已提交
179
		virt_to_page((void *)i) : vmalloc_to_page((void *)i);
L
Linus Torvalds 已提交
180
	if (!page)
181
		return NOPAGE_SIGBUS;
L
Linus Torvalds 已提交
182 183 184 185 186 187 188 189
	get_page(page);

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

/**
 * \c close method for shared virtual memory.
D
Dave Airlie 已提交
190
 *
L
Linus Torvalds 已提交
191
 * \param vma virtual memory area.
D
Dave Airlie 已提交
192
 *
L
Linus Torvalds 已提交
193 194 195
 * Deletes map information if we are the last
 * person to close a mapping and it's not in the global maplist.
 */
D
Dave Airlie 已提交
196
static void drm_vm_shm_close(struct vm_area_struct *vma)
L
Linus Torvalds 已提交
197
{
D
Dave Airlie 已提交
198 199
	drm_file_t *priv = vma->vm_file->private_data;
	drm_device_t *dev = priv->head->dev;
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208 209 210 211
	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 已提交
212
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
213 214
	for (pt = dev->vmalist, prev = NULL; pt; pt = next) {
		next = pt->next;
D
Dave Airlie 已提交
215 216
		if (pt->vma->vm_private_data == map)
			found_maps++;
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224 225 226 227 228
		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 已提交
229
	if (found_maps == 1 && map->flags & _DRM_REMOVABLE) {
L
Linus Torvalds 已提交
230 231 232 233 234 235 236
		/* 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 已提交
237 238
			if (r_list->map == map)
				found_maps++;
L
Linus Torvalds 已提交
239 240
		}

D
Dave Airlie 已提交
241
		if (!found_maps) {
242 243
			drm_dma_handle_t dmah;

L
Linus Torvalds 已提交
244 245 246 247 248 249 250 251 252 253
			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);
				}
254
				iounmap(map->handle);
L
Linus Torvalds 已提交
255 256 257 258 259 260 261
				break;
			case _DRM_SHM:
				vfree(map->handle);
				break;
			case _DRM_AGP:
			case _DRM_SCATTER_GATHER:
				break;
D
Dave Airlie 已提交
262
			case _DRM_CONSISTENT:
263 264 265 266
				dmah.vaddr = map->handle;
				dmah.busaddr = map->offset;
				dmah.size = map->size;
				__drm_pci_free(dev, &dmah);
D
Dave Airlie 已提交
267
				break;
L
Linus Torvalds 已提交
268 269 270 271
			}
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
		}
	}
D
Dave Airlie 已提交
272
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
273 274 275 276 277 278 279 280
}

/**
 * \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 已提交
281
 *
L
Linus Torvalds 已提交
282 283 284
 * 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 已提交
285
						    unsigned long address)
L
Linus Torvalds 已提交
286
{
D
Dave Airlie 已提交
287 288 289 290 291 292 293 294 295 296 297 298
	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)
299
		return NOPAGE_SIGBUS;	/* Nothing allocated */
D
Dave Airlie 已提交
300 301 302 303

	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 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316

	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 已提交
317
 *
L
Linus Torvalds 已提交
318 319 320
 * 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 已提交
321
						   unsigned long address)
L
Linus Torvalds 已提交
322
{
D
Dave Airlie 已提交
323
	drm_map_t *map = (drm_map_t *) vma->vm_private_data;
L
Linus Torvalds 已提交
324 325 326 327 328 329 330 331
	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 已提交
332 333 334 335 336
	if (!entry)
		return NOPAGE_SIGBUS;	/* Error */
	if (address > vma->vm_end)
		return NOPAGE_SIGBUS;	/* Disallow mremap */
	if (!entry->pagelist)
337
		return NOPAGE_SIGBUS;	/* Nothing allocated */
L
Linus Torvalds 已提交
338 339

	offset = address - vma->vm_start;
340
	map_offset = map->offset - (unsigned long)dev->sg->virtual;
L
Linus Torvalds 已提交
341 342 343 344 345 346 347 348
	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 已提交
349 350 351 352
				  unsigned long address, int *type)
{
	if (type)
		*type = VM_FAULT_MINOR;
L
Linus Torvalds 已提交
353 354 355 356
	return drm_do_vm_nopage(vma, address);
}

static struct page *drm_vm_shm_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
357 358 359 360
				      unsigned long address, int *type)
{
	if (type)
		*type = VM_FAULT_MINOR;
L
Linus Torvalds 已提交
361 362 363 364
	return drm_do_vm_shm_nopage(vma, address);
}

static struct page *drm_vm_dma_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
365 366 367 368
				      unsigned long address, int *type)
{
	if (type)
		*type = VM_FAULT_MINOR;
L
Linus Torvalds 已提交
369 370 371 372
	return drm_do_vm_dma_nopage(vma, address);
}

static struct page *drm_vm_sg_nopage(struct vm_area_struct *vma,
D
Dave Airlie 已提交
373 374 375 376
				     unsigned long address, int *type)
{
	if (type)
		*type = VM_FAULT_MINOR;
L
Linus Torvalds 已提交
377 378 379 380
	return drm_do_vm_sg_nopage(vma, address);
}

/** AGP virtual memory operations */
D
Dave Airlie 已提交
381
static struct vm_operations_struct drm_vm_ops = {
L
Linus Torvalds 已提交
382
	.nopage = drm_vm_nopage,
D
Dave Airlie 已提交
383 384
	.open = drm_vm_open,
	.close = drm_vm_close,
L
Linus Torvalds 已提交
385 386 387
};

/** Shared virtual memory operations */
D
Dave Airlie 已提交
388
static struct vm_operations_struct drm_vm_shm_ops = {
L
Linus Torvalds 已提交
389
	.nopage = drm_vm_shm_nopage,
D
Dave Airlie 已提交
390 391
	.open = drm_vm_open,
	.close = drm_vm_shm_close,
L
Linus Torvalds 已提交
392 393 394
};

/** DMA virtual memory operations */
D
Dave Airlie 已提交
395
static struct vm_operations_struct drm_vm_dma_ops = {
L
Linus Torvalds 已提交
396
	.nopage = drm_vm_dma_nopage,
D
Dave Airlie 已提交
397 398
	.open = drm_vm_open,
	.close = drm_vm_close,
L
Linus Torvalds 已提交
399 400 401
};

/** Scatter-gather virtual memory operations */
D
Dave Airlie 已提交
402
static struct vm_operations_struct drm_vm_sg_ops = {
L
Linus Torvalds 已提交
403
	.nopage = drm_vm_sg_nopage,
D
Dave Airlie 已提交
404 405
	.open = drm_vm_open,
	.close = drm_vm_close,
L
Linus Torvalds 已提交
406 407 408 409
};

/**
 * \c open method for shared virtual memory.
D
Dave Airlie 已提交
410
 *
L
Linus Torvalds 已提交
411
 * \param vma virtual memory area.
D
Dave Airlie 已提交
412
 *
L
Linus Torvalds 已提交
413 414 415
 * Create a new drm_vma_entry structure as the \p vma private data entry and
 * add it to drm_device::vmalist.
 */
D
Dave Airlie 已提交
416
static void drm_vm_open(struct vm_area_struct *vma)
L
Linus Torvalds 已提交
417
{
D
Dave Airlie 已提交
418 419
	drm_file_t *priv = vma->vm_file->private_data;
	drm_device_t *dev = priv->head->dev;
L
Linus Torvalds 已提交
420 421 422 423 424 425 426 427
	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 已提交
428
		mutex_lock(&dev->struct_mutex);
D
Dave Airlie 已提交
429
		vma_entry->vma = vma;
L
Linus Torvalds 已提交
430
		vma_entry->next = dev->vmalist;
D
Dave Airlie 已提交
431 432
		vma_entry->pid = current->pid;
		dev->vmalist = vma_entry;
D
Dave Airlie 已提交
433
		mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
434 435 436 437 438
	}
}

/**
 * \c close method for all virtual memory types.
D
Dave Airlie 已提交
439
 *
L
Linus Torvalds 已提交
440
 * \param vma virtual memory area.
D
Dave Airlie 已提交
441
 *
L
Linus Torvalds 已提交
442 443 444
 * Search the \p vma private data entry in drm_device::vmalist, unlink it, and
 * free it.
 */
D
Dave Airlie 已提交
445
static void drm_vm_close(struct vm_area_struct *vma)
L
Linus Torvalds 已提交
446
{
D
Dave Airlie 已提交
447 448
	drm_file_t *priv = vma->vm_file->private_data;
	drm_device_t *dev = priv->head->dev;
L
Linus Torvalds 已提交
449 450 451 452 453 454
	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 已提交
455
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
456 457 458 459 460 461 462 463 464 465 466
	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 已提交
467
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
468 469 470 471 472 473 474 475
}

/**
 * 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 已提交
476
 *
L
Linus Torvalds 已提交
477 478 479
 * Sets the virtual memory area operations structure to vm_dma_ops, the file
 * pointer, and calls vm_open().
 */
D
Dave Airlie 已提交
480
static int drm_mmap_dma(struct file *filp, struct vm_area_struct *vma)
L
Linus Torvalds 已提交
481
{
D
Dave Airlie 已提交
482 483
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev;
L
Linus Torvalds 已提交
484
	drm_device_dma_t *dma;
D
Dave Airlie 已提交
485
	unsigned long length = vma->vm_end - vma->vm_start;
L
Linus Torvalds 已提交
486 487

	lock_kernel();
D
Dave Airlie 已提交
488 489
	dev = priv->head->dev;
	dma = dev->dma;
490 491
	DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
		  vma->vm_start, vma->vm_end, vma->vm_pgoff);
L
Linus Torvalds 已提交
492

D
Dave Airlie 已提交
493
	/* Length must match exact page count */
L
Linus Torvalds 已提交
494 495 496 497 498 499
	if (!dma || (length >> PAGE_SHIFT) != dma->page_count) {
		unlock_kernel();
		return -EINVAL;
	}
	unlock_kernel();

500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
	if (!capable(CAP_SYS_ADMIN) &&
	    (dma->flags & _DRM_DMA_USE_PCI_RO)) {
		vma->vm_flags &= ~(VM_WRITE | VM_MAYWRITE);
#if defined(__i386__) || defined(__x86_64__)
		pgprot_val(vma->vm_page_prot) &= ~_PAGE_RW;
#else
		/* 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)))));
#endif
	}

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

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

D
Dave Airlie 已提交
520
	vma->vm_file = filp;	/* Needed for drm_vm_open() */
L
Linus Torvalds 已提交
521 522 523 524
	drm_vm_open(vma);
	return 0;
}

D
Dave Airlie 已提交
525
unsigned long drm_core_get_map_ofs(drm_map_t * map)
L
Linus Torvalds 已提交
526 527 528
{
	return map->offset;
}
D
Dave Airlie 已提交
529

L
Linus Torvalds 已提交
530 531 532 533 534 535 536 537 538 539
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 已提交
540

L
Linus Torvalds 已提交
541 542 543 544 545 546 547 548
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 已提交
549
 *
L
Linus Torvalds 已提交
550 551 552 553 554 555 556 557
 * 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 已提交
558 559 560 561
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_map_t *map = NULL;
	unsigned long offset = 0;
562
	drm_hash_item_t *hash;
L
Linus Torvalds 已提交
563

564 565
	DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n",
		  vma->vm_start, vma->vm_end, vma->vm_pgoff);
L
Linus Torvalds 已提交
566

D
Dave Airlie 已提交
567 568
	if (!priv->authenticated)
		return -EACCES;
L
Linus Torvalds 已提交
569 570 571 572 573

	/* We check for "dma". On Apple's UniNorth, it's valid to have
	 * the AGP mapped at physical address 0
	 * --BenH.
	 */
574
	if (!vma->vm_pgoff
L
Linus Torvalds 已提交
575
#if __OS_HAS_AGP
D
Dave Airlie 已提交
576 577
	    && (!dev->agp
		|| dev->agp->agp_info.device->vendor != PCI_VENDOR_ID_APPLE)
L
Linus Torvalds 已提交
578 579 580 581
#endif
	    )
		return drm_mmap_dma(filp, vma);

582
	if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash)) {
583 584
		DRM_ERROR("Could not find map\n");
		return -EINVAL;
L
Linus Torvalds 已提交
585 586
	}

587
	map = drm_hash_entry(hash, drm_map_list_t, hash)->map;
D
Dave Airlie 已提交
588
	if (!map || ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN)))
L
Linus Torvalds 已提交
589 590
		return -EPERM;

D
Dave Airlie 已提交
591
	/* Check for valid size. */
592
	if (map->size < vma->vm_end - vma->vm_start)
D
Dave Airlie 已提交
593
		return -EINVAL;
L
Linus Torvalds 已提交
594 595 596 597 598 599

	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 已提交
600 601 602 603 604 605 606
		/* 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 已提交
607 608 609 610
#endif
	}

	switch (map->type) {
D
Dave Airlie 已提交
611 612 613 614 615 616 617
	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 已提交
618
#if defined(__powerpc__)
D
Dave Airlie 已提交
619
			pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
L
Linus Torvalds 已提交
620
#endif
D
Dave Airlie 已提交
621 622 623 624
			vma->vm_ops = &drm_vm_ops;
			break;
		}
		/* fall through to _DRM_FRAME_BUFFER... */
L
Linus Torvalds 已提交
625 626 627
	case _DRM_FRAME_BUFFER:
	case _DRM_REGISTERS:
		offset = dev->driver->get_reg_ofs(dev);
628 629
		vma->vm_flags |= VM_IO;	/* not in core dump */
		vma->vm_page_prot = drm_io_prot(map->type, vma);
L
Linus Torvalds 已提交
630
#ifdef __sparc__
631
		vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
632
		if (io_remap_pfn_range(vma, vma->vm_start,
D
Dave Airlie 已提交
633 634 635
				       (map->offset + offset) >> PAGE_SHIFT,
				       vma->vm_end - vma->vm_start,
				       vma->vm_page_prot))
L
Linus Torvalds 已提交
636 637
#else
		if (io_remap_pfn_range(vma, vma->vm_start,
D
Dave Airlie 已提交
638 639 640
				       (map->offset + offset) >> PAGE_SHIFT,
				       vma->vm_end - vma->vm_start,
				       vma->vm_page_prot))
L
Linus Torvalds 已提交
641
#endif
D
Dave Airlie 已提交
642
			return -EAGAIN;
L
Linus Torvalds 已提交
643 644 645
		DRM_DEBUG("   Type = %d; start = 0x%lx, end = 0x%lx,"
			  " offset = 0x%lx\n",
			  map->type,
646
			  vma->vm_start, vma->vm_end, map->offset + offset);
L
Linus Torvalds 已提交
647 648 649
		vma->vm_ops = &drm_vm_ops;
		break;
	case _DRM_SHM:
D
Dave Airlie 已提交
650 651 652
	case _DRM_CONSISTENT:
		/* Consistent memory is really like shared memory. It's only
		 * allocate in a different way */
L
Linus Torvalds 已提交
653 654
		vma->vm_ops = &drm_vm_shm_ops;
		vma->vm_private_data = (void *)map;
D
Dave Airlie 已提交
655 656
		/* Don't let this area swap.  Change when
		   DRM_KERNEL advisory is supported. */
L
Linus Torvalds 已提交
657 658 659 660 661 662
		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 已提交
663
		break;
L
Linus Torvalds 已提交
664 665 666
	default:
		return -EINVAL;	/* This should never happen. */
	}
D
Dave Airlie 已提交
667
	vma->vm_flags |= VM_RESERVED;	/* Don't swap */
L
Linus Torvalds 已提交
668

D
Dave Airlie 已提交
669
	vma->vm_file = filp;	/* Needed for drm_vm_open() */
L
Linus Torvalds 已提交
670 671 672
	drm_vm_open(vma);
	return 0;
}
D
Dave Airlie 已提交
673

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