summaryrefslogtreecommitdiff
path: root/src/sna/gen4_render.h
blob: a014e52ffac8bd52cda3dc57e1d4fccdb4c23976 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
/**************************************************************************
 *
 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 **************************************************************************/

#ifndef GEN5_RENDER_H
#define GEN5_RENDER_H

#define GEN4_3D(Pipeline,Opcode,Subopcode) ((3 << 29) | \
					   ((Pipeline) << 27) | \
					   ((Opcode) << 24) | \
					   ((Subopcode) << 16))

#define GEN4_URB_FENCE				GEN4_3D(0, 0, 0)
#define GEN4_CS_URB_STATE			GEN4_3D(0, 0, 1)
#define GEN4_CONSTANT_BUFFER			GEN4_3D(0, 0, 2)
#define GEN4_STATE_PREFETCH			GEN4_3D(0, 0, 3)

#define GEN4_STATE_BASE_ADDRESS			GEN4_3D(0, 1, 1)
#define GEN4_STATE_SIP				GEN4_3D(0, 1, 2)
#define GEN4_PIPELINE_SELECT			GEN4_3D(0, 1, 4)

#define NEW_PIPELINE_SELECT			GEN4_3D(1, 1, 4)

#define GEN4_MEDIA_STATE_POINTERS		GEN4_3D(2, 0, 0)
#define GEN4_MEDIA_OBJECT			GEN4_3D(2, 1, 0)

#define GEN4_3DSTATE_PIPELINED_POINTERS		GEN4_3D(3, 0, 0)
#define GEN4_3DSTATE_BINDING_TABLE_POINTERS	GEN4_3D(3, 0, 1)

#define GEN4_3DSTATE_VERTEX_BUFFERS		GEN4_3D(3, 0, 8)
#define GEN4_3DSTATE_VERTEX_ELEMENTS		GEN4_3D(3, 0, 9)
#define GEN4_3DSTATE_INDEX_BUFFER		GEN4_3D(3, 0, 0xa)
#define GEN4_3DSTATE_VF_STATISTICS		GEN4_3D(3, 0, 0xb)

#define GEN4_3DSTATE_DRAWING_RECTANGLE		GEN4_3D(3, 1, 0)
#define GEN4_3DSTATE_CONSTANT_COLOR		GEN4_3D(3, 1, 1)
#define GEN4_3DSTATE_SAMPLER_PALETTE_LOAD	GEN4_3D(3, 1, 2)
#define GEN4_3DSTATE_CHROMA_KEY			GEN4_3D(3, 1, 4)
#define GEN4_3DSTATE_DEPTH_BUFFER		GEN4_3D(3, 1, 5)
# define GEN4_3DSTATE_DEPTH_BUFFER_TYPE_SHIFT	29
# define GEN4_3DSTATE_DEPTH_BUFFER_FORMAT_SHIFT	18

#define GEN4_3DSTATE_POLY_STIPPLE_OFFSET		GEN4_3D(3, 1, 6)
#define GEN4_3DSTATE_POLY_STIPPLE_PATTERN	GEN4_3D(3, 1, 7)
#define GEN4_3DSTATE_LINE_STIPPLE		GEN4_3D(3, 1, 8)
#define GEN4_3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP	GEN4_3D(3, 1, 9)
/* These two are BLC and CTG only, not BW or CL */
#define GEN4_3DSTATE_AA_LINE_PARAMS		GEN4_3D(3, 1, 0xa)
#define GEN4_3DSTATE_GS_SVB_INDEX		GEN4_3D(3, 1, 0xb)

#define GEN4_PIPE_CONTROL			GEN4_3D(3, 2, 0)

#define GEN4_3DPRIMITIVE				GEN4_3D(3, 3, 0)

#define GEN4_3DSTATE_CLEAR_PARAMS		GEN4_3D(3, 1, 0x10)
/* DW1 */
# define GEN4_3DSTATE_DEPTH_CLEAR_VALID		(1 << 15)

#define PIPELINE_SELECT_3D		0
#define PIPELINE_SELECT_MEDIA		1

#define UF0_CS_REALLOC			(1 << 13)
#define UF0_VFE_REALLOC			(1 << 12)
#define UF0_SF_REALLOC			(1 << 11)
#define UF0_CLIP_REALLOC		(1 << 10)
#define UF0_GS_REALLOC			(1 << 9)
#define UF0_VS_REALLOC			(1 << 8)
#define UF1_CLIP_FENCE_SHIFT		20
#define UF1_GS_FENCE_SHIFT		10
#define UF1_VS_FENCE_SHIFT		0
#define UF2_CS_FENCE_SHIFT		20
#define UF2_VFE_FENCE_SHIFT		10
#define UF2_SF_FENCE_SHIFT		0

/* for GEN4_STATE_BASE_ADDRESS */
#define BASE_ADDRESS_MODIFY		(1 << 0)

/* for GEN4_3DSTATE_PIPELINED_POINTERS */
#define GEN4_GS_DISABLE		       0
#define GEN4_GS_ENABLE		       1
#define GEN4_CLIP_DISABLE	       0
#define GEN4_CLIP_ENABLE		       1

/* for GEN4_PIPE_CONTROL */
#define GEN4_PIPE_CONTROL_NOWRITE       (0 << 14)
#define GEN4_PIPE_CONTROL_WRITE_QWORD   (1 << 14)
#define GEN4_PIPE_CONTROL_WRITE_DEPTH   (2 << 14)
#define GEN4_PIPE_CONTROL_WRITE_TIME    (3 << 14)
#define GEN4_PIPE_CONTROL_DEPTH_STALL   (1 << 13)
#define GEN4_PIPE_CONTROL_WC_FLUSH      (1 << 12)
#define GEN4_PIPE_CONTROL_IS_FLUSH      (1 << 11)
#define GEN4_PIPE_CONTROL_TC_FLUSH      (1 << 10)
#define GEN4_PIPE_CONTROL_NOTIFY_ENABLE (1 << 8)
#define GEN4_PIPE_CONTROL_GLOBAL_GTT    (1 << 2)
#define GEN4_PIPE_CONTROL_LOCAL_PGTT    (0 << 2)
#define GEN4_PIPE_CONTROL_DEPTH_CACHE_FLUSH	(1 << 0)

/* VERTEX_BUFFER_STATE Structure */
#define VB0_BUFFER_INDEX_SHIFT		27
#define VB0_VERTEXDATA			(0 << 26)
#define VB0_INSTANCEDATA		(1 << 26)
#define VB0_BUFFER_PITCH_SHIFT		0

/* VERTEX_ELEMENT_STATE Structure */
#define VE0_VERTEX_BUFFER_INDEX_SHIFT	27
#define VE0_VALID			(1 << 26)
#define VE0_FORMAT_SHIFT		16
#define VE0_OFFSET_SHIFT		0
#define VE1_VFCOMPONENT_0_SHIFT		28
#define VE1_VFCOMPONENT_1_SHIFT		24
#define VE1_VFCOMPONENT_2_SHIFT		20
#define VE1_VFCOMPONENT_3_SHIFT		16
#define VE1_DESTINATION_ELEMENT_OFFSET_SHIFT	0

/* 3DPRIMITIVE bits */
#define GEN4_3DPRIMITIVE_VERTEX_SEQUENTIAL (0 << 15)
#define GEN4_3DPRIMITIVE_VERTEX_RANDOM	  (1 << 15)
/* Primitive types are in gen4_defines.h */
#define GEN4_3DPRIMITIVE_TOPOLOGY_SHIFT	  10

#define GEN4_SVG_CTL		       0x7400

#define GEN4_SVG_CTL_GS_BA	       (0 << 8)
#define GEN4_SVG_CTL_SS_BA	       (1 << 8)
#define GEN4_SVG_CTL_IO_BA	       (2 << 8)
#define GEN4_SVG_CTL_GS_AUB	       (3 << 8)
#define GEN4_SVG_CTL_IO_AUB	       (4 << 8)
#define GEN4_SVG_CTL_SIP		       (5 << 8)

#define GEN4_SVG_RDATA		       0x7404
#define GEN4_SVG_WORK_CTL	       0x7408

#define GEN4_VF_CTL		       0x7500

#define GEN4_VF_CTL_SNAPSHOT_COMPLETE		   (1 << 31)
#define GEN4_VF_CTL_SNAPSHOT_MUX_SELECT_THREADID	   (0 << 8)
#define GEN4_VF_CTL_SNAPSHOT_MUX_SELECT_VF_DEBUG	   (1 << 8)
#define GEN4_VF_CTL_SNAPSHOT_TYPE_VERTEX_SEQUENCE   (0 << 4)
#define GEN4_VF_CTL_SNAPSHOT_TYPE_VERTEX_INDEX	   (1 << 4)
#define GEN4_VF_CTL_SKIP_INITIAL_PRIMITIVES	   (1 << 3)
#define GEN4_VF_CTL_MAX_PRIMITIVES_LIMIT_ENABLE	   (1 << 2)
#define GEN4_VF_CTL_VERTEX_RANGE_LIMIT_ENABLE	   (1 << 1)
#define GEN4_VF_CTL_SNAPSHOT_ENABLE	     	   (1 << 0)

#define GEN4_VF_STRG_VAL		       0x7504
#define GEN4_VF_STR_VL_OVR	       0x7508
#define GEN4_VF_VC_OVR		       0x750c
#define GEN4_VF_STR_PSKIP	       0x7510
#define GEN4_VF_MAX_PRIM		       0x7514
#define GEN4_VF_RDATA		       0x7518

#define GEN4_VS_CTL		       0x7600
#define GEN4_VS_CTL_SNAPSHOT_COMPLETE		   (1 << 31)
#define GEN4_VS_CTL_SNAPSHOT_MUX_VERTEX_0	   (0 << 8)
#define GEN4_VS_CTL_SNAPSHOT_MUX_VERTEX_1	   (1 << 8)
#define GEN4_VS_CTL_SNAPSHOT_MUX_VALID_COUNT	   (2 << 8)
#define GEN4_VS_CTL_SNAPSHOT_MUX_VS_KERNEL_POINTER  (3 << 8)
#define GEN4_VS_CTL_SNAPSHOT_ALL_THREADS		   (1 << 2)
#define GEN4_VS_CTL_THREAD_SNAPSHOT_ENABLE	   (1 << 1)
#define GEN4_VS_CTL_SNAPSHOT_ENABLE		   (1 << 0)

#define GEN4_VS_STRG_VAL		       0x7604
#define GEN4_VS_RDATA		       0x7608

#define GEN4_SF_CTL		       0x7b00
#define GEN4_SF_CTL_SNAPSHOT_COMPLETE		   (1 << 31)
#define GEN4_SF_CTL_SNAPSHOT_MUX_VERTEX_0_FF_ID	   (0 << 8)
#define GEN4_SF_CTL_SNAPSHOT_MUX_VERTEX_0_REL_COUNT (1 << 8)
#define GEN4_SF_CTL_SNAPSHOT_MUX_VERTEX_1_FF_ID	   (2 << 8)
#define GEN4_SF_CTL_SNAPSHOT_MUX_VERTEX_1_REL_COUNT (3 << 8)
#define GEN4_SF_CTL_SNAPSHOT_MUX_VERTEX_2_FF_ID	   (4 << 8)
#define GEN4_SF_CTL_SNAPSHOT_MUX_VERTEX_2_REL_COUNT (5 << 8)
#define GEN4_SF_CTL_SNAPSHOT_MUX_VERTEX_COUNT	   (6 << 8)
#define GEN4_SF_CTL_SNAPSHOT_MUX_SF_KERNEL_POINTER  (7 << 8)
#define GEN4_SF_CTL_MIN_MAX_PRIMITIVE_RANGE_ENABLE  (1 << 4)
#define GEN4_SF_CTL_DEBUG_CLIP_RECTANGLE_ENABLE	   (1 << 3)
#define GEN4_SF_CTL_SNAPSHOT_ALL_THREADS		   (1 << 2)
#define GEN4_SF_CTL_THREAD_SNAPSHOT_ENABLE	   (1 << 1)
#define GEN4_SF_CTL_SNAPSHOT_ENABLE		   (1 << 0)

#define GEN4_SF_STRG_VAL		       0x7b04
#define GEN4_SF_RDATA		       0x7b18

#define GEN4_WIZ_CTL		       0x7c00
#define GEN4_WIZ_CTL_SNAPSHOT_COMPLETE		   (1 << 31)
#define GEN4_WIZ_CTL_SUBSPAN_INSTANCE_SHIFT	   16
#define GEN4_WIZ_CTL_SNAPSHOT_MUX_WIZ_KERNEL_POINTER   (0 << 8)
#define GEN4_WIZ_CTL_SNAPSHOT_MUX_SUBSPAN_INSTANCE     (1 << 8)
#define GEN4_WIZ_CTL_SNAPSHOT_MUX_PRIMITIVE_SEQUENCE   (2 << 8)
#define GEN4_WIZ_CTL_SINGLE_SUBSPAN_DISPATCH	      (1 << 6)
#define GEN4_WIZ_CTL_IGNORE_COLOR_SCOREBOARD_STALLS    (1 << 5)
#define GEN4_WIZ_CTL_ENABLE_SUBSPAN_INSTANCE_COMPARE   (1 << 4)
#define GEN4_WIZ_CTL_USE_UPSTREAM_SNAPSHOT_FLAG	      (1 << 3)
#define GEN4_WIZ_CTL_SNAPSHOT_ALL_THREADS	      (1 << 2)
#define GEN4_WIZ_CTL_THREAD_SNAPSHOT_ENABLE	      (1 << 1)
#define GEN4_WIZ_CTL_SNAPSHOT_ENABLE		      (1 << 0)

#define GEN4_WIZ_STRG_VAL			      0x7c04
#define GEN4_WIZ_RDATA				      0x7c18

#define GEN4_TS_CTL		       0x7e00
#define GEN4_TS_CTL_SNAPSHOT_COMPLETE		   (1 << 31)
#define GEN4_TS_CTL_SNAPSHOT_MESSAGE_ERROR	   (0 << 8)
#define GEN4_TS_CTL_SNAPSHOT_INTERFACE_DESCRIPTOR   (3 << 8)
#define GEN4_TS_CTL_SNAPSHOT_ALL_CHILD_THREADS	   (1 << 2)
#define GEN4_TS_CTL_SNAPSHOT_ALL_ROOT_THREADS  	   (1 << 1)
#define GEN4_TS_CTL_SNAPSHOT_ENABLE		   (1 << 0)

#define GEN4_TS_STRG_VAL		       0x7e04
#define GEN4_TS_RDATA		       0x7e08

#define GEN4_TD_CTL		       0x8000
#define GEN4_TD_CTL_MUX_SHIFT	       8
#define GEN4_TD_CTL_EXTERNAL_HALT_R0_DEBUG_MATCH	   (1 << 7)
#define GEN4_TD_CTL_FORCE_EXTERNAL_HALT		   (1 << 6)
#define GEN4_TD_CTL_EXCEPTION_MASK_OVERRIDE	   (1 << 5)
#define GEN4_TD_CTL_FORCE_THREAD_BREAKPOINT_ENABLE  (1 << 4)
#define GEN4_TD_CTL_BREAKPOINT_ENABLE		   (1 << 2)
#define GEN4_TD_CTL2		       0x8004
#define GEN4_TD_CTL2_ILLEGAL_OPCODE_EXCEPTION_OVERRIDE (1 << 28)
#define GEN4_TD_CTL2_MASKSTACK_EXCEPTION_OVERRIDE      (1 << 26)
#define GEN4_TD_CTL2_SOFTWARE_EXCEPTION_OVERRIDE	      (1 << 25)
#define GEN4_TD_CTL2_ACTIVE_THREAD_LIMIT_SHIFT	      16
#define GEN4_TD_CTL2_ACTIVE_THREAD_LIMIT_ENABLE	      (1 << 8)
#define GEN4_TD_CTL2_THREAD_SPAWNER_EXECUTION_MASK_ENABLE (1 << 7)
#define GEN4_TD_CTL2_WIZ_EXECUTION_MASK_ENABLE	      (1 << 6)
#define GEN4_TD_CTL2_SF_EXECUTION_MASK_ENABLE	      (1 << 5)
#define GEN4_TD_CTL2_CLIPPER_EXECUTION_MASK_ENABLE     (1 << 4)
#define GEN4_TD_CTL2_GS_EXECUTION_MASK_ENABLE	      (1 << 3)
#define GEN4_TD_CTL2_VS_EXECUTION_MASK_ENABLE	      (1 << 0)
#define GEN4_TD_VF_VS_EMSK	       0x8008
#define GEN4_TD_GS_EMSK		       0x800c
#define GEN4_TD_CLIP_EMSK	       0x8010
#define GEN4_TD_SF_EMSK		       0x8014
#define GEN4_TD_WIZ_EMSK		       0x8018
#define GEN4_TD_0_6_EHTRG_VAL	       0x801c
#define GEN4_TD_0_7_EHTRG_VAL	       0x8020
#define GEN4_TD_0_6_EHTRG_MSK           0x8024
#define GEN4_TD_0_7_EHTRG_MSK	       0x8028
#define GEN4_TD_RDATA		       0x802c
#define GEN4_TD_TS_EMSK		       0x8030

#define GEN4_EU_CTL		       0x8800
#define GEN4_EU_CTL_SELECT_SHIFT	       16
#define GEN4_EU_CTL_DATA_MUX_SHIFT      8
#define GEN4_EU_ATT_0		       0x8810
#define GEN4_EU_ATT_1		       0x8814
#define GEN4_EU_ATT_DATA_0	       0x8820
#define GEN4_EU_ATT_DATA_1	       0x8824
#define GEN4_EU_ATT_CLR_0	       0x8830
#define GEN4_EU_ATT_CLR_1	       0x8834
#define GEN4_EU_RDATA		       0x8840

/* 3D state:
 */
#define _3DOP_3DSTATE_PIPELINED       0x0
#define _3DOP_3DSTATE_NONPIPELINED    0x1
#define _3DOP_3DCONTROL               0x2
#define _3DOP_3DPRIMITIVE             0x3

#define _3DSTATE_PIPELINED_POINTERS       0x00
#define _3DSTATE_BINDING_TABLE_POINTERS   0x01
#define _3DSTATE_VERTEX_BUFFERS           0x08
#define _3DSTATE_VERTEX_ELEMENTS          0x09
#define _3DSTATE_INDEX_BUFFER             0x0A
#define _3DSTATE_VF_STATISTICS            0x0B
#define _3DSTATE_DRAWING_RECTANGLE            0x00
#define _3DSTATE_CONSTANT_COLOR               0x01
#define _3DSTATE_SAMPLER_PALETTE_LOAD         0x02
#define _3DSTATE_CHROMA_KEY                   0x04
#define _3DSTATE_DEPTH_BUFFER                 0x05
#define _3DSTATE_POLY_STIPPLE_OFFSET          0x06
#define _3DSTATE_POLY_STIPPLE_PATTERN         0x07
#define _3DSTATE_LINE_STIPPLE                 0x08
#define _3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP    0x09
#define _3DCONTROL    0x00
#define _3DPRIMITIVE  0x00

#define _3DPRIM_POINTLIST         0x01
#define _3DPRIM_LINELIST          0x02
#define _3DPRIM_LINESTRIP         0x03
#define _3DPRIM_TRILIST           0x04
#define _3DPRIM_TRISTRIP          0x05
#define _3DPRIM_TRIFAN            0x06
#define _3DPRIM_QUADLIST          0x07
#define _3DPRIM_QUADSTRIP         0x08
#define _3DPRIM_LINELIST_ADJ      0x09
#define _3DPRIM_LINESTRIP_ADJ     0x0A
#define _3DPRIM_TRILIST_ADJ       0x0B
#define _3DPRIM_TRISTRIP_ADJ      0x0C
#define _3DPRIM_TRISTRIP_REVERSE  0x0D
#define _3DPRIM_POLYGON           0x0E
#define _3DPRIM_RECTLIST          0x0F
#define _3DPRIM_LINELOOP          0x10
#define _3DPRIM_POINTLIST_BF      0x11
#define _3DPRIM_LINESTRIP_CONT    0x12
#define _3DPRIM_LINESTRIP_BF      0x13
#define _3DPRIM_LINESTRIP_CONT_BF 0x14
#define _3DPRIM_TRIFAN_NOSTIPPLE  0x15

#define _3DPRIM_VERTEXBUFFER_ACCESS_SEQUENTIAL 0
#define _3DPRIM_VERTEXBUFFER_ACCESS_RANDOM     1

#define GEN4_ANISORATIO_2     0 
#define GEN4_ANISORATIO_4     1 
#define GEN4_ANISORATIO_6     2 
#define GEN4_ANISORATIO_8     3 
#define GEN4_ANISORATIO_10    4 
#define GEN4_ANISORATIO_12    5 
#define GEN4_ANISORATIO_14    6 
#define GEN4_ANISORATIO_16    7

#define GEN4_BLENDFACTOR_ONE                 0x1
#define GEN4_BLENDFACTOR_SRC_COLOR           0x2
#define GEN4_BLENDFACTOR_SRC_ALPHA           0x3
#define GEN4_BLENDFACTOR_DST_ALPHA           0x4
#define GEN4_BLENDFACTOR_DST_COLOR           0x5
#define GEN4_BLENDFACTOR_SRC_ALPHA_SATURATE  0x6
#define GEN4_BLENDFACTOR_CONST_COLOR         0x7
#define GEN4_BLENDFACTOR_CONST_ALPHA         0x8
#define GEN4_BLENDFACTOR_SRC1_COLOR          0x9
#define GEN4_BLENDFACTOR_SRC1_ALPHA          0x0A
#define GEN4_BLENDFACTOR_ZERO                0x11
#define GEN4_BLENDFACTOR_INV_SRC_COLOR       0x12
#define GEN4_BLENDFACTOR_INV_SRC_ALPHA       0x13
#define GEN4_BLENDFACTOR_INV_DST_ALPHA       0x14
#define GEN4_BLENDFACTOR_INV_DST_COLOR       0x15
#define GEN4_BLENDFACTOR_INV_CONST_COLOR     0x17
#define GEN4_BLENDFACTOR_INV_CONST_ALPHA     0x18
#define GEN4_BLENDFACTOR_INV_SRC1_COLOR      0x19
#define GEN4_BLENDFACTOR_INV_SRC1_ALPHA      0x1A

#define GEN4_BLENDFUNCTION_ADD               0
#define GEN4_BLENDFUNCTION_SUBTRACT          1
#define GEN4_BLENDFUNCTION_REVERSE_SUBTRACT  2
#define GEN4_BLENDFUNCTION_MIN               3
#define GEN4_BLENDFUNCTION_MAX               4

#define GEN4_ALPHATEST_FORMAT_UNORM8         0
#define GEN4_ALPHATEST_FORMAT_FLOAT32        1

#define GEN4_CHROMAKEY_KILL_ON_ANY_MATCH  0
#define GEN4_CHROMAKEY_REPLACE_BLACK      1

#define GEN4_CLIP_API_OGL     0
#define GEN4_CLIP_API_DX      1

#define GEN4_CLIPMODE_NORMAL              0
#define GEN4_CLIPMODE_CLIP_ALL            1
#define GEN4_CLIPMODE_CLIP_NON_REJECTED   2
#define GEN4_CLIPMODE_REJECT_ALL          3
#define GEN4_CLIPMODE_ACCEPT_ALL          4

#define GEN4_CLIP_NDCSPACE     0
#define GEN4_CLIP_SCREENSPACE  1

#define GEN4_COMPAREFUNCTION_ALWAYS       0
#define GEN4_COMPAREFUNCTION_NEVER        1
#define GEN4_COMPAREFUNCTION_LESS         2
#define GEN4_COMPAREFUNCTION_EQUAL        3
#define GEN4_COMPAREFUNCTION_LEQUAL       4
#define GEN4_COMPAREFUNCTION_GREATER      5
#define GEN4_COMPAREFUNCTION_NOTEQUAL     6
#define GEN4_COMPAREFUNCTION_GEQUAL       7

#define GEN4_COVERAGE_PIXELS_HALF     0
#define GEN4_COVERAGE_PIXELS_1        1
#define GEN4_COVERAGE_PIXELS_2        2
#define GEN4_COVERAGE_PIXELS_4        3

#define GEN4_CULLMODE_BOTH        0
#define GEN4_CULLMODE_NONE        1
#define GEN4_CULLMODE_FRONT       2
#define GEN4_CULLMODE_BACK        3

#define GEN4_DEFAULTCOLOR_R8G8B8A8_UNORM      0
#define GEN4_DEFAULTCOLOR_R32G32B32A32_FLOAT  1

#define GEN4_DEPTHFORMAT_D32_FLOAT_S8X24_UINT     0
#define GEN4_DEPTHFORMAT_D32_FLOAT                1
#define GEN4_DEPTHFORMAT_D24_UNORM_S8_UINT        2
#define GEN4_DEPTHFORMAT_D16_UNORM                5

#define GEN4_FLOATING_POINT_IEEE_754        0
#define GEN4_FLOATING_POINT_NON_IEEE_754    1

#define GEN4_FRONTWINDING_CW      0
#define GEN4_FRONTWINDING_CCW     1

#define GEN4_INDEX_BYTE     0
#define GEN4_INDEX_WORD     1
#define GEN4_INDEX_DWORD    2

#define GEN4_LOGICOPFUNCTION_CLEAR            0
#define GEN4_LOGICOPFUNCTION_NOR              1
#define GEN4_LOGICOPFUNCTION_AND_INVERTED     2
#define GEN4_LOGICOPFUNCTION_COPY_INVERTED    3
#define GEN4_LOGICOPFUNCTION_AND_REVERSE      4
#define GEN4_LOGICOPFUNCTION_INVERT           5
#define GEN4_LOGICOPFUNCTION_XOR              6
#define GEN4_LOGICOPFUNCTION_NAND             7
#define GEN4_LOGICOPFUNCTION_AND              8
#define GEN4_LOGICOPFUNCTION_EQUIV            9
#define GEN4_LOGICOPFUNCTION_NOOP             10
#define GEN4_LOGICOPFUNCTION_OR_INVERTED      11
#define GEN4_LOGICOPFUNCTION_COPY             12
#define GEN4_LOGICOPFUNCTION_OR_REVERSE       13
#define GEN4_LOGICOPFUNCTION_OR               14
#define GEN4_LOGICOPFUNCTION_SET              15  

#define GEN4_MAPFILTER_NEAREST        0x0 
#define GEN4_MAPFILTER_LINEAR         0x1 
#define GEN4_MAPFILTER_ANISOTROPIC    0x2

#define GEN4_MIPFILTER_NONE        0   
#define GEN4_MIPFILTER_NEAREST     1   
#define GEN4_MIPFILTER_LINEAR      3

#define GEN4_POLYGON_FRONT_FACING     0
#define GEN4_POLYGON_BACK_FACING      1

#define GEN4_PREFILTER_ALWAYS     0x0 
#define GEN4_PREFILTER_NEVER      0x1
#define GEN4_PREFILTER_LESS       0x2
#define GEN4_PREFILTER_EQUAL      0x3
#define GEN4_PREFILTER_LEQUAL     0x4
#define GEN4_PREFILTER_GREATER    0x5
#define GEN4_PREFILTER_NOTEQUAL   0x6
#define GEN4_PREFILTER_GEQUAL     0x7

#define GEN4_PROVOKING_VERTEX_0    0
#define GEN4_PROVOKING_VERTEX_1    1 
#define GEN4_PROVOKING_VERTEX_2    2

#define GEN4_RASTRULE_UPPER_LEFT  0    
#define GEN4_RASTRULE_UPPER_RIGHT 1

#define GEN4_RENDERTARGET_CLAMPRANGE_UNORM    0
#define GEN4_RENDERTARGET_CLAMPRANGE_SNORM    1
#define GEN4_RENDERTARGET_CLAMPRANGE_FORMAT   2

#define GEN4_STENCILOP_KEEP               0
#define GEN4_STENCILOP_ZERO               1
#define GEN4_STENCILOP_REPLACE            2
#define GEN4_STENCILOP_INCRSAT            3
#define GEN4_STENCILOP_DECRSAT            4
#define GEN4_STENCILOP_INCR               5
#define GEN4_STENCILOP_DECR               6
#define GEN4_STENCILOP_INVERT             7

#define GEN4_SURFACE_MIPMAPLAYOUT_BELOW   0
#define GEN4_SURFACE_MIPMAPLAYOUT_RIGHT   1

#define GEN4_SURFACEFORMAT_R32G32B32A32_FLOAT             0x000
#define GEN4_SURFACEFORMAT_R32G32B32A32_SINT              0x001
#define GEN4_SURFACEFORMAT_R32G32B32A32_UINT              0x002
#define GEN4_SURFACEFORMAT_R32G32B32A32_UNORM             0x003
#define GEN4_SURFACEFORMAT_R32G32B32A32_SNORM             0x004
#define GEN4_SURFACEFORMAT_R64G64_FLOAT                   0x005
#define GEN4_SURFACEFORMAT_R32G32B32X32_FLOAT             0x006
#define GEN4_SURFACEFORMAT_R32G32B32A32_SSCALED           0x007
#define GEN4_SURFACEFORMAT_R32G32B32A32_USCALED           0x008
#define GEN4_SURFACEFORMAT_R32G32B32_FLOAT                0x040
#define GEN4_SURFACEFORMAT_R32G32B32_SINT                 0x041
#define GEN4_SURFACEFORMAT_R32G32B32_UINT                 0x042
#define GEN4_SURFACEFORMAT_R32G32B32_UNORM                0x043
#define GEN4_SURFACEFORMAT_R32G32B32_SNORM                0x044
#define GEN4_SURFACEFORMAT_R32G32B32_SSCALED              0x045
#define GEN4_SURFACEFORMAT_R32G32B32_USCALED              0x046
#define GEN4_SURFACEFORMAT_R16G16B16A16_UNORM             0x080
#define GEN4_SURFACEFORMAT_R16G16B16A16_SNORM             0x081
#define GEN4_SURFACEFORMAT_R16G16B16A16_SINT              0x082
#define GEN4_SURFACEFORMAT_R16G16B16A16_UINT              0x083
#define GEN4_SURFACEFORMAT_R16G16B16A16_FLOAT             0x084
#define GEN4_SURFACEFORMAT_R32G32_FLOAT                   0x085
#define GEN4_SURFACEFORMAT_R32G32_SINT                    0x086
#define GEN4_SURFACEFORMAT_R32G32_UINT                    0x087
#define GEN4_SURFACEFORMAT_R32_FLOAT_X8X24_TYPELESS       0x088
#define GEN4_SURFACEFORMAT_X32_TYPELESS_G8X24_UINT        0x089
#define GEN4_SURFACEFORMAT_L32A32_FLOAT                   0x08A
#define GEN4_SURFACEFORMAT_R32G32_UNORM                   0x08B
#define GEN4_SURFACEFORMAT_R32G32_SNORM                   0x08C
#define GEN4_SURFACEFORMAT_R64_FLOAT                      0x08D
#define GEN4_SURFACEFORMAT_R16G16B16X16_UNORM             0x08E
#define GEN4_SURFACEFORMAT_R16G16B16X16_FLOAT             0x08F
#define GEN4_SURFACEFORMAT_A32X32_FLOAT                   0x090
#define GEN4_SURFACEFORMAT_L32X32_FLOAT                   0x091
#define GEN4_SURFACEFORMAT_I32X32_FLOAT                   0x092
#define GEN4_SURFACEFORMAT_R16G16B16A16_SSCALED           0x093
#define GEN4_SURFACEFORMAT_R16G16B16A16_USCALED           0x094
#define GEN4_SURFACEFORMAT_R32G32_SSCALED                 0x095
#define GEN4_SURFACEFORMAT_R32G32_USCALED                 0x096
#define GEN4_SURFACEFORMAT_B8G8R8A8_UNORM                 0x0C0
#define GEN4_SURFACEFORMAT_B8G8R8A8_UNORM_SRGB            0x0C1
#define GEN4_SURFACEFORMAT_R10G10B10A2_UNORM              0x0C2
#define GEN4_SURFACEFORMAT_R10G10B10A2_UNORM_SRGB         0x0C3
#define GEN4_SURFACEFORMAT_R10G10B10A2_UINT               0x0C4
#define GEN4_SURFACEFORMAT_R10G10B10_SNORM_A2_UNORM       0x0C5
#define GEN4_SURFACEFORMAT_R8G8B8A8_UNORM                 0x0C7
#define GEN4_SURFACEFORMAT_R8G8B8A8_UNORM_SRGB            0x0C8
#define GEN4_SURFACEFORMAT_R8G8B8A8_SNORM                 0x0C9
#define GEN4_SURFACEFORMAT_R8G8B8A8_SINT                  0x0CA
#define GEN4_SURFACEFORMAT_R8G8B8A8_UINT                  0x0CB
#define GEN4_SURFACEFORMAT_R16G16_UNORM                   0x0CC
#define GEN4_SURFACEFORMAT_R16G16_SNORM                   0x0CD
#define GEN4_SURFACEFORMAT_R16G16_SINT                    0x0CE
#define GEN4_SURFACEFORMAT_R16G16_UINT                    0x0CF
#define GEN4_SURFACEFORMAT_R16G16_FLOAT                   0x0D0
#define GEN4_SURFACEFORMAT_B10G10R10A2_UNORM              0x0D1
#define GEN4_SURFACEFORMAT_B10G10R10A2_UNORM_SRGB         0x0D2
#define GEN4_SURFACEFORMAT_R11G11B10_FLOAT                0x0D3
#define GEN4_SURFACEFORMAT_R32_SINT                       0x0D6
#define GEN4_SURFACEFORMAT_R32_UINT                       0x0D7
#define GEN4_SURFACEFORMAT_R32_FLOAT                      0x0D8
#define GEN4_SURFACEFORMAT_R24_UNORM_X8_TYPELESS          0x0D9
#define GEN4_SURFACEFORMAT_X24_TYPELESS_G8_UINT           0x0DA
#define GEN4_SURFACEFORMAT_L16A16_UNORM                   0x0DF
#define GEN4_SURFACEFORMAT_I24X8_UNORM                    0x0E0
#define GEN4_SURFACEFORMAT_L24X8_UNORM                    0x0E1
#define GEN4_SURFACEFORMAT_A24X8_UNORM                    0x0E2
#define GEN4_SURFACEFORMAT_I32_FLOAT                      0x0E3
#define GEN4_SURFACEFORMAT_L32_FLOAT                      0x0E4
#define GEN4_SURFACEFORMAT_A32_FLOAT                      0x0E5
#define GEN4_SURFACEFORMAT_B8G8R8X8_UNORM                 0x0E9
#define GEN4_SURFACEFORMAT_B8G8R8X8_UNORM_SRGB            0x0EA
#define GEN4_SURFACEFORMAT_R8G8B8X8_UNORM                 0x0EB
#define GEN4_SURFACEFORMAT_R8G8B8X8_UNORM_SRGB            0x0EC
#define GEN4_SURFACEFORMAT_R9G9B9E5_SHAREDEXP             0x0ED
#define GEN4_SURFACEFORMAT_B10G10R10X2_UNORM              0x0EE
#define GEN4_SURFACEFORMAT_L16A16_FLOAT                   0x0F0
#define GEN4_SURFACEFORMAT_R32_UNORM                      0x0F1
#define GEN4_SURFACEFORMAT_R32_SNORM                      0x0F2
#define GEN4_SURFACEFORMAT_R10G10B10X2_USCALED            0x0F3
#define GEN4_SURFACEFORMAT_R8G8B8A8_SSCALED               0x0F4
#define GEN4_SURFACEFORMAT_R8G8B8A8_USCALED               0x0F5
#define GEN4_SURFACEFORMAT_R16G16_SSCALED                 0x0F6
#define GEN4_SURFACEFORMAT_R16G16_USCALED                 0x0F7
#define GEN4_SURFACEFORMAT_R32_SSCALED                    0x0F8
#define GEN4_SURFACEFORMAT_R32_USCALED                    0x0F9
#define GEN4_SURFACEFORMAT_B5G6R5_UNORM                   0x100
#define GEN4_SURFACEFORMAT_B5G6R5_UNORM_SRGB              0x101
#define GEN4_SURFACEFORMAT_B5G5R5A1_UNORM                 0x102
#define GEN4_SURFACEFORMAT_B5G5R5A1_UNORM_SRGB            0x103
#define GEN4_SURFACEFORMAT_B4G4R4A4_UNORM                 0x104
#define GEN4_SURFACEFORMAT_B4G4R4A4_UNORM_SRGB            0x105
#define GEN4_SURFACEFORMAT_R8G8_UNORM                     0x106
#define GEN4_SURFACEFORMAT_R8G8_SNORM                     0x107
#define GEN4_SURFACEFORMAT_R8G8_SINT                      0x108
#define GEN4_SURFACEFORMAT_R8G8_UINT                      0x109
#define GEN4_SURFACEFORMAT_R16_UNORM                      0x10A
#define GEN4_SURFACEFORMAT_R16_SNORM                      0x10B
#define GEN4_SURFACEFORMAT_R16_SINT                       0x10C
#define GEN4_SURFACEFORMAT_R16_UINT                       0x10D
#define GEN4_SURFACEFORMAT_R16_FLOAT                      0x10E
#define GEN4_SURFACEFORMAT_I16_UNORM                      0x111
#define GEN4_SURFACEFORMAT_L16_UNORM                      0x112
#define GEN4_SURFACEFORMAT_A16_UNORM                      0x113
#define GEN4_SURFACEFORMAT_L8A8_UNORM                     0x114
#define GEN4_SURFACEFORMAT_I16_FLOAT                      0x115
#define GEN4_SURFACEFORMAT_L16_FLOAT                      0x116
#define GEN4_SURFACEFORMAT_A16_FLOAT                      0x117
#define GEN4_SURFACEFORMAT_R5G5_SNORM_B6_UNORM            0x119
#define GEN4_SURFACEFORMAT_B5G5R5X1_UNORM                 0x11A
#define GEN4_SURFACEFORMAT_B5G5R5X1_UNORM_SRGB            0x11B
#define GEN4_SURFACEFORMAT_R8G8_SSCALED                   0x11C
#define GEN4_SURFACEFORMAT_R8G8_USCALED                   0x11D
#define GEN4_SURFACEFORMAT_R16_SSCALED                    0x11E
#define GEN4_SURFACEFORMAT_R16_USCALED                    0x11F
#define GEN4_SURFACEFORMAT_R8_UNORM                       0x140
#define GEN4_SURFACEFORMAT_R8_SNORM                       0x141
#define GEN4_SURFACEFORMAT_R8_SINT                        0x142
#define GEN4_SURFACEFORMAT_R8_UINT                        0x143
#define GEN4_SURFACEFORMAT_A8_UNORM                       0x144
#define GEN4_SURFACEFORMAT_I8_UNORM                       0x145
#define GEN4_SURFACEFORMAT_L8_UNORM                       0x146
#define GEN4_SURFACEFORMAT_P4A4_UNORM                     0x147
#define GEN4_SURFACEFORMAT_A4P4_UNORM                     0x148
#define GEN4_SURFACEFORMAT_R8_SSCALED                     0x149
#define GEN4_SURFACEFORMAT_R8_USCALED                     0x14A
#define GEN4_SURFACEFORMAT_R1_UINT                        0x181
#define GEN4_SURFACEFORMAT_YCRCB_NORMAL                   0x182
#define GEN4_SURFACEFORMAT_YCRCB_SWAPUVY                  0x183
#define GEN4_SURFACEFORMAT_BC1_UNORM                      0x186
#define GEN4_SURFACEFORMAT_BC2_UNORM                      0x187
#define GEN4_SURFACEFORMAT_BC3_UNORM                      0x188
#define GEN4_SURFACEFORMAT_BC4_UNORM                      0x189
#define GEN4_SURFACEFORMAT_BC5_UNORM                      0x18A
#define GEN4_SURFACEFORMAT_BC1_UNORM_SRGB                 0x18B
#define GEN4_SURFACEFORMAT_BC2_UNORM_SRGB                 0x18C
#define GEN4_SURFACEFORMAT_BC3_UNORM_SRGB                 0x18D
#define GEN4_SURFACEFORMAT_MONO8                          0x18E
#define GEN4_SURFACEFORMAT_YCRCB_SWAPUV                   0x18F
#define GEN4_SURFACEFORMAT_YCRCB_SWAPY                    0x190
#define GEN4_SURFACEFORMAT_DXT1_RGB                       0x191
#define GEN4_SURFACEFORMAT_FXT1                           0x192
#define GEN4_SURFACEFORMAT_R8G8B8_UNORM                   0x193
#define GEN4_SURFACEFORMAT_R8G8B8_SNORM                   0x194
#define GEN4_SURFACEFORMAT_R8G8B8_SSCALED                 0x195
#define GEN4_SURFACEFORMAT_R8G8B8_USCALED                 0x196
#define GEN4_SURFACEFORMAT_R64G64B64A64_FLOAT             0x197
#define GEN4_SURFACEFORMAT_R64G64B64_FLOAT                0x198
#define GEN4_SURFACEFORMAT_BC4_SNORM                      0x199
#define GEN4_SURFACEFORMAT_BC5_SNORM                      0x19A
#define GEN4_SURFACEFORMAT_R16G16B16_UNORM                0x19C
#define GEN4_SURFACEFORMAT_R16G16B16_SNORM                0x19D
#define GEN4_SURFACEFORMAT_R16G16B16_SSCALED              0x19E
#define GEN4_SURFACEFORMAT_R16G16B16_USCALED              0x19F

#define GEN4_SURFACERETURNFORMAT_FLOAT32  0
#define GEN4_SURFACERETURNFORMAT_S1       1

#define GEN4_SURFACE_1D      0
#define GEN4_SURFACE_2D      1
#define GEN4_SURFACE_3D      2
#define GEN4_SURFACE_CUBE    3
#define GEN4_SURFACE_BUFFER  4
#define GEN4_SURFACE_NULL    7

#define GEN4_BORDER_COLOR_MODE_DEFAULT	0
#define GEN4_BORDER_COLOR_MODE_LEGACY	1

#define GEN4_TEXCOORDMODE_WRAP            0
#define GEN4_TEXCOORDMODE_MIRROR          1
#define GEN4_TEXCOORDMODE_CLAMP           2
#define GEN4_TEXCOORDMODE_CUBE            3
#define GEN4_TEXCOORDMODE_CLAMP_BORDER    4
#define GEN4_TEXCOORDMODE_MIRROR_ONCE     5

#define GEN4_THREAD_PRIORITY_NORMAL   0
#define GEN4_THREAD_PRIORITY_HIGH     1

#define GEN4_TILEWALK_XMAJOR                 0
#define GEN4_TILEWALK_YMAJOR                 1

#define GEN4_VERTEX_SUBPIXEL_PRECISION_8BITS  0
#define GEN4_VERTEX_SUBPIXEL_PRECISION_4BITS  1

#define GEN4_VERTEXBUFFER_ACCESS_VERTEXDATA     0
#define GEN4_VERTEXBUFFER_ACCESS_INSTANCEDATA   1

#define GEN4_VFCOMPONENT_NOSTORE      0
#define GEN4_VFCOMPONENT_STORE_SRC    1
#define GEN4_VFCOMPONENT_STORE_0      2
#define GEN4_VFCOMPONENT_STORE_1_FLT  3
#define GEN4_VFCOMPONENT_STORE_1_INT  4
#define GEN4_VFCOMPONENT_STORE_VID    5
#define GEN4_VFCOMPONENT_STORE_IID    6
#define GEN4_VFCOMPONENT_STORE_PID    7



/* Execution Unit (EU) defines
 */

#define GEN4_ALIGN_1   0
#define GEN4_ALIGN_16  1

#define GEN4_ADDRESS_DIRECT                        0
#define GEN4_ADDRESS_REGISTER_INDIRECT_REGISTER    1

#define GEN4_CHANNEL_X     0
#define GEN4_CHANNEL_Y     1
#define GEN4_CHANNEL_Z     2
#define GEN4_CHANNEL_W     3

#define GEN4_COMPRESSION_NONE          0
#define GEN4_COMPRESSION_2NDHALF       1
#define GEN4_COMPRESSION_COMPRESSED    2

#define GEN4_CONDITIONAL_NONE  0
#define GEN4_CONDITIONAL_Z     1
#define GEN4_CONDITIONAL_NZ    2
#define GEN4_CONDITIONAL_EQ    1	/* Z */
#define GEN4_CONDITIONAL_NEQ   2	/* NZ */
#define GEN4_CONDITIONAL_G     3
#define GEN4_CONDITIONAL_GE    4
#define GEN4_CONDITIONAL_L     5
#define GEN4_CONDITIONAL_LE    6
#define GEN4_CONDITIONAL_C     7
#define GEN4_CONDITIONAL_O     8

#define GEN4_DEBUG_NONE        0
#define GEN4_DEBUG_BREAKPOINT  1

#define GEN4_DEPENDENCY_NORMAL         0
#define GEN4_DEPENDENCY_NOTCLEARED     1
#define GEN4_DEPENDENCY_NOTCHECKED     2
#define GEN4_DEPENDENCY_DISABLE        3

#define GEN4_EXECUTE_1     0
#define GEN4_EXECUTE_2     1
#define GEN4_EXECUTE_4     2
#define GEN4_EXECUTE_8     3
#define GEN4_EXECUTE_16    4
#define GEN4_EXECUTE_32    5

#define GEN4_HORIZONTAL_STRIDE_0   0
#define GEN4_HORIZONTAL_STRIDE_1   1
#define GEN4_HORIZONTAL_STRIDE_2   2
#define GEN4_HORIZONTAL_STRIDE_4   3

#define GEN4_INSTRUCTION_NORMAL    0
#define GEN4_INSTRUCTION_SATURATE  1

#define GEN4_MASK_ENABLE   0
#define GEN4_MASK_DISABLE  1

#define GEN4_OPCODE_MOV        1
#define GEN4_OPCODE_SEL        2
#define GEN4_OPCODE_NOT        4
#define GEN4_OPCODE_AND        5
#define GEN4_OPCODE_OR         6
#define GEN4_OPCODE_XOR        7
#define GEN4_OPCODE_SHR        8
#define GEN4_OPCODE_SHL        9
#define GEN4_OPCODE_RSR        10
#define GEN4_OPCODE_RSL        11
#define GEN4_OPCODE_ASR        12
#define GEN4_OPCODE_CMP        16
#define GEN4_OPCODE_JMPI       32
#define GEN4_OPCODE_IF         34
#define GEN4_OPCODE_IFF        35
#define GEN4_OPCODE_ELSE       36
#define GEN4_OPCODE_ENDIF      37
#define GEN4_OPCODE_DO         38
#define GEN4_OPCODE_WHILE      39
#define GEN4_OPCODE_BREAK      40
#define GEN4_OPCODE_CONTINUE   41
#define GEN4_OPCODE_HALT       42
#define GEN4_OPCODE_MSAVE      44
#define GEN4_OPCODE_MRESTORE   45
#define GEN4_OPCODE_PUSH       46
#define GEN4_OPCODE_POP        47
#define GEN4_OPCODE_WAIT       48
#define GEN4_OPCODE_SEND       49
#define GEN4_OPCODE_ADD        64
#define GEN4_OPCODE_MUL        65
#define GEN4_OPCODE_AVG        66
#define GEN4_OPCODE_FRC        67
#define GEN4_OPCODE_RNDU       68
#define GEN4_OPCODE_RNDD       69
#define GEN4_OPCODE_RNDE       70
#define GEN4_OPCODE_RNDZ       71
#define GEN4_OPCODE_MAC        72
#define GEN4_OPCODE_MACH       73
#define GEN4_OPCODE_LZD        74
#define GEN4_OPCODE_SAD2       80
#define GEN4_OPCODE_SADA2      81
#define GEN4_OPCODE_DP4        84
#define GEN4_OPCODE_DPH        85
#define GEN4_OPCODE_DP3        86
#define GEN4_OPCODE_DP2        87
#define GEN4_OPCODE_DPA2       88
#define GEN4_OPCODE_LINE       89
#define GEN4_OPCODE_NOP        126

#define GEN4_PREDICATE_NONE             0
#define GEN4_PREDICATE_NORMAL           1
#define GEN4_PREDICATE_ALIGN1_ANYV             2
#define GEN4_PREDICATE_ALIGN1_ALLV             3
#define GEN4_PREDICATE_ALIGN1_ANY2H            4
#define GEN4_PREDICATE_ALIGN1_ALL2H            5
#define GEN4_PREDICATE_ALIGN1_ANY4H            6
#define GEN4_PREDICATE_ALIGN1_ALL4H            7
#define GEN4_PREDICATE_ALIGN1_ANY8H            8
#define GEN4_PREDICATE_ALIGN1_ALL8H            9
#define GEN4_PREDICATE_ALIGN1_ANY16H           10
#define GEN4_PREDICATE_ALIGN1_ALL16H           11
#define GEN4_PREDICATE_ALIGN16_REPLICATE_X     2
#define GEN4_PREDICATE_ALIGN16_REPLICATE_Y     3
#define GEN4_PREDICATE_ALIGN16_REPLICATE_Z     4
#define GEN4_PREDICATE_ALIGN16_REPLICATE_W     5
#define GEN4_PREDICATE_ALIGN16_ANY4H           6
#define GEN4_PREDICATE_ALIGN16_ALL4H           7

#define GEN4_ARCHITECTURE_REGISTER_FILE    0
#define GEN4_GENERAL_REGISTER_FILE         1
#define GEN4_MESSAGE_REGISTER_FILE         2
#define GEN4_IMMEDIATE_VALUE               3

#define GEN4_REGISTER_TYPE_UD  0
#define GEN4_REGISTER_TYPE_D   1
#define GEN4_REGISTER_TYPE_UW  2
#define GEN4_REGISTER_TYPE_W   3
#define GEN4_REGISTER_TYPE_UB  4
#define GEN4_REGISTER_TYPE_B   5
#define GEN4_REGISTER_TYPE_VF  5	/* packed float vector, immediates only? */
#define GEN4_REGISTER_TYPE_HF  6
#define GEN4_REGISTER_TYPE_V   6	/* packed int vector, immediates only, uword dest only */
#define GEN4_REGISTER_TYPE_F   7

#define GEN4_ARF_NULL                  0x00
#define GEN4_ARF_ADDRESS               0x10
#define GEN4_ARF_ACCUMULATOR           0x20   
#define GEN4_ARF_FLAG                  0x30
#define GEN4_ARF_MASK                  0x40
#define GEN4_ARF_MASK_STACK            0x50
#define GEN4_ARF_MASK_STACK_DEPTH      0x60
#define GEN4_ARF_STATE                 0x70
#define GEN4_ARF_CONTROL               0x80
#define GEN4_ARF_NOTIFICATION_COUNT    0x90
#define GEN4_ARF_IP                    0xA0

#define GEN4_AMASK   0
#define GEN4_IMASK   1
#define GEN4_LMASK   2
#define GEN4_CMASK   3



#define GEN4_THREAD_NORMAL     0
#define GEN4_THREAD_ATOMIC     1
#define GEN4_THREAD_SWITCH     2

#define GEN4_VERTICAL_STRIDE_0                 0
#define GEN4_VERTICAL_STRIDE_1                 1
#define GEN4_VERTICAL_STRIDE_2                 2
#define GEN4_VERTICAL_STRIDE_4                 3
#define GEN4_VERTICAL_STRIDE_8                 4
#define GEN4_VERTICAL_STRIDE_16                5
#define GEN4_VERTICAL_STRIDE_32                6
#define GEN4_VERTICAL_STRIDE_64                7
#define GEN4_VERTICAL_STRIDE_128               8
#define GEN4_VERTICAL_STRIDE_256               9
#define GEN4_VERTICAL_STRIDE_ONE_DIMENSIONAL   0xF

#define GEN4_WIDTH_1       0
#define GEN4_WIDTH_2       1
#define GEN4_WIDTH_4       2
#define GEN4_WIDTH_8       3
#define GEN4_WIDTH_16      4

#define GEN4_STATELESS_BUFFER_BOUNDARY_1K      0
#define GEN4_STATELESS_BUFFER_BOUNDARY_2K      1
#define GEN4_STATELESS_BUFFER_BOUNDARY_4K      2
#define GEN4_STATELESS_BUFFER_BOUNDARY_8K      3
#define GEN4_STATELESS_BUFFER_BOUNDARY_16K     4
#define GEN4_STATELESS_BUFFER_BOUNDARY_32K     5
#define GEN4_STATELESS_BUFFER_BOUNDARY_64K     6
#define GEN4_STATELESS_BUFFER_BOUNDARY_128K    7
#define GEN4_STATELESS_BUFFER_BOUNDARY_256K    8
#define GEN4_STATELESS_BUFFER_BOUNDARY_512K    9
#define GEN4_STATELESS_BUFFER_BOUNDARY_1M      10
#define GEN4_STATELESS_BUFFER_BOUNDARY_2M      11

#define GEN4_POLYGON_FACING_FRONT      0
#define GEN4_POLYGON_FACING_BACK       1

#define GEN4_MESSAGE_TARGET_NULL               0
#define GEN4_MESSAGE_TARGET_MATH               1
#define GEN4_MESSAGE_TARGET_SAMPLER            2
#define GEN4_MESSAGE_TARGET_GATEWAY            3
#define GEN4_MESSAGE_TARGET_DATAPORT_READ      4
#define GEN4_MESSAGE_TARGET_DATAPORT_WRITE     5
#define GEN4_MESSAGE_TARGET_URB                6
#define GEN4_MESSAGE_TARGET_THREAD_SPAWNER     7

#define GEN4_SAMPLER_RETURN_FORMAT_FLOAT32     0
#define GEN4_SAMPLER_RETURN_FORMAT_UINT32      2
#define GEN4_SAMPLER_RETURN_FORMAT_SINT32      3

#define GEN4_SAMPLER_MESSAGE_SIMD8_SAMPLE              0
#define GEN4_SAMPLER_MESSAGE_SIMD16_SAMPLE             0
#define GEN4_SAMPLER_MESSAGE_SIMD16_SAMPLE_BIAS        0
#define GEN4_SAMPLER_MESSAGE_SIMD8_KILLPIX             1
#define GEN4_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD        1
#define GEN4_SAMPLER_MESSAGE_SIMD16_SAMPLE_LOD         1
#define GEN4_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_GRADIENTS  2
#define GEN4_SAMPLER_MESSAGE_SIMD8_SAMPLE_GRADIENTS    2
#define GEN4_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_COMPARE    0
#define GEN4_SAMPLER_MESSAGE_SIMD16_SAMPLE_COMPARE     2
#define GEN4_SAMPLER_MESSAGE_SIMD4X2_RESINFO           2
#define GEN4_SAMPLER_MESSAGE_SIMD8_RESINFO             2
#define GEN4_SAMPLER_MESSAGE_SIMD16_RESINFO            2
#define GEN4_SAMPLER_MESSAGE_SIMD4X2_LD                3
#define GEN4_SAMPLER_MESSAGE_SIMD8_LD                  3
#define GEN4_SAMPLER_MESSAGE_SIMD16_LD                 3

#define GEN4_DATAPORT_OWORD_BLOCK_1_OWORDLOW   0
#define GEN4_DATAPORT_OWORD_BLOCK_1_OWORDHIGH  1
#define GEN4_DATAPORT_OWORD_BLOCK_2_OWORDS     2
#define GEN4_DATAPORT_OWORD_BLOCK_4_OWORDS     3
#define GEN4_DATAPORT_OWORD_BLOCK_8_OWORDS     4

#define GEN4_DATAPORT_OWORD_DUAL_BLOCK_1OWORD     0
#define GEN4_DATAPORT_OWORD_DUAL_BLOCK_4OWORDS    2

#define GEN4_DATAPORT_DWORD_SCATTERED_BLOCK_8DWORDS   2
#define GEN4_DATAPORT_DWORD_SCATTERED_BLOCK_16DWORDS  3

#define GEN4_DATAPORT_READ_MESSAGE_OWORD_BLOCK_READ          0
#define GEN4_DATAPORT_READ_MESSAGE_OWORD_DUAL_BLOCK_READ     1
#define GEN4_DATAPORT_READ_MESSAGE_DWORD_BLOCK_READ          2
#define GEN4_DATAPORT_READ_MESSAGE_DWORD_SCATTERED_READ      3

#define GEN4_DATAPORT_READ_TARGET_DATA_CACHE      0
#define GEN4_DATAPORT_READ_TARGET_RENDER_CACHE    1
#define GEN4_DATAPORT_READ_TARGET_SAMPLER_CACHE   2

#define GEN4_DATAPORT_RENDER_TARGET_WRITE_SIMD16_SINGLE_SOURCE                0
#define GEN4_DATAPORT_RENDER_TARGET_WRITE_SIMD16_SINGLE_SOURCE_REPLICATED     1
#define GEN4_DATAPORT_RENDER_TARGET_WRITE_SIMD8_DUAL_SOURCE_SUBSPAN01         2
#define GEN4_DATAPORT_RENDER_TARGET_WRITE_SIMD8_DUAL_SOURCE_SUBSPAN23         3
#define GEN4_DATAPORT_RENDER_TARGET_WRITE_SIMD8_SINGLE_SOURCE_SUBSPAN01       4

#define GEN4_DATAPORT_WRITE_MESSAGE_OWORD_BLOCK_WRITE                0
#define GEN4_DATAPORT_WRITE_MESSAGE_OWORD_DUAL_BLOCK_WRITE           1
#define GEN4_DATAPORT_WRITE_MESSAGE_DWORD_BLOCK_WRITE                2
#define GEN4_DATAPORT_WRITE_MESSAGE_DWORD_SCATTERED_WRITE            3
#define GEN4_DATAPORT_WRITE_MESSAGE_RENDER_TARGET_WRITE              4
#define GEN4_DATAPORT_WRITE_MESSAGE_STREAMED_VERTEX_BUFFER_WRITE     5
#define GEN4_DATAPORT_WRITE_MESSAGE_FLUSH_RENDER_CACHE               7

#define GEN4_MATH_FUNCTION_INV                              1
#define GEN4_MATH_FUNCTION_LOG                              2
#define GEN4_MATH_FUNCTION_EXP                              3
#define GEN4_MATH_FUNCTION_SQRT                             4
#define GEN4_MATH_FUNCTION_RSQ                              5
#define GEN4_MATH_FUNCTION_SIN                              6 /* was 7 */
#define GEN4_MATH_FUNCTION_COS                              7 /* was 8 */
#define GEN4_MATH_FUNCTION_SINCOS                           8 /* was 6 */
#define GEN4_MATH_FUNCTION_TAN                              9
#define GEN4_MATH_FUNCTION_POW                              10
#define GEN4_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER   11
#define GEN4_MATH_FUNCTION_INT_DIV_QUOTIENT                 12
#define GEN4_MATH_FUNCTION_INT_DIV_REMAINDER                13

#define GEN4_MATH_INTEGER_UNSIGNED     0
#define GEN4_MATH_INTEGER_SIGNED       1

#define GEN4_MATH_PRECISION_FULL        0
#define GEN4_MATH_PRECISION_PARTIAL     1

#define GEN4_MATH_SATURATE_NONE         0
#define GEN4_MATH_SATURATE_SATURATE     1

#define GEN4_MATH_DATA_VECTOR  0
#define GEN4_MATH_DATA_SCALAR  1

#define GEN4_URB_OPCODE_WRITE  0

#define GEN4_URB_SWIZZLE_NONE          0
#define GEN4_URB_SWIZZLE_INTERLEAVE    1
#define GEN4_URB_SWIZZLE_TRANSPOSE     2

#define GEN4_SCRATCH_SPACE_SIZE_1K     0
#define GEN4_SCRATCH_SPACE_SIZE_2K     1
#define GEN4_SCRATCH_SPACE_SIZE_4K     2
#define GEN4_SCRATCH_SPACE_SIZE_8K     3
#define GEN4_SCRATCH_SPACE_SIZE_16K    4
#define GEN4_SCRATCH_SPACE_SIZE_32K    5
#define GEN4_SCRATCH_SPACE_SIZE_64K    6
#define GEN4_SCRATCH_SPACE_SIZE_128K   7
#define GEN4_SCRATCH_SPACE_SIZE_256K   8
#define GEN4_SCRATCH_SPACE_SIZE_512K   9
#define GEN4_SCRATCH_SPACE_SIZE_1M     10
#define GEN4_SCRATCH_SPACE_SIZE_2M     11




#define CMD_URB_FENCE                 0x6000
#define CMD_CONST_BUFFER_STATE        0x6001
#define CMD_CONST_BUFFER              0x6002

#define CMD_STATE_BASE_ADDRESS        0x6101
#define CMD_STATE_INSN_POINTER        0x6102
#define CMD_PIPELINE_SELECT           0x6104

#define CMD_PIPELINED_STATE_POINTERS  0x7800
#define CMD_BINDING_TABLE_PTRS        0x7801
#define CMD_VERTEX_BUFFER             0x7808
#define CMD_VERTEX_ELEMENT            0x7809
#define CMD_INDEX_BUFFER              0x780a
#define CMD_VF_STATISTICS             0x780b

#define CMD_DRAW_RECT                 0x7900
#define CMD_BLEND_CONSTANT_COLOR      0x7901
#define CMD_CHROMA_KEY                0x7904
#define CMD_DEPTH_BUFFER              0x7905
#define CMD_POLY_STIPPLE_OFFSET       0x7906
#define CMD_POLY_STIPPLE_PATTERN      0x7907
#define CMD_LINE_STIPPLE_PATTERN      0x7908
#define CMD_GLOBAL_DEPTH_OFFSET_CLAMP 0x7908

#define CMD_PIPE_CONTROL              0x7a00

#define CMD_3D_PRIM                   0x7b00

#define CMD_MI_FLUSH                  0x0200


/* Various values from the R0 vertex header:
 */
#define R02_PRIM_END    0x1
#define R02_PRIM_START  0x2

/* media pipeline */

#define GEN4_VFE_MODE_GENERIC		0x0
#define GEN4_VFE_MODE_VLD_MPEG2		0x1
#define GEN4_VFE_MODE_IS			0x2
#define GEN4_VFE_MODE_AVC_MC		0x4
#define GEN4_VFE_MODE_AVC_IT		0x7
#define GEN4_VFE_MODE_VC1_IT		0xB

#define GEN4_VFE_DEBUG_COUNTER_FREE	0
#define GEN4_VFE_DEBUG_COUNTER_FROZEN	1
#define GEN4_VFE_DEBUG_COUNTER_ONCE	2
#define GEN4_VFE_DEBUG_COUNTER_ALWAYS	3

/* VLD_STATE */
#define GEN4_MPEG_TOP_FIELD		1
#define GEN4_MPEG_BOTTOM_FIELD		2
#define GEN4_MPEG_FRAME			3
#define GEN4_MPEG_QSCALE_LINEAR		0
#define GEN4_MPEG_QSCALE_NONLINEAR	1
#define GEN4_MPEG_ZIGZAG_SCAN		0
#define GEN4_MPEG_ALTER_VERTICAL_SCAN	1
#define GEN4_MPEG_I_PICTURE		1
#define GEN4_MPEG_P_PICTURE		2
#define GEN4_MPEG_B_PICTURE		3

/* Command packets:
 */
struct header
{
   unsigned int length:16;
   unsigned int opcode:16;
};


union header_union
{
   struct header bits;
   unsigned int dword;
};

struct gen4_3d_control
{   
   struct 
   {
      unsigned int length:8;
      unsigned int notify_enable:1;
      unsigned int pad:3;
      unsigned int wc_flush_enable:1; 
      unsigned int depth_stall_enable:1; 
      unsigned int operation:2; 
      unsigned int opcode:16; 
   } header;
   
   struct
   {
      unsigned int pad:2;
      unsigned int dest_addr_type:1; 
      unsigned int dest_addr:29; 
   } dest;
   
   unsigned int dword2;   
   unsigned int dword3;   
};


struct gen4_3d_primitive
{
   struct
   {
      unsigned int length:8; 
      unsigned int pad:2;
      unsigned int topology:5; 
      unsigned int indexed:1; 
      unsigned int opcode:16; 
   } header;

   unsigned int verts_per_instance;  
   unsigned int start_vert_location;  
   unsigned int instance_count;  
   unsigned int start_instance_location;  
   unsigned int base_vert_location;  
};

/* These seem to be passed around as function args, so it works out
 * better to keep them as #defines:
 */
#define GEN4_FLUSH_READ_CACHE           0x1
#define GEN4_FLUSH_STATE_CACHE          0x2
#define GEN4_INHIBIT_FLUSH_RENDER_CACHE 0x4
#define GEN4_FLUSH_SNAPSHOT_COUNTERS    0x8

struct gen4_mi_flush
{
   unsigned int flags:4;
   unsigned int pad:12;
   unsigned int opcode:16;
};

struct gen4_vf_statistics
{
   unsigned int statistics_enable:1;
   unsigned int pad:15;
   unsigned int opcode:16;
};



struct gen4_binding_table_pointers
{
   struct header header;
   unsigned int vs; 
   unsigned int gs; 
   unsigned int clp; 
   unsigned int sf; 
   unsigned int wm; 
};


struct gen4_blend_constant_color
{
   struct header header;
   float blend_constant_color[4];  
};


struct gen4_depthbuffer
{
   union header_union header;
   
   union {
      struct {
	 unsigned int pitch:18; 
	 unsigned int format:3; 
	 unsigned int pad:4;
	 unsigned int depth_offset_disable:1; 
	 unsigned int tile_walk:1; 
	 unsigned int tiled_surface:1; 
	 unsigned int pad2:1;
	 unsigned int surface_type:3; 
      } bits;
      unsigned int dword;
   } dword1;
   
   unsigned int dword2_base_addr; 
 
   union {
      struct {
	 unsigned int pad:1;
	 unsigned int mipmap_layout:1; 
	 unsigned int lod:4; 
	 unsigned int width:13; 
	 unsigned int height:13; 
      } bits;
      unsigned int dword;
   } dword3;

   union {
      struct {
	 unsigned int pad:12;
	 unsigned int min_array_element:9; 
	 unsigned int depth:11; 
      } bits;
      unsigned int dword;
   } dword4;
};

struct gen4_drawrect
{
   struct header header;
   unsigned int xmin:16; 
   unsigned int ymin:16; 
   unsigned int xmax:16; 
   unsigned int ymax:16; 
   unsigned int xorg:16;  
   unsigned int yorg:16;  
};




struct gen4_global_depth_offset_clamp
{
   struct header header;
   float depth_offset_clamp;  
};

struct gen4_indexbuffer
{   
   union {
      struct
      {
	 unsigned int length:8; 
	 unsigned int index_format:2; 
	 unsigned int cut_index_enable:1; 
	 unsigned int pad:5; 
	 unsigned int opcode:16; 
      } bits;
      unsigned int dword;

   } header;

   unsigned int buffer_start; 
   unsigned int buffer_end; 
};


struct gen4_line_stipple
{   
   struct header header;
  
   struct
   {
      unsigned int pattern:16; 
      unsigned int pad:16;
   } bits0;
   
   struct
   {
      unsigned int repeat_count:9; 
      unsigned int pad:7;
      unsigned int inverse_repeat_count:16; 
   } bits1;
};


struct gen4_pipelined_state_pointers
{
   struct header header;
   
   struct {
      unsigned int pad:5;
      unsigned int offset:27; 
   } vs;
   
   struct
   {
      unsigned int enable:1;
      unsigned int pad:4;
      unsigned int offset:27; 
   } gs;
   
   struct
   {
      unsigned int enable:1;
      unsigned int pad:4;
      unsigned int offset:27; 
   } clp;
   
   struct
   {
      unsigned int pad:5;
      unsigned int offset:27; 
   } sf;

   struct
   {
      unsigned int pad:5;
      unsigned int offset:27; 
   } wm;
   
   struct
   {
      unsigned int pad:5;
      unsigned int offset:27; /* KW: check me! */
   } cc;
};


struct gen4_polygon_stipple_offset
{
   struct header header;

   struct {
      unsigned int y_offset:5; 
      unsigned int pad:3;
      unsigned int x_offset:5; 
      unsigned int pad0:19;
   } bits0;
};



struct gen4_polygon_stipple
{
   struct header header;
   unsigned int stipple[32];
};



struct gen4_pipeline_select
{
   struct
   {
      unsigned int pipeline_select:1;   
      unsigned int pad:15;
      unsigned int opcode:16;   
   } header;
};


struct gen4_pipe_control
{
   struct
   {
      unsigned int length:8;
      unsigned int notify_enable:1;
      unsigned int pad:2;
      unsigned int instruction_state_cache_flush_enable:1;
      unsigned int write_cache_flush_enable:1;
      unsigned int depth_stall_enable:1;
      unsigned int post_sync_operation:2;

      unsigned int opcode:16;
   } header;

   struct
   {
      unsigned int pad:2;
      unsigned int dest_addr_type:1;
      unsigned int dest_addr:29;
   } bits1;

   unsigned int data0;
   unsigned int data1;
};


struct gen4_urb_fence
{
   struct
   {
      unsigned int length:8;   
      unsigned int vs_realloc:1;   
      unsigned int gs_realloc:1;   
      unsigned int clp_realloc:1;   
      unsigned int sf_realloc:1;   
      unsigned int vfe_realloc:1;   
      unsigned int cs_realloc:1;   
      unsigned int pad:2;
      unsigned int opcode:16;   
   } header;

   struct
   {
      unsigned int vs_fence:10;  
      unsigned int gs_fence:10;  
      unsigned int clp_fence:10;  
      unsigned int pad:2;
   } bits0;

   struct
   {
      unsigned int sf_fence:10;  
      unsigned int vf_fence:10;  
      unsigned int cs_fence:10;  
      unsigned int pad:2;
   } bits1;
};

struct gen4_constant_buffer_state /* previously gen4_command_streamer */
{
   struct header header;

   struct
   {
      unsigned int nr_urb_entries:3;   
      unsigned int pad:1;
      unsigned int urb_entry_size:5;   
      unsigned int pad0:23;
   } bits0;
};

struct gen4_constant_buffer
{
   struct
   {
      unsigned int length:8;   
      unsigned int valid:1;   
      unsigned int pad:7;
      unsigned int opcode:16;   
   } header;

   struct
   {
      unsigned int buffer_length:6;   
      unsigned int buffer_address:26;  
   } bits0;
};

struct gen4_state_base_address
{
   struct header header;

   struct
   {
      unsigned int modify_enable:1;
      unsigned int pad:4;
      unsigned int general_state_address:27;  
   } bits0;

   struct
   {
      unsigned int modify_enable:1;
      unsigned int pad:4;
      unsigned int surface_state_address:27;  
   } bits1;

   struct
   {
      unsigned int modify_enable:1;
      unsigned int pad:4;
      unsigned int indirect_object_state_address:27;  
   } bits2;

   struct
   {
      unsigned int modify_enable:1;
      unsigned int pad:11;
      unsigned int general_state_upper_bound:20;  
   } bits3;

   struct
   {
      unsigned int modify_enable:1;
      unsigned int pad:11;
      unsigned int indirect_object_state_upper_bound:20;  
   } bits4;
};

struct gen4_state_prefetch
{
   struct header header;

   struct
   {
      unsigned int prefetch_count:3;   
      unsigned int pad:3;
      unsigned int prefetch_pointer:26;  
   } bits0;
};

struct gen4_system_instruction_pointer
{
   struct header header;

   struct
   {
      unsigned int pad:4;
      unsigned int system_instruction_pointer:28;  
   } bits0;
};




/* State structs for the various fixed function units:
 */


struct thread0
{
   unsigned int pad0:1;
   unsigned int grf_reg_count:3; 
   unsigned int pad1:2;
   unsigned int kernel_start_pointer:26; 
};

struct thread1
{
   unsigned int ext_halt_exception_enable:1; 
   unsigned int sw_exception_enable:1; 
   unsigned int mask_stack_exception_enable:1; 
   unsigned int timeout_exception_enable:1; 
   unsigned int illegal_op_exception_enable:1; 
   unsigned int pad0:3;
   unsigned int depth_coef_urb_read_offset:6;	/* WM only */
   unsigned int pad1:2;
   unsigned int floating_point_mode:1; 
   unsigned int thread_priority:1; 
   unsigned int binding_table_entry_count:8; 
   unsigned int pad3:5;
   unsigned int single_program_flow:1; 
};

struct thread2
{
   unsigned int per_thread_scratch_space:4; 
   unsigned int pad0:6;
   unsigned int scratch_space_base_pointer:22; 
};

   
struct thread3
{
   unsigned int dispatch_grf_start_reg:4; 
   unsigned int urb_entry_read_offset:6; 
   unsigned int pad0:1;
   unsigned int urb_entry_read_length:6; 
   unsigned int pad1:1;
   unsigned int const_urb_entry_read_offset:6; 
   unsigned int pad2:1;
   unsigned int const_urb_entry_read_length:6; 
   unsigned int pad3:1;
};



struct gen4_clip_unit_state
{
   struct thread0 thread0;
   struct thread1 thread1;
   struct thread2 thread2;
   struct thread3 thread3;

   struct
   {
      unsigned int pad0:9;
      unsigned int gs_output_stats:1; /* not always */
      unsigned int stats_enable:1; 
      unsigned int nr_urb_entries:7; 
      unsigned int pad1:1;
      unsigned int urb_entry_allocation_size:5; 
      unsigned int pad2:1;
      unsigned int max_threads:6; 	/* may be less */
      unsigned int pad3:1;
   } thread4;   
      
   struct
   {
      unsigned int pad0:13;
      unsigned int clip_mode:3; 
      unsigned int userclip_enable_flags:8; 
      unsigned int userclip_must_clip:1; 
      unsigned int pad1:1;
      unsigned int guard_band_enable:1; 
      unsigned int viewport_z_clip_enable:1; 
      unsigned int viewport_xy_clip_enable:1; 
      unsigned int vertex_position_space:1; 
      unsigned int api_mode:1; 
      unsigned int pad2:1;
   } clip5;
   
   struct
   {
      unsigned int pad0:5;
      unsigned int clipper_viewport_state_ptr:27; 
   } clip6;

   
   float viewport_xmin;  
   float viewport_xmax;  
   float viewport_ymin;  
   float viewport_ymax;  
};



struct gen4_cc_unit_state
{
   struct
   {
      unsigned int pad0:3;
      unsigned int bf_stencil_pass_depth_pass_op:3; 
      unsigned int bf_stencil_pass_depth_fail_op:3; 
      unsigned int bf_stencil_fail_op:3; 
      unsigned int bf_stencil_func:3; 
      unsigned int bf_stencil_enable:1; 
      unsigned int pad1:2;
      unsigned int stencil_write_enable:1; 
      unsigned int stencil_pass_depth_pass_op:3; 
      unsigned int stencil_pass_depth_fail_op:3; 
      unsigned int stencil_fail_op:3; 
      unsigned int stencil_func:3; 
      unsigned int stencil_enable:1; 
   } cc0;

   
   struct
   {
      unsigned int bf_stencil_ref:8; 
      unsigned int stencil_write_mask:8; 
      unsigned int stencil_test_mask:8; 
      unsigned int stencil_ref:8; 
   } cc1;

   
   struct
   {
      unsigned int logicop_enable:1; 
      unsigned int pad0:10;
      unsigned int depth_write_enable:1; 
      unsigned int depth_test_function:3; 
      unsigned int depth_test:1; 
      unsigned int bf_stencil_write_mask:8; 
      unsigned int bf_stencil_test_mask:8; 
   } cc2;

   
   struct
   {
      unsigned int pad0:8;
      unsigned int alpha_test_func:3; 
      unsigned int alpha_test:1; 
      unsigned int blend_enable:1; 
      unsigned int ia_blend_enable:1; 
      unsigned int pad1:1;
      unsigned int alpha_test_format:1;
      unsigned int pad2:16;
   } cc3;
   
   struct
   {
      unsigned int pad0:5; 
      unsigned int cc_viewport_state_offset:27; 
   } cc4;
   
   struct
   {
      unsigned int pad0:2;
      unsigned int ia_dest_blend_factor:5; 
      unsigned int ia_src_blend_factor:5; 
      unsigned int ia_blend_function:3; 
      unsigned int statistics_enable:1; 
      unsigned int logicop_func:4; 
      unsigned int pad1:11;
      unsigned int dither_enable:1; 
   } cc5;

   struct
   {
      unsigned int clamp_post_alpha_blend:1; 
      unsigned int clamp_pre_alpha_blend:1; 
      unsigned int clamp_range:2; 
      unsigned int pad0:11;
      unsigned int y_dither_offset:2; 
      unsigned int x_dither_offset:2; 
      unsigned int dest_blend_factor:5; 
      unsigned int src_blend_factor:5; 
      unsigned int blend_function:3; 
   } cc6;

   struct {
      union {
	 float f;  
	 unsigned char ub[4];
      } alpha_ref;
   } cc7;
};



struct gen4_sf_unit_state
{
   struct thread0 thread0;
   struct {
      unsigned int pad0:7;
      unsigned int sw_exception_enable:1; 
      unsigned int pad1:3;
      unsigned int mask_stack_exception_enable:1; 
      unsigned int pad2:1;
      unsigned int illegal_op_exception_enable:1; 
      unsigned int pad3:2;
      unsigned int floating_point_mode:1; 
      unsigned int thread_priority:1; 
      unsigned int binding_table_entry_count:8; 
      unsigned int pad4:5;
      unsigned int single_program_flow:1; 
   } sf1;
   
   struct thread2 thread2;
   struct thread3 thread3;

   struct
   {
      unsigned int pad0:10;
      unsigned int stats_enable:1; 
      unsigned int nr_urb_entries:7; 
      unsigned int pad1:1;
      unsigned int urb_entry_allocation_size:5; 
      unsigned int pad2:1;
      unsigned int max_threads:6; 
      unsigned int pad3:1;
   } thread4;   

   struct
   {
      unsigned int front_winding:1; 
      unsigned int viewport_transform:1; 
      unsigned int pad0:3;
      unsigned int sf_viewport_state_offset:27; 
   } sf5;
   
   struct
   {
      unsigned int pad0:9;
      unsigned int dest_org_vbias:4; 
      unsigned int dest_org_hbias:4; 
      unsigned int scissor:1; 
      unsigned int disable_2x2_trifilter:1; 
      unsigned int disable_zero_pix_trifilter:1; 
      unsigned int point_rast_rule:2; 
      unsigned int line_endcap_aa_region_width:2; 
      unsigned int line_width:4; 
      unsigned int fast_scissor_disable:1; 
      unsigned int cull_mode:2; 
      unsigned int aa_enable:1; 
   } sf6;

   struct
   {
      unsigned int point_size:11; 
      unsigned int use_point_size_state:1; 
      unsigned int subpixel_precision:1; 
      unsigned int sprite_point:1; 
      unsigned int pad0:11;
      unsigned int trifan_pv:2; 
      unsigned int linestrip_pv:2; 
      unsigned int tristrip_pv:2; 
      unsigned int line_last_pixel_enable:1; 
   } sf7;

};


struct gen4_gs_unit_state
{
   struct thread0 thread0;
   struct thread1 thread1;
   struct thread2 thread2;
   struct thread3 thread3;

   struct
   {
      unsigned int pad0:10;
      unsigned int stats_enable:1; 
      unsigned int nr_urb_entries:7; 
      unsigned int pad1:1;
      unsigned int urb_entry_allocation_size:5; 
      unsigned int pad2:1;
      unsigned int max_threads:1; 
      unsigned int pad3:6;
   } thread4;   
      
   struct
   {
      unsigned int sampler_count:3; 
      unsigned int pad0:2;
      unsigned int sampler_state_pointer:27; 
   } gs5;

   
   struct
   {
      unsigned int max_vp_index:4; 
      unsigned int pad0:26;
      unsigned int reorder_enable:1; 
      unsigned int pad1:1;
   } gs6;
};


struct gen4_vs_unit_state
{
   struct thread0 thread0;
   struct thread1 thread1;
   struct thread2 thread2;
   struct thread3 thread3;
   
   struct
   {
      unsigned int pad0:10;
      unsigned int stats_enable:1; 
      unsigned int nr_urb_entries:7; 
      unsigned int pad1:1;
      unsigned int urb_entry_allocation_size:5; 
      unsigned int pad2:1;
      unsigned int max_threads:4; 
      unsigned int pad3:3;
   } thread4;   

   struct
   {
      unsigned int sampler_count:3; 
      unsigned int pad0:2;
      unsigned int sampler_state_pointer:27; 
   } vs5;

   struct
   {
      unsigned int vs_enable:1; 
      unsigned int vert_cache_disable:1; 
      unsigned int pad0:30;
   } vs6;
};


struct gen4_wm_unit_state
{
   struct thread0 thread0;
   struct thread1 thread1;
   struct thread2 thread2;
   struct thread3 thread3;
   
   struct {
      unsigned int stats_enable:1; 
      unsigned int pad0:1;
      unsigned int sampler_count:3; 
      unsigned int sampler_state_pointer:27; 
   } wm4;
   
   struct
   {
      unsigned int enable_8_pix:1; 
      unsigned int enable_16_pix:1; 
      unsigned int enable_32_pix:1; 
      unsigned int pad0:7;
      unsigned int legacy_global_depth_bias:1; 
      unsigned int line_stipple:1; 
      unsigned int depth_offset:1; 
      unsigned int polygon_stipple:1; 
      unsigned int line_aa_region_width:2; 
      unsigned int line_endcap_aa_region_width:2; 
      unsigned int early_depth_test:1; 
      unsigned int thread_dispatch_enable:1; 
      unsigned int program_uses_depth:1; 
      unsigned int program_computes_depth:1; 
      unsigned int program_uses_killpixel:1; 
      unsigned int legacy_line_rast: 1; 
      unsigned int transposed_urb_read:1; 
      unsigned int max_threads:7; 
   } wm5;
   
   float global_depth_offset_constant;  
   float global_depth_offset_scale;   

   struct {
      unsigned int pad0:1;
      unsigned int grf_reg_count_1:3; 
      unsigned int pad1:2;
      unsigned int kernel_start_pointer_1:26;
   } wm8;       

   struct {
      unsigned int pad0:1;
      unsigned int grf_reg_count_2:3; 
      unsigned int pad1:2;
      unsigned int kernel_start_pointer_2:26;
   } wm9;       

   struct {
      unsigned int pad0:1;
      unsigned int grf_reg_count_3:3; 
      unsigned int pad1:2;
      unsigned int kernel_start_pointer_3:26;
   } wm10;       
};

struct gen4_wm_unit_state_padded {
	struct gen4_wm_unit_state state;
	char pad[64 - sizeof(struct gen4_wm_unit_state)];
};

/* The hardware supports two different modes for border color. The
 * default (OpenGL) mode uses floating-point color channels, while the
 * legacy mode uses 4 bytes.
 *
 * More significantly, the legacy mode respects the components of the
 * border color for channels not present in the source, (whereas the
 * default mode will ignore the border color's alpha channel and use
 * alpha==1 for an RGB source, for example).
 *
 * The legacy mode matches the semantics specified by the Render
 * extension.
 */
struct gen4_sampler_default_border_color {
   float color[4];
};

struct gen4_sampler_legacy_border_color {
   uint8_t color[4];
};

struct gen4_sampler_state
{
   
   struct
   {
      unsigned int shadow_function:3; 
      unsigned int lod_bias:11; 
      unsigned int min_filter:3; 
      unsigned int mag_filter:3; 
      unsigned int mip_filter:2; 
      unsigned int base_level:5; 
      unsigned int pad:1;
      unsigned int lod_preclamp:1; 
      unsigned int border_color_mode:1; 
      unsigned int pad0:1;
      unsigned int disable:1; 
   } ss0;

   struct
   {
      unsigned int r_wrap_mode:3; 
      unsigned int t_wrap_mode:3; 
      unsigned int s_wrap_mode:3; 
      unsigned int pad:3;
      unsigned int max_lod:10; 
      unsigned int min_lod:10; 
   } ss1;

   
   struct
   {
      unsigned int pad:5;
      unsigned int border_color_pointer:27; 
   } ss2;
   
   struct
   {
      unsigned int pad:19;
      unsigned int max_aniso:3; 
      unsigned int chroma_key_mode:1; 
      unsigned int chroma_key_index:2; 
      unsigned int chroma_key_enable:1; 
      unsigned int monochrome_filter_width:3; 
      unsigned int monochrome_filter_height:3; 
   } ss3;
};


struct gen4_clipper_viewport
{
   float xmin;  
   float xmax;  
   float ymin;  
   float ymax;  
};

struct gen4_cc_viewport
{
   float min_depth;  
   float max_depth;  
};

struct gen4_sf_viewport
{
   struct {
      float m00;  
      float m11;  
      float m22;  
      float m30;  
      float m31;  
      float m32;  
   } viewport;

   struct {
      short xmin;
      short ymin;
      short xmax;
      short ymax;
   } scissor;
};

/* Documented in the subsystem/shared-functions/sampler chapter...
 */
struct gen4_surface_state
{
   struct {
      unsigned int cube_pos_z:1; 
      unsigned int cube_neg_z:1; 
      unsigned int cube_pos_y:1; 
      unsigned int cube_neg_y:1; 
      unsigned int cube_pos_x:1; 
      unsigned int cube_neg_x:1; 
      unsigned int pad:3;
      unsigned int render_cache_read_mode:1;
      unsigned int mipmap_layout_mode:1; 
      unsigned int vert_line_stride_ofs:1; 
      unsigned int vert_line_stride:1; 
      unsigned int color_blend:1; 
      unsigned int writedisable_blue:1; 
      unsigned int writedisable_green:1; 
      unsigned int writedisable_red:1; 
      unsigned int writedisable_alpha:1; 
      unsigned int surface_format:9; 
      unsigned int data_return_format:1; 
      unsigned int pad0:1;
      unsigned int surface_type:3; 
   } ss0;
   
   struct {
      unsigned int base_addr;  
   } ss1;
   
   struct {
      unsigned int render_target_rotation:2;
      unsigned int mip_count:4; 
      unsigned int width:13; 
      unsigned int height:13; 
   } ss2;

   struct {
      unsigned int tile_walk:1; 
      unsigned int tiled_surface:1; 
      unsigned int pad:1; 
      unsigned int pitch:18; 
      unsigned int depth:11; 
   } ss3;
   
   struct {
      unsigned int pad:19;
      unsigned int min_array_elt:9; 
      unsigned int min_lod:4; 
   } ss4;

   struct {
       unsigned int pad:20;
       unsigned int y_offset:4;
       unsigned int pad2:1;
       unsigned int x_offset:7;
   } ss5;
};



struct gen4_vertex_buffer_state
{
   struct {
      unsigned int pitch:11; 
      unsigned int pad:15;
      unsigned int access_type:1; 
      unsigned int vb_index:5; 
   } vb0;
   
   unsigned int start_addr; 
   unsigned int max_index;   
#if 1
   unsigned int instance_data_step_rate; /* not included for sequential/random vertices? */
#endif
};

#define GEN4_VBP_MAX 17

struct gen4_vb_array_state {
   struct header header;
   struct gen4_vertex_buffer_state vb[GEN4_VBP_MAX];
};


struct gen4_vertex_element_state
{
   struct
   {
      unsigned int src_offset:11; 
      unsigned int pad:5;
      unsigned int src_format:9; 
      unsigned int pad0:1;
      unsigned int valid:1; 
      unsigned int vertex_buffer_index:5; 
   } ve0;
   
   struct
   {
      unsigned int dst_offset:8; 
      unsigned int pad:8;
      unsigned int vfcomponent3:4; 
      unsigned int vfcomponent2:4; 
      unsigned int vfcomponent1:4; 
      unsigned int vfcomponent0:4; 
   } ve1;
};

#define GEN4_VEP_MAX 18

struct gen4_vertex_element_packet {
   struct header header;
   struct gen4_vertex_element_state ve[GEN4_VEP_MAX]; /* note: less than _TNL_ATTRIB_MAX */
};


struct gen4_urb_immediate {
   unsigned int opcode:4;
   unsigned int offset:6;
   unsigned int swizzle_control:2; 
   unsigned int pad:1;
   unsigned int allocate:1;
   unsigned int used:1;
   unsigned int complete:1;
   unsigned int response_length:4;
   unsigned int msg_length:4;
   unsigned int msg_target:4;
   unsigned int pad1:3;
   unsigned int end_of_thread:1;
};

/* Instruction format for the execution units:
 */
 
struct gen4_instruction
{
   struct 
   {
      unsigned int opcode:7;
      unsigned int pad:1;
      unsigned int access_mode:1;
      unsigned int mask_control:1;
      unsigned int dependency_control:2;
      unsigned int compression_control:2;
      unsigned int thread_control:2;
      unsigned int predicate_control:4;
      unsigned int predicate_inverse:1;
      unsigned int execution_size:3;
      unsigned int destreg__conditonalmod:4; /* destreg - send, conditionalmod - others */
      unsigned int pad0:2;
      unsigned int debug_control:1;
      unsigned int saturate:1;
   } header;

   union {
      struct
      {
	 unsigned int dest_reg_file:2;
	 unsigned int dest_reg_type:3;
	 unsigned int src0_reg_file:2;
	 unsigned int src0_reg_type:3;
	 unsigned int src1_reg_file:2;
	 unsigned int src1_reg_type:3;
	 unsigned int pad:1;
	 unsigned int dest_subreg_nr:5;
	 unsigned int dest_reg_nr:8;
	 unsigned int dest_horiz_stride:2;
	 unsigned int dest_address_mode:1;
      } da1;

      struct
      {
	 unsigned int dest_reg_file:2;
	 unsigned int dest_reg_type:3;
	 unsigned int src0_reg_file:2;
	 unsigned int src0_reg_type:3;
	 unsigned int pad:6;
	 int dest_indirect_offset:10;	/* offset against the deref'd address reg */
	 unsigned int dest_subreg_nr:3; /* subnr for the address reg a0.x */
	 unsigned int dest_horiz_stride:2;
	 unsigned int dest_address_mode:1;
      } ia1;

      struct
      {
	 unsigned int dest_reg_file:2;
	 unsigned int dest_reg_type:3;
	 unsigned int src0_reg_file:2;
	 unsigned int src0_reg_type:3;
	 unsigned int src1_reg_file:2;
	 unsigned int src1_reg_type:3;
	 unsigned int pad0:1;
	 unsigned int dest_writemask:4;
	 unsigned int dest_subreg_nr:1;
	 unsigned int dest_reg_nr:8;
	 unsigned int pad1:2;
	 unsigned int dest_address_mode:1;
      } da16;

      struct
      {
	 unsigned int dest_reg_file:2;
	 unsigned int dest_reg_type:3;
	 unsigned int src0_reg_file:2;
	 unsigned int src0_reg_type:3;
	 unsigned int pad0:6;
	 unsigned int dest_writemask:4;
	 int dest_indirect_offset:6;
	 unsigned int dest_subreg_nr:3;
	 unsigned int pad1:2;
	 unsigned int dest_address_mode:1;
      } ia16;
   } bits1;


   union {
      struct
      {
	 unsigned int src0_subreg_nr:5;
	 unsigned int src0_reg_nr:8;
	 unsigned int src0_abs:1;
	 unsigned int src0_negate:1;
	 unsigned int src0_address_mode:1;
	 unsigned int src0_horiz_stride:2;
	 unsigned int src0_width:3;
	 unsigned int src0_vert_stride:4;
	 unsigned int flag_reg_nr:1;
	 unsigned int pad:6;
      } da1;

      struct
      {
	 int src0_indirect_offset:10;
	 unsigned int src0_subreg_nr:3;
	 unsigned int src0_abs:1;
	 unsigned int src0_negate:1;
	 unsigned int src0_address_mode:1;
	 unsigned int src0_horiz_stride:2;
	 unsigned int src0_width:3;
	 unsigned int src0_vert_stride:4;
	 unsigned int flag_reg_nr:1;
	 unsigned int pad:6;	
      } ia1;

      struct
      {
	 unsigned int src0_swz_x:2;
	 unsigned int src0_swz_y:2;
	 unsigned int src0_subreg_nr:1;
	 unsigned int src0_reg_nr:8;
	 unsigned int src0_abs:1;
	 unsigned int src0_negate:1;
	 unsigned int src0_address_mode:1;
	 unsigned int src0_swz_z:2;
	 unsigned int src0_swz_w:2;
	 unsigned int pad0:1;
	 unsigned int src0_vert_stride:4;
	 unsigned int flag_reg_nr:1;
	 unsigned int pad1:6;
      } da16;

      struct
      {
	 unsigned int src0_swz_x:2;
	 unsigned int src0_swz_y:2;
	 int src0_indirect_offset:6;
	 unsigned int src0_subreg_nr:3;
	 unsigned int src0_abs:1;
	 unsigned int src0_negate:1;
	 unsigned int src0_address_mode:1;
	 unsigned int src0_swz_z:2;
	 unsigned int src0_swz_w:2;
	 unsigned int pad0:1;
	 unsigned int src0_vert_stride:4;
	 unsigned int flag_reg_nr:1;
	 unsigned int pad1:6;
      } ia16;

   } bits2;

   union
   {
      struct
      {
	 unsigned int src1_subreg_nr:5;
	 unsigned int src1_reg_nr:8;
	 unsigned int src1_abs:1;
	 unsigned int src1_negate:1;
	 unsigned int pad:1;
	 unsigned int src1_horiz_stride:2;
	 unsigned int src1_width:3;
	 unsigned int src1_vert_stride:4;
	 unsigned int pad0:7;
      } da1;

      struct
      {
	 unsigned int src1_swz_x:2;
	 unsigned int src1_swz_y:2;
	 unsigned int src1_subreg_nr:1;
	 unsigned int src1_reg_nr:8;
	 unsigned int src1_abs:1;
	 unsigned int src1_negate:1;
	 unsigned int pad0:1;
	 unsigned int src1_swz_z:2;
	 unsigned int src1_swz_w:2;
	 unsigned int pad1:1;
	 unsigned int src1_vert_stride:4;
	 unsigned int pad2:7;
      } da16;

      struct
      {
	 int  src1_indirect_offset:10;
	 unsigned int src1_subreg_nr:3;
	 unsigned int src1_abs:1;
	 unsigned int src1_negate:1;
	 unsigned int pad0:1;
	 unsigned int src1_horiz_stride:2;
	 unsigned int src1_width:3;
	 unsigned int src1_vert_stride:4;
	 unsigned int flag_reg_nr:1;
	 unsigned int pad1:6;	
      } ia1;

      struct
      {
	 unsigned int src1_swz_x:2;
	 unsigned int src1_swz_y:2;
	 int  src1_indirect_offset:6;
	 unsigned int src1_subreg_nr:3;
	 unsigned int src1_abs:1;
	 unsigned int src1_negate:1;
	 unsigned int pad0:1;
	 unsigned int src1_swz_z:2;
	 unsigned int src1_swz_w:2;
	 unsigned int pad1:1;
	 unsigned int src1_vert_stride:4;
	 unsigned int flag_reg_nr:1;
	 unsigned int pad2:6;
      } ia16;


      struct
      {
	 int  jump_count:16;	/* note: signed */
	 unsigned int  pop_count:4;
	 unsigned int  pad0:12;
      } if_else;

      struct {
	 unsigned int function:4;
	 unsigned int int_type:1;
	 unsigned int precision:1;
	 unsigned int saturate:1;
	 unsigned int data_type:1;
	 unsigned int pad0:8;
	 unsigned int response_length:4;
	 unsigned int msg_length:4;
	 unsigned int msg_target:4;
	 unsigned int pad1:3;
	 unsigned int end_of_thread:1;
      } math;

      struct {
	 unsigned int binding_table_index:8;
	 unsigned int sampler:4;
	 unsigned int return_format:2; 
	 unsigned int msg_type:2;   
	 unsigned int response_length:4;
	 unsigned int msg_length:4;
	 unsigned int msg_target:4;
	 unsigned int pad1:3;
	 unsigned int end_of_thread:1;
      } sampler;

      struct gen4_urb_immediate urb;

      struct {
	 unsigned int binding_table_index:8;
	 unsigned int msg_control:4;  
	 unsigned int msg_type:2;  
	 unsigned int target_cache:2;    
	 unsigned int response_length:4;
	 unsigned int msg_length:4;
	 unsigned int msg_target:4;
	 unsigned int pad1:3;
	 unsigned int end_of_thread:1;
      } dp_read;

      struct {
	 unsigned int binding_table_index:8;
	 unsigned int msg_control:3;
	 unsigned int pixel_scoreboard_clear:1;
	 unsigned int msg_type:3;    
	 unsigned int send_commit_msg:1;
	 unsigned int response_length:4;
	 unsigned int msg_length:4;
	 unsigned int msg_target:4;
	 unsigned int pad1:3;
	 unsigned int end_of_thread:1;
      } dp_write;

      struct {
	 unsigned int pad:16;
	 unsigned int response_length:4;
	 unsigned int msg_length:4;
	 unsigned int msg_target:4;
	 unsigned int pad1:3;
	 unsigned int end_of_thread:1;
      } generic;

      unsigned int ud;
   } bits3;
};

/* media pipeline */

struct gen4_vfe_state {
    struct {
	unsigned int per_thread_scratch_space:4;
	unsigned int pad3:3;
	unsigned int extend_vfe_state_present:1;
	unsigned int pad2:2;
	unsigned int scratch_base:22;
    } vfe0;

    struct {
	unsigned int debug_counter_control:2;
	unsigned int children_present:1;
	unsigned int vfe_mode:4;
	unsigned int pad2:2;
	unsigned int num_urb_entries:7;
	unsigned int urb_entry_alloc_size:9;
	unsigned int max_threads:7;
    } vfe1;

    struct {
	unsigned int pad4:4;
	unsigned int interface_descriptor_base:28;
    } vfe2;
};

struct gen4_vld_state {
    struct {
	unsigned int pad6:6;
	unsigned int scan_order:1;
	unsigned int intra_vlc_format:1;
	unsigned int quantizer_scale_type:1;
	unsigned int concealment_motion_vector:1;
	unsigned int frame_predict_frame_dct:1;
	unsigned int top_field_first:1;
	unsigned int picture_structure:2;
	unsigned int intra_dc_precision:2;
	unsigned int f_code_0_0:4;
	unsigned int f_code_0_1:4;
	unsigned int f_code_1_0:4;
	unsigned int f_code_1_1:4;
    } vld0;

    struct {
	unsigned int pad2:9;
	unsigned int picture_coding_type:2;
	unsigned int pad:21;
    } vld1;

    struct {
	unsigned int index_0:4;
	unsigned int index_1:4;
	unsigned int index_2:4;
	unsigned int index_3:4;
	unsigned int index_4:4;
	unsigned int index_5:4;
	unsigned int index_6:4;
	unsigned int index_7:4;
    } desc_remap_table0;

    struct {
	unsigned int index_8:4;
	unsigned int index_9:4;
	unsigned int index_10:4;
	unsigned int index_11:4;
	unsigned int index_12:4;
	unsigned int index_13:4;
	unsigned int index_14:4;
	unsigned int index_15:4;
    } desc_remap_table1;
};

struct gen4_interface_descriptor {
    struct {
	unsigned int grf_reg_blocks:4;
	unsigned int pad:2;
	unsigned int kernel_start_pointer:26;
    } desc0;

    struct {
	unsigned int pad:7;
	unsigned int software_exception:1;
	unsigned int pad2:3;
	unsigned int maskstack_exception:1;
	unsigned int pad3:1;
	unsigned int illegal_opcode_exception:1;
	unsigned int pad4:2;
	unsigned int floating_point_mode:1;
	unsigned int thread_priority:1;
	unsigned int single_program_flow:1;
	unsigned int pad5:1;
	unsigned int const_urb_entry_read_offset:6;
	unsigned int const_urb_entry_read_len:6;
    } desc1;

    struct {
	unsigned int pad:2;
	unsigned int sampler_count:3;
	unsigned int sampler_state_pointer:27;
    } desc2;

    struct {
	unsigned int binding_table_entry_count:5;
	unsigned int binding_table_pointer:27;
    } desc3;
};

struct gen6_blend_state
{
	struct {
		unsigned int dest_blend_factor:5;
		unsigned int source_blend_factor:5;
		unsigned int pad3:1;
		unsigned int blend_func:3;
		unsigned int pad2:1;
		unsigned int ia_dest_blend_factor:5;
		unsigned int ia_source_blend_factor:5;
		unsigned int pad1:1;
		unsigned int ia_blend_func:3;
		unsigned int pad0:1;
		unsigned int ia_blend_enable:1;
		unsigned int blend_enable:1;
	} blend0;

	struct {
		unsigned int post_blend_clamp_enable:1;
		unsigned int pre_blend_clamp_enable:1;
		unsigned int clamp_range:2;
		unsigned int pad0:4;
		unsigned int x_dither_offset:2;
		unsigned int y_dither_offset:2;
		unsigned int dither_enable:1;
		unsigned int alpha_test_func:3;
		unsigned int alpha_test_enable:1;
		unsigned int pad1:1;
		unsigned int logic_op_func:4;
		unsigned int logic_op_enable:1;
		unsigned int pad2:1;
		unsigned int write_disable_b:1;
		unsigned int write_disable_g:1;
		unsigned int write_disable_r:1;
		unsigned int write_disable_a:1;
		unsigned int pad3:1;
		unsigned int alpha_to_coverage_dither:1;
		unsigned int alpha_to_one:1;
		unsigned int alpha_to_coverage:1;
	} blend1;
};

struct gen6_color_calc_state
{
	struct {
		unsigned int alpha_test_format:1;
		unsigned int pad0:14;
		unsigned int round_disable:1;
		unsigned int bf_stencil_ref:8;
		unsigned int stencil_ref:8;
	} cc0;

	union {
		float alpha_ref_f;
		struct {
			unsigned int ui:8;
			unsigned int pad0:24;
		} alpha_ref_fi;
	} cc1;

	float constant_r;
	float constant_g;
	float constant_b;
	float constant_a;
};

struct gen6_depth_stencil_state
{
	struct {
		unsigned int pad0:3;
		unsigned int bf_stencil_pass_depth_pass_op:3;
		unsigned int bf_stencil_pass_depth_fail_op:3;
		unsigned int bf_stencil_fail_op:3;
		unsigned int bf_stencil_func:3;
		unsigned int bf_stencil_enable:1;
		unsigned int pad1:2;
		unsigned int stencil_write_enable:1;
		unsigned int stencil_pass_depth_pass_op:3;
		unsigned int stencil_pass_depth_fail_op:3;
		unsigned int stencil_fail_op:3;
		unsigned int stencil_func:3;
		unsigned int stencil_enable:1;
	} ds0;

	struct {
		unsigned int bf_stencil_write_mask:8;
		unsigned int bf_stencil_test_mask:8;
		unsigned int stencil_write_mask:8;
		unsigned int stencil_test_mask:8;
	} ds1;

	struct {
		unsigned int pad0:26;
		unsigned int depth_write_enable:1;
		unsigned int depth_test_func:3;
		unsigned int pad1:1;
		unsigned int depth_test_enable:1;
	} ds2;
};

typedef enum {
	SAMPLER_FILTER_NEAREST = 0,
	SAMPLER_FILTER_BILINEAR,
	FILTER_COUNT
} sampler_filter_t;

typedef enum {
	SAMPLER_EXTEND_NONE = 0,
	SAMPLER_EXTEND_REPEAT,
	SAMPLER_EXTEND_PAD,
	SAMPLER_EXTEND_REFLECT,
	EXTEND_COUNT
} sampler_extend_t;

typedef enum {
	WM_KERNEL = 0,
	WM_KERNEL_PROJECTIVE,

	WM_KERNEL_MASK,
	WM_KERNEL_MASK_PROJECTIVE,

	WM_KERNEL_MASKCA,
	WM_KERNEL_MASKCA_PROJECTIVE,

	WM_KERNEL_MASKCA_SRCALPHA,
	WM_KERNEL_MASKCA_SRCALPHA_PROJECTIVE,

	WM_KERNEL_VIDEO_PLANAR,
	WM_KERNEL_VIDEO_PACKED,
	KERNEL_COUNT
} wm_kernel_t;

#endif