drm_mm.c 11.2 KB
Newer Older
1 2 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 38 39 40
/**************************************************************************
 *
 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA.
 * 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, sub license, 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 NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS, AUTHORS 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.
 *
 *
 **************************************************************************/

/*
 * Generic simple memory manager implementation. Intended to be used as a base
 * class implementation for more advanced memory managers.
 *
 * Note that the algorithm used is quite simple and there might be substantial
 * performance gains if a smarter free list is implemented. Currently it is just an
 * unordered stack of free regions. This could easily be improved if an RB-tree
 * is used instead. At least if we expect heavy fragmentation.
 *
 * Aligned allocations can also see improvement.
 *
 * Authors:
41
 * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
42 43 44
 */

#include "drmP.h"
45
#include "drm_mm.h"
46
#include <linux/slab.h>
47
#include <linux/seq_file.h>
48

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
#define MM_UNUSED_TARGET 4

static struct drm_mm_node *drm_mm_kmalloc(struct drm_mm *mm, int atomic)
{
	struct drm_mm_node *child;

	if (atomic)
		child = kmalloc(sizeof(*child), GFP_ATOMIC);
	else
		child = kmalloc(sizeof(*child), GFP_KERNEL);

	if (unlikely(child == NULL)) {
		spin_lock(&mm->unused_lock);
		if (list_empty(&mm->unused_nodes))
			child = NULL;
		else {
			child =
			    list_entry(mm->unused_nodes.next,
D
Daniel Vetter 已提交
67 68
				       struct drm_mm_node, free_stack);
			list_del(&child->free_stack);
69 70 71 72 73 74 75
			--mm->num_unused;
		}
		spin_unlock(&mm->unused_lock);
	}
	return child;
}

76 77 78 79 80
/* drm_mm_pre_get() - pre allocate drm_mm_node structure
 * drm_mm:	memory manager struct we are pre-allocating for
 *
 * Returns 0 on success or -ENOMEM if allocation fails.
 */
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
int drm_mm_pre_get(struct drm_mm *mm)
{
	struct drm_mm_node *node;

	spin_lock(&mm->unused_lock);
	while (mm->num_unused < MM_UNUSED_TARGET) {
		spin_unlock(&mm->unused_lock);
		node = kmalloc(sizeof(*node), GFP_KERNEL);
		spin_lock(&mm->unused_lock);

		if (unlikely(node == NULL)) {
			int ret = (mm->num_unused < 2) ? -ENOMEM : 0;
			spin_unlock(&mm->unused_lock);
			return ret;
		}
		++mm->num_unused;
D
Daniel Vetter 已提交
97
		list_add_tail(&node->free_stack, &mm->unused_nodes);
98 99 100 101 102
	}
	spin_unlock(&mm->unused_lock);
	return 0;
}
EXPORT_SYMBOL(drm_mm_pre_get);
103

D
Dave Airlie 已提交
104
static int drm_mm_create_tail_node(struct drm_mm *mm,
105 106
				   unsigned long start,
				   unsigned long size, int atomic)
107
{
D
Dave Airlie 已提交
108
	struct drm_mm_node *child;
109

110 111
	child = drm_mm_kmalloc(mm, atomic);
	if (unlikely(child == NULL))
112 113 114 115 116 117 118
		return -ENOMEM;

	child->free = 1;
	child->size = size;
	child->start = start;
	child->mm = mm;

D
Daniel Vetter 已提交
119 120
	list_add_tail(&child->node_list, &mm->node_list);
	list_add_tail(&child->free_stack, &mm->free_stack);
121 122 123 124

	return 0;
}

D
Dave Airlie 已提交
125
static struct drm_mm_node *drm_mm_split_at_start(struct drm_mm_node *parent,
126 127
						 unsigned long size,
						 int atomic)
128
{
D
Dave Airlie 已提交
129
	struct drm_mm_node *child;
130

131 132
	child = drm_mm_kmalloc(parent->mm, atomic);
	if (unlikely(child == NULL))
133 134
		return NULL;

D
Daniel Vetter 已提交
135
	INIT_LIST_HEAD(&child->free_stack);
136 137 138 139 140 141

	child->free = 0;
	child->size = size;
	child->start = parent->start;
	child->mm = parent->mm;

D
Daniel Vetter 已提交
142 143
	list_add_tail(&child->node_list, &parent->node_list);
	INIT_LIST_HEAD(&child->free_stack);
144 145 146 147 148 149 150

	parent->size -= size;
	parent->start += size;
	return child;
}


151 152 153 154
struct drm_mm_node *drm_mm_get_block_generic(struct drm_mm_node *node,
					     unsigned long size,
					     unsigned alignment,
					     int atomic)
155 156
{

D
Dave Airlie 已提交
157
	struct drm_mm_node *align_splitoff = NULL;
158
	unsigned tmp = 0;
159 160

	if (alignment)
161
		tmp = node->start % alignment;
162 163

	if (tmp) {
164
		align_splitoff =
165
		    drm_mm_split_at_start(node, alignment - tmp, atomic);
166
		if (unlikely(align_splitoff == NULL))
167 168
			return NULL;
	}
169

170
	if (node->size == size) {
D
Daniel Vetter 已提交
171
		list_del_init(&node->free_stack);
172
		node->free = 0;
173
	} else {
174
		node = drm_mm_split_at_start(node, size, atomic);
175
	}
176

177 178
	if (align_splitoff)
		drm_mm_put_block(align_splitoff);
179

180
	return node;
181
}
182
EXPORT_SYMBOL(drm_mm_get_block_generic);
183

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
struct drm_mm_node *drm_mm_get_block_range_generic(struct drm_mm_node *node,
						unsigned long size,
						unsigned alignment,
						unsigned long start,
						unsigned long end,
						int atomic)
{
	struct drm_mm_node *align_splitoff = NULL;
	unsigned tmp = 0;
	unsigned wasted = 0;

	if (node->start < start)
		wasted += start - node->start;
	if (alignment)
		tmp = ((node->start + wasted) % alignment);

	if (tmp)
		wasted += alignment - tmp;
	if (wasted) {
		align_splitoff = drm_mm_split_at_start(node, wasted, atomic);
		if (unlikely(align_splitoff == NULL))
			return NULL;
	}

	if (node->size == size) {
D
Daniel Vetter 已提交
209
		list_del_init(&node->free_stack);
210 211 212 213 214 215 216 217 218 219 220 221
		node->free = 0;
	} else {
		node = drm_mm_split_at_start(node, size, atomic);
	}

	if (align_splitoff)
		drm_mm_put_block(align_splitoff);

	return node;
}
EXPORT_SYMBOL(drm_mm_get_block_range_generic);

222 223 224 225 226
/*
 * Put a block. Merge with the previous and / or next block if they are free.
 * Otherwise add to the free stack.
 */

227
void drm_mm_put_block(struct drm_mm_node *cur)
228 229
{

D
Dave Airlie 已提交
230
	struct drm_mm *mm = cur->mm;
D
Daniel Vetter 已提交
231 232
	struct list_head *cur_head = &cur->node_list;
	struct list_head *root_head = &mm->node_list;
D
Dave Airlie 已提交
233 234
	struct drm_mm_node *prev_node = NULL;
	struct drm_mm_node *next_node;
235

236
	int merged = 0;
237 238

	if (cur_head->prev != root_head) {
239
		prev_node =
D
Daniel Vetter 已提交
240
		    list_entry(cur_head->prev, struct drm_mm_node, node_list);
241 242
		if (prev_node->free) {
			prev_node->size += cur->size;
243
			merged = 1;
244 245 246
		}
	}
	if (cur_head->next != root_head) {
247
		next_node =
D
Daniel Vetter 已提交
248
		    list_entry(cur_head->next, struct drm_mm_node, node_list);
249 250 251
		if (next_node->free) {
			if (merged) {
				prev_node->size += next_node->size;
D
Daniel Vetter 已提交
252 253
				list_del(&next_node->node_list);
				list_del(&next_node->free_stack);
254
				spin_lock(&mm->unused_lock);
255
				if (mm->num_unused < MM_UNUSED_TARGET) {
D
Daniel Vetter 已提交
256
					list_add(&next_node->free_stack,
257 258 259 260
						 &mm->unused_nodes);
					++mm->num_unused;
				} else
					kfree(next_node);
261
				spin_unlock(&mm->unused_lock);
262 263 264
			} else {
				next_node->size += cur->size;
				next_node->start = cur->start;
265
				merged = 1;
266 267 268 269
			}
		}
	}
	if (!merged) {
270
		cur->free = 1;
D
Daniel Vetter 已提交
271
		list_add(&cur->free_stack, &mm->free_stack);
272
	} else {
D
Daniel Vetter 已提交
273
		list_del(&cur->node_list);
274
		spin_lock(&mm->unused_lock);
275
		if (mm->num_unused < MM_UNUSED_TARGET) {
D
Daniel Vetter 已提交
276
			list_add(&cur->free_stack, &mm->unused_nodes);
277 278 279
			++mm->num_unused;
		} else
			kfree(cur);
280
		spin_unlock(&mm->unused_lock);
281 282
	}
}
283

284
EXPORT_SYMBOL(drm_mm_put_block);
285

286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
static int check_free_mm_node(struct drm_mm_node *entry, unsigned long size,
			      unsigned alignment)
{
	unsigned wasted = 0;

	if (entry->size < size)
		return 0;

	if (alignment) {
		register unsigned tmp = entry->start % alignment;
		if (tmp)
			wasted = alignment - tmp;
	}

	if (entry->size >= size + wasted) {
		return 1;
	}

	return 0;
}

307 308 309
struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm,
				       unsigned long size,
				       unsigned alignment, int best_match)
310
{
D
Dave Airlie 已提交
311 312
	struct drm_mm_node *entry;
	struct drm_mm_node *best;
313 314 315 316 317
	unsigned long best_size;

	best = NULL;
	best_size = ~0UL;

D
Daniel Vetter 已提交
318
	list_for_each_entry(entry, &mm->free_stack, free_stack) {
319
		if (!check_free_mm_node(entry, size, alignment))
320 321
			continue;

322 323
		if (!best_match)
			return entry;
324

325 326 327
		if (entry->size < best_size) {
			best = entry;
			best_size = entry->size;
328 329 330 331 332
		}
	}

	return best;
}
333
EXPORT_SYMBOL(drm_mm_search_free);
334

335 336 337 338 339 340 341 342 343 344 345 346 347 348
struct drm_mm_node *drm_mm_search_free_in_range(const struct drm_mm *mm,
						unsigned long size,
						unsigned alignment,
						unsigned long start,
						unsigned long end,
						int best_match)
{
	struct drm_mm_node *entry;
	struct drm_mm_node *best;
	unsigned long best_size;

	best = NULL;
	best_size = ~0UL;

D
Daniel Vetter 已提交
349
	list_for_each_entry(entry, &mm->free_stack, free_stack) {
350
		if (entry->start > end || (entry->start+entry->size) < start)
351 352
			continue;

353
		if (!check_free_mm_node(entry, size, alignment))
354 355
			continue;

356 357
		if (!best_match)
			return entry;
358

359 360 361
		if (entry->size < best_size) {
			best = entry;
			best_size = entry->size;
362 363 364 365 366 367 368
		}
	}

	return best;
}
EXPORT_SYMBOL(drm_mm_search_free_in_range);

D
Dave Airlie 已提交
369
int drm_mm_clean(struct drm_mm * mm)
370
{
D
Daniel Vetter 已提交
371
	struct list_head *head = &mm->node_list;
372

373 374
	return (head->next->next == head);
}
375
EXPORT_SYMBOL(drm_mm_clean);
376

D
Dave Airlie 已提交
377
int drm_mm_init(struct drm_mm * mm, unsigned long start, unsigned long size)
378
{
D
Daniel Vetter 已提交
379 380
	INIT_LIST_HEAD(&mm->node_list);
	INIT_LIST_HEAD(&mm->free_stack);
381 382 383
	INIT_LIST_HEAD(&mm->unused_nodes);
	mm->num_unused = 0;
	spin_lock_init(&mm->unused_lock);
384

385
	return drm_mm_create_tail_node(mm, start, size, 0);
386
}
387
EXPORT_SYMBOL(drm_mm_init);
388

D
Dave Airlie 已提交
389
void drm_mm_takedown(struct drm_mm * mm)
390
{
D
Daniel Vetter 已提交
391
	struct list_head *bnode = mm->free_stack.next;
D
Dave Airlie 已提交
392
	struct drm_mm_node *entry;
393
	struct drm_mm_node *next;
394

D
Daniel Vetter 已提交
395
	entry = list_entry(bnode, struct drm_mm_node, free_stack);
396

D
Daniel Vetter 已提交
397 398
	if (entry->node_list.next != &mm->node_list ||
	    entry->free_stack.next != &mm->free_stack) {
399 400 401 402
		DRM_ERROR("Memory manager not clean. Delaying takedown\n");
		return;
	}

D
Daniel Vetter 已提交
403 404
	list_del(&entry->free_stack);
	list_del(&entry->node_list);
405 406 407
	kfree(entry);

	spin_lock(&mm->unused_lock);
D
Daniel Vetter 已提交
408 409
	list_for_each_entry_safe(entry, next, &mm->unused_nodes, free_stack) {
		list_del(&entry->free_stack);
410 411 412 413
		kfree(entry);
		--mm->num_unused;
	}
	spin_unlock(&mm->unused_lock);
414

415
	BUG_ON(mm->num_unused != 0);
416
}
D
Dave Airlie 已提交
417
EXPORT_SYMBOL(drm_mm_takedown);
418

419 420 421 422 423
void drm_mm_debug_table(struct drm_mm *mm, const char *prefix)
{
	struct drm_mm_node *entry;
	int total_used = 0, total_free = 0, total = 0;

D
Daniel Vetter 已提交
424
	list_for_each_entry(entry, &mm->node_list, node_list) {
425 426 427 428 429 430 431 432 433 434 435 436 437 438
		printk(KERN_DEBUG "%s 0x%08lx-0x%08lx: %8ld: %s\n",
			prefix, entry->start, entry->start + entry->size,
			entry->size, entry->free ? "free" : "used");
		total += entry->size;
		if (entry->free)
			total_free += entry->size;
		else
			total_used += entry->size;
	}
	printk(KERN_DEBUG "%s total: %d, used %d free %d\n", prefix, total,
		total_used, total_free);
}
EXPORT_SYMBOL(drm_mm_debug_table);

439 440 441 442 443 444
#if defined(CONFIG_DEBUG_FS)
int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm)
{
	struct drm_mm_node *entry;
	int total_used = 0, total_free = 0, total = 0;

D
Daniel Vetter 已提交
445
	list_for_each_entry(entry, &mm->node_list, node_list) {
446 447 448 449 450 451 452
		seq_printf(m, "0x%08lx-0x%08lx: 0x%08lx: %s\n", entry->start, entry->start + entry->size, entry->size, entry->free ? "free" : "used");
		total += entry->size;
		if (entry->free)
			total_free += entry->size;
		else
			total_used += entry->size;
	}
453
	seq_printf(m, "total: %d, used %d free %d\n", total, total_used, total_free);
454 455 456 457
	return 0;
}
EXPORT_SYMBOL(drm_mm_dump_table);
#endif