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
|
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
* Copyright (c) 2019, Microsoft Corporation.
*
* Author:
* Iouri Tarassov <iourit@linux.microsoft.com>
*
* Dxgkrnl Graphics Driver
* User mode WDDM interface definitions
*
*/
#ifndef _D3DKMTHK_H
#define _D3DKMTHK_H
/*
* This structure matches the definition of D3DKMTHANDLE in Windows.
* The handle is opaque in user mode. It is used by user mode applications to
* represent kernel mode objects, created by dxgkrnl.
*/
struct d3dkmthandle {
union {
struct {
__u32 instance : 6;
__u32 index : 24;
__u32 unique : 2;
};
__u32 v;
};
};
/*
* VM bus messages return Windows' NTSTATUS, which is integer and only negative
* value indicates a failure. A positive number is a success and needs to be
* returned to user mode as the IOCTL return code. Negative status codes are
* converted to Linux error codes.
*/
struct ntstatus {
union {
struct {
int code : 16;
int facility : 13;
int customer : 1;
int severity : 2;
};
int v;
};
};
/*
* Matches the Windows LUID definition.
* LUID is a locally unique identifier (similar to GUID, but not global),
* which is guaranteed to be unique intil the computer is rebooted.
*/
struct winluid {
__u32 a;
__u32 b;
};
#define D3DDDI_MAX_WRITTEN_PRIMARIES 16
#define D3DKMT_CREATEALLOCATION_MAX 1024
#define D3DKMT_MAKERESIDENT_ALLOC_MAX (1024 * 10)
#define D3DKMT_ADAPTERS_MAX 64
#define D3DDDI_MAX_BROADCAST_CONTEXT 64
#define D3DDDI_MAX_OBJECT_WAITED_ON 32
#define D3DDDI_MAX_OBJECT_SIGNALED 32
struct d3dkmt_adapterinfo {
struct d3dkmthandle adapter_handle;
struct winluid adapter_luid;
__u32 num_sources;
__u32 present_move_regions_preferred;
};
struct d3dkmt_enumadapters2 {
__u32 num_adapters;
__u32 reserved;
#ifdef __KERNEL__
struct d3dkmt_adapterinfo *adapters;
#else
__u64 *adapters;
#endif
};
struct d3dkmt_closeadapter {
struct d3dkmthandle adapter_handle;
};
struct d3dkmt_openadapterfromluid {
struct winluid adapter_luid;
struct d3dkmthandle adapter_handle;
};
struct d3dddi_allocationlist {
struct d3dkmthandle allocation;
union {
struct {
__u32 write_operation :1;
__u32 do_not_retire_instance :1;
__u32 offer_priority :3;
__u32 reserved :27;
};
__u32 value;
};
};
struct d3dddi_patchlocationlist {
__u32 allocation_index;
union {
struct {
__u32 slot_id:24;
__u32 reserved:8;
};
__u32 value;
};
__u32 driver_id;
__u32 allocation_offset;
__u32 patch_offset;
__u32 split_offset;
};
struct d3dkmt_createdeviceflags {
__u32 legacy_mode:1;
__u32 request_vSync:1;
__u32 disable_gpu_timeout:1;
__u32 gdi_device:1;
__u32 reserved:28;
};
struct d3dkmt_createdevice {
struct d3dkmthandle adapter;
__u32 reserved3;
struct d3dkmt_createdeviceflags flags;
struct d3dkmthandle device;
#ifdef __KERNEL__
void *command_buffer;
#else
__u64 command_buffer;
#endif
__u32 command_buffer_size;
__u32 reserved;
#ifdef __KERNEL__
struct d3dddi_allocationlist *allocation_list;
#else
__u64 allocation_list;
#endif
__u32 allocation_list_size;
__u32 reserved1;
#ifdef __KERNEL__
struct d3dddi_patchlocationlist *patch_location_list;
#else
__u64 patch_location_list;
#endif
__u32 patch_location_list_size;
__u32 reserved2;
};
struct d3dkmt_destroydevice {
struct d3dkmthandle device;
};
enum d3dkmt_clienthint {
_D3DKMT_CLIENTHNT_UNKNOWN = 0,
_D3DKMT_CLIENTHINT_OPENGL = 1,
_D3DKMT_CLIENTHINT_CDD = 2,
_D3DKMT_CLIENTHINT_DX7 = 7,
_D3DKMT_CLIENTHINT_DX8 = 8,
_D3DKMT_CLIENTHINT_DX9 = 9,
_D3DKMT_CLIENTHINT_DX10 = 10,
};
struct d3dddi_createcontextflags {
union {
struct {
__u32 null_rendering:1;
__u32 initial_data:1;
__u32 disable_gpu_timeout:1;
__u32 synchronization_only:1;
__u32 hw_queue_supported:1;
__u32 reserved:27;
};
__u32 value;
};
};
struct d3dkmt_destroycontext {
struct d3dkmthandle context;
};
struct d3dkmt_createcontextvirtual {
struct d3dkmthandle device;
__u32 node_ordinal;
__u32 engine_affinity;
struct d3dddi_createcontextflags flags;
#ifdef __KERNEL__
void *priv_drv_data;
#else
__u64 priv_drv_data;
#endif
__u32 priv_drv_data_size;
enum d3dkmt_clienthint client_hint;
struct d3dkmthandle context;
};
struct d3dddi_createhwqueueflags {
union {
struct {
__u32 disable_gpu_timeout:1;
__u32 reserved:31;
};
__u32 value;
};
};
enum d3dddi_pagingqueue_priority {
_D3DDDI_PAGINGQUEUE_PRIORITY_BELOW_NORMAL = -1,
_D3DDDI_PAGINGQUEUE_PRIORITY_NORMAL = 0,
_D3DDDI_PAGINGQUEUE_PRIORITY_ABOVE_NORMAL = 1,
};
struct d3dkmt_createpagingqueue {
struct d3dkmthandle device;
enum d3dddi_pagingqueue_priority priority;
struct d3dkmthandle paging_queue;
struct d3dkmthandle sync_object;
#ifdef __KERNEL__
void *fence_cpu_virtual_address;
#else
__u64 fence_cpu_virtual_address;
#endif
__u32 physical_adapter_index;
};
struct d3dddi_destroypagingqueue {
struct d3dkmthandle paging_queue;
};
enum d3dddi_knownescapetype {
_D3DDDI_DRIVERESCAPETYPE_TRANSLATEALLOCATIONHANDLE = 0,
_D3DDDI_DRIVERESCAPETYPE_TRANSLATERESOURCEHANDLE = 1,
_D3DDDI_DRIVERESCAPETYPE_CPUEVENTUSAGE = 2,
_D3DDDI_DRIVERESCAPETYPE_BUILDTESTCOMMANDBUFFER = 3,
};
struct d3dddi_translate_allocation_handle {
enum d3dddi_knownescapetype escape_type;
struct d3dkmthandle allocation;
};
struct d3dddi_testcommand {
char buffer[72];
};
#define D3DDDI_MAXTESTBUFFERSIZE 4096
#define D3DDDI_MAXTESTBUFFERPRIVATEDRIVERDATASIZE 1024
struct d3dddi_buildtestcommandbuffer {
enum d3dddi_knownescapetype escape_type;
struct d3dkmthandle device;
struct d3dkmthandle context;
__u32 flags;
struct d3dddi_testcommand command;
void *dma_buffer;
void *dma_buffer_priv_data;
__u32 dma_buffer_size;
__u32 dma_buffer_priv_data_size;
};
enum d3dkmt_escapetype {
_D3DKMT_ESCAPE_DRIVERPRIVATE = 0,
_D3DKMT_ESCAPE_VIDMM = 1,
_D3DKMT_ESCAPE_VIDSCH = 3,
_D3DKMT_ESCAPE_DEVICE = 4,
_D3DKMT_ESCAPE_DRT_TEST = 8,
};
struct d3dddi_escapeflags {
union {
struct {
__u32 hardware_access:1;
__u32 device_status_query:1;
__u32 change_frame_latency:1;
__u32 no_adapter_synchronization:1;
__u32 reserved:1;
__u32 virtual_machine_data:1;
__u32 driver_known_escape:1;
__u32 driver_common_escape:1;
__u32 reserved2:24;
};
__u32 value;
};
};
struct d3dkmt_escape {
struct d3dkmthandle adapter;
struct d3dkmthandle device;
enum d3dkmt_escapetype type;
struct d3dddi_escapeflags flags;
#ifdef __KERNEL__
void *priv_drv_data;
#else
__u64 priv_drv_data;
#endif
__u32 priv_drv_data_size;
struct d3dkmthandle context;
};
enum dxgk_render_pipeline_stage {
_DXGK_RENDER_PIPELINE_STAGE_UNKNOWN = 0,
_DXGK_RENDER_PIPELINE_STAGE_INPUT_ASSEMBLER = 1,
_DXGK_RENDER_PIPELINE_STAGE_VERTEX_SHADER = 2,
_DXGK_RENDER_PIPELINE_STAGE_GEOMETRY_SHADER = 3,
_DXGK_RENDER_PIPELINE_STAGE_STREAM_OUTPUT = 4,
_DXGK_RENDER_PIPELINE_STAGE_RASTERIZER = 5,
_DXGK_RENDER_PIPELINE_STAGE_PIXEL_SHADER = 6,
_DXGK_RENDER_PIPELINE_STAGE_OUTPUT_MERGER = 7,
};
enum dxgk_page_fault_flags {
_DXGK_PAGE_FAULT_WRITE = 0x1,
_DXGK_PAGE_FAULT_FENCE_INVALID = 0x2,
_DXGK_PAGE_FAULT_ADAPTER_RESET_REQUIRED = 0x4,
_DXGK_PAGE_FAULT_ENGINE_RESET_REQUIRED = 0x8,
_DXGK_PAGE_FAULT_FATAL_HARDWARE_ERROR = 0x10,
_DXGK_PAGE_FAULT_IOMMU = 0x20,
_DXGK_PAGE_FAULT_HW_CONTEXT_VALID = 0x40,
_DXGK_PAGE_FAULT_PROCESS_HANDLE_VALID = 0x80,
};
enum dxgk_general_error_code {
_DXGK_GENERAL_ERROR_PAGE_FAULT = 0,
_DXGK_GENERAL_ERROR_INVALID_INSTRUCTION = 1,
};
struct dxgk_fault_error_code {
union {
struct {
__u32 is_device_specific_code:1;
enum dxgk_general_error_code general_error_code:31;
};
struct {
__u32 is_device_specific_code_reserved_bit:1;
__u32 device_specific_code:31;
};
};
};
struct d3dkmt_devicereset_state {
union {
struct {
__u32 desktop_switched:1;
__u32 reserved:31;
};
__u32 value;
};
};
struct d3dkmt_devicepagefault_state {
__u64 faulted_primitive_api_sequence_number;
enum dxgk_render_pipeline_stage faulted_pipeline_stage;
__u32 faulted_bind_table_entry;
enum dxgk_page_fault_flags page_fault_flags;
struct dxgk_fault_error_code fault_error_code;
__u64 faulted_virtual_address;
};
enum d3dkmt_deviceexecution_state {
_D3DKMT_DEVICEEXECUTION_ACTIVE = 1,
_D3DKMT_DEVICEEXECUTION_RESET = 2,
_D3DKMT_DEVICEEXECUTION_HUNG = 3,
_D3DKMT_DEVICEEXECUTION_STOPPED = 4,
_D3DKMT_DEVICEEXECUTION_ERROR_OUTOFMEMORY = 5,
_D3DKMT_DEVICEEXECUTION_ERROR_DMAFAULT = 6,
_D3DKMT_DEVICEEXECUTION_ERROR_DMAPAGEFAULT = 7,
};
enum d3dkmt_devicestate_type {
_D3DKMT_DEVICESTATE_EXECUTION = 1,
_D3DKMT_DEVICESTATE_PRESENT = 2,
_D3DKMT_DEVICESTATE_RESET = 3,
_D3DKMT_DEVICESTATE_PRESENT_DWM = 4,
_D3DKMT_DEVICESTATE_PAGE_FAULT = 5,
_D3DKMT_DEVICESTATE_PRESENT_QUEUE = 6,
};
struct d3dkmt_getdevicestate {
struct d3dkmthandle device;
enum d3dkmt_devicestate_type state_type;
union {
enum d3dkmt_deviceexecution_state execution_state;
struct d3dkmt_devicereset_state reset_state;
struct d3dkmt_devicepagefault_state page_fault_state;
char alignment[48];
};
};
enum d3dkmdt_gdisurfacetype {
_D3DKMDT_GDISURFACE_INVALID = 0,
_D3DKMDT_GDISURFACE_TEXTURE = 1,
_D3DKMDT_GDISURFACE_STAGING_CPUVISIBLE = 2,
_D3DKMDT_GDISURFACE_STAGING = 3,
_D3DKMDT_GDISURFACE_LOOKUPTABLE = 4,
_D3DKMDT_GDISURFACE_EXISTINGSYSMEM = 5,
_D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE = 6,
_D3DKMDT_GDISURFACE_TEXTURE_CROSSADAPTER = 7,
_D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE_CROSSADAPTER = 8,
};
struct d3dddi_rational {
__u32 numerator;
__u32 denominator;
};
enum d3dddiformat {
_D3DDDIFMT_UNKNOWN = 0,
};
struct d3dkmdt_gdisurfacedata {
__u32 width;
__u32 height;
__u32 format;
enum d3dkmdt_gdisurfacetype type;
__u32 flags;
__u32 pitch;
};
struct d3dkmdt_stagingsurfacedata {
__u32 width;
__u32 height;
__u32 pitch;
};
struct d3dkmdt_sharedprimarysurfacedata {
__u32 width;
__u32 height;
enum d3dddiformat format;
struct d3dddi_rational refresh_rate;
__u32 vidpn_source_id;
};
struct d3dkmdt_shadowsurfacedata {
__u32 width;
__u32 height;
enum d3dddiformat format;
__u32 pitch;
};
enum d3dkmdt_standardallocationtype {
_D3DKMDT_STANDARDALLOCATION_SHAREDPRIMARYSURFACE = 1,
_D3DKMDT_STANDARDALLOCATION_SHADOWSURFACE = 2,
_D3DKMDT_STANDARDALLOCATION_STAGINGSURFACE = 3,
_D3DKMDT_STANDARDALLOCATION_GDISURFACE = 4,
};
struct d3dddi_synchronizationobject_flags {
union {
struct {
__u32 shared:1;
__u32 nt_security_sharing:1;
__u32 cross_adapter:1;
__u32 top_of_pipeline:1;
__u32 no_signal:1;
__u32 no_wait:1;
__u32 no_signal_max_value_on_tdr:1;
__u32 no_gpu_access:1;
__u32 reserved:23;
};
__u32 value;
};
};
enum d3dddi_synchronizationobject_type {
_D3DDDI_SYNCHRONIZATION_MUTEX = 1,
_D3DDDI_SEMAPHORE = 2,
_D3DDDI_FENCE = 3,
_D3DDDI_CPU_NOTIFICATION = 4,
_D3DDDI_MONITORED_FENCE = 5,
_D3DDDI_PERIODIC_MONITORED_FENCE = 6,
_D3DDDI_SYNCHRONIZATION_TYPE_LIMIT
};
struct d3dddi_synchronizationobjectinfo2 {
enum d3dddi_synchronizationobject_type type;
struct d3dddi_synchronizationobject_flags flags;
union {
struct {
__u32 initial_state;
} synchronization_mutex;
struct {
__u32 max_count;
__u32 initial_count;
} semaphore;
struct {
__u64 fence_value;
} fence;
struct {
__u64 event;
} cpu_notification;
struct {
__u64 initial_fence_value;
#ifdef __KERNEL__
void *fence_cpu_virtual_address;
#else
__u64 *fence_cpu_virtual_address;
#endif
__u64 fence_gpu_virtual_address;
__u32 engine_affinity;
} monitored_fence;
struct {
struct d3dkmthandle adapter;
__u32 vidpn_target_id;
__u64 time;
#ifdef __KERNEL__
void *fence_cpu_virtual_address;
#else
__u64 fence_cpu_virtual_address;
#endif
__u64 fence_gpu_virtual_address;
__u32 engine_affinity;
} periodic_monitored_fence;
struct {
__u64 reserved[8];
} reserved;
};
struct d3dkmthandle shared_handle;
};
struct d3dkmt_createsynchronizationobject2 {
struct d3dkmthandle device;
__u32 reserved;
struct d3dddi_synchronizationobjectinfo2 info;
struct d3dkmthandle sync_object;
__u32 reserved1;
};
struct d3dkmt_waitforsynchronizationobject2 {
struct d3dkmthandle context;
__u32 object_count;
struct d3dkmthandle object_array[D3DDDI_MAX_OBJECT_WAITED_ON];
union {
struct {
__u64 fence_value;
} fence;
__u64 reserved[8];
};
};
struct d3dddicb_signalflags {
union {
struct {
__u32 signal_at_submission:1;
__u32 enqueue_cpu_event:1;
__u32 allow_fence_rewind:1;
__u32 reserved:28;
__u32 DXGK_SIGNAL_FLAG_INTERNAL0:1;
};
__u32 value;
};
};
struct d3dkmt_signalsynchronizationobject2 {
struct d3dkmthandle context;
__u32 object_count;
struct d3dkmthandle object_array[D3DDDI_MAX_OBJECT_SIGNALED];
struct d3dddicb_signalflags flags;
__u32 context_count;
struct d3dkmthandle contexts[D3DDDI_MAX_BROADCAST_CONTEXT];
union {
struct {
__u64 fence_value;
} fence;
__u64 cpu_event_handle;
__u64 reserved[8];
};
};
struct d3dddi_waitforsynchronizationobjectfromcpu_flags {
union {
struct {
__u32 wait_any:1;
__u32 reserved:31;
};
__u32 value;
};
};
struct d3dkmt_waitforsynchronizationobjectfromcpu {
struct d3dkmthandle device;
__u32 object_count;
#ifdef __KERNEL__
struct d3dkmthandle *objects;
__u64 *fence_values;
#else
__u64 objects;
__u64 fence_values;
#endif
__u64 async_event;
struct d3dddi_waitforsynchronizationobjectfromcpu_flags flags;
};
struct d3dkmt_signalsynchronizationobjectfromcpu {
struct d3dkmthandle device;
__u32 object_count;
#ifdef __KERNEL__
struct d3dkmthandle *objects;
__u64 *fence_values;
#else
__u64 objects;
__u64 fence_values;
#endif
struct d3dddicb_signalflags flags;
};
struct d3dkmt_waitforsynchronizationobjectfromgpu {
struct d3dkmthandle context;
__u32 object_count;
#ifdef __KERNEL__
struct d3dkmthandle *objects;
#else
__u64 objects;
#endif
union {
#ifdef __KERNEL__
__u64 *monitored_fence_values;
#else
__u64 monitored_fence_values;
#endif
__u64 fence_value;
__u64 reserved[8];
};
};
struct d3dkmt_signalsynchronizationobjectfromgpu {
struct d3dkmthandle context;
__u32 object_count;
#ifdef __KERNEL__
struct d3dkmthandle *objects;
#else
__u64 objects;
#endif
union {
#ifdef __KERNEL__
__u64 *monitored_fence_values;
#else
__u64 monitored_fence_values;
#endif
__u64 reserved[8];
};
};
struct d3dkmt_signalsynchronizationobjectfromgpu2 {
__u32 object_count;
__u32 reserved1;
#ifdef __KERNEL__
struct d3dkmthandle *objects;
#else
__u64 objects;
#endif
struct d3dddicb_signalflags flags;
__u32 context_count;
#ifdef __KERNEL__
struct d3dkmthandle *contexts;
#else
__u64 contexts;
#endif
union {
__u64 fence_value;
__u64 cpu_event_handle;
#ifdef __KERNEL__
__u64 *monitored_fence_values;
#else
__u64 monitored_fence_values;
#endif
__u64 reserved[8];
};
};
struct d3dkmt_destroysynchronizationobject {
struct d3dkmthandle sync_object;
};
struct d3dkmt_submitcommandflags {
__u32 null_rendering:1;
__u32 present_redirected:1;
__u32 reserved:30;
};
struct d3dkmt_submitcommand {
__u64 command_buffer;
__u32 command_length;
struct d3dkmt_submitcommandflags flags;
__u64 present_history_token;
__u32 broadcast_context_count;
struct d3dkmthandle broadcast_context[D3DDDI_MAX_BROADCAST_CONTEXT];
__u32 reserved;
#ifdef __KERNEL__
void *priv_drv_data;
#else
__u64 priv_drv_data;
#endif
__u32 priv_drv_data_size;
__u32 num_primaries;
struct d3dkmthandle written_primaries[D3DDDI_MAX_WRITTEN_PRIMARIES];
__u32 num_history_buffers;
__u32 reserved1;
#ifdef __KERNEL__
struct d3dkmthandle *history_buffer_array;
#else
__u64 history_buffer_array;
#endif
};
struct d3dkmt_submitcommandtohwqueue {
struct d3dkmthandle hwqueue;
__u32 reserved;
__u64 hwqueue_progress_fence_id;
__u64 command_buffer;
__u32 command_length;
__u32 priv_drv_data_size;
#ifdef __KERNEL__
void *priv_drv_data;
#else
__u64 priv_drv_data;
#endif
__u32 num_primaries;
__u32 reserved1;
#ifdef __KERNEL__
struct d3dkmthandle *written_primaries;
#else
__u64 written_primaries;
#endif
};
struct d3dkmt_setcontextschedulingpriority {
struct d3dkmthandle context;
int priority;
};
struct d3dkmt_setcontextinprocessschedulingpriority {
struct d3dkmthandle context;
int priority;
};
struct d3dkmt_getcontextschedulingpriority {
struct d3dkmthandle context;
int priority;
};
struct d3dkmt_getcontextinprocessschedulingpriority {
struct d3dkmthandle context;
int priority;
};
struct d3dkmt_setallocationpriority {
struct d3dkmthandle device;
struct d3dkmthandle resource;
#ifdef __KERNEL__
const struct d3dkmthandle *allocation_list;
#else
__u64 allocation_list;
#endif
__u32 allocation_count;
__u32 reserved;
#ifdef __KERNEL__
const __u32 *priorities;
#else
__u64 priorities;
#endif
};
struct d3dkmt_getallocationpriority {
struct d3dkmthandle device;
struct d3dkmthandle resource;
#ifdef __KERNEL__
const struct d3dkmthandle *allocation_list;
#else
__u64 allocation_list;
#endif
__u32 allocation_count;
__u32 reserved;
#ifdef __KERNEL__
__u32 *priorities;
#else
__u64 priorities;
#endif
};
enum d3dkmt_allocationresidencystatus {
_D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINGPUMEMORY = 1,
_D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINSHAREDMEMORY = 2,
_D3DKMT_ALLOCATIONRESIDENCYSTATUS_NOTRESIDENT = 3,
};
struct d3dkmt_queryallocationresidency {
struct d3dkmthandle device;
struct d3dkmthandle resource;
#ifdef __KERNEL__
struct d3dkmthandle *allocations;
#else
__u64 allocations;
#endif
__u32 allocation_count;
__u32 reserved;
#ifdef __KERNEL__
enum d3dkmt_allocationresidencystatus *residency_status;
#else
__u64 residency_status;
#endif
};
struct d3dddicb_lock2flags {
union {
struct {
__u32 reserved:32;
};
__u32 value;
};
};
struct d3dkmt_lock2 {
struct d3dkmthandle device;
struct d3dkmthandle allocation;
struct d3dddicb_lock2flags flags;
__u32 reserved;
#ifdef __KERNEL__
void *data;
#else
__u64 data;
#endif
};
struct d3dkmt_unlock2 {
struct d3dkmthandle device;
struct d3dkmthandle allocation;
};
enum d3dkmt_device_error_reason {
_D3DKMT_DEVICE_ERROR_REASON_GENERIC = 0x80000000,
_D3DKMT_DEVICE_ERROR_REASON_DRIVER_ERROR = 0x80000006,
};
struct d3dkmt_markdeviceaserror {
struct d3dkmthandle device;
enum d3dkmt_device_error_reason reason;
};
enum d3dkmt_standardallocationtype {
_D3DKMT_STANDARDALLOCATIONTYPE_EXISTINGHEAP = 1,
_D3DKMT_STANDARDALLOCATIONTYPE_CROSSADAPTER = 2,
};
struct d3dkmt_standardallocation_existingheap {
__u64 size;
};
struct d3dkmt_createstandardallocationflags {
union {
struct {
__u32 reserved:32;
};
__u32 value;
};
};
struct d3dkmt_createstandardallocation {
enum d3dkmt_standardallocationtype type;
__u32 reserved;
struct d3dkmt_standardallocation_existingheap existing_heap_data;
struct d3dkmt_createstandardallocationflags flags;
__u32 reserved1;
};
struct d3dddi_allocationinfo2 {
struct d3dkmthandle allocation;
#ifdef __KERNEL__
const void *sysmem;
#else
__u64 sysmem;
#endif
#ifdef __KERNEL__
void *priv_drv_data;
#else
__u64 priv_drv_data;
#endif
__u32 priv_drv_data_size;
__u32 vidpn_source_id;
union {
struct {
__u32 primary:1;
__u32 stereo:1;
__u32 override_priority:1;
__u32 reserved:29;
};
__u32 value;
} flags;
__u64 gpu_virtual_address;
union {
__u32 priority;
__u64 unused;
};
__u64 reserved[5];
};
struct d3dkmt_createallocationflags {
union {
struct {
__u32 create_resource:1;
__u32 create_shared:1;
__u32 non_secure:1;
__u32 create_protected:1;
__u32 restrict_shared_access:1;
__u32 existing_sysmem:1;
__u32 nt_security_sharing:1;
__u32 read_only:1;
__u32 create_write_combined:1;
__u32 create_cached:1;
__u32 swap_chain_back_buffer:1;
__u32 cross_adapter:1;
__u32 open_cross_adapter:1;
__u32 partial_shared_creation:1;
__u32 zeroed:1;
__u32 write_watch:1;
__u32 standard_allocation:1;
__u32 existing_section:1;
__u32 reserved:14;
};
__u32 value;
};
};
struct d3dkmt_createallocation {
struct d3dkmthandle device;
struct d3dkmthandle resource;
struct d3dkmthandle global_share;
__u32 reserved;
#ifdef __KERNEL__
const void *private_runtime_data;
#else
__u64 private_runtime_data;
#endif
__u32 private_runtime_data_size;
__u32 reserved1;
union {
#ifdef __KERNEL__
struct d3dkmt_createstandardallocation *standard_allocation;
const void *priv_drv_data;
#else
__u64 standard_allocation;
__u64 priv_drv_data;
#endif
};
__u32 priv_drv_data_size;
__u32 alloc_count;
#ifdef __KERNEL__
struct d3dddi_allocationinfo2 *allocation_info;
#else
__u64 allocation_info;
#endif
struct d3dkmt_createallocationflags flags;
__u32 reserved2;
__u64 private_runtime_resource_handle;
};
struct d3dddicb_destroyallocation2flags {
union {
struct {
__u32 assume_not_in_use:1;
__u32 synchronous_destroy:1;
__u32 reserved:29;
__u32 system_use_only:1;
};
__u32 value;
};
};
struct d3dkmt_destroyallocation2 {
struct d3dkmthandle device;
struct d3dkmthandle resource;
#ifdef __KERNEL__
const struct d3dkmthandle *allocations;
#else
__u64 allocations;
#endif
__u32 alloc_count;
struct d3dddicb_destroyallocation2flags flags;
};
struct d3dddi_makeresident_flags {
union {
struct {
__u32 cant_trim_further:1;
__u32 must_succeed:1;
__u32 reserved:30;
};
__u32 value;
};
};
struct d3dddi_makeresident {
struct d3dkmthandle paging_queue;
__u32 alloc_count;
#ifdef __KERNEL__
const struct d3dkmthandle *allocation_list;
const __u32 *priority_list;
#else
__u64 allocation_list;
__u64 priority_list;
#endif
struct d3dddi_makeresident_flags flags;
__u64 paging_fence_value;
__u64 num_bytes_to_trim;
};
struct d3dddi_evict_flags {
union {
struct {
__u32 evict_only_if_necessary:1;
__u32 not_written_to:1;
__u32 reserved:30;
};
__u32 value;
};
};
struct d3dkmt_evict {
struct d3dkmthandle device;
__u32 alloc_count;
#ifdef __KERNEL__
const struct d3dkmthandle *allocations;
#else
__u64 allocations;
#endif
struct d3dddi_evict_flags flags;
__u32 reserved;
__u64 num_bytes_to_trim;
};
struct d3dddigpuva_protection_type {
union {
struct {
__u64 write:1;
__u64 execute:1;
__u64 zero:1;
__u64 no_access:1;
__u64 system_use_only:1;
__u64 reserved:59;
};
__u64 value;
};
};
enum d3dddi_updategpuvirtualaddress_operation_type {
_D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP = 0,
_D3DDDI_UPDATEGPUVIRTUALADDRESS_UNMAP = 1,
_D3DDDI_UPDATEGPUVIRTUALADDRESS_COPY = 2,
_D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP_PROTECT = 3,
};
struct d3dddi_updategpuvirtualaddress_operation {
enum d3dddi_updategpuvirtualaddress_operation_type operation;
union {
struct {
__u64 base_address;
__u64 size;
struct d3dkmthandle allocation;
__u64 allocation_offset;
__u64 allocation_size;
} map;
struct {
__u64 base_address;
__u64 size;
struct d3dkmthandle allocation;
__u64 allocation_offset;
__u64 allocation_size;
struct d3dddigpuva_protection_type protection;
__u64 driver_protection;
} map_protect;
struct {
__u64 base_address;
__u64 size;
struct d3dddigpuva_protection_type protection;
} unmap;
struct {
__u64 source_address;
__u64 size;
__u64 dest_address;
} copy;
};
};
enum d3dddigpuva_reservation_type {
_D3DDDIGPUVA_RESERVE_NO_ACCESS = 0,
_D3DDDIGPUVA_RESERVE_ZERO = 1,
_D3DDDIGPUVA_RESERVE_NO_COMMIT = 2
};
struct d3dkmt_updategpuvirtualaddress {
struct d3dkmthandle device;
struct d3dkmthandle context;
struct d3dkmthandle fence_object;
__u32 num_operations;
#ifdef __KERNEL__
struct d3dddi_updategpuvirtualaddress_operation *operations;
#else
__u64 operations;
#endif
__u32 reserved0;
__u32 reserved1;
__u64 reserved2;
__u64 fence_value;
union {
struct {
__u32 do_not_wait:1;
__u32 reserved:31;
};
__u32 value;
} flags;
__u32 reserved3;
};
struct d3dddi_mapgpuvirtualaddress {
struct d3dkmthandle paging_queue;
__u64 base_address;
__u64 minimum_address;
__u64 maximum_address;
struct d3dkmthandle allocation;
__u64 offset_in_pages;
__u64 size_in_pages;
struct d3dddigpuva_protection_type protection;
__u64 driver_protection;
__u32 reserved0;
__u64 reserved1;
__u64 virtual_address;
__u64 paging_fence_value;
};
struct d3dddi_reservegpuvirtualaddress {
struct d3dkmthandle adapter;
__u64 base_address;
__u64 minimum_address;
__u64 maximum_address;
__u64 size;
enum d3dddigpuva_reservation_type reservation_type;
__u64 driver_protection;
__u64 virtual_address;
__u64 paging_fence_value;
};
struct d3dkmt_freegpuvirtualaddress {
struct d3dkmthandle adapter;
__u32 reserved;
__u64 base_address;
__u64 size;
};
enum d3dkmt_memory_segment_group {
_D3DKMT_MEMORY_SEGMENT_GROUP_LOCAL = 0,
_D3DKMT_MEMORY_SEGMENT_GROUP_NON_LOCAL = 1
};
struct d3dkmt_queryvideomemoryinfo {
__u64 process;
struct d3dkmthandle adapter;
enum d3dkmt_memory_segment_group memory_segment_group;
__u64 budget;
__u64 current_usage;
__u64 current_reservation;
__u64 available_for_reservation;
__u32 physical_adapter_index;
};
struct d3dkmt_adaptertype {
union {
struct {
__u32 render_supported:1;
__u32 display_supported:1;
__u32 software_device:1;
__u32 post_device:1;
__u32 hybrid_discrete:1;
__u32 hybrid_integrated:1;
__u32 indirect_display_device:1;
__u32 paravirtualized:1;
__u32 acg_supported:1;
__u32 support_set_timings_from_vidpn:1;
__u32 detachable:1;
__u32 compute_only:1;
__u32 prototype:1;
__u32 reserved:19;
};
__u32 value;
};
};
enum kmtqueryadapterinfotype {
_KMTQAITYPE_UMDRIVERPRIVATE = 0,
_KMTQAITYPE_ADAPTERTYPE = 15,
_KMTQAITYPE_ADAPTERTYPE_RENDER = 57
};
struct d3dkmt_queryadapterinfo {
struct d3dkmthandle adapter;
enum kmtqueryadapterinfotype type;
#ifdef __KERNEL__
void *private_data;
#else
__u64 private_data;
#endif
__u32 private_data_size;
};
#pragma pack(push, 1)
struct dxgk_gpuclockdata_flags {
union {
struct {
__u32 context_management_processor:1;
__u32 reserved:31;
};
__u32 value;
};
};
struct dxgk_gpuclockdata {
__u64 gpu_frequency;
__u64 gpu_clock_counter;
__u64 cpu_clock_counter;
struct dxgk_gpuclockdata_flags flags;
} __packed;
struct d3dkmt_queryclockcalibration {
struct d3dkmthandle adapter;
__u32 node_ordinal;
__u32 physical_adapter_index;
struct dxgk_gpuclockdata clock_data;
};
#pragma pack(pop)
struct d3dkmt_flushheaptransitions {
struct d3dkmthandle adapter;
};
struct d3dddi_openallocationinfo2 {
struct d3dkmthandle allocation;
#ifdef __KERNEL__
void *priv_drv_data;
#else
__u64 priv_drv_data;
#endif
__u32 priv_drv_data_size;
__u64 gpu_va;
__u64 reserved[6];
};
struct d3dddi_updateallocproperty_flags {
union {
struct {
__u32 accessed_physically:1;
__u32 reserved:31;
};
__u32 value;
};
};
struct d3dddi_segmentpreference {
union {
struct {
__u32 segment_id0:5;
__u32 direction0:1;
__u32 segment_id1:5;
__u32 direction1:1;
__u32 segment_id2:5;
__u32 direction2:1;
__u32 segment_id3:5;
__u32 direction3:1;
__u32 segment_id4:5;
__u32 direction4:1;
__u32 reserved:2;
};
__u32 value;
};
};
struct d3dddi_updateallocproperty {
struct d3dkmthandle paging_queue;
struct d3dkmthandle allocation;
__u32 supported_segment_set;
struct d3dddi_segmentpreference preferred_segment;
struct d3dddi_updateallocproperty_flags flags;
__u64 paging_fence_value;
union {
struct {
__u32 set_accessed_physically:1;
__u32 set_supported_segmentSet:1;
__u32 set_preferred_segment:1;
__u32 reserved:29;
};
__u32 property_mask_value;
};
};
enum d3dkmt_offer_priority {
_D3DKMT_OFFER_PRIORITY_LOW = 1,
_D3DKMT_OFFER_PRIORITY_NORMAL = 2,
_D3DKMT_OFFER_PRIORITY_HIGH = 3,
_D3DKMT_OFFER_PRIORITY_AUTO = 4,
};
struct d3dkmt_offer_flags {
union {
struct {
__u32 offer_immediately:1;
__u32 allow_decommit:1;
__u32 reserved:30;
};
__u32 value;
};
};
struct d3dkmt_offerallocations {
struct d3dkmthandle device;
__u32 reserved;
#ifdef __KERNEL__
struct d3dkmthandle *resources;
const struct d3dkmthandle *allocations;
#else
__u64 resources;
__u64 allocations;
#endif
__u32 allocation_count;
enum d3dkmt_offer_priority priority;
struct d3dkmt_offer_flags flags;
__u32 reserved1;
};
enum d3dddi_reclaim_result {
_D3DDDI_RECLAIM_RESULT_OK = 0,
_D3DDDI_RECLAIM_RESULT_DISCARDED = 1,
_D3DDDI_RECLAIM_RESULT_NOT_COMMITTED = 2,
};
struct d3dkmt_reclaimallocations2 {
struct d3dkmthandle paging_queue;
__u32 allocation_count;
#ifdef __KERNEL__
struct d3dkmthandle *resources;
struct d3dkmthandle *allocations;
#else
__u64 resources;
__u64 allocations;
#endif
union {
#ifdef __KERNEL__
__u32 *discarded;
enum d3dddi_reclaim_result *results;
#else
__u64 discarded;
__u64 results;
#endif
};
__u64 paging_fence_value;
};
struct d3dkmt_changevideomemoryreservation {
__u64 process;
struct d3dkmthandle adapter;
enum d3dkmt_memory_segment_group memory_segment_group;
__u64 reservation;
__u32 physical_adapter_index;
};
struct d3dkmt_createhwqueue {
struct d3dkmthandle context;
struct d3dddi_createhwqueueflags flags;
__u32 priv_drv_data_size;
__u32 reserved;
#ifdef __KERNEL__
void *priv_drv_data;
#else
__u64 priv_drv_data;
#endif
struct d3dkmthandle queue;
struct d3dkmthandle queue_progress_fence;
#ifdef __KERNEL__
void *queue_progress_fence_cpu_va;
#else
__u64 queue_progress_fence_cpu_va;
#endif
__u64 queue_progress_fence_gpu_va;
};
struct d3dkmt_destroyhwqueue {
struct d3dkmthandle queue;
};
struct d3dkmt_submitwaitforsyncobjectstohwqueue {
struct d3dkmthandle hwqueue;
__u32 object_count;
#ifdef __KERNEL__
struct d3dkmthandle *objects;
__u64 *fence_values;
#else
__u64 objects;
__u64 fence_values;
#endif
};
struct d3dkmt_submitsignalsyncobjectstohwqueue {
struct d3dddicb_signalflags flags;
__u32 hwqueue_count;
#ifdef __KERNEL__
struct d3dkmthandle *hwqueues;
#else
__u64 hwqueues;
#endif
__u32 object_count;
__u32 reserved;
#ifdef __KERNEL__
struct d3dkmthandle *objects;
__u64 *fence_values;
#else
__u64 objects;
__u64 fence_values;
#endif
};
struct d3dkmt_opensyncobjectfromnthandle2 {
__u64 nt_handle;
struct d3dkmthandle device;
struct d3dddi_synchronizationobject_flags flags;
struct d3dkmthandle sync_object;
__u32 reserved1;
union {
struct {
#ifdef __KERNEL__
void *fence_value_cpu_va;
#else
__u64 fence_value_cpu_va;
#endif
__u64 fence_value_gpu_va;
__u32 engine_affinity;
} monitored_fence;
__u64 reserved[8];
};
};
struct d3dkmt_openresourcefromnthandle {
struct d3dkmthandle device;
__u32 reserved;
__u64 nt_handle;
__u32 allocation_count;
__u32 reserved1;
#ifdef __KERNEL__
struct d3dddi_openallocationinfo2 *open_alloc_info;
#else
__u64 open_alloc_info;
#endif
int private_runtime_data_size;
__u32 reserved2;
#ifdef __KERNEL__
void *private_runtime_data;
#else
__u64 private_runtime_data;
#endif
__u32 resource_priv_drv_data_size;
__u32 reserved3;
#ifdef __KERNEL__
void *resource_priv_drv_data;
#else
__u64 resource_priv_drv_data;
#endif
__u32 total_priv_drv_data_size;
#ifdef __KERNEL__
void *total_priv_drv_data;
#else
__u64 total_priv_drv_data;
#endif
struct d3dkmthandle resource;
struct d3dkmthandle keyed_mutex;
#ifdef __KERNEL__
void *keyed_mutex_private_data;
#else
__u64 keyed_mutex_private_data;
#endif
__u32 keyed_mutex_private_data_size;
struct d3dkmthandle sync_object;
};
struct d3dkmt_queryresourceinfofromnthandle {
struct d3dkmthandle device;
__u32 reserved;
__u64 nt_handle;
#ifdef __KERNEL__
void *private_runtime_data;
#else
__u64 private_runtime_data;
#endif
__u32 private_runtime_data_size;
__u32 total_priv_drv_data_size;
__u32 resource_priv_drv_data_size;
__u32 allocation_count;
};
struct d3dkmt_shareobjects {
__u32 object_count;
__u32 reserved;
#ifdef __KERNEL__
const struct d3dkmthandle *objects;
void *object_attr; /* security attributes */
#else
__u64 objects;
__u64 object_attr;
#endif
__u32 desired_access;
__u32 reserved1;
#ifdef __KERNEL__
__u64 *shared_handle; /* output file descriptors */
#else
__u64 shared_handle;
#endif
};
union d3dkmt_enumadapters_filter {
struct {
__u64 include_compute_only:1;
__u64 include_display_only:1;
__u64 reserved:62;
};
__u64 value;
};
struct d3dkmt_enumadapters3 {
union d3dkmt_enumadapters_filter filter;
__u32 adapter_count;
__u32 reserved;
#ifdef __KERNEL__
struct d3dkmt_adapterinfo *adapters;
#else
__u64 adapters;
#endif
};
enum d3dkmt_querystatistics_type {
_D3DKMT_QUERYSTATISTICS_ADAPTER = 0,
_D3DKMT_QUERYSTATISTICS_PROCESS = 1,
_D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER = 2,
_D3DKMT_QUERYSTATISTICS_SEGMENT = 3,
_D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT = 4,
_D3DKMT_QUERYSTATISTICS_NODE = 5,
_D3DKMT_QUERYSTATISTICS_PROCESS_NODE = 6,
_D3DKMT_QUERYSTATISTICS_VIDPNSOURCE = 7,
_D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE = 8,
_D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP = 9,
_D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER = 10,
};
struct d3dkmt_querystatistics_result {
char size[0x308];
};
struct d3dkmt_querystatistics {
union {
struct {
enum d3dkmt_querystatistics_type type;
struct winluid adapter_luid;
__u64 process;
struct d3dkmt_querystatistics_result result;
};
char size[0x328];
};
};
struct d3dkmt_shareobjectwithhost {
struct d3dkmthandle device_handle;
struct d3dkmthandle object_handle;
__u64 reserved;
__u64 object_vail_nt_handle;
};
struct d3dkmt_createsyncfile {
struct d3dkmthandle device;
struct d3dkmthandle monitored_fence;
__u64 fence_value;
__u64 sync_file_handle; /* out */
};
struct d3dkmt_waitsyncfile {
__u64 sync_file_handle;
struct d3dkmthandle context;
__u32 reserved;
};
struct d3dkmt_opensyncobjectfromsyncfile {
__u64 sync_file_handle;
struct d3dkmthandle device;
struct d3dkmthandle syncobj; /* out */
__u64 fence_value; /* out */
#ifdef __KERNEL__
void *fence_value_cpu_va; /* out */
#else
__u64 fence_value_cpu_va; /* out */
#endif
__u64 fence_value_gpu_va; /* out */
};
struct d3dkmt_enumprocesses {
struct winluid adapter_luid;
#ifdef __KERNEL__
__u32 *buffer;
#else
__u64 buffer;
#endif
__u64 buffer_count;
};
enum dxgk_feature_id {
_DXGK_FEATURE_HWSCH = 0,
_DXGK_FEATURE_PAGE_BASED_MEMORY_MANAGER = 32,
_DXGK_FEATURE_KERNEL_MODE_TESTING = 33,
_DXGK_FEATURE_MAX
};
struct dxgk_isfeatureenabled_result {
__u16 version;
union {
struct {
__u16 enabled : 1;
__u16 known_feature : 1;
__u16 supported_by_driver : 1;
__u16 supported_on_config : 1;
__u16 reserved : 12;
};
__u16 value;
};
};
struct d3dkmt_isfeatureenabled {
struct d3dkmthandle adapter;
enum dxgk_feature_id feature_id;
struct dxgk_isfeatureenabled_result result;
};
struct d3dkmt_invalidatecache {
struct d3dkmthandle device;
struct d3dkmthandle allocation;
__u64 offset;
__u64 length;
};
/*
* Dxgkrnl Graphics Port Driver ioctl definitions
*
*/
#define LX_DXOPENADAPTERFROMLUID \
_IOWR(0x47, 0x01, struct d3dkmt_openadapterfromluid)
#define LX_DXCREATEDEVICE \
_IOWR(0x47, 0x02, struct d3dkmt_createdevice)
#define LX_DXCREATECONTEXTVIRTUAL \
_IOWR(0x47, 0x04, struct d3dkmt_createcontextvirtual)
#define LX_DXDESTROYCONTEXT \
_IOWR(0x47, 0x05, struct d3dkmt_destroycontext)
#define LX_DXCREATEALLOCATION \
_IOWR(0x47, 0x06, struct d3dkmt_createallocation)
#define LX_DXCREATEPAGINGQUEUE \
_IOWR(0x47, 0x07, struct d3dkmt_createpagingqueue)
#define LX_DXRESERVEGPUVIRTUALADDRESS \
_IOWR(0x47, 0x08, struct d3dddi_reservegpuvirtualaddress)
#define LX_DXQUERYADAPTERINFO \
_IOWR(0x47, 0x09, struct d3dkmt_queryadapterinfo)
#define LX_DXQUERYVIDEOMEMORYINFO \
_IOWR(0x47, 0x0a, struct d3dkmt_queryvideomemoryinfo)
#define LX_DXMAKERESIDENT \
_IOWR(0x47, 0x0b, struct d3dddi_makeresident)
#define LX_DXMAPGPUVIRTUALADDRESS \
_IOWR(0x47, 0x0c, struct d3dddi_mapgpuvirtualaddress)
#define LX_DXESCAPE \
_IOWR(0x47, 0x0d, struct d3dkmt_escape)
#define LX_DXGETDEVICESTATE \
_IOWR(0x47, 0x0e, struct d3dkmt_getdevicestate)
#define LX_DXSUBMITCOMMAND \
_IOWR(0x47, 0x0f, struct d3dkmt_submitcommand)
#define LX_DXCREATESYNCHRONIZATIONOBJECT \
_IOWR(0x47, 0x10, struct d3dkmt_createsynchronizationobject2)
#define LX_DXSIGNALSYNCHRONIZATIONOBJECT \
_IOWR(0x47, 0x11, struct d3dkmt_signalsynchronizationobject2)
#define LX_DXWAITFORSYNCHRONIZATIONOBJECT \
_IOWR(0x47, 0x12, struct d3dkmt_waitforsynchronizationobject2)
#define LX_DXDESTROYALLOCATION2 \
_IOWR(0x47, 0x13, struct d3dkmt_destroyallocation2)
#define LX_DXENUMADAPTERS2 \
_IOWR(0x47, 0x14, struct d3dkmt_enumadapters2)
#define LX_DXCLOSEADAPTER \
_IOWR(0x47, 0x15, struct d3dkmt_closeadapter)
#define LX_DXCHANGEVIDEOMEMORYRESERVATION \
_IOWR(0x47, 0x16, struct d3dkmt_changevideomemoryreservation)
#define LX_DXCREATEHWQUEUE \
_IOWR(0x47, 0x18, struct d3dkmt_createhwqueue)
#define LX_DXDESTROYHWQUEUE \
_IOWR(0x47, 0x1b, struct d3dkmt_destroyhwqueue)
#define LX_DXDESTROYPAGINGQUEUE \
_IOWR(0x47, 0x1c, struct d3dddi_destroypagingqueue)
#define LX_DXDESTROYDEVICE \
_IOWR(0x47, 0x19, struct d3dkmt_destroydevice)
#define LX_DXDESTROYSYNCHRONIZATIONOBJECT \
_IOWR(0x47, 0x1d, struct d3dkmt_destroysynchronizationobject)
#define LX_DXEVICT \
_IOWR(0x47, 0x1e, struct d3dkmt_evict)
#define LX_DXFLUSHHEAPTRANSITIONS \
_IOWR(0x47, 0x1f, struct d3dkmt_flushheaptransitions)
#define LX_DXFREEGPUVIRTUALADDRESS \
_IOWR(0x47, 0x20, struct d3dkmt_freegpuvirtualaddress)
#define LX_DXGETCONTEXTINPROCESSSCHEDULINGPRIORITY \
_IOWR(0x47, 0x21, struct d3dkmt_getcontextinprocessschedulingpriority)
#define LX_DXGETCONTEXTSCHEDULINGPRIORITY \
_IOWR(0x47, 0x22, struct d3dkmt_getcontextschedulingpriority)
#define LX_DXINVALIDATECACHE \
_IOWR(0x47, 0x24, struct d3dkmt_invalidatecache)
#define LX_DXLOCK2 \
_IOWR(0x47, 0x25, struct d3dkmt_lock2)
#define LX_DXMARKDEVICEASERROR \
_IOWR(0x47, 0x26, struct d3dkmt_markdeviceaserror)
#define LX_DXOFFERALLOCATIONS \
_IOWR(0x47, 0x27, struct d3dkmt_offerallocations)
#define LX_DXQUERYALLOCATIONRESIDENCY \
_IOWR(0x47, 0x2a, struct d3dkmt_queryallocationresidency)
#define LX_DXRECLAIMALLOCATIONS2 \
_IOWR(0x47, 0x2c, struct d3dkmt_reclaimallocations2)
#define LX_DXSETALLOCATIONPRIORITY \
_IOWR(0x47, 0x2e, struct d3dkmt_setallocationpriority)
#define LX_DXSETCONTEXTINPROCESSSCHEDULINGPRIORITY \
_IOWR(0x47, 0x2f, struct d3dkmt_setcontextinprocessschedulingpriority)
#define LX_DXSETCONTEXTSCHEDULINGPRIORITY \
_IOWR(0x47, 0x30, struct d3dkmt_setcontextschedulingpriority)
#define LX_DXSIGNALSYNCHRONIZATIONOBJECTFROMCPU \
_IOWR(0x47, 0x31, struct d3dkmt_signalsynchronizationobjectfromcpu)
#define LX_DXSIGNALSYNCHRONIZATIONOBJECTFROMGPU \
_IOWR(0x47, 0x32, struct d3dkmt_signalsynchronizationobjectfromgpu)
#define LX_DXSIGNALSYNCHRONIZATIONOBJECTFROMGPU2 \
_IOWR(0x47, 0x33, struct d3dkmt_signalsynchronizationobjectfromgpu2)
#define LX_DXSUBMITCOMMANDTOHWQUEUE \
_IOWR(0x47, 0x34, struct d3dkmt_submitcommandtohwqueue)
#define LX_DXSUBMITSIGNALSYNCOBJECTSTOHWQUEUE \
_IOWR(0x47, 0x35, struct d3dkmt_submitsignalsyncobjectstohwqueue)
#define LX_DXSUBMITWAITFORSYNCOBJECTSTOHWQUEUE \
_IOWR(0x47, 0x36, struct d3dkmt_submitwaitforsyncobjectstohwqueue)
#define LX_DXUNLOCK2 \
_IOWR(0x47, 0x37, struct d3dkmt_unlock2)
#define LX_DXUPDATEALLOCPROPERTY \
_IOWR(0x47, 0x38, struct d3dddi_updateallocproperty)
#define LX_DXUPDATEGPUVIRTUALADDRESS \
_IOWR(0x47, 0x39, struct d3dkmt_updategpuvirtualaddress)
#define LX_DXWAITFORSYNCHRONIZATIONOBJECTFROMCPU \
_IOWR(0x47, 0x3a, struct d3dkmt_waitforsynchronizationobjectfromcpu)
#define LX_DXWAITFORSYNCHRONIZATIONOBJECTFROMGPU \
_IOWR(0x47, 0x3b, struct d3dkmt_waitforsynchronizationobjectfromgpu)
#define LX_DXGETALLOCATIONPRIORITY \
_IOWR(0x47, 0x3c, struct d3dkmt_getallocationpriority)
#define LX_DXQUERYCLOCKCALIBRATION \
_IOWR(0x47, 0x3d, struct d3dkmt_queryclockcalibration)
#define LX_DXENUMADAPTERS3 \
_IOWR(0x47, 0x3e, struct d3dkmt_enumadapters3)
#define LX_DXSHAREOBJECTS \
_IOWR(0x47, 0x3f, struct d3dkmt_shareobjects)
#define LX_DXOPENSYNCOBJECTFROMNTHANDLE2 \
_IOWR(0x47, 0x40, struct d3dkmt_opensyncobjectfromnthandle2)
#define LX_DXQUERYRESOURCEINFOFROMNTHANDLE \
_IOWR(0x47, 0x41, struct d3dkmt_queryresourceinfofromnthandle)
#define LX_DXOPENRESOURCEFROMNTHANDLE \
_IOWR(0x47, 0x42, struct d3dkmt_openresourcefromnthandle)
#define LX_DXQUERYSTATISTICS \
_IOWR(0x47, 0x43, struct d3dkmt_querystatistics)
#define LX_DXSHAREOBJECTWITHHOST \
_IOWR(0x47, 0x44, struct d3dkmt_shareobjectwithhost)
#define LX_DXCREATESYNCFILE \
_IOWR(0x47, 0x45, struct d3dkmt_createsyncfile)
#define LX_DXWAITSYNCFILE \
_IOWR(0x47, 0x46, struct d3dkmt_waitsyncfile)
#define LX_DXOPENSYNCOBJECTFROMSYNCFILE \
_IOWR(0x47, 0x47, struct d3dkmt_opensyncobjectfromsyncfile)
#define LX_DXENUMPROCESSES \
_IOWR(0x47, 0x48, struct d3dkmt_enumprocesses)
#define LX_ISFEATUREENABLED \
_IOWR(0x47, 0x49, struct d3dkmt_isfeatureenabled)
#endif /* _D3DKMTHK_H */
|