drm_memory_debug.h 11.8 KB
Newer Older
L
Linus Torvalds 已提交
1
/**
D
Dave Airlie 已提交
2
 * \file drm_memory.h
L
Linus Torvalds 已提交
3 4 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
 * Memory management wrappers for DRM.
 *
 * \author Rickard E. (Rik) Faith <faith@valinux.com>
 * \author Gareth Hughes <gareth@valinux.com>
 */

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

#include <linux/config.h>
#include "drmP.h"

typedef struct drm_mem_stats {
D
Dave Airlie 已提交
38 39 40 41 42 43
	const char *name;
	int succeed_count;
	int free_count;
	int fail_count;
	unsigned long bytes_allocated;
	unsigned long bytes_freed;
L
Linus Torvalds 已提交
44 45 46
} drm_mem_stats_t;

static DEFINE_SPINLOCK(DRM(mem_lock));
D
Dave Airlie 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
static unsigned long DRM(ram_available) = 0;	/* In pages */
static unsigned long DRM(ram_used) = 0;
static drm_mem_stats_t DRM(mem_stats)[] =
{
	[DRM_MEM_DMA] = {
	"dmabufs"},[DRM_MEM_SAREA] = {
	"sareas"},[DRM_MEM_DRIVER] = {
	"driver"},[DRM_MEM_MAGIC] = {
	"magic"},[DRM_MEM_IOCTLS] = {
	"ioctltab"},[DRM_MEM_MAPS] = {
	"maplist"},[DRM_MEM_VMAS] = {
	"vmalist"},[DRM_MEM_BUFS] = {
	"buflist"},[DRM_MEM_SEGS] = {
	"seglist"},[DRM_MEM_PAGES] = {
	"pagelist"},[DRM_MEM_FILES] = {
	"files"},[DRM_MEM_QUEUES] = {
	"queues"},[DRM_MEM_CMDS] = {
	"commands"},[DRM_MEM_MAPPINGS] = {
	"mappings"},[DRM_MEM_BUFLISTS] = {
	"buflists"},[DRM_MEM_AGPLISTS] = {
	"agplist"},[DRM_MEM_SGLISTS] = {
	"sglist"},[DRM_MEM_TOTALAGP] = {
	"totalagp"},[DRM_MEM_BOUNDAGP] = {
	"boundagp"},[DRM_MEM_CTXBITMAP] = {
	"ctxbitmap"},[DRM_MEM_CTXLIST] = {
	"ctxlist"},[DRM_MEM_STUB] = {
	"stub"}, {
	NULL, 0,}		/* Last entry must be null */
L
Linus Torvalds 已提交
75 76
};

D
Dave Airlie 已提交
77
void DRM(mem_init) (void) {
L
Linus Torvalds 已提交
78
	drm_mem_stats_t *mem;
D
Dave Airlie 已提交
79
	struct sysinfo si;
L
Linus Torvalds 已提交
80 81

	for (mem = DRM(mem_stats); mem->name; ++mem) {
D
Dave Airlie 已提交
82 83 84
		mem->succeed_count = 0;
		mem->free_count = 0;
		mem->fail_count = 0;
L
Linus Torvalds 已提交
85
		mem->bytes_allocated = 0;
D
Dave Airlie 已提交
86
		mem->bytes_freed = 0;
L
Linus Torvalds 已提交
87 88 89 90
	}

	si_meminfo(&si);
	DRM(ram_available) = si.totalram;
D
Dave Airlie 已提交
91
	DRM(ram_used) = 0;
L
Linus Torvalds 已提交
92 93 94 95
}

/* drm_mem_info is called whenever a process reads /dev/drm/mem. */

D
Dave Airlie 已提交
96 97
static int DRM(_mem_info) (char *buf, char **start, off_t offset,
			   int request, int *eof, void *data) {
L
Linus Torvalds 已提交
98
	drm_mem_stats_t *pt;
D
Dave Airlie 已提交
99
	int len = 0;
L
Linus Torvalds 已提交
100 101 102 103 104 105

	if (offset > DRM_PROC_LIMIT) {
		*eof = 1;
		return 0;
	}

D
Dave Airlie 已提交
106
	*eof = 0;
L
Linus Torvalds 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
	*start = &buf[offset];

	DRM_PROC_PRINT("		  total counts			"
		       " |    outstanding  \n");
	DRM_PROC_PRINT("type	   alloc freed fail	bytes	   freed"
		       " | allocs      bytes\n\n");
	DRM_PROC_PRINT("%-9.9s %5d %5d %4d %10lu kB         |\n",
		       "system", 0, 0, 0,
		       DRM(ram_available) << (PAGE_SHIFT - 10));
	DRM_PROC_PRINT("%-9.9s %5d %5d %4d %10lu kB         |\n",
		       "locked", 0, 0, 0, DRM(ram_used) >> 10);
	DRM_PROC_PRINT("\n");
	for (pt = DRM(mem_stats); pt->name; pt++) {
		DRM_PROC_PRINT("%-9.9s %5d %5d %4d %10lu %10lu | %6d %10ld\n",
			       pt->name,
			       pt->succeed_count,
			       pt->free_count,
			       pt->fail_count,
			       pt->bytes_allocated,
			       pt->bytes_freed,
			       pt->succeed_count - pt->free_count,
			       (long)pt->bytes_allocated
			       - (long)pt->bytes_freed);
	}

D
Dave Airlie 已提交
132 133
	if (len > request + offset)
		return request;
L
Linus Torvalds 已提交
134 135 136 137
	*eof = 1;
	return len - offset;
}

D
Dave Airlie 已提交
138 139
int DRM(mem_info) (char *buf, char **start, off_t offset,
		   int len, int *eof, void *data) {
L
Linus Torvalds 已提交
140 141 142
	int ret;

	spin_lock(&DRM(mem_lock));
D
Dave Airlie 已提交
143
	ret = DRM(_mem_info) (buf, start, offset, len, eof, data);
L
Linus Torvalds 已提交
144 145 146 147
	spin_unlock(&DRM(mem_lock));
	return ret;
}

D
Dave Airlie 已提交
148
void *DRM(alloc) (size_t size, int area) {
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	void *pt;

	if (!size) {
		DRM_MEM_ERROR(area, "Allocating 0 bytes\n");
		return NULL;
	}

	if (!(pt = kmalloc(size, GFP_KERNEL))) {
		spin_lock(&DRM(mem_lock));
		++DRM(mem_stats)[area].fail_count;
		spin_unlock(&DRM(mem_lock));
		return NULL;
	}
	spin_lock(&DRM(mem_lock));
	++DRM(mem_stats)[area].succeed_count;
	DRM(mem_stats)[area].bytes_allocated += size;
	spin_unlock(&DRM(mem_lock));
	return pt;
}

D
Dave Airlie 已提交
169
void *DRM(calloc) (size_t nmemb, size_t size, int area) {
L
Linus Torvalds 已提交
170 171
	void *addr;

D
Dave Airlie 已提交
172
	addr = DRM(alloc) (nmemb * size, area);
L
Linus Torvalds 已提交
173 174 175 176 177 178
	if (addr != NULL)
		memset((void *)addr, 0, size * nmemb);

	return addr;
}

D
Dave Airlie 已提交
179
void *DRM(realloc) (void *oldpt, size_t oldsize, size_t size, int area) {
L
Linus Torvalds 已提交
180 181
	void *pt;

D
Dave Airlie 已提交
182 183
	if (!(pt = DRM(alloc) (size, area)))
		return NULL;
L
Linus Torvalds 已提交
184 185
	if (oldpt && oldsize) {
		memcpy(pt, oldpt, oldsize);
D
Dave Airlie 已提交
186
		DRM(free) (oldpt, oldsize, area);
L
Linus Torvalds 已提交
187 188 189 190
	}
	return pt;
}

D
Dave Airlie 已提交
191
void DRM(free) (void *pt, size_t size, int area) {
L
Linus Torvalds 已提交
192 193 194
	int alloc_count;
	int free_count;

D
Dave Airlie 已提交
195 196 197 198
	if (!pt)
		DRM_MEM_ERROR(area, "Attempt to free NULL pointer\n");
	else
		kfree(pt);
L
Linus Torvalds 已提交
199 200
	spin_lock(&DRM(mem_lock));
	DRM(mem_stats)[area].bytes_freed += size;
D
Dave Airlie 已提交
201 202
	free_count = ++DRM(mem_stats)[area].free_count;
	alloc_count = DRM(mem_stats)[area].succeed_count;
L
Linus Torvalds 已提交
203 204 205 206 207 208 209
	spin_unlock(&DRM(mem_lock));
	if (free_count > alloc_count) {
		DRM_MEM_ERROR(area, "Excess frees: %d frees, %d allocs\n",
			      free_count, alloc_count);
	}
}

D
Dave Airlie 已提交
210
unsigned long DRM(alloc_pages) (int order, int area) {
L
Linus Torvalds 已提交
211
	unsigned long address;
D
Dave Airlie 已提交
212
	unsigned long bytes = PAGE_SIZE << order;
L
Linus Torvalds 已提交
213
	unsigned long addr;
D
Dave Airlie 已提交
214
	unsigned int sz;
L
Linus Torvalds 已提交
215 216 217 218 219 220 221 222 223

	spin_lock(&DRM(mem_lock));
	if ((DRM(ram_used) >> PAGE_SHIFT)
	    > (DRM_RAM_PERCENT * DRM(ram_available)) / 100) {
		spin_unlock(&DRM(mem_lock));
		return 0;
	}
	spin_unlock(&DRM(mem_lock));

224
	address = __get_free_pages(GFP_KERNEL|__GFP_COMP, order);
L
Linus Torvalds 已提交
225 226 227 228 229 230 231 232 233
	if (!address) {
		spin_lock(&DRM(mem_lock));
		++DRM(mem_stats)[area].fail_count;
		spin_unlock(&DRM(mem_lock));
		return 0;
	}
	spin_lock(&DRM(mem_lock));
	++DRM(mem_stats)[area].succeed_count;
	DRM(mem_stats)[area].bytes_allocated += bytes;
D
Dave Airlie 已提交
234
	DRM(ram_used) += bytes;
L
Linus Torvalds 已提交
235 236
	spin_unlock(&DRM(mem_lock));

D
Dave Airlie 已提交
237
	/* Zero outside the lock */
L
Linus Torvalds 已提交
238 239
	memset((void *)address, 0, bytes);

D
Dave Airlie 已提交
240
	/* Reserve */
L
Linus Torvalds 已提交
241
	for (addr = address, sz = bytes;
D
Dave Airlie 已提交
242
	     sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
L
Linus Torvalds 已提交
243 244 245 246 247 248
		SetPageReserved(virt_to_page(addr));
	}

	return address;
}

D
Dave Airlie 已提交
249
void DRM(free_pages) (unsigned long address, int order, int area) {
L
Linus Torvalds 已提交
250
	unsigned long bytes = PAGE_SIZE << order;
D
Dave Airlie 已提交
251 252
	int alloc_count;
	int free_count;
L
Linus Torvalds 已提交
253
	unsigned long addr;
D
Dave Airlie 已提交
254
	unsigned int sz;
L
Linus Torvalds 已提交
255 256 257 258

	if (!address) {
		DRM_MEM_ERROR(area, "Attempt to free address 0\n");
	} else {
D
Dave Airlie 已提交
259
		/* Unreserve */
L
Linus Torvalds 已提交
260
		for (addr = address, sz = bytes;
D
Dave Airlie 已提交
261
		     sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
L
Linus Torvalds 已提交
262 263 264 265 266 267
			ClearPageReserved(virt_to_page(addr));
		}
		free_pages(address, order);
	}

	spin_lock(&DRM(mem_lock));
D
Dave Airlie 已提交
268 269
	free_count = ++DRM(mem_stats)[area].free_count;
	alloc_count = DRM(mem_stats)[area].succeed_count;
L
Linus Torvalds 已提交
270
	DRM(mem_stats)[area].bytes_freed += bytes;
D
Dave Airlie 已提交
271
	DRM(ram_used) -= bytes;
L
Linus Torvalds 已提交
272 273 274 275 276 277 278 279
	spin_unlock(&DRM(mem_lock));
	if (free_count > alloc_count) {
		DRM_MEM_ERROR(area,
			      "Excess frees: %d frees, %d allocs\n",
			      free_count, alloc_count);
	}
}

D
Dave Airlie 已提交
280 281
void *DRM(ioremap) (unsigned long offset, unsigned long size,
		    drm_device_t * dev) {
L
Linus Torvalds 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
	void *pt;

	if (!size) {
		DRM_MEM_ERROR(DRM_MEM_MAPPINGS,
			      "Mapping 0 bytes at 0x%08lx\n", offset);
		return NULL;
	}

	if (!(pt = drm_ioremap(offset, size, dev))) {
		spin_lock(&DRM(mem_lock));
		++DRM(mem_stats)[DRM_MEM_MAPPINGS].fail_count;
		spin_unlock(&DRM(mem_lock));
		return NULL;
	}
	spin_lock(&DRM(mem_lock));
	++DRM(mem_stats)[DRM_MEM_MAPPINGS].succeed_count;
	DRM(mem_stats)[DRM_MEM_MAPPINGS].bytes_allocated += size;
	spin_unlock(&DRM(mem_lock));
	return pt;
}

D
Dave Airlie 已提交
303 304
void *DRM(ioremap_nocache) (unsigned long offset, unsigned long size,
			    drm_device_t * dev) {
L
Linus Torvalds 已提交
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
	void *pt;

	if (!size) {
		DRM_MEM_ERROR(DRM_MEM_MAPPINGS,
			      "Mapping 0 bytes at 0x%08lx\n", offset);
		return NULL;
	}

	if (!(pt = drm_ioremap_nocache(offset, size, dev))) {
		spin_lock(&DRM(mem_lock));
		++DRM(mem_stats)[DRM_MEM_MAPPINGS].fail_count;
		spin_unlock(&DRM(mem_lock));
		return NULL;
	}
	spin_lock(&DRM(mem_lock));
	++DRM(mem_stats)[DRM_MEM_MAPPINGS].succeed_count;
	DRM(mem_stats)[DRM_MEM_MAPPINGS].bytes_allocated += size;
	spin_unlock(&DRM(mem_lock));
	return pt;
}

D
Dave Airlie 已提交
326
void DRM(ioremapfree) (void *pt, unsigned long size, drm_device_t * dev) {
L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334 335 336 337
	int alloc_count;
	int free_count;

	if (!pt)
		DRM_MEM_ERROR(DRM_MEM_MAPPINGS,
			      "Attempt to free NULL pointer\n");
	else
		drm_ioremapfree(pt, size, dev);

	spin_lock(&DRM(mem_lock));
	DRM(mem_stats)[DRM_MEM_MAPPINGS].bytes_freed += size;
D
Dave Airlie 已提交
338 339
	free_count = ++DRM(mem_stats)[DRM_MEM_MAPPINGS].free_count;
	alloc_count = DRM(mem_stats)[DRM_MEM_MAPPINGS].succeed_count;
L
Linus Torvalds 已提交
340 341 342 343 344 345 346 347 348 349
	spin_unlock(&DRM(mem_lock));
	if (free_count > alloc_count) {
		DRM_MEM_ERROR(DRM_MEM_MAPPINGS,
			      "Excess frees: %d frees, %d allocs\n",
			      free_count, alloc_count);
	}
}

#if __OS_HAS_AGP

D
Dave Airlie 已提交
350
DRM_AGP_MEM *DRM(alloc_agp) (int pages, u32 type) {
L
Linus Torvalds 已提交
351 352 353 354 355 356 357
	DRM_AGP_MEM *handle;

	if (!pages) {
		DRM_MEM_ERROR(DRM_MEM_TOTALAGP, "Allocating 0 pages\n");
		return NULL;
	}

D
Dave Airlie 已提交
358
	if ((handle = DRM(agp_allocate_memory) (pages, type))) {
L
Linus Torvalds 已提交
359 360 361
		spin_lock(&DRM(mem_lock));
		++DRM(mem_stats)[DRM_MEM_TOTALAGP].succeed_count;
		DRM(mem_stats)[DRM_MEM_TOTALAGP].bytes_allocated
D
Dave Airlie 已提交
362
		    += pages << PAGE_SHIFT;
L
Linus Torvalds 已提交
363 364 365 366 367 368 369 370 371
		spin_unlock(&DRM(mem_lock));
		return handle;
	}
	spin_lock(&DRM(mem_lock));
	++DRM(mem_stats)[DRM_MEM_TOTALAGP].fail_count;
	spin_unlock(&DRM(mem_lock));
	return NULL;
}

D
Dave Airlie 已提交
372 373 374 375
int DRM(free_agp) (DRM_AGP_MEM * handle, int pages) {
	int alloc_count;
	int free_count;
	int retval = -EINVAL;
L
Linus Torvalds 已提交
376 377 378 379 380 381 382

	if (!handle) {
		DRM_MEM_ERROR(DRM_MEM_TOTALAGP,
			      "Attempt to free NULL AGP handle\n");
		return retval;
	}

D
Dave Airlie 已提交
383
	if (DRM(agp_free_memory) (handle)) {
L
Linus Torvalds 已提交
384
		spin_lock(&DRM(mem_lock));
D
Dave Airlie 已提交
385 386
		free_count = ++DRM(mem_stats)[DRM_MEM_TOTALAGP].free_count;
		alloc_count = DRM(mem_stats)[DRM_MEM_TOTALAGP].succeed_count;
L
Linus Torvalds 已提交
387
		DRM(mem_stats)[DRM_MEM_TOTALAGP].bytes_freed
D
Dave Airlie 已提交
388
		    += pages << PAGE_SHIFT;
L
Linus Torvalds 已提交
389 390 391 392 393 394 395 396 397 398 399
		spin_unlock(&DRM(mem_lock));
		if (free_count > alloc_count) {
			DRM_MEM_ERROR(DRM_MEM_TOTALAGP,
				      "Excess frees: %d frees, %d allocs\n",
				      free_count, alloc_count);
		}
		return 0;
	}
	return retval;
}

D
Dave Airlie 已提交
400
int DRM(bind_agp) (DRM_AGP_MEM * handle, unsigned int start) {
L
Linus Torvalds 已提交
401 402 403 404 405 406 407 408
	int retcode = -EINVAL;

	if (!handle) {
		DRM_MEM_ERROR(DRM_MEM_BOUNDAGP,
			      "Attempt to bind NULL AGP handle\n");
		return retcode;
	}

D
Dave Airlie 已提交
409
	if (!(retcode = DRM(agp_bind_memory) (handle, start))) {
L
Linus Torvalds 已提交
410 411 412
		spin_lock(&DRM(mem_lock));
		++DRM(mem_stats)[DRM_MEM_BOUNDAGP].succeed_count;
		DRM(mem_stats)[DRM_MEM_BOUNDAGP].bytes_allocated
D
Dave Airlie 已提交
413
		    += handle->page_count << PAGE_SHIFT;
L
Linus Torvalds 已提交
414 415 416 417 418 419 420 421 422
		spin_unlock(&DRM(mem_lock));
		return retcode;
	}
	spin_lock(&DRM(mem_lock));
	++DRM(mem_stats)[DRM_MEM_BOUNDAGP].fail_count;
	spin_unlock(&DRM(mem_lock));
	return retcode;
}

D
Dave Airlie 已提交
423
int DRM(unbind_agp) (DRM_AGP_MEM * handle) {
L
Linus Torvalds 已提交
424 425 426 427 428 429 430 431 432 433
	int alloc_count;
	int free_count;
	int retcode = -EINVAL;

	if (!handle) {
		DRM_MEM_ERROR(DRM_MEM_BOUNDAGP,
			      "Attempt to unbind NULL AGP handle\n");
		return retcode;
	}

D
Dave Airlie 已提交
434 435
	if ((retcode = DRM(agp_unbind_memory) (handle)))
		return retcode;
L
Linus Torvalds 已提交
436
	spin_lock(&DRM(mem_lock));
D
Dave Airlie 已提交
437
	free_count = ++DRM(mem_stats)[DRM_MEM_BOUNDAGP].free_count;
L
Linus Torvalds 已提交
438 439
	alloc_count = DRM(mem_stats)[DRM_MEM_BOUNDAGP].succeed_count;
	DRM(mem_stats)[DRM_MEM_BOUNDAGP].bytes_freed
D
Dave Airlie 已提交
440
	    += handle->page_count << PAGE_SHIFT;
L
Linus Torvalds 已提交
441 442 443 444 445 446 447 448 449
	spin_unlock(&DRM(mem_lock));
	if (free_count > alloc_count) {
		DRM_MEM_ERROR(DRM_MEM_BOUNDAGP,
			      "Excess frees: %d frees, %d allocs\n",
			      free_count, alloc_count);
	}
	return retcode;
}
#endif