r600g: set the flush callback in radeon_winsys
[mesa.git] / src / gallium / winsys / radeon / drm / radeon_winsys.h
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
3 * Copyright 2010 Marek Olšák <maraeo@gmail.com>
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
23
24 #ifndef RADEON_WINSYS_H
25 #define RADEON_WINSYS_H
26
27 /* The public winsys interface header for the radeon driver. */
28
29 /* R300 features in DRM.
30 *
31 * 2.6.0:
32 * - Hyper-Z
33 * - GB_Z_PEQ_CONFIG on rv350->r4xx
34 * - R500 FG_ALPHA_VALUE
35 *
36 * 2.8.0:
37 * - R500 US_FORMAT regs
38 * - R500 ARGB2101010 colorbuffer
39 * - CMask and AA regs
40 * - R16F/RG16F
41 */
42
43 #include "pipebuffer/pb_bufmgr.h"
44 #include "pipe/p_defines.h"
45 #include "pipe/p_state.h"
46
47 #define RADEON_MAX_CMDBUF_DWORDS (16 * 1024)
48 #define RADEON_FLUSH_ASYNC (1 << 0)
49
50 /* Tiling flags. */
51 enum radeon_bo_layout {
52 RADEON_LAYOUT_LINEAR = 0,
53 RADEON_LAYOUT_TILED,
54 RADEON_LAYOUT_SQUARETILED,
55
56 RADEON_LAYOUT_UNKNOWN
57 };
58
59 enum radeon_bo_domain { /* bitfield */
60 RADEON_DOMAIN_GTT = 2,
61 RADEON_DOMAIN_VRAM = 4
62 };
63
64 struct winsys_handle;
65 struct radeon_winsys_cs_handle; /* for write_reloc etc. */
66
67 struct radeon_winsys_cs {
68 unsigned cdw; /* Number of used dwords. */
69 uint32_t *buf; /* The command buffer. */
70 };
71
72 struct radeon_info {
73 uint32_t pci_id;
74 uint32_t gart_size;
75 uint32_t vram_size;
76 uint32_t fd; /* XXX transitional */
77
78 uint32_t drm_major; /* version */
79 uint32_t drm_minor;
80 uint32_t drm_patchlevel;
81
82 uint32_t r300_num_gb_pipes;
83 uint32_t r300_num_z_pipes;
84
85 uint32_t r600_num_backends;
86 uint32_t r600_clock_crystal_freq;
87 uint32_t r600_tiling_config;
88 uint32_t r600_num_tile_pipes;
89 uint32_t r600_backend_map;
90 boolean r600_backend_map_valid;
91 };
92
93 enum radeon_feature_id {
94 RADEON_FID_R300_HYPERZ_ACCESS, /* ZMask + HiZ */
95 RADEON_FID_R300_CMASK_ACCESS,
96 };
97
98 struct radeon_winsys {
99 /**
100 * Destroy this winsys.
101 *
102 * \param ws The winsys this function is called from.
103 */
104 void (*destroy)(struct radeon_winsys *ws);
105
106 /**
107 * Query an info structure from winsys.
108 *
109 * \param ws The winsys this function is called from.
110 * \param info Return structure
111 */
112 void (*query_info)(struct radeon_winsys *ws,
113 struct radeon_info *info);
114
115 /**************************************************************************
116 * Buffer management. Buffer attributes are mostly fixed over its lifetime.
117 *
118 * Remember that gallium gets to choose the interface it needs, and the
119 * window systems must then implement that interface (rather than the
120 * other way around...).
121 *************************************************************************/
122
123 /**
124 * Create a buffer object.
125 *
126 * \param ws The winsys this function is called from.
127 * \param size The size to allocate.
128 * \param alignment An alignment of the buffer in memory.
129 * \param bind A bitmask of the PIPE_BIND_* flags.
130 * \param domain A bitmask of the RADEON_DOMAIN_* flags.
131 * \return The created buffer object.
132 */
133 struct pb_buffer *(*buffer_create)(struct radeon_winsys *ws,
134 unsigned size,
135 unsigned alignment,
136 unsigned bind,
137 enum radeon_bo_domain domain);
138
139 struct radeon_winsys_cs_handle *(*buffer_get_cs_handle)(
140 struct pb_buffer *buf);
141
142 /**
143 * Map the entire data store of a buffer object into the client's address
144 * space.
145 *
146 * \param buf A winsys buffer object to map.
147 * \param cs A command stream to flush if the buffer is referenced by it.
148 * \param usage A bitmask of the PIPE_TRANSFER_* flags.
149 * \return The pointer at the beginning of the buffer.
150 */
151 void *(*buffer_map)(struct pb_buffer *buf,
152 struct radeon_winsys_cs *cs,
153 enum pipe_transfer_usage usage);
154
155 /**
156 * Unmap a buffer object from the client's address space.
157 *
158 * \param buf A winsys buffer object to unmap.
159 */
160 void (*buffer_unmap)(struct pb_buffer *buf);
161
162 /**
163 * Return TRUE if a buffer object is being used by the GPU.
164 *
165 * \param buf A winsys buffer object.
166 */
167 boolean (*buffer_is_busy)(struct pb_buffer *buf);
168
169 /**
170 * Wait for a buffer object until it is not used by a GPU. This is
171 * equivalent to a fence placed after the last command using the buffer,
172 * and synchronizing to the fence.
173 *
174 * \param buf A winsys buffer object to wait for.
175 */
176 void (*buffer_wait)(struct pb_buffer *buf);
177
178 /**
179 * Return tiling flags describing a memory layout of a buffer object.
180 *
181 * \param buf A winsys buffer object to get the flags from.
182 * \param macrotile A pointer to the return value of the microtile flag.
183 * \param microtile A pointer to the return value of the macrotile flag.
184 *
185 * \note microtile and macrotile are not bitmasks!
186 */
187 void (*buffer_get_tiling)(struct pb_buffer *buf,
188 enum radeon_bo_layout *microtile,
189 enum radeon_bo_layout *macrotile);
190
191 /**
192 * Set tiling flags describing a memory layout of a buffer object.
193 *
194 * \param buf A winsys buffer object to set the flags for.
195 * \param cs A command stream to flush if the buffer is referenced by it.
196 * \param macrotile A macrotile flag.
197 * \param microtile A microtile flag.
198 * \param stride A stride of the buffer in bytes, for texturing.
199 *
200 * \note microtile and macrotile are not bitmasks!
201 */
202 void (*buffer_set_tiling)(struct pb_buffer *buf,
203 struct radeon_winsys_cs *cs,
204 enum radeon_bo_layout microtile,
205 enum radeon_bo_layout macrotile,
206 unsigned stride);
207
208 /**
209 * Get a winsys buffer from a winsys handle. The internal structure
210 * of the handle is platform-specific and only a winsys should access it.
211 *
212 * \param ws The winsys this function is called from.
213 * \param whandle A winsys handle pointer as was received from a state
214 * tracker.
215 * \param stride The returned buffer stride in bytes.
216 * \param size The returned buffer size.
217 */
218 struct pb_buffer *(*buffer_from_handle)(struct radeon_winsys *ws,
219 struct winsys_handle *whandle,
220 unsigned *stride,
221 unsigned *size);
222
223 /**
224 * Get a winsys handle from a winsys buffer. The internal structure
225 * of the handle is platform-specific and only a winsys should access it.
226 *
227 * \param buf A winsys buffer object to get the handle from.
228 * \param whandle A winsys handle pointer.
229 * \param stride A stride of the buffer in bytes, for texturing.
230 * \return TRUE on success.
231 */
232 boolean (*buffer_get_handle)(struct pb_buffer *buf,
233 unsigned stride,
234 struct winsys_handle *whandle);
235
236 /**************************************************************************
237 * Command submission.
238 *
239 * Each pipe context should create its own command stream and submit
240 * commands independently of other contexts.
241 *************************************************************************/
242
243 /**
244 * Create a command stream.
245 *
246 * \param ws The winsys this function is called from.
247 */
248 struct radeon_winsys_cs *(*cs_create)(struct radeon_winsys *ws);
249
250 /**
251 * Destroy a command stream.
252 *
253 * \param cs A command stream to destroy.
254 */
255 void (*cs_destroy)(struct radeon_winsys_cs *cs);
256
257 /**
258 * Add a new buffer relocation. Every relocation must first be added
259 * before it can be written.
260 *
261 * \param cs A command stream to add buffer for validation against.
262 * \param buf A winsys buffer to validate.
263 * \param rd A read domain containing a bitmask of the RADEON_DOMAIN_* flags.
264 * \param wd A write domain containing a bitmask of the RADEON_DOMAIN_* flags.
265 * \return Relocation index.
266 */
267 unsigned (*cs_add_reloc)(struct radeon_winsys_cs *cs,
268 struct radeon_winsys_cs_handle *buf,
269 enum radeon_bo_domain rd,
270 enum radeon_bo_domain wd);
271
272 /**
273 * Return TRUE if there is enough memory in VRAM and GTT for the relocs
274 * added so far. If the validation fails, all the relocations which have
275 * been added since the last call of cs_validate will be removed and
276 * the CS will be flushed (provided there are still any relocations).
277 *
278 * \param cs A command stream to validate.
279 */
280 boolean (*cs_validate)(struct radeon_winsys_cs *cs);
281
282 /**
283 * Write a relocated dword to a command buffer.
284 *
285 * \param cs A command stream the relocation is written to.
286 * \param buf A winsys buffer to write the relocation for.
287 * \param rd A read domain containing a bitmask of the RADEON_DOMAIN_* flags.
288 * \param wd A write domain containing a bitmask of the RADEON_DOMAIN_* flags.
289 */
290 void (*cs_write_reloc)(struct radeon_winsys_cs *cs,
291 struct radeon_winsys_cs_handle *buf);
292
293 /**
294 * Flush a command stream.
295 *
296 * \param cs A command stream to flush.
297 * \param flags, RADEON_FLUSH_ASYNC or 0.
298 */
299 void (*cs_flush)(struct radeon_winsys_cs *cs, unsigned flags);
300
301 /**
302 * Set a flush callback which is called from winsys when flush is
303 * required.
304 *
305 * \param cs A command stream to set the callback for.
306 * \param flush A flush callback function associated with the command stream.
307 * \param user A user pointer that will be passed to the flush callback.
308 */
309 void (*cs_set_flush_callback)(struct radeon_winsys_cs *cs,
310 void (*flush)(void *ctx, unsigned flags),
311 void *ctx);
312
313 /**
314 * Return TRUE if a buffer is referenced by a command stream.
315 *
316 * \param cs A command stream.
317 * \param buf A winsys buffer.
318 */
319 boolean (*cs_is_buffer_referenced)(struct radeon_winsys_cs *cs,
320 struct radeon_winsys_cs_handle *buf);
321
322 /**
323 * Request access to a feature for a command stream.
324 *
325 * \param cs A command stream.
326 * \param fid Feature ID, one of RADEON_FID_*
327 * \param enable Whether to enable or disable the feature.
328 */
329 boolean (*cs_request_feature)(struct radeon_winsys_cs *cs,
330 enum radeon_feature_id fid,
331 boolean enable);
332
333
334 /* Transitional functions for r600g when moving to winsys/radeon */
335 unsigned (*trans_get_buffer_handle)(struct pb_buffer *buf);
336 };
337
338 #endif