drm_bufs.c 41.9 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 37 38
 * \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>
#include "drmP.h"

39
unsigned long drm_get_resource_start(drm_device_t *dev, unsigned int resource)
L
Linus Torvalds 已提交
40
{
D
Dave Airlie 已提交
41 42 43
	return pci_resource_start(dev->pdev, resource);
}
EXPORT_SYMBOL(drm_get_resource_start);
L
Linus Torvalds 已提交
44

45
unsigned long drm_get_resource_len(drm_device_t *dev, unsigned int resource)
D
Dave Airlie 已提交
46 47 48
{
	return pci_resource_len(dev->pdev, resource);
}
D
Dave Airlie 已提交
49

D
Dave Airlie 已提交
50
EXPORT_SYMBOL(drm_get_resource_len);
L
Linus Torvalds 已提交
51

52 53
static drm_map_list_t *drm_find_matching_map(drm_device_t *dev,
					     drm_local_map_t *map)
D
Dave Airlie 已提交
54 55
{
	struct list_head *list;
L
Linus Torvalds 已提交
56

D
Dave Airlie 已提交
57 58 59 60
	list_for_each(list, &dev->maplist->head) {
		drm_map_list_t *entry = list_entry(list, drm_map_list_t, head);
		if (entry->map && map->type == entry->map->type &&
		    entry->map->offset == map->offset) {
61
			return entry;
D
Dave Airlie 已提交
62 63 64 65
		}
	}

	return NULL;
L
Linus Torvalds 已提交
66 67
}

A
Adrian Bunk 已提交
68 69
static int drm_map_handle(drm_device_t *dev, drm_hash_item_t *hash,
			  unsigned long user_token, int hashed_handle)
70
{
71
	int use_hashed_handle;
D
Dave Airlie 已提交
72
#if (BITS_PER_LONG == 64)
73 74 75 76 77 78
	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
79

80 81
	if (!use_hashed_handle) {
		int ret;
82
		hash->key = user_token;
83 84 85
		ret = drm_ht_insert_item(&dev->map_hash, hash);
		if (ret != -EINVAL)
			return ret;
86
	}
87 88 89
	return drm_ht_just_insert_please(&dev->map_hash, hash,
					 user_token, 32 - PAGE_SHIFT - 3,
					 PAGE_SHIFT, DRM_MAP_HASH_OFFSET);
90
}
91

L
Linus Torvalds 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104
/**
 * Ioctl to specify a range of memory that is available for mapping by a non-root process.
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \param cmd command.
 * \param arg pointer to a drm_map structure.
 * \return zero on success or a negative value on error.
 *
 * 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.
 */
105 106 107
static int drm_addmap_core(drm_device_t * dev, unsigned int offset,
			   unsigned int size, drm_map_type_t type,
			   drm_map_flags_t flags, drm_map_list_t ** maplist)
L
Linus Torvalds 已提交
108 109 110
{
	drm_map_t *map;
	drm_map_list_t *list;
111
	drm_dma_handle_t *dmah;
112 113
	unsigned long user_token;
	int ret;
L
Linus Torvalds 已提交
114

D
Dave Airlie 已提交
115 116
	map = drm_alloc(sizeof(*map), DRM_MEM_MAPS);
	if (!map)
L
Linus Torvalds 已提交
117 118
		return -ENOMEM;

119 120 121 122
	map->offset = offset;
	map->size = size;
	map->flags = flags;
	map->type = type;
L
Linus Torvalds 已提交
123 124 125 126 127

	/* 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 已提交
128 129
	if ((map->flags & _DRM_REMOVABLE) && map->type != _DRM_SHM) {
		drm_free(map, sizeof(*map), DRM_MEM_MAPS);
L
Linus Torvalds 已提交
130 131
		return -EINVAL;
	}
D
Dave Airlie 已提交
132 133 134 135
	DRM_DEBUG("offset = 0x%08lx, size = 0x%08lx, type = %d\n",
		  map->offset, map->size, map->type);
	if ((map->offset & (~PAGE_MASK)) || (map->size & (~PAGE_MASK))) {
		drm_free(map, sizeof(*map), DRM_MEM_MAPS);
L
Linus Torvalds 已提交
136 137
		return -EINVAL;
	}
D
Dave Airlie 已提交
138
	map->mtrr = -1;
L
Linus Torvalds 已提交
139 140
	map->handle = NULL;

D
Dave Airlie 已提交
141
	switch (map->type) {
L
Linus Torvalds 已提交
142 143
	case _DRM_REGISTERS:
	case _DRM_FRAME_BUFFER:
D
Dave Airlie 已提交
144
#if !defined(__sparc__) && !defined(__alpha__) && !defined(__ia64__) && !defined(__powerpc64__) && !defined(__x86_64__)
145
		if (map->offset + (map->size-1) < map->offset ||
D
Dave Airlie 已提交
146 147
		    map->offset < virt_to_phys(high_memory)) {
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
L
Linus Torvalds 已提交
148 149 150 151 152 153
			return -EINVAL;
		}
#endif
#ifdef __alpha__
		map->offset += dev->hose->mem_space->start;
#endif
D
Dave Airlie 已提交
154 155 156 157
		/* 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.
		 */
158 159 160
		list = drm_find_matching_map(dev, map);
		if (list != NULL) {
			if (list->map->size != map->size) {
D
Dave Airlie 已提交
161
				DRM_DEBUG("Matching maps of type %d with "
D
Dave Airlie 已提交
162 163 164
					  "mismatched sizes, (%ld vs %ld)\n",
					  map->type, map->size,
					  list->map->size);
165
				list->map->size = map->size;
D
Dave Airlie 已提交
166 167 168
			}

			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
169
			*maplist = list;
D
Dave Airlie 已提交
170 171 172
			return 0;
		}

L
Linus Torvalds 已提交
173
		if (drm_core_has_MTRR(dev)) {
D
Dave Airlie 已提交
174 175 176 177
			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 已提交
178 179 180
			}
		}
		if (map->type == _DRM_REGISTERS)
181
			map->handle = ioremap(map->offset, map->size);
L
Linus Torvalds 已提交
182 183 184
		break;

	case _DRM_SHM:
185
		map->handle = vmalloc_user(map->size);
D
Dave Airlie 已提交
186 187 188 189
		DRM_DEBUG("%lu %d %p\n",
			  map->size, drm_order(map->size), map->handle);
		if (!map->handle) {
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
L
Linus Torvalds 已提交
190 191 192
			return -ENOMEM;
		}
		map->offset = (unsigned long)map->handle;
D
Dave Airlie 已提交
193
		if (map->flags & _DRM_CONTAINS_LOCK) {
L
Linus Torvalds 已提交
194 195
			/* Prevent a 2nd X Server from creating a 2nd lock */
			if (dev->lock.hw_lock != NULL) {
D
Dave Airlie 已提交
196 197
				vfree(map->handle);
				drm_free(map, sizeof(*map), DRM_MEM_MAPS);
L
Linus Torvalds 已提交
198 199
				return -EBUSY;
			}
D
Dave Airlie 已提交
200
			dev->sigdata.lock = dev->lock.hw_lock = map->handle;	/* Pointer to lock */
L
Linus Torvalds 已提交
201 202 203 204 205 206 207 208
		}
		break;
	case _DRM_AGP:
		if (drm_core_has_AGP(dev)) {
#ifdef __alpha__
			map->offset += dev->hose->mem_space->start;
#endif
			map->offset += dev->agp->base;
D
Dave Airlie 已提交
209
			map->mtrr = dev->agp->agp_mtrr;	/* for getmap */
L
Linus Torvalds 已提交
210 211 212 213 214 215 216
		}
		break;
	case _DRM_SCATTER_GATHER:
		if (!dev->sg) {
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
			return -EINVAL;
		}
217
		map->offset += (unsigned long)dev->sg->virtual;
L
Linus Torvalds 已提交
218
		break;
D
Dave Airlie 已提交
219
	case _DRM_CONSISTENT:
D
Dave Airlie 已提交
220
		/* dma_addr_t is 64bit on i386 with CONFIG_HIGHMEM64G,
221
		 * As we're limiting the address to 2^32-1 (or less),
D
Dave Airlie 已提交
222 223
		 * casting it down to 32 bits is no problem, but we
		 * need to point to a 64bit variable first. */
224 225
		dmah = drm_pci_alloc(dev, map->size, map->size, 0xffffffffUL);
		if (!dmah) {
D
Dave Airlie 已提交
226 227 228
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
			return -ENOMEM;
		}
229 230 231
		map->handle = dmah->vaddr;
		map->offset = (unsigned long)dmah->busaddr;
		kfree(dmah);
D
Dave Airlie 已提交
232
		break;
L
Linus Torvalds 已提交
233
	default:
D
Dave Airlie 已提交
234
		drm_free(map, sizeof(*map), DRM_MEM_MAPS);
L
Linus Torvalds 已提交
235 236 237 238
		return -EINVAL;
	}

	list = drm_alloc(sizeof(*list), DRM_MEM_MAPS);
D
Dave Airlie 已提交
239
	if (!list) {
240
		if (map->type == _DRM_REGISTERS)
241
			iounmap(map->handle);
L
Linus Torvalds 已提交
242 243 244 245 246 247
		drm_free(map, sizeof(*map), DRM_MEM_MAPS);
		return -EINVAL;
	}
	memset(list, 0, sizeof(*list));
	list->map = map;

D
Dave Airlie 已提交
248
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
249
	list_add(&list->head, &dev->maplist->head);
250

251
	/* Assign a 32-bit handle */
D
Dave Airlie 已提交
252
	/* We do it here so that dev->struct_mutex protects the increment */
253 254
	user_token = (map->type == _DRM_SHM) ? (unsigned long)map->handle :
		map->offset;
255
	ret = drm_map_handle(dev, &list->hash, user_token, 0);
256
	if (ret) {
257
		if (map->type == _DRM_REGISTERS)
258
			iounmap(map->handle);
259 260 261 262 263 264 265
		drm_free(map, sizeof(*map), DRM_MEM_MAPS);
		drm_free(list, sizeof(*list), DRM_MEM_MAPS);
		mutex_unlock(&dev->struct_mutex);
		return ret;
	}

	list->user_token = list->hash.key;
D
Dave Airlie 已提交
266
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
267

268
	*maplist = list;
269 270
	return 0;
}
271

D
Dave Airlie 已提交
272
int drm_addmap(drm_device_t * dev, unsigned int offset,
273
	       unsigned int size, drm_map_type_t type,
D
Dave Airlie 已提交
274
	       drm_map_flags_t flags, drm_local_map_t ** map_ptr)
275 276 277 278 279 280 281 282 283
{
	drm_map_list_t *list;
	int rc;

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

285 286 287 288 289 290 291 292
EXPORT_SYMBOL(drm_addmap);

int drm_addmap_ioctl(struct inode *inode, struct file *filp,
		     unsigned int cmd, unsigned long arg)
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_map_t map;
293
	drm_map_list_t *maplist;
294 295 296 297 298 299
	drm_map_t __user *argp = (void __user *)arg;
	int err;

	if (!(filp->f_mode & 3))
		return -EACCES;	/* Require read/write */

D
Dave Airlie 已提交
300
	if (copy_from_user(&map, argp, sizeof(map))) {
L
Linus Torvalds 已提交
301
		return -EFAULT;
302 303
	}

304 305 306
	if (!(capable(CAP_SYS_ADMIN) || map.type == _DRM_AGP))
		return -EPERM;

307 308
	err = drm_addmap_core(dev, map.offset, map.size, map.type, map.flags,
			      &maplist);
309

D
Dave Airlie 已提交
310
	if (err)
311
		return err;
312

313
	if (copy_to_user(argp, maplist->map, sizeof(drm_map_t)))
314
		return -EFAULT;
315 316 317

	/* avoid a warning on 64-bit, this casting isn't very nice, but the API is set so too late */
	if (put_user((void *)(unsigned long)maplist->user_token, &argp->handle))
318
		return -EFAULT;
L
Linus Torvalds 已提交
319
	return 0;
D
Dave Airlie 已提交
320
}
L
Linus Torvalds 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335

/**
 * Remove a map private from list and deallocate resources if the mapping
 * isn't in use.
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \param cmd command.
 * \param arg pointer to a drm_map_t structure.
 * \return zero on success or a negative value on error.
 *
 * 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.
 *
336
 * \sa drm_addmap
L
Linus Torvalds 已提交
337
 */
338
int drm_rmmap_locked(drm_device_t *dev, drm_local_map_t *map)
L
Linus Torvalds 已提交
339 340 341
{
	struct list_head *list;
	drm_map_list_t *r_list = NULL;
D
Dave Airlie 已提交
342
	drm_dma_handle_t dmah;
L
Linus Torvalds 已提交
343

D
Dave Airlie 已提交
344
	/* Find the list entry for the map and remove it */
L
Linus Torvalds 已提交
345 346 347
	list_for_each(list, &dev->maplist->head) {
		r_list = list_entry(list, drm_map_list_t, head);

D
Dave Airlie 已提交
348 349
		if (r_list->map == map) {
			list_del(list);
350
			drm_ht_remove_key(&dev->map_hash, r_list->user_token);
D
Dave Airlie 已提交
351 352 353
			drm_free(list, sizeof(*list), DRM_MEM_MAPS);
			break;
		}
L
Linus Torvalds 已提交
354 355
	}

D
Dave Airlie 已提交
356 357
	/* List has wrapped around to the head pointer, or it's empty and we
	 * didn't find anything.
L
Linus Torvalds 已提交
358
	 */
D
Dave Airlie 已提交
359
	if (list == (&dev->maplist->head)) {
L
Linus Torvalds 已提交
360 361 362
		return -EINVAL;
	}

D
Dave Airlie 已提交
363 364
	switch (map->type) {
	case _DRM_REGISTERS:
365
		iounmap(map->handle);
D
Dave Airlie 已提交
366 367 368 369
		/* FALLTHROUGH */
	case _DRM_FRAME_BUFFER:
		if (drm_core_has_MTRR(dev) && map->mtrr >= 0) {
			int retcode;
D
Dave Airlie 已提交
370 371
			retcode = mtrr_del(map->mtrr, map->offset, map->size);
			DRM_DEBUG("mtrr_del=%d\n", retcode);
L
Linus Torvalds 已提交
372
		}
D
Dave Airlie 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385
		break;
	case _DRM_SHM:
		vfree(map->handle);
		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;
L
Linus Torvalds 已提交
386
	}
D
Dave Airlie 已提交
387 388
	drm_free(map, sizeof(*map), DRM_MEM_MAPS);

L
Linus Torvalds 已提交
389 390
	return 0;
}
D
Dave Airlie 已提交
391

392
int drm_rmmap(drm_device_t *dev, drm_local_map_t *map)
D
Dave Airlie 已提交
393 394 395
{
	int ret;

D
Dave Airlie 已提交
396
	mutex_lock(&dev->struct_mutex);
D
Dave Airlie 已提交
397
	ret = drm_rmmap_locked(dev, map);
D
Dave Airlie 已提交
398
	mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
399 400 401

	return ret;
}
402

D
Dave Airlie 已提交
403 404 405 406 407 408 409 410 411
/* 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.
 */
412 413 414 415 416 417
int drm_rmmap_ioctl(struct inode *inode, struct file *filp,
		    unsigned int cmd, unsigned long arg)
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_map_t request;
D
Dave Airlie 已提交
418 419 420
	drm_local_map_t *map = NULL;
	struct list_head *list;
	int ret;
421

D
Dave Airlie 已提交
422
	if (copy_from_user(&request, (drm_map_t __user *) arg, sizeof(request))) {
423 424 425
		return -EFAULT;
	}

D
Dave Airlie 已提交
426
	mutex_lock(&dev->struct_mutex);
D
Dave Airlie 已提交
427 428 429 430
	list_for_each(list, &dev->maplist->head) {
		drm_map_list_t *r_list = list_entry(list, drm_map_list_t, head);

		if (r_list->map &&
D
Dave Airlie 已提交
431
		    r_list->user_token == (unsigned long)request.handle &&
D
Dave Airlie 已提交
432 433 434 435 436 437 438 439 440 441
		    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.
	 */
	if (list == (&dev->maplist->head)) {
D
Dave Airlie 已提交
442
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
443 444 445
		return -EINVAL;
	}

T
Thomas Hellstrom 已提交
446 447
	if (!map) {
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
448
		return -EINVAL;
T
Thomas Hellstrom 已提交
449
	}
D
Dave Airlie 已提交
450 451 452

	/* Register and framebuffer maps are permanent */
	if ((map->type == _DRM_REGISTERS) || (map->type == _DRM_FRAME_BUFFER)) {
D
Dave Airlie 已提交
453
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
454 455 456 457 458
		return 0;
	}

	ret = drm_rmmap_locked(dev, map);

D
Dave Airlie 已提交
459
	mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
460 461

	return ret;
462
}
L
Linus Torvalds 已提交
463 464 465 466

/**
 * Cleanup after an error on one of the addbufs() functions.
 *
D
Dave Airlie 已提交
467
 * \param dev DRM device.
L
Linus Torvalds 已提交
468 469 470 471
 * \param entry buffer entry where the error occurred.
 *
 * Frees any pages and buffers associated with the given entry.
 */
D
Dave Airlie 已提交
472
static void drm_cleanup_buf_error(drm_device_t * dev, drm_buf_entry_t * entry)
L
Linus Torvalds 已提交
473 474 475 476 477 478
{
	int i;

	if (entry->seg_count) {
		for (i = 0; i < entry->seg_count; i++) {
			if (entry->seglist[i]) {
D
Dave Airlie 已提交
479
				drm_pci_free(dev, entry->seglist[i]);
L
Linus Torvalds 已提交
480 481 482
			}
		}
		drm_free(entry->seglist,
D
Dave Airlie 已提交
483 484
			 entry->seg_count *
			 sizeof(*entry->seglist), DRM_MEM_SEGS);
L
Linus Torvalds 已提交
485 486 487 488

		entry->seg_count = 0;
	}

D
Dave Airlie 已提交
489 490
	if (entry->buf_count) {
		for (i = 0; i < entry->buf_count; i++) {
L
Linus Torvalds 已提交
491 492
			if (entry->buflist[i].dev_private) {
				drm_free(entry->buflist[i].dev_private,
D
Dave Airlie 已提交
493 494
					 entry->buflist[i].dev_priv_size,
					 DRM_MEM_BUFS);
L
Linus Torvalds 已提交
495 496 497
			}
		}
		drm_free(entry->buflist,
D
Dave Airlie 已提交
498 499
			 entry->buf_count *
			 sizeof(*entry->buflist), DRM_MEM_BUFS);
L
Linus Torvalds 已提交
500 501 502 503 504 505 506

		entry->buf_count = 0;
	}
}

#if __OS_HAS_AGP
/**
507
 * Add AGP buffers for DMA transfers.
L
Linus Torvalds 已提交
508
 *
509 510
 * \param dev drm_device_t to which the buffers are to be added.
 * \param request pointer to a drm_buf_desc_t describing the request.
L
Linus Torvalds 已提交
511
 * \return zero on success or a negative number on failure.
D
Dave Airlie 已提交
512
 *
L
Linus Torvalds 已提交
513 514 515 516
 * 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.
 */
D
Dave Airlie 已提交
517
int drm_addbufs_agp(drm_device_t * dev, drm_buf_desc_t * request)
L
Linus Torvalds 已提交
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
{
	drm_device_dma_t *dma = dev->dma;
	drm_buf_entry_t *entry;
	drm_buf_t *buf;
	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;
	drm_buf_t **temp_buflist;

D
Dave Airlie 已提交
534 535
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
536

537 538
	count = request->count;
	order = drm_order(request->size);
L
Linus Torvalds 已提交
539 540
	size = 1 << order;

D
Dave Airlie 已提交
541 542
	alignment = (request->flags & _DRM_PAGE_ALIGN)
	    ? PAGE_ALIGN(size) : size;
L
Linus Torvalds 已提交
543 544 545 546
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

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

D
Dave Airlie 已提交
549 550 551
	DRM_DEBUG("count:      %d\n", count);
	DRM_DEBUG("order:      %d\n", order);
	DRM_DEBUG("size:       %d\n", size);
552
	DRM_DEBUG("agp_offset: %lx\n", agp_offset);
D
Dave Airlie 已提交
553 554 555
	DRM_DEBUG("alignment:  %d\n", alignment);
	DRM_DEBUG("page_order: %d\n", page_order);
	DRM_DEBUG("total:      %d\n", total);
L
Linus Torvalds 已提交
556

D
Dave Airlie 已提交
557 558 559 560
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
L
Linus Torvalds 已提交
561

D
Dave Airlie 已提交
562 563 564
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
565 566
		return -EBUSY;
	}
D
Dave Airlie 已提交
567 568
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
569

D
Dave Airlie 已提交
570
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
571
	entry = &dma->bufs[order];
D
Dave Airlie 已提交
572
	if (entry->buf_count) {
D
Dave Airlie 已提交
573
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
574 575
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
L
Linus Torvalds 已提交
576 577 578
	}

	if (count < 0 || count > 4096) {
D
Dave Airlie 已提交
579
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
580
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
581 582 583
		return -EINVAL;
	}

D
Dave Airlie 已提交
584 585 586
	entry->buflist = drm_alloc(count * sizeof(*entry->buflist),
				   DRM_MEM_BUFS);
	if (!entry->buflist) {
D
Dave Airlie 已提交
587
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
588
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
589 590
		return -ENOMEM;
	}
D
Dave Airlie 已提交
591
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));
L
Linus Torvalds 已提交
592 593 594 595 596 597

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

	offset = 0;

D
Dave Airlie 已提交
598 599 600 601 602 603
	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 已提交
604

D
Dave Airlie 已提交
605
		buf->offset = (dma->byte_count + offset);
L
Linus Torvalds 已提交
606 607
		buf->bus_address = agp_offset + offset;
		buf->address = (void *)(agp_offset + offset);
D
Dave Airlie 已提交
608
		buf->next = NULL;
L
Linus Torvalds 已提交
609 610
		buf->waiting = 0;
		buf->pending = 0;
D
Dave Airlie 已提交
611 612
		init_waitqueue_head(&buf->dma_wait);
		buf->filp = NULL;
L
Linus Torvalds 已提交
613 614

		buf->dev_priv_size = dev->driver->dev_priv_size;
D
Dave Airlie 已提交
615 616
		buf->dev_private = drm_alloc(buf->dev_priv_size, DRM_MEM_BUFS);
		if (!buf->dev_private) {
L
Linus Torvalds 已提交
617 618
			/* Set count correctly so we free the proper amount. */
			entry->buf_count = count;
D
Dave Airlie 已提交
619
			drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
620
			mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
621
			atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
622 623
			return -ENOMEM;
		}
D
Dave Airlie 已提交
624
		memset(buf->dev_private, 0, buf->dev_priv_size);
L
Linus Torvalds 已提交
625

D
Dave Airlie 已提交
626
		DRM_DEBUG("buffer %d @ %p\n", entry->buf_count, buf->address);
L
Linus Torvalds 已提交
627 628 629 630 631 632

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

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

D
Dave Airlie 已提交
635 636 637 638 639
	temp_buflist = drm_realloc(dma->buflist,
				   dma->buf_count * sizeof(*dma->buflist),
				   (dma->buf_count + entry->buf_count)
				   * sizeof(*dma->buflist), DRM_MEM_BUFS);
	if (!temp_buflist) {
L
Linus Torvalds 已提交
640
		/* Free the entry because it isn't valid */
D
Dave Airlie 已提交
641
		drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
642
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
643
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
644 645 646 647
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

D
Dave Airlie 已提交
648
	for (i = 0; i < entry->buf_count; i++) {
L
Linus Torvalds 已提交
649 650 651 652
		dma->buflist[i + dma->buf_count] = &entry->buflist[i];
	}

	dma->buf_count += entry->buf_count;
653 654
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
L
Linus Torvalds 已提交
655 656
	dma->byte_count += byte_count;

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

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

662 663
	request->count = entry->buf_count;
	request->size = size;
L
Linus Torvalds 已提交
664 665 666

	dma->flags = _DRM_DMA_USE_AGP;

D
Dave Airlie 已提交
667
	atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
668 669
	return 0;
}
670
EXPORT_SYMBOL(drm_addbufs_agp);
D
Dave Airlie 已提交
671
#endif				/* __OS_HAS_AGP */
L
Linus Torvalds 已提交
672

D
Dave Airlie 已提交
673
int drm_addbufs_pci(drm_device_t * dev, drm_buf_desc_t * request)
L
Linus Torvalds 已提交
674 675 676 677 678 679 680 681
{
	drm_device_dma_t *dma = dev->dma;
	int count;
	int order;
	int size;
	int total;
	int page_order;
	drm_buf_entry_t *entry;
D
Dave Airlie 已提交
682
	drm_dma_handle_t *dmah;
L
Linus Torvalds 已提交
683 684 685 686 687 688 689 690 691
	drm_buf_t *buf;
	int alignment;
	unsigned long offset;
	int i;
	int byte_count;
	int page_count;
	unsigned long *temp_pagelist;
	drm_buf_t **temp_buflist;

D
Dave Airlie 已提交
692 693
	if (!drm_core_check_feature(dev, DRIVER_PCI_DMA))
		return -EINVAL;
694

D
Dave Airlie 已提交
695 696
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
697

698 699 700
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

701 702
	count = request->count;
	order = drm_order(request->size);
L
Linus Torvalds 已提交
703 704
	size = 1 << order;

D
Dave Airlie 已提交
705 706
	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 已提交
707

D
Dave Airlie 已提交
708 709 710 711
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
L
Linus Torvalds 已提交
712

713
	alignment = (request->flags & _DRM_PAGE_ALIGN)
D
Dave Airlie 已提交
714
	    ? PAGE_ALIGN(size) : size;
L
Linus Torvalds 已提交
715 716 717
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

D
Dave Airlie 已提交
718 719 720
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
721 722
		return -EBUSY;
	}
D
Dave Airlie 已提交
723 724
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
725

D
Dave Airlie 已提交
726
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
727
	entry = &dma->bufs[order];
D
Dave Airlie 已提交
728
	if (entry->buf_count) {
D
Dave Airlie 已提交
729
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
730
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
731 732 733 734
		return -ENOMEM;	/* May only call once for each order */
	}

	if (count < 0 || count > 4096) {
D
Dave Airlie 已提交
735
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
736
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
737 738 739
		return -EINVAL;
	}

D
Dave Airlie 已提交
740 741 742
	entry->buflist = drm_alloc(count * sizeof(*entry->buflist),
				   DRM_MEM_BUFS);
	if (!entry->buflist) {
D
Dave Airlie 已提交
743
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
744
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
745 746
		return -ENOMEM;
	}
D
Dave Airlie 已提交
747 748 749 750 751 752 753
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));

	entry->seglist = drm_alloc(count * sizeof(*entry->seglist),
				   DRM_MEM_SEGS);
	if (!entry->seglist) {
		drm_free(entry->buflist,
			 count * sizeof(*entry->buflist), DRM_MEM_BUFS);
D
Dave Airlie 已提交
754
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
755
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
756 757
		return -ENOMEM;
	}
D
Dave Airlie 已提交
758
	memset(entry->seglist, 0, count * sizeof(*entry->seglist));
L
Linus Torvalds 已提交
759 760 761 762

	/* Keep the original pagelist until we know all the allocations
	 * have succeeded
	 */
D
Dave Airlie 已提交
763 764
	temp_pagelist = drm_alloc((dma->page_count + (count << page_order))
				  * sizeof(*dma->pagelist), DRM_MEM_PAGES);
L
Linus Torvalds 已提交
765
	if (!temp_pagelist) {
D
Dave Airlie 已提交
766 767 768 769
		drm_free(entry->buflist,
			 count * sizeof(*entry->buflist), DRM_MEM_BUFS);
		drm_free(entry->seglist,
			 count * sizeof(*entry->seglist), DRM_MEM_SEGS);
D
Dave Airlie 已提交
770
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
771
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
772 773 774
		return -ENOMEM;
	}
	memcpy(temp_pagelist,
D
Dave Airlie 已提交
775 776 777
	       dma->pagelist, dma->page_count * sizeof(*dma->pagelist));
	DRM_DEBUG("pagelist: %d entries\n",
		  dma->page_count + (count << page_order));
L
Linus Torvalds 已提交
778

D
Dave Airlie 已提交
779
	entry->buf_size = size;
L
Linus Torvalds 已提交
780 781 782 783
	entry->page_order = page_order;
	byte_count = 0;
	page_count = 0;

D
Dave Airlie 已提交
784
	while (entry->buf_count < count) {
D
Dave Airlie 已提交
785 786 787 788
		
		dmah = drm_pci_alloc(dev, PAGE_SIZE << page_order, 0x1000, 0xfffffffful);
		
		if (!dmah) {
L
Linus Torvalds 已提交
789 790 791 792
			/* Set count correctly so we free the proper amount. */
			entry->buf_count = count;
			entry->seg_count = count;
			drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
793 794 795
			drm_free(temp_pagelist,
				 (dma->page_count + (count << page_order))
				 * sizeof(*dma->pagelist), DRM_MEM_PAGES);
D
Dave Airlie 已提交
796
			mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
797
			atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
798 799
			return -ENOMEM;
		}
D
Dave Airlie 已提交
800
		entry->seglist[entry->seg_count++] = dmah;
D
Dave Airlie 已提交
801 802 803
		for (i = 0; i < (1 << page_order); i++) {
			DRM_DEBUG("page %d @ 0x%08lx\n",
				  dma->page_count + page_count,
D
Dave Airlie 已提交
804
				  (unsigned long)dmah->vaddr + PAGE_SIZE * i);
L
Linus Torvalds 已提交
805
			temp_pagelist[dma->page_count + page_count++]
D
Dave Airlie 已提交
806
				= (unsigned long)dmah->vaddr + PAGE_SIZE * i;
L
Linus Torvalds 已提交
807
		}
D
Dave Airlie 已提交
808 809 810 811 812 813 814 815 816
		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 已提交
817 818
			buf->address = (void *)(dmah->vaddr + offset);
			buf->bus_address = dmah->busaddr + offset;
D
Dave Airlie 已提交
819
			buf->next = NULL;
L
Linus Torvalds 已提交
820 821
			buf->waiting = 0;
			buf->pending = 0;
D
Dave Airlie 已提交
822 823
			init_waitqueue_head(&buf->dma_wait);
			buf->filp = NULL;
L
Linus Torvalds 已提交
824 825

			buf->dev_priv_size = dev->driver->dev_priv_size;
D
Dave Airlie 已提交
826 827 828
			buf->dev_private = drm_alloc(buf->dev_priv_size,
						     DRM_MEM_BUFS);
			if (!buf->dev_private) {
L
Linus Torvalds 已提交
829 830 831
				/* Set count correctly so we free the proper amount. */
				entry->buf_count = count;
				entry->seg_count = count;
D
Dave Airlie 已提交
832 833 834 835 836 837
				drm_cleanup_buf_error(dev, entry);
				drm_free(temp_pagelist,
					 (dma->page_count +
					  (count << page_order))
					 * sizeof(*dma->pagelist),
					 DRM_MEM_PAGES);
D
Dave Airlie 已提交
838
				mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
839
				atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
840 841
				return -ENOMEM;
			}
D
Dave Airlie 已提交
842
			memset(buf->dev_private, 0, buf->dev_priv_size);
L
Linus Torvalds 已提交
843

D
Dave Airlie 已提交
844 845
			DRM_DEBUG("buffer %d @ %p\n",
				  entry->buf_count, buf->address);
L
Linus Torvalds 已提交
846 847 848 849
		}
		byte_count += PAGE_SIZE << page_order;
	}

D
Dave Airlie 已提交
850 851 852 853
	temp_buflist = drm_realloc(dma->buflist,
				   dma->buf_count * sizeof(*dma->buflist),
				   (dma->buf_count + entry->buf_count)
				   * sizeof(*dma->buflist), DRM_MEM_BUFS);
L
Linus Torvalds 已提交
854 855
	if (!temp_buflist) {
		/* Free the entry because it isn't valid */
D
Dave Airlie 已提交
856 857 858 859
		drm_cleanup_buf_error(dev, entry);
		drm_free(temp_pagelist,
			 (dma->page_count + (count << page_order))
			 * sizeof(*dma->pagelist), DRM_MEM_PAGES);
D
Dave Airlie 已提交
860
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
861
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
862 863 864 865
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

D
Dave Airlie 已提交
866
	for (i = 0; i < entry->buf_count; i++) {
L
Linus Torvalds 已提交
867 868 869 870 871 872 873 874
		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) {
		drm_free(dma->pagelist,
D
Dave Airlie 已提交
875 876
			 dma->page_count * sizeof(*dma->pagelist),
			 DRM_MEM_PAGES);
L
Linus Torvalds 已提交
877 878 879 880 881 882 883 884
	}
	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 已提交
885
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
886

887 888
	request->count = entry->buf_count;
	request->size = size;
L
Linus Torvalds 已提交
889

890 891 892
	if (request->flags & _DRM_PCI_BUFFER_RO)
		dma->flags = _DRM_DMA_USE_PCI_RO;

D
Dave Airlie 已提交
893
	atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
894 895 896
	return 0;

}
897
EXPORT_SYMBOL(drm_addbufs_pci);
L
Linus Torvalds 已提交
898

D
Dave Airlie 已提交
899
static int drm_addbufs_sg(drm_device_t * dev, drm_buf_desc_t * request)
L
Linus Torvalds 已提交
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
{
	drm_device_dma_t *dma = dev->dma;
	drm_buf_entry_t *entry;
	drm_buf_t *buf;
	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;
	drm_buf_t **temp_buflist;

D
Dave Airlie 已提交
916 917 918 919 920
	if (!drm_core_check_feature(dev, DRIVER_SG))
		return -EINVAL;

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

922 923 924
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

925 926
	count = request->count;
	order = drm_order(request->size);
L
Linus Torvalds 已提交
927 928
	size = 1 << order;

D
Dave Airlie 已提交
929 930
	alignment = (request->flags & _DRM_PAGE_ALIGN)
	    ? PAGE_ALIGN(size) : size;
L
Linus Torvalds 已提交
931 932 933 934
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

	byte_count = 0;
935
	agp_offset = request->agp_start;
L
Linus Torvalds 已提交
936

D
Dave Airlie 已提交
937 938 939 940 941 942 943
	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 已提交
944

D
Dave Airlie 已提交
945 946 947 948
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
L
Linus Torvalds 已提交
949

D
Dave Airlie 已提交
950 951 952
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
953 954
		return -EBUSY;
	}
D
Dave Airlie 已提交
955 956
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
957

D
Dave Airlie 已提交
958
	mutex_lock(&dev->struct_mutex);
L
Linus Torvalds 已提交
959
	entry = &dma->bufs[order];
D
Dave Airlie 已提交
960
	if (entry->buf_count) {
D
Dave Airlie 已提交
961
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
962 963
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
L
Linus Torvalds 已提交
964 965 966
	}

	if (count < 0 || count > 4096) {
D
Dave Airlie 已提交
967
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
968
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
969 970 971
		return -EINVAL;
	}

D
Dave Airlie 已提交
972 973 974
	entry->buflist = drm_alloc(count * sizeof(*entry->buflist),
				   DRM_MEM_BUFS);
	if (!entry->buflist) {
D
Dave Airlie 已提交
975
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
976
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
977 978
		return -ENOMEM;
	}
D
Dave Airlie 已提交
979
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));
L
Linus Torvalds 已提交
980 981 982 983 984 985

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

	offset = 0;

D
Dave Airlie 已提交
986 987 988 989 990 991
	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 已提交
992

D
Dave Airlie 已提交
993
		buf->offset = (dma->byte_count + offset);
L
Linus Torvalds 已提交
994
		buf->bus_address = agp_offset + offset;
D
Dave Airlie 已提交
995
		buf->address = (void *)(agp_offset + offset
996
					+ (unsigned long)dev->sg->virtual);
D
Dave Airlie 已提交
997
		buf->next = NULL;
L
Linus Torvalds 已提交
998 999
		buf->waiting = 0;
		buf->pending = 0;
D
Dave Airlie 已提交
1000 1001
		init_waitqueue_head(&buf->dma_wait);
		buf->filp = NULL;
L
Linus Torvalds 已提交
1002 1003

		buf->dev_priv_size = dev->driver->dev_priv_size;
D
Dave Airlie 已提交
1004 1005
		buf->dev_private = drm_alloc(buf->dev_priv_size, DRM_MEM_BUFS);
		if (!buf->dev_private) {
L
Linus Torvalds 已提交
1006 1007
			/* Set count correctly so we free the proper amount. */
			entry->buf_count = count;
D
Dave Airlie 已提交
1008
			drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
1009
			mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1010
			atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
1011 1012 1013
			return -ENOMEM;
		}

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

D
Dave Airlie 已提交
1016
		DRM_DEBUG("buffer %d @ %p\n", entry->buf_count, buf->address);
L
Linus Torvalds 已提交
1017 1018 1019 1020 1021 1022

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

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

D
Dave Airlie 已提交
1025 1026 1027 1028 1029
	temp_buflist = drm_realloc(dma->buflist,
				   dma->buf_count * sizeof(*dma->buflist),
				   (dma->buf_count + entry->buf_count)
				   * sizeof(*dma->buflist), DRM_MEM_BUFS);
	if (!temp_buflist) {
L
Linus Torvalds 已提交
1030
		/* Free the entry because it isn't valid */
D
Dave Airlie 已提交
1031
		drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
1032
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1033
		atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
1034 1035 1036 1037
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

D
Dave Airlie 已提交
1038
	for (i = 0; i < entry->buf_count; i++) {
L
Linus Torvalds 已提交
1039 1040 1041 1042
		dma->buflist[i + dma->buf_count] = &entry->buflist[i];
	}

	dma->buf_count += entry->buf_count;
1043 1044
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
L
Linus Torvalds 已提交
1045 1046
	dma->byte_count += byte_count;

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

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

1052 1053
	request->count = entry->buf_count;
	request->size = size;
L
Linus Torvalds 已提交
1054 1055 1056

	dma->flags = _DRM_DMA_USE_SG;

D
Dave Airlie 已提交
1057
	atomic_dec(&dev->buf_alloc);
L
Linus Torvalds 已提交
1058 1059 1060
	return 0;
}

D
Dave Airlie 已提交
1061
static int drm_addbufs_fb(drm_device_t * dev, drm_buf_desc_t * request)
D
Dave Airlie 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
{
	drm_device_dma_t *dma = dev->dma;
	drm_buf_entry_t *entry;
	drm_buf_t *buf;
	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;
	drm_buf_t **temp_buflist;

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

D
Dave Airlie 已提交
1081 1082 1083
	if (!dma)
		return -EINVAL;

1084 1085 1086
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

1087 1088
	count = request->count;
	order = drm_order(request->size);
D
Dave Airlie 已提交
1089 1090
	size = 1 << order;

1091
	alignment = (request->flags & _DRM_PAGE_ALIGN)
D
Dave Airlie 已提交
1092 1093 1094 1095 1096
	    ? PAGE_ALIGN(size) : size;
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

	byte_count = 0;
1097
	agp_offset = request->agp_start;
D
Dave Airlie 已提交
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119

	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 已提交
1120
	mutex_lock(&dev->struct_mutex);
D
Dave Airlie 已提交
1121 1122
	entry = &dma->bufs[order];
	if (entry->buf_count) {
D
Dave Airlie 已提交
1123
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1124 1125 1126 1127 1128
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
	}

	if (count < 0 || count > 4096) {
D
Dave Airlie 已提交
1129
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1130 1131 1132 1133 1134 1135 1136
		atomic_dec(&dev->buf_alloc);
		return -EINVAL;
	}

	entry->buflist = drm_alloc(count * sizeof(*entry->buflist),
				   DRM_MEM_BUFS);
	if (!entry->buflist) {
D
Dave Airlie 已提交
1137
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
		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);
		buf->filp = NULL;

		buf->dev_priv_size = dev->driver->dev_priv_size;
		buf->dev_private = drm_alloc(buf->dev_priv_size, DRM_MEM_BUFS);
		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 已提交
1170
			mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
			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);

	temp_buflist = drm_realloc(dma->buflist,
				   dma->buf_count * sizeof(*dma->buflist),
				   (dma->buf_count + entry->buf_count)
				   * sizeof(*dma->buflist), DRM_MEM_BUFS);
	if (!temp_buflist) {
		/* Free the entry because it isn't valid */
		drm_cleanup_buf_error(dev, entry);
D
Dave Airlie 已提交
1192
		mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
		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;
1203 1204
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
D
Dave Airlie 已提交
1205 1206 1207 1208 1209
	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 已提交
1210
	mutex_unlock(&dev->struct_mutex);
D
Dave Airlie 已提交
1211

1212 1213
	request->count = entry->buf_count;
	request->size = size;
D
Dave Airlie 已提交
1214 1215 1216 1217 1218 1219

	dma->flags = _DRM_DMA_USE_FB;

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

D
Dave Airlie 已提交
1221

L
Linus Torvalds 已提交
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
/**
 * Add buffers for DMA transfers (ioctl).
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \param cmd command.
 * \param arg pointer to a drm_buf_desc_t request.
 * \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.
 */
D
Dave Airlie 已提交
1236 1237
int drm_addbufs(struct inode *inode, struct file *filp,
		unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
1238 1239 1240 1241
{
	drm_buf_desc_t request;
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
1242
	int ret;
D
Dave Airlie 已提交
1243

L
Linus Torvalds 已提交
1244 1245 1246
	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA))
		return -EINVAL;

D
Dave Airlie 已提交
1247 1248
	if (copy_from_user(&request, (drm_buf_desc_t __user *) arg,
			   sizeof(request)))
L
Linus Torvalds 已提交
1249 1250 1251
		return -EFAULT;

#if __OS_HAS_AGP
D
Dave Airlie 已提交
1252 1253
	if (request.flags & _DRM_AGP_BUFFER)
		ret = drm_addbufs_agp(dev, &request);
L
Linus Torvalds 已提交
1254 1255
	else
#endif
D
Dave Airlie 已提交
1256 1257 1258 1259
	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 已提交
1260
	else
D
Dave Airlie 已提交
1261
		ret = drm_addbufs_pci(dev, &request);
1262

D
Dave Airlie 已提交
1263 1264
	if (ret == 0) {
		if (copy_to_user((void __user *)arg, &request, sizeof(request))) {
1265 1266 1267 1268
			ret = -EFAULT;
		}
	}
	return ret;
L
Linus Torvalds 已提交
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287
}

/**
 * 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.
 * \param filp file pointer.
 * \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.
 */
D
Dave Airlie 已提交
1288 1289
int drm_infobufs(struct inode *inode, struct file *filp,
		 unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_device_dma_t *dma = dev->dma;
	drm_buf_info_t request;
	drm_buf_info_t __user *argp = (void __user *)arg;
	int i;
	int count;

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

D
Dave Airlie 已提交
1302 1303
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
1304

D
Dave Airlie 已提交
1305 1306 1307
	spin_lock(&dev->count_lock);
	if (atomic_read(&dev->buf_alloc)) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1308 1309 1310
		return -EBUSY;
	}
	++dev->buf_use;		/* Can't allocate more after this call */
D
Dave Airlie 已提交
1311
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1312

D
Dave Airlie 已提交
1313
	if (copy_from_user(&request, argp, sizeof(request)))
L
Linus Torvalds 已提交
1314 1315
		return -EFAULT;

D
Dave Airlie 已提交
1316 1317 1318
	for (i = 0, count = 0; i < DRM_MAX_ORDER + 1; i++) {
		if (dma->bufs[i].buf_count)
			++count;
L
Linus Torvalds 已提交
1319 1320
	}

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

D
Dave Airlie 已提交
1323 1324 1325 1326 1327
	if (request.count >= count) {
		for (i = 0, count = 0; i < DRM_MAX_ORDER + 1; i++) {
			if (dma->bufs[i].buf_count) {
				drm_buf_desc_t __user *to =
				    &request.list[count];
L
Linus Torvalds 已提交
1328 1329
				drm_buf_entry_t *from = &dma->bufs[i];
				drm_freelist_t *list = &dma->bufs[i].freelist;
D
Dave Airlie 已提交
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
				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 已提交
1342 1343
					return -EFAULT;

D
Dave Airlie 已提交
1344 1345 1346 1347 1348 1349
				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 已提交
1350 1351 1352 1353 1354 1355
				++count;
			}
		}
	}
	request.count = count;

D
Dave Airlie 已提交
1356
	if (copy_to_user(argp, &request, sizeof(request)))
L
Linus Torvalds 已提交
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375
		return -EFAULT;

	return 0;
}

/**
 * Specifies a low and high water mark for buffer allocation
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \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.
 */
D
Dave Airlie 已提交
1376 1377
int drm_markbufs(struct inode *inode, struct file *filp,
		 unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_device_dma_t *dma = dev->dma;
	drm_buf_desc_t request;
	int order;
	drm_buf_entry_t *entry;

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

D
Dave Airlie 已提交
1389 1390
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
1391

D
Dave Airlie 已提交
1392 1393
	if (copy_from_user(&request,
			   (drm_buf_desc_t __user *) arg, sizeof(request)))
L
Linus Torvalds 已提交
1394 1395
		return -EFAULT;

D
Dave Airlie 已提交
1396 1397 1398 1399 1400
	DRM_DEBUG("%d, %d, %d\n",
		  request.size, request.low_mark, request.high_mark);
	order = drm_order(request.size);
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
L
Linus Torvalds 已提交
1401 1402
	entry = &dma->bufs[order];

D
Dave Airlie 已提交
1403
	if (request.low_mark < 0 || request.low_mark > entry->buf_count)
L
Linus Torvalds 已提交
1404
		return -EINVAL;
D
Dave Airlie 已提交
1405
	if (request.high_mark < 0 || request.high_mark > entry->buf_count)
L
Linus Torvalds 已提交
1406 1407
		return -EINVAL;

D
Dave Airlie 已提交
1408
	entry->freelist.low_mark = request.low_mark;
L
Linus Torvalds 已提交
1409 1410 1411 1412 1413 1414
	entry->freelist.high_mark = request.high_mark;

	return 0;
}

/**
D
Dave Airlie 已提交
1415
 * Unreserve the buffers in list, previously reserved using drmDMA.
L
Linus Torvalds 已提交
1416 1417 1418 1419 1420 1421
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \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 已提交
1422
 *
L
Linus Torvalds 已提交
1423 1424 1425
 * Calls free_buffer() for each used buffer.
 * This function is primarily used for debugging.
 */
D
Dave Airlie 已提交
1426 1427
int drm_freebufs(struct inode *inode, struct file *filp,
		 unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_device_dma_t *dma = dev->dma;
	drm_buf_free_t request;
	int i;
	int idx;
	drm_buf_t *buf;

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

D
Dave Airlie 已提交
1440 1441
	if (!dma)
		return -EINVAL;
L
Linus Torvalds 已提交
1442

D
Dave Airlie 已提交
1443 1444
	if (copy_from_user(&request,
			   (drm_buf_free_t __user *) arg, sizeof(request)))
L
Linus Torvalds 已提交
1445 1446
		return -EFAULT;

D
Dave Airlie 已提交
1447 1448 1449
	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 已提交
1450
			return -EFAULT;
D
Dave Airlie 已提交
1451 1452 1453
		if (idx < 0 || idx >= dma->buf_count) {
			DRM_ERROR("Index %d (of %d max)\n",
				  idx, dma->buf_count - 1);
L
Linus Torvalds 已提交
1454 1455 1456
			return -EINVAL;
		}
		buf = dma->buflist[idx];
D
Dave Airlie 已提交
1457 1458 1459
		if (buf->filp != filp) {
			DRM_ERROR("Process %d freeing buffer not owned\n",
				  current->pid);
L
Linus Torvalds 已提交
1460 1461
			return -EINVAL;
		}
D
Dave Airlie 已提交
1462
		drm_free_buffer(dev, buf);
L
Linus Torvalds 已提交
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
	}

	return 0;
}

/**
 * Maps all of the DMA buffers into client-virtual space (ioctl).
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \param cmd command.
 * \param arg pointer to a drm_buf_map structure.
 * \return zero on success or a negative number on failure.
 *
1477 1478 1479 1480
 * 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 已提交
1481
 */
D
Dave Airlie 已提交
1482 1483
int drm_mapbufs(struct inode *inode, struct file *filp,
		unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_device_dma_t *dma = dev->dma;
	drm_buf_map_t __user *argp = (void __user *)arg;
	int retcode = 0;
	const int zero = 0;
	unsigned long virtual;
	unsigned long address;
	drm_buf_map_t request;
	int i;

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

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

D
Dave Airlie 已提交
1502 1503 1504
	spin_lock(&dev->count_lock);
	if (atomic_read(&dev->buf_alloc)) {
		spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1505 1506 1507
		return -EBUSY;
	}
	dev->buf_use++;		/* Can't allocate more after this call */
D
Dave Airlie 已提交
1508
	spin_unlock(&dev->count_lock);
L
Linus Torvalds 已提交
1509

D
Dave Airlie 已提交
1510
	if (copy_from_user(&request, argp, sizeof(request)))
L
Linus Torvalds 已提交
1511 1512
		return -EFAULT;

D
Dave Airlie 已提交
1513
	if (request.count >= dma->buf_count) {
D
Dave Airlie 已提交
1514
		if ((drm_core_has_AGP(dev) && (dma->flags & _DRM_DMA_USE_AGP))
D
Dave Airlie 已提交
1515
		    || (drm_core_check_feature(dev, DRIVER_SG)
D
Dave Airlie 已提交
1516 1517 1518
			&& (dma->flags & _DRM_DMA_USE_SG))
		    || (drm_core_check_feature(dev, DRIVER_FB_DMA)
			&& (dma->flags & _DRM_DMA_USE_FB))) {
L
Linus Torvalds 已提交
1519
			drm_map_t *map = dev->agp_buffer_map;
1520
			unsigned long token = dev->agp_buffer_token;
L
Linus Torvalds 已提交
1521

D
Dave Airlie 已提交
1522
			if (!map) {
L
Linus Torvalds 已提交
1523 1524 1525 1526
				retcode = -EINVAL;
				goto done;
			}

D
Dave Airlie 已提交
1527 1528 1529 1530 1531
			down_write(&current->mm->mmap_sem);
			virtual = do_mmap(filp, 0, map->size,
					  PROT_READ | PROT_WRITE,
					  MAP_SHARED, token);
			up_write(&current->mm->mmap_sem);
L
Linus Torvalds 已提交
1532
		} else {
D
Dave Airlie 已提交
1533 1534 1535 1536 1537
			down_write(&current->mm->mmap_sem);
			virtual = do_mmap(filp, 0, dma->byte_count,
					  PROT_READ | PROT_WRITE,
					  MAP_SHARED, 0);
			up_write(&current->mm->mmap_sem);
L
Linus Torvalds 已提交
1538
		}
D
Dave Airlie 已提交
1539
		if (virtual > -1024UL) {
L
Linus Torvalds 已提交
1540 1541 1542 1543 1544 1545
			/* Real error */
			retcode = (signed long)virtual;
			goto done;
		}
		request.virtual = (void __user *)virtual;

D
Dave Airlie 已提交
1546 1547 1548 1549
		for (i = 0; i < dma->buf_count; i++) {
			if (copy_to_user(&request.list[i].idx,
					 &dma->buflist[i]->idx,
					 sizeof(request.list[0].idx))) {
L
Linus Torvalds 已提交
1550 1551 1552
				retcode = -EFAULT;
				goto done;
			}
D
Dave Airlie 已提交
1553 1554 1555
			if (copy_to_user(&request.list[i].total,
					 &dma->buflist[i]->total,
					 sizeof(request.list[0].total))) {
L
Linus Torvalds 已提交
1556 1557 1558
				retcode = -EFAULT;
				goto done;
			}
D
Dave Airlie 已提交
1559 1560
			if (copy_to_user(&request.list[i].used,
					 &zero, sizeof(zero))) {
L
Linus Torvalds 已提交
1561 1562 1563
				retcode = -EFAULT;
				goto done;
			}
D
Dave Airlie 已提交
1564 1565 1566
			address = virtual + dma->buflist[i]->offset;	/* *** */
			if (copy_to_user(&request.list[i].address,
					 &address, sizeof(address))) {
L
Linus Torvalds 已提交
1567 1568 1569 1570 1571
				retcode = -EFAULT;
				goto done;
			}
		}
	}
D
Dave Airlie 已提交
1572
      done:
L
Linus Torvalds 已提交
1573
	request.count = dma->buf_count;
D
Dave Airlie 已提交
1574
	DRM_DEBUG("%d buffers, retcode = %d\n", request.count, retcode);
L
Linus Torvalds 已提交
1575

D
Dave Airlie 已提交
1576
	if (copy_to_user(argp, &request, sizeof(request)))
L
Linus Torvalds 已提交
1577 1578 1579 1580 1581
		return -EFAULT;

	return retcode;
}

D
Dave Airlie 已提交
1582 1583 1584
/**
 * Compute size order.  Returns the exponent of the smaller power of two which
 * is greater or equal to given number.
D
Dave Airlie 已提交
1585
 *
D
Dave Airlie 已提交
1586 1587 1588 1589 1590
 * \param size size.
 * \return order.
 *
 * \todo Can be made faster.
 */
D
Dave Airlie 已提交
1591
int drm_order(unsigned long size)
D
Dave Airlie 已提交
1592 1593 1594 1595
{
	int order;
	unsigned long tmp;

D
Dave Airlie 已提交
1596
	for (order = 0, tmp = size >> 1; tmp; tmp >>= 1, order++) ;
D
Dave Airlie 已提交
1597 1598 1599 1600 1601 1602 1603

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

	return order;
}
EXPORT_SYMBOL(drm_order);
1604 1605