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 | b0b7af1 | 2011-02-18 17:59:14 +0100 | [diff] [blame] | 88 | static inline bool drm_mm_node_allocated(struct drm_mm_node *node) |
| 89 | { |
| 90 | return node->allocated; |
| 91 | } |
| 92 | |
Daniel Vetter | 31a5b8c | 2011-02-18 17:59:11 +0100 | [diff] [blame] | 93 | static inline bool drm_mm_initialized(struct drm_mm *mm) |
| 94 | { |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 95 | return mm->hole_stack.next; |
Daniel Vetter | 31a5b8c | 2011-02-18 17:59:11 +0100 | [diff] [blame] | 96 | } |
Chris Wilson | 9e8944a | 2012-11-15 11:32:17 +0000 | [diff] [blame] | 97 | |
| 98 | static inline unsigned long __drm_mm_hole_node_start(struct drm_mm_node *hole_node) |
| 99 | { |
| 100 | return hole_node->start + hole_node->size; |
| 101 | } |
| 102 | |
| 103 | static inline unsigned long drm_mm_hole_node_start(struct drm_mm_node *hole_node) |
| 104 | { |
| 105 | BUG_ON(!hole_node->hole_follows); |
| 106 | return __drm_mm_hole_node_start(hole_node); |
| 107 | } |
| 108 | |
| 109 | static inline unsigned long __drm_mm_hole_node_end(struct drm_mm_node *hole_node) |
| 110 | { |
| 111 | return list_entry(hole_node->node_list.next, |
| 112 | struct drm_mm_node, node_list)->start; |
| 113 | } |
| 114 | |
| 115 | static inline unsigned long drm_mm_hole_node_end(struct drm_mm_node *hole_node) |
| 116 | { |
| 117 | return __drm_mm_hole_node_end(hole_node); |
| 118 | } |
| 119 | |
Daniel Vetter | ea7b1dd | 2011-02-18 17:59:12 +0100 | [diff] [blame] | 120 | #define drm_mm_for_each_node(entry, mm) list_for_each_entry(entry, \ |
| 121 | &(mm)->head_node.node_list, \ |
Daniel Vetter | 2bbd449 | 2011-05-06 23:47:53 +0200 | [diff] [blame] | 122 | node_list) |
Chris Wilson | 9e8944a | 2012-11-15 11:32:17 +0000 | [diff] [blame] | 123 | |
| 124 | /* Note that we need to unroll list_for_each_entry in order to inline |
| 125 | * setting hole_start and hole_end on each iteration and keep the |
| 126 | * macro sane. |
| 127 | */ |
| 128 | #define drm_mm_for_each_hole(entry, mm, hole_start, hole_end) \ |
| 129 | for (entry = list_entry((mm)->hole_stack.next, struct drm_mm_node, hole_stack); \ |
| 130 | &entry->hole_stack != &(mm)->hole_stack ? \ |
| 131 | hole_start = drm_mm_hole_node_start(entry), \ |
| 132 | hole_end = drm_mm_hole_node_end(entry), \ |
| 133 | 1 : 0; \ |
| 134 | entry = list_entry(entry->hole_stack.next, struct drm_mm_node, hole_stack)) |
| 135 | |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 136 | /* |
| 137 | * Basic range manager support (drm_mm.c) |
| 138 | */ |
Ben Widawsky | 338710e | 2013-07-05 14:41:03 -0700 | [diff] [blame] | 139 | extern 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] | 140 | |
Chris Wilson | b810345 | 2012-12-07 20:37:06 +0000 | [diff] [blame] | 141 | extern int drm_mm_insert_node_generic(struct drm_mm *mm, |
| 142 | struct drm_mm_node *node, |
| 143 | unsigned long size, |
| 144 | unsigned alignment, |
David Herrmann | 31e5d7c | 2013-07-27 13:36:27 +0200 | [diff] [blame] | 145 | unsigned long color, |
| 146 | enum drm_mm_search_flags flags); |
| 147 | static inline int drm_mm_insert_node(struct drm_mm *mm, |
| 148 | struct drm_mm_node *node, |
| 149 | unsigned long size, |
| 150 | unsigned alignment, |
| 151 | enum drm_mm_search_flags flags) |
| 152 | { |
| 153 | return drm_mm_insert_node_generic(mm, node, size, alignment, 0, flags); |
| 154 | } |
| 155 | |
Chris Wilson | b810345 | 2012-12-07 20:37:06 +0000 | [diff] [blame] | 156 | extern int drm_mm_insert_node_in_range_generic(struct drm_mm *mm, |
| 157 | struct drm_mm_node *node, |
| 158 | unsigned long size, |
| 159 | unsigned alignment, |
| 160 | unsigned long color, |
| 161 | unsigned long start, |
David Herrmann | 31e5d7c | 2013-07-27 13:36:27 +0200 | [diff] [blame] | 162 | unsigned long end, |
| 163 | enum drm_mm_search_flags flags); |
| 164 | static inline int drm_mm_insert_node_in_range(struct drm_mm *mm, |
| 165 | struct drm_mm_node *node, |
| 166 | unsigned long size, |
| 167 | unsigned alignment, |
| 168 | unsigned long start, |
| 169 | unsigned long end, |
| 170 | enum drm_mm_search_flags flags) |
| 171 | { |
| 172 | return drm_mm_insert_node_in_range_generic(mm, node, size, alignment, |
| 173 | 0, start, end, flags); |
| 174 | } |
| 175 | |
Daniel Vetter | b0b7af1 | 2011-02-18 17:59:14 +0100 | [diff] [blame] | 176 | extern void drm_mm_remove_node(struct drm_mm_node *node); |
| 177 | extern void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new); |
David Herrmann | 77ef8bb | 2013-07-01 20:32:58 +0200 | [diff] [blame] | 178 | extern void drm_mm_init(struct drm_mm *mm, |
| 179 | unsigned long start, |
| 180 | unsigned long size); |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 181 | extern void drm_mm_takedown(struct drm_mm *mm); |
| 182 | extern int drm_mm_clean(struct drm_mm *mm); |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 183 | |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 184 | void drm_mm_init_scan(struct drm_mm *mm, |
| 185 | unsigned long size, |
| 186 | unsigned alignment, |
| 187 | unsigned long color); |
| 188 | void drm_mm_init_scan_with_range(struct drm_mm *mm, |
| 189 | unsigned long size, |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 190 | unsigned alignment, |
Chris Wilson | 6b9d89b | 2012-07-10 11:15:23 +0100 | [diff] [blame] | 191 | unsigned long color, |
Daniel Vetter | d935cc6 | 2010-09-16 15:13:11 +0200 | [diff] [blame] | 192 | unsigned long start, |
| 193 | unsigned long end); |
Daniel Vetter | 709ea97 | 2010-07-02 15:02:16 +0100 | [diff] [blame] | 194 | int drm_mm_scan_add_block(struct drm_mm_node *node); |
| 195 | int drm_mm_scan_remove_block(struct drm_mm_node *node); |
| 196 | |
Jerome Glisse | 99d7e48 | 2009-12-09 21:55:09 +0100 | [diff] [blame] | 197 | 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] | 198 | #ifdef CONFIG_DEBUG_FS |
| 199 | int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm); |
| 200 | #endif |
| 201 | |
Jerome Glisse | 249d604 | 2009-04-08 17:11:16 +0200 | [diff] [blame] | 202 | #endif |