Merge branch '7.8'
[mesa.git] / src / gallium / drivers / i965 / brw_winsys.h
1 /**************************************************************************
2 *
3 * Copyright © 2009 Jakob Bornecrantz
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * 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 NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 **************************************************************************/
25
26 #ifndef BRW_WINSYS_H
27 #define BRW_WINSYS_H
28
29 #include "pipe/p_compiler.h"
30 #include "pipe/p_defines.h"
31 #include "util/u_inlines.h"
32
33 struct brw_winsys;
34 struct pipe_fence_handle;
35
36 /* Not sure why the winsys needs this:
37 */
38 #define BRW_BATCH_SIZE (32*1024)
39
40 struct brw_winsys_screen;
41
42 /* Need a tiny bit of information inside the abstract buffer struct:
43 */
44 struct brw_winsys_buffer {
45 struct pipe_reference reference;
46 struct brw_winsys_screen *sws;
47 unsigned size;
48 };
49
50
51 /* Should be possible to validate usages above against buffer creation
52 * types, below:
53 */
54 enum brw_buffer_type
55 {
56 BRW_BUFFER_TYPE_TEXTURE,
57 BRW_BUFFER_TYPE_SCANOUT, /**< a texture used for scanning out from */
58 BRW_BUFFER_TYPE_VERTEX,
59 BRW_BUFFER_TYPE_CURBE,
60 BRW_BUFFER_TYPE_QUERY,
61 BRW_BUFFER_TYPE_SHADER_CONSTANTS,
62 BRW_BUFFER_TYPE_SHADER_SCRATCH,
63 BRW_BUFFER_TYPE_BATCH,
64 BRW_BUFFER_TYPE_GENERAL_STATE,
65 BRW_BUFFER_TYPE_SURFACE_STATE,
66 BRW_BUFFER_TYPE_PIXEL, /* image uploads, pbo's, etc */
67 BRW_BUFFER_TYPE_GENERIC, /* unknown */
68 BRW_BUFFER_TYPE_MAX /* Count of possible values */
69 };
70
71
72 /* Describe the usage of a particular buffer in a relocation. The DRM
73 * winsys will translate these back to GEM read/write domain flags.
74 */
75 enum brw_buffer_usage {
76 BRW_USAGE_STATE, /* INSTRUCTION, 0 */
77 BRW_USAGE_QUERY_RESULT, /* INSTRUCTION, INSTRUCTION */
78 BRW_USAGE_RENDER_TARGET, /* RENDER, 0 */
79 BRW_USAGE_DEPTH_BUFFER, /* RENDER, RENDER */
80 BRW_USAGE_BLIT_SOURCE, /* RENDER, 0 */
81 BRW_USAGE_BLIT_DEST, /* RENDER, RENDER */
82 BRW_USAGE_SAMPLER, /* SAMPLER, 0 */
83 BRW_USAGE_VERTEX, /* VERTEX, 0 */
84 BRW_USAGE_SCRATCH, /* 0, 0 */
85 BRW_USAGE_MAX
86 };
87
88 enum brw_buffer_data_type {
89 BRW_DATA_GS_CC_VP,
90 BRW_DATA_GS_CC_UNIT,
91 BRW_DATA_GS_WM_PROG,
92 BRW_DATA_GS_SAMPLER_DEFAULT_COLOR,
93 BRW_DATA_GS_SAMPLER,
94 BRW_DATA_GS_WM_UNIT,
95 BRW_DATA_GS_SF_PROG,
96 BRW_DATA_GS_SF_VP,
97 BRW_DATA_GS_SF_UNIT,
98 BRW_DATA_GS_VS_UNIT,
99 BRW_DATA_GS_VS_PROG,
100 BRW_DATA_GS_GS_UNIT,
101 BRW_DATA_GS_GS_PROG,
102 BRW_DATA_GS_CLIP_VP,
103 BRW_DATA_GS_CLIP_UNIT,
104 BRW_DATA_GS_CLIP_PROG,
105 BRW_DATA_SS_SURFACE,
106 BRW_DATA_SS_SURF_BIND,
107 BRW_DATA_CONSTANT_BUFFER,
108 BRW_DATA_BATCH_BUFFER,
109 BRW_DATA_OTHER,
110 BRW_DATA_MAX
111 };
112
113
114 /* Matches the i915_drm definitions:
115 */
116 #define BRW_TILING_NONE 0
117 #define BRW_TILING_X 1
118 #define BRW_TILING_Y 2
119
120
121 /* Relocations to be applied with subdata in a call to sws->bo_subdata, below.
122 *
123 * Effectively this encodes:
124 *
125 * (unsigned *)(subdata + offset) = bo->offset + delta
126 */
127 struct brw_winsys_reloc {
128 enum brw_buffer_usage usage; /* debug only */
129 unsigned delta;
130 unsigned offset;
131 struct brw_winsys_buffer *bo;
132 };
133
134 static INLINE void make_reloc(struct brw_winsys_reloc *reloc,
135 enum brw_buffer_usage usage,
136 unsigned delta,
137 unsigned offset,
138 struct brw_winsys_buffer *bo)
139 {
140 reloc->usage = usage;
141 reloc->delta = delta;
142 reloc->offset = offset;
143 reloc->bo = bo; /* Note - note taking a reference yet */
144 }
145
146
147
148 struct brw_winsys_screen {
149
150
151 /**
152 * Buffer functions.
153 */
154
155 /*@{*/
156 /**
157 * Create a buffer.
158 */
159 enum pipe_error (*bo_alloc)(struct brw_winsys_screen *sws,
160 enum brw_buffer_type type,
161 unsigned size,
162 unsigned alignment,
163 struct brw_winsys_buffer **bo_out);
164
165 enum pipe_error (*bo_from_handle)(struct brw_winsys_screen *sws,
166 struct winsys_handle *whandle,
167 unsigned *stride,
168 unsigned *tiling,
169 struct brw_winsys_buffer **bo_out);
170
171 enum pipe_error (*bo_get_handle)(struct brw_winsys_buffer *buffer,
172 struct winsys_handle *whandle,
173 unsigned stride);
174
175 /* Destroy a buffer when our refcount goes to zero:
176 */
177 void (*bo_destroy)(struct brw_winsys_buffer *buffer);
178
179 /* delta -- added to b2->offset, and written into buffer
180 * offset -- location above value is written to within buffer
181 */
182 enum pipe_error (*bo_emit_reloc)(struct brw_winsys_buffer *buffer,
183 enum brw_buffer_usage usage,
184 unsigned delta,
185 unsigned offset,
186 struct brw_winsys_buffer *b2);
187
188 enum pipe_error (*bo_exec)(struct brw_winsys_buffer *buffer,
189 unsigned bytes_used);
190
191 enum pipe_error (*bo_subdata)(struct brw_winsys_buffer *buffer,
192 enum brw_buffer_data_type data_type,
193 size_t offset,
194 size_t size,
195 const void *data,
196 const struct brw_winsys_reloc *reloc,
197 unsigned nr_reloc );
198
199 boolean (*bo_is_busy)(struct brw_winsys_buffer *buffer);
200 boolean (*bo_references)(struct brw_winsys_buffer *a,
201 struct brw_winsys_buffer *b);
202
203 /* XXX: couldn't this be handled by returning true/false on
204 * bo_emit_reloc?
205 */
206 enum pipe_error (*check_aperture_space)(struct brw_winsys_screen *iws,
207 struct brw_winsys_buffer **buffers,
208 unsigned count);
209
210 /**
211 * Map a buffer.
212 */
213 void *(*bo_map)(struct brw_winsys_buffer *buffer,
214 enum brw_buffer_data_type data_type,
215 unsigned offset,
216 unsigned length,
217 boolean write,
218 boolean discard,
219 boolean flush_explicit);
220
221 void (*bo_flush_range)(struct brw_winsys_buffer *buffer,
222 unsigned offset,
223 unsigned length);
224
225 /**
226 * Unmap a buffer.
227 */
228 void (*bo_unmap)(struct brw_winsys_buffer *buffer);
229 /*@}*/
230
231
232 /* Wait for buffer to go idle. Similar to map+unmap, but doesn't
233 * mark buffer contents as dirty.
234 */
235 void (*bo_wait_idle)(struct brw_winsys_buffer *buffer);
236
237 /**
238 * Destroy the winsys.
239 */
240 void (*destroy)(struct brw_winsys_screen *iws);
241 };
242
243 static INLINE void *
244 bo_map_read(struct brw_winsys_screen *sws, struct brw_winsys_buffer *buf)
245 {
246 return sws->bo_map( buf,
247 BRW_DATA_OTHER,
248 0, buf->size,
249 FALSE, FALSE, FALSE );
250 }
251
252 static INLINE void
253 bo_reference(struct brw_winsys_buffer **ptr, struct brw_winsys_buffer *buf)
254 {
255 struct brw_winsys_buffer *old_buf = *ptr;
256
257 if (pipe_reference(&(*ptr)->reference, &buf->reference))
258 old_buf->sws->bo_destroy(old_buf);
259
260 *ptr = buf;
261 }
262
263
264 /**
265 * Create brw pipe_screen.
266 */
267 struct pipe_screen *brw_create_screen(struct brw_winsys_screen *iws, unsigned pci_id);
268
269
270
271 /*************************************************************************
272 * Cooperative dumping between winsys and driver. TODO: make this
273 * driver-only by wrapping calls to winsys->bo_subdata().
274 */
275
276 #ifdef DEBUG
277 extern int BRW_DUMP;
278 #else
279 #define BRW_DUMP 0
280 #endif
281
282 #define DUMP_ASM 0x1
283 #define DUMP_STATE 0x2
284 #define DUMP_BATCH 0x4
285
286 void brw_dump_data( unsigned pci_id,
287 enum brw_buffer_data_type data_type,
288 unsigned offset,
289 const void *data,
290 size_t size );
291
292
293 #endif