Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 1 | /************************************************************************** |
| 2 | * |
| 3 | * Copyright 2006-2008 Tungsten Graphics, Inc., Cedar Park, TX. 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 | * Authors: |
| 30 | * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> |
| 31 | */ |
| 32 | |
| 33 | #ifndef _DRM_MM_H_ |
| 34 | #define _DRM_MM_H_ |
| 35 | |
| 36 | /* |
| 37 | * Generic range manager structs |
| 38 | */ |
David Herrmann | 86e81f0 | 2013-07-25 18:02:31 +0200 | [diff] [blame] | 39 | #include <linux/bug.h> |
| 40 | #include <linux/kernel.h> |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 41 | #include <linux/list.h> |
David Herrmann | 86e81f0 | 2013-07-25 18:02:31 +0200 | [diff] [blame] | 42 | #include <linux/spinlock.h> |
Dave Airlie | f1938cd | 2009-09-08 11:32:08 +1000 | [diff] [blame] | 43 | #ifdef CONFIG_DEBUG_FS |
| 44 | #include <linux/seq_file.h> |
| 45 | #endif |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 46 | |
David Herrmann | 31e5d7c | 2013-07-27 13:36:27 +0200 | [diff] [blame] | 47 | enum drm_mm_search_flags { |
| 48 | DRM_MM_SEARCH_DEFAULT = 0, |
| 49 | DRM_MM_SEARCH_BEST = 1 << 0, |
| 50 | }; |
| 51 | |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 52 | struct drm_mm_node { |
Daniel Vetter | d1024ce | 2010-07-02 15:02:14 +0100 | [diff] [blame] | 53 | struct list_head node_list; |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 54 | struct list_head hole_stack; |
| 55 | unsigned hole_follows : 1; |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 56 | unsigned scanned_block : 1; |
| 57 | unsigned scanned_prev_free : 1; |
| 58 | unsigned scanned_next_free : 1; |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 59 | unsigned scanned_preceeds_hole : 1; |
Daniel Vetter | b0b7af1 | 2011-02-18 17:59:14 +0100 | [diff] [blame] | 60 | unsigned allocated : 1; |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 61 | unsigned long color; |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 62 | unsigned long start; |
| 63 | unsigned long size; |
| 64 | struct drm_mm *mm; |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | struct drm_mm { |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 68 | /* List of all memory nodes that immediately precede a free hole. */ |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 69 | struct list_head hole_stack; |
| 70 | /* head_node.node_list is the list of all memory nodes, ordered |
| 71 | * according to the (increasing) start address of the memory node. */ |
| 72 | struct drm_mm_node head_node; |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 73 | unsigned int scan_check_range : 1; |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 74 | unsigned scan_alignment; |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 75 | unsigned long scan_color; |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 76 | unsigned long scan_size; |
| 77 | unsigned long scan_hit_start; |
Chris Wilson | 901593f | 2012-12-19 16:51:06 +0000 | [diff] [blame] | 78 | unsigned long scan_hit_end; |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 79 | unsigned scanned_blocks; |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 80 | unsigned long scan_start; |
| 81 | unsigned long scan_end; |
Daniel Vetter | ae0cec2 | 2011-02-18 17:59:15 +0100 | [diff] [blame] | 82 | struct drm_mm_node *prev_scanned_node; |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 83 | |
| 84 | void (*color_adjust)(struct drm_mm_node *node, unsigned long color, |
| 85 | unsigned long *start, unsigned long *end); |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 86 | }; |
| 87 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 88 | /** |
| 89 | * drm_mm_node_allocated - checks whether a node is allocated |
| 90 | * @node: drm_mm_node to check |
| 91 | * |
| 92 | * Drivers should use this helpers for proper encapusulation of drm_mm |
| 93 | * internals. |
| 94 | * |
| 95 | * Returns: |
| 96 | * True if the @node is allocated. |
| 97 | */ |
Daniel Vetter | b0b7af1 | 2011-02-18 17:59:14 +0100 | [diff] [blame] | 98 | static inline bool drm_mm_node_allocated(struct drm_mm_node *node) |
| 99 | { |
| 100 | return node->allocated; |
| 101 | } |
| 102 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 103 | /** |
| 104 | * drm_mm_initialized - checks whether an allocator is initialized |
| 105 | * @mm: drm_mm to check |
| 106 | * |
| 107 | * Drivers should use this helpers for proper encapusulation of drm_mm |
| 108 | * internals. |
| 109 | * |
| 110 | * Returns: |
| 111 | * True if the @mm is initialized. |
| 112 | */ |
Daniel Vetter | 31a5b8c | 2011-02-18 17:59:11 +0100 | [diff] [blame] | 113 | static inline bool drm_mm_initialized(struct drm_mm *mm) |
| 114 | { |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 115 | return mm->hole_stack.next; |
Daniel Vetter | 31a5b8c | 2011-02-18 17:59:11 +0100 | [diff] [blame] | 116 | } |
Chris Wilson | 9e8944a | 2012-11-15 11:32:17 +0000 | [diff] [blame] | 117 | |
| 118 | static inline unsigned long __drm_mm_hole_node_start(struct drm_mm_node *hole_node) |
| 119 | { |
| 120 | return hole_node->start + hole_node->size; |
| 121 | } |
| 122 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 123 | /** |
| 124 | * drm_mm_hole_node_start - computes the start of the hole following @node |
| 125 | * @hole_node: drm_mm_node which implicitly tracks the following hole |
| 126 | * |
| 127 | * This is useful for driver-sepific debug dumpers. Otherwise drivers should not |
| 128 | * inspect holes themselves. Drivers must check first whether a hole indeed |
| 129 | * follows by looking at node->hole_follows. |
| 130 | * |
| 131 | * Returns: |
| 132 | * Start of the subsequent hole. |
| 133 | */ |
Chris Wilson | 9e8944a | 2012-11-15 11:32:17 +0000 | [diff] [blame] | 134 | static inline unsigned long drm_mm_hole_node_start(struct drm_mm_node *hole_node) |
| 135 | { |
| 136 | BUG_ON(!hole_node->hole_follows); |
| 137 | return __drm_mm_hole_node_start(hole_node); |
| 138 | } |
| 139 | |
| 140 | static inline unsigned long __drm_mm_hole_node_end(struct drm_mm_node *hole_node) |
| 141 | { |
| 142 | return list_entry(hole_node->node_list.next, |
| 143 | struct drm_mm_node, node_list)->start; |
| 144 | } |
| 145 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 146 | /** |
| 147 | * drm_mm_hole_node_end - computes the end of the hole following @node |
| 148 | * @hole_node: drm_mm_node which implicitly tracks the following hole |
| 149 | * |
| 150 | * This is useful for driver-sepific debug dumpers. Otherwise drivers should not |
| 151 | * inspect holes themselves. Drivers must check first whether a hole indeed |
| 152 | * follows by looking at node->hole_follows. |
| 153 | * |
| 154 | * Returns: |
| 155 | * End of the subsequent hole. |
| 156 | */ |
Chris Wilson | 9e8944a | 2012-11-15 11:32:17 +0000 | [diff] [blame] | 157 | static inline unsigned long drm_mm_hole_node_end(struct drm_mm_node *hole_node) |
| 158 | { |
| 159 | return __drm_mm_hole_node_end(hole_node); |
| 160 | } |
| 161 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 162 | /** |
| 163 | * drm_mm_for_each_node - iterator to walk over all allocated nodes |
| 164 | * @entry: drm_mm_node structure to assign to in each iteration step |
| 165 | * @mm: drm_mm allocator to walk |
| 166 | * |
| 167 | * This iterator walks over all nodes in the range allocator. It is implemented |
| 168 | * with list_for_each, so not save against removal of elements. |
| 169 | */ |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 170 | #define drm_mm_for_each_node(entry, mm) list_for_each_entry(entry, \ |
| 171 | &(mm)->head_node.node_list, \ |
Daniel Vetter | 2bbd449 | 2011-05-06 23:47:53 +0200 | [diff] [blame] | 172 | node_list) |
Chris Wilson | 9e8944a | 2012-11-15 11:32:17 +0000 | [diff] [blame] | 173 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 174 | /** |
| 175 | * drm_mm_for_each_hole - iterator to walk over all holes |
| 176 | * @entry: drm_mm_node used internally to track progress |
| 177 | * @mm: drm_mm allocator to walk |
| 178 | * @hole_start: ulong variable to assign the hole start to on each iteration |
| 179 | * @hole_end: ulong variable to assign the hole end to on each iteration |
| 180 | * |
| 181 | * This iterator walks over all holes in the range allocator. It is implemented |
| 182 | * with list_for_each, so not save against removal of elements. @entry is used |
| 183 | * internally and will not reflect a real drm_mm_node for the very first hole. |
| 184 | * Hence users of this iterator may not access it. |
| 185 | * |
| 186 | * Implementation Note: |
| 187 | * We need to inline list_for_each_entry in order to be able to set hole_start |
| 188 | * and hole_end on each iteration while keeping the macro sane. |
Chris Wilson | 9e8944a | 2012-11-15 11:32:17 +0000 | [diff] [blame] | 189 | */ |
| 190 | #define drm_mm_for_each_hole(entry, mm, hole_start, hole_end) \ |
| 191 | for (entry = list_entry((mm)->hole_stack.next, struct drm_mm_node, hole_stack); \ |
| 192 | &entry->hole_stack != &(mm)->hole_stack ? \ |
| 193 | hole_start = drm_mm_hole_node_start(entry), \ |
| 194 | hole_end = drm_mm_hole_node_end(entry), \ |
| 195 | 1 : 0; \ |
| 196 | entry = list_entry(entry->hole_stack.next, struct drm_mm_node, hole_stack)) |
| 197 | |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 198 | /* |
| 199 | * Basic range manager support (drm_mm.c) |
| 200 | */ |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 201 | int drm_mm_reserve_node(struct drm_mm *mm, struct drm_mm_node *node); |
Chris Wilson | b810345 | 2012-12-07 20:37:06 +0000 | [diff] [blame] | 202 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 203 | int drm_mm_insert_node_generic(struct drm_mm *mm, |
| 204 | struct drm_mm_node *node, |
| 205 | unsigned long size, |
| 206 | unsigned alignment, |
| 207 | unsigned long color, |
| 208 | enum drm_mm_search_flags flags); |
| 209 | /** |
| 210 | * drm_mm_insert_node - search for space and insert @node |
| 211 | * @mm: drm_mm to allocate from |
| 212 | * @node: preallocate node to insert |
| 213 | * @size: size of the allocation |
| 214 | * @alignment: alignment of the allocation |
| 215 | * @flags: flags to fine-tune the allocation |
| 216 | * |
| 217 | * This is a simplified version of drm_mm_insert_node_generic() with @color set |
| 218 | * to 0. |
| 219 | * |
| 220 | * The preallocated node must be cleared to 0. |
| 221 | * |
| 222 | * Returns: |
| 223 | * 0 on success, -ENOSPC if there's no suitable hole. |
| 224 | */ |
David Herrmann | 31e5d7c | 2013-07-27 13:36:27 +0200 | [diff] [blame] | 225 | static inline int drm_mm_insert_node(struct drm_mm *mm, |
| 226 | struct drm_mm_node *node, |
| 227 | unsigned long size, |
| 228 | unsigned alignment, |
| 229 | enum drm_mm_search_flags flags) |
| 230 | { |
| 231 | return drm_mm_insert_node_generic(mm, node, size, alignment, 0, flags); |
| 232 | } |
| 233 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 234 | int drm_mm_insert_node_in_range_generic(struct drm_mm *mm, |
| 235 | struct drm_mm_node *node, |
| 236 | unsigned long size, |
| 237 | unsigned alignment, |
| 238 | unsigned long color, |
| 239 | unsigned long start, |
| 240 | unsigned long end, |
| 241 | enum drm_mm_search_flags flags); |
| 242 | /** |
| 243 | * drm_mm_insert_node_in_range - ranged search for space and insert @node |
| 244 | * @mm: drm_mm to allocate from |
| 245 | * @node: preallocate node to insert |
| 246 | * @size: size of the allocation |
| 247 | * @alignment: alignment of the allocation |
| 248 | * @start: start of the allowed range for this node |
| 249 | * @end: end of the allowed range for this node |
| 250 | * @flags: flags to fine-tune the allocation |
| 251 | * |
| 252 | * This is a simplified version of drm_mm_insert_node_in_range_generic() with |
| 253 | * @color set to 0. |
| 254 | * |
| 255 | * The preallocated node must be cleared to 0. |
| 256 | * |
| 257 | * Returns: |
| 258 | * 0 on success, -ENOSPC if there's no suitable hole. |
| 259 | */ |
David Herrmann | 31e5d7c | 2013-07-27 13:36:27 +0200 | [diff] [blame] | 260 | static inline int drm_mm_insert_node_in_range(struct drm_mm *mm, |
| 261 | struct drm_mm_node *node, |
| 262 | unsigned long size, |
| 263 | unsigned alignment, |
| 264 | unsigned long start, |
| 265 | unsigned long end, |
| 266 | enum drm_mm_search_flags flags) |
| 267 | { |
| 268 | return drm_mm_insert_node_in_range_generic(mm, node, size, alignment, |
| 269 | 0, start, end, flags); |
| 270 | } |
| 271 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 272 | void drm_mm_remove_node(struct drm_mm_node *node); |
| 273 | void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new); |
| 274 | void drm_mm_init(struct drm_mm *mm, |
| 275 | unsigned long start, |
| 276 | unsigned long size); |
| 277 | void drm_mm_takedown(struct drm_mm *mm); |
| 278 | bool drm_mm_clean(struct drm_mm *mm); |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 279 | |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 280 | void drm_mm_init_scan(struct drm_mm *mm, |
| 281 | unsigned long size, |
| 282 | unsigned alignment, |
| 283 | unsigned long color); |
| 284 | void drm_mm_init_scan_with_range(struct drm_mm *mm, |
| 285 | unsigned long size, |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 286 | unsigned alignment, |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 287 | unsigned long color, |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 288 | unsigned long start, |
| 289 | unsigned long end); |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 290 | bool drm_mm_scan_add_block(struct drm_mm_node *node); |
| 291 | bool drm_mm_scan_remove_block(struct drm_mm_node *node); |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 292 | |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 293 | void drm_mm_debug_table(struct drm_mm *mm, const char *prefix); |
Dave Airlie | fa8a123 | 2009-08-26 13:13:37 +1000 | [diff] [blame] | 294 | #ifdef CONFIG_DEBUG_FS |
| 295 | int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm); |
| 296 | #endif |
| 297 | |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 298 | #endif |