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 | */ |
| 39 | #include <linux/list.h> |
Dave Airlie | f1938cd | 2009-09-08 11:32:08 +1000 | [diff] [blame] | 40 | #ifdef CONFIG_DEBUG_FS |
| 41 | #include <linux/seq_file.h> |
| 42 | #endif |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 43 | |
| 44 | struct drm_mm_node { |
Daniel Vetter | d1024ce | 2010-07-02 15:02:14 +0100 | [diff] [blame] | 45 | struct list_head node_list; |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 46 | struct list_head hole_stack; |
| 47 | unsigned hole_follows : 1; |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 48 | unsigned scanned_block : 1; |
| 49 | unsigned scanned_prev_free : 1; |
| 50 | unsigned scanned_next_free : 1; |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 51 | unsigned scanned_preceeds_hole : 1; |
Daniel Vetter | b0b7af1 | 2011-02-18 17:59:14 +0100 | [diff] [blame] | 52 | unsigned allocated : 1; |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 53 | unsigned long color; |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 54 | unsigned long start; |
| 55 | unsigned long size; |
| 56 | struct drm_mm *mm; |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | struct drm_mm { |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 60 | /* List of all memory nodes that immediately precede a free hole. */ |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 61 | struct list_head hole_stack; |
| 62 | /* head_node.node_list is the list of all memory nodes, ordered |
| 63 | * according to the (increasing) start address of the memory node. */ |
| 64 | struct drm_mm_node head_node; |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 65 | struct list_head unused_nodes; |
| 66 | int num_unused; |
| 67 | spinlock_t unused_lock; |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 68 | unsigned int scan_check_range : 1; |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 69 | unsigned scan_alignment; |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 70 | unsigned long scan_color; |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 71 | unsigned long scan_size; |
| 72 | unsigned long scan_hit_start; |
Chris Wilson | 901593f | 2012-12-19 16:51:06 +0000 | [diff] [blame] | 73 | unsigned long scan_hit_end; |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 74 | unsigned scanned_blocks; |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 75 | unsigned long scan_start; |
| 76 | unsigned long scan_end; |
Daniel Vetter | ae0cec2 | 2011-02-18 17:59:15 +0100 | [diff] [blame] | 77 | struct drm_mm_node *prev_scanned_node; |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 78 | |
| 79 | void (*color_adjust)(struct drm_mm_node *node, unsigned long color, |
| 80 | unsigned long *start, unsigned long *end); |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 81 | }; |
| 82 | |
Daniel Vetter | b0b7af1 | 2011-02-18 17:59:14 +0100 | [diff] [blame] | 83 | static inline bool drm_mm_node_allocated(struct drm_mm_node *node) |
| 84 | { |
| 85 | return node->allocated; |
| 86 | } |
| 87 | |
Daniel Vetter | 31a5b8c | 2011-02-18 17:59:11 +0100 | [diff] [blame] | 88 | static inline bool drm_mm_initialized(struct drm_mm *mm) |
| 89 | { |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 90 | return mm->hole_stack.next; |
Daniel Vetter | 31a5b8c | 2011-02-18 17:59:11 +0100 | [diff] [blame] | 91 | } |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 92 | #define drm_mm_for_each_node(entry, mm) list_for_each_entry(entry, \ |
| 93 | &(mm)->head_node.node_list, \ |
Daniel Vetter | 2bbd449 | 2011-05-06 23:47:53 +0200 | [diff] [blame] | 94 | node_list) |
Daniel Vetter | ae0cec2 | 2011-02-18 17:59:15 +0100 | [diff] [blame] | 95 | #define drm_mm_for_each_scanned_node_reverse(entry, n, mm) \ |
| 96 | for (entry = (mm)->prev_scanned_node, \ |
| 97 | next = entry ? list_entry(entry->node_list.next, \ |
| 98 | struct drm_mm_node, node_list) : NULL; \ |
| 99 | entry != NULL; entry = next, \ |
| 100 | next = entry ? list_entry(entry->node_list.next, \ |
| 101 | struct drm_mm_node, node_list) : NULL) \ |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 102 | /* |
| 103 | * Basic range manager support (drm_mm.c) |
| 104 | */ |
Thomas Hellstrom | 89579f7 | 2009-06-17 12:29:56 +0200 | [diff] [blame] | 105 | extern struct drm_mm_node *drm_mm_get_block_generic(struct drm_mm_node *node, |
| 106 | unsigned long size, |
| 107 | unsigned alignment, |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 108 | unsigned long color, |
Thomas Hellstrom | 89579f7 | 2009-06-17 12:29:56 +0200 | [diff] [blame] | 109 | int atomic); |
Jerome Glisse | a2e68e9 | 2009-12-07 15:52:56 +0100 | [diff] [blame] | 110 | extern struct drm_mm_node *drm_mm_get_block_range_generic( |
| 111 | struct drm_mm_node *node, |
| 112 | unsigned long size, |
| 113 | unsigned alignment, |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 114 | unsigned long color, |
Jerome Glisse | a2e68e9 | 2009-12-07 15:52:56 +0100 | [diff] [blame] | 115 | unsigned long start, |
| 116 | unsigned long end, |
| 117 | int atomic); |
Thomas Hellstrom | 89579f7 | 2009-06-17 12:29:56 +0200 | [diff] [blame] | 118 | static inline struct drm_mm_node *drm_mm_get_block(struct drm_mm_node *parent, |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 119 | unsigned long size, |
Thomas Hellstrom | 89579f7 | 2009-06-17 12:29:56 +0200 | [diff] [blame] | 120 | unsigned alignment) |
| 121 | { |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 122 | return drm_mm_get_block_generic(parent, size, alignment, 0, 0); |
Thomas Hellstrom | 89579f7 | 2009-06-17 12:29:56 +0200 | [diff] [blame] | 123 | } |
| 124 | static inline struct drm_mm_node *drm_mm_get_block_atomic(struct drm_mm_node *parent, |
| 125 | unsigned long size, |
| 126 | unsigned alignment) |
| 127 | { |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 128 | return drm_mm_get_block_generic(parent, size, alignment, 0, 1); |
Thomas Hellstrom | 89579f7 | 2009-06-17 12:29:56 +0200 | [diff] [blame] | 129 | } |
Jerome Glisse | a2e68e9 | 2009-12-07 15:52:56 +0100 | [diff] [blame] | 130 | static inline struct drm_mm_node *drm_mm_get_block_range( |
| 131 | struct drm_mm_node *parent, |
| 132 | unsigned long size, |
| 133 | unsigned alignment, |
| 134 | unsigned long start, |
| 135 | unsigned long end) |
| 136 | { |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 137 | return drm_mm_get_block_range_generic(parent, size, alignment, 0, |
| 138 | start, end, 0); |
| 139 | } |
| 140 | static inline struct drm_mm_node *drm_mm_get_color_block_range( |
| 141 | struct drm_mm_node *parent, |
| 142 | unsigned long size, |
| 143 | unsigned alignment, |
| 144 | unsigned long color, |
| 145 | unsigned long start, |
| 146 | unsigned long end) |
| 147 | { |
| 148 | return drm_mm_get_block_range_generic(parent, size, alignment, color, |
| 149 | start, end, 0); |
Jerome Glisse | a2e68e9 | 2009-12-07 15:52:56 +0100 | [diff] [blame] | 150 | } |
| 151 | static inline struct drm_mm_node *drm_mm_get_block_atomic_range( |
| 152 | struct drm_mm_node *parent, |
| 153 | unsigned long size, |
| 154 | unsigned alignment, |
| 155 | unsigned long start, |
| 156 | unsigned long end) |
| 157 | { |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 158 | return drm_mm_get_block_range_generic(parent, size, alignment, 0, |
Jerome Glisse | a2e68e9 | 2009-12-07 15:52:56 +0100 | [diff] [blame] | 159 | start, end, 1); |
| 160 | } |
Chris Wilson | b810345 | 2012-12-07 20:37:06 +0000 | [diff] [blame] | 161 | |
| 162 | extern int drm_mm_insert_node(struct drm_mm *mm, |
| 163 | struct drm_mm_node *node, |
| 164 | unsigned long size, |
| 165 | unsigned alignment); |
Daniel Vetter | b0b7af1 | 2011-02-18 17:59:14 +0100 | [diff] [blame] | 166 | extern int drm_mm_insert_node_in_range(struct drm_mm *mm, |
| 167 | struct drm_mm_node *node, |
Chris Wilson | b810345 | 2012-12-07 20:37:06 +0000 | [diff] [blame] | 168 | unsigned long size, |
| 169 | unsigned alignment, |
| 170 | unsigned long start, |
| 171 | unsigned long end); |
| 172 | extern int drm_mm_insert_node_generic(struct drm_mm *mm, |
| 173 | struct drm_mm_node *node, |
| 174 | unsigned long size, |
| 175 | unsigned alignment, |
| 176 | unsigned long color); |
| 177 | extern int drm_mm_insert_node_in_range_generic(struct drm_mm *mm, |
| 178 | struct drm_mm_node *node, |
| 179 | unsigned long size, |
| 180 | unsigned alignment, |
| 181 | unsigned long color, |
| 182 | unsigned long start, |
| 183 | unsigned long end); |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 184 | extern void drm_mm_put_block(struct drm_mm_node *cur); |
Daniel Vetter | b0b7af1 | 2011-02-18 17:59:14 +0100 | [diff] [blame] | 185 | extern void drm_mm_remove_node(struct drm_mm_node *node); |
| 186 | extern void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new); |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 187 | extern struct drm_mm_node *drm_mm_search_free_generic(const struct drm_mm *mm, |
| 188 | unsigned long size, |
| 189 | unsigned alignment, |
| 190 | unsigned long color, |
| 191 | bool best_match); |
| 192 | extern struct drm_mm_node *drm_mm_search_free_in_range_generic( |
| 193 | const struct drm_mm *mm, |
| 194 | unsigned long size, |
| 195 | unsigned alignment, |
| 196 | unsigned long color, |
| 197 | unsigned long start, |
| 198 | unsigned long end, |
| 199 | bool best_match); |
| 200 | static inline struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm, |
| 201 | unsigned long size, |
| 202 | unsigned alignment, |
| 203 | bool best_match) |
| 204 | { |
| 205 | return drm_mm_search_free_generic(mm,size, alignment, 0, best_match); |
| 206 | } |
| 207 | static inline struct drm_mm_node *drm_mm_search_free_in_range( |
Jerome Glisse | a2e68e9 | 2009-12-07 15:52:56 +0100 | [diff] [blame] | 208 | const struct drm_mm *mm, |
| 209 | unsigned long size, |
| 210 | unsigned alignment, |
| 211 | unsigned long start, |
| 212 | unsigned long end, |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 213 | bool best_match) |
| 214 | { |
| 215 | return drm_mm_search_free_in_range_generic(mm, size, alignment, 0, |
| 216 | start, end, best_match); |
| 217 | } |
| 218 | static inline struct drm_mm_node *drm_mm_search_free_color(const struct drm_mm *mm, |
| 219 | unsigned long size, |
| 220 | unsigned alignment, |
| 221 | unsigned long color, |
| 222 | bool best_match) |
| 223 | { |
| 224 | return drm_mm_search_free_generic(mm,size, alignment, color, best_match); |
| 225 | } |
| 226 | static inline struct drm_mm_node *drm_mm_search_free_in_range_color( |
| 227 | const struct drm_mm *mm, |
| 228 | unsigned long size, |
| 229 | unsigned alignment, |
| 230 | unsigned long color, |
| 231 | unsigned long start, |
| 232 | unsigned long end, |
| 233 | bool best_match) |
| 234 | { |
| 235 | return drm_mm_search_free_in_range_generic(mm, size, alignment, color, |
| 236 | start, end, best_match); |
| 237 | } |
| 238 | extern int drm_mm_init(struct drm_mm *mm, |
| 239 | unsigned long start, |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 240 | unsigned long size); |
| 241 | extern void drm_mm_takedown(struct drm_mm *mm); |
| 242 | extern int drm_mm_clean(struct drm_mm *mm); |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 243 | extern int drm_mm_pre_get(struct drm_mm *mm); |
| 244 | |
| 245 | static inline struct drm_mm *drm_get_mm(struct drm_mm_node *block) |
| 246 | { |
| 247 | return block->mm; |
| 248 | } |
| 249 | |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 250 | void drm_mm_init_scan(struct drm_mm *mm, |
| 251 | unsigned long size, |
| 252 | unsigned alignment, |
| 253 | unsigned long color); |
| 254 | void drm_mm_init_scan_with_range(struct drm_mm *mm, |
| 255 | unsigned long size, |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 256 | unsigned alignment, |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 257 | unsigned long color, |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 258 | unsigned long start, |
| 259 | unsigned long end); |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 260 | int drm_mm_scan_add_block(struct drm_mm_node *node); |
| 261 | int drm_mm_scan_remove_block(struct drm_mm_node *node); |
| 262 | |
Jerome Glisse | 99d7e48 | 2009-12-09 21:55:09 +0100 | [diff] [blame] | 263 | extern void drm_mm_debug_table(struct drm_mm *mm, const char *prefix); |
Dave Airlie | fa8a123 | 2009-08-26 13:13:37 +1000 | [diff] [blame] | 264 | #ifdef CONFIG_DEBUG_FS |
| 265 | int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm); |
| 266 | #endif |
| 267 | |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 268 | #endif |