drm/i915: Record the RING_MODE register for post-mortem debugging
[deliverable/linux.git] / drivers / gpu / drm / drm_mm.c
CommitLineData
3a1bd924
TH
1/**************************************************************************
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:
96de0e25 41 * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
3a1bd924
TH
42 */
43
760285e7
DH
44#include <drm/drmP.h>
45#include <drm/drm_mm.h>
1d58420b 46#include <linux/slab.h>
fa8a1238 47#include <linux/seq_file.h>
2d1a8a48 48#include <linux/export.h>
202b52b7 49#include <linux/interval_tree_generic.h>
1d58420b 50
93110be6
DV
51/**
52 * DOC: Overview
53 *
54 * drm_mm provides a simple range allocator. The drivers are free to use the
55 * resource allocator from the linux core if it suits them, the upside of drm_mm
56 * is that it's in the DRM core. Which means that it's easier to extend for
57 * some of the crazier special purpose needs of gpus.
58 *
59 * The main data struct is &drm_mm, allocations are tracked in &drm_mm_node.
60 * Drivers are free to embed either of them into their own suitable
61 * datastructures. drm_mm itself will not do any allocations of its own, so if
62 * drivers choose not to embed nodes they need to still allocate them
63 * themselves.
64 *
65 * The range allocator also supports reservation of preallocated blocks. This is
66 * useful for taking over initial mode setting configurations from the firmware,
67 * where an object needs to be created which exactly matches the firmware's
68 * scanout target. As long as the range is still free it can be inserted anytime
69 * after the allocator is initialized, which helps with avoiding looped
70 * depencies in the driver load sequence.
71 *
72 * drm_mm maintains a stack of most recently freed holes, which of all
73 * simplistic datastructures seems to be a fairly decent approach to clustering
74 * allocations and avoiding too much fragmentation. This means free space
75 * searches are O(num_holes). Given that all the fancy features drm_mm supports
76 * something better would be fairly complex and since gfx thrashing is a fairly
77 * steep cliff not a real concern. Removing a node again is O(1).
78 *
79 * drm_mm supports a few features: Alignment and range restrictions can be
80 * supplied. Further more every &drm_mm_node has a color value (which is just an
81 * opaqua unsigned long) which in conjunction with a driver callback can be used
82 * to implement sophisticated placement restrictions. The i915 DRM driver uses
83 * this to implement guard pages between incompatible caching domains in the
84 * graphics TT.
85 *
62347f9e
LK
86 * Two behaviors are supported for searching and allocating: bottom-up and top-down.
87 * The default is bottom-up. Top-down allocation can be used if the memory area
88 * has different restrictions, or just to reduce fragmentation.
89 *
93110be6
DV
90 * Finally iteration helpers to walk all nodes and all holes are provided as are
91 * some basic allocator dumpers for debugging.
92 */
93
c700c67b 94static struct drm_mm_node *drm_mm_search_free_generic(const struct drm_mm *mm,
440fd528 95 u64 size,
c700c67b
DH
96 unsigned alignment,
97 unsigned long color,
98 enum drm_mm_search_flags flags);
99static struct drm_mm_node *drm_mm_search_free_in_range_generic(const struct drm_mm *mm,
440fd528 100 u64 size,
c700c67b
DH
101 unsigned alignment,
102 unsigned long color,
440fd528
TR
103 u64 start,
104 u64 end,
c700c67b 105 enum drm_mm_search_flags flags);
1d58420b 106
202b52b7
CW
107#define START(node) ((node)->start)
108#define LAST(node) ((node)->start + (node)->size - 1)
109
110INTERVAL_TREE_DEFINE(struct drm_mm_node, rb,
111 u64, __subtree_last,
112 START, LAST, static inline, drm_mm_interval_tree)
113
114struct drm_mm_node *
115drm_mm_interval_first(struct drm_mm *mm, u64 start, u64 last)
116{
117 return drm_mm_interval_tree_iter_first(&mm->interval_tree,
118 start, last);
119}
120EXPORT_SYMBOL(drm_mm_interval_first);
121
122struct drm_mm_node *
123drm_mm_interval_next(struct drm_mm_node *node, u64 start, u64 last)
124{
125 return drm_mm_interval_tree_iter_next(node, start, last);
126}
127EXPORT_SYMBOL(drm_mm_interval_next);
128
129static void drm_mm_interval_tree_add_node(struct drm_mm_node *hole_node,
130 struct drm_mm_node *node)
131{
132 struct drm_mm *mm = hole_node->mm;
133 struct rb_node **link, *rb;
134 struct drm_mm_node *parent;
135
136 node->__subtree_last = LAST(node);
137
138 if (hole_node->allocated) {
139 rb = &hole_node->rb;
140 while (rb) {
141 parent = rb_entry(rb, struct drm_mm_node, rb);
142 if (parent->__subtree_last >= node->__subtree_last)
143 break;
144
145 parent->__subtree_last = node->__subtree_last;
146 rb = rb_parent(rb);
147 }
148
149 rb = &hole_node->rb;
150 link = &hole_node->rb.rb_right;
151 } else {
152 rb = NULL;
153 link = &mm->interval_tree.rb_node;
154 }
155
156 while (*link) {
157 rb = *link;
158 parent = rb_entry(rb, struct drm_mm_node, rb);
159 if (parent->__subtree_last < node->__subtree_last)
160 parent->__subtree_last = node->__subtree_last;
161 if (node->start < parent->start)
162 link = &parent->rb.rb_left;
163 else
164 link = &parent->rb.rb_right;
165 }
166
167 rb_link_node(&node->rb, rb, link);
168 rb_insert_augmented(&node->rb,
169 &mm->interval_tree,
170 &drm_mm_interval_tree_augment);
171}
172
9fc935de
DV
173static void drm_mm_insert_helper(struct drm_mm_node *hole_node,
174 struct drm_mm_node *node,
440fd528 175 u64 size, unsigned alignment,
62347f9e
LK
176 unsigned long color,
177 enum drm_mm_allocator_flags flags)
3a1bd924 178{
ea7b1dd4 179 struct drm_mm *mm = hole_node->mm;
440fd528
TR
180 u64 hole_start = drm_mm_hole_node_start(hole_node);
181 u64 hole_end = drm_mm_hole_node_end(hole_node);
182 u64 adj_start = hole_start;
183 u64 adj_end = hole_end;
ea7b1dd4 184
9e8944ab 185 BUG_ON(node->allocated);
b0b7af18 186
6b9d89b4
CW
187 if (mm->color_adjust)
188 mm->color_adjust(hole_node, color, &adj_start, &adj_end);
1d58420b 189
62347f9e
LK
190 if (flags & DRM_MM_CREATE_TOP)
191 adj_start = adj_end - size;
192
6b9d89b4 193 if (alignment) {
440fd528
TR
194 u64 tmp = adj_start;
195 unsigned rem;
196
197 rem = do_div(tmp, alignment);
198 if (rem) {
62347f9e 199 if (flags & DRM_MM_CREATE_TOP)
440fd528 200 adj_start -= rem;
62347f9e 201 else
440fd528 202 adj_start += alignment - rem;
62347f9e 203 }
6b9d89b4
CW
204 }
205
62347f9e
LK
206 BUG_ON(adj_start < hole_start);
207 BUG_ON(adj_end > hole_end);
208
6b9d89b4 209 if (adj_start == hole_start) {
ea7b1dd4 210 hole_node->hole_follows = 0;
6b9d89b4
CW
211 list_del(&hole_node->hole_stack);
212 }
ea7b1dd4 213
6b9d89b4 214 node->start = adj_start;
ea7b1dd4
DV
215 node->size = size;
216 node->mm = mm;
6b9d89b4 217 node->color = color;
b0b7af18 218 node->allocated = 1;
3a1bd924 219
ea7b1dd4
DV
220 list_add(&node->node_list, &hole_node->node_list);
221
202b52b7
CW
222 drm_mm_interval_tree_add_node(hole_node, node);
223
6b9d89b4 224 BUG_ON(node->start + node->size > adj_end);
ea7b1dd4 225
6b9d89b4 226 node->hole_follows = 0;
9e8944ab 227 if (__drm_mm_hole_node_start(node) < hole_end) {
ea7b1dd4
DV
228 list_add(&node->hole_stack, &mm->hole_stack);
229 node->hole_follows = 1;
1d58420b 230 }
9fc935de
DV
231}
232
e18c0412
DV
233/**
234 * drm_mm_reserve_node - insert an pre-initialized node
235 * @mm: drm_mm allocator to insert @node into
236 * @node: drm_mm_node to insert
237 *
238 * This functions inserts an already set-up drm_mm_node into the allocator,
239 * meaning that start, size and color must be set by the caller. This is useful
240 * to initialize the allocator with preallocated objects which must be set-up
241 * before the range allocator can be set-up, e.g. when taking over a firmware
242 * framebuffer.
243 *
244 * Returns:
245 * 0 on success, -ENOSPC if there's no hole where @node is.
246 */
338710e7 247int drm_mm_reserve_node(struct drm_mm *mm, struct drm_mm_node *node)
5973c7ee 248{
202b52b7 249 u64 end = node->start + node->size;
b3a070cc 250 struct drm_mm_node *hole;
202b52b7 251 u64 hole_start, hole_end;
338710e7 252
aafdcfd3
CW
253 if (WARN_ON(node->size == 0))
254 return -EINVAL;
255
b80d3942
HS
256 end = node->start + node->size;
257
338710e7 258 /* Find the relevant hole to add our node to */
202b52b7
CW
259 hole = drm_mm_interval_tree_iter_first(&mm->interval_tree,
260 node->start, ~(u64)0);
261 if (hole) {
262 if (hole->start < end)
263 return -ENOSPC;
264 } else {
265 hole = list_entry(&mm->head_node.node_list,
266 typeof(*hole), node_list);
267 }
5973c7ee 268
202b52b7
CW
269 hole = list_last_entry(&hole->node_list, typeof(*hole), node_list);
270 if (!hole->hole_follows)
271 return -ENOSPC;
5973c7ee 272
202b52b7
CW
273 hole_start = __drm_mm_hole_node_start(hole);
274 hole_end = __drm_mm_hole_node_end(hole);
275 if (hole_start > node->start || hole_end < end)
276 return -ENOSPC;
5973c7ee 277
202b52b7
CW
278 node->mm = mm;
279 node->allocated = 1;
5973c7ee 280
202b52b7 281 list_add(&node->node_list, &hole->node_list);
5973c7ee 282
202b52b7
CW
283 drm_mm_interval_tree_add_node(hole, node);
284
285 if (node->start == hole_start) {
286 hole->hole_follows = 0;
a7879005 287 list_del(&hole->hole_stack);
202b52b7
CW
288 }
289
290 node->hole_follows = 0;
291 if (end != hole_end) {
292 list_add(&node->hole_stack, &mm->hole_stack);
293 node->hole_follows = 1;
5973c7ee
CW
294 }
295
202b52b7 296 return 0;
5973c7ee 297}
338710e7 298EXPORT_SYMBOL(drm_mm_reserve_node);
5973c7ee 299
b0b7af18 300/**
e18c0412
DV
301 * drm_mm_insert_node_generic - search for space and insert @node
302 * @mm: drm_mm to allocate from
303 * @node: preallocate node to insert
304 * @size: size of the allocation
305 * @alignment: alignment of the allocation
306 * @color: opaque tag value to use for this node
62347f9e
LK
307 * @sflags: flags to fine-tune the allocation search
308 * @aflags: flags to fine-tune the allocation behavior
e18c0412
DV
309 *
310 * The preallocated node must be cleared to 0.
311 *
312 * Returns:
313 * 0 on success, -ENOSPC if there's no suitable hole.
b0b7af18 314 */
b8103450 315int drm_mm_insert_node_generic(struct drm_mm *mm, struct drm_mm_node *node,
440fd528 316 u64 size, unsigned alignment,
31e5d7c6 317 unsigned long color,
62347f9e
LK
318 enum drm_mm_search_flags sflags,
319 enum drm_mm_allocator_flags aflags)
b0b7af18
DV
320{
321 struct drm_mm_node *hole_node;
322
aafdcfd3
CW
323 if (WARN_ON(size == 0))
324 return -EINVAL;
325
b8103450 326 hole_node = drm_mm_search_free_generic(mm, size, alignment,
62347f9e 327 color, sflags);
b0b7af18
DV
328 if (!hole_node)
329 return -ENOSPC;
330
62347f9e 331 drm_mm_insert_helper(hole_node, node, size, alignment, color, aflags);
b0b7af18
DV
332 return 0;
333}
b8103450
CW
334EXPORT_SYMBOL(drm_mm_insert_node_generic);
335
9fc935de
DV
336static void drm_mm_insert_helper_range(struct drm_mm_node *hole_node,
337 struct drm_mm_node *node,
440fd528 338 u64 size, unsigned alignment,
6b9d89b4 339 unsigned long color,
440fd528 340 u64 start, u64 end,
62347f9e 341 enum drm_mm_allocator_flags flags)
a2e68e92 342{
ea7b1dd4 343 struct drm_mm *mm = hole_node->mm;
440fd528
TR
344 u64 hole_start = drm_mm_hole_node_start(hole_node);
345 u64 hole_end = drm_mm_hole_node_end(hole_node);
346 u64 adj_start = hole_start;
347 u64 adj_end = hole_end;
a2e68e92 348
b0b7af18
DV
349 BUG_ON(!hole_node->hole_follows || node->allocated);
350
6b9d89b4
CW
351 if (adj_start < start)
352 adj_start = start;
901593f2
CW
353 if (adj_end > end)
354 adj_end = end;
355
356 if (mm->color_adjust)
357 mm->color_adjust(hole_node, color, &adj_start, &adj_end);
6b9d89b4 358
fafecc01
MT
359 if (flags & DRM_MM_CREATE_TOP)
360 adj_start = adj_end - size;
361
6b9d89b4 362 if (alignment) {
440fd528
TR
363 u64 tmp = adj_start;
364 unsigned rem;
365
366 rem = do_div(tmp, alignment);
367 if (rem) {
62347f9e 368 if (flags & DRM_MM_CREATE_TOP)
440fd528 369 adj_start -= rem;
62347f9e 370 else
440fd528 371 adj_start += alignment - rem;
62347f9e 372 }
6b9d89b4 373 }
ea7b1dd4 374
6b9d89b4 375 if (adj_start == hole_start) {
ea7b1dd4 376 hole_node->hole_follows = 0;
6b9d89b4 377 list_del(&hole_node->hole_stack);
a2e68e92
JG
378 }
379
6b9d89b4 380 node->start = adj_start;
ea7b1dd4
DV
381 node->size = size;
382 node->mm = mm;
6b9d89b4 383 node->color = color;
b0b7af18 384 node->allocated = 1;
ea7b1dd4 385
ea7b1dd4
DV
386 list_add(&node->node_list, &hole_node->node_list);
387
202b52b7
CW
388 drm_mm_interval_tree_add_node(hole_node, node);
389
62347f9e
LK
390 BUG_ON(node->start < start);
391 BUG_ON(node->start < adj_start);
6b9d89b4 392 BUG_ON(node->start + node->size > adj_end);
ea7b1dd4
DV
393 BUG_ON(node->start + node->size > end);
394
6b9d89b4 395 node->hole_follows = 0;
9e8944ab 396 if (__drm_mm_hole_node_start(node) < hole_end) {
ea7b1dd4
DV
397 list_add(&node->hole_stack, &mm->hole_stack);
398 node->hole_follows = 1;
a2e68e92 399 }
9fc935de
DV
400}
401
b0b7af18 402/**
e18c0412
DV
403 * drm_mm_insert_node_in_range_generic - ranged search for space and insert @node
404 * @mm: drm_mm to allocate from
405 * @node: preallocate node to insert
406 * @size: size of the allocation
407 * @alignment: alignment of the allocation
408 * @color: opaque tag value to use for this node
409 * @start: start of the allowed range for this node
410 * @end: end of the allowed range for this node
62347f9e
LK
411 * @sflags: flags to fine-tune the allocation search
412 * @aflags: flags to fine-tune the allocation behavior
e18c0412
DV
413 *
414 * The preallocated node must be cleared to 0.
415 *
416 * Returns:
417 * 0 on success, -ENOSPC if there's no suitable hole.
3a1bd924 418 */
b8103450 419int drm_mm_insert_node_in_range_generic(struct drm_mm *mm, struct drm_mm_node *node,
440fd528 420 u64 size, unsigned alignment,
62347f9e 421 unsigned long color,
440fd528 422 u64 start, u64 end,
62347f9e
LK
423 enum drm_mm_search_flags sflags,
424 enum drm_mm_allocator_flags aflags)
3a1bd924 425{
b0b7af18
DV
426 struct drm_mm_node *hole_node;
427
aafdcfd3
CW
428 if (WARN_ON(size == 0))
429 return -EINVAL;
430
b8103450
CW
431 hole_node = drm_mm_search_free_in_range_generic(mm,
432 size, alignment, color,
62347f9e 433 start, end, sflags);
b0b7af18
DV
434 if (!hole_node)
435 return -ENOSPC;
436
b8103450
CW
437 drm_mm_insert_helper_range(hole_node, node,
438 size, alignment, color,
62347f9e 439 start, end, aflags);
b0b7af18
DV
440 return 0;
441}
b8103450
CW
442EXPORT_SYMBOL(drm_mm_insert_node_in_range_generic);
443
b0b7af18 444/**
e18c0412
DV
445 * drm_mm_remove_node - Remove a memory node from the allocator.
446 * @node: drm_mm_node to remove
447 *
448 * This just removes a node from its drm_mm allocator. The node does not need to
449 * be cleared again before it can be re-inserted into this or any other drm_mm
450 * allocator. It is a bug to call this function on a un-allocated node.
b0b7af18
DV
451 */
452void drm_mm_remove_node(struct drm_mm_node *node)
453{
ea7b1dd4
DV
454 struct drm_mm *mm = node->mm;
455 struct drm_mm_node *prev_node;
3a1bd924 456
3ef80a81
BW
457 if (WARN_ON(!node->allocated))
458 return;
459
ea7b1dd4
DV
460 BUG_ON(node->scanned_block || node->scanned_prev_free
461 || node->scanned_next_free);
3a1bd924 462
ea7b1dd4
DV
463 prev_node =
464 list_entry(node->node_list.prev, struct drm_mm_node, node_list);
709ea971 465
ea7b1dd4 466 if (node->hole_follows) {
9e8944ab
CW
467 BUG_ON(__drm_mm_hole_node_start(node) ==
468 __drm_mm_hole_node_end(node));
ea7b1dd4
DV
469 list_del(&node->hole_stack);
470 } else
9e8944ab
CW
471 BUG_ON(__drm_mm_hole_node_start(node) !=
472 __drm_mm_hole_node_end(node));
473
249d6048 474
ea7b1dd4
DV
475 if (!prev_node->hole_follows) {
476 prev_node->hole_follows = 1;
477 list_add(&prev_node->hole_stack, &mm->hole_stack);
478 } else
479 list_move(&prev_node->hole_stack, &mm->hole_stack);
480
202b52b7 481 drm_mm_interval_tree_remove(node, &mm->interval_tree);
ea7b1dd4 482 list_del(&node->node_list);
b0b7af18
DV
483 node->allocated = 0;
484}
485EXPORT_SYMBOL(drm_mm_remove_node);
486
440fd528 487static int check_free_hole(u64 start, u64 end, u64 size, unsigned alignment)
7a6b2896 488{
75214733 489 if (end - start < size)
7a6b2896
DV
490 return 0;
491
492 if (alignment) {
440fd528
TR
493 u64 tmp = start;
494 unsigned rem;
495
496 rem = do_div(tmp, alignment);
046d669c 497 if (rem)
440fd528 498 start += alignment - rem;
7a6b2896
DV
499 }
500
6b9d89b4 501 return end >= start + size;
7a6b2896
DV
502}
503
c700c67b 504static struct drm_mm_node *drm_mm_search_free_generic(const struct drm_mm *mm,
440fd528 505 u64 size,
c700c67b
DH
506 unsigned alignment,
507 unsigned long color,
508 enum drm_mm_search_flags flags)
3a1bd924 509{
55910517
DA
510 struct drm_mm_node *entry;
511 struct drm_mm_node *best;
440fd528
TR
512 u64 adj_start;
513 u64 adj_end;
514 u64 best_size;
3a1bd924 515
709ea971
DV
516 BUG_ON(mm->scanned_blocks);
517
3a1bd924
TH
518 best = NULL;
519 best_size = ~0UL;
520
62347f9e
LK
521 __drm_mm_for_each_hole(entry, mm, adj_start, adj_end,
522 flags & DRM_MM_SEARCH_BELOW) {
440fd528 523 u64 hole_size = adj_end - adj_start;
145bccd2 524
6b9d89b4
CW
525 if (mm->color_adjust) {
526 mm->color_adjust(entry, color, &adj_start, &adj_end);
527 if (adj_end <= adj_start)
528 continue;
529 }
530
6b9d89b4 531 if (!check_free_hole(adj_start, adj_end, size, alignment))
1d58420b
TH
532 continue;
533
31e5d7c6 534 if (!(flags & DRM_MM_SEARCH_BEST))
7a6b2896 535 return entry;
1d58420b 536
145bccd2 537 if (hole_size < best_size) {
7a6b2896 538 best = entry;
145bccd2 539 best_size = hole_size;
3a1bd924
TH
540 }
541 }
542
543 return best;
544}
6b9d89b4 545
c700c67b 546static struct drm_mm_node *drm_mm_search_free_in_range_generic(const struct drm_mm *mm,
440fd528 547 u64 size,
6b9d89b4
CW
548 unsigned alignment,
549 unsigned long color,
440fd528
TR
550 u64 start,
551 u64 end,
31e5d7c6 552 enum drm_mm_search_flags flags)
a2e68e92 553{
a2e68e92
JG
554 struct drm_mm_node *entry;
555 struct drm_mm_node *best;
440fd528
TR
556 u64 adj_start;
557 u64 adj_end;
558 u64 best_size;
a2e68e92 559
709ea971
DV
560 BUG_ON(mm->scanned_blocks);
561
a2e68e92
JG
562 best = NULL;
563 best_size = ~0UL;
564
62347f9e
LK
565 __drm_mm_for_each_hole(entry, mm, adj_start, adj_end,
566 flags & DRM_MM_SEARCH_BELOW) {
440fd528 567 u64 hole_size = adj_end - adj_start;
145bccd2 568
9e8944ab
CW
569 if (adj_start < start)
570 adj_start = start;
571 if (adj_end > end)
572 adj_end = end;
6b9d89b4
CW
573
574 if (mm->color_adjust) {
575 mm->color_adjust(entry, color, &adj_start, &adj_end);
576 if (adj_end <= adj_start)
577 continue;
578 }
579
75214733 580 if (!check_free_hole(adj_start, adj_end, size, alignment))
a2e68e92
JG
581 continue;
582
31e5d7c6 583 if (!(flags & DRM_MM_SEARCH_BEST))
7a6b2896 584 return entry;
a2e68e92 585
145bccd2 586 if (hole_size < best_size) {
7a6b2896 587 best = entry;
145bccd2 588 best_size = hole_size;
a2e68e92
JG
589 }
590 }
591
592 return best;
593}
a2e68e92 594
b0b7af18 595/**
e18c0412
DV
596 * drm_mm_replace_node - move an allocation from @old to @new
597 * @old: drm_mm_node to remove from the allocator
598 * @new: drm_mm_node which should inherit @old's allocation
599 *
600 * This is useful for when drivers embed the drm_mm_node structure and hence
601 * can't move allocations by reassigning pointers. It's a combination of remove
602 * and insert with the guarantee that the allocation start will match.
b0b7af18
DV
603 */
604void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new)
605{
606 list_replace(&old->node_list, &new->node_list);
2bbd4492 607 list_replace(&old->hole_stack, &new->hole_stack);
202b52b7 608 rb_replace_node(&old->rb, &new->rb, &old->mm->interval_tree);
b0b7af18
DV
609 new->hole_follows = old->hole_follows;
610 new->mm = old->mm;
611 new->start = old->start;
612 new->size = old->size;
6b9d89b4 613 new->color = old->color;
202b52b7 614 new->__subtree_last = old->__subtree_last;
b0b7af18
DV
615
616 old->allocated = 0;
617 new->allocated = 1;
618}
619EXPORT_SYMBOL(drm_mm_replace_node);
620
93110be6
DV
621/**
622 * DOC: lru scan roaster
623 *
624 * Very often GPUs need to have continuous allocations for a given object. When
625 * evicting objects to make space for a new one it is therefore not most
626 * efficient when we simply start to select all objects from the tail of an LRU
627 * until there's a suitable hole: Especially for big objects or nodes that
628 * otherwise have special allocation constraints there's a good chance we evict
629 * lots of (smaller) objects unecessarily.
630 *
631 * The DRM range allocator supports this use-case through the scanning
632 * interfaces. First a scan operation needs to be initialized with
633 * drm_mm_init_scan() or drm_mm_init_scan_with_range(). The the driver adds
634 * objects to the roaster (probably by walking an LRU list, but this can be
635 * freely implemented) until a suitable hole is found or there's no further
636 * evitable object.
637 *
638 * The the driver must walk through all objects again in exactly the reverse
639 * order to restore the allocator state. Note that while the allocator is used
640 * in the scan mode no other operation is allowed.
641 *
642 * Finally the driver evicts all objects selected in the scan. Adding and
643 * removing an object is O(1), and since freeing a node is also O(1) the overall
644 * complexity is O(scanned_objects). So like the free stack which needs to be
645 * walked before a scan operation even begins this is linear in the number of
646 * objects. It doesn't seem to hurt badly.
647 */
648
709ea971 649/**
e18c0412
DV
650 * drm_mm_init_scan - initialize lru scanning
651 * @mm: drm_mm to scan
652 * @size: size of the allocation
653 * @alignment: alignment of the allocation
654 * @color: opaque tag value to use for the allocation
709ea971
DV
655 *
656 * This simply sets up the scanning routines with the parameters for the desired
e18c0412
DV
657 * hole. Note that there's no need to specify allocation flags, since they only
658 * change the place a node is allocated from within a suitable hole.
709ea971 659 *
e18c0412
DV
660 * Warning:
661 * As long as the scan list is non-empty, no other operations than
709ea971
DV
662 * adding/removing nodes to/from the scan list are allowed.
663 */
6b9d89b4 664void drm_mm_init_scan(struct drm_mm *mm,
440fd528 665 u64 size,
6b9d89b4
CW
666 unsigned alignment,
667 unsigned long color)
709ea971 668{
6b9d89b4 669 mm->scan_color = color;
709ea971
DV
670 mm->scan_alignment = alignment;
671 mm->scan_size = size;
672 mm->scanned_blocks = 0;
673 mm->scan_hit_start = 0;
901593f2 674 mm->scan_hit_end = 0;
d935cc61 675 mm->scan_check_range = 0;
ae0cec28 676 mm->prev_scanned_node = NULL;
709ea971
DV
677}
678EXPORT_SYMBOL(drm_mm_init_scan);
679
d935cc61 680/**
e18c0412
DV
681 * drm_mm_init_scan - initialize range-restricted lru scanning
682 * @mm: drm_mm to scan
683 * @size: size of the allocation
684 * @alignment: alignment of the allocation
685 * @color: opaque tag value to use for the allocation
686 * @start: start of the allowed range for the allocation
687 * @end: end of the allowed range for the allocation
d935cc61
DV
688 *
689 * This simply sets up the scanning routines with the parameters for the desired
e18c0412
DV
690 * hole. Note that there's no need to specify allocation flags, since they only
691 * change the place a node is allocated from within a suitable hole.
d935cc61 692 *
e18c0412
DV
693 * Warning:
694 * As long as the scan list is non-empty, no other operations than
d935cc61
DV
695 * adding/removing nodes to/from the scan list are allowed.
696 */
6b9d89b4 697void drm_mm_init_scan_with_range(struct drm_mm *mm,
440fd528 698 u64 size,
d935cc61 699 unsigned alignment,
6b9d89b4 700 unsigned long color,
440fd528
TR
701 u64 start,
702 u64 end)
d935cc61 703{
6b9d89b4 704 mm->scan_color = color;
d935cc61
DV
705 mm->scan_alignment = alignment;
706 mm->scan_size = size;
707 mm->scanned_blocks = 0;
708 mm->scan_hit_start = 0;
901593f2 709 mm->scan_hit_end = 0;
d935cc61
DV
710 mm->scan_start = start;
711 mm->scan_end = end;
712 mm->scan_check_range = 1;
ae0cec28 713 mm->prev_scanned_node = NULL;
d935cc61
DV
714}
715EXPORT_SYMBOL(drm_mm_init_scan_with_range);
716
709ea971 717/**
e18c0412
DV
718 * drm_mm_scan_add_block - add a node to the scan list
719 * @node: drm_mm_node to add
720 *
709ea971
DV
721 * Add a node to the scan list that might be freed to make space for the desired
722 * hole.
723 *
e18c0412
DV
724 * Returns:
725 * True if a hole has been found, false otherwise.
709ea971 726 */
e18c0412 727bool drm_mm_scan_add_block(struct drm_mm_node *node)
709ea971
DV
728{
729 struct drm_mm *mm = node->mm;
ea7b1dd4 730 struct drm_mm_node *prev_node;
440fd528
TR
731 u64 hole_start, hole_end;
732 u64 adj_start, adj_end;
709ea971
DV
733
734 mm->scanned_blocks++;
735
ea7b1dd4 736 BUG_ON(node->scanned_block);
709ea971 737 node->scanned_block = 1;
709ea971 738
ea7b1dd4
DV
739 prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
740 node_list);
709ea971 741
ea7b1dd4
DV
742 node->scanned_preceeds_hole = prev_node->hole_follows;
743 prev_node->hole_follows = 1;
744 list_del(&node->node_list);
745 node->node_list.prev = &prev_node->node_list;
ae0cec28
DV
746 node->node_list.next = &mm->prev_scanned_node->node_list;
747 mm->prev_scanned_node = node;
709ea971 748
901593f2
CW
749 adj_start = hole_start = drm_mm_hole_node_start(prev_node);
750 adj_end = hole_end = drm_mm_hole_node_end(prev_node);
6b9d89b4 751
d935cc61 752 if (mm->scan_check_range) {
6b9d89b4
CW
753 if (adj_start < mm->scan_start)
754 adj_start = mm->scan_start;
755 if (adj_end > mm->scan_end)
756 adj_end = mm->scan_end;
d935cc61
DV
757 }
758
901593f2
CW
759 if (mm->color_adjust)
760 mm->color_adjust(prev_node, mm->scan_color,
761 &adj_start, &adj_end);
762
6b9d89b4 763 if (check_free_hole(adj_start, adj_end,
75214733 764 mm->scan_size, mm->scan_alignment)) {
ea7b1dd4 765 mm->scan_hit_start = hole_start;
901593f2 766 mm->scan_hit_end = hole_end;
e18c0412 767 return true;
709ea971
DV
768 }
769
e18c0412 770 return false;
709ea971
DV
771}
772EXPORT_SYMBOL(drm_mm_scan_add_block);
773
774/**
e18c0412
DV
775 * drm_mm_scan_remove_block - remove a node from the scan list
776 * @node: drm_mm_node to remove
709ea971
DV
777 *
778 * Nodes _must_ be removed in the exact same order from the scan list as they
779 * have been added, otherwise the internal state of the memory manager will be
780 * corrupted.
781 *
782 * When the scan list is empty, the selected memory nodes can be freed. An
31e5d7c6
DH
783 * immediately following drm_mm_search_free with !DRM_MM_SEARCH_BEST will then
784 * return the just freed block (because its at the top of the free_stack list).
709ea971 785 *
e18c0412
DV
786 * Returns:
787 * True if this block should be evicted, false otherwise. Will always
788 * return false when no hole has been found.
709ea971 789 */
e18c0412 790bool drm_mm_scan_remove_block(struct drm_mm_node *node)
709ea971
DV
791{
792 struct drm_mm *mm = node->mm;
ea7b1dd4 793 struct drm_mm_node *prev_node;
709ea971
DV
794
795 mm->scanned_blocks--;
796
797 BUG_ON(!node->scanned_block);
798 node->scanned_block = 0;
709ea971 799
ea7b1dd4
DV
800 prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
801 node_list);
709ea971 802
ea7b1dd4 803 prev_node->hole_follows = node->scanned_preceeds_hole;
ea7b1dd4 804 list_add(&node->node_list, &prev_node->node_list);
709ea971 805
901593f2
CW
806 return (drm_mm_hole_node_end(node) > mm->scan_hit_start &&
807 node->start < mm->scan_hit_end);
709ea971
DV
808}
809EXPORT_SYMBOL(drm_mm_scan_remove_block);
810
e18c0412
DV
811/**
812 * drm_mm_clean - checks whether an allocator is clean
813 * @mm: drm_mm allocator to check
814 *
815 * Returns:
816 * True if the allocator is completely free, false if there's still a node
817 * allocated in it.
818 */
819bool drm_mm_clean(struct drm_mm * mm)
3a1bd924 820{
ea7b1dd4 821 struct list_head *head = &mm->head_node.node_list;
3a1bd924 822
1d58420b
TH
823 return (head->next->next == head);
824}
249d6048 825EXPORT_SYMBOL(drm_mm_clean);
3a1bd924 826
e18c0412
DV
827/**
828 * drm_mm_init - initialize a drm-mm allocator
829 * @mm: the drm_mm structure to initialize
830 * @start: start of the range managed by @mm
831 * @size: end of the range managed by @mm
832 *
833 * Note that @mm must be cleared to 0 before calling this function.
834 */
440fd528 835void drm_mm_init(struct drm_mm * mm, u64 start, u64 size)
1d58420b 836{
ea7b1dd4 837 INIT_LIST_HEAD(&mm->hole_stack);
709ea971 838 mm->scanned_blocks = 0;
3a1bd924 839
ea7b1dd4
DV
840 /* Clever trick to avoid a special case in the free hole tracking. */
841 INIT_LIST_HEAD(&mm->head_node.node_list);
ea7b1dd4
DV
842 mm->head_node.hole_follows = 1;
843 mm->head_node.scanned_block = 0;
844 mm->head_node.scanned_prev_free = 0;
845 mm->head_node.scanned_next_free = 0;
846 mm->head_node.mm = mm;
847 mm->head_node.start = start + size;
848 mm->head_node.size = start - mm->head_node.start;
849 list_add_tail(&mm->head_node.hole_stack, &mm->hole_stack);
850
202b52b7
CW
851 mm->interval_tree = RB_ROOT;
852
6b9d89b4 853 mm->color_adjust = NULL;
3a1bd924 854}
673a394b 855EXPORT_SYMBOL(drm_mm_init);
3a1bd924 856
e18c0412
DV
857/**
858 * drm_mm_takedown - clean up a drm_mm allocator
859 * @mm: drm_mm allocator to clean up
860 *
861 * Note that it is a bug to call this function on an allocator which is not
862 * clean.
863 */
55910517 864void drm_mm_takedown(struct drm_mm * mm)
3a1bd924 865{
c700c67b
DH
866 WARN(!list_empty(&mm->head_node.node_list),
867 "Memory manager not clean during takedown.\n");
3a1bd924 868}
f453ba04 869EXPORT_SYMBOL(drm_mm_takedown);
fa8a1238 870
440fd528
TR
871static u64 drm_mm_debug_hole(struct drm_mm_node *entry,
872 const char *prefix)
99d7e48e 873{
440fd528 874 u64 hole_start, hole_end, hole_size;
ea7b1dd4 875
2c54b133
DV
876 if (entry->hole_follows) {
877 hole_start = drm_mm_hole_node_start(entry);
878 hole_end = drm_mm_hole_node_end(entry);
879 hole_size = hole_end - hole_start;
440fd528
TR
880 pr_debug("%s %#llx-%#llx: %llu: free\n", prefix, hole_start,
881 hole_end, hole_size);
2c54b133
DV
882 return hole_size;
883 }
884
885 return 0;
886}
887
e18c0412
DV
888/**
889 * drm_mm_debug_table - dump allocator state to dmesg
890 * @mm: drm_mm allocator to dump
891 * @prefix: prefix to use for dumping to dmesg
892 */
2c54b133
DV
893void drm_mm_debug_table(struct drm_mm *mm, const char *prefix)
894{
895 struct drm_mm_node *entry;
440fd528 896 u64 total_used = 0, total_free = 0, total = 0;
2c54b133
DV
897
898 total_free += drm_mm_debug_hole(&mm->head_node, prefix);
ea7b1dd4
DV
899
900 drm_mm_for_each_node(entry, mm) {
440fd528
TR
901 pr_debug("%s %#llx-%#llx: %llu: used\n", prefix, entry->start,
902 entry->start + entry->size, entry->size);
ea7b1dd4 903 total_used += entry->size;
2c54b133 904 total_free += drm_mm_debug_hole(entry, prefix);
99d7e48e 905 }
ea7b1dd4
DV
906 total = total_free + total_used;
907
440fd528
TR
908 pr_debug("%s total: %llu, used %llu free %llu\n", prefix, total,
909 total_used, total_free);
99d7e48e
JG
910}
911EXPORT_SYMBOL(drm_mm_debug_table);
912
fa8a1238 913#if defined(CONFIG_DEBUG_FS)
440fd528 914static u64 drm_mm_dump_hole(struct seq_file *m, struct drm_mm_node *entry)
fa8a1238 915{
440fd528 916 u64 hole_start, hole_end, hole_size;
ea7b1dd4 917
3a359f0b
DV
918 if (entry->hole_follows) {
919 hole_start = drm_mm_hole_node_start(entry);
920 hole_end = drm_mm_hole_node_end(entry);
921 hole_size = hole_end - hole_start;
2f15791c 922 seq_printf(m, "%#018llx-%#018llx: %llu: free\n", hole_start,
440fd528 923 hole_end, hole_size);
3a359f0b
DV
924 return hole_size;
925 }
926
927 return 0;
928}
929
e18c0412
DV
930/**
931 * drm_mm_dump_table - dump allocator state to a seq_file
932 * @m: seq_file to dump to
933 * @mm: drm_mm allocator to dump
934 */
3a359f0b
DV
935int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm)
936{
937 struct drm_mm_node *entry;
440fd528 938 u64 total_used = 0, total_free = 0, total = 0;
3a359f0b
DV
939
940 total_free += drm_mm_dump_hole(m, &mm->head_node);
ea7b1dd4
DV
941
942 drm_mm_for_each_node(entry, mm) {
2f15791c 943 seq_printf(m, "%#018llx-%#018llx: %llu: used\n", entry->start,
440fd528 944 entry->start + entry->size, entry->size);
ea7b1dd4 945 total_used += entry->size;
3a359f0b 946 total_free += drm_mm_dump_hole(m, entry);
fa8a1238 947 }
ea7b1dd4
DV
948 total = total_free + total_used;
949
440fd528
TR
950 seq_printf(m, "total: %llu, used %llu free %llu\n", total,
951 total_used, total_free);
fa8a1238
DA
952 return 0;
953}
954EXPORT_SYMBOL(drm_mm_dump_table);
955#endif
This page took 0.703891 seconds and 5 git commands to generate.