blob: cb39f45d6a16befdc9cfac339d1703a2d9a217e5 [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
Daniel Vetter93110be2014-01-23 00:31:48 +010050/**
51 * DOC: Overview
52 *
53 * drm_mm provides a simple range allocator. The drivers are free to use the
54 * resource allocator from the linux core if it suits them, the upside of drm_mm
55 * is that it's in the DRM core. Which means that it's easier to extend for
56 * some of the crazier special purpose needs of gpus.
57 *
58 * The main data struct is &drm_mm, allocations are tracked in &drm_mm_node.
59 * Drivers are free to embed either of them into their own suitable
60 * datastructures. drm_mm itself will not do any allocations of its own, so if
61 * drivers choose not to embed nodes they need to still allocate them
62 * themselves.
63 *
64 * The range allocator also supports reservation of preallocated blocks. This is
65 * useful for taking over initial mode setting configurations from the firmware,
66 * where an object needs to be created which exactly matches the firmware's
67 * scanout target. As long as the range is still free it can be inserted anytime
68 * after the allocator is initialized, which helps with avoiding looped
69 * depencies in the driver load sequence.
70 *
71 * drm_mm maintains a stack of most recently freed holes, which of all
72 * simplistic datastructures seems to be a fairly decent approach to clustering
73 * allocations and avoiding too much fragmentation. This means free space
74 * searches are O(num_holes). Given that all the fancy features drm_mm supports
75 * something better would be fairly complex and since gfx thrashing is a fairly
76 * steep cliff not a real concern. Removing a node again is O(1).
77 *
78 * drm_mm supports a few features: Alignment and range restrictions can be
79 * supplied. Further more every &drm_mm_node has a color value (which is just an
80 * opaqua unsigned long) which in conjunction with a driver callback can be used
81 * to implement sophisticated placement restrictions. The i915 DRM driver uses
82 * this to implement guard pages between incompatible caching domains in the
83 * graphics TT.
84 *
Lauri Kasanen62347f92014-04-02 20:03:57 +030085 * Two behaviors are supported for searching and allocating: bottom-up and top-down.
86 * The default is bottom-up. Top-down allocation can be used if the memory area
87 * has different restrictions, or just to reduce fragmentation.
88 *
Daniel Vetter93110be2014-01-23 00:31:48 +010089 * Finally iteration helpers to walk all nodes and all holes are provided as are
90 * some basic allocator dumpers for debugging.
91 */
92
David Herrmannc700c672013-07-27 13:39:28 +020093static struct drm_mm_node *drm_mm_search_free_generic(const struct drm_mm *mm,
Thierry Reding440fd522015-01-23 09:05:06 +010094 u64 size,
David Herrmannc700c672013-07-27 13:39:28 +020095 unsigned alignment,
96 unsigned long color,
97 enum drm_mm_search_flags flags);
98static struct drm_mm_node *drm_mm_search_free_in_range_generic(const struct drm_mm *mm,
Thierry Reding440fd522015-01-23 09:05:06 +010099 u64 size,
David Herrmannc700c672013-07-27 13:39:28 +0200100 unsigned alignment,
101 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +0100102 u64 start,
103 u64 end,
David Herrmannc700c672013-07-27 13:39:28 +0200104 enum drm_mm_search_flags flags);
Jerome Glisse249d6042009-04-08 17:11:16 +0200105
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100106static void drm_mm_insert_helper(struct drm_mm_node *hole_node,
107 struct drm_mm_node *node,
Thierry Reding440fd522015-01-23 09:05:06 +0100108 u64 size, unsigned alignment,
Lauri Kasanen62347f92014-04-02 20:03:57 +0300109 unsigned long color,
110 enum drm_mm_allocator_flags flags)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000111{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100112 struct drm_mm *mm = hole_node->mm;
Thierry Reding440fd522015-01-23 09:05:06 +0100113 u64 hole_start = drm_mm_hole_node_start(hole_node);
114 u64 hole_end = drm_mm_hole_node_end(hole_node);
115 u64 adj_start = hole_start;
116 u64 adj_end = hole_end;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100117
Chris Wilson9e8944a2012-11-15 11:32:17 +0000118 BUG_ON(node->allocated);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100119
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100120 if (mm->color_adjust)
121 mm->color_adjust(hole_node, color, &adj_start, &adj_end);
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100122
Lauri Kasanen62347f92014-04-02 20:03:57 +0300123 if (flags & DRM_MM_CREATE_TOP)
124 adj_start = adj_end - size;
125
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100126 if (alignment) {
Thierry Reding440fd522015-01-23 09:05:06 +0100127 u64 tmp = adj_start;
128 unsigned rem;
129
130 rem = do_div(tmp, alignment);
131 if (rem) {
Lauri Kasanen62347f92014-04-02 20:03:57 +0300132 if (flags & DRM_MM_CREATE_TOP)
Thierry Reding440fd522015-01-23 09:05:06 +0100133 adj_start -= rem;
Lauri Kasanen62347f92014-04-02 20:03:57 +0300134 else
Thierry Reding440fd522015-01-23 09:05:06 +0100135 adj_start += alignment - rem;
Lauri Kasanen62347f92014-04-02 20:03:57 +0300136 }
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100137 }
138
Lauri Kasanen62347f92014-04-02 20:03:57 +0300139 BUG_ON(adj_start < hole_start);
140 BUG_ON(adj_end > hole_end);
141
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100142 if (adj_start == hole_start) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100143 hole_node->hole_follows = 0;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100144 list_del(&hole_node->hole_stack);
145 }
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000146
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100147 node->start = adj_start;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100148 node->size = size;
149 node->mm = mm;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100150 node->color = color;
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100151 node->allocated = 1;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100152
153 INIT_LIST_HEAD(&node->hole_stack);
154 list_add(&node->node_list, &hole_node->node_list);
155
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100156 BUG_ON(node->start + node->size > adj_end);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100157
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100158 node->hole_follows = 0;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000159 if (__drm_mm_hole_node_start(node) < hole_end) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100160 list_add(&node->hole_stack, &mm->hole_stack);
161 node->hole_follows = 1;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000162 }
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100163}
164
Daniel Vettere18c0412014-01-23 00:39:13 +0100165/**
166 * drm_mm_reserve_node - insert an pre-initialized node
167 * @mm: drm_mm allocator to insert @node into
168 * @node: drm_mm_node to insert
169 *
170 * This functions inserts an already set-up drm_mm_node into the allocator,
171 * meaning that start, size and color must be set by the caller. This is useful
172 * to initialize the allocator with preallocated objects which must be set-up
173 * before the range allocator can be set-up, e.g. when taking over a firmware
174 * framebuffer.
175 *
176 * Returns:
177 * 0 on success, -ENOSPC if there's no hole where @node is.
178 */
Ben Widawsky338710e2013-07-05 14:41:03 -0700179int drm_mm_reserve_node(struct drm_mm *mm, struct drm_mm_node *node)
Chris Wilson5973c7e2012-11-15 11:32:16 +0000180{
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700181 struct drm_mm_node *hole;
Heinrich Schuchardtb80d3942016-05-18 22:17:19 +0200182 u64 end;
Thierry Reding440fd522015-01-23 09:05:06 +0100183 u64 hole_start;
184 u64 hole_end;
Chris Wilson5973c7e2012-11-15 11:32:16 +0000185
Ben Widawsky338710e2013-07-05 14:41:03 -0700186 BUG_ON(node == NULL);
187
Heinrich Schuchardtb80d3942016-05-18 22:17:19 +0200188 end = node->start + node->size;
189
Ben Widawsky338710e2013-07-05 14:41:03 -0700190 /* Find the relevant hole to add our node to */
Chris Wilson9e8944a2012-11-15 11:32:17 +0000191 drm_mm_for_each_hole(hole, mm, hole_start, hole_end) {
Ben Widawsky338710e2013-07-05 14:41:03 -0700192 if (hole_start > node->start || hole_end < end)
Chris Wilson5973c7e2012-11-15 11:32:16 +0000193 continue;
194
Chris Wilson5973c7e2012-11-15 11:32:16 +0000195 node->mm = mm;
196 node->allocated = 1;
197
198 INIT_LIST_HEAD(&node->hole_stack);
199 list_add(&node->node_list, &hole->node_list);
200
Ben Widawsky338710e2013-07-05 14:41:03 -0700201 if (node->start == hole_start) {
Chris Wilson5973c7e2012-11-15 11:32:16 +0000202 hole->hole_follows = 0;
203 list_del_init(&hole->hole_stack);
204 }
205
206 node->hole_follows = 0;
207 if (end != hole_end) {
208 list_add(&node->hole_stack, &mm->hole_stack);
209 node->hole_follows = 1;
210 }
211
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700212 return 0;
Chris Wilson5973c7e2012-11-15 11:32:16 +0000213 }
214
Ben Widawskyb3a070c2013-07-05 14:41:02 -0700215 return -ENOSPC;
Chris Wilson5973c7e2012-11-15 11:32:16 +0000216}
Ben Widawsky338710e2013-07-05 14:41:03 -0700217EXPORT_SYMBOL(drm_mm_reserve_node);
Chris Wilson5973c7e2012-11-15 11:32:16 +0000218
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100219/**
Daniel Vettere18c0412014-01-23 00:39:13 +0100220 * drm_mm_insert_node_generic - search for space and insert @node
221 * @mm: drm_mm to allocate from
222 * @node: preallocate node to insert
223 * @size: size of the allocation
224 * @alignment: alignment of the allocation
225 * @color: opaque tag value to use for this node
Lauri Kasanen62347f92014-04-02 20:03:57 +0300226 * @sflags: flags to fine-tune the allocation search
227 * @aflags: flags to fine-tune the allocation behavior
Daniel Vettere18c0412014-01-23 00:39:13 +0100228 *
229 * The preallocated node must be cleared to 0.
230 *
231 * Returns:
232 * 0 on success, -ENOSPC if there's no suitable hole.
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100233 */
Chris Wilsonb8103452012-12-07 20:37:06 +0000234int drm_mm_insert_node_generic(struct drm_mm *mm, struct drm_mm_node *node,
Thierry Reding440fd522015-01-23 09:05:06 +0100235 u64 size, unsigned alignment,
David Herrmann31e5d7c2013-07-27 13:36:27 +0200236 unsigned long color,
Lauri Kasanen62347f92014-04-02 20:03:57 +0300237 enum drm_mm_search_flags sflags,
238 enum drm_mm_allocator_flags aflags)
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100239{
240 struct drm_mm_node *hole_node;
241
Chris Wilsonb8103452012-12-07 20:37:06 +0000242 hole_node = drm_mm_search_free_generic(mm, size, alignment,
Lauri Kasanen62347f92014-04-02 20:03:57 +0300243 color, sflags);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100244 if (!hole_node)
245 return -ENOSPC;
246
Lauri Kasanen62347f92014-04-02 20:03:57 +0300247 drm_mm_insert_helper(hole_node, node, size, alignment, color, aflags);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100248 return 0;
249}
Chris Wilsonb8103452012-12-07 20:37:06 +0000250EXPORT_SYMBOL(drm_mm_insert_node_generic);
251
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100252static void drm_mm_insert_helper_range(struct drm_mm_node *hole_node,
253 struct drm_mm_node *node,
Thierry Reding440fd522015-01-23 09:05:06 +0100254 u64 size, unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100255 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +0100256 u64 start, u64 end,
Lauri Kasanen62347f92014-04-02 20:03:57 +0300257 enum drm_mm_allocator_flags flags)
Jerome Glissea2e68e92009-12-07 15:52:56 +0100258{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100259 struct drm_mm *mm = hole_node->mm;
Thierry Reding440fd522015-01-23 09:05:06 +0100260 u64 hole_start = drm_mm_hole_node_start(hole_node);
261 u64 hole_end = drm_mm_hole_node_end(hole_node);
262 u64 adj_start = hole_start;
263 u64 adj_end = hole_end;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100264
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100265 BUG_ON(!hole_node->hole_follows || node->allocated);
266
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100267 if (adj_start < start)
268 adj_start = start;
Chris Wilson901593f2012-12-19 16:51:06 +0000269 if (adj_end > end)
270 adj_end = end;
271
272 if (mm->color_adjust)
273 mm->color_adjust(hole_node, color, &adj_start, &adj_end);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100274
Michel Thierryfafecc02015-08-16 04:02:28 +0100275 if (flags & DRM_MM_CREATE_TOP)
276 adj_start = adj_end - size;
277
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100278 if (alignment) {
Thierry Reding440fd522015-01-23 09:05:06 +0100279 u64 tmp = adj_start;
280 unsigned rem;
281
282 rem = do_div(tmp, alignment);
283 if (rem) {
Lauri Kasanen62347f92014-04-02 20:03:57 +0300284 if (flags & DRM_MM_CREATE_TOP)
Thierry Reding440fd522015-01-23 09:05:06 +0100285 adj_start -= rem;
Lauri Kasanen62347f92014-04-02 20:03:57 +0300286 else
Thierry Reding440fd522015-01-23 09:05:06 +0100287 adj_start += alignment - rem;
Lauri Kasanen62347f92014-04-02 20:03:57 +0300288 }
Jerome Glissea2e68e92009-12-07 15:52:56 +0100289 }
290
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100291 if (adj_start == hole_start) {
292 hole_node->hole_follows = 0;
293 list_del(&hole_node->hole_stack);
294 }
295
296 node->start = adj_start;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100297 node->size = size;
298 node->mm = mm;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100299 node->color = color;
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100300 node->allocated = 1;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100301
302 INIT_LIST_HEAD(&node->hole_stack);
303 list_add(&node->node_list, &hole_node->node_list);
304
Lauri Kasanen62347f92014-04-02 20:03:57 +0300305 BUG_ON(node->start < start);
306 BUG_ON(node->start < adj_start);
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100307 BUG_ON(node->start + node->size > adj_end);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100308 BUG_ON(node->start + node->size > end);
309
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100310 node->hole_follows = 0;
Chris Wilson9e8944a2012-11-15 11:32:17 +0000311 if (__drm_mm_hole_node_start(node) < hole_end) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100312 list_add(&node->hole_stack, &mm->hole_stack);
313 node->hole_follows = 1;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100314 }
Daniel Vetter9fc935d2011-02-18 17:59:13 +0100315}
316
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100317/**
Daniel Vettere18c0412014-01-23 00:39:13 +0100318 * drm_mm_insert_node_in_range_generic - ranged search for space and insert @node
319 * @mm: drm_mm to allocate from
320 * @node: preallocate node to insert
321 * @size: size of the allocation
322 * @alignment: alignment of the allocation
323 * @color: opaque tag value to use for this node
324 * @start: start of the allowed range for this node
325 * @end: end of the allowed range for this node
Lauri Kasanen62347f92014-04-02 20:03:57 +0300326 * @sflags: flags to fine-tune the allocation search
327 * @aflags: flags to fine-tune the allocation behavior
Daniel Vettere18c0412014-01-23 00:39:13 +0100328 *
329 * The preallocated node must be cleared to 0.
330 *
331 * Returns:
332 * 0 on success, -ENOSPC if there's no suitable hole.
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000333 */
Chris Wilsonb8103452012-12-07 20:37:06 +0000334int drm_mm_insert_node_in_range_generic(struct drm_mm *mm, struct drm_mm_node *node,
Thierry Reding440fd522015-01-23 09:05:06 +0100335 u64 size, unsigned alignment,
Lauri Kasanen62347f92014-04-02 20:03:57 +0300336 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +0100337 u64 start, u64 end,
Lauri Kasanen62347f92014-04-02 20:03:57 +0300338 enum drm_mm_search_flags sflags,
339 enum drm_mm_allocator_flags aflags)
Chris Wilsonb8103452012-12-07 20:37:06 +0000340{
341 struct drm_mm_node *hole_node;
342
343 hole_node = drm_mm_search_free_in_range_generic(mm,
344 size, alignment, color,
Lauri Kasanen62347f92014-04-02 20:03:57 +0300345 start, end, sflags);
Chris Wilsonb8103452012-12-07 20:37:06 +0000346 if (!hole_node)
347 return -ENOSPC;
348
349 drm_mm_insert_helper_range(hole_node, node,
350 size, alignment, color,
Lauri Kasanen62347f92014-04-02 20:03:57 +0300351 start, end, aflags);
Chris Wilsonb8103452012-12-07 20:37:06 +0000352 return 0;
353}
354EXPORT_SYMBOL(drm_mm_insert_node_in_range_generic);
355
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100356/**
Daniel Vettere18c0412014-01-23 00:39:13 +0100357 * drm_mm_remove_node - Remove a memory node from the allocator.
358 * @node: drm_mm_node to remove
359 *
360 * This just removes a node from its drm_mm allocator. The node does not need to
361 * be cleared again before it can be re-inserted into this or any other drm_mm
362 * allocator. It is a bug to call this function on a un-allocated node.
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100363 */
364void drm_mm_remove_node(struct drm_mm_node *node)
365{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100366 struct drm_mm *mm = node->mm;
367 struct drm_mm_node *prev_node;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000368
Ben Widawsky3ef80a82013-08-13 18:09:08 -0700369 if (WARN_ON(!node->allocated))
370 return;
371
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100372 BUG_ON(node->scanned_block || node->scanned_prev_free
373 || node->scanned_next_free);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000374
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100375 prev_node =
376 list_entry(node->node_list.prev, struct drm_mm_node, node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100377
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100378 if (node->hole_follows) {
Chris Wilson9e8944a2012-11-15 11:32:17 +0000379 BUG_ON(__drm_mm_hole_node_start(node) ==
380 __drm_mm_hole_node_end(node));
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100381 list_del(&node->hole_stack);
382 } else
Chris Wilson9e8944a2012-11-15 11:32:17 +0000383 BUG_ON(__drm_mm_hole_node_start(node) !=
384 __drm_mm_hole_node_end(node));
385
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100386
387 if (!prev_node->hole_follows) {
388 prev_node->hole_follows = 1;
389 list_add(&prev_node->hole_stack, &mm->hole_stack);
390 } else
391 list_move(&prev_node->hole_stack, &mm->hole_stack);
392
393 list_del(&node->node_list);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100394 node->allocated = 0;
395}
396EXPORT_SYMBOL(drm_mm_remove_node);
397
Thierry Reding440fd522015-01-23 09:05:06 +0100398static int check_free_hole(u64 start, u64 end, u64 size, unsigned alignment)
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100399{
Daniel Vetter75214732010-08-26 21:44:17 +0200400 if (end - start < size)
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100401 return 0;
402
403 if (alignment) {
Thierry Reding440fd522015-01-23 09:05:06 +0100404 u64 tmp = start;
405 unsigned rem;
406
407 rem = do_div(tmp, alignment);
Krzysztof Kolasa046d6692015-03-15 20:22:36 +0100408 if (rem)
Thierry Reding440fd522015-01-23 09:05:06 +0100409 start += alignment - rem;
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
David Herrmannc700c672013-07-27 13:39:28 +0200415static struct drm_mm_node *drm_mm_search_free_generic(const struct drm_mm *mm,
Thierry Reding440fd522015-01-23 09:05:06 +0100416 u64 size,
David Herrmannc700c672013-07-27 13:39:28 +0200417 unsigned alignment,
418 unsigned long color,
419 enum drm_mm_search_flags flags)
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;
Thierry Reding440fd522015-01-23 09:05:06 +0100423 u64 adj_start;
424 u64 adj_end;
425 u64 best_size;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000426
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
Lauri Kasanen62347f92014-04-02 20:03:57 +0300432 __drm_mm_for_each_hole(entry, mm, adj_start, adj_end,
433 flags & DRM_MM_SEARCH_BELOW) {
Thierry Reding440fd522015-01-23 09:05:06 +0100434 u64 hole_size = adj_end - adj_start;
Michel Dänzer145bccd2014-03-19 17:37:14 +0900435
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100436 if (mm->color_adjust) {
437 mm->color_adjust(entry, color, &adj_start, &adj_end);
438 if (adj_end <= adj_start)
439 continue;
440 }
441
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100442 if (!check_free_hole(adj_start, adj_end, size, alignment))
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100443 continue;
444
David Herrmann31e5d7c2013-07-27 13:36:27 +0200445 if (!(flags & DRM_MM_SEARCH_BEST))
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100446 return entry;
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100447
Michel Dänzer145bccd2014-03-19 17:37:14 +0900448 if (hole_size < best_size) {
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100449 best = entry;
Michel Dänzer145bccd2014-03-19 17:37:14 +0900450 best_size = hole_size;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000451 }
452 }
453
454 return best;
455}
456
David Herrmannc700c672013-07-27 13:39:28 +0200457static struct drm_mm_node *drm_mm_search_free_in_range_generic(const struct drm_mm *mm,
Thierry Reding440fd522015-01-23 09:05:06 +0100458 u64 size,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100459 unsigned alignment,
460 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +0100461 u64 start,
462 u64 end,
David Herrmann31e5d7c2013-07-27 13:36:27 +0200463 enum drm_mm_search_flags flags)
Jerome Glissea2e68e92009-12-07 15:52:56 +0100464{
Jerome Glissea2e68e92009-12-07 15:52:56 +0100465 struct drm_mm_node *entry;
466 struct drm_mm_node *best;
Thierry Reding440fd522015-01-23 09:05:06 +0100467 u64 adj_start;
468 u64 adj_end;
469 u64 best_size;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100470
Daniel Vetter709ea972010-07-02 15:02:16 +0100471 BUG_ON(mm->scanned_blocks);
472
Jerome Glissea2e68e92009-12-07 15:52:56 +0100473 best = NULL;
474 best_size = ~0UL;
475
Lauri Kasanen62347f92014-04-02 20:03:57 +0300476 __drm_mm_for_each_hole(entry, mm, adj_start, adj_end,
477 flags & DRM_MM_SEARCH_BELOW) {
Thierry Reding440fd522015-01-23 09:05:06 +0100478 u64 hole_size = adj_end - adj_start;
Michel Dänzer145bccd2014-03-19 17:37:14 +0900479
Chris Wilson9e8944a2012-11-15 11:32:17 +0000480 if (adj_start < start)
481 adj_start = start;
482 if (adj_end > end)
483 adj_end = end;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100484
485 if (mm->color_adjust) {
486 mm->color_adjust(entry, color, &adj_start, &adj_end);
487 if (adj_end <= adj_start)
488 continue;
489 }
490
Daniel Vetter75214732010-08-26 21:44:17 +0200491 if (!check_free_hole(adj_start, adj_end, size, alignment))
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100492 continue;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100493
David Herrmann31e5d7c2013-07-27 13:36:27 +0200494 if (!(flags & DRM_MM_SEARCH_BEST))
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100495 return entry;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100496
Michel Dänzer145bccd2014-03-19 17:37:14 +0900497 if (hole_size < best_size) {
Daniel Vetter7a6b2892010-07-02 15:02:15 +0100498 best = entry;
Michel Dänzer145bccd2014-03-19 17:37:14 +0900499 best_size = hole_size;
Jerome Glissea2e68e92009-12-07 15:52:56 +0100500 }
501 }
502
503 return best;
504}
Jerome Glissea2e68e92009-12-07 15:52:56 +0100505
Daniel Vetter709ea972010-07-02 15:02:16 +0100506/**
Daniel Vettere18c0412014-01-23 00:39:13 +0100507 * drm_mm_replace_node - move an allocation from @old to @new
508 * @old: drm_mm_node to remove from the allocator
509 * @new: drm_mm_node which should inherit @old's allocation
510 *
511 * This is useful for when drivers embed the drm_mm_node structure and hence
512 * can't move allocations by reassigning pointers. It's a combination of remove
513 * and insert with the guarantee that the allocation start will match.
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100514 */
515void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new)
516{
517 list_replace(&old->node_list, &new->node_list);
Daniel Vetter2bbd4492011-05-06 23:47:53 +0200518 list_replace(&old->hole_stack, &new->hole_stack);
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100519 new->hole_follows = old->hole_follows;
520 new->mm = old->mm;
521 new->start = old->start;
522 new->size = old->size;
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100523 new->color = old->color;
Daniel Vetterb0b7af12011-02-18 17:59:14 +0100524
525 old->allocated = 0;
526 new->allocated = 1;
527}
528EXPORT_SYMBOL(drm_mm_replace_node);
529
530/**
Daniel Vetter93110be2014-01-23 00:31:48 +0100531 * DOC: lru scan roaster
532 *
533 * Very often GPUs need to have continuous allocations for a given object. When
534 * evicting objects to make space for a new one it is therefore not most
535 * efficient when we simply start to select all objects from the tail of an LRU
536 * until there's a suitable hole: Especially for big objects or nodes that
537 * otherwise have special allocation constraints there's a good chance we evict
538 * lots of (smaller) objects unecessarily.
539 *
540 * The DRM range allocator supports this use-case through the scanning
541 * interfaces. First a scan operation needs to be initialized with
542 * drm_mm_init_scan() or drm_mm_init_scan_with_range(). The the driver adds
543 * objects to the roaster (probably by walking an LRU list, but this can be
544 * freely implemented) until a suitable hole is found or there's no further
545 * evitable object.
546 *
547 * The the driver must walk through all objects again in exactly the reverse
548 * order to restore the allocator state. Note that while the allocator is used
549 * in the scan mode no other operation is allowed.
550 *
551 * Finally the driver evicts all objects selected in the scan. Adding and
552 * removing an object is O(1), and since freeing a node is also O(1) the overall
553 * complexity is O(scanned_objects). So like the free stack which needs to be
554 * walked before a scan operation even begins this is linear in the number of
555 * objects. It doesn't seem to hurt badly.
556 */
557
558/**
Daniel Vettere18c0412014-01-23 00:39:13 +0100559 * drm_mm_init_scan - initialize lru scanning
560 * @mm: drm_mm to scan
561 * @size: size of the allocation
562 * @alignment: alignment of the allocation
563 * @color: opaque tag value to use for the allocation
Daniel Vetter709ea972010-07-02 15:02:16 +0100564 *
565 * This simply sets up the scanning routines with the parameters for the desired
Daniel Vettere18c0412014-01-23 00:39:13 +0100566 * hole. Note that there's no need to specify allocation flags, since they only
567 * change the place a node is allocated from within a suitable hole.
Daniel Vetter709ea972010-07-02 15:02:16 +0100568 *
Daniel Vettere18c0412014-01-23 00:39:13 +0100569 * Warning:
570 * As long as the scan list is non-empty, no other operations than
Daniel Vetter709ea972010-07-02 15:02:16 +0100571 * adding/removing nodes to/from the scan list are allowed.
572 */
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100573void drm_mm_init_scan(struct drm_mm *mm,
Thierry Reding440fd522015-01-23 09:05:06 +0100574 u64 size,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100575 unsigned alignment,
576 unsigned long color)
Daniel Vetter709ea972010-07-02 15:02:16 +0100577{
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100578 mm->scan_color = color;
Daniel Vetter709ea972010-07-02 15:02:16 +0100579 mm->scan_alignment = alignment;
580 mm->scan_size = size;
581 mm->scanned_blocks = 0;
582 mm->scan_hit_start = 0;
Chris Wilson901593f2012-12-19 16:51:06 +0000583 mm->scan_hit_end = 0;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200584 mm->scan_check_range = 0;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100585 mm->prev_scanned_node = NULL;
Daniel Vetter709ea972010-07-02 15:02:16 +0100586}
587EXPORT_SYMBOL(drm_mm_init_scan);
588
589/**
Daniel Vettere18c0412014-01-23 00:39:13 +0100590 * drm_mm_init_scan - initialize range-restricted lru scanning
591 * @mm: drm_mm to scan
592 * @size: size of the allocation
593 * @alignment: alignment of the allocation
594 * @color: opaque tag value to use for the allocation
595 * @start: start of the allowed range for the allocation
596 * @end: end of the allowed range for the allocation
Daniel Vetterd935cc62010-09-16 15:13:11 +0200597 *
598 * This simply sets up the scanning routines with the parameters for the desired
Daniel Vettere18c0412014-01-23 00:39:13 +0100599 * hole. Note that there's no need to specify allocation flags, since they only
600 * change the place a node is allocated from within a suitable hole.
Daniel Vetterd935cc62010-09-16 15:13:11 +0200601 *
Daniel Vettere18c0412014-01-23 00:39:13 +0100602 * Warning:
603 * As long as the scan list is non-empty, no other operations than
Daniel Vetterd935cc62010-09-16 15:13:11 +0200604 * adding/removing nodes to/from the scan list are allowed.
605 */
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100606void drm_mm_init_scan_with_range(struct drm_mm *mm,
Thierry Reding440fd522015-01-23 09:05:06 +0100607 u64 size,
Daniel Vetterd935cc62010-09-16 15:13:11 +0200608 unsigned alignment,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100609 unsigned long color,
Thierry Reding440fd522015-01-23 09:05:06 +0100610 u64 start,
611 u64 end)
Daniel Vetterd935cc62010-09-16 15:13:11 +0200612{
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100613 mm->scan_color = color;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200614 mm->scan_alignment = alignment;
615 mm->scan_size = size;
616 mm->scanned_blocks = 0;
617 mm->scan_hit_start = 0;
Chris Wilson901593f2012-12-19 16:51:06 +0000618 mm->scan_hit_end = 0;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200619 mm->scan_start = start;
620 mm->scan_end = end;
621 mm->scan_check_range = 1;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100622 mm->prev_scanned_node = NULL;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200623}
624EXPORT_SYMBOL(drm_mm_init_scan_with_range);
625
626/**
Daniel Vettere18c0412014-01-23 00:39:13 +0100627 * drm_mm_scan_add_block - add a node to the scan list
628 * @node: drm_mm_node to add
629 *
Daniel Vetter709ea972010-07-02 15:02:16 +0100630 * Add a node to the scan list that might be freed to make space for the desired
631 * hole.
632 *
Daniel Vettere18c0412014-01-23 00:39:13 +0100633 * Returns:
634 * True if a hole has been found, false otherwise.
Daniel Vetter709ea972010-07-02 15:02:16 +0100635 */
Daniel Vettere18c0412014-01-23 00:39:13 +0100636bool drm_mm_scan_add_block(struct drm_mm_node *node)
Daniel Vetter709ea972010-07-02 15:02:16 +0100637{
638 struct drm_mm *mm = node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100639 struct drm_mm_node *prev_node;
Thierry Reding440fd522015-01-23 09:05:06 +0100640 u64 hole_start, hole_end;
641 u64 adj_start, adj_end;
Daniel Vetter709ea972010-07-02 15:02:16 +0100642
643 mm->scanned_blocks++;
644
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100645 BUG_ON(node->scanned_block);
Daniel Vetter709ea972010-07-02 15:02:16 +0100646 node->scanned_block = 1;
Daniel Vetter709ea972010-07-02 15:02:16 +0100647
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100648 prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
649 node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100650
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100651 node->scanned_preceeds_hole = prev_node->hole_follows;
652 prev_node->hole_follows = 1;
653 list_del(&node->node_list);
654 node->node_list.prev = &prev_node->node_list;
Daniel Vetterae0cec22011-02-18 17:59:15 +0100655 node->node_list.next = &mm->prev_scanned_node->node_list;
656 mm->prev_scanned_node = node;
Daniel Vetter709ea972010-07-02 15:02:16 +0100657
Chris Wilson901593f2012-12-19 16:51:06 +0000658 adj_start = hole_start = drm_mm_hole_node_start(prev_node);
659 adj_end = hole_end = drm_mm_hole_node_end(prev_node);
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100660
Daniel Vetterd935cc62010-09-16 15:13:11 +0200661 if (mm->scan_check_range) {
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100662 if (adj_start < mm->scan_start)
663 adj_start = mm->scan_start;
664 if (adj_end > mm->scan_end)
665 adj_end = mm->scan_end;
Daniel Vetterd935cc62010-09-16 15:13:11 +0200666 }
667
Chris Wilson901593f2012-12-19 16:51:06 +0000668 if (mm->color_adjust)
669 mm->color_adjust(prev_node, mm->scan_color,
670 &adj_start, &adj_end);
671
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100672 if (check_free_hole(adj_start, adj_end,
Daniel Vetter75214732010-08-26 21:44:17 +0200673 mm->scan_size, mm->scan_alignment)) {
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100674 mm->scan_hit_start = hole_start;
Chris Wilson901593f2012-12-19 16:51:06 +0000675 mm->scan_hit_end = hole_end;
Daniel Vettere18c0412014-01-23 00:39:13 +0100676 return true;
Daniel Vetter709ea972010-07-02 15:02:16 +0100677 }
678
Daniel Vettere18c0412014-01-23 00:39:13 +0100679 return false;
Daniel Vetter709ea972010-07-02 15:02:16 +0100680}
681EXPORT_SYMBOL(drm_mm_scan_add_block);
682
683/**
Daniel Vettere18c0412014-01-23 00:39:13 +0100684 * drm_mm_scan_remove_block - remove a node from the scan list
685 * @node: drm_mm_node to remove
Daniel Vetter709ea972010-07-02 15:02:16 +0100686 *
687 * Nodes _must_ be removed in the exact same order from the scan list as they
688 * have been added, otherwise the internal state of the memory manager will be
689 * corrupted.
690 *
691 * When the scan list is empty, the selected memory nodes can be freed. An
David Herrmann31e5d7c2013-07-27 13:36:27 +0200692 * immediately following drm_mm_search_free with !DRM_MM_SEARCH_BEST will then
693 * return the just freed block (because its at the top of the free_stack list).
Daniel Vetter709ea972010-07-02 15:02:16 +0100694 *
Daniel Vettere18c0412014-01-23 00:39:13 +0100695 * Returns:
696 * True if this block should be evicted, false otherwise. Will always
697 * return false when no hole has been found.
Daniel Vetter709ea972010-07-02 15:02:16 +0100698 */
Daniel Vettere18c0412014-01-23 00:39:13 +0100699bool drm_mm_scan_remove_block(struct drm_mm_node *node)
Daniel Vetter709ea972010-07-02 15:02:16 +0100700{
701 struct drm_mm *mm = node->mm;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100702 struct drm_mm_node *prev_node;
Daniel Vetter709ea972010-07-02 15:02:16 +0100703
704 mm->scanned_blocks--;
705
706 BUG_ON(!node->scanned_block);
707 node->scanned_block = 0;
Daniel Vetter709ea972010-07-02 15:02:16 +0100708
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100709 prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
710 node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100711
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100712 prev_node->hole_follows = node->scanned_preceeds_hole;
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100713 list_add(&node->node_list, &prev_node->node_list);
Daniel Vetter709ea972010-07-02 15:02:16 +0100714
Chris Wilson901593f2012-12-19 16:51:06 +0000715 return (drm_mm_hole_node_end(node) > mm->scan_hit_start &&
716 node->start < mm->scan_hit_end);
Daniel Vetter709ea972010-07-02 15:02:16 +0100717}
718EXPORT_SYMBOL(drm_mm_scan_remove_block);
719
Daniel Vettere18c0412014-01-23 00:39:13 +0100720/**
721 * drm_mm_clean - checks whether an allocator is clean
722 * @mm: drm_mm allocator to check
723 *
724 * Returns:
725 * True if the allocator is completely free, false if there's still a node
726 * allocated in it.
727 */
728bool drm_mm_clean(struct drm_mm * mm)
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100729{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100730 struct list_head *head = &mm->head_node.node_list;
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100731
732 return (head->next->next == head);
733}
Jerome Glisse249d6042009-04-08 17:11:16 +0200734EXPORT_SYMBOL(drm_mm_clean);
Thomas Hellstrom1d584202007-01-08 22:25:47 +1100735
Daniel Vettere18c0412014-01-23 00:39:13 +0100736/**
737 * drm_mm_init - initialize a drm-mm allocator
738 * @mm: the drm_mm structure to initialize
739 * @start: start of the range managed by @mm
740 * @size: end of the range managed by @mm
741 *
742 * Note that @mm must be cleared to 0 before calling this function.
743 */
Thierry Reding440fd522015-01-23 09:05:06 +0100744void drm_mm_init(struct drm_mm * mm, u64 start, u64 size)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000745{
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100746 INIT_LIST_HEAD(&mm->hole_stack);
Daniel Vetter709ea972010-07-02 15:02:16 +0100747 mm->scanned_blocks = 0;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000748
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100749 /* Clever trick to avoid a special case in the free hole tracking. */
750 INIT_LIST_HEAD(&mm->head_node.node_list);
751 INIT_LIST_HEAD(&mm->head_node.hole_stack);
752 mm->head_node.hole_follows = 1;
753 mm->head_node.scanned_block = 0;
754 mm->head_node.scanned_prev_free = 0;
755 mm->head_node.scanned_next_free = 0;
756 mm->head_node.mm = mm;
757 mm->head_node.start = start + size;
758 mm->head_node.size = start - mm->head_node.start;
759 list_add_tail(&mm->head_node.hole_stack, &mm->hole_stack);
760
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100761 mm->color_adjust = NULL;
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000762}
Eric Anholt673a3942008-07-30 12:06:12 -0700763EXPORT_SYMBOL(drm_mm_init);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000764
Daniel Vettere18c0412014-01-23 00:39:13 +0100765/**
766 * drm_mm_takedown - clean up a drm_mm allocator
767 * @mm: drm_mm allocator to clean up
768 *
769 * Note that it is a bug to call this function on an allocator which is not
770 * clean.
771 */
Dave Airlie55910512007-07-11 16:53:40 +1000772void drm_mm_takedown(struct drm_mm * mm)
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000773{
David Herrmannc700c672013-07-27 13:39:28 +0200774 WARN(!list_empty(&mm->head_node.node_list),
775 "Memory manager not clean during takedown.\n");
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000776}
Dave Airlief453ba02008-11-07 14:05:41 -0800777EXPORT_SYMBOL(drm_mm_takedown);
Dave Airliefa8a1232009-08-26 13:13:37 +1000778
Thierry Reding440fd522015-01-23 09:05:06 +0100779static u64 drm_mm_debug_hole(struct drm_mm_node *entry,
780 const char *prefix)
Daniel Vetter2c54b132013-07-01 22:01:02 +0200781{
Thierry Reding440fd522015-01-23 09:05:06 +0100782 u64 hole_start, hole_end, hole_size;
Daniel Vetter2c54b132013-07-01 22:01:02 +0200783
784 if (entry->hole_follows) {
785 hole_start = drm_mm_hole_node_start(entry);
786 hole_end = drm_mm_hole_node_end(entry);
787 hole_size = hole_end - hole_start;
Thierry Reding440fd522015-01-23 09:05:06 +0100788 pr_debug("%s %#llx-%#llx: %llu: free\n", prefix, hole_start,
789 hole_end, hole_size);
Daniel Vetter2c54b132013-07-01 22:01:02 +0200790 return hole_size;
791 }
792
793 return 0;
794}
795
Daniel Vettere18c0412014-01-23 00:39:13 +0100796/**
797 * drm_mm_debug_table - dump allocator state to dmesg
798 * @mm: drm_mm allocator to dump
799 * @prefix: prefix to use for dumping to dmesg
800 */
Jerome Glisse99d7e482009-12-09 21:55:09 +0100801void drm_mm_debug_table(struct drm_mm *mm, const char *prefix)
802{
803 struct drm_mm_node *entry;
Thierry Reding440fd522015-01-23 09:05:06 +0100804 u64 total_used = 0, total_free = 0, total = 0;
Jerome Glisse99d7e482009-12-09 21:55:09 +0100805
Daniel Vetter2c54b132013-07-01 22:01:02 +0200806 total_free += drm_mm_debug_hole(&mm->head_node, prefix);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100807
808 drm_mm_for_each_node(entry, mm) {
Thierry Reding440fd522015-01-23 09:05:06 +0100809 pr_debug("%s %#llx-%#llx: %llu: used\n", prefix, entry->start,
810 entry->start + entry->size, entry->size);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100811 total_used += entry->size;
Daniel Vetter2c54b132013-07-01 22:01:02 +0200812 total_free += drm_mm_debug_hole(entry, prefix);
Jerome Glisse99d7e482009-12-09 21:55:09 +0100813 }
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100814 total = total_free + total_used;
815
Thierry Reding440fd522015-01-23 09:05:06 +0100816 pr_debug("%s total: %llu, used %llu free %llu\n", prefix, total,
817 total_used, total_free);
Jerome Glisse99d7e482009-12-09 21:55:09 +0100818}
819EXPORT_SYMBOL(drm_mm_debug_table);
820
Dave Airliefa8a1232009-08-26 13:13:37 +1000821#if defined(CONFIG_DEBUG_FS)
Thierry Reding440fd522015-01-23 09:05:06 +0100822static u64 drm_mm_dump_hole(struct seq_file *m, struct drm_mm_node *entry)
Daniel Vetter3a359f02013-04-20 12:08:11 +0200823{
Thierry Reding440fd522015-01-23 09:05:06 +0100824 u64 hole_start, hole_end, hole_size;
Daniel Vetter3a359f02013-04-20 12:08:11 +0200825
826 if (entry->hole_follows) {
827 hole_start = drm_mm_hole_node_start(entry);
828 hole_end = drm_mm_hole_node_end(entry);
829 hole_size = hole_end - hole_start;
Russell King2f157912015-05-28 10:36:27 +0100830 seq_printf(m, "%#018llx-%#018llx: %llu: free\n", hole_start,
Thierry Reding440fd522015-01-23 09:05:06 +0100831 hole_end, hole_size);
Daniel Vetter3a359f02013-04-20 12:08:11 +0200832 return hole_size;
833 }
834
835 return 0;
836}
837
Daniel Vettere18c0412014-01-23 00:39:13 +0100838/**
839 * drm_mm_dump_table - dump allocator state to a seq_file
840 * @m: seq_file to dump to
841 * @mm: drm_mm allocator to dump
842 */
Dave Airliefa8a1232009-08-26 13:13:37 +1000843int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm)
844{
845 struct drm_mm_node *entry;
Thierry Reding440fd522015-01-23 09:05:06 +0100846 u64 total_used = 0, total_free = 0, total = 0;
Dave Airliefa8a1232009-08-26 13:13:37 +1000847
Daniel Vetter3a359f02013-04-20 12:08:11 +0200848 total_free += drm_mm_dump_hole(m, &mm->head_node);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100849
850 drm_mm_for_each_node(entry, mm) {
Russell King2f157912015-05-28 10:36:27 +0100851 seq_printf(m, "%#018llx-%#018llx: %llu: used\n", entry->start,
Thierry Reding440fd522015-01-23 09:05:06 +0100852 entry->start + entry->size, entry->size);
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100853 total_used += entry->size;
Daniel Vetter3a359f02013-04-20 12:08:11 +0200854 total_free += drm_mm_dump_hole(m, entry);
Dave Airliefa8a1232009-08-26 13:13:37 +1000855 }
Daniel Vetterea7b1dd2011-02-18 17:59:12 +0100856 total = total_free + total_used;
857
Thierry Reding440fd522015-01-23 09:05:06 +0100858 seq_printf(m, "total: %llu, used %llu free %llu\n", total,
859 total_used, total_free);
Dave Airliefa8a1232009-08-26 13:13:37 +1000860 return 0;
861}
862EXPORT_SYMBOL(drm_mm_dump_table);
863#endif