blob: b751b8e1e2055dd36e356a0f0a1daad426377cb1 [file] [log] [blame]
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +10001/**************************************************************************
2 *
3 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 *
27 **************************************************************************/
28
29/*
30 * Generic simple memory manager implementation. Intended to be used as a base
31 * class implementation for more advanced memory managers.
32 *
33 * Note that the algorithm used is quite simple and there might be substantial
34 * performance gains if a smarter free list is implemented. Currently it is just an
35 * unordered stack of free regions. This could easily be improved if an RB-tree
36 * is used instead. At least if we expect heavy fragmentation.
37 *
38 * Aligned allocations can also see improvement.
39 *
40 * Authors:
Jan Engelhardt96de0e22007-10-19 23:21:04 +020041 * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +100042 */
43
David Howells760285e2012-10-02 18:01:07 +010044#include <drm/drmP.h>
45#include <drm/drm_mm.h>
Thomas Hellstrom1d584202007-01-08 22:25:47 +110046#include <linux/slab.h>
Dave Airliefa8a1232009-08-26 13:13:37 +100047#include <linux/seq_file.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040048#include <linux/export.h>
Thomas Hellstrom1d584202007-01-08 22:25:47 +110049
Jerome Glisse249d6042009-04-08 17:11:16 +020050#define MM_UNUSED_TARGET 4
51
Jerome Glisse249d6042009-04-08 17:11:16 +020052static struct drm_mm_node *drm_mm_kmalloc(struct drm_mm *mm, int atomic)
Thomas Hellstrom1d584202007-01-08 22:25:47 +110053{
Dave Airlie55910512007-07-11 16:53:40 +100054 struct drm_mm_node *child;
Thomas Hellstrom1d584202007-01-08 22:25:47 +110055
Jerome Glisse249d6042009-04-08 17:11:16 +020056 if (atomic)
Daniel Vetter709ea972010-07-02 15:02:16 +010057 child = kzalloc(sizeof(*child), GFP_ATOMIC);
Jerome Glisse249d6042009-04-08 17:11:16 +020058 else
Daniel Vetter709ea972010-07-02 15:02:16 +010059 child = kzalloc(sizeof(*child), GFP_KERNEL);
Jerome Glisse249d6042009-04-08 17:11:16 +020060
61 if (unlikely(child == NULL)) {
62 spin_lock(&mm->unused_lock);
63 if (list_empty(&mm->unused_nodes))
64 child = NULL;
65 else {
66 child =
67 list_entry(mm->unused_nodes.next,
Daniel Vetterea7b1dd2011-02-18 17:59:12 +010068 struct drm_mm_node, node_list);
69 list_del(&child->node_list);
Jerome Glisse249d6042009-04-08 17:11:16 +020070 --mm->num_unused;
71 }
72 spin_unlock(&mm->unused_lock);
73 }
74 return child;
75}
76
Jerome Glissea698cf32009-11-13 20:56:58 +010077/* drm_mm_pre_get() - pre allocate drm_mm_node structure
78 * drm_mm: memory manager struct we are pre-allocating for
79 *
80 * Returns 0 on success or -ENOMEM if allocation fails.
81 */
Jerome Glisse249d6042009-04-08 17:11:16 +020082int drm_mm_pre_get(struct drm_mm *mm)
83{
84 struct drm_mm_node *node;
85
86 spin_lock(&mm->unused_lock);
87 while (mm->num_unused < MM_UNUSED_TARGET) {
88 spin_unlock(&mm->unused_lock);
Daniel Vetter709ea972010-07-02 15:02:16 +010089 node = kzalloc(sizeof(*node), GFP_KERNEL);
Jerome Glisse249d6042009-04-08 17:11:16 +020090 spin_lock(&mm->unused_lock);
91
92 if (unlikely(node == NULL)) {
93 int ret = (mm->num_unused < 2) ? -ENOMEM : 0;
94 spin_unlock(&mm->unused_lock);
95 return ret;
96 }
97 ++mm->num_unused;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +010098 list_add_tail(&node->node_list, &mm->unused_nodes);
Jerome Glisse249d6042009-04-08 17:11:16 +020099 }
100 spin_unlock(&mm->unused_lock);
101 return 0;
102}
103EXPORT_SYMBOL(drm_mm_pre_get);
104
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100105static void drm_mm_insert_helper(struct drm_mm_node *hole_node,
106 struct drm_mm_node *node,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100107 unsigned long size, unsigned alignment,
108 unsigned long color)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000109{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100110 struct drm_mm *mm = hole_node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100111 unsigned long hole_start = drm_mm_hole_node_start(hole_node);
112 unsigned long hole_end = drm_mm_hole_node_end(hole_node);
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100113 unsigned long adj_start = hole_start;
114 unsigned long adj_end = hole_end;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100115
Chris Wilson9e8944a2012-11-15 11:32:17 +0000116 BUG_ON(node->allocated);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100117
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100118 if (mm->color_adjust)
119 mm->color_adjust(hole_node, color, &adj_start, &adj_end);
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100120
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100121 if (alignment) {
122 unsigned tmp = adj_start % alignment;
123 if (tmp)
124 adj_start += alignment - tmp;
125 }
126
127 if (adj_start == hole_start) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100128 hole_node->hole_follows = 0;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100129 list_del(&hole_node->hole_stack);
130 }
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000131
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100132 node->start = adj_start;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100133 node->size = size;
134 node->mm = mm;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100135 node->color = color;
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100136 node->allocated = 1;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100137
138 INIT_LIST_HEAD(&node->hole_stack);
139 list_add(&node->node_list, &hole_node->node_list);
140
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100141 BUG_ON(node->start + node->size > adj_end);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100142
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100143 node->hole_follows = 0;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000144 if (__drm_mm_hole_node_start(node) < hole_end) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100145 list_add(&node->hole_stack, &mm->hole_stack);
146 node->hole_follows = 1;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000147 }
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100148}
149
Chris Wilson5973c7e2012-11-15 11:32:16 +0000150struct drm_mm_node *drm_mm_create_block(struct drm_mm *mm,
151 unsigned long start,
152 unsigned long size,
153 bool atomic)
154{
155 struct drm_mm_node *hole, *node;
156 unsigned long end = start + size;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000157 unsigned long hole_start;
158 unsigned long hole_end;
Chris Wilson5973c7e2012-11-15 11:32:16 +0000159
Chris Wilson9e8944a2012-11-15 11:32:17 +0000160 drm_mm_for_each_hole(hole, mm, hole_start, hole_end) {
Chris Wilson5973c7e2012-11-15 11:32:16 +0000161 if (hole_start > start || hole_end < end)
162 continue;
163
164 node = drm_mm_kmalloc(mm, atomic);
165 if (unlikely(node == NULL))
166 return NULL;
167
168 node->start = start;
169 node->size = size;
170 node->mm = mm;
171 node->allocated = 1;
172
173 INIT_LIST_HEAD(&node->hole_stack);
174 list_add(&node->node_list, &hole->node_list);
175
176 if (start == hole_start) {
177 hole->hole_follows = 0;
178 list_del_init(&hole->hole_stack);
179 }
180
181 node->hole_follows = 0;
182 if (end != hole_end) {
183 list_add(&node->hole_stack, &mm->hole_stack);
184 node->hole_follows = 1;
185 }
186
187 return node;
188 }
189
190 WARN(1, "no hole found for block 0x%lx + 0x%lx\n", start, size);
191 return NULL;
192}
193EXPORT_SYMBOL(drm_mm_create_block);
194
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100195struct drm_mm_node *drm_mm_get_block_generic(struct drm_mm_node *hole_node,
196 unsigned long size,
197 unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100198 unsigned long color,
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100199 int atomic)
200{
201 struct drm_mm_node *node;
202
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100203 node = drm_mm_kmalloc(hole_node->mm, atomic);
204 if (unlikely(node == NULL))
205 return NULL;
206
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100207 drm_mm_insert_helper(hole_node, node, size, alignment, color);
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100208
Chris Wilsone6c03c52009-05-22 14:14:22 +0100209 return node;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000210}
Thomas Hellstrom89579f72009-06-17 12:29:56 +0200211EXPORT_SYMBOL(drm_mm_get_block_generic);
Jerome Glisse249d6042009-04-08 17:11:16 +0200212
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100213/**
214 * Search for free space and insert a preallocated memory node. Returns
215 * -ENOSPC if no suitable free area is available. The preallocated memory node
216 * must be cleared.
217 */
218int drm_mm_insert_node(struct drm_mm *mm, struct drm_mm_node *node,
219 unsigned long size, unsigned alignment)
220{
221 struct drm_mm_node *hole_node;
222
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100223 hole_node = drm_mm_search_free(mm, size, alignment, false);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100224 if (!hole_node)
225 return -ENOSPC;
226
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100227 drm_mm_insert_helper(hole_node, node, size, alignment, 0);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100228
229 return 0;
230}
231EXPORT_SYMBOL(drm_mm_insert_node);
232
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100233static void drm_mm_insert_helper_range(struct drm_mm_node *hole_node,
234 struct drm_mm_node *node,
235 unsigned long size, unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100236 unsigned long color,
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100237 unsigned long start, unsigned long end)
Jerome Glissea2e68e92009-12-07 15:52:56 +0100238{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100239 struct drm_mm *mm = hole_node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100240 unsigned long hole_start = drm_mm_hole_node_start(hole_node);
241 unsigned long hole_end = drm_mm_hole_node_end(hole_node);
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100242 unsigned long adj_start = hole_start;
243 unsigned long adj_end = hole_end;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100244
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100245 BUG_ON(!hole_node->hole_follows || node->allocated);
246
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100247 if (mm->color_adjust)
248 mm->color_adjust(hole_node, color, &adj_start, &adj_end);
Jerome Glissea2e68e92009-12-07 15:52:56 +0100249
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100250 if (adj_start < start)
251 adj_start = start;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100252
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100253 if (alignment) {
254 unsigned tmp = adj_start % alignment;
255 if (tmp)
256 adj_start += alignment - tmp;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100257 }
258
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100259 if (adj_start == hole_start) {
260 hole_node->hole_follows = 0;
261 list_del(&hole_node->hole_stack);
262 }
263
264 node->start = adj_start;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100265 node->size = size;
266 node->mm = mm;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100267 node->color = color;
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100268 node->allocated = 1;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100269
270 INIT_LIST_HEAD(&node->hole_stack);
271 list_add(&node->node_list, &hole_node->node_list);
272
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100273 BUG_ON(node->start + node->size > adj_end);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100274 BUG_ON(node->start + node->size > end);
275
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100276 node->hole_follows = 0;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000277 if (__drm_mm_hole_node_start(node) < hole_end) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100278 list_add(&node->hole_stack, &mm->hole_stack);
279 node->hole_follows = 1;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100280 }
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100281}
282
283struct drm_mm_node *drm_mm_get_block_range_generic(struct drm_mm_node *hole_node,
284 unsigned long size,
285 unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100286 unsigned long color,
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100287 unsigned long start,
288 unsigned long end,
289 int atomic)
290{
291 struct drm_mm_node *node;
292
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100293 node = drm_mm_kmalloc(hole_node->mm, atomic);
294 if (unlikely(node == NULL))
295 return NULL;
296
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100297 drm_mm_insert_helper_range(hole_node, node, size, alignment, color,
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100298 start, end);
Jerome Glissea2e68e92009-12-07 15:52:56 +0100299
Jerome Glissea2e68e92009-12-07 15:52:56 +0100300 return node;
301}
302EXPORT_SYMBOL(drm_mm_get_block_range_generic);
303
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100304/**
305 * Search for free space and insert a preallocated memory node. Returns
306 * -ENOSPC if no suitable free area is available. This is for range
307 * restricted allocations. The preallocated memory node must be cleared.
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000308 */
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100309int drm_mm_insert_node_in_range(struct drm_mm *mm, struct drm_mm_node *node,
310 unsigned long size, unsigned alignment,
311 unsigned long start, unsigned long end)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000312{
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100313 struct drm_mm_node *hole_node;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000314
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100315 hole_node = drm_mm_search_free_in_range(mm, size, alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100316 start, end, false);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100317 if (!hole_node)
318 return -ENOSPC;
319
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100320 drm_mm_insert_helper_range(hole_node, node, size, alignment, 0,
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100321 start, end);
322
323 return 0;
324}
325EXPORT_SYMBOL(drm_mm_insert_node_in_range);
326
327/**
328 * Remove a memory node from the allocator.
329 */
330void drm_mm_remove_node(struct drm_mm_node *node)
331{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100332 struct drm_mm *mm = node->mm;
333 struct drm_mm_node *prev_node;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000334
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100335 BUG_ON(node->scanned_block || node->scanned_prev_free
336 || node->scanned_next_free);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000337
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100338 prev_node =
339 list_entry(node->node_list.prev, struct drm_mm_node, node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100340
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100341 if (node->hole_follows) {
Chris Wilson9e8944a2012-11-15 11:32:17 +0000342 BUG_ON(__drm_mm_hole_node_start(node) ==
343 __drm_mm_hole_node_end(node));
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100344 list_del(&node->hole_stack);
345 } else
Chris Wilson9e8944a2012-11-15 11:32:17 +0000346 BUG_ON(__drm_mm_hole_node_start(node) !=
347 __drm_mm_hole_node_end(node));
348
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100349
350 if (!prev_node->hole_follows) {
351 prev_node->hole_follows = 1;
352 list_add(&prev_node->hole_stack, &mm->hole_stack);
353 } else
354 list_move(&prev_node->hole_stack, &mm->hole_stack);
355
356 list_del(&node->node_list);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100357 node->allocated = 0;
358}
359EXPORT_SYMBOL(drm_mm_remove_node);
360
361/*
362 * Remove a memory node from the allocator and free the allocated struct
363 * drm_mm_node. Only to be used on a struct drm_mm_node obtained by one of the
364 * drm_mm_get_block functions.
365 */
366void drm_mm_put_block(struct drm_mm_node *node)
367{
368
369 struct drm_mm *mm = node->mm;
370
371 drm_mm_remove_node(node);
372
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100373 spin_lock(&mm->unused_lock);
374 if (mm->num_unused < MM_UNUSED_TARGET) {
375 list_add(&node->node_list, &mm->unused_nodes);
376 ++mm->num_unused;
377 } else
378 kfree(node);
379 spin_unlock(&mm->unused_lock);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000380}
Eric Anholt673a3942008-07-30 12:06:12 -0700381EXPORT_SYMBOL(drm_mm_put_block);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000382
Daniel Vetter75214732010-08-26 21:44:17 +0200383static int check_free_hole(unsigned long start, unsigned long end,
384 unsigned long size, unsigned alignment)
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100385{
Daniel Vetter75214732010-08-26 21:44:17 +0200386 if (end - start < size)
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100387 return 0;
388
389 if (alignment) {
Daniel Vetter75214732010-08-26 21:44:17 +0200390 unsigned tmp = start % alignment;
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100391 if (tmp)
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100392 start += alignment - tmp;
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100393 }
394
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100395 return end >= start + size;
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100396}
397
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100398struct drm_mm_node *drm_mm_search_free_generic(const struct drm_mm *mm,
399 unsigned long size,
400 unsigned alignment,
401 unsigned long color,
402 bool best_match)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000403{
Dave Airlie55910512007-07-11 16:53:40 +1000404 struct drm_mm_node *entry;
405 struct drm_mm_node *best;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000406 unsigned long adj_start;
407 unsigned long adj_end;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000408 unsigned long best_size;
409
Daniel Vetter709ea972010-07-02 15:02:16 +0100410 BUG_ON(mm->scanned_blocks);
411
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000412 best = NULL;
413 best_size = ~0UL;
414
Chris Wilson9e8944a2012-11-15 11:32:17 +0000415 drm_mm_for_each_hole(entry, mm, adj_start, adj_end) {
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100416 if (mm->color_adjust) {
417 mm->color_adjust(entry, color, &adj_start, &adj_end);
418 if (adj_end <= adj_start)
419 continue;
420 }
421
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100422 if (!check_free_hole(adj_start, adj_end, size, alignment))
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100423 continue;
424
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100425 if (!best_match)
426 return entry;
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100427
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100428 if (entry->size < best_size) {
429 best = entry;
430 best_size = entry->size;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000431 }
432 }
433
434 return best;
435}
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100436EXPORT_SYMBOL(drm_mm_search_free_generic);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000437
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100438struct drm_mm_node *drm_mm_search_free_in_range_generic(const struct drm_mm *mm,
439 unsigned long size,
440 unsigned alignment,
441 unsigned long color,
442 unsigned long start,
443 unsigned long end,
444 bool best_match)
Jerome Glissea2e68e92009-12-07 15:52:56 +0100445{
Jerome Glissea2e68e92009-12-07 15:52:56 +0100446 struct drm_mm_node *entry;
447 struct drm_mm_node *best;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000448 unsigned long adj_start;
449 unsigned long adj_end;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100450 unsigned long best_size;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100451
Daniel Vetter709ea972010-07-02 15:02:16 +0100452 BUG_ON(mm->scanned_blocks);
453
Jerome Glissea2e68e92009-12-07 15:52:56 +0100454 best = NULL;
455 best_size = ~0UL;
456
Chris Wilson9e8944a2012-11-15 11:32:17 +0000457 drm_mm_for_each_hole(entry, mm, adj_start, adj_end) {
458 if (adj_start < start)
459 adj_start = start;
460 if (adj_end > end)
461 adj_end = end;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100462
463 if (mm->color_adjust) {
464 mm->color_adjust(entry, color, &adj_start, &adj_end);
465 if (adj_end <= adj_start)
466 continue;
467 }
468
Daniel Vetter75214732010-08-26 21:44:17 +0200469 if (!check_free_hole(adj_start, adj_end, size, alignment))
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100470 continue;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100471
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100472 if (!best_match)
473 return entry;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100474
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100475 if (entry->size < best_size) {
476 best = entry;
477 best_size = entry->size;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100478 }
479 }
480
481 return best;
482}
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100483EXPORT_SYMBOL(drm_mm_search_free_in_range_generic);
Jerome Glissea2e68e92009-12-07 15:52:56 +0100484
Daniel Vetter709ea972010-07-02 15:02:16 +0100485/**
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100486 * Moves an allocation. To be used with embedded struct drm_mm_node.
487 */
488void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new)
489{
490 list_replace(&old->node_list, &new->node_list);
Daniel Vetter2bbd4492011-05-06 23:47:53 +0200491 list_replace(&old->hole_stack, &new->hole_stack);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100492 new->hole_follows = old->hole_follows;
493 new->mm = old->mm;
494 new->start = old->start;
495 new->size = old->size;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100496 new->color = old->color;
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100497
498 old->allocated = 0;
499 new->allocated = 1;
500}
501EXPORT_SYMBOL(drm_mm_replace_node);
502
503/**
Daniel Vetter709ea972010-07-02 15:02:16 +0100504 * Initializa lru scanning.
505 *
506 * This simply sets up the scanning routines with the parameters for the desired
507 * hole.
508 *
509 * Warning: As long as the scan list is non-empty, no other operations than
510 * adding/removing nodes to/from the scan list are allowed.
511 */
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100512void drm_mm_init_scan(struct drm_mm *mm,
513 unsigned long size,
514 unsigned alignment,
515 unsigned long color)
Daniel Vetter709ea972010-07-02 15:02:16 +0100516{
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100517 mm->scan_color = color;
Daniel Vetter709ea972010-07-02 15:02:16 +0100518 mm->scan_alignment = alignment;
519 mm->scan_size = size;
520 mm->scanned_blocks = 0;
521 mm->scan_hit_start = 0;
522 mm->scan_hit_size = 0;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200523 mm->scan_check_range = 0;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100524 mm->prev_scanned_node = NULL;
Daniel Vetter709ea972010-07-02 15:02:16 +0100525}
526EXPORT_SYMBOL(drm_mm_init_scan);
527
528/**
Daniel Vetterd935cc62010-09-16 15:13:11 +0200529 * Initializa lru scanning.
530 *
531 * This simply sets up the scanning routines with the parameters for the desired
532 * hole. This version is for range-restricted scans.
533 *
534 * Warning: As long as the scan list is non-empty, no other operations than
535 * adding/removing nodes to/from the scan list are allowed.
536 */
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100537void drm_mm_init_scan_with_range(struct drm_mm *mm,
538 unsigned long size,
Daniel Vetterd935cc62010-09-16 15:13:11 +0200539 unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100540 unsigned long color,
Daniel Vetterd935cc62010-09-16 15:13:11 +0200541 unsigned long start,
542 unsigned long end)
543{
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100544 mm->scan_color = color;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200545 mm->scan_alignment = alignment;
546 mm->scan_size = size;
547 mm->scanned_blocks = 0;
548 mm->scan_hit_start = 0;
549 mm->scan_hit_size = 0;
550 mm->scan_start = start;
551 mm->scan_end = end;
552 mm->scan_check_range = 1;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100553 mm->prev_scanned_node = NULL;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200554}
555EXPORT_SYMBOL(drm_mm_init_scan_with_range);
556
557/**
Daniel Vetter709ea972010-07-02 15:02:16 +0100558 * Add a node to the scan list that might be freed to make space for the desired
559 * hole.
560 *
561 * Returns non-zero, if a hole has been found, zero otherwise.
562 */
563int drm_mm_scan_add_block(struct drm_mm_node *node)
564{
565 struct drm_mm *mm = node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100566 struct drm_mm_node *prev_node;
567 unsigned long hole_start, hole_end;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200568 unsigned long adj_start;
569 unsigned long adj_end;
Daniel Vetter709ea972010-07-02 15:02:16 +0100570
571 mm->scanned_blocks++;
572
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100573 BUG_ON(node->scanned_block);
Daniel Vetter709ea972010-07-02 15:02:16 +0100574 node->scanned_block = 1;
Daniel Vetter709ea972010-07-02 15:02:16 +0100575
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100576 prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
577 node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100578
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100579 node->scanned_preceeds_hole = prev_node->hole_follows;
580 prev_node->hole_follows = 1;
581 list_del(&node->node_list);
582 node->node_list.prev = &prev_node->node_list;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100583 node->node_list.next = &mm->prev_scanned_node->node_list;
584 mm->prev_scanned_node = node;
Daniel Vetter709ea972010-07-02 15:02:16 +0100585
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100586 hole_start = drm_mm_hole_node_start(prev_node);
587 hole_end = drm_mm_hole_node_end(prev_node);
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100588
589 adj_start = hole_start;
590 adj_end = hole_end;
591
592 if (mm->color_adjust)
593 mm->color_adjust(prev_node, mm->scan_color, &adj_start, &adj_end);
594
Daniel Vetterd935cc62010-09-16 15:13:11 +0200595 if (mm->scan_check_range) {
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100596 if (adj_start < mm->scan_start)
597 adj_start = mm->scan_start;
598 if (adj_end > mm->scan_end)
599 adj_end = mm->scan_end;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200600 }
601
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100602 if (check_free_hole(adj_start, adj_end,
Daniel Vetter75214732010-08-26 21:44:17 +0200603 mm->scan_size, mm->scan_alignment)) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100604 mm->scan_hit_start = hole_start;
605 mm->scan_hit_size = hole_end;
Daniel Vetter709ea972010-07-02 15:02:16 +0100606
607 return 1;
608 }
609
610 return 0;
611}
612EXPORT_SYMBOL(drm_mm_scan_add_block);
613
614/**
615 * Remove a node from the scan list.
616 *
617 * Nodes _must_ be removed in the exact same order from the scan list as they
618 * have been added, otherwise the internal state of the memory manager will be
619 * corrupted.
620 *
621 * When the scan list is empty, the selected memory nodes can be freed. An
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300622 * immediately following drm_mm_search_free with best_match = 0 will then return
Daniel Vetter709ea972010-07-02 15:02:16 +0100623 * the just freed block (because its at the top of the free_stack list).
624 *
625 * Returns one if this block should be evicted, zero otherwise. Will always
626 * return zero when no hole has been found.
627 */
628int drm_mm_scan_remove_block(struct drm_mm_node *node)
629{
630 struct drm_mm *mm = node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100631 struct drm_mm_node *prev_node;
Daniel Vetter709ea972010-07-02 15:02:16 +0100632
633 mm->scanned_blocks--;
634
635 BUG_ON(!node->scanned_block);
636 node->scanned_block = 0;
Daniel Vetter709ea972010-07-02 15:02:16 +0100637
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100638 prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
639 node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100640
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100641 prev_node->hole_follows = node->scanned_preceeds_hole;
642 INIT_LIST_HEAD(&node->node_list);
643 list_add(&node->node_list, &prev_node->node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100644
645 /* Only need to check for containement because start&size for the
646 * complete resulting free block (not just the desired part) is
647 * stored. */
648 if (node->start >= mm->scan_hit_start &&
649 node->start + node->size
650 <= mm->scan_hit_start + mm->scan_hit_size) {
651 return 1;
652 }
653
654 return 0;
655}
656EXPORT_SYMBOL(drm_mm_scan_remove_block);
657
Dave Airlie55910512007-07-11 16:53:40 +1000658int drm_mm_clean(struct drm_mm * mm)
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100659{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100660 struct list_head *head = &mm->head_node.node_list;
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100661
662 return (head->next->next == head);
663}
Jerome Glisse249d6042009-04-08 17:11:16 +0200664EXPORT_SYMBOL(drm_mm_clean);
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100665
Dave Airlie55910512007-07-11 16:53:40 +1000666int drm_mm_init(struct drm_mm * mm, unsigned long start, unsigned long size)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000667{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100668 INIT_LIST_HEAD(&mm->hole_stack);
Jerome Glisse249d6042009-04-08 17:11:16 +0200669 INIT_LIST_HEAD(&mm->unused_nodes);
670 mm->num_unused = 0;
Daniel Vetter709ea972010-07-02 15:02:16 +0100671 mm->scanned_blocks = 0;
Jerome Glisse249d6042009-04-08 17:11:16 +0200672 spin_lock_init(&mm->unused_lock);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000673
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100674 /* Clever trick to avoid a special case in the free hole tracking. */
675 INIT_LIST_HEAD(&mm->head_node.node_list);
676 INIT_LIST_HEAD(&mm->head_node.hole_stack);
677 mm->head_node.hole_follows = 1;
678 mm->head_node.scanned_block = 0;
679 mm->head_node.scanned_prev_free = 0;
680 mm->head_node.scanned_next_free = 0;
681 mm->head_node.mm = mm;
682 mm->head_node.start = start + size;
683 mm->head_node.size = start - mm->head_node.start;
684 list_add_tail(&mm->head_node.hole_stack, &mm->hole_stack);
685
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100686 mm->color_adjust = NULL;
687
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100688 return 0;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000689}
Eric Anholt673a3942008-07-30 12:06:12 -0700690EXPORT_SYMBOL(drm_mm_init);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000691
Dave Airlie55910512007-07-11 16:53:40 +1000692void drm_mm_takedown(struct drm_mm * mm)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000693{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100694 struct drm_mm_node *entry, *next;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000695
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100696 if (!list_empty(&mm->head_node.node_list)) {
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000697 DRM_ERROR("Memory manager not clean. Delaying takedown\n");
698 return;
699 }
700
Jerome Glisse249d6042009-04-08 17:11:16 +0200701 spin_lock(&mm->unused_lock);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100702 list_for_each_entry_safe(entry, next, &mm->unused_nodes, node_list) {
703 list_del(&entry->node_list);
Jerome Glisse249d6042009-04-08 17:11:16 +0200704 kfree(entry);
705 --mm->num_unused;
706 }
707 spin_unlock(&mm->unused_lock);
708
709 BUG_ON(mm->num_unused != 0);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000710}
Dave Airlief453ba02008-11-07 14:05:41 -0800711EXPORT_SYMBOL(drm_mm_takedown);
Dave Airliefa8a1232009-08-26 13:13:37 +1000712
Jerome Glisse99d7e482009-12-09 21:55:09 +0100713void drm_mm_debug_table(struct drm_mm *mm, const char *prefix)
714{
715 struct drm_mm_node *entry;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100716 unsigned long total_used = 0, total_free = 0, total = 0;
717 unsigned long hole_start, hole_end, hole_size;
Jerome Glisse99d7e482009-12-09 21:55:09 +0100718
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100719 hole_start = drm_mm_hole_node_start(&mm->head_node);
720 hole_end = drm_mm_hole_node_end(&mm->head_node);
721 hole_size = hole_end - hole_start;
722 if (hole_size)
723 printk(KERN_DEBUG "%s 0x%08lx-0x%08lx: %8lu: free\n",
724 prefix, hole_start, hole_end,
725 hole_size);
726 total_free += hole_size;
727
728 drm_mm_for_each_node(entry, mm) {
729 printk(KERN_DEBUG "%s 0x%08lx-0x%08lx: %8lu: used\n",
Jerome Glisse99d7e482009-12-09 21:55:09 +0100730 prefix, entry->start, entry->start + entry->size,
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100731 entry->size);
732 total_used += entry->size;
733
734 if (entry->hole_follows) {
735 hole_start = drm_mm_hole_node_start(entry);
736 hole_end = drm_mm_hole_node_end(entry);
737 hole_size = hole_end - hole_start;
738 printk(KERN_DEBUG "%s 0x%08lx-0x%08lx: %8lu: free\n",
739 prefix, hole_start, hole_end,
740 hole_size);
741 total_free += hole_size;
742 }
Jerome Glisse99d7e482009-12-09 21:55:09 +0100743 }
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100744 total = total_free + total_used;
745
746 printk(KERN_DEBUG "%s total: %lu, used %lu free %lu\n", prefix, total,
Jerome Glisse99d7e482009-12-09 21:55:09 +0100747 total_used, total_free);
748}
749EXPORT_SYMBOL(drm_mm_debug_table);
750
Dave Airliefa8a1232009-08-26 13:13:37 +1000751#if defined(CONFIG_DEBUG_FS)
752int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm)
753{
754 struct drm_mm_node *entry;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100755 unsigned long total_used = 0, total_free = 0, total = 0;
756 unsigned long hole_start, hole_end, hole_size;
Dave Airliefa8a1232009-08-26 13:13:37 +1000757
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100758 hole_start = drm_mm_hole_node_start(&mm->head_node);
759 hole_end = drm_mm_hole_node_end(&mm->head_node);
760 hole_size = hole_end - hole_start;
761 if (hole_size)
762 seq_printf(m, "0x%08lx-0x%08lx: 0x%08lx: free\n",
763 hole_start, hole_end, hole_size);
764 total_free += hole_size;
765
766 drm_mm_for_each_node(entry, mm) {
767 seq_printf(m, "0x%08lx-0x%08lx: 0x%08lx: used\n",
768 entry->start, entry->start + entry->size,
769 entry->size);
770 total_used += entry->size;
771 if (entry->hole_follows) {
Daniel Vetter2bbd4492011-05-06 23:47:53 +0200772 hole_start = drm_mm_hole_node_start(entry);
773 hole_end = drm_mm_hole_node_end(entry);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100774 hole_size = hole_end - hole_start;
775 seq_printf(m, "0x%08lx-0x%08lx: 0x%08lx: free\n",
776 hole_start, hole_end, hole_size);
777 total_free += hole_size;
778 }
Dave Airliefa8a1232009-08-26 13:13:37 +1000779 }
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100780 total = total_free + total_used;
781
782 seq_printf(m, "total: %lu, used %lu free %lu\n", total, total_used, total_free);
Dave Airliefa8a1232009-08-26 13:13:37 +1000783 return 0;
784}
785EXPORT_SYMBOL(drm_mm_dump_table);
786#endif