virgl: implement set_min_samples
[mesa.git] / src / gallium / drivers / virgl / virgl_protocol.h
1 /*
2 * Copyright 2014, 2015 Red Hat.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23 #ifndef VIRGL_PROTOCOL_H
24 #define VIRGL_PROTOCOL_H
25
26 #define VIRGL_QUERY_STATE_NEW 0
27 #define VIRGL_QUERY_STATE_DONE 1
28 #define VIRGL_QUERY_STATE_WAIT_HOST 2
29
30 struct virgl_host_query_state {
31 uint32_t query_state;
32 uint32_t result_size;
33 uint64_t result;
34 };
35
36 enum virgl_object_type {
37 VIRGL_OBJECT_NULL,
38 VIRGL_OBJECT_BLEND,
39 VIRGL_OBJECT_RASTERIZER,
40 VIRGL_OBJECT_DSA,
41 VIRGL_OBJECT_SHADER,
42 VIRGL_OBJECT_VERTEX_ELEMENTS,
43 VIRGL_OBJECT_SAMPLER_VIEW,
44 VIRGL_OBJECT_SAMPLER_STATE,
45 VIRGL_OBJECT_SURFACE,
46 VIRGL_OBJECT_QUERY,
47 VIRGL_OBJECT_STREAMOUT_TARGET,
48 VIRGL_MAX_OBJECTS,
49 };
50
51 /* context cmds to be encoded in the command stream */
52 enum virgl_context_cmd {
53 VIRGL_CCMD_NOP = 0,
54 VIRGL_CCMD_CREATE_OBJECT = 1,
55 VIRGL_CCMD_BIND_OBJECT,
56 VIRGL_CCMD_DESTROY_OBJECT,
57 VIRGL_CCMD_SET_VIEWPORT_STATE,
58 VIRGL_CCMD_SET_FRAMEBUFFER_STATE,
59 VIRGL_CCMD_SET_VERTEX_BUFFERS,
60 VIRGL_CCMD_CLEAR,
61 VIRGL_CCMD_DRAW_VBO,
62 VIRGL_CCMD_RESOURCE_INLINE_WRITE,
63 VIRGL_CCMD_SET_SAMPLER_VIEWS,
64 VIRGL_CCMD_SET_INDEX_BUFFER,
65 VIRGL_CCMD_SET_CONSTANT_BUFFER,
66 VIRGL_CCMD_SET_STENCIL_REF,
67 VIRGL_CCMD_SET_BLEND_COLOR,
68 VIRGL_CCMD_SET_SCISSOR_STATE,
69 VIRGL_CCMD_BLIT,
70 VIRGL_CCMD_RESOURCE_COPY_REGION,
71 VIRGL_CCMD_BIND_SAMPLER_STATES,
72 VIRGL_CCMD_BEGIN_QUERY,
73 VIRGL_CCMD_END_QUERY,
74 VIRGL_CCMD_GET_QUERY_RESULT,
75 VIRGL_CCMD_SET_POLYGON_STIPPLE,
76 VIRGL_CCMD_SET_CLIP_STATE,
77 VIRGL_CCMD_SET_SAMPLE_MASK,
78 VIRGL_CCMD_SET_STREAMOUT_TARGETS,
79 VIRGL_CCMD_SET_RENDER_CONDITION,
80 VIRGL_CCMD_SET_UNIFORM_BUFFER,
81
82 VIRGL_CCMD_SET_SUB_CTX,
83 VIRGL_CCMD_CREATE_SUB_CTX,
84 VIRGL_CCMD_DESTROY_SUB_CTX,
85 VIRGL_CCMD_BIND_SHADER,
86
87 VIRGL_CCMD_SET_TESS_STATE,
88 VIRGL_CCMD_SET_MIN_SAMPLES,
89 };
90
91 /*
92 8-bit cmd headers
93 8-bit object type
94 16-bit length
95 */
96
97 #define VIRGL_CMD0(cmd, obj, len) ((cmd) | ((obj) << 8) | ((len) << 16))
98
99 /* hw specification */
100 #define VIRGL_MAX_COLOR_BUFS 8
101 #define VIRGL_MAX_CLIP_PLANES 8
102
103 #define VIRGL_OBJ_CREATE_HEADER 0
104 #define VIRGL_OBJ_CREATE_HANDLE 1
105
106 #define VIRGL_OBJ_BIND_HEADER 0
107 #define VIRGL_OBJ_BIND_HANDLE 1
108
109 #define VIRGL_OBJ_DESTROY_HANDLE 1
110
111 /* some of these defines are a specification - not used in the code */
112 /* bit offsets for blend state object */
113 #define VIRGL_OBJ_BLEND_SIZE (VIRGL_MAX_COLOR_BUFS + 3)
114 #define VIRGL_OBJ_BLEND_HANDLE 1
115 #define VIRGL_OBJ_BLEND_S0 2
116 #define VIRGL_OBJ_BLEND_S0_INDEPENDENT_BLEND_ENABLE(x) ((x) & 0x1 << 0)
117 #define VIRGL_OBJ_BLEND_S0_LOGICOP_ENABLE(x) (((x) & 0x1) << 1)
118 #define VIRGL_OBJ_BLEND_S0_DITHER(x) (((x) & 0x1) << 2)
119 #define VIRGL_OBJ_BLEND_S0_ALPHA_TO_COVERAGE(x) (((x) & 0x1) << 3)
120 #define VIRGL_OBJ_BLEND_S0_ALPHA_TO_ONE(x) (((x) & 0x1) << 4)
121 #define VIRGL_OBJ_BLEND_S1 3
122 #define VIRGL_OBJ_BLEND_S1_LOGICOP_FUNC(x) (((x) & 0xf) << 0)
123 /* repeated once per number of cbufs */
124
125 #define VIRGL_OBJ_BLEND_S2(cbuf) (4 + (cbuf))
126 #define VIRGL_OBJ_BLEND_S2_RT_BLEND_ENABLE(x) (((x) & 0x1) << 0)
127 #define VIRGL_OBJ_BLEND_S2_RT_RGB_FUNC(x) (((x) & 0x7) << 1)
128 #define VIRGL_OBJ_BLEND_S2_RT_RGB_SRC_FACTOR(x) (((x) & 0x1f) << 4)
129 #define VIRGL_OBJ_BLEND_S2_RT_RGB_DST_FACTOR(x) (((x) & 0x1f) << 9)
130 #define VIRGL_OBJ_BLEND_S2_RT_ALPHA_FUNC(x) (((x) & 0x7) << 14)
131 #define VIRGL_OBJ_BLEND_S2_RT_ALPHA_SRC_FACTOR(x) (((x) & 0x1f) << 17)
132 #define VIRGL_OBJ_BLEND_S2_RT_ALPHA_DST_FACTOR(x) (((x) & 0x1f) << 22)
133 #define VIRGL_OBJ_BLEND_S2_RT_COLORMASK(x) (((x) & 0xf) << 27)
134
135 /* bit offsets for DSA state */
136 #define VIRGL_OBJ_DSA_SIZE 5
137 #define VIRGL_OBJ_DSA_HANDLE 1
138 #define VIRGL_OBJ_DSA_S0 2
139 #define VIRGL_OBJ_DSA_S0_DEPTH_ENABLE(x) (((x) & 0x1) << 0)
140 #define VIRGL_OBJ_DSA_S0_DEPTH_WRITEMASK(x) (((x) & 0x1) << 1)
141 #define VIRGL_OBJ_DSA_S0_DEPTH_FUNC(x) (((x) & 0x7) << 2)
142 #define VIRGL_OBJ_DSA_S0_ALPHA_ENABLED(x) (((x) & 0x1) << 8)
143 #define VIRGL_OBJ_DSA_S0_ALPHA_FUNC(x) (((x) & 0x7) << 9)
144 #define VIRGL_OBJ_DSA_S1 3
145 #define VIRGL_OBJ_DSA_S2 4
146 #define VIRGL_OBJ_DSA_S1_STENCIL_ENABLED(x) (((x) & 0x1) << 0)
147 #define VIRGL_OBJ_DSA_S1_STENCIL_FUNC(x) (((x) & 0x7) << 1)
148 #define VIRGL_OBJ_DSA_S1_STENCIL_FAIL_OP(x) (((x) & 0x7) << 4)
149 #define VIRGL_OBJ_DSA_S1_STENCIL_ZPASS_OP(x) (((x) & 0x7) << 7)
150 #define VIRGL_OBJ_DSA_S1_STENCIL_ZFAIL_OP(x) (((x) & 0x7) << 10)
151 #define VIRGL_OBJ_DSA_S1_STENCIL_VALUEMASK(x) (((x) & 0xff) << 13)
152 #define VIRGL_OBJ_DSA_S1_STENCIL_WRITEMASK(x) (((x) & 0xff) << 21)
153 #define VIRGL_OBJ_DSA_ALPHA_REF 5
154
155 /* offsets for rasterizer state */
156 #define VIRGL_OBJ_RS_SIZE 9
157 #define VIRGL_OBJ_RS_HANDLE 1
158 #define VIRGL_OBJ_RS_S0 2
159 #define VIRGL_OBJ_RS_S0_FLATSHADE(x) (((x) & 0x1) << 0)
160 #define VIRGL_OBJ_RS_S0_DEPTH_CLIP(x) (((x) & 0x1) << 1)
161 #define VIRGL_OBJ_RS_S0_CLIP_HALFZ(x) (((x) & 0x1) << 2)
162 #define VIRGL_OBJ_RS_S0_RASTERIZER_DISCARD(x) (((x) & 0x1) << 3)
163 #define VIRGL_OBJ_RS_S0_FLATSHADE_FIRST(x) (((x) & 0x1) << 4)
164 #define VIRGL_OBJ_RS_S0_LIGHT_TWOSIZE(x) (((x) & 0x1) << 5)
165 #define VIRGL_OBJ_RS_S0_SPRITE_COORD_MODE(x) (((x) & 0x1) << 6)
166 #define VIRGL_OBJ_RS_S0_POINT_QUAD_RASTERIZATION(x) (((x) & 0x1) << 7)
167 #define VIRGL_OBJ_RS_S0_CULL_FACE(x) (((x) & 0x3) << 8)
168 #define VIRGL_OBJ_RS_S0_FILL_FRONT(x) (((x) & 0x3) << 10)
169 #define VIRGL_OBJ_RS_S0_FILL_BACK(x) (((x) & 0x3) << 12)
170 #define VIRGL_OBJ_RS_S0_SCISSOR(x) (((x) & 0x1) << 14)
171 #define VIRGL_OBJ_RS_S0_FRONT_CCW(x) (((x) & 0x1) << 15)
172 #define VIRGL_OBJ_RS_S0_CLAMP_VERTEX_COLOR(x) (((x) & 0x1) << 16)
173 #define VIRGL_OBJ_RS_S0_CLAMP_FRAGMENT_COLOR(x) (((x) & 0x1) << 17)
174 #define VIRGL_OBJ_RS_S0_OFFSET_LINE(x) (((x) & 0x1) << 18)
175 #define VIRGL_OBJ_RS_S0_OFFSET_POINT(x) (((x) & 0x1) << 19)
176 #define VIRGL_OBJ_RS_S0_OFFSET_TRI(x) (((x) & 0x1) << 20)
177 #define VIRGL_OBJ_RS_S0_POLY_SMOOTH(x) (((x) & 0x1) << 21)
178 #define VIRGL_OBJ_RS_S0_POLY_STIPPLE_ENABLE(x) (((x) & 0x1) << 22)
179 #define VIRGL_OBJ_RS_S0_POINT_SMOOTH(x) (((x) & 0x1) << 23)
180 #define VIRGL_OBJ_RS_S0_POINT_SIZE_PER_VERTEX(x) (((x) & 0x1) << 24)
181 #define VIRGL_OBJ_RS_S0_MULTISAMPLE(x) (((x) & 0x1) << 25)
182 #define VIRGL_OBJ_RS_S0_LINE_SMOOTH(x) (((x) & 0x1) << 26)
183 #define VIRGL_OBJ_RS_S0_LINE_STIPPLE_ENABLE(x) (((x) & 0x1) << 27)
184 #define VIRGL_OBJ_RS_S0_LINE_LAST_PIXEL(x) (((x) & 0x1) << 28)
185 #define VIRGL_OBJ_RS_S0_HALF_PIXEL_CENTER(x) (((x) & 0x1) << 29)
186 #define VIRGL_OBJ_RS_S0_BOTTOM_EDGE_RULE(x) (((x) & 0x1) << 30)
187 #define VIRGL_OBJ_RS_S0_FORCE_PERSAMPLE_INTERP(x) (((x) & 0x1) << 31)
188
189 #define VIRGL_OBJ_RS_POINT_SIZE 3
190 #define VIRGL_OBJ_RS_SPRITE_COORD_ENABLE 4
191 #define VIRGL_OBJ_RS_S3 5
192
193 #define VIRGL_OBJ_RS_S3_LINE_STIPPLE_PATTERN(x) (((x) & 0xffff) << 0)
194 #define VIRGL_OBJ_RS_S3_LINE_STIPPLE_FACTOR(x) (((x) & 0xff) << 16)
195 #define VIRGL_OBJ_RS_S3_CLIP_PLANE_ENABLE(x) (((x) & 0xff) << 24)
196 #define VIRGL_OBJ_RS_LINE_WIDTH 6
197 #define VIRGL_OBJ_RS_OFFSET_UNITS 7
198 #define VIRGL_OBJ_RS_OFFSET_SCALE 8
199 #define VIRGL_OBJ_RS_OFFSET_CLAMP 9
200
201 #define VIRGL_OBJ_CLEAR_SIZE 8
202 #define VIRGL_OBJ_CLEAR_BUFFERS 1
203 #define VIRGL_OBJ_CLEAR_COLOR_0 2 /* color is 4 * u32/f32/i32 */
204 #define VIRGL_OBJ_CLEAR_COLOR_1 3
205 #define VIRGL_OBJ_CLEAR_COLOR_2 4
206 #define VIRGL_OBJ_CLEAR_COLOR_3 5
207 #define VIRGL_OBJ_CLEAR_DEPTH_0 6 /* depth is a double precision float */
208 #define VIRGL_OBJ_CLEAR_DEPTH_1 7
209 #define VIRGL_OBJ_CLEAR_STENCIL 8
210
211 /* shader object */
212 #define VIRGL_OBJ_SHADER_HDR_SIZE(nso) (5 + ((nso) ? (2 * nso) + 4 : 0))
213 #define VIRGL_OBJ_SHADER_HANDLE 1
214 #define VIRGL_OBJ_SHADER_TYPE 2
215 #define VIRGL_OBJ_SHADER_OFFSET 3
216 #define VIRGL_OBJ_SHADER_OFFSET_VAL(x) (((x) & 0x7fffffff) << 0)
217 /* start contains full length in VAL - also implies continuations */
218 /* continuation contains offset in VAL */
219 #define VIRGL_OBJ_SHADER_OFFSET_CONT (0x1 << 31)
220 #define VIRGL_OBJ_SHADER_NUM_TOKENS 4
221 #define VIRGL_OBJ_SHADER_SO_NUM_OUTPUTS 5
222 #define VIRGL_OBJ_SHADER_SO_STRIDE(x) (6 + (x))
223 #define VIRGL_OBJ_SHADER_SO_OUTPUT0(x) (10 + (x * 2))
224 #define VIRGL_OBJ_SHADER_SO_OUTPUT_REGISTER_INDEX(x) (((x) & 0xff) << 0)
225 #define VIRGL_OBJ_SHADER_SO_OUTPUT_START_COMPONENT(x) (((x) & 0x3) << 8)
226 #define VIRGL_OBJ_SHADER_SO_OUTPUT_NUM_COMPONENTS(x) (((x) & 0x7) << 10)
227 #define VIRGL_OBJ_SHADER_SO_OUTPUT_BUFFER(x) (((x) & 0x7) << 13)
228 #define VIRGL_OBJ_SHADER_SO_OUTPUT_DST_OFFSET(x) (((x) & 0xffff) << 16)
229 #define VIRGL_OBJ_SHADER_SO_OUTPUT0_SO(x) (11 + (x * 2))
230 #define VIRGL_OBJ_SHADER_SO_OUTPUT_STREAM(x) (((x) & 0x03) << 0)
231
232 /* viewport state */
233 #define VIRGL_SET_VIEWPORT_STATE_SIZE(num_viewports) ((6 * num_viewports) + 1)
234 #define VIRGL_SET_VIEWPORT_START_SLOT 1
235 #define VIRGL_SET_VIEWPORT_STATE_SCALE_0(x) (2 + (x * 6))
236 #define VIRGL_SET_VIEWPORT_STATE_SCALE_1(x) (3 + (x * 6))
237 #define VIRGL_SET_VIEWPORT_STATE_SCALE_2(x) (4 + (x * 6))
238 #define VIRGL_SET_VIEWPORT_STATE_TRANSLATE_0(x) (5 + (x * 6))
239 #define VIRGL_SET_VIEWPORT_STATE_TRANSLATE_1(x) (6 + (x * 6))
240 #define VIRGL_SET_VIEWPORT_STATE_TRANSLATE_2(x) (7 + (x * 6))
241
242 /* framebuffer state */
243 #define VIRGL_SET_FRAMEBUFFER_STATE_SIZE(nr_cbufs) (nr_cbufs + 2)
244 #define VIRGL_SET_FRAMEBUFFER_STATE_NR_CBUFS 1
245 #define VIRGL_SET_FRAMEBUFFER_STATE_NR_ZSURF_HANDLE 2
246 #define VIRGL_SET_FRAMEBUFFER_STATE_CBUF_HANDLE(x) ((x) + 3)
247
248 /* vertex elements object */
249 #define VIRGL_OBJ_VERTEX_ELEMENTS_SIZE(num_elements) (((num_elements) * 4) + 1)
250 #define VIRGL_OBJ_VERTEX_ELEMENTS_HANDLE 1
251 #define VIRGL_OBJ_VERTEX_ELEMENTS_V0_SRC_OFFSET(x) (((x) * 4) + 2) /* repeated per VE */
252 #define VIRGL_OBJ_VERTEX_ELEMENTS_V0_INSTANCE_DIVISOR(x) (((x) * 4) + 3)
253 #define VIRGL_OBJ_VERTEX_ELEMENTS_V0_VERTEX_BUFFER_INDEX(x) (((x) * 4) + 4)
254 #define VIRGL_OBJ_VERTEX_ELEMENTS_V0_SRC_FORMAT(x) (((x) * 4) + 5)
255
256 /* vertex buffers */
257 #define VIRGL_SET_VERTEX_BUFFERS_SIZE(num_buffers) ((num_buffers) * 3)
258 #define VIRGL_SET_VERTEX_BUFFER_STRIDE(x) (((x) * 3) + 1)
259 #define VIRGL_SET_VERTEX_BUFFER_OFFSET(x) (((x) * 3) + 2)
260 #define VIRGL_SET_VERTEX_BUFFER_HANDLE(x) (((x) * 3) + 3)
261
262 /* index buffer */
263 #define VIRGL_SET_INDEX_BUFFER_SIZE(ib) (((ib) ? 2 : 0) + 1)
264 #define VIRGL_SET_INDEX_BUFFER_HANDLE 1
265 #define VIRGL_SET_INDEX_BUFFER_INDEX_SIZE 2 /* only if sending an IB handle */
266 #define VIRGL_SET_INDEX_BUFFER_OFFSET 3 /* only if sending an IB handle */
267
268 /* constant buffer */
269 #define VIRGL_SET_CONSTANT_BUFFER_SHADER_TYPE 1
270 #define VIRGL_SET_CONSTANT_BUFFER_INDEX 2
271 #define VIRGL_SET_CONSTANT_BUFFER_DATA_START 3
272
273 #define VIRGL_SET_UNIFORM_BUFFER_SIZE 5
274 #define VIRGL_SET_UNIFORM_BUFFER_SHADER_TYPE 1
275 #define VIRGL_SET_UNIFORM_BUFFER_INDEX 2
276 #define VIRGL_SET_UNIFORM_BUFFER_OFFSET 3
277 #define VIRGL_SET_UNIFORM_BUFFER_LENGTH 4
278 #define VIRGL_SET_UNIFORM_BUFFER_RES_HANDLE 5
279
280 /* draw VBO */
281 #define VIRGL_DRAW_VBO_SIZE 12
282 #define VIRGL_DRAW_VBO_SIZE_TESS 14
283 #define VIRGL_DRAW_VBO_SIZE_INDIRECT 20
284 #define VIRGL_DRAW_VBO_START 1
285 #define VIRGL_DRAW_VBO_COUNT 2
286 #define VIRGL_DRAW_VBO_MODE 3
287 #define VIRGL_DRAW_VBO_INDEXED 4
288 #define VIRGL_DRAW_VBO_INSTANCE_COUNT 5
289 #define VIRGL_DRAW_VBO_INDEX_BIAS 6
290 #define VIRGL_DRAW_VBO_START_INSTANCE 7
291 #define VIRGL_DRAW_VBO_PRIMITIVE_RESTART 8
292 #define VIRGL_DRAW_VBO_RESTART_INDEX 9
293 #define VIRGL_DRAW_VBO_MIN_INDEX 10
294 #define VIRGL_DRAW_VBO_MAX_INDEX 11
295 #define VIRGL_DRAW_VBO_COUNT_FROM_SO 12
296 /* tess packet */
297 #define VIRGL_DRAW_VBO_VERTICES_PER_PATCH 13
298 #define VIRGL_DRAW_VBO_DRAWID 14
299 /* indirect packet */
300 #define VIRGL_DRAW_VBO_INDIRECT_HANDLE 15
301 #define VIRGL_DRAW_VBO_INDIRECT_OFFSET 16
302 #define VIRGL_DRAW_VBO_INDIRECT_STRIDE 17
303 #define VIRGL_DRAW_VBO_INDIRECT_DRAW_COUNT 18
304 #define VIRGL_DRAW_VBO_INDIRECT_DRAW_COUNT_OFFSET 19
305 #define VIRGL_DRAW_VBO_INDIRECT_DRAW_COUNT_HANDLE 20
306
307 /* create surface */
308 #define VIRGL_OBJ_SURFACE_SIZE 5
309 #define VIRGL_OBJ_SURFACE_HANDLE 1
310 #define VIRGL_OBJ_SURFACE_RES_HANDLE 2
311 #define VIRGL_OBJ_SURFACE_FORMAT 3
312 #define VIRGL_OBJ_SURFACE_BUFFER_FIRST_ELEMENT 4
313 #define VIRGL_OBJ_SURFACE_BUFFER_LAST_ELEMENT 5
314 #define VIRGL_OBJ_SURFACE_TEXTURE_LEVEL 4
315 #define VIRGL_OBJ_SURFACE_TEXTURE_LAYERS 5
316
317 /* create streamout target */
318 #define VIRGL_OBJ_STREAMOUT_SIZE 4
319 #define VIRGL_OBJ_STREAMOUT_HANDLE 1
320 #define VIRGL_OBJ_STREAMOUT_RES_HANDLE 2
321 #define VIRGL_OBJ_STREAMOUT_BUFFER_OFFSET 3
322 #define VIRGL_OBJ_STREAMOUT_BUFFER_SIZE 4
323
324 /* sampler state */
325 #define VIRGL_OBJ_SAMPLER_STATE_SIZE 9
326 #define VIRGL_OBJ_SAMPLER_STATE_HANDLE 1
327 #define VIRGL_OBJ_SAMPLER_STATE_S0 2
328 #define VIRGL_OBJ_SAMPLE_STATE_S0_WRAP_S(x) (((x) & 0x7) << 0)
329 #define VIRGL_OBJ_SAMPLE_STATE_S0_WRAP_T(x) (((x) & 0x7) << 3)
330 #define VIRGL_OBJ_SAMPLE_STATE_S0_WRAP_R(x) (((x) & 0x7) << 6)
331 #define VIRGL_OBJ_SAMPLE_STATE_S0_MIN_IMG_FILTER(x) (((x) & 0x3) << 9)
332 #define VIRGL_OBJ_SAMPLE_STATE_S0_MIN_MIP_FILTER(x) (((x) & 0x3) << 11)
333 #define VIRGL_OBJ_SAMPLE_STATE_S0_MAG_IMG_FILTER(x) (((x) & 0x3) << 13)
334 #define VIRGL_OBJ_SAMPLE_STATE_S0_COMPARE_MODE(x) (((x) & 0x1) << 15)
335 #define VIRGL_OBJ_SAMPLE_STATE_S0_COMPARE_FUNC(x) (((x) & 0x7) << 16)
336 #define VIRGL_OBJ_SAMPLE_STATE_S0_SEAMLESS_CUBE_MAP(x) (((x) & 0x1) << 19)
337
338 #define VIRGL_OBJ_SAMPLER_STATE_LOD_BIAS 3
339 #define VIRGL_OBJ_SAMPLER_STATE_MIN_LOD 4
340 #define VIRGL_OBJ_SAMPLER_STATE_MAX_LOD 5
341 #define VIRGL_OBJ_SAMPLER_STATE_BORDER_COLOR(x) ((x) + 6) /* 6 - 9 */
342
343
344 /* sampler view */
345 #define VIRGL_OBJ_SAMPLER_VIEW_SIZE 6
346 #define VIRGL_OBJ_SAMPLER_VIEW_HANDLE 1
347 #define VIRGL_OBJ_SAMPLER_VIEW_RES_HANDLE 2
348 #define VIRGL_OBJ_SAMPLER_VIEW_FORMAT 3
349 #define VIRGL_OBJ_SAMPLER_VIEW_BUFFER_FIRST_ELEMENT 4
350 #define VIRGL_OBJ_SAMPLER_VIEW_BUFFER_LAST_ELEMENT 5
351 #define VIRGL_OBJ_SAMPLER_VIEW_TEXTURE_LAYER 4
352 #define VIRGL_OBJ_SAMPLER_VIEW_TEXTURE_LEVEL 5
353 #define VIRGL_OBJ_SAMPLER_VIEW_SWIZZLE 6
354 #define VIRGL_OBJ_SAMPLER_VIEW_SWIZZLE_R(x) (((x) & 0x7) << 0)
355 #define VIRGL_OBJ_SAMPLER_VIEW_SWIZZLE_G(x) (((x) & 0x7) << 3)
356 #define VIRGL_OBJ_SAMPLER_VIEW_SWIZZLE_B(x) (((x) & 0x7) << 6)
357 #define VIRGL_OBJ_SAMPLER_VIEW_SWIZZLE_A(x) (((x) & 0x7) << 9)
358
359 /* set sampler views */
360 #define VIRGL_SET_SAMPLER_VIEWS_SIZE(num_views) ((num_views) + 2)
361 #define VIRGL_SET_SAMPLER_VIEWS_SHADER_TYPE 1
362 #define VIRGL_SET_SAMPLER_VIEWS_START_SLOT 2
363 #define VIRGL_SET_SAMPLER_VIEWS_V0_HANDLE 3
364
365 /* bind sampler states */
366 #define VIRGL_BIND_SAMPLER_STATES(num_states) ((num_states) + 2)
367 #define VIRGL_BIND_SAMPLER_STATES_SHADER_TYPE 1
368 #define VIRGL_BIND_SAMPLER_STATES_START_SLOT 2
369 #define VIRGL_BIND_SAMPLER_STATES_S0_HANDLE 3
370
371 /* set stencil reference */
372 #define VIRGL_SET_STENCIL_REF_SIZE 1
373 #define VIRGL_SET_STENCIL_REF 1
374 #define VIRGL_STENCIL_REF_VAL(f, s) ((f & 0xff) | (((s & 0xff) << 8)))
375
376 /* set blend color */
377 #define VIRGL_SET_BLEND_COLOR_SIZE 4
378 #define VIRGL_SET_BLEND_COLOR(x) ((x) + 1)
379
380 /* set scissor state */
381 #define VIRGL_SET_SCISSOR_STATE_SIZE(x) (1 + 2 * x)
382 #define VIRGL_SET_SCISSOR_START_SLOT 1
383 #define VIRGL_SET_SCISSOR_MINX_MINY(x) (2 + (x * 2))
384 #define VIRGL_SET_SCISSOR_MAXX_MAXY(x) (3 + (x * 2))
385
386 /* resource copy region */
387 #define VIRGL_CMD_RESOURCE_COPY_REGION_SIZE 13
388 #define VIRGL_CMD_RCR_DST_RES_HANDLE 1
389 #define VIRGL_CMD_RCR_DST_LEVEL 2
390 #define VIRGL_CMD_RCR_DST_X 3
391 #define VIRGL_CMD_RCR_DST_Y 4
392 #define VIRGL_CMD_RCR_DST_Z 5
393 #define VIRGL_CMD_RCR_SRC_RES_HANDLE 6
394 #define VIRGL_CMD_RCR_SRC_LEVEL 7
395 #define VIRGL_CMD_RCR_SRC_X 8
396 #define VIRGL_CMD_RCR_SRC_Y 9
397 #define VIRGL_CMD_RCR_SRC_Z 10
398 #define VIRGL_CMD_RCR_SRC_W 11
399 #define VIRGL_CMD_RCR_SRC_H 12
400 #define VIRGL_CMD_RCR_SRC_D 13
401
402 /* blit */
403 #define VIRGL_CMD_BLIT_SIZE 21
404 #define VIRGL_CMD_BLIT_S0 1
405 #define VIRGL_CMD_BLIT_S0_MASK(x) (((x) & 0xff) << 0)
406 #define VIRGL_CMD_BLIT_S0_FILTER(x) (((x) & 0x3) << 8)
407 #define VIRGL_CMD_BLIT_S0_SCISSOR_ENABLE(x) (((x) & 0x1) << 10)
408 #define VIRGL_CMD_BLIT_S0_RENDER_CONDITION_ENABLE(x) (((x) & 0x1) << 11)
409 #define VIRGL_CMD_BLIT_S0_ALPHA_BLEND(x) (((x) & 0x1) << 12)
410 #define VIRGL_CMD_BLIT_SCISSOR_MINX_MINY 2
411 #define VIRGL_CMD_BLIT_SCISSOR_MAXX_MAXY 3
412 #define VIRGL_CMD_BLIT_DST_RES_HANDLE 4
413 #define VIRGL_CMD_BLIT_DST_LEVEL 5
414 #define VIRGL_CMD_BLIT_DST_FORMAT 6
415 #define VIRGL_CMD_BLIT_DST_X 7
416 #define VIRGL_CMD_BLIT_DST_Y 8
417 #define VIRGL_CMD_BLIT_DST_Z 9
418 #define VIRGL_CMD_BLIT_DST_W 10
419 #define VIRGL_CMD_BLIT_DST_H 11
420 #define VIRGL_CMD_BLIT_DST_D 12
421 #define VIRGL_CMD_BLIT_SRC_RES_HANDLE 13
422 #define VIRGL_CMD_BLIT_SRC_LEVEL 14
423 #define VIRGL_CMD_BLIT_SRC_FORMAT 15
424 #define VIRGL_CMD_BLIT_SRC_X 16
425 #define VIRGL_CMD_BLIT_SRC_Y 17
426 #define VIRGL_CMD_BLIT_SRC_Z 18
427 #define VIRGL_CMD_BLIT_SRC_W 19
428 #define VIRGL_CMD_BLIT_SRC_H 20
429 #define VIRGL_CMD_BLIT_SRC_D 21
430
431 /* query object */
432 #define VIRGL_OBJ_QUERY_SIZE 4
433 #define VIRGL_OBJ_QUERY_HANDLE 1
434 #define VIRGL_OBJ_QUERY_TYPE_INDEX 2
435 #define VIRGL_OBJ_QUERY_TYPE(x) (x & 0xffff)
436 #define VIRGL_OBJ_QUERY_INDEX(x) ((x & 0xffff) << 16)
437 #define VIRGL_OBJ_QUERY_OFFSET 3
438 #define VIRGL_OBJ_QUERY_RES_HANDLE 4
439
440 #define VIRGL_QUERY_BEGIN_HANDLE 1
441
442 #define VIRGL_QUERY_END_HANDLE 1
443
444 #define VIRGL_QUERY_RESULT_HANDLE 1
445 #define VIRGL_QUERY_RESULT_WAIT 2
446
447 /* render condition */
448 #define VIRGL_RENDER_CONDITION_SIZE 3
449 #define VIRGL_RENDER_CONDITION_HANDLE 1
450 #define VIRGL_RENDER_CONDITION_CONDITION 2
451 #define VIRGL_RENDER_CONDITION_MODE 3
452
453 /* resource inline write */
454 #define VIRGL_RESOURCE_IW_RES_HANDLE 1
455 #define VIRGL_RESOURCE_IW_LEVEL 2
456 #define VIRGL_RESOURCE_IW_USAGE 3
457 #define VIRGL_RESOURCE_IW_STRIDE 4
458 #define VIRGL_RESOURCE_IW_LAYER_STRIDE 5
459 #define VIRGL_RESOURCE_IW_X 6
460 #define VIRGL_RESOURCE_IW_Y 7
461 #define VIRGL_RESOURCE_IW_Z 8
462 #define VIRGL_RESOURCE_IW_W 9
463 #define VIRGL_RESOURCE_IW_H 10
464 #define VIRGL_RESOURCE_IW_D 11
465 #define VIRGL_RESOURCE_IW_DATA_START 12
466
467 /* set streamout targets */
468 #define VIRGL_SET_STREAMOUT_TARGETS_APPEND_BITMASK 1
469 #define VIRGL_SET_STREAMOUT_TARGETS_H0 2
470
471 /* set sample mask */
472 #define VIRGL_SET_SAMPLE_MASK_SIZE 1
473 #define VIRGL_SET_SAMPLE_MASK_MASK 1
474
475 /* set clip state */
476 #define VIRGL_SET_CLIP_STATE_SIZE 32
477 #define VIRGL_SET_CLIP_STATE_C0 1
478
479 /* polygon stipple */
480 #define VIRGL_POLYGON_STIPPLE_SIZE 32
481 #define VIRGL_POLYGON_STIPPLE_P0 1
482
483 #define VIRGL_BIND_SHADER_SIZE 2
484 #define VIRGL_BIND_SHADER_HANDLE 1
485 #define VIRGL_BIND_SHADER_TYPE 2
486
487 /* tess state */
488 #define VIRGL_TESS_STATE_SIZE 6
489
490 /* set min samples */
491 #define VIRGL_SET_MIN_SAMPLES_SIZE 1
492 #define VIRGL_SET_MIN_SAMPLES_MASK 1
493
494 #endif