blob: 86272f04b82f24045bb3b36996a99e2bc4eb40e3 [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 */
Chris Wilsonb8103452012-12-07 20:37:06 +0000218int drm_mm_insert_node_generic(struct drm_mm *mm, struct drm_mm_node *node,
219 unsigned long size, unsigned alignment,
220 unsigned long color)
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100221{
222 struct drm_mm_node *hole_node;
223
Chris Wilsonb8103452012-12-07 20:37:06 +0000224 hole_node = drm_mm_search_free_generic(mm, size, alignment,
225 color, 0);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100226 if (!hole_node)
227 return -ENOSPC;
228
Chris Wilsonb8103452012-12-07 20:37:06 +0000229 drm_mm_insert_helper(hole_node, node, size, alignment, color);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100230 return 0;
231}
Chris Wilsonb8103452012-12-07 20:37:06 +0000232EXPORT_SYMBOL(drm_mm_insert_node_generic);
233
234int drm_mm_insert_node(struct drm_mm *mm, struct drm_mm_node *node,
235 unsigned long size, unsigned alignment)
236{
237 return drm_mm_insert_node_generic(mm, node, size, alignment, 0);
238}
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100239EXPORT_SYMBOL(drm_mm_insert_node);
240
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100241static void drm_mm_insert_helper_range(struct drm_mm_node *hole_node,
242 struct drm_mm_node *node,
243 unsigned long size, unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100244 unsigned long color,
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100245 unsigned long start, unsigned long end)
Jerome Glissea2e68e92009-12-07 15:52:56 +0100246{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100247 struct drm_mm *mm = hole_node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100248 unsigned long hole_start = drm_mm_hole_node_start(hole_node);
249 unsigned long hole_end = drm_mm_hole_node_end(hole_node);
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100250 unsigned long adj_start = hole_start;
251 unsigned long adj_end = hole_end;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100252
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100253 BUG_ON(!hole_node->hole_follows || node->allocated);
254
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100255 if (mm->color_adjust)
256 mm->color_adjust(hole_node, color, &adj_start, &adj_end);
Jerome Glissea2e68e92009-12-07 15:52:56 +0100257
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100258 if (adj_start < start)
259 adj_start = start;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100260
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100261 if (alignment) {
262 unsigned tmp = adj_start % alignment;
263 if (tmp)
264 adj_start += alignment - tmp;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100265 }
266
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100267 if (adj_start == hole_start) {
268 hole_node->hole_follows = 0;
269 list_del(&hole_node->hole_stack);
270 }
271
272 node->start = adj_start;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100273 node->size = size;
274 node->mm = mm;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100275 node->color = color;
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100276 node->allocated = 1;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100277
278 INIT_LIST_HEAD(&node->hole_stack);
279 list_add(&node->node_list, &hole_node->node_list);
280
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100281 BUG_ON(node->start + node->size > adj_end);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100282 BUG_ON(node->start + node->size > end);
283
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100284 node->hole_follows = 0;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000285 if (__drm_mm_hole_node_start(node) < hole_end) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100286 list_add(&node->hole_stack, &mm->hole_stack);
287 node->hole_follows = 1;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100288 }
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100289}
290
291struct drm_mm_node *drm_mm_get_block_range_generic(struct drm_mm_node *hole_node,
292 unsigned long size,
293 unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100294 unsigned long color,
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100295 unsigned long start,
296 unsigned long end,
297 int atomic)
298{
299 struct drm_mm_node *node;
300
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100301 node = drm_mm_kmalloc(hole_node->mm, atomic);
302 if (unlikely(node == NULL))
303 return NULL;
304
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100305 drm_mm_insert_helper_range(hole_node, node, size, alignment, color,
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100306 start, end);
Jerome Glissea2e68e92009-12-07 15:52:56 +0100307
Jerome Glissea2e68e92009-12-07 15:52:56 +0100308 return node;
309}
310EXPORT_SYMBOL(drm_mm_get_block_range_generic);
311
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100312/**
313 * Search for free space and insert a preallocated memory node. Returns
314 * -ENOSPC if no suitable free area is available. This is for range
315 * restricted allocations. The preallocated memory node must be cleared.
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000316 */
Chris Wilsonb8103452012-12-07 20:37:06 +0000317int drm_mm_insert_node_in_range_generic(struct drm_mm *mm, struct drm_mm_node *node,
318 unsigned long size, unsigned alignment, unsigned long color,
319 unsigned long start, unsigned long end)
320{
321 struct drm_mm_node *hole_node;
322
323 hole_node = drm_mm_search_free_in_range_generic(mm,
324 size, alignment, color,
325 start, end, 0);
326 if (!hole_node)
327 return -ENOSPC;
328
329 drm_mm_insert_helper_range(hole_node, node,
330 size, alignment, color,
331 start, end);
332 return 0;
333}
334EXPORT_SYMBOL(drm_mm_insert_node_in_range_generic);
335
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100336int drm_mm_insert_node_in_range(struct drm_mm *mm, struct drm_mm_node *node,
337 unsigned long size, unsigned alignment,
338 unsigned long start, unsigned long end)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000339{
Chris Wilsonb8103452012-12-07 20:37:06 +0000340 return drm_mm_insert_node_in_range_generic(mm, node, size, alignment, 0, start, end);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100341}
342EXPORT_SYMBOL(drm_mm_insert_node_in_range);
343
344/**
345 * Remove a memory node from the allocator.
346 */
347void drm_mm_remove_node(struct drm_mm_node *node)
348{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100349 struct drm_mm *mm = node->mm;
350 struct drm_mm_node *prev_node;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000351
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100352 BUG_ON(node->scanned_block || node->scanned_prev_free
353 || node->scanned_next_free);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000354
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100355 prev_node =
356 list_entry(node->node_list.prev, struct drm_mm_node, node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100357
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100358 if (node->hole_follows) {
Chris Wilson9e8944a2012-11-15 11:32:17 +0000359 BUG_ON(__drm_mm_hole_node_start(node) ==
360 __drm_mm_hole_node_end(node));
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100361 list_del(&node->hole_stack);
362 } else
Chris Wilson9e8944a2012-11-15 11:32:17 +0000363 BUG_ON(__drm_mm_hole_node_start(node) !=
364 __drm_mm_hole_node_end(node));
365
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100366
367 if (!prev_node->hole_follows) {
368 prev_node->hole_follows = 1;
369 list_add(&prev_node->hole_stack, &mm->hole_stack);
370 } else
371 list_move(&prev_node->hole_stack, &mm->hole_stack);
372
373 list_del(&node->node_list);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100374 node->allocated = 0;
375}
376EXPORT_SYMBOL(drm_mm_remove_node);
377
378/*
379 * Remove a memory node from the allocator and free the allocated struct
380 * drm_mm_node. Only to be used on a struct drm_mm_node obtained by one of the
381 * drm_mm_get_block functions.
382 */
383void drm_mm_put_block(struct drm_mm_node *node)
384{
385
386 struct drm_mm *mm = node->mm;
387
388 drm_mm_remove_node(node);
389
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100390 spin_lock(&mm->unused_lock);
391 if (mm->num_unused < MM_UNUSED_TARGET) {
392 list_add(&node->node_list, &mm->unused_nodes);
393 ++mm->num_unused;
394 } else
395 kfree(node);
396 spin_unlock(&mm->unused_lock);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000397}
Eric Anholt673a3942008-07-30 12:06:12 -0700398EXPORT_SYMBOL(drm_mm_put_block);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000399
Daniel Vetter75214732010-08-26 21:44:17 +0200400static int check_free_hole(unsigned long start, unsigned long end,
401 unsigned long size, unsigned alignment)
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100402{
Daniel Vetter75214732010-08-26 21:44:17 +0200403 if (end - start < size)
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100404 return 0;
405
406 if (alignment) {
Daniel Vetter75214732010-08-26 21:44:17 +0200407 unsigned tmp = start % alignment;
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100408 if (tmp)
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100409 start += alignment - tmp;
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100410 }
411
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100412 return end >= start + size;
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100413}
414
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100415struct drm_mm_node *drm_mm_search_free_generic(const struct drm_mm *mm,
416 unsigned long size,
417 unsigned alignment,
418 unsigned long color,
419 bool best_match)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000420{
Dave Airlie55910512007-07-11 16:53:40 +1000421 struct drm_mm_node *entry;
422 struct drm_mm_node *best;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000423 unsigned long adj_start;
424 unsigned long adj_end;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000425 unsigned long best_size;
426
Daniel Vetter709ea972010-07-02 15:02:16 +0100427 BUG_ON(mm->scanned_blocks);
428
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000429 best = NULL;
430 best_size = ~0UL;
431
Chris Wilson9e8944a2012-11-15 11:32:17 +0000432 drm_mm_for_each_hole(entry, mm, adj_start, adj_end) {
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100433 if (mm->color_adjust) {
434 mm->color_adjust(entry, color, &adj_start, &adj_end);
435 if (adj_end <= adj_start)
436 continue;
437 }
438
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100439 if (!check_free_hole(adj_start, adj_end, size, alignment))
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100440 continue;
441
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100442 if (!best_match)
443 return entry;
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100444
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100445 if (entry->size < best_size) {
446 best = entry;
447 best_size = entry->size;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000448 }
449 }
450
451 return best;
452}
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100453EXPORT_SYMBOL(drm_mm_search_free_generic);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000454
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100455struct drm_mm_node *drm_mm_search_free_in_range_generic(const struct drm_mm *mm,
456 unsigned long size,
457 unsigned alignment,
458 unsigned long color,
459 unsigned long start,
460 unsigned long end,
461 bool best_match)
Jerome Glissea2e68e92009-12-07 15:52:56 +0100462{
Jerome Glissea2e68e92009-12-07 15:52:56 +0100463 struct drm_mm_node *entry;
464 struct drm_mm_node *best;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000465 unsigned long adj_start;
466 unsigned long adj_end;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100467 unsigned long best_size;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100468
Daniel Vetter709ea972010-07-02 15:02:16 +0100469 BUG_ON(mm->scanned_blocks);
470
Jerome Glissea2e68e92009-12-07 15:52:56 +0100471 best = NULL;
472 best_size = ~0UL;
473
Chris Wilson9e8944a2012-11-15 11:32:17 +0000474 drm_mm_for_each_hole(entry, mm, adj_start, adj_end) {
475 if (adj_start < start)
476 adj_start = start;
477 if (adj_end > end)
478 adj_end = end;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100479
480 if (mm->color_adjust) {
481 mm->color_adjust(entry, color, &adj_start, &adj_end);
482 if (adj_end <= adj_start)
483 continue;
484 }
485
Daniel Vetter75214732010-08-26 21:44:17 +0200486 if (!check_free_hole(adj_start, adj_end, size, alignment))
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100487 continue;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100488
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100489 if (!best_match)
490 return entry;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100491
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100492 if (entry->size < best_size) {
493 best = entry;
494 best_size = entry->size;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100495 }
496 }
497
498 return best;
499}
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100500EXPORT_SYMBOL(drm_mm_search_free_in_range_generic);
Jerome Glissea2e68e92009-12-07 15:52:56 +0100501
Daniel Vetter709ea972010-07-02 15:02:16 +0100502/**
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100503 * Moves an allocation. To be used with embedded struct drm_mm_node.
504 */
505void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new)
506{
507 list_replace(&old->node_list, &new->node_list);
Daniel Vetter2bbd4492011-05-06 23:47:53 +0200508 list_replace(&old->hole_stack, &new->hole_stack);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100509 new->hole_follows = old->hole_follows;
510 new->mm = old->mm;
511 new->start = old->start;
512 new->size = old->size;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100513 new->color = old->color;
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100514
515 old->allocated = 0;
516 new->allocated = 1;
517}
518EXPORT_SYMBOL(drm_mm_replace_node);
519
520/**
Daniel Vetter709ea972010-07-02 15:02:16 +0100521 * Initializa lru scanning.
522 *
523 * This simply sets up the scanning routines with the parameters for the desired
524 * hole.
525 *
526 * Warning: As long as the scan list is non-empty, no other operations than
527 * adding/removing nodes to/from the scan list are allowed.
528 */
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100529void drm_mm_init_scan(struct drm_mm *mm,
530 unsigned long size,
531 unsigned alignment,
532 unsigned long color)
Daniel Vetter709ea972010-07-02 15:02:16 +0100533{
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100534 mm->scan_color = color;
Daniel Vetter709ea972010-07-02 15:02:16 +0100535 mm->scan_alignment = alignment;
536 mm->scan_size = size;
537 mm->scanned_blocks = 0;
538 mm->scan_hit_start = 0;
539 mm->scan_hit_size = 0;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200540 mm->scan_check_range = 0;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100541 mm->prev_scanned_node = NULL;
Daniel Vetter709ea972010-07-02 15:02:16 +0100542}
543EXPORT_SYMBOL(drm_mm_init_scan);
544
545/**
Daniel Vetterd935cc62010-09-16 15:13:11 +0200546 * Initializa lru scanning.
547 *
548 * This simply sets up the scanning routines with the parameters for the desired
549 * hole. This version is for range-restricted scans.
550 *
551 * Warning: As long as the scan list is non-empty, no other operations than
552 * adding/removing nodes to/from the scan list are allowed.
553 */
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100554void drm_mm_init_scan_with_range(struct drm_mm *mm,
555 unsigned long size,
Daniel Vetterd935cc62010-09-16 15:13:11 +0200556 unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100557 unsigned long color,
Daniel Vetterd935cc62010-09-16 15:13:11 +0200558 unsigned long start,
559 unsigned long end)
560{
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100561 mm->scan_color = color;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200562 mm->scan_alignment = alignment;
563 mm->scan_size = size;
564 mm->scanned_blocks = 0;
565 mm->scan_hit_start = 0;
566 mm->scan_hit_size = 0;
567 mm->scan_start = start;
568 mm->scan_end = end;
569 mm->scan_check_range = 1;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100570 mm->prev_scanned_node = NULL;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200571}
572EXPORT_SYMBOL(drm_mm_init_scan_with_range);
573
574/**
Daniel Vetter709ea972010-07-02 15:02:16 +0100575 * Add a node to the scan list that might be freed to make space for the desired
576 * hole.
577 *
578 * Returns non-zero, if a hole has been found, zero otherwise.
579 */
580int drm_mm_scan_add_block(struct drm_mm_node *node)
581{
582 struct drm_mm *mm = node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100583 struct drm_mm_node *prev_node;
584 unsigned long hole_start, hole_end;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200585 unsigned long adj_start;
586 unsigned long adj_end;
Daniel Vetter709ea972010-07-02 15:02:16 +0100587
588 mm->scanned_blocks++;
589
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100590 BUG_ON(node->scanned_block);
Daniel Vetter709ea972010-07-02 15:02:16 +0100591 node->scanned_block = 1;
Daniel Vetter709ea972010-07-02 15:02:16 +0100592
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100593 prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
594 node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100595
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100596 node->scanned_preceeds_hole = prev_node->hole_follows;
597 prev_node->hole_follows = 1;
598 list_del(&node->node_list);
599 node->node_list.prev = &prev_node->node_list;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100600 node->node_list.next = &mm->prev_scanned_node->node_list;
601 mm->prev_scanned_node = node;
Daniel Vetter709ea972010-07-02 15:02:16 +0100602
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100603 hole_start = drm_mm_hole_node_start(prev_node);
604 hole_end = drm_mm_hole_node_end(prev_node);
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100605
606 adj_start = hole_start;
607 adj_end = hole_end;
608
609 if (mm->color_adjust)
610 mm->color_adjust(prev_node, mm->scan_color, &adj_start, &adj_end);
611
Daniel Vetterd935cc62010-09-16 15:13:11 +0200612 if (mm->scan_check_range) {
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100613 if (adj_start < mm->scan_start)
614 adj_start = mm->scan_start;
615 if (adj_end > mm->scan_end)
616 adj_end = mm->scan_end;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200617 }
618
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100619 if (check_free_hole(adj_start, adj_end,
Daniel Vetter75214732010-08-26 21:44:17 +0200620 mm->scan_size, mm->scan_alignment)) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100621 mm->scan_hit_start = hole_start;
622 mm->scan_hit_size = hole_end;
Daniel Vetter709ea972010-07-02 15:02:16 +0100623
624 return 1;
625 }
626
627 return 0;
628}
629EXPORT_SYMBOL(drm_mm_scan_add_block);
630
631/**
632 * Remove a node from the scan list.
633 *
634 * Nodes _must_ be removed in the exact same order from the scan list as they
635 * have been added, otherwise the internal state of the memory manager will be
636 * corrupted.
637 *
638 * When the scan list is empty, the selected memory nodes can be freed. An
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300639 * immediately following drm_mm_search_free with best_match = 0 will then return
Daniel Vetter709ea972010-07-02 15:02:16 +0100640 * the just freed block (because its at the top of the free_stack list).
641 *
642 * Returns one if this block should be evicted, zero otherwise. Will always
643 * return zero when no hole has been found.
644 */
645int drm_mm_scan_remove_block(struct drm_mm_node *node)
646{
647 struct drm_mm *mm = node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100648 struct drm_mm_node *prev_node;
Daniel Vetter709ea972010-07-02 15:02:16 +0100649
650 mm->scanned_blocks--;
651
652 BUG_ON(!node->scanned_block);
653 node->scanned_block = 0;
Daniel Vetter709ea972010-07-02 15:02:16 +0100654
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100655 prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
656 node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100657
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100658 prev_node->hole_follows = node->scanned_preceeds_hole;
659 INIT_LIST_HEAD(&node->node_list);
660 list_add(&node->node_list, &prev_node->node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100661
662 /* Only need to check for containement because start&size for the
663 * complete resulting free block (not just the desired part) is
664 * stored. */
665 if (node->start >= mm->scan_hit_start &&
666 node->start + node->size
667 <= mm->scan_hit_start + mm->scan_hit_size) {
668 return 1;
669 }
670
671 return 0;
672}
673EXPORT_SYMBOL(drm_mm_scan_remove_block);
674
Dave Airlie55910512007-07-11 16:53:40 +1000675int drm_mm_clean(struct drm_mm * mm)
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100676{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100677 struct list_head *head = &mm->head_node.node_list;
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100678
679 return (head->next->next == head);
680}
Jerome Glisse249d6042009-04-08 17:11:16 +0200681EXPORT_SYMBOL(drm_mm_clean);
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100682
Dave Airlie55910512007-07-11 16:53:40 +1000683int drm_mm_init(struct drm_mm * mm, unsigned long start, unsigned long size)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000684{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100685 INIT_LIST_HEAD(&mm->hole_stack);
Jerome Glisse249d6042009-04-08 17:11:16 +0200686 INIT_LIST_HEAD(&mm->unused_nodes);
687 mm->num_unused = 0;
Daniel Vetter709ea972010-07-02 15:02:16 +0100688 mm->scanned_blocks = 0;
Jerome Glisse249d6042009-04-08 17:11:16 +0200689 spin_lock_init(&mm->unused_lock);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000690
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100691 /* Clever trick to avoid a special case in the free hole tracking. */
692 INIT_LIST_HEAD(&mm->head_node.node_list);
693 INIT_LIST_HEAD(&mm->head_node.hole_stack);
694 mm->head_node.hole_follows = 1;
695 mm->head_node.scanned_block = 0;
696 mm->head_node.scanned_prev_free = 0;
697 mm->head_node.scanned_next_free = 0;
698 mm->head_node.mm = mm;
699 mm->head_node.start = start + size;
700 mm->head_node.size = start - mm->head_node.start;
701 list_add_tail(&mm->head_node.hole_stack, &mm->hole_stack);
702
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100703 mm->color_adjust = NULL;
704
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100705 return 0;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000706}
Eric Anholt673a3942008-07-30 12:06:12 -0700707EXPORT_SYMBOL(drm_mm_init);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000708
Dave Airlie55910512007-07-11 16:53:40 +1000709void drm_mm_takedown(struct drm_mm * mm)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000710{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100711 struct drm_mm_node *entry, *next;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000712
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100713 if (!list_empty(&mm->head_node.node_list)) {
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000714 DRM_ERROR("Memory manager not clean. Delaying takedown\n");
715 return;
716 }
717
Jerome Glisse249d6042009-04-08 17:11:16 +0200718 spin_lock(&mm->unused_lock);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100719 list_for_each_entry_safe(entry, next, &mm->unused_nodes, node_list) {
720 list_del(&entry->node_list);
Jerome Glisse249d6042009-04-08 17:11:16 +0200721 kfree(entry);
722 --mm->num_unused;
723 }
724 spin_unlock(&mm->unused_lock);
725
726 BUG_ON(mm->num_unused != 0);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000727}
Dave Airlief453ba02008-11-07 14:05:41 -0800728EXPORT_SYMBOL(drm_mm_takedown);
Dave Airliefa8a1232009-08-26 13:13:37 +1000729
Jerome Glisse99d7e482009-12-09 21:55:09 +0100730void drm_mm_debug_table(struct drm_mm *mm, const char *prefix)
731{
732 struct drm_mm_node *entry;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100733 unsigned long total_used = 0, total_free = 0, total = 0;
734 unsigned long hole_start, hole_end, hole_size;
Jerome Glisse99d7e482009-12-09 21:55:09 +0100735
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100736 hole_start = drm_mm_hole_node_start(&mm->head_node);
737 hole_end = drm_mm_hole_node_end(&mm->head_node);
738 hole_size = hole_end - hole_start;
739 if (hole_size)
740 printk(KERN_DEBUG "%s 0x%08lx-0x%08lx: %8lu: free\n",
741 prefix, hole_start, hole_end,
742 hole_size);
743 total_free += hole_size;
744
745 drm_mm_for_each_node(entry, mm) {
746 printk(KERN_DEBUG "%s 0x%08lx-0x%08lx: %8lu: used\n",
Jerome Glisse99d7e482009-12-09 21:55:09 +0100747 prefix, entry->start, entry->start + entry->size,
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100748 entry->size);
749 total_used += entry->size;
750
751 if (entry->hole_follows) {
752 hole_start = drm_mm_hole_node_start(entry);
753 hole_end = drm_mm_hole_node_end(entry);
754 hole_size = hole_end - hole_start;
755 printk(KERN_DEBUG "%s 0x%08lx-0x%08lx: %8lu: free\n",
756 prefix, hole_start, hole_end,
757 hole_size);
758 total_free += hole_size;
759 }
Jerome Glisse99d7e482009-12-09 21:55:09 +0100760 }
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100761 total = total_free + total_used;
762
763 printk(KERN_DEBUG "%s total: %lu, used %lu free %lu\n", prefix, total,
Jerome Glisse99d7e482009-12-09 21:55:09 +0100764 total_used, total_free);
765}
766EXPORT_SYMBOL(drm_mm_debug_table);
767
Dave Airliefa8a1232009-08-26 13:13:37 +1000768#if defined(CONFIG_DEBUG_FS)
769int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm)
770{
771 struct drm_mm_node *entry;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100772 unsigned long total_used = 0, total_free = 0, total = 0;
773 unsigned long hole_start, hole_end, hole_size;
Dave Airliefa8a1232009-08-26 13:13:37 +1000774
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100775 hole_start = drm_mm_hole_node_start(&mm->head_node);
776 hole_end = drm_mm_hole_node_end(&mm->head_node);
777 hole_size = hole_end - hole_start;
778 if (hole_size)
779 seq_printf(m, "0x%08lx-0x%08lx: 0x%08lx: free\n",
780 hole_start, hole_end, hole_size);
781 total_free += hole_size;
782
783 drm_mm_for_each_node(entry, mm) {
784 seq_printf(m, "0x%08lx-0x%08lx: 0x%08lx: used\n",
785 entry->start, entry->start + entry->size,
786 entry->size);
787 total_used += entry->size;
788 if (entry->hole_follows) {
Daniel Vetter2bbd4492011-05-06 23:47:53 +0200789 hole_start = drm_mm_hole_node_start(entry);
790 hole_end = drm_mm_hole_node_end(entry);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100791 hole_size = hole_end - hole_start;
792 seq_printf(m, "0x%08lx-0x%08lx: 0x%08lx: free\n",
793 hole_start, hole_end, hole_size);
794 total_free += hole_size;
795 }
Dave Airliefa8a1232009-08-26 13:13:37 +1000796 }
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100797 total = total_free + total_used;
798
799 seq_printf(m, "total: %lu, used %lu free %lu\n", total, total_used, total_free);
Dave Airliefa8a1232009-08-26 13:13:37 +1000800 return 0;
801}
802EXPORT_SYMBOL(drm_mm_dump_table);
803#endif