drm_mm.c 7.3 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 46
#include <linux/slab.h>

D
Dave Airlie 已提交
47
unsigned long drm_mm_tail_space(struct drm_mm *mm)
48 49
{
	struct list_head *tail_node;
D
Dave Airlie 已提交
50
	struct drm_mm_node *entry;
51 52

	tail_node = mm->ml_entry.prev;
D
Dave Airlie 已提交
53
	entry = list_entry(tail_node, struct drm_mm_node, ml_entry);
54 55 56 57 58 59
	if (!entry->free)
		return 0;

	return entry->size;
}

D
Dave Airlie 已提交
60
int drm_mm_remove_space_from_tail(struct drm_mm *mm, unsigned long size)
61 62
{
	struct list_head *tail_node;
D
Dave Airlie 已提交
63
	struct drm_mm_node *entry;
64 65

	tail_node = mm->ml_entry.prev;
D
Dave Airlie 已提交
66
	entry = list_entry(tail_node, struct drm_mm_node, ml_entry);
67 68 69 70 71 72 73 74 75 76 77
	if (!entry->free)
		return -ENOMEM;

	if (entry->size <= size)
		return -ENOMEM;

	entry->size -= size;
	return 0;
}


D
Dave Airlie 已提交
78
static int drm_mm_create_tail_node(struct drm_mm *mm,
79 80 81
			    unsigned long start,
			    unsigned long size)
{
D
Dave Airlie 已提交
82
	struct drm_mm_node *child;
83

D
Dave Airlie 已提交
84
	child = (struct drm_mm_node *)
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
		drm_alloc(sizeof(*child), DRM_MEM_MM);
	if (!child)
		return -ENOMEM;

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

	list_add_tail(&child->ml_entry, &mm->ml_entry);
	list_add_tail(&child->fl_entry, &mm->fl_entry);

	return 0;
}


D
Dave Airlie 已提交
101
int drm_mm_add_space_to_tail(struct drm_mm *mm, unsigned long size)
102 103
{
	struct list_head *tail_node;
D
Dave Airlie 已提交
104
	struct drm_mm_node *entry;
105 106

	tail_node = mm->ml_entry.prev;
D
Dave Airlie 已提交
107
	entry = list_entry(tail_node, struct drm_mm_node, ml_entry);
108 109 110 111 112 113 114
	if (!entry->free) {
		return drm_mm_create_tail_node(mm, entry->start + entry->size, size);
	}
	entry->size += size;
	return 0;
}

D
Dave Airlie 已提交
115
static struct drm_mm_node *drm_mm_split_at_start(struct drm_mm_node *parent,
116 117
					    unsigned long size)
{
D
Dave Airlie 已提交
118
	struct drm_mm_node *child;
119

D
Dave Airlie 已提交
120
	child = (struct drm_mm_node *)
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
		drm_alloc(sizeof(*child), DRM_MEM_MM);
	if (!child)
		return NULL;

	INIT_LIST_HEAD(&child->fl_entry);

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

	list_add_tail(&child->ml_entry, &parent->ml_entry);
	INIT_LIST_HEAD(&child->fl_entry);

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


141

D
Dave Airlie 已提交
142
struct drm_mm_node *drm_mm_get_block(struct drm_mm_node * parent,
143 144 145
				unsigned long size, unsigned alignment)
{

D
Dave Airlie 已提交
146 147
	struct drm_mm_node *align_splitoff = NULL;
	struct drm_mm_node *child;
148
	unsigned tmp = 0;
149 150

	if (alignment)
151 152 153 154 155 156 157
		tmp = parent->start % alignment;

	if (tmp) {
		align_splitoff = drm_mm_split_at_start(parent, alignment - tmp);
		if (!align_splitoff)
			return NULL;
	}
158 159 160

	if (parent->size == size) {
		list_del_init(&parent->fl_entry);
161
		parent->free = 0;
162 163
		return parent;
	} else {
164 165
		child = drm_mm_split_at_start(parent, size);
	}
166

167 168
	if (align_splitoff)
		drm_mm_put_block(align_splitoff);
169 170 171

	return child;
}
172
EXPORT_SYMBOL(drm_mm_get_block);
173 174 175 176 177 178

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

D
Dave Airlie 已提交
179
void drm_mm_put_block(struct drm_mm_node * cur)
180 181
{

D
Dave Airlie 已提交
182
	struct drm_mm *mm = cur->mm;
183
	struct list_head *cur_head = &cur->ml_entry;
184
	struct list_head *root_head = &mm->ml_entry;
D
Dave Airlie 已提交
185 186
	struct drm_mm_node *prev_node = NULL;
	struct drm_mm_node *next_node;
187

188
	int merged = 0;
189 190

	if (cur_head->prev != root_head) {
D
Dave Airlie 已提交
191
		prev_node = list_entry(cur_head->prev, struct drm_mm_node, ml_entry);
192 193
		if (prev_node->free) {
			prev_node->size += cur->size;
194
			merged = 1;
195 196 197
		}
	}
	if (cur_head->next != root_head) {
D
Dave Airlie 已提交
198
		next_node = list_entry(cur_head->next, struct drm_mm_node, ml_entry);
199 200 201 202 203 204 205 206 207 208
		if (next_node->free) {
			if (merged) {
				prev_node->size += next_node->size;
				list_del(&next_node->ml_entry);
				list_del(&next_node->fl_entry);
				drm_free(next_node, sizeof(*next_node),
					 DRM_MEM_MM);
			} else {
				next_node->size += cur->size;
				next_node->start = cur->start;
209
				merged = 1;
210 211 212 213
			}
		}
	}
	if (!merged) {
214
		cur->free = 1;
215
		list_add(&cur->fl_entry, &mm->fl_entry);
216 217 218 219 220
	} else {
		list_del(&cur->ml_entry);
		drm_free(cur, sizeof(*cur), DRM_MEM_MM);
	}
}
221
EXPORT_SYMBOL(drm_mm_put_block);
222

D
Dave Airlie 已提交
223
struct drm_mm_node *drm_mm_search_free(const struct drm_mm * mm,
224 225 226 227
				  unsigned long size,
				  unsigned alignment, int best_match)
{
	struct list_head *list;
228
	const struct list_head *free_stack = &mm->fl_entry;
D
Dave Airlie 已提交
229 230
	struct drm_mm_node *entry;
	struct drm_mm_node *best;
231
	unsigned long best_size;
232
	unsigned wasted;
233 234 235 236 237

	best = NULL;
	best_size = ~0UL;

	list_for_each(list, free_stack) {
D
Dave Airlie 已提交
238
		entry = list_entry(list, struct drm_mm_node, fl_entry);
239 240 241 242 243 244 245 246 247 248 249 250 251
		wasted = 0;

		if (entry->size < size)
			continue;

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


		if (entry->size >= size + wasted) {
252 253 254 255 256 257 258 259 260 261 262 263
			if (!best_match)
				return entry;
			if (size < best_size) {
				best = entry;
				best_size = entry->size;
			}
		}
	}

	return best;
}

D
Dave Airlie 已提交
264
int drm_mm_clean(struct drm_mm * mm)
265
{
266
	struct list_head *head = &mm->ml_entry;
267

268 269
	return (head->next->next == head);
}
270
EXPORT_SYMBOL(drm_mm_search_free);
271

D
Dave Airlie 已提交
272
int drm_mm_init(struct drm_mm * mm, unsigned long start, unsigned long size)
273 274 275
{
	INIT_LIST_HEAD(&mm->ml_entry);
	INIT_LIST_HEAD(&mm->fl_entry);
276

277
	return drm_mm_create_tail_node(mm, start, size);
278
}
279
EXPORT_SYMBOL(drm_mm_init);
280

D
Dave Airlie 已提交
281
void drm_mm_takedown(struct drm_mm * mm)
282
{
283
	struct list_head *bnode = mm->fl_entry.next;
D
Dave Airlie 已提交
284
	struct drm_mm_node *entry;
285

D
Dave Airlie 已提交
286
	entry = list_entry(bnode, struct drm_mm_node, fl_entry);
287

288 289
	if (entry->ml_entry.next != &mm->ml_entry ||
	    entry->fl_entry.next != &mm->fl_entry) {
290 291 292 293 294 295 296 297 298
		DRM_ERROR("Memory manager not clean. Delaying takedown\n");
		return;
	}

	list_del(&entry->fl_entry);
	list_del(&entry->ml_entry);

	drm_free(entry, sizeof(*entry), DRM_MEM_MM);
}
D
Dave Airlie 已提交
299
EXPORT_SYMBOL(drm_mm_takedown);