drm_bufs.c 43.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/**
D
Dave Airlie 已提交
2
 * \file drm_bufs.c
L
Linus Torvalds 已提交
3
 * Generic buffer template
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
 * \author Rickard E. (Rik) Faith <faith@valinux.com>
 * \author Gareth Hughes <gareth@valinux.com>
 */

/*
 * Created: Thu Nov 23 03:10:50 2000 by gareth@valinux.com
 *
 * Copyright 1999, 2000 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 <linux/vmalloc.h>
37 38
#include <linux/log2.h>
#include <asm/shmparam.h>
L
Linus Torvalds 已提交
39 40
#include "drmP.h"

41
resource_size_t drm_get_resource_start(struct drm_device *dev, unsigned int resource)
L
Linus Torvalds 已提交
42
{
D
Dave Airlie 已提交
43 44 45
	return pci_resource_start(dev->pdev, resource);
}
EXPORT_SYMBOL(drm_get_resource_start);
L
Linus Torvalds 已提交
46

47
resource_size_t drm_get_resource_len(struct drm_device *dev, unsigned int resource)
D
Dave Airlie 已提交
48 49 50
{
	return pci_resource_len(dev->pdev, resource);
}
D
Dave Airlie 已提交
51

D
Dave Airlie 已提交
52
EXPORT_SYMBOL(drm_get_resource_len);
L
Linus Torvalds 已提交
53

D
Dave Airlie 已提交
54
static struct drm_map_list *drm_find_matching_map(struct drm_device *dev,
55
						  struct drm_local_map *map)
D
Dave Airlie 已提交
56
{
D
Dave Airlie 已提交
57
	struct drm_map_list *entry;
58
	list_for_each_entry(entry, &dev->maplist, head) {
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
		/*
		 * Because the kernel-userspace ABI is fixed at a 32-bit offset
		 * while PCI resources may live above that, we ignore the map
		 * offset for maps of type _DRM_FRAMEBUFFER or _DRM_REGISTERS.
		 * It is assumed that each driver will have only one resource of
		 * each type.
		 */
		if (!entry->map ||
		    map->type != entry->map->type ||
		    entry->master != dev->primary->master)
			continue;
		switch (map->type) {
		case _DRM_SHM:
			if (map->flags != _DRM_CONTAINS_LOCK)
				break;
		case _DRM_REGISTERS:
		case _DRM_FRAME_BUFFER:
76
			return entry;
77 78
		default: /* Make gcc happy */
			;
D
Dave Airlie 已提交
79
		}
80 81
		if (entry->map->offset == map->offset)
			return entry;
D
Dave Airlie 已提交
82 83 84
	}

	return NULL;
L
Linus Torvalds 已提交
85 86
}

87
static int drm_map_handle(struct drm_device *dev, struct drm_hash_item *hash,
88
			  unsigned long user_token, int hashed_handle, int shm)
89
{
90 91 92
	int use_hashed_handle, shift;
	unsigned long add;

D
Dave Airlie 已提交
93
#if (BITS_PER_LONG == 64)
94 95 96 97 98 99
	use_hashed_handle = ((user_token & 0xFFFFFFFF00000000UL) || hashed_handle);
#elif (BITS_PER_LONG == 32)
	use_hashed_handle = hashed_handle;
#else
#error Unsupported long size. Neither 64 nor 32 bits.
#endif
100

101 102
	if (!use_hashed_handle) {
		int ret;
103
		hash->key = user_token >> PAGE_SHIFT;
104 105 106
		ret = drm_ht_insert_item(&dev->map_hash, hash);
		if (ret != -EINVAL)
			return ret;
107
	}
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129

	shift = 0;
	add = DRM_MAP_HASH_OFFSET >> PAGE_SHIFT;
	if (shm && (SHMLBA > PAGE_SIZE)) {
		int bits = ilog2(SHMLBA >> PAGE_SHIFT) + 1;

		/* For shared memory, we have to preserve the SHMLBA
		 * bits of the eventual vma->vm_pgoff value during
		 * mmap().  Otherwise we run into cache aliasing problems
		 * on some platforms.  On these platforms, the pgoff of
		 * a mmap() request is used to pick a suitable virtual
		 * address for the mmap() region such that it will not
		 * cause cache aliasing problems.
		 *
		 * Therefore, make sure the SHMLBA relevant bits of the
		 * hash value we use are equal to those in the original
		 * kernel virtual address.
		 */
		shift = bits;
		add |= ((user_token >> PAGE_SHIFT) & ((1UL << bits) - 1UL));
	}

130 131
	return drm_ht_just_insert_please(&dev->map_hash, hash,
					 user_token, 32 - PAGE_SHIFT - 3,
132
					 shift, add);
133
}
134

L
Linus Torvalds 已提交
135
/**
136 137
 * Core function to create a range of memory available for mapping by a
 * non-root process.
L
Linus Torvalds 已提交
138 139 140 141 142
 *
 * Adjusts the memory offset to its absolute value according to the mapping
 * type.  Adds the map to the map list drm_device::maplist. Adds MTRR's where
 * applicable and if supported by the kernel.
 */
143
static int drm_addmap_core(struct drm_device * dev, resource_size_t offset,
144
			   unsigned int size, enum drm_map_type type,
D
Dave Airlie 已提交
145 146
			   enum drm_map_flags flags,
			   struct drm_map_list ** maplist)
L
Linus Torvalds 已提交
147
{
148
	struct drm_local_map *map;
D
Dave Airlie 已提交
149
	struct drm_map_list *list;
150
	drm_dma_handle_t *dmah;
151 152
	unsigned long user_token;
	int ret;
L
Linus Torvalds 已提交
153

154
	map = kmalloc(sizeof(*map), GFP_KERNEL);
D
Dave Airlie 已提交
155
	if (!map)
L
Linus Torvalds 已提交
156 157
		return -ENOMEM;

158 159 160 161
	map->offset = offset;
	map->size = size;
	map->flags = flags;
	map->type = type;
L
Linus Torvalds 已提交
162 163 164 165 166

	/* Only allow shared memory to be removable since we only keep enough
	 * book keeping information about shared memory to allow for removal
	 * when processes fork.
	 */
D
Dave Airlie 已提交
167
	if ((map->flags & _DRM_REMOVABLE) && map->type != _DRM_SHM) {
168
		kfree(map);
L
Linus Torvalds 已提交
169 170
		return -EINVAL;
	}
171 172
	DRM_DEBUG("offset = 0x%08llx, size = 0x%08lx, type = %d\n",
		  (unsigned long long)map->offset, map->size, map->type);
173 174 175 176 177 178 179 180

	/* page-align _DRM_SHM maps. They are allocated here so there is no security
	 * hole created by that and it works around various broken drivers that use
	 * a non-aligned quantity to map the SAREA. --BenH
	 */
	if (map->type == _DRM_SHM)
		map->size = PAGE_ALIGN(map->size);

181
	if ((map->offset & (~(resource_size_t)PAGE_MASK)) || (map->size & (~PAGE_MASK))) {
182
		kfree(map);
L
Linus Torvalds 已提交
183 184
		return -EINVAL;
	}
D
Dave Airlie 已提交
185
	map->mtrr = -1;
L
Linus Torvalds 已提交
186 187
	map->handle = NULL;

D
Dave Airlie 已提交
188
	switch (map->type) {
L
Linus Torvalds 已提交
189 190
	case _DRM_REGISTERS:
	case _DRM_FRAME_BUFFER:
D
Dave Airlie 已提交
191
#if !defined(__sparc__) && !defined(__alpha__) && !defined(__ia64__) && !defined(__powerpc64__) && !defined(__x86_64__)
192
		if (map->offset + (map->size-1) < map->offset ||
D
Dave Airlie 已提交
193
		    map->offset < virt_to_phys(high_memory)) {
194
			kfree(map);
L
Linus Torvalds 已提交
195 196 197 198 199 200
			return -EINVAL;
		}
#endif
#ifdef __alpha__
		map->offset += dev->hose->mem_space->start;
#endif
D
Dave Airlie 已提交
201 202 203 204
		/* Some drivers preinitialize some maps, without the X Server
		 * needing to be aware of it.  Therefore, we just return success
		 * when the server tries to create a duplicate map.
		 */
205 206 207
		list = drm_find_matching_map(dev, map);
		if (list != NULL) {
			if (list->map->size != map->size) {
D
Dave Airlie 已提交
208
				DRM_DEBUG("Matching maps of type %d with "
D
Dave Airlie 已提交
209 210 211
					  "mismatched sizes, (%ld vs %ld)\n",
					  map->type, map->size,
					  list->map->size);
212
				list->map->size = map->size;
D
Dave Airlie 已提交
213 214
			}

215
			kfree(map);
216
			*maplist = list;
D
Dave Airlie 已提交
217 218 219
			return 0;
		}

L
Linus Torvalds 已提交
220
		if (drm_core_has_MTRR(dev)) {
D
Dave Airlie 已提交
221 222 223 224
			if (map->type == _DRM_FRAME_BUFFER ||
			    (map->flags & _DRM_WRITE_COMBINING)) {
				map->mtrr = mtrr_add(map->offset, map->size,
						     MTRR_TYPE_WRCOMB, 1);
L
Linus Torvalds 已提交
225 226
			}
		}
227
		if (map->type == _DRM_REGISTERS) {
228
			map->handle = ioremap(map->offset, map->size);
229
			if (!map->handle) {
230
				kfree(map);
231 232 233
				return -ENOMEM;
			}
		}
D
Dave Airlie 已提交
234

L
Linus Torvalds 已提交
235 236
		break;
	case _DRM_SHM:
237 238 239 240 241 242 243 244 245
		list = drm_find_matching_map(dev, map);
		if (list != NULL) {
			if(list->map->size != map->size) {
				DRM_DEBUG("Matching maps of type %d with "
					  "mismatched sizes, (%ld vs %ld)\n",
					  map->type, map->size, list->map->size);
				list->map->size = map->size;
			}

246
			kfree(map);
247 248 249
			*maplist = list;
			return 0;
		}
250
		map->handle = vmalloc_user(map->size);
D
Dave Airlie 已提交
251 252 253
		DRM_DEBUG("%lu %d %p\n",
			  map->size, drm_order(map->size), map->handle);
		if (!map->handle) {
254
			kfree(map);
L
Linus Torvalds 已提交
255 256 257
			return -ENOMEM;
		}
		map->offset = (unsigned long)map->handle;
D
Dave Airlie 已提交
258
		if (map->flags & _DRM_CONTAINS_LOCK) {
L
Linus Torvalds 已提交
259
			/* Prevent a 2nd X Server from creating a 2nd lock */
260
			if (dev->primary->master->lock.hw_lock != NULL) {
D
Dave Airlie 已提交
261
				vfree(map->handle);
262
				kfree(map);
L
Linus Torvalds 已提交
263 264
				return -EBUSY;
			}
265
			dev->sigdata.lock = dev->primary->master->lock.hw_lock = map->handle;	/* Pointer to lock */
L
Linus Torvalds 已提交
266 267
		}
		break;
268
	case _DRM_AGP: {
D
Dave Airlie 已提交
269
		struct drm_agp_mem *entry;
270 271 272
		int valid = 0;

		if (!drm_core_has_AGP(dev)) {
273
			kfree(map);
274 275
			return -EINVAL;
		}
L
Linus Torvalds 已提交
276
#ifdef __alpha__
277
		map->offset += dev->hose->mem_space->start;
L
Linus Torvalds 已提交
278
#endif
279 280 281 282 283
		/* In some cases (i810 driver), user space may have already
		 * added the AGP base itself, because dev->agp->base previously
		 * only got set during AGP enable.  So, only add the base
		 * address if the map's offset isn't already within the
		 * aperture.
284
		 */
285 286 287 288 289
		if (map->offset < dev->agp->base ||
		    map->offset > dev->agp->base +
		    dev->agp->agp_info.aper_size * 1024 * 1024 - 1) {
			map->offset += dev->agp->base;
		}
290 291 292 293 294 295 296 297
		map->mtrr = dev->agp->agp_mtrr;	/* for getmap */

		/* This assumes the DRM is in total control of AGP space.
		 * It's not always the case as AGP can be in the control
		 * of user space (i.e. i810 driver). So this loop will get
		 * skipped and we double check that dev->agp->memory is
		 * actually set as well as being invalid before EPERM'ing
		 */
298
		list_for_each_entry(entry, &dev->agp->memory, head) {
299 300 301 302 303
			if ((map->offset >= entry->bound) &&
			    (map->offset + map->size <= entry->bound + entry->pages * PAGE_SIZE)) {
				valid = 1;
				break;
			}
L
Linus Torvalds 已提交
304
		}
305
		if (!list_empty(&dev->agp->memory) && !valid) {
306
			kfree(map);
307 308
			return -EPERM;
		}
309 310
		DRM_DEBUG("AGP offset = 0x%08llx, size = 0x%08lx\n",
			  (unsigned long long)map->offset, map->size);
311

J
Jesse Barnes 已提交
312 313 314
		break;
	case _DRM_GEM:
		DRM_ERROR("tried to rmmap GEM object\n");
L
Linus Torvalds 已提交
315
		break;
316
	}
L
Linus Torvalds 已提交
317 318
	case _DRM_SCATTER_GATHER:
		if (!dev->sg) {
319
			kfree(map);
L
Linus Torvalds 已提交
320 321
			return -EINVAL;
		}
322
		map->offset += (unsigned long)dev->sg->virtual;
L
Linus Torvalds 已提交
323
		break;
D
Dave Airlie 已提交
324
	case _DRM_CONSISTENT:
D
Dave Airlie 已提交
325
		/* dma_addr_t is 64bit on i386 with CONFIG_HIGHMEM64G,
326
		 * As we're limiting the address to 2^32-1 (or less),
D
Dave Airlie 已提交
327 328
		 * casting it down to 32 bits is no problem, but we
		 * need to point to a 64bit variable first. */
329 330
		dmah = drm_pci_alloc(dev, map->size, map->size, 0xffffffffUL);
		if (!dmah) {
331
			kfree(map);
D
Dave Airlie 已提交
332 333
			return -ENOMEM;
		}
334 335 336
		map->handle = dmah->vaddr;
		map->offset = (unsigned long)dmah->busaddr;
		kfree(dmah);
D
Dave Airlie 已提交
337
		break;
L
Linus Torvalds 已提交
338
	default:
339
		kfree(map);
L
Linus Torvalds 已提交
340 341 342
		return -EINVAL;
	}

343
	list = kmalloc(sizeof(*list), GFP_KERNEL);
D
Dave Airlie 已提交
344
	if (!list) {
345
		if (map->type == _DRM_REGISTERS)
346
			iounmap(map->handle);
347
		kfree(map);
L
Linus Torvalds 已提交
348 349 350 351 352
		return -EINVAL;
	}
	memset(list, 0, sizeof(*list));
	list->map = map;

D
Dave Airlie 已提交
353
	mutex_lock(&dev->struct_mutex);
354
	list_add(&list->head, &dev->maplist);
355

356
	/* Assign a 32-bit handle */
D
Dave Airlie 已提交
357
	/* We do it here so that dev->struct_mutex protects the increment */
358 359
	user_token = (map->type == _DRM_SHM) ? (unsigned long)map->handle :
		map->offset;
360 361
	ret = drm_map_handle(dev, &list->hash, user_token, 0,
			     (map->type == _DRM_SHM));
362
	if (ret) {
363
		if (map->type == _DRM_REGISTERS)
364
			iounmap(map->handle);
365 366
		kfree(map);
		kfree(list);
367 368 369 370
		mutex_unlock(&dev->struct_mutex);
		return ret;
	}

371
	list->user_token = list->hash.key << PAGE_SHIFT;
D
Dave Airlie 已提交
372
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
373

374 375
	if (!(map->flags & _DRM_DRIVER))
		list->master = dev->primary->master;
376
	*maplist = list;
377
	return 0;
378
	}
379

380
int drm_addmap(struct drm_device * dev, resource_size_t offset,
381
	       unsigned int size, enum drm_map_type type,
382
	       enum drm_map_flags flags, struct drm_local_map ** map_ptr)
383
{
D
Dave Airlie 已提交
384
	struct drm_map_list *list;
385 386 387 388 389 390 391
	int rc;

	rc = drm_addmap_core(dev, offset, size, type, flags, &list);
	if (!rc)
		*map_ptr = list->map;
	return rc;
}
D
Dave Airlie 已提交
392

393 394
EXPORT_SYMBOL(drm_addmap);

395 396 397 398 399 400 401 402 403 404 405
/**
 * Ioctl to specify a range of memory that is available for mapping by a
 * non-root process.
 *
 * \param inode device inode.
 * \param file_priv DRM file private.
 * \param cmd command.
 * \param arg pointer to a drm_map structure.
 * \return zero on success or a negative value on error.
 *
 */
406 407
int drm_addmap_ioctl(struct drm_device *dev, void *data,
		     struct drm_file *file_priv)
408
{
409
	struct drm_map *map = data;
D
Dave Airlie 已提交
410
	struct drm_map_list *maplist;
411 412
	int err;

413
	if (!(capable(CAP_SYS_ADMIN) || map->type == _DRM_AGP || map->type == _DRM_SHM))
414 415
		return -EPERM;

416 417
	err = drm_addmap_core(dev, map->offset, map->size, map->type,
			      map->flags, &maplist);
418

D
Dave Airlie 已提交
419
	if (err)
420
		return err;
421

422
	/* avoid a warning on 64-bit, this casting isn't very nice, but the API is set so too late */
423
	map->handle = (void *)(unsigned long)maplist->user_token;
L
Linus Torvalds 已提交
424
	return 0;
D
Dave Airlie 已提交
425
}
L
Linus Torvalds 已提交
426 427 428 429 430 431 432 433 434

/**
 * Remove a map private from list and deallocate resources if the mapping
 * isn't in use.
 *
 * Searches the map on drm_device::maplist, removes it from the list, see if
 * its being used, and free any associate resource (such as MTRR's) if it's not
 * being on use.
 *
435
 * \sa drm_addmap
L
Linus Torvalds 已提交
436
 */
437
int drm_rmmap_locked(struct drm_device *dev, struct drm_local_map *map)
L
Linus Torvalds 已提交
438
{
D
Dave Airlie 已提交
439
	struct drm_map_list *r_list = NULL, *list_t;
D
Dave Airlie 已提交
440
	drm_dma_handle_t dmah;
441
	int found = 0;
442
	struct drm_master *master;
L
Linus Torvalds 已提交
443

D
Dave Airlie 已提交
444
	/* Find the list entry for the map and remove it */
445
	list_for_each_entry_safe(r_list, list_t, &dev->maplist, head) {
D
Dave Airlie 已提交
446
		if (r_list->map == map) {
447
			master = r_list->master;
448
			list_del(&r_list->head);
449 450
			drm_ht_remove_key(&dev->map_hash,
					  r_list->user_token >> PAGE_SHIFT);
451
			kfree(r_list);
452
			found = 1;
D
Dave Airlie 已提交
453 454
			break;
		}
L
Linus Torvalds 已提交
455 456
	}

457
	if (!found)
L
Linus Torvalds 已提交
458 459
		return -EINVAL;

D
Dave Airlie 已提交
460 461
	switch (map->type) {
	case _DRM_REGISTERS:
462
		iounmap(map->handle);
D
Dave Airlie 已提交
463 464 465 466
		/* FALLTHROUGH */
	case _DRM_FRAME_BUFFER:
		if (drm_core_has_MTRR(dev) && map->mtrr >= 0) {
			int retcode;
D
Dave Airlie 已提交
467 468
			retcode = mtrr_del(map->mtrr, map->offset, map->size);
			DRM_DEBUG("mtrr_del=%d\n", retcode);
L
Linus Torvalds 已提交
469
		}
D
Dave Airlie 已提交
470 471 472
		break;
	case _DRM_SHM:
		vfree(map->handle);
473 474 475 476 477
		if (master) {
			if (dev->sigdata.lock == master->lock.hw_lock)
				dev->sigdata.lock = NULL;
			master->lock.hw_lock = NULL;   /* SHM removed */
			master->lock.file_priv = NULL;
478
			wake_up_interruptible_all(&master->lock.lock_queue);
479
		}
D
Dave Airlie 已提交
480 481 482 483 484 485 486 487 488 489
		break;
	case _DRM_AGP:
	case _DRM_SCATTER_GATHER:
		break;
	case _DRM_CONSISTENT:
		dmah.vaddr = map->handle;
		dmah.busaddr = map->offset;
		dmah.size = map->size;
		__drm_pci_free(dev, &dmah);
		break;
J
Jesse Barnes 已提交
490 491 492
	case _DRM_GEM:
		DRM_ERROR("tried to rmmap GEM object\n");
		break;
L
Linus Torvalds 已提交
493
	}
494
	kfree(map);
D
Dave Airlie 已提交
495

L
Linus Torvalds 已提交
496 497
	return 0;
}
498
EXPORT_SYMBOL(drm_rmmap_locked);
D
Dave Airlie 已提交
499

500
int drm_rmmap(struct drm_device *dev, struct drm_local_map *map)
D
Dave Airlie 已提交
501 502 503
{
	int ret;

D
Dave Airlie 已提交
504
	mutex_lock(&dev->struct_mutex);
D
Dave Airlie 已提交
505
	ret = drm_rmmap_locked(dev, map);
D
Dave Airlie 已提交
506
	mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
507 508 509

	return ret;
}
J
Jesse Barnes 已提交
510
EXPORT_SYMBOL(drm_rmmap);
511

D
Dave Airlie 已提交
512 513 514 515 516 517 518 519
/* The rmmap ioctl appears to be unnecessary.  All mappings are torn down on
 * the last close of the device, and this is necessary for cleanup when things
 * exit uncleanly.  Therefore, having userland manually remove mappings seems
 * like a pointless exercise since they're going away anyway.
 *
 * One use case might be after addmap is allowed for normal users for SHM and
 * gets used by drivers that the server doesn't need to care about.  This seems
 * unlikely.
520 521 522 523 524 525
 *
 * \param inode device inode.
 * \param file_priv DRM file private.
 * \param cmd command.
 * \param arg pointer to a struct drm_map structure.
 * \return zero on success or a negative value on error.
D
Dave Airlie 已提交
526
 */
527 528
int drm_rmmap_ioctl(struct drm_device *dev, void *data,
		    struct drm_file *file_priv)
529
{
530
	struct drm_map *request = data;
531
	struct drm_local_map *map = NULL;
D
Dave Airlie 已提交
532
	struct drm_map_list *r_list;
D
Dave Airlie 已提交
533
	int ret;
534

D
Dave Airlie 已提交
535
	mutex_lock(&dev->struct_mutex);
536
	list_for_each_entry(r_list, &dev->maplist, head) {
D
Dave Airlie 已提交
537
		if (r_list->map &&
538
		    r_list->user_token == (unsigned long)request->handle &&
D
Dave Airlie 已提交
539 540 541 542 543 544 545 546 547
		    r_list->map->flags & _DRM_REMOVABLE) {
			map = r_list->map;
			break;
		}
	}

	/* List has wrapped around to the head pointer, or its empty we didn't
	 * find anything.
	 */
548
	if (list_empty(&dev->maplist) || !map) {
D
Dave Airlie 已提交
549
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
550 551 552 553 554
		return -EINVAL;
	}

	/* Register and framebuffer maps are permanent */
	if ((map->type == _DRM_REGISTERS) || (map->type == _DRM_FRAME_BUFFER)) {
D
Dave Airlie 已提交
555
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
556 557 558 559 560
		return 0;
	}

	ret = drm_rmmap_locked(dev, map);

D
Dave Airlie 已提交
561
	mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
562 563

	return ret;
564
}
L
Linus Torvalds 已提交
565 566 567 568

/**
 * Cleanup after an error on one of the addbufs() functions.
 *
D
Dave Airlie 已提交
569
 * \param dev DRM device.
L
Linus Torvalds 已提交
570 571 572 573
 * \param entry buffer entry where the error occurred.
 *
 * Frees any pages and buffers associated with the given entry.
 */
574 575
static void drm_cleanup_buf_error(struct drm_device * dev,
				  struct drm_buf_entry * entry)
L
Linus Torvalds 已提交
576 577 578 579 580 581
{
	int i;

	if (entry->seg_count) {
		for (i = 0; i < entry->seg_count; i++) {
			if (entry->seglist[i]) {
D
Dave Airlie 已提交
582
				drm_pci_free(dev, entry->seglist[i]);
L
Linus Torvalds 已提交
583 584
			}
		}
585
		kfree(entry->seglist);
L
Linus Torvalds 已提交
586 587 588 589

		entry->seg_count = 0;
	}

D
Dave Airlie 已提交
590 591
	if (entry->buf_count) {
		for (i = 0; i < entry->buf_count; i++) {
592
			kfree(entry->buflist[i].dev_private);
L
Linus Torvalds 已提交
593
		}
594
		kfree(entry->buflist);
L
Linus Torvalds 已提交
595 596 597 598 599 600 601

		entry->buf_count = 0;
	}
}

#if __OS_HAS_AGP
/**
602
 * Add AGP buffers for DMA transfers.
L
Linus Torvalds 已提交
603
 *
604
 * \param dev struct drm_device to which the buffers are to be added.
605
 * \param request pointer to a struct drm_buf_desc describing the request.
L
Linus Torvalds 已提交
606
 * \return zero on success or a negative number on failure.
D
Dave Airlie 已提交
607
 *
L
Linus Torvalds 已提交
608 609 610 611
 * After some sanity checks creates a drm_buf structure for each buffer and
 * reallocates the buffer list of the same size order to accommodate the new
 * buffers.
 */
612
int drm_addbufs_agp(struct drm_device * dev, struct drm_buf_desc * request)
L
Linus Torvalds 已提交
613
{
614 615
	struct drm_device_dma *dma = dev->dma;
	struct drm_buf_entry *entry;
D
Dave Airlie 已提交
616
	struct drm_agp_mem *agp_entry;
D
Dave Airlie 已提交
617
	struct drm_buf *buf;
L
Linus Torvalds 已提交
618 619 620 621 622 623 624 625 626
	unsigned long offset;
	unsigned long agp_offset;
	int count;
	int order;
	int size;
	int alignment;
	int page_order;
	int total;
	int byte_count;
627
	int i, valid;
D
Dave Airlie 已提交
628
	struct drm_buf **temp_buflist;
L
Linus Torvalds 已提交
629

D
Dave Airlie 已提交
630 631
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
632

633 634
	count = request->count;
	order = drm_order(request->size);
L
Linus Torvalds 已提交
635 636
	size = 1 << order;

D
Dave Airlie 已提交
637 638
	alignment = (request->flags & _DRM_PAGE_ALIGN)
	    ? PAGE_ALIGN(size) : size;
L
Linus Torvalds 已提交
639 640 641 642
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

	byte_count = 0;
643
	agp_offset = dev->agp->base + request->agp_start;
L
Linus Torvalds 已提交
644

D
Dave Airlie 已提交
645 646 647
	DRM_DEBUG("count:      %d\n", count);
	DRM_DEBUG("order:      %d\n", order);
	DRM_DEBUG("size:       %d\n", size);
648
	DRM_DEBUG("agp_offset: %lx\n", agp_offset);
D
Dave Airlie 已提交
649 650 651
	DRM_DEBUG("alignment:  %d\n", alignment);
	DRM_DEBUG("page_order: %d\n", page_order);
	DRM_DEBUG("total:      %d\n", total);
L
Linus Torvalds 已提交
652

D
Dave Airlie 已提交
653 654 655 656
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
L
Linus Torvalds 已提交
657

658 659
	/* Make sure buffers are located in AGP memory that we own */
	valid = 0;
660
	list_for_each_entry(agp_entry, &dev->agp->memory, head) {
661 662 663 664 665 666
		if ((agp_offset >= agp_entry->bound) &&
		    (agp_offset + total * count <= agp_entry->bound + agp_entry->pages * PAGE_SIZE)) {
			valid = 1;
			break;
		}
	}
667
	if (!list_empty(&dev->agp->memory) && !valid) {
668 669 670
		DRM_DEBUG("zone invalid\n");
		return -EINVAL;
	}
D
Dave Airlie 已提交
671 672 673
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
674 675
		return -EBUSY;
	}
D
Dave Airlie 已提交
676 677
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
678

D
Dave Airlie 已提交
679
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
680
	entry = &dma->bufs[order];
D
Dave Airlie 已提交
681
	if (entry->buf_count) {
D
Dave Airlie 已提交
682
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
683 684
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
L
Linus Torvalds 已提交
685 686 687
	}

	if (count < 0 || count > 4096) {
D
Dave Airlie 已提交
688
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
689
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
690 691 692
		return -EINVAL;
	}

693
	entry->buflist = kmalloc(count * sizeof(*entry->buflist), GFP_KERNEL);
D
Dave Airlie 已提交
694
	if (!entry->buflist) {
D
Dave Airlie 已提交
695
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
696
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
697 698
		return -ENOMEM;
	}
D
Dave Airlie 已提交
699
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));
L
Linus Torvalds 已提交
700 701 702 703 704 705

	entry->buf_size = size;
	entry->page_order = page_order;

	offset = 0;

D
Dave Airlie 已提交
706 707 708 709 710 711
	while (entry->buf_count < count) {
		buf = &entry->buflist[entry->buf_count];
		buf->idx = dma->buf_count + entry->buf_count;
		buf->total = alignment;
		buf->order = order;
		buf->used = 0;
L
Linus Torvalds 已提交
712

D
Dave Airlie 已提交
713
		buf->offset = (dma->byte_count + offset);
L
Linus Torvalds 已提交
714 715
		buf->bus_address = agp_offset + offset;
		buf->address = (void *)(agp_offset + offset);
D
Dave Airlie 已提交
716
		buf->next = NULL;
L
Linus Torvalds 已提交
717 718
		buf->waiting = 0;
		buf->pending = 0;
D
Dave Airlie 已提交
719
		init_waitqueue_head(&buf->dma_wait);
720
		buf->file_priv = NULL;
L
Linus Torvalds 已提交
721 722

		buf->dev_priv_size = dev->driver->dev_priv_size;
723
		buf->dev_private = kmalloc(buf->dev_priv_size, GFP_KERNEL);
D
Dave Airlie 已提交
724
		if (!buf->dev_private) {
L
Linus Torvalds 已提交
725 726
			/* Set count correctly so we free the proper amount. */
			entry->buf_count = count;
D
Dave Airlie 已提交
727
			drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
728
			mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
729
			atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
730 731
			return -ENOMEM;
		}
D
Dave Airlie 已提交
732
		memset(buf->dev_private, 0, buf->dev_priv_size);
L
Linus Torvalds 已提交
733

D
Dave Airlie 已提交
734
		DRM_DEBUG("buffer %d @ %p\n", entry->buf_count, buf->address);
L
Linus Torvalds 已提交
735 736 737 738 739 740

		offset += alignment;
		entry->buf_count++;
		byte_count += PAGE_SIZE << page_order;
	}

D
Dave Airlie 已提交
741
	DRM_DEBUG("byte_count: %d\n", byte_count);
L
Linus Torvalds 已提交
742

743 744 745
	temp_buflist = krealloc(dma->buflist,
				(dma->buf_count + entry->buf_count) *
				sizeof(*dma->buflist), GFP_KERNEL);
D
Dave Airlie 已提交
746
	if (!temp_buflist) {
L
Linus Torvalds 已提交
747
		/* Free the entry because it isn't valid */
D
Dave Airlie 已提交
748
		drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
749
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
750
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
751 752 753 754
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

D
Dave Airlie 已提交
755
	for (i = 0; i < entry->buf_count; i++) {
L
Linus Torvalds 已提交
756 757 758 759
		dma->buflist[i + dma->buf_count] = &entry->buflist[i];
	}

	dma->buf_count += entry->buf_count;
760 761
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
L
Linus Torvalds 已提交
762 763
	dma->byte_count += byte_count;

D
Dave Airlie 已提交
764 765
	DRM_DEBUG("dma->buf_count : %d\n", dma->buf_count);
	DRM_DEBUG("entry->buf_count : %d\n", entry->buf_count);
L
Linus Torvalds 已提交
766

D
Dave Airlie 已提交
767
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
768

769 770
	request->count = entry->buf_count;
	request->size = size;
L
Linus Torvalds 已提交
771 772 773

	dma->flags = _DRM_DMA_USE_AGP;

D
Dave Airlie 已提交
774
	atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
775 776
	return 0;
}
777
EXPORT_SYMBOL(drm_addbufs_agp);
D
Dave Airlie 已提交
778
#endif				/* __OS_HAS_AGP */
L
Linus Torvalds 已提交
779

780
int drm_addbufs_pci(struct drm_device * dev, struct drm_buf_desc * request)
L
Linus Torvalds 已提交
781
{
782
	struct drm_device_dma *dma = dev->dma;
L
Linus Torvalds 已提交
783 784 785 786 787
	int count;
	int order;
	int size;
	int total;
	int page_order;
788
	struct drm_buf_entry *entry;
D
Dave Airlie 已提交
789
	drm_dma_handle_t *dmah;
D
Dave Airlie 已提交
790
	struct drm_buf *buf;
L
Linus Torvalds 已提交
791 792 793 794 795 796
	int alignment;
	unsigned long offset;
	int i;
	int byte_count;
	int page_count;
	unsigned long *temp_pagelist;
D
Dave Airlie 已提交
797
	struct drm_buf **temp_buflist;
L
Linus Torvalds 已提交
798

D
Dave Airlie 已提交
799 800
	if (!drm_core_check_feature(dev, DRIVER_PCI_DMA))
		return -EINVAL;
801

D
Dave Airlie 已提交
802 803
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
804

805 806 807
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

808 809
	count = request->count;
	order = drm_order(request->size);
L
Linus Torvalds 已提交
810 811
	size = 1 << order;

D
Dave Airlie 已提交
812 813
	DRM_DEBUG("count=%d, size=%d (%d), order=%d, queue_count=%d\n",
		  request->count, request->size, size, order, dev->queue_count);
L
Linus Torvalds 已提交
814

D
Dave Airlie 已提交
815 816 817 818
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
L
Linus Torvalds 已提交
819

820
	alignment = (request->flags & _DRM_PAGE_ALIGN)
D
Dave Airlie 已提交
821
	    ? PAGE_ALIGN(size) : size;
L
Linus Torvalds 已提交
822 823 824
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

D
Dave Airlie 已提交
825 826 827
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
828 829
		return -EBUSY;
	}
D
Dave Airlie 已提交
830 831
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
832

D
Dave Airlie 已提交
833
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
834
	entry = &dma->bufs[order];
D
Dave Airlie 已提交
835
	if (entry->buf_count) {
D
Dave Airlie 已提交
836
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
837
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
838 839 840 841
		return -ENOMEM;	/* May only call once for each order */
	}

	if (count < 0 || count > 4096) {
D
Dave Airlie 已提交
842
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
843
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
844 845 846
		return -EINVAL;
	}

847
	entry->buflist = kmalloc(count * sizeof(*entry->buflist), GFP_KERNEL);
D
Dave Airlie 已提交
848
	if (!entry->buflist) {
D
Dave Airlie 已提交
849
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
850
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
851 852
		return -ENOMEM;
	}
D
Dave Airlie 已提交
853 854
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));

855
	entry->seglist = kmalloc(count * sizeof(*entry->seglist), GFP_KERNEL);
D
Dave Airlie 已提交
856
	if (!entry->seglist) {
857
		kfree(entry->buflist);
D
Dave Airlie 已提交
858
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
859
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
860 861
		return -ENOMEM;
	}
D
Dave Airlie 已提交
862
	memset(entry->seglist, 0, count * sizeof(*entry->seglist));
L
Linus Torvalds 已提交
863 864 865 866

	/* Keep the original pagelist until we know all the allocations
	 * have succeeded
	 */
867 868
	temp_pagelist = kmalloc((dma->page_count + (count << page_order)) *
			       sizeof(*dma->pagelist), GFP_KERNEL);
L
Linus Torvalds 已提交
869
	if (!temp_pagelist) {
870 871
		kfree(entry->buflist);
		kfree(entry->seglist);
D
Dave Airlie 已提交
872
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
873
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
874 875 876
		return -ENOMEM;
	}
	memcpy(temp_pagelist,
D
Dave Airlie 已提交
877 878 879
	       dma->pagelist, dma->page_count * sizeof(*dma->pagelist));
	DRM_DEBUG("pagelist: %d entries\n",
		  dma->page_count + (count << page_order));
L
Linus Torvalds 已提交
880

D
Dave Airlie 已提交
881
	entry->buf_size = size;
L
Linus Torvalds 已提交
882 883 884 885
	entry->page_order = page_order;
	byte_count = 0;
	page_count = 0;

D
Dave Airlie 已提交
886
	while (entry->buf_count < count) {
D
Dave Airlie 已提交
887

D
Dave Airlie 已提交
888
		dmah = drm_pci_alloc(dev, PAGE_SIZE << page_order, 0x1000, 0xfffffffful);
D
Dave Airlie 已提交
889

D
Dave Airlie 已提交
890
		if (!dmah) {
L
Linus Torvalds 已提交
891 892 893 894
			/* Set count correctly so we free the proper amount. */
			entry->buf_count = count;
			entry->seg_count = count;
			drm_cleanup_buf_error(dev, entry);
895
			kfree(temp_pagelist);
D
Dave Airlie 已提交
896
			mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
897
			atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
898 899
			return -ENOMEM;
		}
D
Dave Airlie 已提交
900
		entry->seglist[entry->seg_count++] = dmah;
D
Dave Airlie 已提交
901 902 903
		for (i = 0; i < (1 << page_order); i++) {
			DRM_DEBUG("page %d @ 0x%08lx\n",
				  dma->page_count + page_count,
D
Dave Airlie 已提交
904
				  (unsigned long)dmah->vaddr + PAGE_SIZE * i);
L
Linus Torvalds 已提交
905
			temp_pagelist[dma->page_count + page_count++]
D
Dave Airlie 已提交
906
				= (unsigned long)dmah->vaddr + PAGE_SIZE * i;
L
Linus Torvalds 已提交
907
		}
D
Dave Airlie 已提交
908 909 910 911 912 913 914 915 916
		for (offset = 0;
		     offset + size <= total && entry->buf_count < count;
		     offset += alignment, ++entry->buf_count) {
			buf = &entry->buflist[entry->buf_count];
			buf->idx = dma->buf_count + entry->buf_count;
			buf->total = alignment;
			buf->order = order;
			buf->used = 0;
			buf->offset = (dma->byte_count + byte_count + offset);
D
Dave Airlie 已提交
917 918
			buf->address = (void *)(dmah->vaddr + offset);
			buf->bus_address = dmah->busaddr + offset;
D
Dave Airlie 已提交
919
			buf->next = NULL;
L
Linus Torvalds 已提交
920 921
			buf->waiting = 0;
			buf->pending = 0;
D
Dave Airlie 已提交
922
			init_waitqueue_head(&buf->dma_wait);
923
			buf->file_priv = NULL;
L
Linus Torvalds 已提交
924 925

			buf->dev_priv_size = dev->driver->dev_priv_size;
926 927
			buf->dev_private = kmalloc(buf->dev_priv_size,
						  GFP_KERNEL);
D
Dave Airlie 已提交
928
			if (!buf->dev_private) {
L
Linus Torvalds 已提交
929 930 931
				/* Set count correctly so we free the proper amount. */
				entry->buf_count = count;
				entry->seg_count = count;
D
Dave Airlie 已提交
932
				drm_cleanup_buf_error(dev, entry);
933
				kfree(temp_pagelist);
D
Dave Airlie 已提交
934
				mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
935
				atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
936 937
				return -ENOMEM;
			}
D
Dave Airlie 已提交
938
			memset(buf->dev_private, 0, buf->dev_priv_size);
L
Linus Torvalds 已提交
939

D
Dave Airlie 已提交
940 941
			DRM_DEBUG("buffer %d @ %p\n",
				  entry->buf_count, buf->address);
L
Linus Torvalds 已提交
942 943 944 945
		}
		byte_count += PAGE_SIZE << page_order;
	}

946 947 948
	temp_buflist = krealloc(dma->buflist,
				(dma->buf_count + entry->buf_count) *
				sizeof(*dma->buflist), GFP_KERNEL);
L
Linus Torvalds 已提交
949 950
	if (!temp_buflist) {
		/* Free the entry because it isn't valid */
D
Dave Airlie 已提交
951
		drm_cleanup_buf_error(dev, entry);
952
		kfree(temp_pagelist);
D
Dave Airlie 已提交
953
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
954
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
955 956 957 958
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

D
Dave Airlie 已提交
959
	for (i = 0; i < entry->buf_count; i++) {
L
Linus Torvalds 已提交
960 961 962 963 964 965 966
		dma->buflist[i + dma->buf_count] = &entry->buflist[i];
	}

	/* No allocations failed, so now we can replace the orginal pagelist
	 * with the new one.
	 */
	if (dma->page_count) {
967
		kfree(dma->pagelist);
L
Linus Torvalds 已提交
968 969 970 971 972 973 974 975
	}
	dma->pagelist = temp_pagelist;

	dma->buf_count += entry->buf_count;
	dma->seg_count += entry->seg_count;
	dma->page_count += entry->seg_count << page_order;
	dma->byte_count += PAGE_SIZE * (entry->seg_count << page_order);

D
Dave Airlie 已提交
976
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
977

978 979
	request->count = entry->buf_count;
	request->size = size;
L
Linus Torvalds 已提交
980

981 982 983
	if (request->flags & _DRM_PCI_BUFFER_RO)
		dma->flags = _DRM_DMA_USE_PCI_RO;

D
Dave Airlie 已提交
984
	atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
985 986 987
	return 0;

}
988
EXPORT_SYMBOL(drm_addbufs_pci);
L
Linus Torvalds 已提交
989

990
static int drm_addbufs_sg(struct drm_device * dev, struct drm_buf_desc * request)
L
Linus Torvalds 已提交
991
{
992 993
	struct drm_device_dma *dma = dev->dma;
	struct drm_buf_entry *entry;
D
Dave Airlie 已提交
994
	struct drm_buf *buf;
L
Linus Torvalds 已提交
995 996 997 998 999 1000 1001 1002 1003 1004
	unsigned long offset;
	unsigned long agp_offset;
	int count;
	int order;
	int size;
	int alignment;
	int page_order;
	int total;
	int byte_count;
	int i;
D
Dave Airlie 已提交
1005
	struct drm_buf **temp_buflist;
L
Linus Torvalds 已提交
1006

D
Dave Airlie 已提交
1007 1008 1009 1010 1011
	if (!drm_core_check_feature(dev, DRIVER_SG))
		return -EINVAL;

	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
1012

1013 1014 1015
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

1016 1017
	count = request->count;
	order = drm_order(request->size);
L
Linus Torvalds 已提交
1018 1019
	size = 1 << order;

D
Dave Airlie 已提交
1020 1021
	alignment = (request->flags & _DRM_PAGE_ALIGN)
	    ? PAGE_ALIGN(size) : size;
L
Linus Torvalds 已提交
1022 1023 1024 1025
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

	byte_count = 0;
1026
	agp_offset = request->agp_start;
L
Linus Torvalds 已提交
1027

D
Dave Airlie 已提交
1028 1029 1030 1031 1032 1033 1034
	DRM_DEBUG("count:      %d\n", count);
	DRM_DEBUG("order:      %d\n", order);
	DRM_DEBUG("size:       %d\n", size);
	DRM_DEBUG("agp_offset: %lu\n", agp_offset);
	DRM_DEBUG("alignment:  %d\n", alignment);
	DRM_DEBUG("page_order: %d\n", page_order);
	DRM_DEBUG("total:      %d\n", total);
L
Linus Torvalds 已提交
1035

D
Dave Airlie 已提交
1036 1037 1038 1039
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
L
Linus Torvalds 已提交
1040

D
Dave Airlie 已提交
1041 1042 1043
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1044 1045
		return -EBUSY;
	}
D
Dave Airlie 已提交
1046 1047
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1048

D
Dave Airlie 已提交
1049
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
1050
	entry = &dma->bufs[order];
D
Dave Airlie 已提交
1051
	if (entry->buf_count) {
D
Dave Airlie 已提交
1052
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1053 1054
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
L
Linus Torvalds 已提交
1055 1056 1057
	}

	if (count < 0 || count > 4096) {
D
Dave Airlie 已提交
1058
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1059
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
1060 1061 1062
		return -EINVAL;
	}

1063 1064
	entry->buflist = kmalloc(count * sizeof(*entry->buflist),
				GFP_KERNEL);
D
Dave Airlie 已提交
1065
	if (!entry->buflist) {
D
Dave Airlie 已提交
1066
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1067
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
1068 1069
		return -ENOMEM;
	}
D
Dave Airlie 已提交
1070
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));
L
Linus Torvalds 已提交
1071 1072 1073 1074 1075 1076

	entry->buf_size = size;
	entry->page_order = page_order;

	offset = 0;

D
Dave Airlie 已提交
1077 1078 1079 1080 1081 1082
	while (entry->buf_count < count) {
		buf = &entry->buflist[entry->buf_count];
		buf->idx = dma->buf_count + entry->buf_count;
		buf->total = alignment;
		buf->order = order;
		buf->used = 0;
L
Linus Torvalds 已提交
1083

D
Dave Airlie 已提交
1084
		buf->offset = (dma->byte_count + offset);
L
Linus Torvalds 已提交
1085
		buf->bus_address = agp_offset + offset;
D
Dave Airlie 已提交
1086
		buf->address = (void *)(agp_offset + offset
1087
					+ (unsigned long)dev->sg->virtual);
D
Dave Airlie 已提交
1088
		buf->next = NULL;
L
Linus Torvalds 已提交
1089 1090
		buf->waiting = 0;
		buf->pending = 0;
D
Dave Airlie 已提交
1091
		init_waitqueue_head(&buf->dma_wait);
1092
		buf->file_priv = NULL;
L
Linus Torvalds 已提交
1093 1094

		buf->dev_priv_size = dev->driver->dev_priv_size;
1095
		buf->dev_private = kmalloc(buf->dev_priv_size, GFP_KERNEL);
D
Dave Airlie 已提交
1096
		if (!buf->dev_private) {
L
Linus Torvalds 已提交
1097 1098
			/* Set count correctly so we free the proper amount. */
			entry->buf_count = count;
D
Dave Airlie 已提交
1099
			drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
1100
			mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1101
			atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
1102 1103 1104
			return -ENOMEM;
		}

D
Dave Airlie 已提交
1105
		memset(buf->dev_private, 0, buf->dev_priv_size);
L
Linus Torvalds 已提交
1106

D
Dave Airlie 已提交
1107
		DRM_DEBUG("buffer %d @ %p\n", entry->buf_count, buf->address);
L
Linus Torvalds 已提交
1108 1109 1110 1111 1112 1113

		offset += alignment;
		entry->buf_count++;
		byte_count += PAGE_SIZE << page_order;
	}

D
Dave Airlie 已提交
1114
	DRM_DEBUG("byte_count: %d\n", byte_count);
L
Linus Torvalds 已提交
1115

1116 1117 1118
	temp_buflist = krealloc(dma->buflist,
				(dma->buf_count + entry->buf_count) *
				sizeof(*dma->buflist), GFP_KERNEL);
D
Dave Airlie 已提交
1119
	if (!temp_buflist) {
L
Linus Torvalds 已提交
1120
		/* Free the entry because it isn't valid */
D
Dave Airlie 已提交
1121
		drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
1122
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1123
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
1124 1125 1126 1127
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

D
Dave Airlie 已提交
1128
	for (i = 0; i < entry->buf_count; i++) {
L
Linus Torvalds 已提交
1129 1130 1131 1132
		dma->buflist[i + dma->buf_count] = &entry->buflist[i];
	}

	dma->buf_count += entry->buf_count;
1133 1134
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
L
Linus Torvalds 已提交
1135 1136
	dma->byte_count += byte_count;

D
Dave Airlie 已提交
1137 1138
	DRM_DEBUG("dma->buf_count : %d\n", dma->buf_count);
	DRM_DEBUG("entry->buf_count : %d\n", entry->buf_count);
L
Linus Torvalds 已提交
1139

D
Dave Airlie 已提交
1140
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
1141

1142 1143
	request->count = entry->buf_count;
	request->size = size;
L
Linus Torvalds 已提交
1144 1145 1146

	dma->flags = _DRM_DMA_USE_SG;

D
Dave Airlie 已提交
1147
	atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
1148 1149 1150
	return 0;
}

1151
static int drm_addbufs_fb(struct drm_device * dev, struct drm_buf_desc * request)
D
Dave Airlie 已提交
1152
{
1153 1154
	struct drm_device_dma *dma = dev->dma;
	struct drm_buf_entry *entry;
D
Dave Airlie 已提交
1155
	struct drm_buf *buf;
D
Dave Airlie 已提交
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
	unsigned long offset;
	unsigned long agp_offset;
	int count;
	int order;
	int size;
	int alignment;
	int page_order;
	int total;
	int byte_count;
	int i;
D
Dave Airlie 已提交
1166
	struct drm_buf **temp_buflist;
D
Dave Airlie 已提交
1167 1168 1169

	if (!drm_core_check_feature(dev, DRIVER_FB_DMA))
		return -EINVAL;
D
Dave Airlie 已提交
1170

D
Dave Airlie 已提交
1171 1172 1173
	if (!dma)
		return -EINVAL;

1174 1175 1176
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

1177 1178
	count = request->count;
	order = drm_order(request->size);
D
Dave Airlie 已提交
1179 1180
	size = 1 << order;

1181
	alignment = (request->flags & _DRM_PAGE_ALIGN)
D
Dave Airlie 已提交
1182 1183 1184 1185 1186
	    ? PAGE_ALIGN(size) : size;
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

	byte_count = 0;
1187
	agp_offset = request->agp_start;
D
Dave Airlie 已提交
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209

	DRM_DEBUG("count:      %d\n", count);
	DRM_DEBUG("order:      %d\n", order);
	DRM_DEBUG("size:       %d\n", size);
	DRM_DEBUG("agp_offset: %lu\n", agp_offset);
	DRM_DEBUG("alignment:  %d\n", alignment);
	DRM_DEBUG("page_order: %d\n", page_order);
	DRM_DEBUG("total:      %d\n", total);

	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */

	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
		return -EBUSY;
	}
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);

D
Dave Airlie 已提交
1210
	mutex_lock(&dev->struct_mutex);
D
Dave Airlie 已提交
1211 1212
	entry = &dma->bufs[order];
	if (entry->buf_count) {
D
Dave Airlie 已提交
1213
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1214 1215 1216 1217 1218
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
	}

	if (count < 0 || count > 4096) {
D
Dave Airlie 已提交
1219
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1220 1221 1222 1223
		atomic_dec(&dev->buf_alloc);
		return -EINVAL;
	}

1224 1225
	entry->buflist = kmalloc(count * sizeof(*entry->buflist),
				GFP_KERNEL);
D
Dave Airlie 已提交
1226
	if (!entry->buflist) {
D
Dave Airlie 已提交
1227
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;
	}
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));

	entry->buf_size = size;
	entry->page_order = page_order;

	offset = 0;

	while (entry->buf_count < count) {
		buf = &entry->buflist[entry->buf_count];
		buf->idx = dma->buf_count + entry->buf_count;
		buf->total = alignment;
		buf->order = order;
		buf->used = 0;

		buf->offset = (dma->byte_count + offset);
		buf->bus_address = agp_offset + offset;
		buf->address = (void *)(agp_offset + offset);
		buf->next = NULL;
		buf->waiting = 0;
		buf->pending = 0;
		init_waitqueue_head(&buf->dma_wait);
1252
		buf->file_priv = NULL;
D
Dave Airlie 已提交
1253 1254

		buf->dev_priv_size = dev->driver->dev_priv_size;
1255
		buf->dev_private = kmalloc(buf->dev_priv_size, GFP_KERNEL);
D
Dave Airlie 已提交
1256 1257 1258 1259
		if (!buf->dev_private) {
			/* Set count correctly so we free the proper amount. */
			entry->buf_count = count;
			drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
1260
			mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
			atomic_dec(&dev->buf_alloc);
			return -ENOMEM;
		}
		memset(buf->dev_private, 0, buf->dev_priv_size);

		DRM_DEBUG("buffer %d @ %p\n", entry->buf_count, buf->address);

		offset += alignment;
		entry->buf_count++;
		byte_count += PAGE_SIZE << page_order;
	}

	DRM_DEBUG("byte_count: %d\n", byte_count);

1275 1276 1277
	temp_buflist = krealloc(dma->buflist,
				(dma->buf_count + entry->buf_count) *
				sizeof(*dma->buflist), GFP_KERNEL);
D
Dave Airlie 已提交
1278 1279 1280
	if (!temp_buflist) {
		/* Free the entry because it isn't valid */
		drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
1281
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

	for (i = 0; i < entry->buf_count; i++) {
		dma->buflist[i + dma->buf_count] = &entry->buflist[i];
	}

	dma->buf_count += entry->buf_count;
1292 1293
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
D
Dave Airlie 已提交
1294 1295 1296 1297 1298
	dma->byte_count += byte_count;

	DRM_DEBUG("dma->buf_count : %d\n", dma->buf_count);
	DRM_DEBUG("entry->buf_count : %d\n", entry->buf_count);

D
Dave Airlie 已提交
1299
	mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1300

1301 1302
	request->count = entry->buf_count;
	request->size = size;
D
Dave Airlie 已提交
1303 1304 1305 1306 1307 1308

	dma->flags = _DRM_DMA_USE_FB;

	atomic_dec(&dev->buf_alloc);
	return 0;
}
1309

D
Dave Airlie 已提交
1310

L
Linus Torvalds 已提交
1311 1312 1313 1314
/**
 * Add buffers for DMA transfers (ioctl).
 *
 * \param inode device inode.
1315
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
1316
 * \param cmd command.
1317
 * \param arg pointer to a struct drm_buf_desc request.
L
Linus Torvalds 已提交
1318 1319 1320 1321 1322 1323 1324
 * \return zero on success or a negative number on failure.
 *
 * According with the memory type specified in drm_buf_desc::flags and the
 * build options, it dispatches the call either to addbufs_agp(),
 * addbufs_sg() or addbufs_pci() for AGP, scatter-gather or consistent
 * PCI memory respectively.
 */
1325 1326
int drm_addbufs(struct drm_device *dev, void *data,
		struct drm_file *file_priv)
L
Linus Torvalds 已提交
1327
{
1328
	struct drm_buf_desc *request = data;
1329
	int ret;
D
Dave Airlie 已提交
1330

L
Linus Torvalds 已提交
1331 1332 1333 1334
	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA))
		return -EINVAL;

#if __OS_HAS_AGP
1335 1336
	if (request->flags & _DRM_AGP_BUFFER)
		ret = drm_addbufs_agp(dev, request);
L
Linus Torvalds 已提交
1337 1338
	else
#endif
1339 1340 1341 1342
	if (request->flags & _DRM_SG_BUFFER)
		ret = drm_addbufs_sg(dev, request);
	else if (request->flags & _DRM_FB_BUFFER)
		ret = drm_addbufs_fb(dev, request);
L
Linus Torvalds 已提交
1343
	else
1344
		ret = drm_addbufs_pci(dev, request);
1345 1346

	return ret;
L
Linus Torvalds 已提交
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
}

/**
 * Get information about the buffer mappings.
 *
 * This was originally mean for debugging purposes, or by a sophisticated
 * client library to determine how best to use the available buffers (e.g.,
 * large buffers can be used for image transfer).
 *
 * \param inode device inode.
1357
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
1358 1359 1360 1361 1362 1363 1364 1365
 * \param cmd command.
 * \param arg pointer to a drm_buf_info structure.
 * \return zero on success or a negative number on failure.
 *
 * Increments drm_device::buf_use while holding the drm_device::count_lock
 * lock, preventing of allocating more buffers after this call. Information
 * about each requested buffer is then copied into user space.
 */
1366 1367
int drm_infobufs(struct drm_device *dev, void *data,
		 struct drm_file *file_priv)
L
Linus Torvalds 已提交
1368
{
1369
	struct drm_device_dma *dma = dev->dma;
1370
	struct drm_buf_info *request = data;
L
Linus Torvalds 已提交
1371 1372 1373 1374 1375 1376
	int i;
	int count;

	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA))
		return -EINVAL;

D
Dave Airlie 已提交
1377 1378
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
1379

D
Dave Airlie 已提交
1380 1381 1382
	spin_lock(&dev->count_lock);
	if (atomic_read(&dev->buf_alloc)) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1383 1384 1385
		return -EBUSY;
	}
	++dev->buf_use;		/* Can't allocate more after this call */
D
Dave Airlie 已提交
1386
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1387

D
Dave Airlie 已提交
1388 1389 1390
	for (i = 0, count = 0; i < DRM_MAX_ORDER + 1; i++) {
		if (dma->bufs[i].buf_count)
			++count;
L
Linus Torvalds 已提交
1391 1392
	}

D
Dave Airlie 已提交
1393
	DRM_DEBUG("count = %d\n", count);
L
Linus Torvalds 已提交
1394

1395
	if (request->count >= count) {
D
Dave Airlie 已提交
1396 1397
		for (i = 0, count = 0; i < DRM_MAX_ORDER + 1; i++) {
			if (dma->bufs[i].buf_count) {
1398
				struct drm_buf_desc __user *to =
1399
				    &request->list[count];
1400 1401
				struct drm_buf_entry *from = &dma->bufs[i];
				struct drm_freelist *list = &dma->bufs[i].freelist;
D
Dave Airlie 已提交
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
				if (copy_to_user(&to->count,
						 &from->buf_count,
						 sizeof(from->buf_count)) ||
				    copy_to_user(&to->size,
						 &from->buf_size,
						 sizeof(from->buf_size)) ||
				    copy_to_user(&to->low_mark,
						 &list->low_mark,
						 sizeof(list->low_mark)) ||
				    copy_to_user(&to->high_mark,
						 &list->high_mark,
						 sizeof(list->high_mark)))
L
Linus Torvalds 已提交
1414 1415
					return -EFAULT;

D
Dave Airlie 已提交
1416 1417 1418 1419 1420 1421
				DRM_DEBUG("%d %d %d %d %d\n",
					  i,
					  dma->bufs[i].buf_count,
					  dma->bufs[i].buf_size,
					  dma->bufs[i].freelist.low_mark,
					  dma->bufs[i].freelist.high_mark);
L
Linus Torvalds 已提交
1422 1423 1424 1425
				++count;
			}
		}
	}
1426
	request->count = count;
L
Linus Torvalds 已提交
1427 1428 1429 1430 1431 1432 1433 1434

	return 0;
}

/**
 * Specifies a low and high water mark for buffer allocation
 *
 * \param inode device inode.
1435
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444
 * \param cmd command.
 * \param arg a pointer to a drm_buf_desc structure.
 * \return zero on success or a negative number on failure.
 *
 * Verifies that the size order is bounded between the admissible orders and
 * updates the respective drm_device_dma::bufs entry low and high water mark.
 *
 * \note This ioctl is deprecated and mostly never used.
 */
1445 1446
int drm_markbufs(struct drm_device *dev, void *data,
		 struct drm_file *file_priv)
L
Linus Torvalds 已提交
1447
{
1448
	struct drm_device_dma *dma = dev->dma;
1449
	struct drm_buf_desc *request = data;
L
Linus Torvalds 已提交
1450
	int order;
1451
	struct drm_buf_entry *entry;
L
Linus Torvalds 已提交
1452 1453 1454 1455

	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA))
		return -EINVAL;

D
Dave Airlie 已提交
1456 1457
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
1458

D
Dave Airlie 已提交
1459
	DRM_DEBUG("%d, %d, %d\n",
1460 1461
		  request->size, request->low_mark, request->high_mark);
	order = drm_order(request->size);
D
Dave Airlie 已提交
1462 1463
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
L
Linus Torvalds 已提交
1464 1465
	entry = &dma->bufs[order];

1466
	if (request->low_mark < 0 || request->low_mark > entry->buf_count)
L
Linus Torvalds 已提交
1467
		return -EINVAL;
1468
	if (request->high_mark < 0 || request->high_mark > entry->buf_count)
L
Linus Torvalds 已提交
1469 1470
		return -EINVAL;

1471 1472
	entry->freelist.low_mark = request->low_mark;
	entry->freelist.high_mark = request->high_mark;
L
Linus Torvalds 已提交
1473 1474 1475 1476 1477

	return 0;
}

/**
D
Dave Airlie 已提交
1478
 * Unreserve the buffers in list, previously reserved using drmDMA.
L
Linus Torvalds 已提交
1479 1480
 *
 * \param inode device inode.
1481
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
1482 1483 1484
 * \param cmd command.
 * \param arg pointer to a drm_buf_free structure.
 * \return zero on success or a negative number on failure.
D
Dave Airlie 已提交
1485
 *
L
Linus Torvalds 已提交
1486 1487 1488
 * Calls free_buffer() for each used buffer.
 * This function is primarily used for debugging.
 */
1489 1490
int drm_freebufs(struct drm_device *dev, void *data,
		 struct drm_file *file_priv)
L
Linus Torvalds 已提交
1491
{
1492
	struct drm_device_dma *dma = dev->dma;
1493
	struct drm_buf_free *request = data;
L
Linus Torvalds 已提交
1494 1495
	int i;
	int idx;
D
Dave Airlie 已提交
1496
	struct drm_buf *buf;
L
Linus Torvalds 已提交
1497 1498 1499 1500

	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA))
		return -EINVAL;

D
Dave Airlie 已提交
1501 1502
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
1503

1504 1505 1506
	DRM_DEBUG("%d\n", request->count);
	for (i = 0; i < request->count; i++) {
		if (copy_from_user(&idx, &request->list[i], sizeof(idx)))
L
Linus Torvalds 已提交
1507
			return -EFAULT;
D
Dave Airlie 已提交
1508 1509 1510
		if (idx < 0 || idx >= dma->buf_count) {
			DRM_ERROR("Index %d (of %d max)\n",
				  idx, dma->buf_count - 1);
L
Linus Torvalds 已提交
1511 1512 1513
			return -EINVAL;
		}
		buf = dma->buflist[idx];
1514
		if (buf->file_priv != file_priv) {
D
Dave Airlie 已提交
1515
			DRM_ERROR("Process %d freeing buffer not owned\n",
1516
				  task_pid_nr(current));
L
Linus Torvalds 已提交
1517 1518
			return -EINVAL;
		}
D
Dave Airlie 已提交
1519
		drm_free_buffer(dev, buf);
L
Linus Torvalds 已提交
1520 1521 1522 1523 1524 1525 1526 1527 1528
	}

	return 0;
}

/**
 * Maps all of the DMA buffers into client-virtual space (ioctl).
 *
 * \param inode device inode.
1529
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
1530 1531 1532 1533
 * \param cmd command.
 * \param arg pointer to a drm_buf_map structure.
 * \return zero on success or a negative number on failure.
 *
1534 1535 1536 1537
 * Maps the AGP, SG or PCI buffer region with do_mmap(), and copies information
 * about each buffer into user space. For PCI buffers, it calls do_mmap() with
 * offset equal to 0, which drm_mmap() interpretes as PCI buffers and calls
 * drm_mmap_dma().
L
Linus Torvalds 已提交
1538
 */
1539 1540
int drm_mapbufs(struct drm_device *dev, void *data,
	        struct drm_file *file_priv)
L
Linus Torvalds 已提交
1541
{
1542
	struct drm_device_dma *dma = dev->dma;
L
Linus Torvalds 已提交
1543 1544 1545 1546
	int retcode = 0;
	const int zero = 0;
	unsigned long virtual;
	unsigned long address;
1547
	struct drm_buf_map *request = data;
L
Linus Torvalds 已提交
1548 1549 1550 1551 1552
	int i;

	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA))
		return -EINVAL;

D
Dave Airlie 已提交
1553 1554
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
1555

D
Dave Airlie 已提交
1556 1557 1558
	spin_lock(&dev->count_lock);
	if (atomic_read(&dev->buf_alloc)) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1559 1560 1561
		return -EBUSY;
	}
	dev->buf_use++;		/* Can't allocate more after this call */
D
Dave Airlie 已提交
1562
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1563

1564
	if (request->count >= dma->buf_count) {
D
Dave Airlie 已提交
1565
		if ((drm_core_has_AGP(dev) && (dma->flags & _DRM_DMA_USE_AGP))
D
Dave Airlie 已提交
1566
		    || (drm_core_check_feature(dev, DRIVER_SG)
D
Dave Airlie 已提交
1567 1568 1569
			&& (dma->flags & _DRM_DMA_USE_SG))
		    || (drm_core_check_feature(dev, DRIVER_FB_DMA)
			&& (dma->flags & _DRM_DMA_USE_FB))) {
1570
			struct drm_local_map *map = dev->agp_buffer_map;
1571
			unsigned long token = dev->agp_buffer_token;
L
Linus Torvalds 已提交
1572

D
Dave Airlie 已提交
1573
			if (!map) {
L
Linus Torvalds 已提交
1574 1575 1576
				retcode = -EINVAL;
				goto done;
			}
D
Dave Airlie 已提交
1577
			down_write(&current->mm->mmap_sem);
1578
			virtual = do_mmap(file_priv->filp, 0, map->size,
D
Dave Airlie 已提交
1579
					  PROT_READ | PROT_WRITE,
1580 1581
					  MAP_SHARED,
					  token);
D
Dave Airlie 已提交
1582
			up_write(&current->mm->mmap_sem);
L
Linus Torvalds 已提交
1583
		} else {
D
Dave Airlie 已提交
1584
			down_write(&current->mm->mmap_sem);
1585
			virtual = do_mmap(file_priv->filp, 0, dma->byte_count,
D
Dave Airlie 已提交
1586 1587 1588
					  PROT_READ | PROT_WRITE,
					  MAP_SHARED, 0);
			up_write(&current->mm->mmap_sem);
L
Linus Torvalds 已提交
1589
		}
D
Dave Airlie 已提交
1590
		if (virtual > -1024UL) {
L
Linus Torvalds 已提交
1591 1592 1593 1594
			/* Real error */
			retcode = (signed long)virtual;
			goto done;
		}
1595
		request->virtual = (void __user *)virtual;
L
Linus Torvalds 已提交
1596

D
Dave Airlie 已提交
1597
		for (i = 0; i < dma->buf_count; i++) {
1598
			if (copy_to_user(&request->list[i].idx,
D
Dave Airlie 已提交
1599
					 &dma->buflist[i]->idx,
1600
					 sizeof(request->list[0].idx))) {
L
Linus Torvalds 已提交
1601 1602 1603
				retcode = -EFAULT;
				goto done;
			}
1604
			if (copy_to_user(&request->list[i].total,
D
Dave Airlie 已提交
1605
					 &dma->buflist[i]->total,
1606
					 sizeof(request->list[0].total))) {
L
Linus Torvalds 已提交
1607 1608 1609
				retcode = -EFAULT;
				goto done;
			}
1610
			if (copy_to_user(&request->list[i].used,
D
Dave Airlie 已提交
1611
					 &zero, sizeof(zero))) {
L
Linus Torvalds 已提交
1612 1613 1614
				retcode = -EFAULT;
				goto done;
			}
D
Dave Airlie 已提交
1615
			address = virtual + dma->buflist[i]->offset;	/* *** */
1616
			if (copy_to_user(&request->list[i].address,
D
Dave Airlie 已提交
1617
					 &address, sizeof(address))) {
L
Linus Torvalds 已提交
1618 1619 1620 1621 1622
				retcode = -EFAULT;
				goto done;
			}
		}
	}
D
Dave Airlie 已提交
1623
      done:
1624 1625
	request->count = dma->buf_count;
	DRM_DEBUG("%d buffers, retcode = %d\n", request->count, retcode);
L
Linus Torvalds 已提交
1626 1627 1628 1629

	return retcode;
}

D
Dave Airlie 已提交
1630 1631 1632
/**
 * Compute size order.  Returns the exponent of the smaller power of two which
 * is greater or equal to given number.
D
Dave Airlie 已提交
1633
 *
D
Dave Airlie 已提交
1634 1635 1636 1637 1638
 * \param size size.
 * \return order.
 *
 * \todo Can be made faster.
 */
D
Dave Airlie 已提交
1639
int drm_order(unsigned long size)
D
Dave Airlie 已提交
1640 1641 1642 1643
{
	int order;
	unsigned long tmp;

D
Dave Airlie 已提交
1644
	for (order = 0, tmp = size >> 1; tmp; tmp >>= 1, order++) ;
D
Dave Airlie 已提交
1645 1646 1647 1648 1649 1650 1651

	if (size & (size - 1))
		++order;

	return order;
}
EXPORT_SYMBOL(drm_order);