i965: Emit 3DPRIMITIVE Ivybridge-style.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_defines.h
1 /*
2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
4 develop this 3D driver.
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a 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, sublicense, 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
16 portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **********************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 */
31
32
33 #ifndef BRW_DEFINES_H
34 #define BRW_DEFINES_H
35
36 /* 3D state:
37 */
38 #define PIPE_CONTROL_NOWRITE 0x00
39 #define PIPE_CONTROL_WRITEIMMEDIATE 0x01
40 #define PIPE_CONTROL_WRITEDEPTH 0x02
41 #define PIPE_CONTROL_WRITETIMESTAMP 0x03
42
43 #define PIPE_CONTROL_GTTWRITE_PROCESS_LOCAL 0x00
44 #define PIPE_CONTROL_GTTWRITE_GLOBAL 0x01
45
46 #define CMD_3D_PRIM 0x7b00 /* 3DPRIMITIVE */
47 /* DW0 */
48 # define GEN4_3DPRIM_TOPOLOGY_TYPE_SHIFT 10
49 # define GEN4_3DPRIM_VERTEXBUFFER_ACCESS_SEQUENTIAL (0 << 15)
50 # define GEN4_3DPRIM_VERTEXBUFFER_ACCESS_RANDOM (1 << 15)
51 /* DW1 */
52 # define GEN7_3DPRIM_VERTEXBUFFER_ACCESS_SEQUENTIAL (0 << 8)
53 # define GEN7_3DPRIM_VERTEXBUFFER_ACCESS_RANDOM (1 << 8)
54
55 #define _3DPRIM_POINTLIST 0x01
56 #define _3DPRIM_LINELIST 0x02
57 #define _3DPRIM_LINESTRIP 0x03
58 #define _3DPRIM_TRILIST 0x04
59 #define _3DPRIM_TRISTRIP 0x05
60 #define _3DPRIM_TRIFAN 0x06
61 #define _3DPRIM_QUADLIST 0x07
62 #define _3DPRIM_QUADSTRIP 0x08
63 #define _3DPRIM_LINELIST_ADJ 0x09
64 #define _3DPRIM_LINESTRIP_ADJ 0x0A
65 #define _3DPRIM_TRILIST_ADJ 0x0B
66 #define _3DPRIM_TRISTRIP_ADJ 0x0C
67 #define _3DPRIM_TRISTRIP_REVERSE 0x0D
68 #define _3DPRIM_POLYGON 0x0E
69 #define _3DPRIM_RECTLIST 0x0F
70 #define _3DPRIM_LINELOOP 0x10
71 #define _3DPRIM_POINTLIST_BF 0x11
72 #define _3DPRIM_LINESTRIP_CONT 0x12
73 #define _3DPRIM_LINESTRIP_BF 0x13
74 #define _3DPRIM_LINESTRIP_CONT_BF 0x14
75 #define _3DPRIM_TRIFAN_NOSTIPPLE 0x15
76
77 #define BRW_ANISORATIO_2 0
78 #define BRW_ANISORATIO_4 1
79 #define BRW_ANISORATIO_6 2
80 #define BRW_ANISORATIO_8 3
81 #define BRW_ANISORATIO_10 4
82 #define BRW_ANISORATIO_12 5
83 #define BRW_ANISORATIO_14 6
84 #define BRW_ANISORATIO_16 7
85
86 #define BRW_BLENDFACTOR_ONE 0x1
87 #define BRW_BLENDFACTOR_SRC_COLOR 0x2
88 #define BRW_BLENDFACTOR_SRC_ALPHA 0x3
89 #define BRW_BLENDFACTOR_DST_ALPHA 0x4
90 #define BRW_BLENDFACTOR_DST_COLOR 0x5
91 #define BRW_BLENDFACTOR_SRC_ALPHA_SATURATE 0x6
92 #define BRW_BLENDFACTOR_CONST_COLOR 0x7
93 #define BRW_BLENDFACTOR_CONST_ALPHA 0x8
94 #define BRW_BLENDFACTOR_SRC1_COLOR 0x9
95 #define BRW_BLENDFACTOR_SRC1_ALPHA 0x0A
96 #define BRW_BLENDFACTOR_ZERO 0x11
97 #define BRW_BLENDFACTOR_INV_SRC_COLOR 0x12
98 #define BRW_BLENDFACTOR_INV_SRC_ALPHA 0x13
99 #define BRW_BLENDFACTOR_INV_DST_ALPHA 0x14
100 #define BRW_BLENDFACTOR_INV_DST_COLOR 0x15
101 #define BRW_BLENDFACTOR_INV_CONST_COLOR 0x17
102 #define BRW_BLENDFACTOR_INV_CONST_ALPHA 0x18
103 #define BRW_BLENDFACTOR_INV_SRC1_COLOR 0x19
104 #define BRW_BLENDFACTOR_INV_SRC1_ALPHA 0x1A
105
106 #define BRW_BLENDFUNCTION_ADD 0
107 #define BRW_BLENDFUNCTION_SUBTRACT 1
108 #define BRW_BLENDFUNCTION_REVERSE_SUBTRACT 2
109 #define BRW_BLENDFUNCTION_MIN 3
110 #define BRW_BLENDFUNCTION_MAX 4
111
112 #define BRW_ALPHATEST_FORMAT_UNORM8 0
113 #define BRW_ALPHATEST_FORMAT_FLOAT32 1
114
115 #define BRW_CHROMAKEY_KILL_ON_ANY_MATCH 0
116 #define BRW_CHROMAKEY_REPLACE_BLACK 1
117
118 #define BRW_CLIP_API_OGL 0
119 #define BRW_CLIP_API_DX 1
120
121 #define BRW_CLIPMODE_NORMAL 0
122 #define BRW_CLIPMODE_CLIP_ALL 1
123 #define BRW_CLIPMODE_CLIP_NON_REJECTED 2
124 #define BRW_CLIPMODE_REJECT_ALL 3
125 #define BRW_CLIPMODE_ACCEPT_ALL 4
126 #define BRW_CLIPMODE_KERNEL_CLIP 5
127
128 #define BRW_CLIP_NDCSPACE 0
129 #define BRW_CLIP_SCREENSPACE 1
130
131 #define BRW_COMPAREFUNCTION_ALWAYS 0
132 #define BRW_COMPAREFUNCTION_NEVER 1
133 #define BRW_COMPAREFUNCTION_LESS 2
134 #define BRW_COMPAREFUNCTION_EQUAL 3
135 #define BRW_COMPAREFUNCTION_LEQUAL 4
136 #define BRW_COMPAREFUNCTION_GREATER 5
137 #define BRW_COMPAREFUNCTION_NOTEQUAL 6
138 #define BRW_COMPAREFUNCTION_GEQUAL 7
139
140 #define BRW_COVERAGE_PIXELS_HALF 0
141 #define BRW_COVERAGE_PIXELS_1 1
142 #define BRW_COVERAGE_PIXELS_2 2
143 #define BRW_COVERAGE_PIXELS_4 3
144
145 #define BRW_CULLMODE_BOTH 0
146 #define BRW_CULLMODE_NONE 1
147 #define BRW_CULLMODE_FRONT 2
148 #define BRW_CULLMODE_BACK 3
149
150 #define BRW_DEFAULTCOLOR_R8G8B8A8_UNORM 0
151 #define BRW_DEFAULTCOLOR_R32G32B32A32_FLOAT 1
152
153 #define BRW_DEPTHFORMAT_D32_FLOAT_S8X24_UINT 0
154 #define BRW_DEPTHFORMAT_D32_FLOAT 1
155 #define BRW_DEPTHFORMAT_D24_UNORM_S8_UINT 2
156 #define BRW_DEPTHFORMAT_D24_UNORM_X8_UINT 3 /* GEN5 */
157 #define BRW_DEPTHFORMAT_D16_UNORM 5
158
159 #define BRW_FLOATING_POINT_IEEE_754 0
160 #define BRW_FLOATING_POINT_NON_IEEE_754 1
161
162 #define BRW_FRONTWINDING_CW 0
163 #define BRW_FRONTWINDING_CCW 1
164
165 #define BRW_SPRITE_POINT_ENABLE 16
166
167 #define BRW_INDEX_BYTE 0
168 #define BRW_INDEX_WORD 1
169 #define BRW_INDEX_DWORD 2
170
171 #define BRW_LOGICOPFUNCTION_CLEAR 0
172 #define BRW_LOGICOPFUNCTION_NOR 1
173 #define BRW_LOGICOPFUNCTION_AND_INVERTED 2
174 #define BRW_LOGICOPFUNCTION_COPY_INVERTED 3
175 #define BRW_LOGICOPFUNCTION_AND_REVERSE 4
176 #define BRW_LOGICOPFUNCTION_INVERT 5
177 #define BRW_LOGICOPFUNCTION_XOR 6
178 #define BRW_LOGICOPFUNCTION_NAND 7
179 #define BRW_LOGICOPFUNCTION_AND 8
180 #define BRW_LOGICOPFUNCTION_EQUIV 9
181 #define BRW_LOGICOPFUNCTION_NOOP 10
182 #define BRW_LOGICOPFUNCTION_OR_INVERTED 11
183 #define BRW_LOGICOPFUNCTION_COPY 12
184 #define BRW_LOGICOPFUNCTION_OR_REVERSE 13
185 #define BRW_LOGICOPFUNCTION_OR 14
186 #define BRW_LOGICOPFUNCTION_SET 15
187
188 #define BRW_MAPFILTER_NEAREST 0x0
189 #define BRW_MAPFILTER_LINEAR 0x1
190 #define BRW_MAPFILTER_ANISOTROPIC 0x2
191
192 #define BRW_MIPFILTER_NONE 0
193 #define BRW_MIPFILTER_NEAREST 1
194 #define BRW_MIPFILTER_LINEAR 3
195
196 #define BRW_POLYGON_FRONT_FACING 0
197 #define BRW_POLYGON_BACK_FACING 1
198
199 #define BRW_PREFILTER_ALWAYS 0x0
200 #define BRW_PREFILTER_NEVER 0x1
201 #define BRW_PREFILTER_LESS 0x2
202 #define BRW_PREFILTER_EQUAL 0x3
203 #define BRW_PREFILTER_LEQUAL 0x4
204 #define BRW_PREFILTER_GREATER 0x5
205 #define BRW_PREFILTER_NOTEQUAL 0x6
206 #define BRW_PREFILTER_GEQUAL 0x7
207
208 #define BRW_PROVOKING_VERTEX_0 0
209 #define BRW_PROVOKING_VERTEX_1 1
210 #define BRW_PROVOKING_VERTEX_2 2
211
212 #define BRW_RASTRULE_UPPER_LEFT 0
213 #define BRW_RASTRULE_UPPER_RIGHT 1
214 /* These are listed as "Reserved, but not seen as useful"
215 * in Intel documentation (page 212, "Point Rasterization Rule",
216 * section 7.4 "SF Pipeline State Summary", of document
217 * "IntelĀ® 965 Express Chipset Family and IntelĀ® G35 Express
218 * Chipset Graphics Controller Programmer's Reference Manual,
219 * Volume 2: 3D/Media", Revision 1.0b as of January 2008,
220 * available at
221 * http://intellinuxgraphics.org/documentation.html
222 * at the time of this writing).
223 *
224 * These appear to be supported on at least some
225 * i965-family devices, and the BRW_RASTRULE_LOWER_RIGHT
226 * is useful when using OpenGL to render to a FBO
227 * (which has the pixel coordinate Y orientation inverted
228 * with respect to the normal OpenGL pixel coordinate system).
229 */
230 #define BRW_RASTRULE_LOWER_LEFT 2
231 #define BRW_RASTRULE_LOWER_RIGHT 3
232
233 #define BRW_RENDERTARGET_CLAMPRANGE_UNORM 0
234 #define BRW_RENDERTARGET_CLAMPRANGE_SNORM 1
235 #define BRW_RENDERTARGET_CLAMPRANGE_FORMAT 2
236
237 #define BRW_STENCILOP_KEEP 0
238 #define BRW_STENCILOP_ZERO 1
239 #define BRW_STENCILOP_REPLACE 2
240 #define BRW_STENCILOP_INCRSAT 3
241 #define BRW_STENCILOP_DECRSAT 4
242 #define BRW_STENCILOP_INCR 5
243 #define BRW_STENCILOP_DECR 6
244 #define BRW_STENCILOP_INVERT 7
245
246 #define BRW_SURFACE_MIPMAPLAYOUT_BELOW 0
247 #define BRW_SURFACE_MIPMAPLAYOUT_RIGHT 1
248
249 #define BRW_SURFACEFORMAT_R32G32B32A32_FLOAT 0x000
250 #define BRW_SURFACEFORMAT_R32G32B32A32_SINT 0x001
251 #define BRW_SURFACEFORMAT_R32G32B32A32_UINT 0x002
252 #define BRW_SURFACEFORMAT_R32G32B32A32_UNORM 0x003
253 #define BRW_SURFACEFORMAT_R32G32B32A32_SNORM 0x004
254 #define BRW_SURFACEFORMAT_R64G64_FLOAT 0x005
255 #define BRW_SURFACEFORMAT_R32G32B32X32_FLOAT 0x006
256 #define BRW_SURFACEFORMAT_R32G32B32A32_SSCALED 0x007
257 #define BRW_SURFACEFORMAT_R32G32B32A32_USCALED 0x008
258 #define BRW_SURFACEFORMAT_R32G32B32_FLOAT 0x040
259 #define BRW_SURFACEFORMAT_R32G32B32_SINT 0x041
260 #define BRW_SURFACEFORMAT_R32G32B32_UINT 0x042
261 #define BRW_SURFACEFORMAT_R32G32B32_UNORM 0x043
262 #define BRW_SURFACEFORMAT_R32G32B32_SNORM 0x044
263 #define BRW_SURFACEFORMAT_R32G32B32_SSCALED 0x045
264 #define BRW_SURFACEFORMAT_R32G32B32_USCALED 0x046
265 #define BRW_SURFACEFORMAT_R16G16B16A16_UNORM 0x080
266 #define BRW_SURFACEFORMAT_R16G16B16A16_SNORM 0x081
267 #define BRW_SURFACEFORMAT_R16G16B16A16_SINT 0x082
268 #define BRW_SURFACEFORMAT_R16G16B16A16_UINT 0x083
269 #define BRW_SURFACEFORMAT_R16G16B16A16_FLOAT 0x084
270 #define BRW_SURFACEFORMAT_R32G32_FLOAT 0x085
271 #define BRW_SURFACEFORMAT_R32G32_SINT 0x086
272 #define BRW_SURFACEFORMAT_R32G32_UINT 0x087
273 #define BRW_SURFACEFORMAT_R32_FLOAT_X8X24_TYPELESS 0x088
274 #define BRW_SURFACEFORMAT_X32_TYPELESS_G8X24_UINT 0x089
275 #define BRW_SURFACEFORMAT_L32A32_FLOAT 0x08A
276 #define BRW_SURFACEFORMAT_R32G32_UNORM 0x08B
277 #define BRW_SURFACEFORMAT_R32G32_SNORM 0x08C
278 #define BRW_SURFACEFORMAT_R64_FLOAT 0x08D
279 #define BRW_SURFACEFORMAT_R16G16B16X16_UNORM 0x08E
280 #define BRW_SURFACEFORMAT_R16G16B16X16_FLOAT 0x08F
281 #define BRW_SURFACEFORMAT_A32X32_FLOAT 0x090
282 #define BRW_SURFACEFORMAT_L32X32_FLOAT 0x091
283 #define BRW_SURFACEFORMAT_I32X32_FLOAT 0x092
284 #define BRW_SURFACEFORMAT_R16G16B16A16_SSCALED 0x093
285 #define BRW_SURFACEFORMAT_R16G16B16A16_USCALED 0x094
286 #define BRW_SURFACEFORMAT_R32G32_SSCALED 0x095
287 #define BRW_SURFACEFORMAT_R32G32_USCALED 0x096
288 #define BRW_SURFACEFORMAT_B8G8R8A8_UNORM 0x0C0
289 #define BRW_SURFACEFORMAT_B8G8R8A8_UNORM_SRGB 0x0C1
290 #define BRW_SURFACEFORMAT_R10G10B10A2_UNORM 0x0C2
291 #define BRW_SURFACEFORMAT_R10G10B10A2_UNORM_SRGB 0x0C3
292 #define BRW_SURFACEFORMAT_R10G10B10A2_UINT 0x0C4
293 #define BRW_SURFACEFORMAT_R10G10B10_SNORM_A2_UNORM 0x0C5
294 #define BRW_SURFACEFORMAT_R8G8B8A8_UNORM 0x0C7
295 #define BRW_SURFACEFORMAT_R8G8B8A8_UNORM_SRGB 0x0C8
296 #define BRW_SURFACEFORMAT_R8G8B8A8_SNORM 0x0C9
297 #define BRW_SURFACEFORMAT_R8G8B8A8_SINT 0x0CA
298 #define BRW_SURFACEFORMAT_R8G8B8A8_UINT 0x0CB
299 #define BRW_SURFACEFORMAT_R16G16_UNORM 0x0CC
300 #define BRW_SURFACEFORMAT_R16G16_SNORM 0x0CD
301 #define BRW_SURFACEFORMAT_R16G16_SINT 0x0CE
302 #define BRW_SURFACEFORMAT_R16G16_UINT 0x0CF
303 #define BRW_SURFACEFORMAT_R16G16_FLOAT 0x0D0
304 #define BRW_SURFACEFORMAT_B10G10R10A2_UNORM 0x0D1
305 #define BRW_SURFACEFORMAT_B10G10R10A2_UNORM_SRGB 0x0D2
306 #define BRW_SURFACEFORMAT_R11G11B10_FLOAT 0x0D3
307 #define BRW_SURFACEFORMAT_R32_SINT 0x0D6
308 #define BRW_SURFACEFORMAT_R32_UINT 0x0D7
309 #define BRW_SURFACEFORMAT_R32_FLOAT 0x0D8
310 #define BRW_SURFACEFORMAT_R24_UNORM_X8_TYPELESS 0x0D9
311 #define BRW_SURFACEFORMAT_X24_TYPELESS_G8_UINT 0x0DA
312 #define BRW_SURFACEFORMAT_L16A16_UNORM 0x0DF
313 #define BRW_SURFACEFORMAT_I24X8_UNORM 0x0E0
314 #define BRW_SURFACEFORMAT_L24X8_UNORM 0x0E1
315 #define BRW_SURFACEFORMAT_A24X8_UNORM 0x0E2
316 #define BRW_SURFACEFORMAT_I32_FLOAT 0x0E3
317 #define BRW_SURFACEFORMAT_L32_FLOAT 0x0E4
318 #define BRW_SURFACEFORMAT_A32_FLOAT 0x0E5
319 #define BRW_SURFACEFORMAT_B8G8R8X8_UNORM 0x0E9
320 #define BRW_SURFACEFORMAT_B8G8R8X8_UNORM_SRGB 0x0EA
321 #define BRW_SURFACEFORMAT_R8G8B8X8_UNORM 0x0EB
322 #define BRW_SURFACEFORMAT_R8G8B8X8_UNORM_SRGB 0x0EC
323 #define BRW_SURFACEFORMAT_R9G9B9E5_SHAREDEXP 0x0ED
324 #define BRW_SURFACEFORMAT_B10G10R10X2_UNORM 0x0EE
325 #define BRW_SURFACEFORMAT_L16A16_FLOAT 0x0F0
326 #define BRW_SURFACEFORMAT_R32_UNORM 0x0F1
327 #define BRW_SURFACEFORMAT_R32_SNORM 0x0F2
328 #define BRW_SURFACEFORMAT_R10G10B10X2_USCALED 0x0F3
329 #define BRW_SURFACEFORMAT_R8G8B8A8_SSCALED 0x0F4
330 #define BRW_SURFACEFORMAT_R8G8B8A8_USCALED 0x0F5
331 #define BRW_SURFACEFORMAT_R16G16_SSCALED 0x0F6
332 #define BRW_SURFACEFORMAT_R16G16_USCALED 0x0F7
333 #define BRW_SURFACEFORMAT_R32_SSCALED 0x0F8
334 #define BRW_SURFACEFORMAT_R32_USCALED 0x0F9
335 #define BRW_SURFACEFORMAT_B5G6R5_UNORM 0x100
336 #define BRW_SURFACEFORMAT_B5G6R5_UNORM_SRGB 0x101
337 #define BRW_SURFACEFORMAT_B5G5R5A1_UNORM 0x102
338 #define BRW_SURFACEFORMAT_B5G5R5A1_UNORM_SRGB 0x103
339 #define BRW_SURFACEFORMAT_B4G4R4A4_UNORM 0x104
340 #define BRW_SURFACEFORMAT_B4G4R4A4_UNORM_SRGB 0x105
341 #define BRW_SURFACEFORMAT_R8G8_UNORM 0x106
342 #define BRW_SURFACEFORMAT_R8G8_SNORM 0x107
343 #define BRW_SURFACEFORMAT_R8G8_SINT 0x108
344 #define BRW_SURFACEFORMAT_R8G8_UINT 0x109
345 #define BRW_SURFACEFORMAT_R16_UNORM 0x10A
346 #define BRW_SURFACEFORMAT_R16_SNORM 0x10B
347 #define BRW_SURFACEFORMAT_R16_SINT 0x10C
348 #define BRW_SURFACEFORMAT_R16_UINT 0x10D
349 #define BRW_SURFACEFORMAT_R16_FLOAT 0x10E
350 #define BRW_SURFACEFORMAT_I16_UNORM 0x111
351 #define BRW_SURFACEFORMAT_L16_UNORM 0x112
352 #define BRW_SURFACEFORMAT_A16_UNORM 0x113
353 #define BRW_SURFACEFORMAT_L8A8_UNORM 0x114
354 #define BRW_SURFACEFORMAT_I16_FLOAT 0x115
355 #define BRW_SURFACEFORMAT_L16_FLOAT 0x116
356 #define BRW_SURFACEFORMAT_A16_FLOAT 0x117
357 #define BRW_SURFACEFORMAT_L8A8_UNORM_SRGB 0x118
358 #define BRW_SURFACEFORMAT_R5G5_SNORM_B6_UNORM 0x119
359 #define BRW_SURFACEFORMAT_B5G5R5X1_UNORM 0x11A
360 #define BRW_SURFACEFORMAT_B5G5R5X1_UNORM_SRGB 0x11B
361 #define BRW_SURFACEFORMAT_R8G8_SSCALED 0x11C
362 #define BRW_SURFACEFORMAT_R8G8_USCALED 0x11D
363 #define BRW_SURFACEFORMAT_R16_SSCALED 0x11E
364 #define BRW_SURFACEFORMAT_R16_USCALED 0x11F
365 #define BRW_SURFACEFORMAT_R8_UNORM 0x140
366 #define BRW_SURFACEFORMAT_R8_SNORM 0x141
367 #define BRW_SURFACEFORMAT_R8_SINT 0x142
368 #define BRW_SURFACEFORMAT_R8_UINT 0x143
369 #define BRW_SURFACEFORMAT_A8_UNORM 0x144
370 #define BRW_SURFACEFORMAT_I8_UNORM 0x145
371 #define BRW_SURFACEFORMAT_L8_UNORM 0x146
372 #define BRW_SURFACEFORMAT_P4A4_UNORM 0x147
373 #define BRW_SURFACEFORMAT_A4P4_UNORM 0x148
374 #define BRW_SURFACEFORMAT_R8_SSCALED 0x149
375 #define BRW_SURFACEFORMAT_R8_USCALED 0x14A
376 #define BRW_SURFACEFORMAT_L8_UNORM_SRGB 0x14C
377 #define BRW_SURFACEFORMAT_DXT1_RGB_SRGB 0x180
378 #define BRW_SURFACEFORMAT_R1_UINT 0x181
379 #define BRW_SURFACEFORMAT_YCRCB_NORMAL 0x182
380 #define BRW_SURFACEFORMAT_YCRCB_SWAPUVY 0x183
381 #define BRW_SURFACEFORMAT_BC1_UNORM 0x186
382 #define BRW_SURFACEFORMAT_BC2_UNORM 0x187
383 #define BRW_SURFACEFORMAT_BC3_UNORM 0x188
384 #define BRW_SURFACEFORMAT_BC4_UNORM 0x189
385 #define BRW_SURFACEFORMAT_BC5_UNORM 0x18A
386 #define BRW_SURFACEFORMAT_BC1_UNORM_SRGB 0x18B
387 #define BRW_SURFACEFORMAT_BC2_UNORM_SRGB 0x18C
388 #define BRW_SURFACEFORMAT_BC3_UNORM_SRGB 0x18D
389 #define BRW_SURFACEFORMAT_MONO8 0x18E
390 #define BRW_SURFACEFORMAT_YCRCB_SWAPUV 0x18F
391 #define BRW_SURFACEFORMAT_YCRCB_SWAPY 0x190
392 #define BRW_SURFACEFORMAT_DXT1_RGB 0x191
393 #define BRW_SURFACEFORMAT_FXT1 0x192
394 #define BRW_SURFACEFORMAT_R8G8B8_UNORM 0x193
395 #define BRW_SURFACEFORMAT_R8G8B8_SNORM 0x194
396 #define BRW_SURFACEFORMAT_R8G8B8_SSCALED 0x195
397 #define BRW_SURFACEFORMAT_R8G8B8_USCALED 0x196
398 #define BRW_SURFACEFORMAT_R64G64B64A64_FLOAT 0x197
399 #define BRW_SURFACEFORMAT_R64G64B64_FLOAT 0x198
400 #define BRW_SURFACEFORMAT_BC4_SNORM 0x199
401 #define BRW_SURFACEFORMAT_BC5_SNORM 0x19A
402 #define BRW_SURFACEFORMAT_R16G16B16_UNORM 0x19C
403 #define BRW_SURFACEFORMAT_R16G16B16_SNORM 0x19D
404 #define BRW_SURFACEFORMAT_R16G16B16_SSCALED 0x19E
405 #define BRW_SURFACEFORMAT_R16G16B16_USCALED 0x19F
406
407 #define BRW_SURFACERETURNFORMAT_FLOAT32 0
408 #define BRW_SURFACERETURNFORMAT_S1 1
409
410 #define BRW_SURFACE_1D 0
411 #define BRW_SURFACE_2D 1
412 #define BRW_SURFACE_3D 2
413 #define BRW_SURFACE_CUBE 3
414 #define BRW_SURFACE_BUFFER 4
415 #define BRW_SURFACE_NULL 7
416
417 #define BRW_TEXCOORDMODE_WRAP 0
418 #define BRW_TEXCOORDMODE_MIRROR 1
419 #define BRW_TEXCOORDMODE_CLAMP 2
420 #define BRW_TEXCOORDMODE_CUBE 3
421 #define BRW_TEXCOORDMODE_CLAMP_BORDER 4
422 #define BRW_TEXCOORDMODE_MIRROR_ONCE 5
423
424 #define BRW_THREAD_PRIORITY_NORMAL 0
425 #define BRW_THREAD_PRIORITY_HIGH 1
426
427 #define BRW_TILEWALK_XMAJOR 0
428 #define BRW_TILEWALK_YMAJOR 1
429
430 #define BRW_VERTEX_SUBPIXEL_PRECISION_8BITS 0
431 #define BRW_VERTEX_SUBPIXEL_PRECISION_4BITS 1
432
433 /* Execution Unit (EU) defines
434 */
435
436 #define BRW_ALIGN_1 0
437 #define BRW_ALIGN_16 1
438
439 #define BRW_ADDRESS_DIRECT 0
440 #define BRW_ADDRESS_REGISTER_INDIRECT_REGISTER 1
441
442 #define BRW_CHANNEL_X 0
443 #define BRW_CHANNEL_Y 1
444 #define BRW_CHANNEL_Z 2
445 #define BRW_CHANNEL_W 3
446
447 #define BRW_COMPRESSION_NONE 0
448 #define BRW_COMPRESSION_2NDHALF 1
449 #define BRW_COMPRESSION_COMPRESSED 2
450
451 #define GEN6_COMPRESSION_1Q 0
452 #define GEN6_COMPRESSION_2Q 1
453 #define GEN6_COMPRESSION_3Q 2
454 #define GEN6_COMPRESSION_4Q 3
455 #define GEN6_COMPRESSION_1H 0
456 #define GEN6_COMPRESSION_2H 2
457
458 #define BRW_CONDITIONAL_NONE 0
459 #define BRW_CONDITIONAL_Z 1
460 #define BRW_CONDITIONAL_NZ 2
461 #define BRW_CONDITIONAL_EQ 1 /* Z */
462 #define BRW_CONDITIONAL_NEQ 2 /* NZ */
463 #define BRW_CONDITIONAL_G 3
464 #define BRW_CONDITIONAL_GE 4
465 #define BRW_CONDITIONAL_L 5
466 #define BRW_CONDITIONAL_LE 6
467 #define BRW_CONDITIONAL_R 7
468 #define BRW_CONDITIONAL_O 8
469 #define BRW_CONDITIONAL_U 9
470
471 #define BRW_DEBUG_NONE 0
472 #define BRW_DEBUG_BREAKPOINT 1
473
474 #define BRW_DEPENDENCY_NORMAL 0
475 #define BRW_DEPENDENCY_NOTCLEARED 1
476 #define BRW_DEPENDENCY_NOTCHECKED 2
477 #define BRW_DEPENDENCY_DISABLE 3
478
479 #define BRW_EXECUTE_1 0
480 #define BRW_EXECUTE_2 1
481 #define BRW_EXECUTE_4 2
482 #define BRW_EXECUTE_8 3
483 #define BRW_EXECUTE_16 4
484 #define BRW_EXECUTE_32 5
485
486 #define BRW_HORIZONTAL_STRIDE_0 0
487 #define BRW_HORIZONTAL_STRIDE_1 1
488 #define BRW_HORIZONTAL_STRIDE_2 2
489 #define BRW_HORIZONTAL_STRIDE_4 3
490
491 #define BRW_INSTRUCTION_NORMAL 0
492 #define BRW_INSTRUCTION_SATURATE 1
493
494 #define BRW_MASK_ENABLE 0
495 #define BRW_MASK_DISABLE 1
496
497 /** @{
498 *
499 * Gen6 has replaced "mask enable/disable" with WECtrl, which is
500 * effectively the same but much simpler to think about. Now, there
501 * are two contributors ANDed together to whether channels are
502 * executed: The predication on the instruction, and the channel write
503 * enable.
504 */
505 /**
506 * This is the default value. It means that a channel's write enable is set
507 * if the per-channel IP is pointing at this instruction.
508 */
509 #define BRW_WE_NORMAL 0
510 /**
511 * This is used like BRW_MASK_DISABLE, and causes all channels to have
512 * their write enable set. Note that predication still contributes to
513 * whether the channel actually gets written.
514 */
515 #define BRW_WE_ALL 1
516 /** @} */
517
518 #define BRW_OPCODE_MOV 1
519 #define BRW_OPCODE_SEL 2
520 #define BRW_OPCODE_NOT 4
521 #define BRW_OPCODE_AND 5
522 #define BRW_OPCODE_OR 6
523 #define BRW_OPCODE_XOR 7
524 #define BRW_OPCODE_SHR 8
525 #define BRW_OPCODE_SHL 9
526 #define BRW_OPCODE_RSR 10
527 #define BRW_OPCODE_RSL 11
528 #define BRW_OPCODE_ASR 12
529 #define BRW_OPCODE_CMP 16
530 #define BRW_OPCODE_CMPN 17
531 #define BRW_OPCODE_JMPI 32
532 #define BRW_OPCODE_IF 34
533 #define BRW_OPCODE_IFF 35
534 #define BRW_OPCODE_ELSE 36
535 #define BRW_OPCODE_ENDIF 37
536 #define BRW_OPCODE_DO 38
537 #define BRW_OPCODE_WHILE 39
538 #define BRW_OPCODE_BREAK 40
539 #define BRW_OPCODE_CONTINUE 41
540 #define BRW_OPCODE_HALT 42
541 #define BRW_OPCODE_MSAVE 44
542 #define BRW_OPCODE_MRESTORE 45
543 #define BRW_OPCODE_PUSH 46
544 #define BRW_OPCODE_POP 47
545 #define BRW_OPCODE_WAIT 48
546 #define BRW_OPCODE_SEND 49
547 #define BRW_OPCODE_SENDC 50
548 #define BRW_OPCODE_MATH 56
549 #define BRW_OPCODE_ADD 64
550 #define BRW_OPCODE_MUL 65
551 #define BRW_OPCODE_AVG 66
552 #define BRW_OPCODE_FRC 67
553 #define BRW_OPCODE_RNDU 68
554 #define BRW_OPCODE_RNDD 69
555 #define BRW_OPCODE_RNDE 70
556 #define BRW_OPCODE_RNDZ 71
557 #define BRW_OPCODE_MAC 72
558 #define BRW_OPCODE_MACH 73
559 #define BRW_OPCODE_LZD 74
560 #define BRW_OPCODE_SAD2 80
561 #define BRW_OPCODE_SADA2 81
562 #define BRW_OPCODE_DP4 84
563 #define BRW_OPCODE_DPH 85
564 #define BRW_OPCODE_DP3 86
565 #define BRW_OPCODE_DP2 87
566 #define BRW_OPCODE_DPA2 88
567 #define BRW_OPCODE_LINE 89
568 #define BRW_OPCODE_PLN 90
569 #define BRW_OPCODE_NOP 126
570
571 #define BRW_PREDICATE_NONE 0
572 #define BRW_PREDICATE_NORMAL 1
573 #define BRW_PREDICATE_ALIGN1_ANYV 2
574 #define BRW_PREDICATE_ALIGN1_ALLV 3
575 #define BRW_PREDICATE_ALIGN1_ANY2H 4
576 #define BRW_PREDICATE_ALIGN1_ALL2H 5
577 #define BRW_PREDICATE_ALIGN1_ANY4H 6
578 #define BRW_PREDICATE_ALIGN1_ALL4H 7
579 #define BRW_PREDICATE_ALIGN1_ANY8H 8
580 #define BRW_PREDICATE_ALIGN1_ALL8H 9
581 #define BRW_PREDICATE_ALIGN1_ANY16H 10
582 #define BRW_PREDICATE_ALIGN1_ALL16H 11
583 #define BRW_PREDICATE_ALIGN16_REPLICATE_X 2
584 #define BRW_PREDICATE_ALIGN16_REPLICATE_Y 3
585 #define BRW_PREDICATE_ALIGN16_REPLICATE_Z 4
586 #define BRW_PREDICATE_ALIGN16_REPLICATE_W 5
587 #define BRW_PREDICATE_ALIGN16_ANY4H 6
588 #define BRW_PREDICATE_ALIGN16_ALL4H 7
589
590 #define BRW_ARCHITECTURE_REGISTER_FILE 0
591 #define BRW_GENERAL_REGISTER_FILE 1
592 #define BRW_MESSAGE_REGISTER_FILE 2
593 #define BRW_IMMEDIATE_VALUE 3
594
595 #define BRW_REGISTER_TYPE_UD 0
596 #define BRW_REGISTER_TYPE_D 1
597 #define BRW_REGISTER_TYPE_UW 2
598 #define BRW_REGISTER_TYPE_W 3
599 #define BRW_REGISTER_TYPE_UB 4
600 #define BRW_REGISTER_TYPE_B 5
601 #define BRW_REGISTER_TYPE_VF 5 /* packed float vector, immediates only? */
602 #define BRW_REGISTER_TYPE_HF 6
603 #define BRW_REGISTER_TYPE_V 6 /* packed int vector, immediates only, uword dest only */
604 #define BRW_REGISTER_TYPE_F 7
605
606 #define BRW_ARF_NULL 0x00
607 #define BRW_ARF_ADDRESS 0x10
608 #define BRW_ARF_ACCUMULATOR 0x20
609 #define BRW_ARF_FLAG 0x30
610 #define BRW_ARF_MASK 0x40
611 #define BRW_ARF_MASK_STACK 0x50
612 #define BRW_ARF_MASK_STACK_DEPTH 0x60
613 #define BRW_ARF_STATE 0x70
614 #define BRW_ARF_CONTROL 0x80
615 #define BRW_ARF_NOTIFICATION_COUNT 0x90
616 #define BRW_ARF_IP 0xA0
617
618 #define BRW_MRF_COMPR4 (1 << 7)
619
620 #define BRW_AMASK 0
621 #define BRW_IMASK 1
622 #define BRW_LMASK 2
623 #define BRW_CMASK 3
624
625
626
627 #define BRW_THREAD_NORMAL 0
628 #define BRW_THREAD_ATOMIC 1
629 #define BRW_THREAD_SWITCH 2
630
631 #define BRW_VERTICAL_STRIDE_0 0
632 #define BRW_VERTICAL_STRIDE_1 1
633 #define BRW_VERTICAL_STRIDE_2 2
634 #define BRW_VERTICAL_STRIDE_4 3
635 #define BRW_VERTICAL_STRIDE_8 4
636 #define BRW_VERTICAL_STRIDE_16 5
637 #define BRW_VERTICAL_STRIDE_32 6
638 #define BRW_VERTICAL_STRIDE_64 7
639 #define BRW_VERTICAL_STRIDE_128 8
640 #define BRW_VERTICAL_STRIDE_256 9
641 #define BRW_VERTICAL_STRIDE_ONE_DIMENSIONAL 0xF
642
643 #define BRW_WIDTH_1 0
644 #define BRW_WIDTH_2 1
645 #define BRW_WIDTH_4 2
646 #define BRW_WIDTH_8 3
647 #define BRW_WIDTH_16 4
648
649 #define BRW_STATELESS_BUFFER_BOUNDARY_1K 0
650 #define BRW_STATELESS_BUFFER_BOUNDARY_2K 1
651 #define BRW_STATELESS_BUFFER_BOUNDARY_4K 2
652 #define BRW_STATELESS_BUFFER_BOUNDARY_8K 3
653 #define BRW_STATELESS_BUFFER_BOUNDARY_16K 4
654 #define BRW_STATELESS_BUFFER_BOUNDARY_32K 5
655 #define BRW_STATELESS_BUFFER_BOUNDARY_64K 6
656 #define BRW_STATELESS_BUFFER_BOUNDARY_128K 7
657 #define BRW_STATELESS_BUFFER_BOUNDARY_256K 8
658 #define BRW_STATELESS_BUFFER_BOUNDARY_512K 9
659 #define BRW_STATELESS_BUFFER_BOUNDARY_1M 10
660 #define BRW_STATELESS_BUFFER_BOUNDARY_2M 11
661
662 #define BRW_POLYGON_FACING_FRONT 0
663 #define BRW_POLYGON_FACING_BACK 1
664
665 #define BRW_MESSAGE_TARGET_NULL 0
666 #define BRW_MESSAGE_TARGET_MATH 1 /* reserved on GEN6 */
667 #define BRW_MESSAGE_TARGET_SAMPLER 2
668 #define BRW_MESSAGE_TARGET_GATEWAY 3
669 #define BRW_MESSAGE_TARGET_DATAPORT_READ 4
670 #define BRW_MESSAGE_TARGET_DATAPORT_WRITE 5
671 #define BRW_MESSAGE_TARGET_URB 6
672 #define BRW_MESSAGE_TARGET_THREAD_SPAWNER 7
673
674 #define GEN6_MESSAGE_TARGET_DP_SAMPLER_CACHE 4
675 #define GEN6_MESSAGE_TARGET_DP_RENDER_CACHE 5
676 #define GEN6_MESSAGE_TARGET_DP_CONST_CACHE 9
677
678 #define BRW_SAMPLER_RETURN_FORMAT_FLOAT32 0
679 #define BRW_SAMPLER_RETURN_FORMAT_UINT32 2
680 #define BRW_SAMPLER_RETURN_FORMAT_SINT32 3
681
682 #define BRW_SAMPLER_MESSAGE_SIMD8_SAMPLE 0
683 #define BRW_SAMPLER_MESSAGE_SIMD16_SAMPLE 0
684 #define BRW_SAMPLER_MESSAGE_SIMD16_SAMPLE_BIAS 0
685 #define BRW_SAMPLER_MESSAGE_SIMD8_KILLPIX 1
686 #define BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD 1
687 #define BRW_SAMPLER_MESSAGE_SIMD16_SAMPLE_LOD 1
688 #define BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_GRADIENTS 2
689 #define BRW_SAMPLER_MESSAGE_SIMD8_SAMPLE_GRADIENTS 2
690 #define BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_COMPARE 0
691 #define BRW_SAMPLER_MESSAGE_SIMD16_SAMPLE_COMPARE 2
692 #define BRW_SAMPLER_MESSAGE_SIMD8_SAMPLE_BIAS_COMPARE 0
693 #define BRW_SAMPLER_MESSAGE_SIMD8_SAMPLE_LOD_COMPARE 1
694 #define BRW_SAMPLER_MESSAGE_SIMD4X2_RESINFO 2
695 #define BRW_SAMPLER_MESSAGE_SIMD8_RESINFO 2
696 #define BRW_SAMPLER_MESSAGE_SIMD16_RESINFO 2
697 #define BRW_SAMPLER_MESSAGE_SIMD4X2_LD 3
698 #define BRW_SAMPLER_MESSAGE_SIMD8_LD 3
699 #define BRW_SAMPLER_MESSAGE_SIMD16_LD 3
700
701 #define GEN5_SAMPLER_MESSAGE_SAMPLE 0
702 #define GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS 1
703 #define GEN5_SAMPLER_MESSAGE_SAMPLE_LOD 2
704 #define GEN5_SAMPLER_MESSAGE_SAMPLE_COMPARE 3
705 #define GEN5_SAMPLER_MESSAGE_SAMPLE_DERIVS 4
706 #define GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS_COMPARE 5
707 #define GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE 6
708
709 /* for GEN5 only */
710 #define BRW_SAMPLER_SIMD_MODE_SIMD4X2 0
711 #define BRW_SAMPLER_SIMD_MODE_SIMD8 1
712 #define BRW_SAMPLER_SIMD_MODE_SIMD16 2
713 #define BRW_SAMPLER_SIMD_MODE_SIMD32_64 3
714
715 #define BRW_DATAPORT_OWORD_BLOCK_1_OWORDLOW 0
716 #define BRW_DATAPORT_OWORD_BLOCK_1_OWORDHIGH 1
717 #define BRW_DATAPORT_OWORD_BLOCK_2_OWORDS 2
718 #define BRW_DATAPORT_OWORD_BLOCK_4_OWORDS 3
719 #define BRW_DATAPORT_OWORD_BLOCK_8_OWORDS 4
720
721 #define BRW_DATAPORT_OWORD_DUAL_BLOCK_1OWORD 0
722 #define BRW_DATAPORT_OWORD_DUAL_BLOCK_4OWORDS 2
723
724 #define BRW_DATAPORT_DWORD_SCATTERED_BLOCK_8DWORDS 2
725 #define BRW_DATAPORT_DWORD_SCATTERED_BLOCK_16DWORDS 3
726
727 /* This one stays the same across generations. */
728 #define BRW_DATAPORT_READ_MESSAGE_OWORD_BLOCK_READ 0
729 /* GEN4 */
730 #define BRW_DATAPORT_READ_MESSAGE_OWORD_DUAL_BLOCK_READ 1
731 #define BRW_DATAPORT_READ_MESSAGE_MEDIA_BLOCK_READ 2
732 #define BRW_DATAPORT_READ_MESSAGE_DWORD_SCATTERED_READ 3
733 /* G45, GEN5 */
734 #define G45_DATAPORT_READ_MESSAGE_RENDER_UNORM_READ 1
735 #define G45_DATAPORT_READ_MESSAGE_OWORD_DUAL_BLOCK_READ 2
736 #define G45_DATAPORT_READ_MESSAGE_AVC_LOOP_FILTER_READ 3
737 #define G45_DATAPORT_READ_MESSAGE_MEDIA_BLOCK_READ 4
738 #define G45_DATAPORT_READ_MESSAGE_DWORD_SCATTERED_READ 6
739 /* GEN6 */
740 #define GEN6_DATAPORT_READ_MESSAGE_RENDER_UNORM_READ 1
741 #define GEN6_DATAPORT_READ_MESSAGE_OWORD_DUAL_BLOCK_READ 2
742 #define GEN6_DATAPORT_READ_MESSAGE_MEDIA_BLOCK_READ 4
743 #define GEN6_DATAPORT_READ_MESSAGE_OWORD_UNALIGN_BLOCK_READ 5
744 #define GEN6_DATAPORT_READ_MESSAGE_DWORD_SCATTERED_READ 6
745
746 #define BRW_DATAPORT_READ_TARGET_DATA_CACHE 0
747 #define BRW_DATAPORT_READ_TARGET_RENDER_CACHE 1
748 #define BRW_DATAPORT_READ_TARGET_SAMPLER_CACHE 2
749
750 #define BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD16_SINGLE_SOURCE 0
751 #define BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD16_SINGLE_SOURCE_REPLICATED 1
752 #define BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD8_DUAL_SOURCE_SUBSPAN01 2
753 #define BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD8_DUAL_SOURCE_SUBSPAN23 3
754 #define BRW_DATAPORT_RENDER_TARGET_WRITE_SIMD8_SINGLE_SOURCE_SUBSPAN01 4
755
756 #define BRW_DATAPORT_WRITE_MESSAGE_OWORD_BLOCK_WRITE 0
757 #define BRW_DATAPORT_WRITE_MESSAGE_OWORD_DUAL_BLOCK_WRITE 1
758 #define BRW_DATAPORT_WRITE_MESSAGE_MEDIA_BLOCK_WRITE 2
759 #define BRW_DATAPORT_WRITE_MESSAGE_DWORD_SCATTERED_WRITE 3
760 #define BRW_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE 4
761 #define BRW_DATAPORT_WRITE_MESSAGE_STREAMED_VERTEX_BUFFER_WRITE 5
762 #define BRW_DATAPORT_WRITE_MESSAGE_FLUSH_RENDER_CACHE 7
763
764 /* GEN6 */
765 #define GEN6_DATAPORT_WRITE_MESSAGE_DWORD_ATOMIC_WRITE 7
766 #define GEN6_DATAPORT_WRITE_MESSAGE_OWORD_BLOCK_WRITE 8
767 #define GEN6_DATAPORT_WRITE_MESSAGE_OWORD_DUAL_BLOCK_WRITE 9
768 #define GEN6_DATAPORT_WRITE_MESSAGE_MEDIA_BLOCK_WRITE 10
769 #define GEN6_DATAPORT_WRITE_MESSAGE_DWORD_SCATTERED_WRITE 11
770 #define GEN6_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE 12
771 #define GEN6_DATAPORT_WRITE_MESSAGE_STREAMED_VB_WRITE 13
772 #define GEN6_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_UNORM_WRITE 14
773
774 #define BRW_MATH_FUNCTION_INV 1
775 #define BRW_MATH_FUNCTION_LOG 2
776 #define BRW_MATH_FUNCTION_EXP 3
777 #define BRW_MATH_FUNCTION_SQRT 4
778 #define BRW_MATH_FUNCTION_RSQ 5
779 #define BRW_MATH_FUNCTION_SIN 6 /* was 7 */
780 #define BRW_MATH_FUNCTION_COS 7 /* was 8 */
781 #define BRW_MATH_FUNCTION_SINCOS 8 /* was 6 */
782 #define BRW_MATH_FUNCTION_TAN 9 /* gen4 */
783 #define BRW_MATH_FUNCTION_FDIV 9 /* gen6+ */
784 #define BRW_MATH_FUNCTION_POW 10
785 #define BRW_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER 11
786 #define BRW_MATH_FUNCTION_INT_DIV_QUOTIENT 12
787 #define BRW_MATH_FUNCTION_INT_DIV_REMAINDER 13
788
789 #define BRW_MATH_INTEGER_UNSIGNED 0
790 #define BRW_MATH_INTEGER_SIGNED 1
791
792 #define BRW_MATH_PRECISION_FULL 0
793 #define BRW_MATH_PRECISION_PARTIAL 1
794
795 #define BRW_MATH_SATURATE_NONE 0
796 #define BRW_MATH_SATURATE_SATURATE 1
797
798 #define BRW_MATH_DATA_VECTOR 0
799 #define BRW_MATH_DATA_SCALAR 1
800
801 #define BRW_URB_OPCODE_WRITE 0
802
803 #define BRW_URB_SWIZZLE_NONE 0
804 #define BRW_URB_SWIZZLE_INTERLEAVE 1
805 #define BRW_URB_SWIZZLE_TRANSPOSE 2
806
807 #define BRW_SCRATCH_SPACE_SIZE_1K 0
808 #define BRW_SCRATCH_SPACE_SIZE_2K 1
809 #define BRW_SCRATCH_SPACE_SIZE_4K 2
810 #define BRW_SCRATCH_SPACE_SIZE_8K 3
811 #define BRW_SCRATCH_SPACE_SIZE_16K 4
812 #define BRW_SCRATCH_SPACE_SIZE_32K 5
813 #define BRW_SCRATCH_SPACE_SIZE_64K 6
814 #define BRW_SCRATCH_SPACE_SIZE_128K 7
815 #define BRW_SCRATCH_SPACE_SIZE_256K 8
816 #define BRW_SCRATCH_SPACE_SIZE_512K 9
817 #define BRW_SCRATCH_SPACE_SIZE_1M 10
818 #define BRW_SCRATCH_SPACE_SIZE_2M 11
819
820
821
822
823 #define CMD_URB_FENCE 0x6000
824 #define CMD_CS_URB_STATE 0x6001
825 #define CMD_CONST_BUFFER 0x6002
826
827 #define CMD_STATE_BASE_ADDRESS 0x6101
828 #define CMD_STATE_INSN_POINTER 0x6102
829 #define CMD_PIPELINE_SELECT_965 0x6104
830 #define CMD_PIPELINE_SELECT_GM45 0x6904
831
832 #define _3DSTATE_PIPELINED_POINTERS 0x7800
833 #define _3DSTATE_BINDING_TABLE_POINTERS 0x7801
834 # define GEN6_BINDING_TABLE_MODIFY_VS (1 << 8)
835 # define GEN6_BINDING_TABLE_MODIFY_GS (1 << 9)
836 # define GEN6_BINDING_TABLE_MODIFY_PS (1 << 12)
837
838 #define _3DSTATE_BINDING_TABLE_POINTERS_VS 0x7826 /* GEN7+ */
839 #define _3DSTATE_BINDING_TABLE_POINTERS_HS 0x7827 /* GEN7+ */
840 #define _3DSTATE_BINDING_TABLE_POINTERS_DS 0x7828 /* GEN7+ */
841 #define _3DSTATE_BINDING_TABLE_POINTERS_GS 0x7829 /* GEN7+ */
842 #define _3DSTATE_BINDING_TABLE_POINTERS_PS 0x782A /* GEN7+ */
843
844 #define _3DSTATE_SAMPLER_STATE_POINTERS 0x7802 /* GEN6+ */
845 # define PS_SAMPLER_STATE_CHANGE (1 << 12)
846 # define GS_SAMPLER_STATE_CHANGE (1 << 9)
847 # define VS_SAMPLER_STATE_CHANGE (1 << 8)
848 /* DW1: VS */
849 /* DW2: GS */
850 /* DW3: PS */
851
852 #define _3DSTATE_SAMPLER_STATE_POINTERS_VS 0x782B /* GEN7+ */
853 #define _3DSTATE_SAMPLER_STATE_POINTERS_GS 0x782E /* GEN7+ */
854 #define _3DSTATE_SAMPLER_STATE_POINTERS_PS 0x782F /* GEN7+ */
855
856 #define CMD_VERTEX_BUFFER 0x7808
857 # define BRW_VB0_INDEX_SHIFT 27
858 # define GEN6_VB0_INDEX_SHIFT 26
859 # define BRW_VB0_ACCESS_VERTEXDATA (0 << 26)
860 # define BRW_VB0_ACCESS_INSTANCEDATA (1 << 26)
861 # define GEN6_VB0_ACCESS_VERTEXDATA (0 << 20)
862 # define GEN6_VB0_ACCESS_INSTANCEDATA (1 << 20)
863 # define BRW_VB0_PITCH_SHIFT 0
864
865 #define CMD_VERTEX_ELEMENT 0x7809
866 # define BRW_VE0_INDEX_SHIFT 27
867 # define GEN6_VE0_INDEX_SHIFT 26
868 # define BRW_VE0_FORMAT_SHIFT 16
869 # define BRW_VE0_VALID (1 << 26)
870 # define GEN6_VE0_VALID (1 << 25)
871 # define BRW_VE0_SRC_OFFSET_SHIFT 0
872 # define BRW_VE1_COMPONENT_NOSTORE 0
873 # define BRW_VE1_COMPONENT_STORE_SRC 1
874 # define BRW_VE1_COMPONENT_STORE_0 2
875 # define BRW_VE1_COMPONENT_STORE_1_FLT 3
876 # define BRW_VE1_COMPONENT_STORE_1_INT 4
877 # define BRW_VE1_COMPONENT_STORE_VID 5
878 # define BRW_VE1_COMPONENT_STORE_IID 6
879 # define BRW_VE1_COMPONENT_STORE_PID 7
880 # define BRW_VE1_COMPONENT_0_SHIFT 28
881 # define BRW_VE1_COMPONENT_1_SHIFT 24
882 # define BRW_VE1_COMPONENT_2_SHIFT 20
883 # define BRW_VE1_COMPONENT_3_SHIFT 16
884 # define BRW_VE1_DST_OFFSET_SHIFT 0
885
886 #define CMD_INDEX_BUFFER 0x780a
887 #define CMD_VF_STATISTICS_965 0x780b
888 #define CMD_VF_STATISTICS_GM45 0x680b
889 #define _3DSTATE_CC_STATE_POINTERS 0x780e /* GEN6+ */
890 #define _3DSTATE_BLEND_STATE_POINTERS 0x7824 /* GEN7+ */
891 #define _3DSTATE_DEPTH_STENCIL_STATE_POINTERS 0x7825 /* GEN7+ */
892
893 #define _3DSTATE_URB 0x7805 /* GEN6 */
894 # define GEN6_URB_VS_SIZE_SHIFT 16
895 # define GEN6_URB_VS_ENTRIES_SHIFT 0
896 # define GEN6_URB_GS_ENTRIES_SHIFT 8
897 # define GEN6_URB_GS_SIZE_SHIFT 0
898
899 #define _3DSTATE_URB_VS 0x7830 /* GEN7+ */
900 #define _3DSTATE_URB_HS 0x7831 /* GEN7+ */
901 #define _3DSTATE_URB_DS 0x7832 /* GEN7+ */
902 #define _3DSTATE_URB_GS 0x7833 /* GEN7+ */
903 # define GEN7_URB_ENTRY_SIZE_SHIFT 16
904 # define GEN7_URB_STARTING_ADDRESS_SHIFT 25
905
906 #define _3DSTATE_PUSH_CONSTANT_ALLOC_VS 0x7912 /* GEN7+ */
907 #define _3DSTATE_PUSH_CONSTANT_ALLOC_PS 0x7916 /* GEN7+ */
908 # define GEN7_PUSH_CONSTANT_BUFFER_OFFSET_SHIFT 16
909
910 #define _3DSTATE_VIEWPORT_STATE_POINTERS 0x780d /* GEN6+ */
911 # define GEN6_CC_VIEWPORT_MODIFY (1 << 12)
912 # define GEN6_SF_VIEWPORT_MODIFY (1 << 11)
913 # define GEN6_CLIP_VIEWPORT_MODIFY (1 << 10)
914
915 #define _3DSTATE_VIEWPORT_STATE_POINTERS_CC 0x7823 /* GEN7+ */
916 #define _3DSTATE_VIEWPORT_STATE_POINTERS_SF_CL 0x7821 /* GEN7+ */
917
918 #define _3DSTATE_SCISSOR_STATE_POINTERS 0x780f /* GEN6+ */
919
920 #define _3DSTATE_VS 0x7810 /* GEN6+ */
921 /* DW2 */
922 # define GEN6_VS_SPF_MODE (1 << 31)
923 # define GEN6_VS_VECTOR_MASK_ENABLE (1 << 30)
924 # define GEN6_VS_SAMPLER_COUNT_SHIFT 27
925 # define GEN6_VS_BINDING_TABLE_ENTRY_COUNT_SHIFT 18
926 # define GEN6_VS_FLOATING_POINT_MODE_IEEE_754 (0 << 16)
927 # define GEN6_VS_FLOATING_POINT_MODE_ALT (1 << 16)
928 /* DW4 */
929 # define GEN6_VS_DISPATCH_START_GRF_SHIFT 20
930 # define GEN6_VS_URB_READ_LENGTH_SHIFT 11
931 # define GEN6_VS_URB_ENTRY_READ_OFFSET_SHIFT 4
932 /* DW5 */
933 # define GEN6_VS_MAX_THREADS_SHIFT 25
934 # define GEN6_VS_STATISTICS_ENABLE (1 << 10)
935 # define GEN6_VS_CACHE_DISABLE (1 << 1)
936 # define GEN6_VS_ENABLE (1 << 0)
937
938 #define _3DSTATE_GS 0x7811 /* GEN6+ */
939 /* DW2 */
940 # define GEN6_GS_SPF_MODE (1 << 31)
941 # define GEN6_GS_VECTOR_MASK_ENABLE (1 << 30)
942 # define GEN6_GS_SAMPLER_COUNT_SHIFT 27
943 # define GEN6_GS_BINDING_TABLE_ENTRY_COUNT_SHIFT 18
944 /* DW4 */
945 # define GEN6_GS_URB_READ_LENGTH_SHIFT 11
946 # define GEN7_GS_INCLUDE_VERTEX_HANDLES (1 << 10)
947 # define GEN6_GS_URB_ENTRY_READ_OFFSET_SHIFT 4
948 # define GEN6_GS_DISPATCH_START_GRF_SHIFT 0
949 /* DW5 */
950 # define GEN6_GS_MAX_THREADS_SHIFT 25
951 # define GEN6_GS_STATISTICS_ENABLE (1 << 10)
952 # define GEN6_GS_SO_STATISTICS_ENABLE (1 << 9)
953 # define GEN6_GS_RENDERING_ENABLE (1 << 8)
954 # define GEN7_GS_ENABLE (1 << 0)
955 /* DW6 */
956 # define GEN6_GS_ENABLE (1 << 15)
957
958 #define _3DSTATE_HS 0x781B /* GEN7+ */
959 #define _3DSTATE_TE 0x781C /* GEN7+ */
960 #define _3DSTATE_DS 0x781D /* GEN7+ */
961
962 #define _3DSTATE_CLIP 0x7812 /* GEN6+ */
963 /* DW1 */
964 # define GEN7_CLIP_WINDING_CW (0 << 20)
965 # define GEN7_CLIP_WINDING_CCW (1 << 20)
966 # define GEN7_CLIP_VERTEX_SUBPIXEL_PRECISION_8 (0 << 19)
967 # define GEN7_CLIP_VERTEX_SUBPIXEL_PRECISION_4 (1 << 19)
968 # define GEN7_CLIP_EARLY_CULL (1 << 18)
969 # define GEN7_CLIP_CULLMODE_BOTH (0 << 16)
970 # define GEN7_CLIP_CULLMODE_NONE (1 << 16)
971 # define GEN7_CLIP_CULLMODE_FRONT (2 << 16)
972 # define GEN7_CLIP_CULLMODE_BACK (3 << 16)
973 # define GEN6_CLIP_STATISTICS_ENABLE (1 << 10)
974 /**
975 * Just does cheap culling based on the clip distance. Bits must be
976 * disjoint with USER_CLIP_CLIP_DISTANCE bits.
977 */
978 # define GEN6_USER_CLIP_CULL_DISTANCES_SHIFT 0
979 /* DW2 */
980 # define GEN6_CLIP_ENABLE (1 << 31)
981 # define GEN6_CLIP_API_OGL (0 << 30)
982 # define GEN6_CLIP_API_D3D (1 << 30)
983 # define GEN6_CLIP_XY_TEST (1 << 28)
984 # define GEN6_CLIP_Z_TEST (1 << 27)
985 # define GEN6_CLIP_GB_TEST (1 << 26)
986 /** 8-bit field of which user clip distances to clip aganist. */
987 # define GEN6_USER_CLIP_CLIP_DISTANCES_SHIFT 16
988 # define GEN6_CLIP_MODE_NORMAL (0 << 13)
989 # define GEN6_CLIP_MODE_REJECT_ALL (3 << 13)
990 # define GEN6_CLIP_MODE_ACCEPT_ALL (4 << 13)
991 # define GEN6_CLIP_PERSPECTIVE_DIVIDE_DISABLE (1 << 9)
992 # define GEN6_CLIP_BARYCENTRIC_ENABLE (1 << 8)
993 # define GEN6_CLIP_TRI_PROVOKE_SHIFT 4
994 # define GEN6_CLIP_LINE_PROVOKE_SHIFT 2
995 # define GEN6_CLIP_TRIFAN_PROVOKE_SHIFT 0
996 /* DW3 */
997 # define GEN6_CLIP_MIN_POINT_WIDTH_SHIFT 17
998 # define GEN6_CLIP_MAX_POINT_WIDTH_SHIFT 6
999 # define GEN6_CLIP_FORCE_ZERO_RTAINDEX (1 << 5)
1000
1001 #define _3DSTATE_SF 0x7813 /* GEN6+ */
1002 /* DW1 (for gen6) */
1003 # define GEN6_SF_NUM_OUTPUTS_SHIFT 22
1004 # define GEN6_SF_SWIZZLE_ENABLE (1 << 21)
1005 # define GEN6_SF_POINT_SPRITE_LOWERLEFT (1 << 20)
1006 # define GEN6_SF_URB_ENTRY_READ_LENGTH_SHIFT 11
1007 # define GEN6_SF_URB_ENTRY_READ_OFFSET_SHIFT 4
1008 /* DW2 */
1009 # define GEN6_SF_LEGACY_GLOBAL_DEPTH_BIAS (1 << 11)
1010 # define GEN6_SF_STATISTICS_ENABLE (1 << 10)
1011 # define GEN6_SF_GLOBAL_DEPTH_OFFSET_SOLID (1 << 9)
1012 # define GEN6_SF_GLOBAL_DEPTH_OFFSET_WIREFRAME (1 << 8)
1013 # define GEN6_SF_GLOBAL_DEPTH_OFFSET_POINT (1 << 7)
1014 # define GEN6_SF_FRONT_SOLID (0 << 5)
1015 # define GEN6_SF_FRONT_WIREFRAME (1 << 5)
1016 # define GEN6_SF_FRONT_POINT (2 << 5)
1017 # define GEN6_SF_BACK_SOLID (0 << 3)
1018 # define GEN6_SF_BACK_WIREFRAME (1 << 3)
1019 # define GEN6_SF_BACK_POINT (2 << 3)
1020 # define GEN6_SF_VIEWPORT_TRANSFORM_ENABLE (1 << 1)
1021 # define GEN6_SF_WINDING_CCW (1 << 0)
1022 /* DW3 */
1023 # define GEN6_SF_LINE_AA_ENABLE (1 << 31)
1024 # define GEN6_SF_CULL_BOTH (0 << 29)
1025 # define GEN6_SF_CULL_NONE (1 << 29)
1026 # define GEN6_SF_CULL_FRONT (2 << 29)
1027 # define GEN6_SF_CULL_BACK (3 << 29)
1028 # define GEN6_SF_LINE_WIDTH_SHIFT 18 /* U3.7 */
1029 # define GEN6_SF_LINE_END_CAP_WIDTH_0_5 (0 << 16)
1030 # define GEN6_SF_LINE_END_CAP_WIDTH_1_0 (1 << 16)
1031 # define GEN6_SF_LINE_END_CAP_WIDTH_2_0 (2 << 16)
1032 # define GEN6_SF_LINE_END_CAP_WIDTH_4_0 (3 << 16)
1033 # define GEN6_SF_SCISSOR_ENABLE (1 << 11)
1034 # define GEN6_SF_MSRAST_OFF_PIXEL (0 << 8)
1035 # define GEN6_SF_MSRAST_OFF_PATTERN (1 << 8)
1036 # define GEN6_SF_MSRAST_ON_PIXEL (2 << 8)
1037 # define GEN6_SF_MSRAST_ON_PATTERN (3 << 8)
1038 /* DW4 */
1039 # define GEN6_SF_TRI_PROVOKE_SHIFT 29
1040 # define GEN6_SF_LINE_PROVOKE_SHIFT 27
1041 # define GEN6_SF_TRIFAN_PROVOKE_SHIFT 25
1042 # define GEN6_SF_LINE_AA_MODE_MANHATTAN (0 << 14)
1043 # define GEN6_SF_LINE_AA_MODE_TRUE (1 << 14)
1044 # define GEN6_SF_VERTEX_SUBPIXEL_8BITS (0 << 12)
1045 # define GEN6_SF_VERTEX_SUBPIXEL_4BITS (1 << 12)
1046 # define GEN6_SF_USE_STATE_POINT_WIDTH (1 << 11)
1047 # define GEN6_SF_POINT_WIDTH_SHIFT 0 /* U8.3 */
1048 /* DW5: depth offset constant */
1049 /* DW6: depth offset scale */
1050 /* DW7: depth offset clamp */
1051 /* DW8 */
1052 # define ATTRIBUTE_1_OVERRIDE_W (1 << 31)
1053 # define ATTRIBUTE_1_OVERRIDE_Z (1 << 30)
1054 # define ATTRIBUTE_1_OVERRIDE_Y (1 << 29)
1055 # define ATTRIBUTE_1_OVERRIDE_X (1 << 28)
1056 # define ATTRIBUTE_1_CONST_SOURCE_SHIFT 25
1057 # define ATTRIBUTE_1_SWIZZLE_SHIFT 22
1058 # define ATTRIBUTE_1_SOURCE_SHIFT 16
1059 # define ATTRIBUTE_0_OVERRIDE_W (1 << 15)
1060 # define ATTRIBUTE_0_OVERRIDE_Z (1 << 14)
1061 # define ATTRIBUTE_0_OVERRIDE_Y (1 << 13)
1062 # define ATTRIBUTE_0_OVERRIDE_X (1 << 12)
1063 # define ATTRIBUTE_0_CONST_SOURCE_SHIFT 9
1064 # define ATTRIBUTE_0_SWIZZLE_SHIFT 6
1065 # define ATTRIBUTE_0_SOURCE_SHIFT 0
1066
1067 # define ATTRIBUTE_SWIZZLE_INPUTATTR 0
1068 # define ATTRIBUTE_SWIZZLE_INPUTATTR_FACING 1
1069 # define ATTRIBUTE_SWIZZLE_INPUTATTR_W 2
1070 # define ATTRIBUTE_SWIZZLE_INPUTATTR_FACING_W 3
1071 # define ATTRIBUTE_SWIZZLE_SHIFT 6
1072
1073 /* DW16: Point sprite texture coordinate enables */
1074 /* DW17: Constant interpolation enables */
1075 /* DW18: attr 0-7 wrap shortest enables */
1076 /* DW19: attr 8-16 wrap shortest enables */
1077
1078 /* On GEN7, many fields of 3DSTATE_SF were split out into a new command:
1079 * 3DSTATE_SBE. The remaining fields live in different DWords, but retain
1080 * the same bit-offset. The only new field:
1081 */
1082 /* GEN7/DW1: */
1083 # define GEN7_SF_DEPTH_BUFFER_SURFACE_FORMAT_SHIFT 12
1084
1085 #define _3DSTATE_SBE 0x781F /* GEN7+ */
1086 /* DW1 */
1087 # define GEN7_SBE_SWIZZLE_CONTROL_MODE (1 << 28)
1088 # define GEN7_SBE_NUM_OUTPUTS_SHIFT 22
1089 # define GEN7_SBE_SWIZZLE_ENABLE (1 << 21)
1090 # define GEN7_SBE_POINT_SPRITE_LOWERLEFT (1 << 20)
1091 # define GEN7_SBE_URB_ENTRY_READ_LENGTH_SHIFT 11
1092 # define GEN7_SBE_URB_ENTRY_READ_OFFSET_SHIFT 4
1093 /* DW2-9: Attribute setup (same as DW8-15 of gen6 _3DSTATE_SF) */
1094 /* DW10: Point sprite texture coordinate enables */
1095 /* DW11: Constant interpolation enables */
1096 /* DW12: attr 0-7 wrap shortest enables */
1097 /* DW13: attr 8-16 wrap shortest enables */
1098
1099 #define _3DSTATE_WM 0x7814 /* GEN6+ */
1100 /* DW1: kernel pointer */
1101 /* DW2 */
1102 # define GEN6_WM_SPF_MODE (1 << 31)
1103 # define GEN6_WM_VECTOR_MASK_ENABLE (1 << 30)
1104 # define GEN6_WM_SAMPLER_COUNT_SHIFT 27
1105 # define GEN6_WM_BINDING_TABLE_ENTRY_COUNT_SHIFT 18
1106 # define GEN6_WM_FLOATING_POINT_MODE_IEEE_754 (0 << 16)
1107 # define GEN6_WM_FLOATING_POINT_MODE_ALT (1 << 16)
1108 /* DW3: scratch space */
1109 /* DW4 */
1110 # define GEN6_WM_STATISTICS_ENABLE (1 << 31)
1111 # define GEN6_WM_DEPTH_CLEAR (1 << 30)
1112 # define GEN6_WM_DEPTH_RESOLVE (1 << 28)
1113 # define GEN6_WM_HIERARCHICAL_DEPTH_RESOLVE (1 << 27)
1114 # define GEN6_WM_DISPATCH_START_GRF_SHIFT_0 16
1115 # define GEN6_WM_DISPATCH_START_GRF_SHIFT_1 8
1116 # define GEN6_WM_DISPATCH_START_GRF_SHIFT_2 0
1117 /* DW5 */
1118 # define GEN6_WM_MAX_THREADS_SHIFT 25
1119 # define GEN6_WM_KILL_ENABLE (1 << 22)
1120 # define GEN6_WM_COMPUTED_DEPTH (1 << 21)
1121 # define GEN6_WM_USES_SOURCE_DEPTH (1 << 20)
1122 # define GEN6_WM_DISPATCH_ENABLE (1 << 19)
1123 # define GEN6_WM_LINE_END_CAP_AA_WIDTH_0_5 (0 << 16)
1124 # define GEN6_WM_LINE_END_CAP_AA_WIDTH_1_0 (1 << 16)
1125 # define GEN6_WM_LINE_END_CAP_AA_WIDTH_2_0 (2 << 16)
1126 # define GEN6_WM_LINE_END_CAP_AA_WIDTH_4_0 (3 << 16)
1127 # define GEN6_WM_LINE_AA_WIDTH_0_5 (0 << 14)
1128 # define GEN6_WM_LINE_AA_WIDTH_1_0 (1 << 14)
1129 # define GEN6_WM_LINE_AA_WIDTH_2_0 (2 << 14)
1130 # define GEN6_WM_LINE_AA_WIDTH_4_0 (3 << 14)
1131 # define GEN6_WM_POLYGON_STIPPLE_ENABLE (1 << 13)
1132 # define GEN6_WM_LINE_STIPPLE_ENABLE (1 << 11)
1133 # define GEN6_WM_OMASK_TO_RENDER_TARGET (1 << 9)
1134 # define GEN6_WM_USES_SOURCE_W (1 << 8)
1135 # define GEN6_WM_DUAL_SOURCE_BLEND_ENABLE (1 << 7)
1136 # define GEN6_WM_32_DISPATCH_ENABLE (1 << 2)
1137 # define GEN6_WM_16_DISPATCH_ENABLE (1 << 1)
1138 # define GEN6_WM_8_DISPATCH_ENABLE (1 << 0)
1139 /* DW6 */
1140 # define GEN6_WM_NUM_SF_OUTPUTS_SHIFT 20
1141 # define GEN6_WM_POSOFFSET_NONE (0 << 18)
1142 # define GEN6_WM_POSOFFSET_CENTROID (2 << 18)
1143 # define GEN6_WM_POSOFFSET_SAMPLE (3 << 18)
1144 # define GEN6_WM_POSITION_ZW_PIXEL (0 << 16)
1145 # define GEN6_WM_POSITION_ZW_CENTROID (2 << 16)
1146 # define GEN6_WM_POSITION_ZW_SAMPLE (3 << 16)
1147 # define GEN6_WM_NONPERSPECTIVE_SAMPLE_BARYCENTRIC (1 << 15)
1148 # define GEN6_WM_NONPERSPECTIVE_CENTROID_BARYCENTRIC (1 << 14)
1149 # define GEN6_WM_NONPERSPECTIVE_PIXEL_BARYCENTRIC (1 << 13)
1150 # define GEN6_WM_PERSPECTIVE_SAMPLE_BARYCENTRIC (1 << 12)
1151 # define GEN6_WM_PERSPECTIVE_CENTROID_BARYCENTRIC (1 << 11)
1152 # define GEN6_WM_PERSPECTIVE_PIXEL_BARYCENTRIC (1 << 10)
1153 # define GEN6_WM_POINT_RASTRULE_UPPER_RIGHT (1 << 9)
1154 # define GEN6_WM_MSRAST_OFF_PIXEL (0 << 1)
1155 # define GEN6_WM_MSRAST_OFF_PATTERN (1 << 1)
1156 # define GEN6_WM_MSRAST_ON_PIXEL (2 << 1)
1157 # define GEN6_WM_MSRAST_ON_PATTERN (3 << 1)
1158 # define GEN6_WM_MSDISPMODE_PERPIXEL (1 << 0)
1159 /* DW7: kernel 1 pointer */
1160 /* DW8: kernel 2 pointer */
1161
1162 #define _3DSTATE_CONSTANT_VS 0x7815 /* GEN6+ */
1163 #define _3DSTATE_CONSTANT_GS 0x7816 /* GEN6+ */
1164 #define _3DSTATE_CONSTANT_PS 0x7817 /* GEN6+ */
1165 # define GEN6_CONSTANT_BUFFER_3_ENABLE (1 << 15)
1166 # define GEN6_CONSTANT_BUFFER_2_ENABLE (1 << 14)
1167 # define GEN6_CONSTANT_BUFFER_1_ENABLE (1 << 13)
1168 # define GEN6_CONSTANT_BUFFER_0_ENABLE (1 << 12)
1169
1170 #define _3DSTATE_CONSTANT_HS 0x7819 /* GEN7+ */
1171 #define _3DSTATE_CONSTANT_DS 0x781A /* GEN7+ */
1172
1173 /* 3DSTATE_WM for Gen7 */
1174 /* DW1 */
1175 # define GEN7_WM_STATISTICS_ENABLE (1 << 31)
1176 # define GEN7_WM_DEPTH_CLEAR (1 << 30)
1177 # define GEN7_WM_DISPATCH_ENABLE (1 << 29)
1178 # define GEN6_WM_DEPTH_RESOLVE (1 << 28)
1179 # define GEN7_WM_HIERARCHICAL_DEPTH_RESOLVE (1 << 27)
1180 # define GEN7_WM_KILL_ENABLE (1 << 25)
1181 # define GEN7_WM_PSCDEPTH_OFF (0 << 23)
1182 # define GEN7_WM_PSCDEPTH_ON (1 << 23)
1183 # define GEN7_WM_PSCDEPTH_ON_GE (2 << 23)
1184 # define GEN7_WM_PSCDEPTH_ON_LE (3 << 23)
1185 # define GEN7_WM_USES_SOURCE_DEPTH (1 << 20)
1186 # define GEN7_WM_USES_SOURCE_W (1 << 19)
1187 # define GEN7_WM_POSITION_ZW_PIXEL (0 << 17)
1188 # define GEN7_WM_POSITION_ZW_CENTROID (2 << 17)
1189 # define GEN7_WM_POSITION_ZW_SAMPLE (3 << 17)
1190 # define GEN7_WM_NONPERSPECTIVE_SAMPLE_BARYCENTRIC (1 << 16)
1191 # define GEN7_WM_NONPERSPECTIVE_CENTROID_BARYCENTRIC (1 << 15)
1192 # define GEN7_WM_NONPERSPECTIVE_PIXEL_BARYCENTRIC (1 << 14)
1193 # define GEN7_WM_PERSPECTIVE_SAMPLE_BARYCENTRIC (1 << 13)
1194 # define GEN7_WM_PERSPECTIVE_CENTROID_BARYCENTRIC (1 << 12)
1195 # define GEN7_WM_PERSPECTIVE_PIXEL_BARYCENTRIC (1 << 11)
1196 # define GEN7_WM_USES_INPUT_COVERAGE_MASK (1 << 10)
1197 # define GEN7_WM_LINE_END_CAP_AA_WIDTH_0_5 (0 << 8)
1198 # define GEN7_WM_LINE_END_CAP_AA_WIDTH_1_0 (1 << 8)
1199 # define GEN7_WM_LINE_END_CAP_AA_WIDTH_2_0 (2 << 8)
1200 # define GEN7_WM_LINE_END_CAP_AA_WIDTH_4_0 (3 << 8)
1201 # define GEN7_WM_LINE_AA_WIDTH_0_5 (0 << 6)
1202 # define GEN7_WM_LINE_AA_WIDTH_1_0 (1 << 6)
1203 # define GEN7_WM_LINE_AA_WIDTH_2_0 (2 << 6)
1204 # define GEN7_WM_LINE_AA_WIDTH_4_0 (3 << 6)
1205 # define GEN7_WM_POLYGON_STIPPLE_ENABLE (1 << 4)
1206 # define GEN7_WM_LINE_STIPPLE_ENABLE (1 << 3)
1207 # define GEN7_WM_POINT_RASTRULE_UPPER_RIGHT (1 << 2)
1208 # define GEN7_WM_MSRAST_OFF_PIXEL (0 << 0)
1209 # define GEN7_WM_MSRAST_OFF_PATTERN (1 << 0)
1210 # define GEN7_WM_MSRAST_ON_PIXEL (2 << 0)
1211 # define GEN7_WM_MSRAST_ON_PATTERN (3 << 0)
1212 /* DW2 */
1213 # define GEN7_WM_MSDISPMODE_PERPIXEL (1 << 31)
1214
1215 #define _3DSTATE_PS 0x7820 /* GEN7+ */
1216 /* DW1: kernel pointer */
1217 /* DW2 */
1218 # define GEN7_PS_SPF_MODE (1 << 31)
1219 # define GEN7_PS_VECTOR_MASK_ENABLE (1 << 30)
1220 # define GEN7_PS_SAMPLER_COUNT_SHIFT 27
1221 # define GEN7_PS_BINDING_TABLE_ENTRY_COUNT_SHIFT 18
1222 # define GEN7_PS_FLOATING_POINT_MODE_IEEE_754 (0 << 16)
1223 # define GEN7_PS_FLOATING_POINT_MODE_ALT (1 << 16)
1224 /* DW3: scratch space */
1225 /* DW4 */
1226 # define GEN7_PS_MAX_THREADS_SHIFT 23
1227 # define GEN7_PS_PUSH_CONSTANT_ENABLE (1 << 11)
1228 # define GEN7_PS_ATTRIBUTE_ENABLE (1 << 10)
1229 # define GEN7_PS_OMASK_TO_RENDER_TARGET (1 << 9)
1230 # define GEN7_PS_DUAL_SOURCE_BLEND_ENABLE (1 << 7)
1231 # define GEN7_PS_POSOFFSET_NONE (0 << 3)
1232 # define GEN7_PS_POSOFFSET_CENTROID (2 << 3)
1233 # define GEN7_PS_POSOFFSET_SAMPLE (3 << 3)
1234 # define GEN7_PS_32_DISPATCH_ENABLE (1 << 2)
1235 # define GEN7_PS_16_DISPATCH_ENABLE (1 << 1)
1236 # define GEN7_PS_8_DISPATCH_ENABLE (1 << 0)
1237 /* DW5 */
1238 # define GEN7_PS_DISPATCH_START_GRF_SHIFT_0 16
1239 # define GEN7_PS_DISPATCH_START_GRF_SHIFT_1 8
1240 # define GEN7_PS_DISPATCH_START_GRF_SHIFT_2 0
1241 /* DW6: kernel 1 pointer */
1242 /* DW7: kernel 2 pointer */
1243
1244 #define _3DSTATE_STREAMOUT 0x781e /* GEN7+ */
1245
1246 #define _3DSTATE_SAMPLE_MASK 0x7818 /* GEN6+ */
1247
1248 #define _3DSTATE_DRAWING_RECTANGLE 0x7900
1249 #define _3DSTATE_BLEND_CONSTANT_COLOR 0x7901
1250 #define _3DSTATE_CHROMA_KEY 0x7904
1251 #define _3DSTATE_DEPTH_BUFFER 0x7905 /* GEN4-6 */
1252 #define _3DSTATE_POLY_STIPPLE_OFFSET 0x7906
1253 #define _3DSTATE_POLY_STIPPLE_PATTERN 0x7907
1254 #define _3DSTATE_LINE_STIPPLE_PATTERN 0x7908
1255 #define _3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP 0x7909
1256 #define _3DSTATE_AA_LINE_PARAMETERS 0x790a /* G45+ */
1257
1258 #define _3DSTATE_GS_SVB_INDEX 0x790b /* CTG+ */
1259 /* DW1 */
1260 # define SVB_INDEX_SHIFT 29
1261 # define SVB_LOAD_INTERNAL_VERTEX_COUNT (1 << 0) /* SNB+ */
1262 /* DW2: SVB index */
1263 /* DW3: SVB maximum index */
1264
1265 #define _3DSTATE_MULTISAMPLE 0x790d /* GEN6+ */
1266 /* DW1 */
1267 # define MS_PIXEL_LOCATION_CENTER (0 << 4)
1268 # define MS_PIXEL_LOCATION_UPPER_LEFT (1 << 4)
1269 # define MS_NUMSAMPLES_1 (0 << 1)
1270 # define MS_NUMSAMPLES_4 (2 << 1)
1271 # define MS_NUMSAMPLES_8 (3 << 1)
1272
1273 #define _3DSTATE_STENCIL_BUFFER 0x790e /* ILK, SNB */
1274 #define _3DSTATE_HIER_DEPTH_BUFFER 0x790f /* ILK, SNB */
1275
1276 #define GEN7_3DSTATE_CLEAR_PARAMS 0x7804
1277 #define GEN7_3DSTATE_DEPTH_BUFFER 0x7805
1278 #define GEN7_3DSTATE_STENCIL_BUFFER 0x7806
1279 #define GEN7_3DSTATE_HIER_DEPTH_BUFFER 0x7807
1280
1281 #define _3DSTATE_CLEAR_PARAMS 0x7910 /* ILK, SNB */
1282 # define DEPTH_CLEAR_VALID (1 << 15)
1283 /* DW1: depth clear value */
1284
1285 #define CMD_PIPE_CONTROL 0x7a00
1286
1287 #define CMD_MI_FLUSH 0x0200
1288
1289
1290 /* Various values from the R0 vertex header:
1291 */
1292 #define R02_PRIM_END 0x1
1293 #define R02_PRIM_START 0x2
1294
1295 #include "intel_chipset.h"
1296
1297 #endif