radeon/r200/r300: port to new space checking code in libdrm
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_bo_drm.h
1 /*
2 * Copyright © 2008 Jérôme Glisse
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
15 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
17 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
24 * of the Software.
25 */
26 /*
27 * Authors:
28 * Jérôme Glisse <glisse@freedesktop.org>
29 */
30 #ifndef RADEON_BO_H
31 #define RADEON_BO_H
32
33 #include <stdio.h>
34 #include <stdint.h>
35 //#include "radeon_track.h"
36
37 /* bo object */
38 #define RADEON_BO_FLAGS_MACRO_TILE 1
39 #define RADEON_BO_FLAGS_MICRO_TILE 2
40
41 struct radeon_bo_manager;
42
43 struct radeon_bo {
44 uint32_t alignment;
45 uint32_t handle;
46 uint32_t size;
47 uint32_t domains;
48 uint32_t flags;
49 unsigned cref;
50 #ifdef RADEON_BO_TRACK
51 struct radeon_track *track;
52 #endif
53 void *ptr;
54 struct radeon_bo_manager *bom;
55 uint32_t space_accounted;
56 };
57
58 /* bo functions */
59 struct radeon_bo_funcs {
60 struct radeon_bo *(*bo_open)(struct radeon_bo_manager *bom,
61 uint32_t handle,
62 uint32_t size,
63 uint32_t alignment,
64 uint32_t domains,
65 uint32_t flags);
66 void (*bo_ref)(struct radeon_bo *bo);
67 struct radeon_bo *(*bo_unref)(struct radeon_bo *bo);
68 int (*bo_map)(struct radeon_bo *bo, int write);
69 int (*bo_unmap)(struct radeon_bo *bo);
70 int (*bo_wait)(struct radeon_bo *bo);
71 int (*bo_is_static)(struct radeon_bo *bo);
72 };
73
74 struct radeon_bo_manager {
75 struct radeon_bo_funcs *funcs;
76 int fd;
77
78 #ifdef RADEON_BO_TRACK
79 struct radeon_tracker tracker;
80 #endif
81 };
82
83 static inline void _radeon_bo_debug(struct radeon_bo *bo,
84 const char *op,
85 const char *file,
86 const char *func,
87 int line)
88 {
89 fprintf(stderr, "%s %p 0x%08X 0x%08X 0x%08X [%s %s %d]\n",
90 op, bo, bo->handle, bo->size, bo->cref, file, func, line);
91 }
92
93 static inline struct radeon_bo *_radeon_bo_open(struct radeon_bo_manager *bom,
94 uint32_t handle,
95 uint32_t size,
96 uint32_t alignment,
97 uint32_t domains,
98 uint32_t flags,
99 const char *file,
100 const char *func,
101 int line)
102 {
103 struct radeon_bo *bo;
104
105 bo = bom->funcs->bo_open(bom, handle, size, alignment, domains, flags);
106 #ifdef RADEON_BO_TRACK
107 if (bo) {
108 bo->track = radeon_tracker_add_track(&bom->tracker, bo->handle);
109 radeon_track_add_event(bo->track, file, func, "open", line);
110 }
111 #endif
112 return bo;
113 }
114
115 static inline void _radeon_bo_ref(struct radeon_bo *bo,
116 const char *file,
117 const char *func,
118 int line)
119 {
120 bo->cref++;
121 #ifdef RADEON_BO_TRACK
122 radeon_track_add_event(bo->track, file, func, "ref", line);
123 #endif
124 bo->bom->funcs->bo_ref(bo);
125 }
126
127 static inline struct radeon_bo *_radeon_bo_unref(struct radeon_bo *bo,
128 const char *file,
129 const char *func,
130 int line)
131 {
132 bo->cref--;
133 #ifdef RADEON_BO_TRACK
134 radeon_track_add_event(bo->track, file, func, "unref", line);
135 if (bo->cref <= 0) {
136 radeon_tracker_remove_track(&bo->bom->tracker, bo->track);
137 bo->track = NULL;
138 }
139 #endif
140 return bo->bom->funcs->bo_unref(bo);
141 }
142
143 static inline int _radeon_bo_map(struct radeon_bo *bo,
144 int write,
145 const char *file,
146 const char *func,
147 int line)
148 {
149 return bo->bom->funcs->bo_map(bo, write);
150 }
151
152 static inline int _radeon_bo_unmap(struct radeon_bo *bo,
153 const char *file,
154 const char *func,
155 int line)
156 {
157 return bo->bom->funcs->bo_unmap(bo);
158 }
159
160 static inline int _radeon_bo_wait(struct radeon_bo *bo,
161 const char *file,
162 const char *func,
163 int line)
164 {
165 return bo->bom->funcs->bo_wait(bo);
166 }
167
168 static inline int radeon_bo_is_static(struct radeon_bo *bo)
169 {
170 if (bo->bom->funcs->bo_is_static)
171 return bo->bom->funcs->bo_is_static(bo);
172 return 0;
173 }
174
175 #define radeon_bo_open(bom, h, s, a, d, f)\
176 _radeon_bo_open(bom, h, s, a, d, f, __FILE__, __FUNCTION__, __LINE__)
177 #define radeon_bo_ref(bo)\
178 _radeon_bo_ref(bo, __FILE__, __FUNCTION__, __LINE__)
179 #define radeon_bo_unref(bo)\
180 _radeon_bo_unref(bo, __FILE__, __FUNCTION__, __LINE__)
181 #define radeon_bo_map(bo, w)\
182 _radeon_bo_map(bo, w, __FILE__, __FUNCTION__, __LINE__)
183 #define radeon_bo_unmap(bo)\
184 _radeon_bo_unmap(bo, __FILE__, __FUNCTION__, __LINE__)
185 #define radeon_bo_debug(bo, opcode)\
186 _radeon_bo_debug(bo, opcode, __FILE__, __FUNCTION__, __LINE__)
187 #define radeon_bo_wait(bo) \
188 _radeon_bo_wait(bo, __FILE__, __func__, __LINE__)
189
190 #endif