Initial import of binutils 2.22 on the new vendor branch
[dragonfly.git] / sys / dev / drm / drm_mm.h
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  * __FBSDID("$FreeBSD: src/sys/dev/drm/drm_mm.h,v 1.1 2010/01/31 14:25:29 rnoland Exp $");
28  **************************************************************************/
29
30 /*
31  * Authors:
32  * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
33  */
34
35 #ifndef _DRM_MM_H_
36 #define _DRM_MM_H_
37
38 #include "dev/drm/drm_linux_list.h"
39
40 struct drm_mm_node {
41         struct list_head fl_entry;
42         struct list_head ml_entry;
43         int free;
44         unsigned long start;
45         unsigned long size;
46         struct drm_mm *mm;
47         void *private;
48 };
49
50 struct drm_mm {
51         struct list_head fl_entry;
52         struct list_head ml_entry;
53         struct list_head unused_nodes;
54         int num_unused;
55         DRM_SPINTYPE unused_lock;
56 };
57
58 /*
59  * Basic range manager support (drm_mm.c)
60  */
61 extern struct drm_mm_node *drm_mm_get_block_generic(struct drm_mm_node *node,
62                                                     unsigned long size,
63                                                     unsigned alignment,
64                                                     int atomic);
65 static inline struct drm_mm_node *drm_mm_get_block(struct drm_mm_node *parent,
66                                                    unsigned long size,
67                                                    unsigned alignment)
68 {
69         return drm_mm_get_block_generic(parent, size, alignment, 0);
70 }
71 static inline struct drm_mm_node *drm_mm_get_block_atomic(struct drm_mm_node *parent,
72                                                           unsigned long size,
73                                                           unsigned alignment)
74 {
75         return drm_mm_get_block_generic(parent, size, alignment, 1);
76 }
77 extern void drm_mm_put_block(struct drm_mm_node *cur);
78 extern struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm,
79                                               unsigned long size,
80                                               unsigned alignment,
81                                               int best_match);
82 extern int drm_mm_init(struct drm_mm *mm, unsigned long start,
83                        unsigned long size);
84 extern void drm_mm_takedown(struct drm_mm *mm);
85 extern int drm_mm_clean(struct drm_mm *mm);
86 extern unsigned long drm_mm_tail_space(struct drm_mm *mm);
87 extern int drm_mm_remove_space_from_tail(struct drm_mm *mm,
88                                          unsigned long size);
89 extern int drm_mm_add_space_to_tail(struct drm_mm *mm,
90                                     unsigned long size, int atomic);
91 extern int drm_mm_pre_get(struct drm_mm *mm);
92
93 static inline struct drm_mm *drm_get_mm(struct drm_mm_node *block)
94 {
95         return block->mm;
96 }
97
98 #endif