summaryrefslogtreecommitdiff
path: root/linux-core/i915_buffer.c
AgeCommit message (Collapse)Author
2008-04-28Merge branch 'master' into modesetting-101Thomas Hellstrom
Conflicts: linux-core/Makefile.kernel linux-core/drm_compat.c linux-core/drm_fops.c linux-core/drm_lock.c shared-core/drm.h shared-core/i915_dma.c shared-core/i915_drv.h shared-core/i915_irq.c
2008-04-06[I915] Fix VRAM eviction.Thomas Hellstrom
2008-02-05build fix for older kernelsAlan Hourihane
2008-01-25Merge remote branch 'origin/master' into modesetting-101Dave Airlie
Conflicts: linux-core/drm_bo.c linux-core/drm_drv.c shared-core/drm.h shared-core/i915_dma.c shared-core/i915_drv.h shared-core/i915_irq.c shared-core/radeon_irq.c
2008-01-17i915: fix invalid opcode exception on cpus without clflushKyle McMartin
i915_flush_ttm was unconditionally executing a clflush instruction to (obviously) flush the cache. Instead, check if the cpu supports clflush, and if not, fall back to calling wbinvd to flush the entire cache. Signed-off-by: Kyle McMartin <kmcmartin@redhat.com>
2007-12-21Rename inappropriately named 'mask' fields to 'proposed_flags' instead.Keith Packard
Flags pending validation were stored in a misleadingly named field, 'mask'. As 'mask' is already used to indicate pieces of a flags field which are changing, it seems better to use a name reflecting the actual purpose of this field. I chose 'proposed_flags' as they may not actually end up in 'flags', and in an case will be modified when they are moved over. This affects the API, but not ABI of the user-mode interface.
2007-12-11Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/drm into ↵Dave Airlie
modesetting-101 Conflicts: linux-core/drm_drv.c shared-core/drm.h shared-core/i915_dma.c
2007-11-29drm: more cleanupsDave Airlie
2007-11-06Merge branch 'master' of git+ssh://git.freedesktop.org/git/mesa/drm into ↵Thomas Hellstrom
modesetting-101 Conflicts: linux-core/Makefile.kernel shared-core/i915_dma.c shared-core/i915_drv.h shared-core/i915_irq.c
2007-11-06i915: cleanup most of the whitespaceDave Airlie
2007-11-05Merge branch 'master' into modesetting-101Thomas Hellstrom
Conflicts: linux-core/drm_bufs.c shared-core/i915_dma.c shared-core/i915_drv.h shared-core/i915_irq.c
2007-11-05drm: remove lots of spurious whitespace.Dave Airlie
Kernel "cleanfile" script run.
2007-11-01Merge branch 'master' into modesetting-101Jesse Barnes
Conflicts: linux-core/Makefile.kernel linux-core/drm_stub.c linux-core/i915_drv.c shared-core/i915_dma.c shared-core/i915_drv.h Fixup suspend/resume conflicts (basically use what's in DRM master for now). Also fix up a few other conflicts that snuck in (i915_dma changes etc.).
2007-10-30drm/i915: add driver cache flush entry pointDave Airlie
Use clflush on Intel hardware to flush cached objects.
2007-10-25Merge branch 'master' into modesetting-101Thomas Hellstrom
Conflicts: linux-core/Makefile.kernel linux-core/drm_bo.c linux-core/drm_objects.h
2007-10-21Disable i915 accelerated blit copy moves for now until we canThomas Hellstrom
guarantee that it doesn't clash with the X server.
2007-10-16Merge branch 'master' of git+ssh://git.freedesktop.org/git/mesa/drm into ↵Alan Hourihane
modesetting-101 Conflicts: linux-core/drm_bo.c linux-core/drm_objects.h shared-core/i915_dma.c shared-core/i915_drv.h
2007-10-12i915: check mask instead of flags for buffer fence typesDave Airlie
2007-09-24Merge branch 'master' into modesetting-101 - TTM & typedef removalJesse Barnes
Conflicts: linux-core/drmP.h linux-core/drm_bo.c linux-core/drm_drv.c linux-core/drm_objects.h shared-core/drm.h shared-core/i915_dma.c shared-core/i915_drv.h shared-core/i915_irq.c Mostly removing typedefs that snuck into the modesetting code and updating to the latest TTM APIs. As of today, the i915 driver builds, but there are likely to be problems, so debugging and bugfixes will come next.
2007-09-22Add fence error member.Thomas Hellstrom
Modify the TTM backend bind arguments. Export a number of functions needed for driver-specific super-ioctls. Add a function to map buffer objects from the kernel, regardless of where they're currently placed. A number of error fixes.
2007-07-16drm: detypedef ttm/bo/fence codeDave Airlie
2007-07-16drm: remove drmP.h internal typedefsDave Airlie
2007-06-12Try to make buffer object / fence object ioctl args 64-bit safe.Thomas Hellstrom
Introduce tile members for future tiled buffer support. Allow user-space to explicitly define a fence-class. Remove the implicit fence-class mechanism. 64-bit wide buffer object flag member.
2007-05-22Call preallocated space VRAM instead of PRIV0 to be more consistent withJesse Barnes
other drivers.
2007-04-18Simplify the ttm backend interface and the agp ttm backend.Thomas Hellstrom
2007-02-16Simple fence object sample driver for via, based on idling the GPU.Thomas Hellstrom
Buffer object driver for via. Some changes to buffer object driver callbacks. Improve fence flushing.
2007-02-15Initial support for fence object classes.Thomas Hellstrom
(Fence objects belonging to different command submission mechanisms).
2007-02-14Set the drm bus map type for each buffer object memory type.Thomas Hellstrom
2007-02-13More bugfixes.Thomas Hellstrom
Fixed memory, pinned buffers and unmappable memory now seems fully functional.
2007-02-12Lindent.Thomas Hellstrom
2007-02-12Cleanup and fix support for pinned buffers.Thomas Hellstrom
2007-02-10Various bugfixes.Thomas Hellstrom
2007-02-09I915 accelerated blit copy functional.Thomas Hellstrom
Fixed - to System memory copies are implemented by flipping in a cache-coherent TTM, blitting to it, and then flipping it out.
2007-02-08Add an accelerated buffer copy cleanup helper.Thomas Hellstrom
Export helper functions and make some important buffer-object functions non-static. Add an i915 accelerated blit buffer move for pci memory buffers.
2007-02-07Checkpoint commit.Thomas Hellstrom
Flag handling and memory type selection cleanup. glxgears won't start.
2007-02-06Simplify pci map vs no pci map choice.Thomas Hellstrom
2007-02-06Implement a policy for selecting memory types.Thomas Hellstrom
2007-02-05i915: Add copy-blit operation.Thomas Hellstrom
2007-02-02Make vm handle buffer objects instead of ttm objects.Thomas Hellstrom
Remove ttm objects. Make vm aware of PCI memory type buffer objects. (Only works for pre 2.6.16 kernels for now).
2007-01-31memory manager: Make device driver aware of different memory types.Thomas Hellstrom
Memory types are either fixed (on-card or pre-bound AGP) or not fixed (dynamically bound) to an aperture. They also carry information about: 1) Whether they can be mapped cached. 2) Whether they are at all mappable. 3) Whether they need an ioremap to be accessible from kernel space. In this way VRAM memory and, for example, pre-bound AGP appear identical to the memory manager. This also makes support for unmappable VRAM simple to implement.
2006-10-18Avoid driver-specific AGP user-populated types, since we don't know what AGPThomas Hellstrom
driver we're on. Avoid global cache flushes before inserting pages. In general, they are never mapped, and not accessed through the kernel map, so a cache flush should not be necessary. The exception is pages that are bound cached. We might need a cache flush for those.
2006-10-17Lindent.Thomas Hellstrom
2006-10-16Change Intel AGP memory type numbers.Thomas Hellstrom
2006-10-12Simplify the AGP backend interface somewhat.Thomas Hellstrom
Fix buffer bound caching policy changing, Allow on-the-fly changing of caching policy on bound buffers if the hardware supports it. Allow drivers to use driver-specific AGP memory types for TTM AGP pages. Will make AGP drivers much easier to migrate.
2006-09-26Allow for a driver to overload the ttm backend object methods.Thomas Hellstrom
2006-09-12Use lazy fence wait when possible even for RW fences. Saves some CPU.Thomas Hellstrom
Lindent.
2006-09-01Various bugfixes.Thomas Hellstrom
2006-08-31Validation and fencing.Thomas Hellstrom
2006-08-22Initial i915 buffer object driverThomas Hellstrom
href='#n692'>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
/*
 * Copyright 2007 Advanced Micro Devices, Inc.
 * 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, sublicense,
 * 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 NONINFRINGEMENT.  IN NO EVENT SHALL
 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) 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 RADEON_MICROCODE_H
#define RADEON_MICROCODE_H

/* production radeon ucode r1xx-r6xx */
static const u32 R100_cp_microcode[][2]={
    { 0x21007000, 0000000000 },
    { 0x20007000, 0000000000 },
    { 0x000000b4, 0x00000004 },
    { 0x000000b8, 0x00000004 },
    { 0x6f5b4d4c, 0000000000 },
    { 0x4c4c427f, 0000000000 },
    { 0x5b568a92, 0000000000 },
    { 0x4ca09c6d, 0000000000 },
    { 0xad4c4c4c, 0000000000 },
    { 0x4ce1af3d, 0000000000 },
    { 0xd8afafaf, 0000000000 },
    { 0xd64c4cdc, 0000000000 },
    { 0x4cd10d10, 0000000000 },
    { 0x000f0000, 0x00000016 },
    { 0x362f242d, 0000000000 },
    { 0x00000012, 0x00000004 },
    { 0x000f0000, 0x00000016 },
    { 0x362f282d, 0000000000 },
    { 0x000380e7, 0x00000002 },
    { 0x04002c97, 0x00000002 },
    { 0x000f0001, 0x00000016 },
    { 0x333a3730, 0000000000 },
    { 0x000077ef, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x00000021, 0x0000001a },
    { 0x00004000, 0x0000001e },
    { 0x00061000, 0x00000002 },
    { 0x00000021, 0x0000001a },
    { 0x00004000, 0x0000001e },
    { 0x00061000, 0x00000002 },
    { 0x00000021, 0x0000001a },
    { 0x00004000, 0x0000001e },
    { 0x00000017, 0x00000004 },
    { 0x0003802b, 0x00000002 },
    { 0x040067e0, 0x00000002 },
    { 0x00000017, 0x00000004 },
    { 0x000077e0, 0x00000002 },
    { 0x00065000, 0x00000002 },
    { 0x000037e1, 0x00000002 },
    { 0x040067e1, 0x00000006 },
    { 0x000077e0, 0x00000002 },
    { 0x000077e1, 0x00000002 },
    { 0x000077e1, 0x00000006 },
    { 0xffffffff, 0000000000 },
    { 0x10000000, 0000000000 },
    { 0x0003802b, 0x00000002 },
    { 0x040067e0, 0x00000006 },
    { 0x00007675, 0x00000002 },
    { 0x00007676, 0x00000002 },
    { 0x00007677, 0x00000002 },
    { 0x00007678, 0x00000006 },
    { 0x0003802c, 0x00000002 },
    { 0x04002676, 0x00000002 },
    { 0x00007677, 0x00000002 },
    { 0x00007678, 0x00000006 },
    { 0x0000002f, 0x00000018 },
    { 0x0000002f, 0x00000018 },
    { 0000000000, 0x00000006 },
    { 0x00000030, 0x00000018 },
    { 0x00000030, 0x00000018 },
    { 0000000000, 0x00000006 },
    { 0x01605000, 0x00000002 },
    { 0x00065000, 0x00000002 },
    { 0x00098000, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x64c0603e, 0x00000004 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x00080000, 0x00000016 },
    { 0000000000, 0000000000 },
    { 0x0400251d, 0x00000002 },
    { 0x00007580, 0x00000002 },
    { 0x00067581, 0x00000002 },
    { 0x04002580, 0x00000002 },
    { 0x00067581, 0x00000002 },
    { 0x00000049, 0x00000004 },
    { 0x00005000, 0000000000 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x0000750e, 0x00000002 },
    { 0x00019000, 0x00000002 },
    { 0x00011055, 0x00000014 },
    { 0x00000055, 0x00000012 },
    { 0x0400250f, 0x00000002 },
    { 0x0000504f, 0x00000004 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x00007565, 0x00000002 },
    { 0x00007566, 0x00000002 },
    { 0x00000058, 0x00000004 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x01e655b4, 0x00000002 },
    { 0x4401b0e4, 0x00000002 },
    { 0x01c110e4, 0x00000002 },
    { 0x26667066, 0x00000018 },
    { 0x040c2565, 0x00000002 },
    { 0x00000066, 0x00000018 },
    { 0x04002564, 0x00000002 },
    { 0x00007566, 0x00000002 },
    { 0x0000005d, 0x00000004 },
    { 0x00401069, 0x00000008 },
    { 0x00101000, 0x00000002 },
    { 0x000d80ff, 0x00000002 },
    { 0x0080006c, 0x00000008 },
    { 0x000f9000, 0x00000002 },
    { 0x000e00ff, 0x00000002 },
    { 0000000000, 0x00000006 },
    { 0x0000008f, 0x00000018 },
    { 0x0000005b, 0x00000004 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x00007576, 0x00000002 },
    { 0x00065000, 0x00000002 },
    { 0x00009000, 0x00000002 },
    { 0x00041000, 0x00000002 },
    { 0x0c00350e, 0x00000002 },
    { 0x00049000, 0x00000002 },
    { 0x00051000, 0x00000002 },
    { 0x01e785f8, 0x00000002 },
    { 0x00200000, 0x00000002 },
    { 0x0060007e, 0x0000000c },
    { 0x00007563, 0x00000002 },
    { 0x006075f0, 0x00000021 },
    { 0x20007073, 0x00000004 },
    { 0x00005073, 0x00000004 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x00007576, 0x00000002 },
    { 0x00007577, 0x00000002 },
    { 0x0000750e, 0x00000002 },
    { 0x0000750f, 0x00000002 },
    { 0x00a05000, 0x00000002 },
    { 0x00600083, 0x0000000c },
    { 0x006075f0, 0x00000021 },
    { 0x000075f8, 0x00000002 },
    { 0x00000083, 0x00000004 },
    { 0x000a750e, 0x00000002 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x0020750f, 0x00000002 },
    { 0x00600086, 0x00000004 },
    { 0x00007570, 0x00000002 },
    { 0x00007571, 0x00000002 },
    { 0x00007572, 0x00000006 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x00005000, 0x00000002 },
    { 0x00a05000, 0x00000002 },
    { 0x00007568, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x00000095, 0x0000000c },
    { 0x00058000, 0x00000002 },
    { 0x0c607562, 0x00000002 },
    { 0x00000097, 0x00000004 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x00600096, 0x00000004 },
    { 0x400070e5, 0000000000 },
    { 0x000380e6, 0x00000002 },
    { 0x040025c5, 0x00000002 },
    { 0x000380e5, 0x00000002 },
    { 0x000000a8, 0x0000001c },
    { 0x000650aa, 0x00000018 },
    { 0x040025bb, 0x00000002 },
    { 0x000610ab, 0x00000018 },
    { 0x040075bc, 0000000000 },
    { 0x000075bb, 0x00000002 },
    { 0x000075bc, 0000000000 },
    { 0x00090000, 0x00000006 },
    { 0x00090000, 0x00000002 },
    { 0x000d8002, 0x00000006 },
    { 0x00007832, 0x00000002 },
    { 0x00005000, 0x00000002 },
    { 0x000380e7, 0x00000002 },
    { 0x04002c97, 0x00000002 },
    { 0x00007820, 0x00000002 },
    { 0x00007821, 0x00000002 },
    { 0x00007800, 0000000000 },
    { 0x01200000, 0x00000002 },
    { 0x20077000, 0x00000002 },
    { 0x01200000, 0x00000002 },
    { 0x20007000, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x0120751b, 0x00000002 },
    { 0x8040750a, 0x00000002 },
    { 0x8040750b, 0x00000002 },
    { 0x00110000, 0x00000002 },
    { 0x000380e5, 0x00000002 },
    { 0x000000c6, 0x0000001c },
    { 0x000610ab, 0x00000018 },
    { 0x844075bd, 0x00000002 },
    { 0x000610aa, 0x00000018 },
    { 0x840075bb, 0x00000002 },
    { 0x000610ab, 0x00000018 },
    { 0x844075bc, 0x00000002 },
    { 0x000000c9, 0x00000004 },
    { 0x804075bd, 0x00000002 },
    { 0x800075bb, 0x00000002 },
    { 0x804075bc, 0x00000002 },
    { 0x00108000, 0x00000002 },
    { 0x01400000, 0x00000002 },
    { 0x006000cd, 0x0000000c },
    { 0x20c07000, 0x00000020 },
    { 0x000000cf, 0x00000012 },
    { 0x00800000, 0x00000006 },
    { 0x0080751d, 0x00000006 },
    { 0000000000, 0000000000 },
    { 0x0000775c, 0x00000002 },
    { 0x00a05000, 0x00000002 },
    { 0x00661000, 0x00000002 },
    { 0x0460275d, 0x00000020 },
    { 0x00004000, 0000000000 },
    { 0x01e00830, 0x00000002 },
    { 0x21007000, 0000000000 },
    { 0x6464614d, 0000000000 },
    { 0x69687420, 0000000000 },
    { 0x00000073, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x00005000, 0x00000002 },
    { 0x000380d0, 0x00000002 },
    { 0x040025e0, 0x00000002 },
    { 0x000075e1, 0000000000 },
    { 0x00000001, 0000000000 },
    { 0x000380e0, 0x00000002 },
    { 0x04002394, 0x00000002 },
    { 0x00005000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x00000008, 0000000000 },
    { 0x00000004, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
};

static const u32 R200_cp_microcode[][2]={
    { 0x21007000, 0000000000 },
    { 0x20007000, 0000000000 },
    { 0x000000bf, 0x00000004 },
    { 0x000000c3, 0x00000004 },
    { 0x7a685e5d, 0000000000 },
    { 0x5d5d5588, 0000000000 },
    { 0x68659197, 0000000000 },
    { 0x5da19f78, 0000000000 },
    { 0x5d5d5d5d, 0000000000 },
    { 0x5dee5d50, 0000000000 },
    { 0xf2acacac, 0000000000 },
    { 0xe75df9e9, 0000000000 },
    { 0xb1dd0e11, 0000000000 },
    { 0xe2afafaf, 0000000000 },
    { 0x000f0000, 0x00000016 },
    { 0x452f232d, 0000000000 },
    { 0x00000013, 0x00000004 },
    { 0x000f0000, 0x00000016 },
    { 0x452f272d, 0000000000 },
    { 0x000f0001, 0x00000016 },
    { 0x3e4d4a37, 0000000000 },
    { 0x000077ef, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x00000020, 0x0000001a },
    { 0x00004000, 0x0000001e },
    { 0x00061000, 0x00000002 },
    { 0x00000020, 0x0000001a },
    { 0x00004000, 0x0000001e },
    { 0x00061000, 0x00000002 },
    { 0x00000020, 0x0000001a },
    { 0x00004000, 0x0000001e },
    { 0x00000016, 0x00000004 },
    { 0x0003802a, 0x00000002 },
    { 0x040067e0, 0x00000002 },
    { 0x00000016, 0x00000004 },
    { 0x000077e0, 0x00000002 },
    { 0x00065000, 0x00000002 },
    { 0x000037e1, 0x00000002 },
    { 0x040067e1, 0x00000006 },
    { 0x000077e0, 0x00000002 },
    { 0x000077e1, 0x00000002 },
    { 0x000077e1, 0x00000006 },
    { 0xffffffff, 0000000000 },
    { 0x10000000, 0000000000 },
    { 0x07f007f0, 0000000000 },
    { 0x0003802a, 0x00000002 },
    { 0x040067e0, 0x00000006 },
    { 0x0003802c, 0x00000002 },
    { 0x04002741, 0x00000002 },
    { 0x04002741, 0x00000002 },
    { 0x04002743, 0x00000002 },
    { 0x00007675, 0x00000002 },
    { 0x00007676, 0x00000002 },
    { 0x00007677, 0x00000002 },
    { 0x00007678, 0x00000006 },
    { 0x0003802c, 0x00000002 },
    { 0x04002741, 0x00000002 },
    { 0x04002741, 0x00000002 },
    { 0x04002743, 0x00000002 },
    { 0x00007676, 0x00000002 },
    { 0x00007677, 0x00000002 },
    { 0x00007678, 0x00000006 },
    { 0x0003802b, 0x00000002 },
    { 0x04002676, 0x00000002 },
    { 0x00007677, 0x00000002 },
    { 0x0003802c, 0x00000002 },
    { 0x04002741, 0x00000002 },
    { 0x04002743, 0x00000002 },
    { 0x00007678, 0x00000006 },
    { 0x0003802c, 0x00000002 },
    { 0x04002741, 0x00000002 },
    { 0x04002741, 0x00000002 },
    { 0x04002743, 0x00000002 },
    { 0x00007678, 0x00000006 },
    { 0x0000002f, 0x00000018 },
    { 0x0000002f, 0x00000018 },
    { 0000000000, 0x00000006 },
    { 0x00000037, 0x00000018 },
    { 0x00000037, 0x00000018 },
    { 0000000000, 0x00000006 },
    { 0x01605000, 0x00000002 },
    { 0x00065000, 0x00000002 },
    { 0x00098000, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x64c06051, 0x00000004 },
    { 0x00080000, 0x00000016 },
    { 0000000000, 0000000000 },
    { 0x0400251d, 0x00000002 },
    { 0x00007580, 0x00000002 },
    { 0x00067581, 0x00000002 },
    { 0x04002580, 0x00000002 },
    { 0x00067581, 0x00000002 },
    { 0x0000005a, 0x00000004 },
    { 0x00005000, 0000000000 },
    { 0x00061000, 0x00000002 },
    { 0x0000750e, 0x00000002 },
    { 0x00019000, 0x00000002 },
    { 0x00011064, 0x00000014 },
    { 0x00000064, 0x00000012 },
    { 0x0400250f, 0x00000002 },
    { 0x0000505e, 0x00000004 },
    { 0x00007565, 0x00000002 },
    { 0x00007566, 0x00000002 },
    { 0x00000065, 0x00000004 },
    { 0x01e655b4, 0x00000002 },
    { 0x4401b0f0, 0x00000002 },
    { 0x01c110f0, 0x00000002 },
    { 0x26667071, 0x00000018 },
    { 0x040c2565, 0x00000002 },
    { 0x00000071, 0x00000018 },
    { 0x04002564, 0x00000002 },
    { 0x00007566, 0x00000002 },
    { 0x00000068, 0x00000004 },
    { 0x00401074, 0x00000008 },
    { 0x00101000, 0x00000002 },
    { 0x000d80ff, 0x00000002 },
    { 0x00800077, 0x00000008 },
    { 0x000f9000, 0x00000002 },
    { 0x000e00ff, 0x00000002 },
    { 0000000000, 0x00000006 },
    { 0x00000094, 0x00000018 },
    { 0x00000068, 0x00000004 },
    { 0x00007576, 0x00000002 },
    { 0x00065000, 0x00000002 },
    { 0x00009000, 0x00000002 },
    { 0x00041000, 0x00000002 },
    { 0x0c00350e, 0x00000002 },
    { 0x00049000, 0x00000002 },
    { 0x00051000, 0x00000002 },
    { 0x01e785f8, 0x00000002 },
    { 0x00200000, 0x00000002 },
    { 0x00600087, 0x0000000c },
    { 0x00007563, 0x00000002 },
    { 0x006075f0, 0x00000021 },
    { 0x2000707c, 0x00000004 },
    { 0x0000507c, 0x00000004 },
    { 0x00007576, 0x00000002 },
    { 0x00007577, 0x00000002 },
    { 0x0000750e, 0x00000002 },
    { 0x0000750f, 0x00000002 },
    { 0x00a05000, 0x00000002 },
    { 0x0060008a, 0x0000000c },
    { 0x006075f0, 0x00000021 },
    { 0x000075f8, 0x00000002 },
    { 0x0000008a, 0x00000004 },
    { 0x000a750e, 0x00000002 },
    { 0x0020750f, 0x00000002 },
    { 0x0060008d, 0x00000004 },
    { 0x00007570, 0x00000002 },
    { 0x00007571, 0x00000002 },
    { 0x00007572, 0x00000006 },
    { 0x00005000, 0x00000002 },
    { 0x00a05000, 0x00000002 },
    { 0x00007568, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x00000098, 0x0000000c },
    { 0x00058000, 0x00000002 },
    { 0x0c607562, 0x00000002 },
    { 0x0000009a, 0x00000004 },
    { 0x00600099, 0x00000004 },
    { 0x400070f1, 0000000000 },
    { 0x000380f1, 0x00000002 },
    { 0x000000a7, 0x0000001c },
    { 0x000650a9, 0x00000018 },
    { 0x040025bb, 0x00000002 },
    { 0x000610aa, 0x00000018 },
    { 0x040075bc, 0000000000 },
    { 0x000075bb, 0x00000002 },
    { 0x000075bc, 0000000000 },
    { 0x00090000, 0x00000006 },
    { 0x00090000, 0x00000002 },
    { 0x000d8002, 0x00000006 },
    { 0x00005000, 0x00000002 },
    { 0x00007821, 0x00000002 },
    { 0x00007800, 0000000000 },
    { 0x00007821, 0x00000002 },
    { 0x00007800, 0000000000 },
    { 0x01665000, 0x00000002 },
    { 0x000a0000, 0x00000002 },
    { 0x000671cc, 0x00000002 },
    { 0x0286f1cd, 0x00000002 },
    { 0x000000b7, 0x00000010 },
    { 0x21007000, 0000000000 },
    { 0x000000be, 0x0000001c },
    { 0x00065000, 0x00000002 },
    { 0x000a0000, 0x00000002 },
    { 0x00061000, 0x00000002 },
    { 0x000b0000, 0x00000002 },
    { 0x38067000, 0x00000002 },
    { 0x000a00ba, 0x00000004 },
    { 0x20007000, 0000000000 },
    { 0x01200000, 0x00000002 },
    { 0x20077000, 0x00000002 },
    { 0x01200000, 0x00000002 },
    { 0x20007000, 0000000000 },
    { 0x00061000, 0x00000002 },
    { 0x0120751b, 0x00000002 },
    { 0x8040750a, 0x00000002 },
    { 0x8040750b, 0x00000002 },
    { 0x00110000, 0x00000002 },
    { 0x000380f1, 0x00000002 },
    { 0x000000d1, 0x0000001c },
    { 0x000610aa, 0x00000018 },
    { 0x844075bd, 0x00000002 },
    { 0x000610a9, 0x00000018 },
    { 0x840075bb, 0x00000002 },
    { 0x000610aa, 0x00000018 },
    { 0x844075bc, 0x00000002 },
    { 0x000000d4, 0x00000004 },
    { 0x804075bd, 0x00000002 },
    { 0x800075bb, 0x00000002 },
    { 0x804075bc, 0x00000002 },
    { 0x00108000, 0x00000002 },
    { 0x01400000, 0x00000002 },
    { 0x006000d8, 0x0000000c },
    { 0x20c07000, 0x00000020 },
    { 0x000000da, 0x00000012 },
    { 0x00800000, 0x00000006 },
    { 0x0080751d, 0x00000006 },
    { 0x000025bb, 0x00000002 },
    { 0x000040d4, 0x00000004 },
    { 0x0000775c, 0x00000002 },
    { 0x00a05000, 0x00000002 },
    { 0x00661000, 0x00000002 },
    { 0x0460275d, 0x00000020 },
    { 0x00004000, 0000000000 },
    { 0x00007999, 0x00000002 },
    { 0x00a05000, 0x00000002 },
    { 0x00661000, 0x00000002 },
    { 0x0460299b, 0x00000020 },
    { 0x00004000, 0000000000 },
    { 0x01e00830, 0x00000002 },
    { 0x21007000, 0000000000 },
    { 0x00005000, 0x00000002 },
    { 0x00038056, 0x00000002 },
    { 0x040025e0, 0x00000002 },
    { 0x000075e1, 0000000000 },
    { 0x00000001, 0000000000 },
    { 0x000380ed, 0x00000002 },
    { 0x04007394, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x000078c4, 0x00000002 },
    { 0x000078c5, 0x00000002 },
    { 0x000078c6, 0x00000002 },
    { 0x00007924, 0x00000002 },
    { 0x00007925, 0x00000002 },
    { 0x00007926, 0x00000002 },
    { 0x000000f2, 0x00000004 },
    { 0x00007924, 0x00000002 },
    { 0x00007925, 0x00000002 },
    { 0x00007926, 0x00000002 },
    { 0x000000f9, 0x00000004 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
};

static const u32 R300_cp_microcode[][2]={
    { 0x4200e000, 0000000000 },
    { 0x4000e000, 0000000000 },
    { 0x000000ae, 0x00000008 },
    { 0x000000b2, 0x00000008 },
    { 0x67554b4a, 0000000000 },
    { 0x4a4a4475, 0000000000 },
    { 0x55527d83, 0000000000 },
    { 0x4a8c8b65, 0000000000 },
    { 0x4aef4af6, 0000000000 },
    { 0x4ae14a4a, 0000000000 },
    { 0xe4979797, 0000000000 },
    { 0xdb4aebdd, 0000000000 },
    { 0x9ccc4a4a, 0000000000 },
    { 0xd1989898, 0000000000 },
    { 0x4a0f9ad6, 0000000000 },
    { 0x000ca000, 0x00000004 },
    { 0x000d0012, 0x00000038 },
    { 0x0000e8b4, 0x00000004 },
    { 0x000d0014, 0x00000038 },
    { 0x0000e8b6, 0x00000004 },
    { 0x000d0016, 0x00000038 },
    { 0x0000e854, 0x00000004 },
    { 0x000d0018, 0x00000038 },
    { 0x0000e855, 0x00000004 },
    { 0x000d001a, 0x00000038 },
    { 0x0000e856, 0x00000004 },
    { 0x000d001c, 0x00000038 },
    { 0x0000e857, 0x00000004 },
    { 0x000d001e, 0x00000038 },
    { 0x0000e824, 0x00000004 },
    { 0x000d0020, 0x00000038 },
    { 0x0000e825, 0x00000004 },
    { 0x000d0022, 0x00000038 },
    { 0x0000e830, 0x00000004 },
    { 0x000d0024, 0x00000038 },
    { 0x0000f0c0, 0x00000004 },
    { 0x000d0026, 0x00000038 },
    { 0x0000f0c1, 0x00000004 },
    { 0x000d0028, 0x00000038 },
    { 0x0000f041, 0x00000004 },
    { 0x000d002a, 0x00000038 },
    { 0x0000f184, 0x00000004 },
    { 0x000d002c, 0x00000038 },
    { 0x0000f185, 0x00000004 },
    { 0x000d002e, 0x00000038 },
    { 0x0000f186, 0x00000004 },
    { 0x000d0030, 0x00000038 },
    { 0x0000f187, 0x00000004 },
    { 0x000d0032, 0x00000038 },
    { 0x0000f180, 0x00000004 },
    { 0x000d0034, 0x00000038 },
    { 0x0000f393, 0x00000004 },
    { 0x000d0036, 0x00000038 },
    { 0x0000f38a, 0x00000004 },
    { 0x000d0038, 0x00000038 },
    { 0x0000f38e, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000043, 0x00000018 },
    { 0x00cce800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x0000003a, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x2000451d, 0x00000004 },
    { 0x0000e580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x08004580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x00000047, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x00032000, 0x00000004 },
    { 0x00022051, 0x00000028 },
    { 0x00000051, 0x00000024 },
    { 0x0800450f, 0x00000004 },
    { 0x0000a04b, 0x00000008 },
    { 0x0000e565, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000052, 0x00000008 },
    { 0x03cca5b4, 0x00000004 },
    { 0x05432000, 0x00000004 },
    { 0x00022000, 0x00000004 },
    { 0x4ccce05e, 0x00000030 },
    { 0x08274565, 0x00000004 },
    { 0x0000005e, 0x00000030 },
    { 0x08004564, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000055, 0x00000008 },
    { 0x00802061, 0x00000010 },
    { 0x00202000, 0x00000004 },
    { 0x001b00ff, 0x00000004 },
    { 0x01000064, 0x00000010 },
    { 0x001f2000, 0x00000004 },
    { 0x001c00ff, 0x00000004 },
    { 0000000000, 0x0000000c },
    { 0x00000080, 0x00000030 },
    { 0x00000055, 0x00000008 },
    { 0x0000e576, 0x00000004 },
    { 0x000ca000, 0x00000004 },
    { 0x00012000, 0x00000004 },
    { 0x00082000, 0x00000004 },
    { 0x1800650e, 0x00000004 },
    { 0x00092000, 0x00000004 },
    { 0x000a2000, 0x00000004 },
    { 0x000f0000, 0x00000004 },
    { 0x00400000, 0x00000004 },
    { 0x00000074, 0x00000018 },
    { 0x0000e563, 0x00000004 },
    { 0x00c0e5f9, 0x000000c2 },
    { 0x00000069, 0x00000008 },
    { 0x0000a069, 0x00000008 },
    { 0x0000e576, 0x00000004 },
    { 0x0000e577, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x0000e50f, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000077, 0x00000018 },
    { 0x00c0e5f9, 0x000000c2 },
    { 0x00000077, 0x00000008 },
    { 0x0014e50e, 0x00000004 },
    { 0x0040e50f, 0x00000004 },
    { 0x00c0007a, 0x00000008 },
    { 0x0000e570, 0x00000004 },
    { 0x0000e571, 0x00000004 },
    { 0x0000e572, 0x0000000c },
    { 0x0000a000, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x0000e568, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00000084, 0x00000018 },
    { 0x000b0000, 0x00000004 },
    { 0x18c0e562, 0x00000004 },
    { 0x00000086, 0x00000008 },
    { 0x00c00085, 0x00000008 },
    { 0x000700e3, 0x00000004 },
    { 0x00000092, 0x00000038 },
    { 0x000ca094, 0x00000030 },
    { 0x080045bb, 0x00000004 },
    { 0x000c2095, 0x00000030 },
    { 0x0800e5bc, 0000000000 },
    { 0x0000e5bb, 0x00000004 },
    { 0x0000e5bc, 0000000000 },
    { 0x00120000, 0x0000000c },
    { 0x00120000, 0x00000004 },
    { 0x001b0002, 0x0000000c },
    { 0x0000a000, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e800, 0000000000 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e82e, 0000000000 },
    { 0x02cca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000ce1cc, 0x00000004 },
    { 0x050de1cd, 0x00000004 },
    { 0x00400000, 0x00000004 },
    { 0x000000a4, 0x00000018 },
    { 0x00c0a000, 0x00000004 },
    { 0x000000a1, 0x00000008 },
    { 0x000000a6, 0x00000020 },
    { 0x4200e000, 0000000000 },
    { 0x000000ad, 0x00000038 },
    { 0x000ca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00160000, 0x00000004 },
    { 0x700ce000, 0x00000004 },
    { 0x001400a9, 0x00000008 },
    { 0x4000e000, 0000000000 },
    { 0x02400000, 0x00000004 },
    { 0x400ee000, 0x00000004 },
    { 0x02400000, 0x00000004 },
    { 0x4000e000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0240e51b, 0x00000004 },
    { 0x0080e50a, 0x00000005 },
    { 0x0080e50b, 0x00000005 },
    { 0x00220000, 0x00000004 },
    { 0x000700e3, 0x00000004 },
    { 0x000000c0, 0x00000038 },
    { 0x000c2095, 0x00000030 },
    { 0x0880e5bd, 0x00000005 },
    { 0x000c2094, 0x00000030 },
    { 0x0800e5bb, 0x00000005 },
    { 0x000c2095, 0x00000030 },
    { 0x0880e5bc, 0x00000005 },
    { 0x000000c3, 0x00000008 },
    { 0x0080e5bd, 0x00000005 },
    { 0x0000e5bb, 0x00000005 },
    { 0x0080e5bc, 0x00000005 },
    { 0x00210000, 0x00000004 },
    { 0x02800000, 0x00000004 },
    { 0x00c000c7, 0x00000018 },
    { 0x4180e000, 0x00000040 },
    { 0x000000c9, 0x00000024 },
    { 0x01000000, 0x0000000c },
    { 0x0100e51d, 0x0000000c },
    { 0x000045bb, 0x00000004 },
    { 0x000080c3, 0x00000008 },
    { 0x0000f3ce, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c053cf, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x0000f3d2, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c053d3, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x0000f39d, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c0539e, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x03c00830, 0x00000004 },
    { 0x4200e000, 0000000000 },
    { 0x0000a000, 0x00000004 },
    { 0x200045e0, 0x00000004 },
    { 0x0000e5e1, 0000000000 },
    { 0x00000001, 0000000000 },
    { 0x000700e0, 0x00000004 },
    { 0x0800e394, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x0000e8c4, 0x00000004 },
    { 0x0000e8c5, 0x00000004 },
    { 0x0000e8c6, 0x00000004 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000e4, 0x00000008 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000eb, 0x00000008 },
    { 0x02c02000, 0x00000004 },
    { 0x00060000, 0x00000004 },
    { 0x000000f3, 0x00000034 },
    { 0x000000f0, 0x00000008 },
    { 0x00008000, 0x00000004 },
    { 0xc000e000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x001d0018, 0x00000004 },
    { 0x001a0001, 0x00000004 },
    { 0x000000fb, 0x00000034 },
    { 0x0000004a, 0x00000008 },
    { 0x0500a04a, 0x00000008 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
};

static const u32 R420_cp_microcode[][2]={
    { 0x4200e000, 0000000000 },
    { 0x4000e000, 0000000000 },
    { 0x00000099, 0x00000008 },
    { 0x0000009d, 0x00000008 },
    { 0x4a554b4a, 0000000000 },
    { 0x4a4a4467, 0000000000 },
    { 0x55526f75, 0000000000 },
    { 0x4a7e7d65, 0000000000 },
    { 0xd9d3dff6, 0000000000 },
    { 0x4ac54a4a, 0000000000 },
    { 0xc8828282, 0000000000 },
    { 0xbf4acfc1, 0000000000 },
    { 0x87b04a4a, 0000000000 },
    { 0xb5838383, 0000000000 },
    { 0x4a0f85ba, 0000000000 },
    { 0x000ca000, 0x00000004 },
    { 0x000d0012, 0x00000038 },
    { 0x0000e8b4, 0x00000004 },
    { 0x000d0014, 0x00000038 },
    { 0x0000e8b6, 0x00000004 },
    { 0x000d0016, 0x00000038 },
    { 0x0000e854, 0x00000004 },
    { 0x000d0018, 0x00000038 },
    { 0x0000e855, 0x00000004 },
    { 0x000d001a, 0x00000038 },
    { 0x0000e856, 0x00000004 },
    { 0x000d001c, 0x00000038 },
    { 0x0000e857, 0x00000004 },
    { 0x000d001e, 0x00000038 },
    { 0x0000e824, 0x00000004 },
    { 0x000d0020, 0x00000038 },
    { 0x0000e825, 0x00000004 },
    { 0x000d0022, 0x00000038 },
    { 0x0000e830, 0x00000004 },
    { 0x000d0024, 0x00000038 },
    { 0x0000f0c0, 0x00000004 },
    { 0x000d0026, 0x00000038 },
    { 0x0000f0c1, 0x00000004 },
    { 0x000d0028, 0x00000038 },
    { 0x0000f041, 0x00000004 },
    { 0x000d002a, 0x00000038 },
    { 0x0000f184, 0x00000004 },
    { 0x000d002c, 0x00000038 },
    { 0x0000f185, 0x00000004 },
    { 0x000d002e, 0x00000038 },
    { 0x0000f186, 0x00000004 },
    { 0x000d0030, 0x00000038 },
    { 0x0000f187, 0x00000004 },
    { 0x000d0032, 0x00000038 },
    { 0x0000f180, 0x00000004 },
    { 0x000d0034, 0x00000038 },
    { 0x0000f393, 0x00000004 },
    { 0x000d0036, 0x00000038 },
    { 0x0000f38a, 0x00000004 },
    { 0x000d0038, 0x00000038 },
    { 0x0000f38e, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000043, 0x00000018 },
    { 0x00cce800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x0000003a, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x2000451d, 0x00000004 },
    { 0x0000e580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x08004580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x00000047, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x00032000, 0x00000004 },
    { 0x00022051, 0x00000028 },
    { 0x00000051, 0x00000024 },
    { 0x0800450f, 0x00000004 },
    { 0x0000a04b, 0x00000008 },
    { 0x0000e565, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000052, 0x00000008 },
    { 0x03cca5b4, 0x00000004 },
    { 0x05432000, 0x00000004 },
    { 0x00022000, 0x00000004 },
    { 0x4ccce05e, 0x00000030 },
    { 0x08274565, 0x00000004 },
    { 0x0000005e, 0x00000030 },
    { 0x08004564, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000055, 0x00000008 },
    { 0x00802061, 0x00000010 },
    { 0x00202000, 0x00000004 },
    { 0x001b00ff, 0x00000004 },
    { 0x01000064, 0x00000010 },
    { 0x001f2000, 0x00000004 },
    { 0x001c00ff, 0x00000004 },
    { 0000000000, 0x0000000c },
    { 0x00000072, 0x00000030 },
    { 0x00000055, 0x00000008 },
    { 0x0000e576, 0x00000004 },
    { 0x0000e577, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x0000e50f, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000069, 0x00000018 },
    { 0x00c0e5f9, 0x000000c2 },
    { 0x00000069, 0x00000008 },
    { 0x0014e50e, 0x00000004 },
    { 0x0040e50f, 0x00000004 },
    { 0x00c0006c, 0x00000008 },
    { 0x0000e570, 0x00000004 },
    { 0x0000e571, 0x00000004 },
    { 0x0000e572, 0x0000000c },
    { 0x0000a000, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x0000e568, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00000076, 0x00000018 },
    { 0x000b0000, 0x00000004 },
    { 0x18c0e562, 0x00000004 },
    { 0x00000078, 0x00000008 },
    { 0x00c00077, 0x00000008 },
    { 0x000700c7, 0x00000004 },
    { 0x00000080, 0x00000038 },
    { 0x0000e5bb, 0x00000004 },
    { 0x0000e5bc, 0000000000 },
    { 0x0000a000, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e800, 0000000000 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e82e, 0000000000 },
    { 0x02cca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000ce1cc, 0x00000004 },
    { 0x050de1cd, 0x00000004 },
    { 0x00400000, 0x00000004 },
    { 0x0000008f, 0x00000018 },
    { 0x00c0a000, 0x00000004 },
    { 0x0000008c, 0x00000008 },
    { 0x00000091, 0x00000020 },
    { 0x4200e000, 0000000000 },
    { 0x00000098, 0x00000038 },
    { 0x000ca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00160000, 0x00000004 },
    { 0x700ce000, 0x00000004 },
    { 0x00140094, 0x00000008 },
    { 0x4000e000, 0000000000 },
    { 0x02400000, 0x00000004 },
    { 0x400ee000, 0x00000004 },
    { 0x02400000, 0x00000004 },
    { 0x4000e000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0240e51b, 0x00000004 },
    { 0x0080e50a, 0x00000005 },
    { 0x0080e50b, 0x00000005 },
    { 0x00220000, 0x00000004 },
    { 0x000700c7, 0x00000004 },
    { 0x000000a4, 0x00000038 },
    { 0x0080e5bd, 0x00000005 },
    { 0x0000e5bb, 0x00000005 },
    { 0x0080e5bc, 0x00000005 },
    { 0x00210000, 0x00000004 },
    { 0x02800000, 0x00000004 },
    { 0x00c000ab, 0x00000018 },
    { 0x4180e000, 0x00000040 },
    { 0x000000ad, 0x00000024 },
    { 0x01000000, 0x0000000c },
    { 0x0100e51d, 0x0000000c },
    { 0x000045bb, 0x00000004 },
    { 0x000080a7, 0x00000008 },
    { 0x0000f3ce, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c053cf, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x0000f3d2, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c053d3, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x0000f39d, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c0539e, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x03c00830, 0x00000004 },
    { 0x4200e000, 0000000000 },
    { 0x0000a000, 0x00000004 },
    { 0x200045e0, 0x00000004 },
    { 0x0000e5e1, 0000000000 },
    { 0x00000001, 0000000000 },
    { 0x000700c4, 0x00000004 },
    { 0x0800e394, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x0000e8c4, 0x00000004 },
    { 0x0000e8c5, 0x00000004 },
    { 0x0000e8c6, 0x00000004 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000c8, 0x00000008 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000cf, 0x00000008 },
    { 0x02c02000, 0x00000004 },
    { 0x00060000, 0x00000004 },
    { 0x000000d7, 0x00000034 },
    { 0x000000d4, 0x00000008 },
    { 0x00008000, 0x00000004 },
    { 0xc000e000, 0000000000 },
    { 0x0000e1cc, 0x00000004 },
    { 0x0500e1cd, 0x00000004 },
    { 0x000ca000, 0x00000004 },
    { 0x000000de, 0x00000034 },
    { 0x000000da, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x0019e1cc, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x0500a000, 0x00000004 },
    { 0x080041cd, 0x00000004 },
    { 0x000ca000, 0x00000004 },
    { 0x000000fb, 0x00000034 },
    { 0x0000004a, 0x00000008 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x001d0018, 0x00000004 },
    { 0x001a0001, 0x00000004 },
    { 0x000000fb, 0x00000034 },
    { 0x0000004a, 0x00000008 },
    { 0x0500a04a, 0x00000008 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
};

static const u32 RS600_cp_microcode[][2]={
    { 0x4200e000, 0000000000 },
    { 0x4000e000, 0000000000 },
    { 0x000000a0, 0x00000008 },
    { 0x000000a4, 0x00000008 },
    { 0x4a554b4a, 0000000000 },
    { 0x4a4a4467, 0000000000 },
    { 0x55526f75, 0000000000 },
    { 0x4a7e7d65, 0000000000 },
    { 0x4ae74af6, 0000000000 },
    { 0x4ad34a4a, 0000000000 },
    { 0xd6898989, 0000000000 },
    { 0xcd4addcf, 0000000000 },
    { 0x8ebe4ae2, 0000000000 },
    { 0xc38a8a8a, 0000000000 },
    { 0x4a0f8cc8, 0000000000 },
    { 0x000ca000, 0x00000004 },
    { 0x000d0012, 0x00000038 },
    { 0x0000e8b4, 0x00000004 },
    { 0x000d0014, 0x00000038 },
    { 0x0000e8b6, 0x00000004 },
    { 0x000d0016, 0x00000038 },
    { 0x0000e854, 0x00000004 },
    { 0x000d0018, 0x00000038 },
    { 0x0000e855, 0x00000004 },
    { 0x000d001a, 0x00000038 },
    { 0x0000e856, 0x00000004 },
    { 0x000d001c, 0x00000038 },
    { 0x0000e857, 0x00000004 },
    { 0x000d001e, 0x00000038 },
    { 0x0000e824, 0x00000004 },
    { 0x000d0020, 0x00000038 },
    { 0x0000e825, 0x00000004 },
    { 0x000d0022, 0x00000038 },
    { 0x0000e830, 0x00000004 },
    { 0x000d0024, 0x00000038 },
    { 0x0000f0c0, 0x00000004 },
    { 0x000d0026, 0x00000038 },
    { 0x0000f0c1, 0x00000004 },
    { 0x000d0028, 0x00000038 },
    { 0x0000f041, 0x00000004 },
    { 0x000d002a, 0x00000038 },
    { 0x0000f184, 0x00000004 },
    { 0x000d002c, 0x00000038 },
    { 0x0000f185, 0x00000004 },
    { 0x000d002e, 0x00000038 },
    { 0x0000f186, 0x00000004 },
    { 0x000d0030, 0x00000038 },
    { 0x0000f187, 0x00000004 },
    { 0x000d0032, 0x00000038 },
    { 0x0000f180, 0x00000004 },
    { 0x000d0034, 0x00000038 },
    { 0x0000f393, 0x00000004 },
    { 0x000d0036, 0x00000038 },
    { 0x0000f38a, 0x00000004 },
    { 0x000d0038, 0x00000038 },
    { 0x0000f38e, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000043, 0x00000018 },
    { 0x00cce800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x0000003a, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x2000451d, 0x00000004 },
    { 0x0000e580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x08004580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x00000047, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x00032000, 0x00000004 },
    { 0x00022051, 0x00000028 },
    { 0x00000051, 0x00000024 },
    { 0x0800450f, 0x00000004 },
    { 0x0000a04b, 0x00000008 },
    { 0x0000e565, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000052, 0x00000008 },
    { 0x03cca5b4, 0x00000004 },
    { 0x05432000, 0x00000004 },
    { 0x00022000, 0x00000004 },
    { 0x4ccce05e, 0x00000030 },
    { 0x08274565, 0x00000004 },
    { 0x0000005e, 0x00000030 },
    { 0x08004564, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000055, 0x00000008 },
    { 0x00802061, 0x00000010 },
    { 0x00202000, 0x00000004 },
    { 0x001b00ff, 0x00000004 },
    { 0x01000064, 0x00000010 },
    { 0x001f2000, 0x00000004 },
    { 0x001c00ff, 0x00000004 },
    { 0000000000, 0x0000000c },
    { 0x00000072, 0x00000030 },
    { 0x00000055, 0x00000008 },
    { 0x0000e576, 0x00000004 },
    { 0x0000e577, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x0000e50f, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000069, 0x00000018 },
    { 0x00c0e5f9, 0x000000c2 },
    { 0x00000069, 0x00000008 },
    { 0x0014e50e, 0x00000004 },
    { 0x0040e50f, 0x00000004 },
    { 0x00c0006c, 0x00000008 },
    { 0x0000e570, 0x00000004 },
    { 0x0000e571, 0x00000004 },
    { 0x0000e572, 0x0000000c },
    { 0x0000a000, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x0000e568, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00000076, 0x00000018 },
    { 0x000b0000, 0x00000004 },
    { 0x18c0e562, 0x00000004 },
    { 0x00000078, 0x00000008 },
    { 0x00c00077, 0x00000008 },
    { 0x000700d5, 0x00000004 },
    { 0x00000084, 0x00000038 },
    { 0x000ca086, 0x00000030 },
    { 0x080045bb, 0x00000004 },
    { 0x000c2087, 0x00000030 },
    { 0x0800e5bc, 0000000000 },
    { 0x0000e5bb, 0x00000004 },
    { 0x0000e5bc, 0000000000 },
    { 0x00120000, 0x0000000c },
    { 0x00120000, 0x00000004 },
    { 0x001b0002, 0x0000000c },
    { 0x0000a000, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e800, 0000000000 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e82e, 0000000000 },
    { 0x02cca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000ce1cc, 0x00000004 },
    { 0x050de1cd, 0x00000004 },
    { 0x00400000, 0x00000004 },
    { 0x00000096, 0x00000018 },
    { 0x00c0a000, 0x00000004 },
    { 0x00000093, 0x00000008 },
    { 0x00000098, 0x00000020 },
    { 0x4200e000, 0000000000 },
    { 0x0000009f, 0x00000038 },
    { 0x000ca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00160000, 0x00000004 },
    { 0x700ce000, 0x00000004 },
    { 0x0014009b, 0x00000008 },
    { 0x4000e000, 0000000000 },
    { 0x02400000, 0x00000004 },
    { 0x400ee000, 0x00000004 },
    { 0x02400000, 0x00000004 },
    { 0x4000e000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0240e51b, 0x00000004 },
    { 0x0080e50a, 0x00000005 },
    { 0x0080e50b, 0x00000005 },
    { 0x00220000, 0x00000004 },
    { 0x000700d5, 0x00000004 },
    { 0x000000b2, 0x00000038 },
    { 0x000c2087, 0x00000030 },
    { 0x0880e5bd, 0x00000005 },
    { 0x000c2086, 0x00000030 },
    { 0x0800e5bb, 0x00000005 },
    { 0x000c2087, 0x00000030 },
    { 0x0880e5bc, 0x00000005 },
    { 0x000000b5, 0x00000008 },
    { 0x0080e5bd, 0x00000005 },
    { 0x0000e5bb, 0x00000005 },
    { 0x0080e5bc, 0x00000005 },
    { 0x00210000, 0x00000004 },
    { 0x02800000, 0x00000004 },
    { 0x00c000b9, 0x00000018 },
    { 0x4180e000, 0x00000040 },
    { 0x000000bb, 0x00000024 },
    { 0x01000000, 0x0000000c },
    { 0x0100e51d, 0x0000000c },
    { 0x000045bb, 0x00000004 },
    { 0x000080b5, 0x00000008 },
    { 0x0000f3ce, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c053cf, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x0000f3d2, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c053d3, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x0000f39d, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c0539e, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x03c00830, 0x00000004 },
    { 0x4200e000, 0000000000 },
    { 0x0000a000, 0x00000004 },
    { 0x200045e0, 0x00000004 },
    { 0x0000e5e1, 0000000000 },
    { 0x00000001, 0000000000 },
    { 0x000700d2, 0x00000004 },
    { 0x0800e394, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x0000e8c4, 0x00000004 },
    { 0x0000e8c5, 0x00000004 },
    { 0x0000e8c6, 0x00000004 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000d6, 0x00000008 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000dd, 0x00000008 },
    { 0x00e00116, 0000000000 },
    { 0x000700e1, 0x00000004 },
    { 0x0800401c, 0x00000004 },
    { 0x200050e7, 0x00000004 },
    { 0x0000e01d, 0x00000004 },
    { 0x000000e4, 0x00000008 },
    { 0x02c02000, 0x00000004 },
    { 0x00060000, 0x00000004 },
    { 0x000000eb, 0x00000034 },
    { 0x000000e8, 0x00000008 },
    { 0x00008000, 0x00000004 },
    { 0xc000e000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x001d0018, 0x00000004 },
    { 0x001a0001, 0x00000004 },
    { 0x000000fb, 0x00000034 },
    { 0x0000004a, 0x00000008 },
    { 0x0500a04a, 0x00000008 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
};

static const u32 RS690_cp_microcode[][2]={
    { 0x000000dd, 0x00000008 },
    { 0x000000df, 0x00000008 },
    { 0x000000a0, 0x00000008 },
    { 0x000000a4, 0x00000008 },
    { 0x4a554b4a, 0000000000 },
    { 0x4a4a4467, 0000000000 },
    { 0x55526f75, 0000000000 },
    { 0x4a7e7d65, 0000000000 },
    { 0x4ad74af6, 0000000000 },
    { 0x4ac94a4a, 0000000000 },
    { 0xcc898989, 0000000000 },
    { 0xc34ad3c5, 0000000000 },
    { 0x8e4a4a4a, 0000000000 },
    { 0x4a8a8a8a, 0000000000 },
    { 0x4a0f8c4a, 0000000000 },
    { 0x000ca000, 0x00000004 },
    { 0x000d0012, 0x00000038 },
    { 0x0000e8b4, 0x00000004 },
    { 0x000d0014, 0x00000038 },
    { 0x0000e8b6, 0x00000004 },
    { 0x000d0016, 0x00000038 },
    { 0x0000e854, 0x00000004 },
    { 0x000d0018, 0x00000038 },
    { 0x0000e855, 0x00000004 },
    { 0x000d001a, 0x00000038 },
    { 0x0000e856, 0x00000004 },
    { 0x000d001c, 0x00000038 },
    { 0x0000e857, 0x00000004 },
    { 0x000d001e, 0x00000038 },
    { 0x0000e824, 0x00000004 },
    { 0x000d0020, 0x00000038 },
    { 0x0000e825, 0x00000004 },
    { 0x000d0022, 0x00000038 },
    { 0x0000e830, 0x00000004 },
    { 0x000d0024, 0x00000038 },
    { 0x0000f0c0, 0x00000004 },
    { 0x000d0026, 0x00000038 },
    { 0x0000f0c1, 0x00000004 },
    { 0x000d0028, 0x00000038 },
    { 0x0000f041, 0x00000004 },
    { 0x000d002a, 0x00000038 },
    { 0x0000f184, 0x00000004 },
    { 0x000d002c, 0x00000038 },
    { 0x0000f185, 0x00000004 },
    { 0x000d002e, 0x00000038 },
    { 0x0000f186, 0x00000004 },
    { 0x000d0030, 0x00000038 },
    { 0x0000f187, 0x00000004 },
    { 0x000d0032, 0x00000038 },
    { 0x0000f180, 0x00000004 },
    { 0x000d0034, 0x00000038 },
    { 0x0000f393, 0x00000004 },
    { 0x000d0036, 0x00000038 },
    { 0x0000f38a, 0x00000004 },
    { 0x000d0038, 0x00000038 },
    { 0x0000f38e, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000043, 0x00000018 },
    { 0x00cce800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x0000003a, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x2000451d, 0x00000004 },
    { 0x0000e580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x08004580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x00000047, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x00032000, 0x00000004 },
    { 0x00022051, 0x00000028 },
    { 0x00000051, 0x00000024 },
    { 0x0800450f, 0x00000004 },
    { 0x0000a04b, 0x00000008 },
    { 0x0000e565, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000052, 0x00000008 },
    { 0x03cca5b4, 0x00000004 },
    { 0x05432000, 0x00000004 },
    { 0x00022000, 0x00000004 },
    { 0x4ccce05e, 0x00000030 },
    { 0x08274565, 0x00000004 },
    { 0x0000005e, 0x00000030 },
    { 0x08004564, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000055, 0x00000008 },
    { 0x00802061, 0x00000010 },
    { 0x00202000, 0x00000004 },
    { 0x001b00ff, 0x00000004 },
    { 0x01000064, 0x00000010 },
    { 0x001f2000, 0x00000004 },
    { 0x001c00ff, 0x00000004 },
    { 0000000000, 0x0000000c },
    { 0x00000072, 0x00000030 },
    { 0x00000055, 0x00000008 },
    { 0x0000e576, 0x00000004 },
    { 0x0000e577, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x0000e50f, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000069, 0x00000018 },
    { 0x00c0e5f9, 0x000000c2 },
    { 0x00000069, 0x00000008 },
    { 0x0014e50e, 0x00000004 },
    { 0x0040e50f, 0x00000004 },
    { 0x00c0006c, 0x00000008 },
    { 0x0000e570, 0x00000004 },
    { 0x0000e571, 0x00000004 },
    { 0x0000e572, 0x0000000c },
    { 0x0000a000, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x0000e568, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00000076, 0x00000018 },
    { 0x000b0000, 0x00000004 },
    { 0x18c0e562, 0x00000004 },
    { 0x00000078, 0x00000008 },
    { 0x00c00077, 0x00000008 },
    { 0x000700cb, 0x00000004 },
    { 0x00000084, 0x00000038 },
    { 0x000ca086, 0x00000030 },
    { 0x080045bb, 0x00000004 },
    { 0x000c2087, 0x00000030 },
    { 0x0800e5bc, 0000000000 },
    { 0x0000e5bb, 0x00000004 },
    { 0x0000e5bc, 0000000000 },
    { 0x00120000, 0x0000000c },
    { 0x00120000, 0x00000004 },
    { 0x001b0002, 0x0000000c },
    { 0x0000a000, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e800, 0000000000 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e82e, 0000000000 },
    { 0x02cca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000ce1cc, 0x00000004 },
    { 0x050de1cd, 0x00000004 },
    { 0x00400000, 0x00000004 },
    { 0x00000096, 0x00000018 },
    { 0x00c0a000, 0x00000004 },
    { 0x00000093, 0x00000008 },
    { 0x00000098, 0x00000020 },
    { 0x4200e000, 0000000000 },
    { 0x0000009f, 0x00000038 },
    { 0x000ca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00160000, 0x00000004 },
    { 0x700ce000, 0x00000004 },
    { 0x0014009b, 0x00000008 },
    { 0x4000e000, 0000000000 },
    { 0x02400000, 0x00000004 },
    { 0x400ee000, 0x00000004 },
    { 0x02400000, 0x00000004 },
    { 0x4000e000, 0000000000 },
    { 0x00100000, 0x0000002c },
    { 0x00004000, 0000000000 },
    { 0x080045c8, 0x00000004 },
    { 0x00240005, 0x00000004 },
    { 0x08004d0b, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x0240e51b, 0x00000004 },
    { 0x0080e50a, 0x00000005 },
    { 0x0080e50b, 0x00000005 },
    { 0x00220000, 0x00000004 },
    { 0x000700cb, 0x00000004 },
    { 0x000000b7, 0x00000038 },
    { 0x000c2087, 0x00000030 },
    { 0x0880e5bd, 0x00000005 },
    { 0x000c2086, 0x00000030 },
    { 0x0800e5bb, 0x00000005 },
    { 0x000c2087, 0x00000030 },
    { 0x0880e5bc, 0x00000005 },
    { 0x000000ba, 0x00000008 },
    { 0x0080e5bd, 0x00000005 },
    { 0x0000e5bb, 0x00000005 },
    { 0x0080e5bc, 0x00000005 },
    { 0x00210000, 0x00000004 },
    { 0x02800000, 0x00000004 },
    { 0x00c000be, 0x00000018 },
    { 0x4180e000, 0x00000040 },
    { 0x000000c0, 0x00000024 },
    { 0x01000000, 0x0000000c },
    { 0x0100e51d, 0x0000000c },
    { 0x000045bb, 0x00000004 },
    { 0x000080ba, 0x00000008 },
    { 0x03c00830, 0x00000004 },
    { 0x4200e000, 0000000000 },
    { 0x0000a000, 0x00000004 },
    { 0x200045e0, 0x00000004 },
    { 0x0000e5e1, 0000000000 },
    { 0x00000001, 0000000000 },
    { 0x000700c8, 0x00000004 },
    { 0x0800e394, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x0000e8c4, 0x00000004 },
    { 0x0000e8c5, 0x00000004 },
    { 0x0000e8c6, 0x00000004 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000cc, 0x00000008 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000d3, 0x00000008 },
    { 0x02c02000, 0x00000004 },
    { 0x00060000, 0x00000004 },
    { 0x000000db, 0x00000034 },
    { 0x000000d8, 0x00000008 },
    { 0x00008000, 0x00000004 },
    { 0xc000e000, 0000000000 },
    { 0x000000e1, 0x00000030 },
    { 0x4200e000, 0000000000 },
    { 0x000000e1, 0x00000030 },
    { 0x4000e000, 0000000000 },
    { 0x0025001b, 0x00000004 },
    { 0x00230000, 0x00000004 },
    { 0x00250005, 0x00000004 },
    { 0x000000e6, 0x00000034 },
    { 0000000000, 0x0000000c },
    { 0x00244000, 0x00000004 },
    { 0x080045c8, 0x00000004 },
    { 0x00240005, 0x00000004 },
    { 0x08004d0b, 0x0000000c },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x001d0018, 0x00000004 },
    { 0x001a0001, 0x00000004 },
    { 0x000000fb, 0x00000034 },
    { 0x0000004a, 0x00000008 },
    { 0x0500a04a, 0x00000008 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
};

static const u32 R520_cp_microcode[][2]={
    { 0x4200e000, 0000000000 },
    { 0x4000e000, 0000000000 },
    { 0x00000099, 0x00000008 },
    { 0x0000009d, 0x00000008 },
    { 0x4a554b4a, 0000000000 },
    { 0x4a4a4467, 0000000000 },
    { 0x55526f75, 0000000000 },
    { 0x4a7e7d65, 0000000000 },
    { 0xe0dae6f6, 0000000000 },
    { 0x4ac54a4a, 0000000000 },
    { 0xc8828282, 0000000000 },
    { 0xbf4acfc1, 0000000000 },
    { 0x87b04ad5, 0000000000 },
    { 0xb5838383, 0000000000 },
    { 0x4a0f85ba, 0000000000 },
    { 0x000ca000, 0x00000004 },
    { 0x000d0012, 0x00000038 },
    { 0x0000e8b4, 0x00000004 },
    { 0x000d0014, 0x00000038 },
    { 0x0000e8b6, 0x00000004 },
    { 0x000d0016, 0x00000038 },
    { 0x0000e854, 0x00000004 },
    { 0x000d0018, 0x00000038 },
    { 0x0000e855, 0x00000004 },
    { 0x000d001a, 0x00000038 },
    { 0x0000e856, 0x00000004 },
    { 0x000d001c, 0x00000038 },
    { 0x0000e857, 0x00000004 },
    { 0x000d001e, 0x00000038 },
    { 0x0000e824, 0x00000004 },
    { 0x000d0020, 0x00000038 },
    { 0x0000e825, 0x00000004 },
    { 0x000d0022, 0x00000038 },
    { 0x0000e830, 0x00000004 },
    { 0x000d0024, 0x00000038 },
    { 0x0000f0c0, 0x00000004 },
    { 0x000d0026, 0x00000038 },
    { 0x0000f0c1, 0x00000004 },
    { 0x000d0028, 0x00000038 },
    { 0x0000e000, 0x00000004 },
    { 0x000d002a, 0x00000038 },
    { 0x0000e000, 0x00000004 },
    { 0x000d002c, 0x00000038 },
    { 0x0000e000, 0x00000004 },
    { 0x000d002e, 0x00000038 },
    { 0x0000e000, 0x00000004 },
    { 0x000d0030, 0x00000038 },
    { 0x0000e000, 0x00000004 },
    { 0x000d0032, 0x00000038 },
    { 0x0000f180, 0x00000004 },
    { 0x000d0034, 0x00000038 },
    { 0x0000f393, 0x00000004 },
    { 0x000d0036, 0x00000038 },
    { 0x0000f38a, 0x00000004 },
    { 0x000d0038, 0x00000038 },
    { 0x0000f38e, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000043, 0x00000018 },
    { 0x00cce800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x08004800, 0x00000004 },
    { 0x0000003a, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x2000451d, 0x00000004 },
    { 0x0000e580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x08004580, 0x00000004 },
    { 0x000ce581, 0x00000004 },
    { 0x00000047, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x00032000, 0x00000004 },
    { 0x00022051, 0x00000028 },
    { 0x00000051, 0x00000024 },
    { 0x0800450f, 0x00000004 },
    { 0x0000a04b, 0x00000008 },
    { 0x0000e565, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000052, 0x00000008 },
    { 0x03cca5b4, 0x00000004 },
    { 0x05432000, 0x00000004 },
    { 0x00022000, 0x00000004 },
    { 0x4ccce05e, 0x00000030 },
    { 0x08274565, 0x00000004 },
    { 0x0000005e, 0x00000030 },
    { 0x08004564, 0x00000004 },
    { 0x0000e566, 0x00000004 },
    { 0x00000055, 0x00000008 },
    { 0x00802061, 0x00000010 },
    { 0x00202000, 0x00000004 },
    { 0x001b00ff, 0x00000004 },
    { 0x01000064, 0x00000010 },
    { 0x001f2000, 0x00000004 },
    { 0x001c00ff, 0x00000004 },
    { 0000000000, 0x0000000c },
    { 0x00000072, 0x00000030 },
    { 0x00000055, 0x00000008 },
    { 0x0000e576, 0x00000004 },
    { 0x0000e577, 0x00000004 },
    { 0x0000e50e, 0x00000004 },
    { 0x0000e50f, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00000069, 0x00000018 },
    { 0x00c0e5f9, 0x000000c2 },
    { 0x00000069, 0x00000008 },
    { 0x0014e50e, 0x00000004 },
    { 0x0040e50f, 0x00000004 },
    { 0x00c0006c, 0x00000008 },
    { 0x0000e570, 0x00000004 },
    { 0x0000e571, 0x00000004 },
    { 0x0000e572, 0x0000000c },
    { 0x0000a000, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x0000e568, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00000076, 0x00000018 },
    { 0x000b0000, 0x00000004 },
    { 0x18c0e562, 0x00000004 },
    { 0x00000078, 0x00000008 },
    { 0x00c00077, 0x00000008 },
    { 0x000700c7, 0x00000004 },
    { 0x00000080, 0x00000038 },
    { 0x0000e5bb, 0x00000004 },
    { 0x0000e5bc, 0000000000 },
    { 0x0000a000, 0x00000004 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e800, 0000000000 },
    { 0x0000e821, 0x00000004 },
    { 0x0000e82e, 0000000000 },
    { 0x02cca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000ce1cc, 0x00000004 },
    { 0x050de1cd, 0x00000004 },
    { 0x00400000, 0x00000004 },
    { 0x0000008f, 0x00000018 },
    { 0x00c0a000, 0x00000004 },
    { 0x0000008c, 0x00000008 },
    { 0x00000091, 0x00000020 },
    { 0x4200e000, 0000000000 },
    { 0x00000098, 0x00000038 },
    { 0x000ca000, 0x00000004 },
    { 0x00140000, 0x00000004 },
    { 0x000c2000, 0x00000004 },
    { 0x00160000, 0x00000004 },
    { 0x700ce000, 0x00000004 },
    { 0x00140094, 0x00000008 },
    { 0x4000e000, 0000000000 },
    { 0x02400000, 0x00000004 },
    { 0x400ee000, 0x00000004 },
    { 0x02400000, 0x00000004 },
    { 0x4000e000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x0240e51b, 0x00000004 },
    { 0x0080e50a, 0x00000005 },
    { 0x0080e50b, 0x00000005 },
    { 0x00220000, 0x00000004 },
    { 0x000700c7, 0x00000004 },
    { 0x000000a4, 0x00000038 },
    { 0x0080e5bd, 0x00000005 },
    { 0x0000e5bb, 0x00000005 },
    { 0x0080e5bc, 0x00000005 },
    { 0x00210000, 0x00000004 },
    { 0x02800000, 0x00000004 },
    { 0x00c000ab, 0x00000018 },
    { 0x4180e000, 0x00000040 },
    { 0x000000ad, 0x00000024 },
    { 0x01000000, 0x0000000c },
    { 0x0100e51d, 0x0000000c },
    { 0x000045bb, 0x00000004 },
    { 0x000080a7, 0x00000008 },
    { 0x0000f3ce, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c053cf, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x0000f3d2, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c053d3, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x0000f39d, 0x00000004 },
    { 0x0140a000, 0x00000004 },
    { 0x00cc2000, 0x00000004 },
    { 0x08c0539e, 0x00000040 },
    { 0x00008000, 0000000000 },
    { 0x03c00830, 0x00000004 },
    { 0x4200e000, 0000000000 },
    { 0x0000a000, 0x00000004 },
    { 0x200045e0, 0x00000004 },
    { 0x0000e5e1, 0000000000 },
    { 0x00000001, 0000000000 },
    { 0x000700c4, 0x00000004 },
    { 0x0800e394, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x0000e8c4, 0x00000004 },
    { 0x0000e8c5, 0x00000004 },
    { 0x0000e8c6, 0x00000004 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000c8, 0x00000008 },
    { 0x0000e928, 0x00000004 },
    { 0x0000e929, 0x00000004 },
    { 0x0000e92a, 0x00000004 },
    { 0x000000cf, 0x00000008 },
    { 0xdeadbeef, 0000000000 },
    { 0x00000116, 0000000000 },
    { 0x000700d3, 0x00000004 },
    { 0x080050e7, 0x00000004 },
    { 0x000700d4, 0x00000004 },
    { 0x0800401c, 0x00000004 },
    { 0x0000e01d, 0000000000 },
    { 0x02c02000, 0x00000004 },
    { 0x00060000, 0x00000004 },
    { 0x000000de, 0x00000034 },
    { 0x000000db, 0x00000008 },
    { 0x00008000, 0x00000004 },
    { 0xc000e000, 0000000000 },
    { 0x0000e1cc, 0x00000004 },
    { 0x0500e1cd, 0x00000004 },
    { 0x000ca000, 0x00000004 },
    { 0x000000e5, 0x00000034 },
    { 0x000000e1, 0x00000008 },
    { 0x0000a000, 0000000000 },
    { 0x0019e1cc, 0x00000004 },
    { 0x001b0001, 0x00000004 },
    { 0x0500a000, 0x00000004 },
    { 0x080041cd, 0x00000004 },
    { 0x000ca000, 0x00000004 },
    { 0x000000fb, 0x00000034 },
    { 0x0000004a, 0x00000008 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0x000c2000, 0x00000004 },
    { 0x001d0018, 0x00000004 },
    { 0x001a0001, 0x00000004 },
    { 0x000000fb, 0x00000034 },
    { 0x0000004a, 0x00000008 },
    { 0x0500a04a, 0x00000008 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
    { 0000000000, 0000000000 },
};


#endif