drm_bufs.c 41.5 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1
/**
2
 * \file drm_bufs.c
Linus Torvalds's avatar
Linus Torvalds committed
3
 * Generic buffer template
4
 *
Linus Torvalds's avatar
Linus Torvalds committed
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)
Linus Torvalds's avatar
Linus Torvalds committed
40
{
Dave Airlie's avatar
Dave Airlie committed
41 42 43
	return pci_resource_start(dev->pdev, resource);
}
EXPORT_SYMBOL(drm_get_resource_start);
Linus Torvalds's avatar
Linus Torvalds committed
44

45
unsigned long drm_get_resource_len(drm_device_t *dev, unsigned int resource)
Dave Airlie's avatar
Dave Airlie committed
46 47 48
{
	return pci_resource_len(dev->pdev, resource);
}
49

Dave Airlie's avatar
Dave Airlie committed
50
EXPORT_SYMBOL(drm_get_resource_len);
Linus Torvalds's avatar
Linus Torvalds committed
51

52 53
static drm_map_list_t *drm_find_matching_map(drm_device_t *dev,
					     drm_local_map_t *map)
Dave Airlie's avatar
Dave Airlie committed
54 55
{
	struct list_head *list;
Linus Torvalds's avatar
Linus Torvalds committed
56

Dave Airlie's avatar
Dave Airlie committed
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;
Dave Airlie's avatar
Dave Airlie committed
62 63 64 65
		}
	}

	return NULL;
Linus Torvalds's avatar
Linus Torvalds committed
66 67
}

68
/*
69
 * Used to allocate 32-bit handles for mappings.
70
 */
71 72 73 74
#define START_RANGE 0x10000000
#define END_RANGE 0x40000000

#ifdef _LP64
75
static __inline__ unsigned int HandleID(unsigned long lhandle,
76
					drm_device_t *dev)
77 78 79 80 81 82 83 84 85
{
	static unsigned int map32_handle = START_RANGE;
	unsigned int hash;

	if (lhandle & 0xffffffff00000000) {
		hash = map32_handle;
		map32_handle += PAGE_SIZE;
		if (map32_handle > END_RANGE)
			map32_handle = START_RANGE;
86
	} else
87 88 89 90
		hash = lhandle;

	while (1) {
		drm_map_list_t *_entry;
91
		list_for_each_entry(_entry, &dev->maplist->head, head) {
92 93 94 95 96 97 98 99 100 101 102 103
			if (_entry->user_token == hash)
				break;
		}
		if (&_entry->head == &dev->maplist->head)
			return hash;

		hash += PAGE_SIZE;
		map32_handle += PAGE_SIZE;
	}
}
#else
# define HandleID(x,dev) (unsigned int)(x)
104 105
#endif

Linus Torvalds's avatar
Linus Torvalds committed
106 107 108 109 110 111 112 113 114 115 116 117 118
/**
 * 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.
 */
119 120 121
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)
Linus Torvalds's avatar
Linus Torvalds committed
122 123 124
{
	drm_map_t *map;
	drm_map_list_t *list;
125
	drm_dma_handle_t *dmah;
Linus Torvalds's avatar
Linus Torvalds committed
126

127 128
	map = drm_alloc(sizeof(*map), DRM_MEM_MAPS);
	if (!map)
Linus Torvalds's avatar
Linus Torvalds committed
129 130
		return -ENOMEM;

131 132 133 134
	map->offset = offset;
	map->size = size;
	map->flags = flags;
	map->type = type;
Linus Torvalds's avatar
Linus Torvalds committed
135 136 137 138 139

	/* 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.
	 */
140 141
	if ((map->flags & _DRM_REMOVABLE) && map->type != _DRM_SHM) {
		drm_free(map, sizeof(*map), DRM_MEM_MAPS);
Linus Torvalds's avatar
Linus Torvalds committed
142 143
		return -EINVAL;
	}
144 145 146 147
	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);
Linus Torvalds's avatar
Linus Torvalds committed
148 149
		return -EINVAL;
	}
150
	map->mtrr = -1;
Linus Torvalds's avatar
Linus Torvalds committed
151 152
	map->handle = NULL;

153
	switch (map->type) {
Linus Torvalds's avatar
Linus Torvalds committed
154 155
	case _DRM_REGISTERS:
	case _DRM_FRAME_BUFFER:
Dave Airlie's avatar
Dave Airlie committed
156
#if !defined(__sparc__) && !defined(__alpha__) && !defined(__ia64__) && !defined(__powerpc64__) && !defined(__x86_64__)
157
		if (map->offset + (map->size-1) < map->offset ||
158 159
		    map->offset < virt_to_phys(high_memory)) {
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
Linus Torvalds's avatar
Linus Torvalds committed
160 161 162 163 164 165
			return -EINVAL;
		}
#endif
#ifdef __alpha__
		map->offset += dev->hose->mem_space->start;
#endif
Dave Airlie's avatar
Dave Airlie committed
166 167 168 169
		/* 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.
		 */
170 171 172
		list = drm_find_matching_map(dev, map);
		if (list != NULL) {
			if (list->map->size != map->size) {
Dave Airlie's avatar
Dave Airlie committed
173
				DRM_DEBUG("Matching maps of type %d with "
174 175 176
					  "mismatched sizes, (%ld vs %ld)\n",
					  map->type, map->size,
					  list->map->size);
177
				list->map->size = map->size;
Dave Airlie's avatar
Dave Airlie committed
178 179 180
			}

			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
181
			*maplist = list;
Dave Airlie's avatar
Dave Airlie committed
182 183 184
			return 0;
		}

Linus Torvalds's avatar
Linus Torvalds committed
185
		if (drm_core_has_MTRR(dev)) {
186 187 188 189
			if (map->type == _DRM_FRAME_BUFFER ||
			    (map->flags & _DRM_WRITE_COMBINING)) {
				map->mtrr = mtrr_add(map->offset, map->size,
						     MTRR_TYPE_WRCOMB, 1);
Linus Torvalds's avatar
Linus Torvalds committed
190 191 192
			}
		}
		if (map->type == _DRM_REGISTERS)
193
			map->handle = drm_ioremap(map->offset, map->size, dev);
Linus Torvalds's avatar
Linus Torvalds committed
194 195 196 197
		break;

	case _DRM_SHM:
		map->handle = vmalloc_32(map->size);
198 199 200 201
		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);
Linus Torvalds's avatar
Linus Torvalds committed
202 203 204
			return -ENOMEM;
		}
		map->offset = (unsigned long)map->handle;
205
		if (map->flags & _DRM_CONTAINS_LOCK) {
Linus Torvalds's avatar
Linus Torvalds committed
206 207
			/* Prevent a 2nd X Server from creating a 2nd lock */
			if (dev->lock.hw_lock != NULL) {
208 209
				vfree(map->handle);
				drm_free(map, sizeof(*map), DRM_MEM_MAPS);
Linus Torvalds's avatar
Linus Torvalds committed
210 211
				return -EBUSY;
			}
212
			dev->sigdata.lock = dev->lock.hw_lock = map->handle;	/* Pointer to lock */
Linus Torvalds's avatar
Linus Torvalds committed
213 214 215 216 217 218 219 220
		}
		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;
221
			map->mtrr = dev->agp->agp_mtrr;	/* for getmap */
Linus Torvalds's avatar
Linus Torvalds committed
222 223 224 225 226 227 228
		}
		break;
	case _DRM_SCATTER_GATHER:
		if (!dev->sg) {
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
			return -EINVAL;
		}
229
		map->offset += (unsigned long)dev->sg->virtual;
Linus Torvalds's avatar
Linus Torvalds committed
230
		break;
231
	case _DRM_CONSISTENT:
232
		/* dma_addr_t is 64bit on i386 with CONFIG_HIGHMEM64G,
233
		 * As we're limiting the address to 2^32-1 (or less),
234 235
		 * casting it down to 32 bits is no problem, but we
		 * need to point to a 64bit variable first. */
236 237
		dmah = drm_pci_alloc(dev, map->size, map->size, 0xffffffffUL);
		if (!dmah) {
238 239 240
			drm_free(map, sizeof(*map), DRM_MEM_MAPS);
			return -ENOMEM;
		}
241 242 243
		map->handle = dmah->vaddr;
		map->offset = (unsigned long)dmah->busaddr;
		kfree(dmah);
244
		break;
Linus Torvalds's avatar
Linus Torvalds committed
245
	default:
246
		drm_free(map, sizeof(*map), DRM_MEM_MAPS);
Linus Torvalds's avatar
Linus Torvalds committed
247 248 249 250
		return -EINVAL;
	}

	list = drm_alloc(sizeof(*list), DRM_MEM_MAPS);
251
	if (!list) {
Linus Torvalds's avatar
Linus Torvalds committed
252 253 254 255 256 257
		drm_free(map, sizeof(*map), DRM_MEM_MAPS);
		return -EINVAL;
	}
	memset(list, 0, sizeof(*list));
	list->map = map;

Dave Airlie's avatar
Dave Airlie committed
258
	mutex_lock(&dev->struct_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
259
	list_add(&list->head, &dev->maplist->head);
260
	/* Assign a 32-bit handle */
Dave Airlie's avatar
Dave Airlie committed
261
	/* We do it here so that dev->struct_mutex protects the increment */
262
	list->user_token = HandleID(map->type == _DRM_SHM
263 264
				    ? (unsigned long)map->handle
				    : map->offset, dev);
Dave Airlie's avatar
Dave Airlie committed
265
	mutex_unlock(&dev->struct_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
266

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

271
int drm_addmap(drm_device_t * dev, unsigned int offset,
272
	       unsigned int size, drm_map_type_t type,
273
	       drm_map_flags_t flags, drm_local_map_t ** map_ptr)
274 275 276 277 278 279 280 281 282
{
	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;
}
283

284 285 286 287 288 289 290 291
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;
292
	drm_map_list_t *maplist;
293 294 295 296 297 298
	drm_map_t __user *argp = (void __user *)arg;
	int err;

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

299
	if (copy_from_user(&map, argp, sizeof(map))) {
Linus Torvalds's avatar
Linus Torvalds committed
300
		return -EFAULT;
301 302
	}

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

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

309
	if (err)
310
		return err;
311

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

	/* 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))
317
		return -EFAULT;
Linus Torvalds's avatar
Linus Torvalds committed
318
	return 0;
Dave Airlie's avatar
Dave Airlie committed
319
}
Linus Torvalds's avatar
Linus Torvalds committed
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334

/**
 * 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.
 *
335
 * \sa drm_addmap
Linus Torvalds's avatar
Linus Torvalds committed
336
 */
337
int drm_rmmap_locked(drm_device_t *dev, drm_local_map_t *map)
Linus Torvalds's avatar
Linus Torvalds committed
338 339 340
{
	struct list_head *list;
	drm_map_list_t *r_list = NULL;
Dave Airlie's avatar
Dave Airlie committed
341
	drm_dma_handle_t dmah;
Linus Torvalds's avatar
Linus Torvalds committed
342

Dave Airlie's avatar
Dave Airlie committed
343
	/* Find the list entry for the map and remove it */
Linus Torvalds's avatar
Linus Torvalds committed
344 345 346
	list_for_each(list, &dev->maplist->head) {
		r_list = list_entry(list, drm_map_list_t, head);

Dave Airlie's avatar
Dave Airlie committed
347 348 349 350 351
		if (r_list->map == map) {
			list_del(list);
			drm_free(list, sizeof(*list), DRM_MEM_MAPS);
			break;
		}
Linus Torvalds's avatar
Linus Torvalds committed
352 353
	}

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

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

Linus Torvalds's avatar
Linus Torvalds committed
387 388
	return 0;
}
Dave Airlie's avatar
Dave Airlie committed
389 390
EXPORT_SYMBOL(drm_rmmap_locked);

391
int drm_rmmap(drm_device_t *dev, drm_local_map_t *map)
Dave Airlie's avatar
Dave Airlie committed
392 393 394
{
	int ret;

Dave Airlie's avatar
Dave Airlie committed
395
	mutex_lock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
396
	ret = drm_rmmap_locked(dev, map);
Dave Airlie's avatar
Dave Airlie committed
397
	mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
398 399 400

	return ret;
}
401 402
EXPORT_SYMBOL(drm_rmmap);

Dave Airlie's avatar
Dave Airlie committed
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;
Dave Airlie's avatar
Dave Airlie committed
418 419 420
	drm_local_map_t *map = NULL;
	struct list_head *list;
	int ret;
421

422
	if (copy_from_user(&request, (drm_map_t __user *) arg, sizeof(request))) {
423 424 425
		return -EFAULT;
	}

Dave Airlie's avatar
Dave Airlie committed
426
	mutex_lock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
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 &&
431
		    r_list->user_token == (unsigned long)request.handle &&
Dave Airlie's avatar
Dave Airlie committed
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)) {
Dave Airlie's avatar
Dave Airlie committed
442
		mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
443 444 445 446 447 448 449 450
		return -EINVAL;
	}

	if (!map)
		return -EINVAL;

	/* Register and framebuffer maps are permanent */
	if ((map->type == _DRM_REGISTERS) || (map->type == _DRM_FRAME_BUFFER)) {
Dave Airlie's avatar
Dave Airlie committed
451
		mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
452 453 454 455 456
		return 0;
	}

	ret = drm_rmmap_locked(dev, map);

Dave Airlie's avatar
Dave Airlie committed
457
	mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
458 459

	return ret;
460
}
Linus Torvalds's avatar
Linus Torvalds committed
461 462 463 464

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

	if (entry->seg_count) {
		for (i = 0; i < entry->seg_count; i++) {
			if (entry->seglist[i]) {
Dave Airlie's avatar
Dave Airlie committed
477
				drm_pci_free(dev, entry->seglist[i]);
Linus Torvalds's avatar
Linus Torvalds committed
478 479 480
			}
		}
		drm_free(entry->seglist,
481 482
			 entry->seg_count *
			 sizeof(*entry->seglist), DRM_MEM_SEGS);
Linus Torvalds's avatar
Linus Torvalds committed
483 484 485 486

		entry->seg_count = 0;
	}

487 488
	if (entry->buf_count) {
		for (i = 0; i < entry->buf_count; i++) {
Linus Torvalds's avatar
Linus Torvalds committed
489 490
			if (entry->buflist[i].dev_private) {
				drm_free(entry->buflist[i].dev_private,
491 492
					 entry->buflist[i].dev_priv_size,
					 DRM_MEM_BUFS);
Linus Torvalds's avatar
Linus Torvalds committed
493 494 495
			}
		}
		drm_free(entry->buflist,
496 497
			 entry->buf_count *
			 sizeof(*entry->buflist), DRM_MEM_BUFS);
Linus Torvalds's avatar
Linus Torvalds committed
498 499 500 501 502 503 504

		entry->buf_count = 0;
	}
}

#if __OS_HAS_AGP
/**
505
 * Add AGP buffers for DMA transfers.
Linus Torvalds's avatar
Linus Torvalds committed
506
 *
507 508
 * \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.
Linus Torvalds's avatar
Linus Torvalds committed
509
 * \return zero on success or a negative number on failure.
510
 *
Linus Torvalds's avatar
Linus Torvalds committed
511 512 513 514
 * 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.
 */
515
int drm_addbufs_agp(drm_device_t * dev, drm_buf_desc_t * request)
Linus Torvalds's avatar
Linus Torvalds committed
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
{
	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;

532 533
	if (!dma)
		return -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
534

535 536
	count = request->count;
	order = drm_order(request->size);
Linus Torvalds's avatar
Linus Torvalds committed
537 538
	size = 1 << order;

539 540
	alignment = (request->flags & _DRM_PAGE_ALIGN)
	    ? PAGE_ALIGN(size) : size;
Linus Torvalds's avatar
Linus Torvalds committed
541 542 543 544
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

	byte_count = 0;
545
	agp_offset = dev->agp->base + request->agp_start;
Linus Torvalds's avatar
Linus Torvalds committed
546

547 548 549
	DRM_DEBUG("count:      %d\n", count);
	DRM_DEBUG("order:      %d\n", order);
	DRM_DEBUG("size:       %d\n", size);
550
	DRM_DEBUG("agp_offset: %lx\n", agp_offset);
551 552 553
	DRM_DEBUG("alignment:  %d\n", alignment);
	DRM_DEBUG("page_order: %d\n", page_order);
	DRM_DEBUG("total:      %d\n", total);
Linus Torvalds's avatar
Linus Torvalds committed
554

555 556 557 558
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
Linus Torvalds's avatar
Linus Torvalds committed
559

560 561 562
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
563 564
		return -EBUSY;
	}
565 566
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
567

Dave Airlie's avatar
Dave Airlie committed
568
	mutex_lock(&dev->struct_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
569
	entry = &dma->bufs[order];
570
	if (entry->buf_count) {
Dave Airlie's avatar
Dave Airlie committed
571
		mutex_unlock(&dev->struct_mutex);
572 573
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
Linus Torvalds's avatar
Linus Torvalds committed
574 575 576
	}

	if (count < 0 || count > 4096) {
Dave Airlie's avatar
Dave Airlie committed
577
		mutex_unlock(&dev->struct_mutex);
578
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
579 580 581
		return -EINVAL;
	}

582 583 584
	entry->buflist = drm_alloc(count * sizeof(*entry->buflist),
				   DRM_MEM_BUFS);
	if (!entry->buflist) {
Dave Airlie's avatar
Dave Airlie committed
585
		mutex_unlock(&dev->struct_mutex);
586
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
587 588
		return -ENOMEM;
	}
589
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));
Linus Torvalds's avatar
Linus Torvalds committed
590 591 592 593 594 595

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

	offset = 0;

596 597 598 599 600 601
	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;
Linus Torvalds's avatar
Linus Torvalds committed
602

603
		buf->offset = (dma->byte_count + offset);
Linus Torvalds's avatar
Linus Torvalds committed
604 605
		buf->bus_address = agp_offset + offset;
		buf->address = (void *)(agp_offset + offset);
606
		buf->next = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
607 608
		buf->waiting = 0;
		buf->pending = 0;
609 610
		init_waitqueue_head(&buf->dma_wait);
		buf->filp = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
611 612

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

624
		DRM_DEBUG("buffer %d @ %p\n", entry->buf_count, buf->address);
Linus Torvalds's avatar
Linus Torvalds committed
625 626 627 628 629 630

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

631
	DRM_DEBUG("byte_count: %d\n", byte_count);
Linus Torvalds's avatar
Linus Torvalds committed
632

633 634 635 636 637
	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) {
Linus Torvalds's avatar
Linus Torvalds committed
638
		/* Free the entry because it isn't valid */
639
		drm_cleanup_buf_error(dev, entry);
Dave Airlie's avatar
Dave Airlie committed
640
		mutex_unlock(&dev->struct_mutex);
641
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
642 643 644 645
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

646
	for (i = 0; i < entry->buf_count; i++) {
Linus Torvalds's avatar
Linus Torvalds committed
647 648 649 650
		dma->buflist[i + dma->buf_count] = &entry->buflist[i];
	}

	dma->buf_count += entry->buf_count;
651 652
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
Linus Torvalds's avatar
Linus Torvalds committed
653 654
	dma->byte_count += byte_count;

655 656
	DRM_DEBUG("dma->buf_count : %d\n", dma->buf_count);
	DRM_DEBUG("entry->buf_count : %d\n", entry->buf_count);
Linus Torvalds's avatar
Linus Torvalds committed
657

Dave Airlie's avatar
Dave Airlie committed
658
	mutex_unlock(&dev->struct_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
659

660 661
	request->count = entry->buf_count;
	request->size = size;
Linus Torvalds's avatar
Linus Torvalds committed
662 663 664

	dma->flags = _DRM_DMA_USE_AGP;

665
	atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
666 667
	return 0;
}
668
EXPORT_SYMBOL(drm_addbufs_agp);
669
#endif				/* __OS_HAS_AGP */
Linus Torvalds's avatar
Linus Torvalds committed
670

671
int drm_addbufs_pci(drm_device_t * dev, drm_buf_desc_t * request)
Linus Torvalds's avatar
Linus Torvalds committed
672 673 674 675 676 677 678 679
{
	drm_device_dma_t *dma = dev->dma;
	int count;
	int order;
	int size;
	int total;
	int page_order;
	drm_buf_entry_t *entry;
Dave Airlie's avatar
Dave Airlie committed
680
	drm_dma_handle_t *dmah;
Linus Torvalds's avatar
Linus Torvalds committed
681 682 683 684 685 686 687 688 689
	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;

690 691
	if (!drm_core_check_feature(dev, DRIVER_PCI_DMA))
		return -EINVAL;
692

693 694
	if (!dma)
		return -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
695

696 697 698
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

699 700
	count = request->count;
	order = drm_order(request->size);
Linus Torvalds's avatar
Linus Torvalds committed
701 702
	size = 1 << order;

703 704
	DRM_DEBUG("count=%d, size=%d (%d), order=%d, queue_count=%d\n",
		  request->count, request->size, size, order, dev->queue_count);
Linus Torvalds's avatar
Linus Torvalds committed
705

706 707 708 709
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
Linus Torvalds's avatar
Linus Torvalds committed
710

711
	alignment = (request->flags & _DRM_PAGE_ALIGN)
712
	    ? PAGE_ALIGN(size) : size;
Linus Torvalds's avatar
Linus Torvalds committed
713 714 715
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

716 717 718
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
719 720
		return -EBUSY;
	}
721 722
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
723

Dave Airlie's avatar
Dave Airlie committed
724
	mutex_lock(&dev->struct_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
725
	entry = &dma->bufs[order];
726
	if (entry->buf_count) {
Dave Airlie's avatar
Dave Airlie committed
727
		mutex_unlock(&dev->struct_mutex);
728
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
729 730 731 732
		return -ENOMEM;	/* May only call once for each order */
	}

	if (count < 0 || count > 4096) {
Dave Airlie's avatar
Dave Airlie committed
733
		mutex_unlock(&dev->struct_mutex);
734
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
735 736 737
		return -EINVAL;
	}

738 739 740
	entry->buflist = drm_alloc(count * sizeof(*entry->buflist),
				   DRM_MEM_BUFS);
	if (!entry->buflist) {
Dave Airlie's avatar
Dave Airlie committed
741
		mutex_unlock(&dev->struct_mutex);
742
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
743 744
		return -ENOMEM;
	}
745 746 747 748 749 750 751
	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);
Dave Airlie's avatar
Dave Airlie committed
752
		mutex_unlock(&dev->struct_mutex);
753
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
754 755
		return -ENOMEM;
	}
756
	memset(entry->seglist, 0, count * sizeof(*entry->seglist));
Linus Torvalds's avatar
Linus Torvalds committed
757 758 759 760

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

777
	entry->buf_size = size;
Linus Torvalds's avatar
Linus Torvalds committed
778 779 780 781
	entry->page_order = page_order;
	byte_count = 0;
	page_count = 0;

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

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

842 843
			DRM_DEBUG("buffer %d @ %p\n",
				  entry->buf_count, buf->address);
Linus Torvalds's avatar
Linus Torvalds committed
844 845 846 847
		}
		byte_count += PAGE_SIZE << page_order;
	}

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

864
	for (i = 0; i < entry->buf_count; i++) {
Linus Torvalds's avatar
Linus Torvalds committed
865 866 867 868 869 870 871 872
		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,
873 874
			 dma->page_count * sizeof(*dma->pagelist),
			 DRM_MEM_PAGES);
Linus Torvalds's avatar
Linus Torvalds committed
875 876 877 878 879 880 881 882
	}
	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);

Dave Airlie's avatar
Dave Airlie committed
883
	mutex_unlock(&dev->struct_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
884

885 886
	request->count = entry->buf_count;
	request->size = size;
Linus Torvalds's avatar
Linus Torvalds committed
887

888
	atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
889 890 891
	return 0;

}
892
EXPORT_SYMBOL(drm_addbufs_pci);
Linus Torvalds's avatar
Linus Torvalds committed
893

894
static int drm_addbufs_sg(drm_device_t * dev, drm_buf_desc_t * request)
Linus Torvalds's avatar
Linus Torvalds committed
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
{
	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;

911 912 913 914 915
	if (!drm_core_check_feature(dev, DRIVER_SG))
		return -EINVAL;

	if (!dma)
		return -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
916

917 918 919
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

920 921
	count = request->count;
	order = drm_order(request->size);
Linus Torvalds's avatar
Linus Torvalds committed
922 923
	size = 1 << order;

924 925
	alignment = (request->flags & _DRM_PAGE_ALIGN)
	    ? PAGE_ALIGN(size) : size;
Linus Torvalds's avatar
Linus Torvalds committed
926 927 928 929
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

	byte_count = 0;
930
	agp_offset = request->agp_start;
Linus Torvalds's avatar
Linus Torvalds committed
931

932 933 934 935 936 937 938
	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);
Linus Torvalds's avatar
Linus Torvalds committed
939

940 941 942 943
	if (order < DRM_MIN_ORDER || order > DRM_MAX_ORDER)
		return -EINVAL;
	if (dev->queue_count)
		return -EBUSY;	/* Not while in use */
Linus Torvalds's avatar
Linus Torvalds committed
944

945 946 947
	spin_lock(&dev->count_lock);
	if (dev->buf_use) {
		spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
948 949
		return -EBUSY;
	}
950 951
	atomic_inc(&dev->buf_alloc);
	spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
952

Dave Airlie's avatar
Dave Airlie committed
953
	mutex_lock(&dev->struct_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
954
	entry = &dma->bufs[order];
955
	if (entry->buf_count) {
Dave Airlie's avatar
Dave Airlie committed
956
		mutex_unlock(&dev->struct_mutex);
957 958
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
Linus Torvalds's avatar
Linus Torvalds committed
959 960 961
	}

	if (count < 0 || count > 4096) {
Dave Airlie's avatar
Dave Airlie committed
962
		mutex_unlock(&dev->struct_mutex);
963
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
964 965 966
		return -EINVAL;
	}

967 968 969
	entry->buflist = drm_alloc(count * sizeof(*entry->buflist),
				   DRM_MEM_BUFS);
	if (!entry->buflist) {
Dave Airlie's avatar
Dave Airlie committed
970
		mutex_unlock(&dev->struct_mutex);
971
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
972 973
		return -ENOMEM;
	}
974
	memset(entry->buflist, 0, count * sizeof(*entry->buflist));
Linus Torvalds's avatar
Linus Torvalds committed
975 976 977 978 979 980

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

	offset = 0;

981 982 983 984 985 986
	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;
Linus Torvalds's avatar
Linus Torvalds committed
987

988
		buf->offset = (dma->byte_count + offset);
Linus Torvalds's avatar
Linus Torvalds committed
989
		buf->bus_address = agp_offset + offset;
990
		buf->address = (void *)(agp_offset + offset
991
					+ (unsigned long)dev->sg->virtual);
992
		buf->next = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
993 994
		buf->waiting = 0;
		buf->pending = 0;
995 996
		init_waitqueue_head(&buf->dma_wait);
		buf->filp = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
997 998

		buf->dev_priv_size = dev->driver->dev_priv_size;
999 1000
		buf->dev_private = drm_alloc(buf->dev_priv_size, DRM_MEM_BUFS);
		if (!buf->dev_private) {
Linus Torvalds's avatar
Linus Torvalds committed
1001 1002
			/* Set count correctly so we free the proper amount. */
			entry->buf_count = count;
1003
			drm_cleanup_buf_error(dev, entry);
Dave Airlie's avatar
Dave Airlie committed
1004
			mutex_unlock(&dev->struct_mutex);
1005
			atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
1006 1007 1008
			return -ENOMEM;
		}

1009
		memset(buf->dev_private, 0, buf->dev_priv_size);
Linus Torvalds's avatar
Linus Torvalds committed
1010

1011
		DRM_DEBUG("buffer %d @ %p\n", entry->buf_count, buf->address);
Linus Torvalds's avatar
Linus Torvalds committed
1012 1013 1014 1015 1016 1017

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

1018
	DRM_DEBUG("byte_count: %d\n", byte_count);
Linus Torvalds's avatar
Linus Torvalds committed
1019

1020 1021 1022 1023 1024
	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) {
Linus Torvalds's avatar
Linus Torvalds committed
1025
		/* Free the entry because it isn't valid */
1026
		drm_cleanup_buf_error(dev, entry);
Dave Airlie's avatar
Dave Airlie committed
1027
		mutex_unlock(&dev->struct_mutex);
1028
		atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
1029 1030 1031 1032
		return -ENOMEM;
	}
	dma->buflist = temp_buflist;

1033
	for (i = 0; i < entry->buf_count; i++) {
Linus Torvalds's avatar
Linus Torvalds committed
1034 1035 1036 1037
		dma->buflist[i + dma->buf_count] = &entry->buflist[i];
	}

	dma->buf_count += entry->buf_count;
1038 1039
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
Linus Torvalds's avatar
Linus Torvalds committed
1040 1041
	dma->byte_count += byte_count;

1042 1043
	DRM_DEBUG("dma->buf_count : %d\n", dma->buf_count);
	DRM_DEBUG("entry->buf_count : %d\n", entry->buf_count);
Linus Torvalds's avatar
Linus Torvalds committed
1044

Dave Airlie's avatar
Dave Airlie committed
1045
	mutex_unlock(&dev->struct_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
1046

1047 1048
	request->count = entry->buf_count;
	request->size = size;
Linus Torvalds's avatar
Linus Torvalds committed
1049 1050 1051

	dma->flags = _DRM_DMA_USE_SG;

1052
	atomic_dec(&dev->buf_alloc);
Linus Torvalds's avatar
Linus Torvalds committed
1053 1054 1055
	return 0;
}

1056
int drm_addbufs_fb(drm_device_t * dev, drm_buf_desc_t * request)
Dave Airlie's avatar
Dave Airlie committed
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
{
	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;
1075

Dave Airlie's avatar
Dave Airlie committed
1076 1077 1078
	if (!dma)
		return -EINVAL;

1079 1080 1081
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

1082 1083
	count = request->count;
	order = drm_order(request->size);
Dave Airlie's avatar
Dave Airlie committed
1084 1085
	size = 1 << order;

1086
	alignment = (request->flags & _DRM_PAGE_ALIGN)
Dave Airlie's avatar
Dave Airlie committed
1087 1088 1089 1090 1091
	    ? PAGE_ALIGN(size) : size;
	page_order = order - PAGE_SHIFT > 0 ? order - PAGE_SHIFT : 0;
	total = PAGE_SIZE << page_order;

	byte_count = 0;
1092
	agp_offset = request->agp_start;
Dave Airlie's avatar
Dave Airlie committed
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114

	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);

Dave Airlie's avatar
Dave Airlie committed
1115
	mutex_lock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
1116 1117
	entry = &dma->bufs[order];
	if (entry->buf_count) {
Dave Airlie's avatar
Dave Airlie committed
1118
		mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
1119 1120 1121 1122 1123
		atomic_dec(&dev->buf_alloc);
		return -ENOMEM;	/* May only call once for each order */
	}

	if (count < 0 || count > 4096) {
Dave Airlie's avatar
Dave Airlie committed
1124
		mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
1125 1126 1127 1128 1129 1130 1131
		atomic_dec(&dev->buf_alloc);
		return -EINVAL;
	}

	entry->buflist = drm_alloc(count * sizeof(*entry->buflist),
				   DRM_MEM_BUFS);
	if (!entry->buflist) {
Dave Airlie's avatar
Dave Airlie committed
1132
		mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
1133 1134 1135 1136 1137 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
		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);
Dave Airlie's avatar
Dave Airlie committed
1165
			mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
			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);
Dave Airlie's avatar
Dave Airlie committed
1187
		mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
		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;
1198 1199
	dma->seg_count += entry->seg_count;
	dma->page_count += byte_count >> PAGE_SHIFT;
Dave Airlie's avatar
Dave Airlie committed
1200 1201 1202 1203 1204
	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);

Dave Airlie's avatar
Dave Airlie committed
1205
	mutex_unlock(&dev->struct_mutex);
Dave Airlie's avatar
Dave Airlie committed
1206

1207 1208
	request->count = entry->buf_count;
	request->size = size;
Dave Airlie's avatar
Dave Airlie committed
1209 1210 1211 1212 1213 1214

	dma->flags = _DRM_DMA_USE_FB;

	atomic_dec(&dev->buf_alloc);
	return 0;
}
1215 1216
EXPORT_SYMBOL(drm_addbufs_fb);

Dave Airlie's avatar
Dave Airlie committed
1217

Linus Torvalds's avatar
Linus Torvalds committed
1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
/**
 * 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.
 */
1232 1233
int drm_addbufs(struct inode *inode, struct file *filp,
		unsigned int cmd, unsigned long arg)
Linus Torvalds's avatar
Linus Torvalds committed
1234 1235 1236 1237
{
	drm_buf_desc_t request;
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
1238
	int ret;
1239

Linus Torvalds's avatar
Linus Torvalds committed
1240 1241 1242
	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA))
		return -EINVAL;

1243 1244
	if (copy_from_user(&request, (drm_buf_desc_t __user *) arg,
			   sizeof(request)))
Linus Torvalds's avatar
Linus Torvalds committed
1245 1246 1247
		return -EFAULT;

#if __OS_HAS_AGP
1248 1249
	if (request.flags & _DRM_AGP_BUFFER)
		ret = drm_addbufs_agp(dev, &request);
Linus Torvalds's avatar
Linus Torvalds committed
1250 1251
	else
#endif
1252 1253 1254 1255
	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);
Linus Torvalds's avatar
Linus Torvalds committed
1256
	else
1257
		ret = drm_addbufs_pci(dev, &request);
1258

1259 1260
	if (ret == 0) {
		if (copy_to_user((void __user *)arg, &request, sizeof(request))) {
1261 1262 1263 1264
			ret = -EFAULT;
		}
	}
	return ret;
Linus Torvalds's avatar
Linus Torvalds committed
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
}

/**
 * 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.
 */
1284 1285
int drm_infobufs(struct inode *inode, struct file *filp,
		 unsigned int cmd, unsigned long arg)
Linus Torvalds's avatar
Linus Torvalds committed
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
{
	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;

1298 1299
	if (!dma)
		return -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
1300

1301 1302 1303
	spin_lock(&dev->count_lock);
	if (atomic_read(&dev->buf_alloc)) {
		spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
1304 1305 1306
		return -EBUSY;
	}
	++dev->buf_use;		/* Can't allocate more after this call */
1307
	spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
1308

1309
	if (copy_from_user(&request, argp, sizeof(request)))
Linus Torvalds's avatar
Linus Torvalds committed
1310 1311
		return -EFAULT;

1312 1313 1314
	for (i = 0, count = 0; i < DRM_MAX_ORDER + 1; i++) {
		if (dma->bufs[i].buf_count)
			++count;
Linus Torvalds's avatar
Linus Torvalds committed
1315 1316
	}

1317
	DRM_DEBUG("count = %d\n", count);
Linus Torvalds's avatar
Linus Torvalds committed
1318

1319 1320 1321 1322 1323
	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];
Linus Torvalds's avatar
Linus Torvalds committed
1324 1325
				drm_buf_entry_t *from = &dma->bufs[i];
				drm_freelist_t *list = &dma->bufs[i].freelist;
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
				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)))
Linus Torvalds's avatar
Linus Torvalds committed
1338 1339
					return -EFAULT;

1340 1341 1342 1343 1344 1345
				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);
Linus Torvalds's avatar
Linus Torvalds committed
1346 1347 1348 1349 1350 1351
				++count;
			}
		}
	}
	request.count = count;

1352
	if (copy_to_user(argp, &request, sizeof(request)))
Linus Torvalds's avatar
Linus Torvalds committed
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
		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.
 */
1372 1373
int drm_markbufs(struct inode *inode, struct file *filp,
		 unsigned int cmd, unsigned long arg)
Linus Torvalds's avatar
Linus Torvalds committed
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384
{
	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;

1385 1386
	if (!dma)
		return -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
1387

1388 1389
	if (copy_from_user(&request,
			   (drm_buf_desc_t __user *) arg, sizeof(request)))
Linus Torvalds's avatar
Linus Torvalds committed
1390 1391
		return -EFAULT;

1392 1393 1394 1395 1396
	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;
Linus Torvalds's avatar
Linus Torvalds committed
1397 1398
	entry = &dma->bufs[order];

1399
	if (request.low_mark < 0 || request.low_mark > entry->buf_count)
Linus Torvalds's avatar
Linus Torvalds committed
1400
		return -EINVAL;
1401
	if (request.high_mark < 0 || request.high_mark > entry->buf_count)
Linus Torvalds's avatar
Linus Torvalds committed
1402 1403
		return -EINVAL;

1404
	entry->freelist.low_mark = request.low_mark;
Linus Torvalds's avatar
Linus Torvalds committed
1405 1406 1407 1408 1409 1410
	entry->freelist.high_mark = request.high_mark;

	return 0;
}

/**
1411
 * Unreserve the buffers in list, previously reserved using drmDMA.
Linus Torvalds's avatar
Linus Torvalds committed
1412 1413 1414 1415 1416 1417
 *
 * \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.
1418
 *
Linus Torvalds's avatar
Linus Torvalds committed
1419 1420 1421
 * Calls free_buffer() for each used buffer.
 * This function is primarily used for debugging.
 */
1422 1423
int drm_freebufs(struct inode *inode, struct file *filp,
		 unsigned int cmd, unsigned long arg)
Linus Torvalds's avatar
Linus Torvalds committed
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
{
	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;

1436 1437
	if (!dma)
		return -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
1438

1439 1440
	if (copy_from_user(&request,
			   (drm_buf_free_t __user *) arg, sizeof(request)))
Linus Torvalds's avatar
Linus Torvalds committed
1441 1442
		return -EFAULT;

1443 1444 1445
	DRM_DEBUG("%d\n", request.count);
	for (i = 0; i < request.count; i++) {
		if (copy_from_user(&idx, &request.list[i], sizeof(idx)))
Linus Torvalds's avatar
Linus Torvalds committed
1446
			return -EFAULT;
1447 1448 1449
		if (idx < 0 || idx >= dma->buf_count) {
			DRM_ERROR("Index %d (of %d max)\n",
				  idx, dma->buf_count - 1);
Linus Torvalds's avatar
Linus Torvalds committed
1450 1451 1452
			return -EINVAL;
		}
		buf = dma->buflist[idx];
1453 1454 1455
		if (buf->filp != filp) {
			DRM_ERROR("Process %d freeing buffer not owned\n",
				  current->pid);
Linus Torvalds's avatar
Linus Torvalds committed
1456 1457
			return -EINVAL;
		}
1458
		drm_free_buffer(dev, buf);
Linus Torvalds's avatar
Linus Torvalds committed
1459 1460 1461 1462 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.
 *
 * Maps the AGP or SG buffer region with do_mmap(), and copies information
 * about each buffer into user space. The PCI buffers are already mapped on the
 * addbufs_pci() call.
 */
1477 1478
int drm_mapbufs(struct inode *inode, struct file *filp,
		unsigned int cmd, unsigned long arg)
Linus Torvalds's avatar
Linus Torvalds committed
1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
{
	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;

1494 1495
	if (!dma)
		return -EINVAL;
Linus Torvalds's avatar
Linus Torvalds committed
1496

1497 1498 1499
	spin_lock(&dev->count_lock);
	if (atomic_read(&dev->buf_alloc)) {
		spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
1500 1501 1502
		return -EBUSY;
	}
	dev->buf_use++;		/* Can't allocate more after this call */
1503
	spin_unlock(&dev->count_lock);
Linus Torvalds's avatar
Linus Torvalds committed
1504

1505
	if (copy_from_user(&request, argp, sizeof(request)))
Linus Torvalds's avatar
Linus Torvalds committed
1506 1507
		return -EFAULT;

1508
	if (request.count >= dma->buf_count) {
Dave Airlie's avatar
Dave Airlie committed
1509
		if ((drm_core_has_AGP(dev) && (dma->flags & _DRM_DMA_USE_AGP))
1510
		    || (drm_core_check_feature(dev, DRIVER_SG)
Dave Airlie's avatar
Dave Airlie committed
1511 1512 1513
			&& (dma->flags & _DRM_DMA_USE_SG))
		    || (drm_core_check_feature(dev, DRIVER_FB_DMA)
			&& (dma->flags & _DRM_DMA_USE_FB))) {
Linus Torvalds's avatar
Linus Torvalds committed
1514
			drm_map_t *map = dev->agp_buffer_map;
1515
			unsigned long token = dev->agp_buffer_token;
Linus Torvalds's avatar
Linus Torvalds committed
1516

1517
			if (!map) {
Linus Torvalds's avatar
Linus Torvalds committed
1518 1519 1520 1521
				retcode = -EINVAL;
				goto done;
			}

1522 1523 1524 1525 1526
			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);
Linus Torvalds's avatar
Linus Torvalds committed
1527
		} else {
1528 1529 1530 1531 1532
			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);
Linus Torvalds's avatar
Linus Torvalds committed
1533
		}
1534
		if (virtual > -1024UL) {
Linus Torvalds's avatar
Linus Torvalds committed
1535 1536 1537 1538 1539 1540
			/* Real error */
			retcode = (signed long)virtual;
			goto done;
		}
		request.virtual = (void __user *)virtual;

1541 1542 1543 1544
		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))) {
Linus Torvalds's avatar
Linus Torvalds committed
1545 1546 1547
				retcode = -EFAULT;
				goto done;
			}
1548 1549 1550
			if (copy_to_user(&request.list[i].total,
					 &dma->buflist[i]->total,
					 sizeof(request.list[0].total))) {
Linus Torvalds's avatar
Linus Torvalds committed
1551 1552 1553
				retcode = -EFAULT;
				goto done;
			}
1554 1555
			if (copy_to_user(&request.list[i].used,
					 &zero, sizeof(zero))) {
Linus Torvalds's avatar
Linus Torvalds committed
1556 1557 1558
				retcode = -EFAULT;
				goto done;
			}
1559 1560 1561
			address = virtual + dma->buflist[i]->offset;	/* *** */
			if (copy_to_user(&request.list[i].address,
					 &address, sizeof(address))) {
Linus Torvalds's avatar
Linus Torvalds committed
1562 1563 1564 1565 1566
				retcode = -EFAULT;
				goto done;
			}
		}
	}
1567
      done:
Linus Torvalds's avatar
Linus Torvalds committed
1568
	request.count = dma->buf_count;
1569
	DRM_DEBUG("%d buffers, retcode = %d\n", request.count, retcode);
Linus Torvalds's avatar
Linus Torvalds committed
1570

1571
	if (copy_to_user(argp, &request, sizeof(request)))
Linus Torvalds's avatar
Linus Torvalds committed
1572 1573 1574 1575 1576
		return -EFAULT;

	return retcode;
}

Dave Airlie's avatar
Dave Airlie committed
1577 1578 1579
/**
 * Compute size order.  Returns the exponent of the smaller power of two which
 * is greater or equal to given number.
1580
 *
Dave Airlie's avatar
Dave Airlie committed
1581 1582 1583 1584 1585
 * \param size size.
 * \return order.
 *
 * \todo Can be made faster.
 */
1586
int drm_order(unsigned long size)
Dave Airlie's avatar
Dave Airlie committed
1587 1588 1589 1590
{
	int order;
	unsigned long tmp;

1591
	for (order = 0, tmp = size >> 1; tmp; tmp >>= 1, order++) ;
Dave Airlie's avatar
Dave Airlie committed
1592 1593 1594 1595 1596 1597 1598

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

	return order;
}
EXPORT_SYMBOL(drm_order);
1599 1600