1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 | /* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2026 LeapIO Tech Inc. * * LeapRAID storage and RAID controller driver. */ #ifndef LEAPRAID_H #define LEAPRAID_H /* Doorbell register definitions. */ #define LEAPRAID_DB_RESET 0x00000000 #define LEAPRAID_DB_READY 0x10000000 #define LEAPRAID_DB_OPERATIONAL 0x20000000 #define LEAPRAID_DB_FAULT 0x40000000 #define LEAPRAID_DB_MASK 0xF0000000 #define LEAPRAID_DB_OVER_TEMPERATURE 0x2810 #define LEAPRAID_DB_USED 0x08000000 #define LEAPRAID_DB_DATA_MASK 0x0000FFFF #define LEAPRAID_DB_FUNC_SHIFT 24 #define LEAPRAID_DB_ADD_DWORDS_SHIFT 16 /* Maximum number of retries waiting for doorbell to become ready. */ #define LEAPRAID_DB_RETRY_COUNT_MAX 10 /* Maximum number of retries waiting for doorbell to become operational. */ #define LEAPRAID_DB_WAIT_OP_SHORT 10 #define LEAPRAID_DB_WAIT_OP_LONG 200 /* Maximum number of retries waiting for host to end recovery. */ #define LEAPRAID_WAIT_SHOST_RECOVERY 400 /* Diagnostic register definitions. */ #define LEAPRAID_DIAG_WRITE_ENABLE 0x00000080 #define LEAPRAID_DIAG_RESET 0x00000004 /* Interrupt status register definitions. */ #define LEAPRAID_HOST2ADAPTER_DB_STATUS 0x80000000 #define LEAPRAID_ADAPTER2HOST_DB_STATUS 0x00000001 /* The number of debug register. */ #define LEAPRAID_DEBUGLOG_SZ_MAX 16 /* Reply post host register definitions. */ #define REP_POST_HOST_IDX_REG_CNT 16 #define LEAPRAID_RPHI_MSIX_IDX_SHIFT 24 /* Virtual PHY flags. */ #define LEAPRAID_SAS_PHYINFO_VPHY 0x00001000 /* Linux driver init firmware. */ #define LEAPRAID_WHOINIT_LINUX_DRIVER 0x04 /* Reply descriptor post queue array mode. */ #define LEAPRAID_ADAPTER_INIT_MSGFLG_RDPQ_ARRAY_MODE 0x01 /* Request description flags. */ #define LEAPRAID_REQ_DESC_FLG_SCSI_IO 0x00 #define LEAPRAID_REQ_DESC_FLG_HPR 0x06 #define LEAPRAID_REQ_DESC_FLG_DFLT_TYPE 0x08 /* Reply description flags. */ #define LEAPRAID_RPY_DESC_FLG_TYPE_MASK 0x0F #define LEAPRAID_RPY_DESC_FLG_SCSI_IO_SUCCESS 0x00 #define LEAPRAID_RPY_DESC_FLG_ADDRESS_REPLY 0x01 #define LEAPRAID_RPY_DESC_FLG_FP_SCSI_IO_SUCCESS 0x06 #define LEAPRAID_RPY_DESC_FLG_UNUSED 0x0F /* Request and reply messages share the same set of function codes. * * Note: SCSIIO (SCSI I/O) represents SCSI I/O operations and is used * consistently throughout the driver for all SCSI command handling. */ #define LEAPRAID_FUNC_SCSIIO 0x00 #define LEAPRAID_FUNC_SCSI_TMF 0x01 #define LEAPRAID_FUNC_ADAPTER_INIT 0x02 #define LEAPRAID_FUNC_GET_ADAPTER_FEATURES 0x03 #define LEAPRAID_FUNC_CONFIG_OP 0x04 #define LEAPRAID_FUNC_SCAN_DEV 0x06 #define LEAPRAID_FUNC_EVENT_NOTIFY 0x07 #define LEAPRAID_FUNC_FW_DOWNLOAD 0x09 #define LEAPRAID_FUNC_FW_UPLOAD 0x12 #define LEAPRAID_FUNC_SCSIIO_RAID_PASSTHROUGH 0x16 #define LEAPRAID_FUNC_SCSI_ENC_PROCESSOR 0x18 #define LEAPRAID_FUNC_SMP_PASSTHROUGH 0x1A #define LEAPRAID_FUNC_SAS_IO_UNIT_CTRL 0x1B #define LEAPRAID_FUNC_SCSIIO_SATA_PASSTHROUGH 0x1C #define LEAPRAID_FUNC_ADAPTER_UNIT_RESET 0x40 #define LEAPRAID_FUNC_HANDSHAKE 0x42 #define LEAPRAID_FUNC_LOGBUF_INIT 0x57 /* Adapter status values. */ #define LEAPRAID_ADAPTER_STATUS_MASK 0x7FFF #define LEAPRAID_ADAPTER_STATUS_SUCCESS 0x0000 #define LEAPRAID_ADAPTER_STATUS_BUSY 0x0002 #define LEAPRAID_ADAPTER_STATUS_INTERNAL_ERROR 0x0004 #define LEAPRAID_ADAPTER_STATUS_INSUFFICIENT_RESOURCES 0x0006 #define LEAPRAID_ADAPTER_STATUS_CONFIG_INVALID_ACTION 0x0020 #define LEAPRAID_ADAPTER_STATUS_CONFIG_INVALID_TYPE 0x0021 #define LEAPRAID_ADAPTER_STATUS_CONFIG_INVALID_PAGE 0x0022 #define LEAPRAID_ADAPTER_STATUS_CONFIG_INVALID_DATA 0x0023 #define LEAPRAID_ADAPTER_STATUS_CONFIG_NO_DEFAULTS 0x0024 #define LEAPRAID_ADAPTER_STATUS_CONFIG_CANT_COMMIT 0x0025 #define LEAPRAID_ADAPTER_STATUS_SCSI_RECOVERED_ERROR 0x0040 #define LEAPRAID_ADAPTER_STATUS_SCSI_DEVICE_NOT_THERE 0x0043 #define LEAPRAID_ADAPTER_STATUS_SCSI_DATA_OVERRUN 0x0044 #define LEAPRAID_ADAPTER_STATUS_SCSI_DATA_UNDERRUN 0x0045 #define LEAPRAID_ADAPTER_STATUS_SCSI_IO_DATA_ERROR 0x0046 #define LEAPRAID_ADAPTER_STATUS_SCSI_PROTOCOL_ERROR 0x0047 #define LEAPRAID_ADAPTER_STATUS_SCSI_TASK_TERMINATED 0x0048 #define LEAPRAID_ADAPTER_STATUS_SCSI_RESIDUAL_MISMATCH 0x0049 #define LEAPRAID_ADAPTER_STATUS_SCSI_TASK_MGMT_FAILED 0x004A #define LEAPRAID_ADAPTER_STATUS_SCSI_ADAPTER_TERMINATED 0x004B #define LEAPRAID_ADAPTER_STATUS_SCSI_EXT_TERMINATED 0x004C /* SGE flags. */ #define LEAPRAID_SGE_FLG_LAST_ONE 0x80 #define LEAPRAID_SGE_FLG_EOB 0x40 #define LEAPRAID_SGE_FLG_EOL 0x01 #define LEAPRAID_SGE_FLG_SHIFT 24 #define LEAPRAID_SGE_FLG_SIMPLE_ONE 0x10 #define LEAPRAID_SGE_FLG_SYSTEM_ADDR 0x00 #define LEAPRAID_SGE_FLG_H2C 0x04 #define LEAPRAID_SGE_FLG_32 0x00 #define LEAPRAID_SGE_FLG_64 0x02 #define LEAPRAID_IEEE_SGE_FLG_EOL 0x40 #define LEAPRAID_IEEE_SGE_FLG_SIMPLE_ONE 0x00 #define LEAPRAID_IEEE_SGE_FLG_CHAIN_ONE 0x80 #define LEAPRAID_IEEE_SGE_FLG_SYSTEM_ADDR 0x00 #define LEAPRAID_SGE_NO_DATA_ADDR -1 #define LEAPRAID_SGE_OFFSET_SIZE 4 /* The type of page. */ #define LEAPRAID_CFG_PT_IO_UNIT 0x00 #define LEAPRAID_CFG_PT_ADAPTER 0x01 #define LEAPRAID_CFG_PT_BIOS 0x02 #define LEAPRAID_CFG_PT_RAID_VOLUME 0x08 #define LEAPRAID_CFG_PT_MANUFACTURING 0x09 #define LEAPRAID_CFG_PT_RAID_PHYSDISK 0x0A #define LEAPRAID_CFG_PT_EXTENDED 0x0F /* The type of extended page. */ #define LEAPRAID_CFG_EXTPT_SAS_IO_UNIT 0x10 #define LEAPRAID_CFG_EXTPT_SAS_EXP 0x11 #define LEAPRAID_CFG_EXTPT_SAS_DEV 0x12 #define LEAPRAID_CFG_EXTPT_SAS_PHY 0x13 #define LEAPRAID_CFG_EXTPT_ENC 0x15 #define LEAPRAID_CFG_EXTPT_RAID_CONFIG 0x16 /* Config page address. */ #define LEAPRAID_SAS_CFG_PGAD_GET_NEXT_LOOP 0x00000000 #define LEAPRAID_SAS_ENC_CFG_PGAD_HDL 0x10000000 #define LEAPRAID_SAS_DEV_CFG_PGAD_HDL 0x20000000 #define LEAPRAID_SAS_EXP_CFG_PGAD_HDL_PHY_NUM 0x10000000 #define LEAPRAID_SAS_EXP_CFD_PGAD_HDL 0x20000000 #define LEAPRAID_SAS_EXP_CFG_PGAD_PHYNUM_SHIFT 16 #define LEAPRAID_RAID_VOL_CFG_PGAD_HDL 0x10000000 #define LEAPRAID_SAS_PHY_CFG_PGAD_PHY_NUMBER 0x00000000 #define LEAPRAID_PHYSDISK_CFG_PGAD_PHYSDISKNUM 0x10000000 /* Config page operations. */ #define LEAPRAID_CFG_ACT_PAGE_HEADER 0x00 #define LEAPRAID_CFG_ACT_PAGE_READ_CUR 0x01 #define LEAPRAID_CFG_ACT_PAGE_WRITE_CUR 0x02 /* BIOS page number. */ #define LEAPRAID_CFG_PAGE_NUM_BIOS2 0x2 #define LEAPRAID_CFG_PAGE_NUM_BIOS3 0x3 /* Manufacturing page number. */ #define LEAPRAID_CFG_PAGE_NUM_MANU0 0x0 /* SAS device page number. */ #define LEAPRAID_CFG_PAGE_NUM_DEV0 0x0 /* SAS device page 0 flags. */ #define LEAPRAID_SAS_DEV_P0_FLG_ENC_LEVEL_VALID 0x0002 #define LEAPRAID_SAS_DEV_P0_FLG_DEV_PRESENT 0x0001 #define LEAPRAID_SAS_DEV_P0_CON_NAME_LEN 4 /* SAS I/O unit page number. */ #define LEAPRAID_CFG_PAGE_NUM_IOUNIT0 0x0 #define LEAPRAID_CFG_PAGE_NUM_IOUNIT1 0x1 /* SAS expander page number. */ #define LEAPRAID_CFG_PAGE_NUM_EXP0 0x0 #define LEAPRAID_CFG_PAGE_NUM_EXP1 0x1 /* SAS enclosure page number. */ #define LEAPRAID_CFG_PAGE_NUM_ENC0 0x0 /* SAS PHY page number. */ #define LEAPRAID_CFG_PAGE_NUM_PHY0 0x0 /* RAID volume page number. */ #define LEAPRAID_CFG_PAGE_NUM_VOL0 0x0 #define LEAPRAID_CFG_PAGE_NUM_VOL1 0x1 /* Physical disk page number. */ #define LEAPRAID_CFG_PAGE_NUM_PD0 0x0 #define LEAPRAID_CFG_UNIT_SIZE 4 /* Raid volume type and state. */ #define LEAPRAID_VOL_STATE_ONLINE 0x03 #define LEAPRAID_VOL_STATE_DEGRADED 0x04 #define LEAPRAID_VOL_STATE_OPTIMAL 0x05 #define LEAPRAID_VOL_TYPE_RAID0 0x00 #define LEAPRAID_VOL_TYPE_RAID1E 0x01 #define LEAPRAID_VOL_TYPE_RAID1 0x02 #define LEAPRAID_VOL_TYPE_RAID10 0x05 #define LEAPRAID_VOL_TYPE_UNKNOWN 0xFF /* Raid volume element flags. */ #define LEAPRAID_RAIDCFG_P0_EFLG_MASK_ELEMENT_TYPE 0x000F #define LEAPRAID_RAIDCFG_P0_EFLG_VOL_PHYS_DISK_ELEMENT 0x0001 #define LEAPRAID_RAIDCFG_P0_EFLG_HOT_SPARE_ELEMENT 0x0002 #define LEAPRAID_RAIDCFG_P0_EFLG_OCE_ELEMENT 0x0003 /* SAS negotiated link rates. */ #define LEAPRAID_SAS_NEG_LINK_RATE_MASK_PHYSICAL 0x0F #define LEAPRAID_SAS_NEG_LINK_RATE_UNKNOWN_LINK_RATE 0x00 #define LEAPRAID_SAS_NEG_LINK_RATE_PHY_DISABLED 0x01 #define LEAPRAID_SAS_NEG_LINK_RATE_NEGOTIATION_FAILED 0x02 #define LEAPRAID_SAS_NEG_LINK_RATE_SATA_OOB_COMPLETE 0x03 #define LEAPRAID_SAS_NEG_LINK_RATE_PORT_SELECTOR 0x04 #define LEAPRAID_SAS_NEG_LINK_RATE_SMP_RESETTING 0x05 #define LEAPRAID_SAS_NEG_LINK_RATE_SHIFT 4 #define LEAPRAID_SAS_NEG_LINK_RATE_1_5 0x08 #define LEAPRAID_SAS_NEG_LINK_RATE_3_0 0x09 #define LEAPRAID_SAS_NEG_LINK_RATE_6_0 0x0A #define LEAPRAID_SAS_NEG_LINK_RATE_12_0 0x0B #define LEAPRAID_SAS_PRATE_MIN_RATE_MASK 0x0F #define LEAPRAID_SAS_HWRATE_MIN_RATE_MASK 0x0F /* * Control flags for a SCSI I/O Request. */ #define LEAPRAID_SCSIIO_CTRL_CDB_32BYTE 4 #define LEAPRAID_SCSIIO_CTRL_CDB_LEN_SHIFT 26 #define LEAPRAID_SCSIIO_CTRL_NODATATRANSFER 0x00000000 #define LEAPRAID_SCSIIO_CTRL_WRITE 0x01000000 #define LEAPRAID_SCSIIO_CTRL_READ 0x02000000 #define LEAPRAID_SCSIIO_CTRL_BIDIRECTIONAL 0x03000000 #define LEAPRAID_SCSIIO_CTRL_SIMPLEQ 0x00000000 #define LEAPRAID_SCSIIO_CTRL_ORDEREDQ 0x00000200 #define LEAPRAID_SCSIIO_CTRL_CMDPRI 0x00000800 /* SCSI state and status. */ #define LEAPRAID_SCSI_STATUS_BUSY 0x08 #define LEAPRAID_SCSI_STATUS_RESERVATION_CONFLICT 0x18 #define LEAPRAID_SCSI_STATUS_TASK_SET_FULL 0x28 #define LEAPRAID_SCSI_STATE_RESPONSE_INFO_VALID 0x10 #define LEAPRAID_SCSI_STATE_TERMINATED 0x08 #define LEAPRAID_SCSI_STATE_NO_SCSI_STATUS 0x04 #define LEAPRAID_SCSI_STATE_AUTOSENSE_FAILED 0x02 #define LEAPRAID_SCSI_STATE_AUTOSENSE_VALID 0x01 /* SCSI task management defines. */ #define LEAPRAID_TM_TASKTYPE_ABORT_TASK 0x01 #define LEAPRAID_TM_TASKTYPE_ABRT_TASK_SET 0x02 #define LEAPRAID_TM_TASKTYPE_TARGET_RESET 0x03 #define LEAPRAID_TM_TASKTYPE_LOGICAL_UNIT_RESET 0x05 #define LEAPRAID_TM_TASKTYPE_CLEAR_TASK_SET 0x06 #define LEAPRAID_TM_TASKTYPE_QUERY_TASK 0x07 #define LEAPRAID_TM_TASKTYPE_CLEAR_ACA 0x08 #define LEAPRAID_TM_TASKTYPE_QUERY_TASK_SET 0x09 #define LEAPRAID_TM_TASKTYPE_QUERY_ASYNC_EVENT 0x0A #define LEAPRAID_TM_MSGFLAGS_LINK_RESET 0x00 #define LEAPRAID_TM_RSP_INVALID_FRAME 0x02 /* SCSI enclosure processor request defines. */ #define LEAPRAID_SEP_REQ_ACT_WRITE_STATUS 0x00 #define LEAPRAID_SEP_REQ_FLG_DEVHDL_ADDRESS 0x00 #define LEAPRAID_SEP_REQ_FLG_ENCLOSURE_SLOT_ADDRESS 0x01 #define LEAPRAID_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT 0x00000040 /* The capabilities of the adapter. */ #define LEAPRAID_ADAPTER_FEATURES_CAP_ATOMIC_REQ 0x00080000 #define LEAPRAID_ADAPTER_FEATURES_CAP_INTEGRATED_RAID 0x00001000 /* Event code definitions for the firmware. */ #define LEAPRAID_EVT_SAS_DEV_STATUS_CHANGE 0x000F #define LEAPRAID_EVT_SAS_TOPO_CHANGE_LIST 0x001C #define LEAPRAID_EVT_SAS_ENCL_DEV_STATUS_CHANGE 0x001D #define LEAPRAID_EVT_IR_CHANGE 0x0020 #define LEAPRAID_EVT_TURN_ON_PFA_LED 0xFFFC #define LEAPRAID_EVT_SCAN_DEV_DONE 0xFFFD #define LEAPRAID_EVT_REMOVE_DEAD_DEV 0xFFFF #define LEAPRAID_MAX_EVENT_NUM 128 #define LEAPRAID_EVT_SAS_DEV_STAT_RC_INTERNAL_DEV_RESET 0x08 #define LEAPRAID_EVT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET 0x0E /* RAID configuration change event. */ #define LEAPRAID_EVT_IR_RC_VOLUME_ADD 0x01 #define LEAPRAID_EVT_IR_RC_VOLUME_DELETE 0x02 #define LEAPRAID_EVT_IR_RC_PD_HIDDEN_TO_ADD 0x03 #define LEAPRAID_EVT_IR_RC_PD_UNHIDDEN_TO_DELETE 0x04 #define LEAPRAID_EVT_IR_RC_PD_CREATED_TO_HIDE 0x05 #define LEAPRAID_EVT_IR_RC_PD_DELETED_TO_EXPOSE 0x06 #define LEAPRAID_EVT_IR_RC_VOLUME_HIDE 0x0A #define LEAPRAID_EVT_IR_RC_VOLUME_UNHIDE 0x0B /* SAS topology change event. */ #define LEAPRAID_EVT_SAS_TOPO_ES_NO_EXPANDER 0x00 #define LEAPRAID_EVT_SAS_TOPO_ES_ADDED 0x01 #define LEAPRAID_EVT_SAS_TOPO_ES_NOT_RESPONDING 0x02 #define LEAPRAID_EVT_SAS_TOPO_ES_RESPONDING 0x03 #define LEAPRAID_EVT_SAS_TOPO_RC_MASK 0x0F #define LEAPRAID_EVT_SAS_TOPO_RC_TARG_ADDED 0x01 #define LEAPRAID_EVT_SAS_TOPO_RC_TARG_NOT_RESPONDING 0x02 /* Enclosure device status change event. */ #define LEAPRAID_EVT_SAS_ENCL_RC_ADDED 0x01 #define LEAPRAID_EVT_SAS_ENCL_RC_NOT_RESPONDING 0x02 /* Device type and identifiers. */ #define LEAPRAID_DEVTYP_SEP 0x00004000 #define LEAPRAID_DEVTYP_SSP_TGT 0x00000400 #define LEAPRAID_DEVTYP_STP_TGT 0x00000200 #define LEAPRAID_DEVTYP_SMP_TGT 0x00000100 #define LEAPRAID_DEVTYP_SATA_DEV 0x00000080 #define LEAPRAID_DEVTYP_SSP_INIT 0x00000040 #define LEAPRAID_DEVTYP_STP_INIT 0x00000020 #define LEAPRAID_DEVTYP_SMP_INIT 0x00000010 #define LEAPRAID_DEVTYP_SATA_HOST 0x00000008 #define LEAPRAID_DEVTYP_MASK_DEV_TYPE 0x00000007 #define LEAPRAID_DEVTYP_NO_DEV 0x00000000 #define LEAPRAID_DEVTYP_END_DEV 0x00000001 #define LEAPRAID_DEVTYP_EDGE_EXPANDER 0x00000002 #define LEAPRAID_DEVTYP_FANOUT_EXPANDER 0x00000003 /* SAS control operation. */ #define LEAPRAID_SAS_OP_PHY_LINK_RESET 0x06 #define LEAPRAID_SAS_OP_PHY_HARD_RESET 0x07 #define LEAPRAID_SAS_OP_SET_PARAMETER 0x0F /* Boot device defines */ #define LEAPRAID_BOOTDEV_FORM_MASK 0x0F #define LEAPRAID_BOOTDEV_FORM_NONE 0x00 #define LEAPRAID_BOOTDEV_FORM_SAS_WWID 0x05 #define LEAPRAID_BOOTDEV_FORM_ENC_SLOT 0x06 #define LEAPRAID_BOOTDEV_FORM_DEV_NAME 0x07 /** * struct leapraid_reg_base - Register layout of the LeapRAID controller * * @db: Doorbell register used to signal commands or status to firmware. * @ws: Write sequence register for synchronizing doorbell operations. * @host_diag: Diagnostic register used for status or debug reporting. * @r1: Reserved. * @host_int_status: Interrupt status register reporting active interrupts. * @host_int_mask: Interrupt mask register enabling or disabling sources. * @r2: Reserved. * @rep_msg_host_idx: Reply message index for the next available reply slot. * @r3: Reserved. * @debug_log: DebugLog registers for firmware debug and diagnostic output. * @r4: Reserved. * @atomic_req_desc_post: Atomic register for single descriptor posting. * @adapter_log_buf_pos: Adapter log buffer write position. * @host_log_buf_pos: Host log buffer write position. * @r5: Reserved. * @rep_post_reg_idx: Array of reply post index registers, one per queue. * The number of entries is defined by * REP_POST_HOST_IDX_REG_CNT. */ struct leapraid_reg_base { __le32 db; __le32 ws; __le32 host_diag; __le32 r1[9]; __le32 host_int_status; __le32 host_int_mask; __le32 r2[4]; __le32 rep_msg_host_idx; __le32 r3[13]; __le32 debug_log[LEAPRAID_DEBUGLOG_SZ_MAX]; __le32 r4[2]; __le32 atomic_req_desc_post; __le32 adapter_log_buf_pos; __le32 host_log_buf_pos; __le32 r5[142]; struct leapraid_rep_post_reg_idx { __le32 idx; __le32 r1; __le32 r2; __le32 r3; } rep_post_reg_idx[REP_POST_HOST_IDX_REG_CNT]; } __packed; /** * struct leapraid_atomic_req_desc - Atomic request descriptor * * @flg: Descriptor flag indicating the type of request (e.g. SCSI I/O). * @msix_idx: MSI-X vector index used for interrupt routing. * @taskid: Unique task identifier associated with this request. */ struct leapraid_atomic_req_desc { u8 flg; u8 msix_idx; __le16 taskid; }; /** * union leapraid_rep_desc_union - Unified reply descriptor format * * @dflt_rep: Default reply descriptor containing basic completion info. * @dflt_rep.rep_flg: Reply flag indicating reply type or status. * @dflt_rep.msix_idx: MSI-X index for interrupt routing. * @dflt_rep.taskid: Task identifier matching the submitted request. * @r1: Reserved. * * @addr_rep: Address reply descriptor used when firmware returns a * memory address associated with the reply. * @addr_rep.rep_flg: Reply flag indicating reply type or status. * @addr_rep.msix_idx: MSI-X index for interrupt routing. * @addr_rep.taskid: Task identifier matching the submitted request. * @addr_rep.rep_frame_addr: Physical address of the reply frame. * * @words: Raw 64-bit representation of the reply descriptor. * @u: Alternative access using 32-bit low/high words. * @u.low: Lower 32 bits of the descriptor. * @u.high: Upper 32 bits of the descriptor. */ union leapraid_rep_desc_union { struct leapraid_rep_desc { u8 rep_flg; u8 msix_idx; __le16 taskid; u8 r1[4]; } dflt_rep; struct leapraid_add_rep_desc { u8 rep_flg; u8 msix_idx; __le16 taskid; __le32 rep_frame_addr; } addr_rep; __le64 words; struct { u32 low; u32 high; } u; } __packed __aligned(4); /** * struct leapraid_req - Generic request header * * @func_dep1: Function-dependent parameter (low 16 bits). * @r1: Reserved. * @func: Function code identifying the command type. * @r2: Reserved. */ struct leapraid_req { __le16 func_dep1; u8 r1; u8 func; u8 r2[8]; }; /** * struct leapraid_rep - Generic reply header * * @r1: Reserved. * @msg_len: Length of the reply message in bytes. * @function: Function code corresponding to the request. * @r2: Reserved. * @adapter_status: Status code reported by the adapter. * @r3: Reserved. */ struct leapraid_rep { u8 r1[2]; u8 msg_len; u8 function; u8 r2[10]; __le16 adapter_status; u8 r3[4]; }; /** * struct leapraid_sge_simple32 - 32-bit simple scatter-gather entry * * @flg_and_len: Combined field for flags and segment length. * @addr: 32-bit physical address of the data buffer. */ struct leapraid_sge_simple32 { __le32 flg_and_len; __le32 addr; }; /** * struct leapraid_sge_simple64 - 64-bit simple scatter-gather entry * * @flg_and_len: Combined field for flags and segment length. * @addr: 64-bit physical address of the data buffer. */ struct leapraid_sge_simple64 { __le32 flg_and_len; __le64 addr; } __packed __aligned(4); /** * struct leapraid_sge_simple_union - Unified 32/64-bit SGE representation * * @flg_and_len: Combined field for flags and segment length. * @u.addr32: 32-bit address field. * @u.addr64: 64-bit address field. */ struct leapraid_sge_simple_union { __le32 flg_and_len; union { __le32 addr32; __le64 addr64; } __packed __aligned(4) u; } __packed __aligned(4); /** * struct leapraid_sge_chain_union - Chained scatter-gather entry * * @len: Length of the chain descriptor. * @next_chain_offset: Offset to the next SGE chain. * @flg: Flags indicating chain or termination properties. * @u.addr32: 32-bit physical address. * @u.addr64: 64-bit physical address. */ struct leapraid_sge_chain_union { __le16 len; u8 next_chain_offset; u8 flg; union { __le32 addr32; __le64 addr64; } __packed __aligned(4) u; } __packed __aligned(4); /** * struct leapraid_ieee_sge_simple32 - IEEE 32-bit simple SGE format * * @addr: 32-bit physical address of the data buffer. * @flg_and_len: Combined field for flags and data length. */ struct leapraid_ieee_sge_simple32 { __le32 addr; __le32 flg_and_len; }; /** * struct leapraid_ieee_sge_simple64 - IEEE 64-bit simple SGE format * * @addr: 64-bit physical address of the data buffer. * @len: Length of the data segment. * @r1: Reserved. * @flg: Flags indicating transfer properties. */ struct leapraid_ieee_sge_simple64 { __le64 addr; __le32 len; u8 r1[3]; u8 flg; } __packed __aligned(4); /** * union leapraid_ieee_sge_simple_union - Unified IEEE SGE format * * @simple32: IEEE 32-bit simple SGE entry. * @simple64: IEEE 64-bit simple SGE entry. */ union leapraid_ieee_sge_simple_union { struct leapraid_ieee_sge_simple32 simple32; struct leapraid_ieee_sge_simple64 simple64; }; /** * union leapraid_ieee_sge_chain_union - Unified IEEE SGE chain format * * @chain32: IEEE 32-bit chain SGE entry. * @chain64: IEEE 64-bit chain SGE entry. */ union leapraid_ieee_sge_chain_union { struct leapraid_ieee_sge_simple32 chain32; struct leapraid_ieee_sge_simple64 chain64; }; /** * struct leapraid_chain64_ieee_sg - 64-bit IEEE chain SGE descriptor * * @addr: Physical address of the next chain segment. * @len: Length of the current SGE. * @r1: Reserved. * @next_chain_offset: Offset to the next chain element. * @flg: Flags that describe SGE attributes. */ struct leapraid_chain64_ieee_sg { __le64 addr; __le32 len; u8 r1[2]; u8 next_chain_offset; u8 flg; } __packed __aligned(4); /** * union leapraid_ieee_sge_io_union - IEEE-style SGE union for I/O * * @ieee_simple: Simple IEEE SGE descriptor. * @ieee_chain: IEEE chain SGE descriptor. */ union leapraid_ieee_sge_io_union { struct leapraid_ieee_sge_simple64 ieee_simple; struct leapraid_chain64_ieee_sg ieee_chain; }; /** * union leapraid_simple_sge_union - Union of simple SGE descriptors * * @leapraid_simple: LeapRAID simple SGE. * @ieee_simple: IEEE-style simple SGE. */ union leapraid_simple_sge_union { struct leapraid_sge_simple_union leapraid_simple; union leapraid_ieee_sge_simple_union ieee_simple; }; /** * union leapraid_sge_io_union - Combined SGE union for all I/O types * * @leapraid_simple: LeapRAID simple SGE format. * @leapraid_chain: LeapRAID chain SGE format. * @ieee_simple: IEEE simple SGE format. * @ieee_chain: IEEE chain SGE format. */ union leapraid_sge_io_union { struct leapraid_sge_simple_union leapraid_simple; struct leapraid_sge_chain_union leapraid_chain; union leapraid_ieee_sge_simple_union ieee_simple; union leapraid_ieee_sge_chain_union ieee_chain; }; /** * struct leapraid_cfg_pg_header - Standard configuration page header * * @r1: Reserved. * @page_len: Length of the page in 4-byte units. * @page_num: Page number. * @page_type: Page type. */ struct leapraid_cfg_pg_header { u8 r1; u8 page_len; u8 page_num; u8 page_type; }; /** * struct leapraid_cfg_ext_pg_header - Extended configuration page header * * @r1: Reserved. * @r2: Reserved. * @page_num: Page number. * @page_type: Page type. * @ext_page_len: Extended page length. * @ext_page_type: Extended page type. * @r3: Reserved. */ struct leapraid_cfg_ext_pg_header { u8 r1; u8 r2; u8 page_num; u8 page_type; __le16 ext_page_len; u8 ext_page_type; u8 r3; }; /** * struct leapraid_cfg_req - Configuration request message * * @action: Requested action type. * @sgl_flag: SGL flag field. * @chain_offset: Offset to next chain SGE. * @func: Function code. * @ext_page_len: Extended page length. * @ext_page_type: Extended page type. * @msg_flag: Message flags. * @r1: Reserved. * @header: Configuration page header. * @page_addr: Address of the page buffer. * @page_buf_sge: SGE describing the page buffer. */ struct leapraid_cfg_req { u8 action; u8 sgl_flag; u8 chain_offset; u8 func; __le16 ext_page_len; u8 ext_page_type; u8 msg_flag; u8 r1[12]; struct leapraid_cfg_pg_header header; __le32 page_addr; union leapraid_sge_io_union page_buf_sge; }; /** * struct leapraid_cfg_rep - Configuration reply message * * @action: Action type from the request. * @r1: Reserved. * @msg_len: Message length in bytes. * @func: Function code. * @ext_page_len: Extended page length. * @ext_page_type: Extended page type. * @msg_flag: Message flags. * @r2: Reserved. * @adapter_status: Adapter status code. * @r3: Reserved. * @header: Configuration page header. */ struct leapraid_cfg_rep { u8 action; u8 r1; u8 msg_len; u8 func; __le16 ext_page_len; u8 ext_page_type; u8 msg_flag; u8 r2[6]; __le16 adapter_status; u8 r3[4]; struct leapraid_cfg_pg_header header; }; /** * struct leapraid_boot_dev_format_sas_wwid - Boot device identified by wwid * * @sas_addr: SAS address of the device. * @lun: Logical unit number. * @r1: Reserved. */ struct leapraid_boot_dev_format_sas_wwid { __le64 sas_addr; u8 lun[8]; u8 r1[8]; } __packed __aligned(4); /** * struct leapraid_boot_dev_format_enc_slot - identified by enclosure * * @enc_lid: Enclosure logical ID. * @r1: Reserved. * @slot_num: Slot number in the enclosure. * @r2: Reserved. */ struct leapraid_boot_dev_format_enc_slot { __le64 enc_lid; u8 r1[8]; __le16 slot_num; u8 r2[6]; } __packed __aligned(4); /** * struct leapraid_boot_dev_format_dev_name - Boot device by device name * * @dev_name: Device name identifier. * @lun: Logical unit number. * @r1: Reserved. */ struct leapraid_boot_dev_format_dev_name { __le64 dev_name; u8 lun[8]; u8 r1[8]; } __packed __aligned(4); /** * union leapraid_boot_dev_format - Boot device format union * * @sas_wwid: Format using SAS WWID and LUN. * @enc_slot: Format using enclosure slot and ID. * @dev_name: Format using device name and LUN. */ union leapraid_boot_dev_format { struct leapraid_boot_dev_format_sas_wwid sas_wwid; struct leapraid_boot_dev_format_enc_slot enc_slot; struct leapraid_boot_dev_format_dev_name dev_name; }; /** * struct leapraid_manufacturing_p0 - Manufacturing configuration page 0 * * @header: Configuration page header. * @chip_name: Chip name as a 16-byte ASCII string. * @chip_revision: Chip revision as an 8-byte ASCII string. * @board_name: Board name as a 16-byte ASCII string. * @board_assembly: Board assembly as a 16-byte ASCII string. * @board_tracer_number: Board tracer number as a 16-byte ASCII string. */ struct leapraid_manufacturing_p0 { struct leapraid_cfg_pg_header header; u8 chip_name[16]; u8 chip_revision[8]; u8 board_name[16]; u8 board_assembly[16]; u8 board_tracer_number[16]; }; /** * struct leapraid_bios_page2 - BIOS configuration page 2 * * @header: Configuration page header. * @r1: Reserved. * @requested_boot_dev_form: Format type of the requested boot device. * @r2: Reserved. * @requested_boot_dev: Boot device requested by BIOS or user. * @requested_alt_boot_dev_form: Format of the alternate boot device. * @r3: Reserved. * @requested_alt_boot_dev: Alternate boot device requested. * @current_boot_dev_form: Format type of the active boot device. * @r4: Reserved. * @current_boot_dev: Currently active boot device in use. */ struct leapraid_bios_page2 { struct leapraid_cfg_pg_header header; u8 r1[24]; u8 requested_boot_dev_form; u8 r2[3]; union leapraid_boot_dev_format requested_boot_dev; u8 requested_alt_boot_dev_form; u8 r3[3]; union leapraid_boot_dev_format requested_alt_boot_dev; u8 current_boot_dev_form; u8 r4[3]; union leapraid_boot_dev_format current_boot_dev; }; /** * struct leapraid_bios_page3 - BIOS configuration page 3 * * @header: Configuration page header. * @r1: Reserved. * @bios_version: BIOS firmware version number. * @r2: Reserved. */ struct leapraid_bios_page3 { struct leapraid_cfg_pg_header header; u8 r1[4]; __le32 bios_version; u8 r2[84]; }; /** * struct leapraid_raidvol0_phys_disk - Physical disk in RAID volume * * @r1: Reserved. * @phys_disk_num: Physical disk number within the RAID volume. * @r2: Reserved. */ struct leapraid_raidvol0_phys_disk { u8 r1[2]; u8 phys_disk_num; u8 r2; }; /** * struct leapraid_raidvol_p0 - RAID volume configuration page 0 * * @header: Configuration page header. * @dev_hdl: Device handle for the RAID volume. * @volume_state: State of the RAID volume. * @volume_type: RAID type. * @r1: Reserved. * @num_phys_disks: Number of physical disks in the volume. * @r2: Reserved. * @phys_disk: Array of physical disks in this volume. */ struct leapraid_raidvol_p0 { struct leapraid_cfg_pg_header header; __le16 dev_hdl; u8 volume_state; u8 volume_type; u8 r1[28]; u8 num_phys_disks; u8 r2[3]; struct leapraid_raidvol0_phys_disk phys_disk[]; }; /** * struct leapraid_raidvol_p1 - RAID volume configuration page 1 * * @header: Configuration page header. * @dev_hdl: Device handle of the RAID volume. * @r1: Reserved. * @wwid: World-wide identifier for the volume. * @r2: Reserved. */ struct leapraid_raidvol_p1 { struct leapraid_cfg_pg_header header; __le16 dev_hdl; u8 r1[42]; __le64 wwid; u8 r2[8]; } __packed __aligned(4); /** * struct leapraid_raidpd_p0 - Physical disk configuration page 0 * * @header: Configuration page header. * @dev_hdl: Device handle of the physical disk. * @r1: Reserved. * @phys_disk_num: Physical disk number. * @r2: Reserved. */ struct leapraid_raidpd_p0 { struct leapraid_cfg_pg_header header; __le16 dev_hdl; u8 r1; u8 phys_disk_num; u8 r2[112]; }; /** * struct leapraid_sas_io_unit0_phy_info - PHY info for SAS I/O unit * * @port: Port number the PHY belongs to. * @port_flg: Flags describing port status. * @phy_flg: Flags describing PHY status. * @neg_link_rate: Negotiated link rate of the PHY. * @controller_phy_dev_info: Controller PHY device info. * @attached_dev_hdl: Handle of attached device. * @controller_dev_hdl: Handle of the controller device. * @r1: Reserved. */ struct leapraid_sas_io_unit0_phy_info { u8 port; u8 port_flg; u8 phy_flg; u8 neg_link_rate; __le32 controller_phy_dev_info; __le16 attached_dev_hdl; __le16 controller_dev_hdl; u8 r1[8]; }; /** * struct leapraid_sas_io_unit_p0 - SAS I/O unit configuration page 0 * * @header: Extended configuration page header. * @r1: Reserved. * @phy_num: Number of PHYs in this unit. * @r2: Reserved. * @phy_info: Array of PHY information. */ struct leapraid_sas_io_unit_p0 { struct leapraid_cfg_ext_pg_header header; u8 r1[4]; u8 phy_num; u8 r2[3]; struct leapraid_sas_io_unit0_phy_info phy_info[]; }; /** * struct leapraid_exp_p0 - SAS expander page 0 * * @header: Extended page header. * @physical_port: Physical port number. * @r1: Reserved. * @enc_hdl: Enclosure handle. * @sas_address: SAS address of the expander. * @r2: Reserved. * @dev_hdl: Device handle of this expander. * @parent_dev_hdl: Device handle of parent expander. * @r3: Reserved. * @phy_num: Number of PHYs. * @r4: Reserved. */ struct leapraid_exp_p0 { struct leapraid_cfg_ext_pg_header header; u8 physical_port; u8 r1; __le16 enc_hdl; __le64 sas_address; u8 r2[4]; __le16 dev_hdl; __le16 parent_dev_hdl; u8 r3[4]; u8 phy_num; u8 r4[27]; } __packed __aligned(4); /** * struct leapraid_exp_p1 - SAS expander page 1 * * @header: Extended page header. * @r1: Reserved. * @p_link_rate: PHY link rate. * @hw_link_rate: Hardware supported link rate. * @attached_dev_hdl: Attached device handle. * @r2: Reserved. * @neg_link_rate: Negotiated link rate. * @r3: Reserved. */ struct leapraid_exp_p1 { struct leapraid_cfg_ext_pg_header header; u8 r1[8]; u8 p_link_rate; u8 hw_link_rate; __le16 attached_dev_hdl; u8 r2[11]; u8 neg_link_rate; u8 r3[12]; }; /** * struct leapraid_sas_dev_p0 - SAS device page 0 * * @header: Extended configuration page header. * @slot: Slot number. * @enc_hdl: Enclosure handle. * @sas_address: SAS address. * @parent_dev_hdl: Parent device handle. * @phy_num: Number of PHYs. * @r1: Reserved. * @dev_hdl: Device handle. * @r2: Reserved. * @dev_info: Device information. * @flg: Flags. * @physical_port: Physical port number. * @max_port_connections: Maximum port connections. * @dev_name: Device name. * @port_groups: Number of port groups. * @r3: Reserved. * @enc_level: Enclosure level. * @connector_name: Connector identifier. * @r4: Reserved. */ struct leapraid_sas_dev_p0 { struct leapraid_cfg_ext_pg_header header; __le16 slot; __le16 enc_hdl; __le64 sas_address; __le16 parent_dev_hdl; u8 phy_num; u8 r1; __le16 dev_hdl; u8 r2[2]; __le32 dev_info; __le16 flg; u8 physical_port; u8 max_port_connections; __le64 dev_name; u8 port_groups; u8 r3[2]; u8 enc_level; u8 connector_name[LEAPRAID_SAS_DEV_P0_CON_NAME_LEN]; u8 r4[4]; } __packed __aligned(4); /** * struct leapraid_sas_phy_p0 - SAS PHY configuration page 0 * * @header: Extended configuration page header. * @r1: Reserved. * @attached_dev_hdl: Handle of attached device. * @r2: Reserved. * @p_link_rate: PHY link rate. * @hw_link_rate: Hardware supported link rate. * @r3: Reserved. * @phy_info: PHY information. * @neg_link_rate: Negotiated link rate. * @r4: Reserved. */ struct leapraid_sas_phy_p0 { struct leapraid_cfg_ext_pg_header header; u8 r1[4]; __le16 attached_dev_hdl; u8 r2[6]; u8 p_link_rate; u8 hw_link_rate; u8 r3[2]; __le32 phy_info; u8 neg_link_rate; u8 r4[3]; }; /** * struct leapraid_enc_p0 - SAS enclosure page 0 * * @header: Extended configuration page header. * @r1: Reserved. * @enc_lid: Enclosure logical ID. * @r2: Reserved. * @enc_hdl: Enclosure handle. * @r3: Reserved. */ struct leapraid_enc_p0 { struct leapraid_cfg_ext_pg_header header; u8 r1[4]; __le64 enc_lid; u8 r2[2]; __le16 enc_hdl; u8 r3[15]; } __packed __aligned(4); /** * struct leapraid_raid_cfg_p0_element - RAID configuration element * * @element_flg: Element flags. * @vol_dev_hdl: Volume device handle. * @r1: Reserved. * @phys_disk_dev_hdl: Physical disk device handle. */ struct leapraid_raid_cfg_p0_element { __le16 element_flg; __le16 vol_dev_hdl; u8 r1[2]; __le16 phys_disk_dev_hdl; }; /** * struct leapraid_raid_cfg_p0 - RAID configuration page 0 * * @header: Extended configuration page header. * @r1: Reserved. * @cfg_num: Configuration number. * @r2: Reserved. * @elements_num: Number of RAID elements. * @r3: Reserved. * @cfg_element: Array of RAID elements. */ struct leapraid_raid_cfg_p0 { struct leapraid_cfg_ext_pg_header header; u8 r1[3]; u8 cfg_num; u8 r2[32]; u8 elements_num; u8 r3[3]; struct leapraid_raid_cfg_p0_element cfg_element[]; }; /** * union leapraid_mpi_scsi_io_cdb_union - SCSI I/O CDB or simple SGE * * @cdb32: 32-byte SCSI command descriptor block. * @sge: Simple SGE format. */ union leapraid_mpi_scsi_io_cdb_union { u8 cdb32[32]; struct leapraid_sge_simple_union sge; }; /** * struct leapraid_mpi_scsiio_req - MPI SCSI I/O request * * @dev_hdl: Device handle for the target. * @chain_offset: Offset for chained SGE. * @func: Function code. * @r1: Reserved. * @msg_flg: Message flags. * @r2: Reserved. * @sense_buffer_low_add: Lower 32-bit address of sense buffer. * @dma_flag: DMA flags. * @r3: Reserved. * @sense_buffer_len: Sense buffer length. * @r4: Reserved. * @sgl_offset0..3: SGL offsets. * @skip_count: Bytes to skip before transfer. * @data_len: Length of data transfer. * @bi_dir_data_len: Bi-directional transfer length. * @io_flg: I/O flags. * @eedp_flag: End-to-end data protection flags. * @eedp_block_size: End-to-end data protection block size. * @r5: Reserved. * @secondary_ref_tag: Secondary reference tag. * @secondary_app_tag: Secondary application tag. * @app_tag_trans_mask: Application tag mask. * @lun: Logical Unit Number. * @ctrl: Control flags. * @cdb: SCSI Command Descriptor Block or simple SGE. * @sgl: Scatter-gather list. */ struct leapraid_mpi_scsiio_req { __le16 dev_hdl; u8 chain_offset; u8 func; u8 r1[3]; u8 msg_flg; u8 r2[4]; __le32 sense_buffer_low_add; u8 dma_flag; u8 r3; u8 sense_buffer_len; u8 r4; u8 sgl_offset0; u8 sgl_offset1; u8 sgl_offset2; u8 sgl_offset3; __le32 skip_count; __le32 data_len; __le32 bi_dir_data_len; __le16 io_flg; __le16 eedp_flag; __le16 eedp_block_size; u8 r5[2]; __le32 secondary_ref_tag; __le16 secondary_app_tag; __le16 app_tag_trans_mask; u8 lun[8]; __le32 ctrl; union leapraid_mpi_scsi_io_cdb_union cdb; union leapraid_sge_io_union sgl; }; /** * union leapraid_scsi_io_cdb_union - SCSI I/O CDB or IEEE simple SGE * * @cdb32: 32-byte SCSI CDB. * @sge: IEEE simple 64-bit SGE. */ union leapraid_scsi_io_cdb_union { u8 cdb32[32]; struct leapraid_ieee_sge_simple64 sge; }; /** * struct leapraid_scsiio_req - SCSI I/O request * * @dev_hdl: Device handle. * @chain_offset: Offset for chained SGE. * @func: Function code. * @r1: Reserved. * @msg_flg: Message flags. * @r2: Reserved. * @sense_buffer_low_add: Lower 32-bit address of sense buffer. * @dma_flag: DMA flag. * @r3: Reserved. * @sense_buffer_len: Sense buffer length. * @r4: Reserved. * @sgl_offset0-3: SGL offsets. * @skip_count: Bytes to skip before transfer. * @data_len: Length of data transfer. * @bi_dir_data_len: Bi-directional transfer length. * @io_flg: I/O flags. * @eedp_flag: End-to-end data protection flags. * @eedp_block_size: End-to-end data protection block size. * @r5: Reserved. * @secondary_ref_tag: Secondary reference tag. * @secondary_app_tag: Secondary application tag. * @app_tag_trans_mask: Application tag mask. * @lun: Logical Unit Number. * @ctrl: Control flags. * @cdb: SCSI Command Descriptor Block or simple SGE. * @sgl: Scatter-gather list. */ struct leapraid_scsiio_req { __le16 dev_hdl; u8 chain_offset; u8 func; u8 r1[3]; u8 msg_flg; u8 r2[4]; __le32 sense_buffer_low_add; u8 dma_flag; u8 r3; u8 sense_buffer_len; u8 r4; u8 sgl_offset0; u8 sgl_offset1; u8 sgl_offset2; u8 sgl_offset3; __le32 skip_count; __le32 data_len; __le32 bi_dir_data_len; __le16 io_flg; __le16 eedp_flag; __le16 eedp_block_size; u8 r5[2]; __le32 secondary_ref_tag; __le16 secondary_app_tag; __le16 app_tag_trans_mask; u8 lun[8]; __le32 ctrl; union leapraid_scsi_io_cdb_union cdb; union leapraid_ieee_sge_io_union sgl; }; /** * struct leapraid_scsiio_rep - SCSI I/O response * * @dev_hdl: Device handle. * @msg_len: Length of response message. * @func: Function code. * @r1: Reserved. * @msg_flg: Message flags. * @r2: Reserved. * @scsi_status: SCSI status. * @scsi_state: SCSI state. * @adapter_status: Adapter status. * @r3: Reserved. * @transfer_count: Number of bytes transferred. * @sense_count: Number of sense bytes. * @resp_info: Additional response info. * @task_tag: Task identifier. * @scsi_status_qualifier: SCSI status qualifier. * @bi_dir_trans_count: Bi-directional transfer count. * @r4: Reserved. */ struct leapraid_scsiio_rep { __le16 dev_hdl; u8 msg_len; u8 func; u8 r1[3]; u8 msg_flg; u8 r2[4]; u8 scsi_status; u8 scsi_state; __le16 adapter_status; u8 r3[4]; __le32 transfer_count; __le32 sense_count; __le32 resp_info; __le16 task_tag; __le16 scsi_status_qualifier; __le32 bi_dir_trans_count; __le32 r4[3]; }; /** * struct leapraid_scsi_tm_req - SCSI Task Management request * * @dev_hdl: Device handle. * @chain_offset: Offset for chained SGE. * @func: Function code. * @r1: Reserved. * @task_type: Task management function type. * @r2: Reserved. * @msg_flg: Message flags. * @r3: Reserved. * @lun: Logical Unit Number. * @r4: Reserved. * @task_mid: Task identifier. * @r5: Reserved. */ struct leapraid_scsi_tm_req { __le16 dev_hdl; u8 chain_offset; u8 func; u8 r1; u8 task_type; u8 r2; u8 msg_flg; u8 r3[4]; u8 lun[8]; u8 r4[28]; __le16 task_mid; u8 r5[2]; }; /** * struct leapraid_scsi_tm_rep - SCSI Task Management response * * @dev_hdl: Device handle. * @msg_len: Length of response message. * @func: Function code. * @resp_code: Response code. * @task_type: Task management type. * @r1: Reserved. * @msg_flag: Message flags. * @r2: Reserved. * @adapter_status: Adapter status. * @r3: Reserved. * @termination_count: Count of terminated tasks. * @response_info: Additional response info. */ struct leapraid_scsi_tm_rep { __le16 dev_hdl; u8 msg_len; u8 func; u8 resp_code; u8 task_type; u8 r1; u8 msg_flag; u8 r2[6]; __le16 adapter_status; u8 r3[4]; __le32 termination_count; __le32 response_info; }; /** * struct leapraid_sep_req - SEP (SCSI Enclosure Processor) request * * @dev_hdl: Device handle. * @chain_offset: Offset for chained SGE. * @func: Function code. * @act: Action to perform. * @flg: Flags. * @r1: Reserved. * @msg_flag: Message flags. * @r2: Reserved. * @slot_status: Slot status. * @r3: Reserved. * @slot: Slot number. * @enc_hdl: Enclosure handle. */ struct leapraid_sep_req { __le16 dev_hdl; u8 chain_offset; u8 func; u8 act; u8 flg; u8 r1; u8 msg_flag; u8 r2[4]; __le32 slot_status; u8 r3[12]; __le16 slot; __le16 enc_hdl; }; /** * struct leapraid_sep_rep - SEP response * * @dev_hdl: Device handle. * @msg_len: Message length. * @func: Function code. * @act: Action performed. * @flg: Flags. * @msg_flag: Message flags. * @r1: Reserved. * @adapter_status: Adapter status. * @r2: Reserved. * @slot_status: Slot status. * @r3: Reserved. * @slot: Slot number. * @enc_hdl: Enclosure handle. */ struct leapraid_sep_rep { __le16 dev_hdl; u8 msg_len; u8 func; u8 act; u8 flg; u8 r1; u8 msg_flag; u8 r2[6]; __le16 adapter_status; u8 r3[4]; __le32 slot_status; u8 r4[4]; __le16 slot; __le16 enc_hdl; }; /** * struct leapraid_adapter_init_req - Adapter initialization request * * @who_init: Initiator of the initialization. * @r1: Reserved. * @chain_offset: Chain offset. * @func: Function code. * @r2: Reserved. * @msg_flg: Message flags. * @r3: Reserved. * @msg_ver: Message version. * @header_ver: Header version. * @host_buf_addr: Host buffer address (non adapter-ref). * @r4: Reserved. * @host_buf_size: Host buffer size (non adapter-ref). * @host_msix_vectors: Number of host MSI-X vectors. * @r6: Reserved. * @req_frame_size: Request frame size. * @rep_desc_qd: Reply descriptor queue depth. * @rep_msg_qd: Reply message queue depth. * @sense_buffer_add_high: High 32-bit of sense buffer address. * @rep_msg_dma_high: High 32-bit of reply message DMA address. * @task_desc_base_addr: Base address of task descriptors. * @rep_desc_q_arr_addr: Address of reply descriptor queue array. * @rep_msg_addr_dma: Reply message DMA address. * @time_stamp: Timestamp. */ struct leapraid_adapter_init_req { u8 who_init; u8 r1; u8 chain_offset; u8 func; u8 r2[3]; u8 msg_flg; __le32 driver_ver; __le16 msg_ver; __le16 header_ver; __le32 host_buf_addr; u8 r4[2]; u8 host_buf_size; u8 host_msix_vectors; u8 r6[2]; __le16 req_frame_size; __le16 rep_desc_qd; __le16 rep_msg_qd; __le32 sense_buffer_add_high; __le32 rep_msg_dma_high; __le64 task_desc_base_addr; __le64 rep_desc_q_arr_addr; __le64 rep_msg_addr_dma; __le64 time_stamp; } __packed __aligned(4); /** * struct leapraid_rep_desc_q_arr - Reply descriptor queue array * * @rep_desc_base_addr: Base address of the reply descriptors. * @r1: Reserved. */ struct leapraid_rep_desc_q_arr { __le64 rep_desc_base_addr; __le64 r1; } __packed __aligned(4); /** * struct leapraid_adapter_init_rep - Adapter initialization reply * * @who_init: Initiator of the initialization. * @r1: Reserved. * @msg_len: Length of reply message. * @func: Function code. * @r2: Reserved. * @msg_flag: Message flags. * @r3: Reserved. * @adapter_status: Adapter status. * @r4: Reserved. */ struct leapraid_adapter_init_rep { u8 who_init; u8 r1; u8 msg_len; u8 func; u8 r2[3]; u8 msg_flag; u8 r3[6]; __le16 adapter_status; u8 r4[4]; }; /** * struct leapraid_adapter_log_req - Adapter log request * * @action: Action code. * @type: Log type. * @chain_offset: Offset for chained SGE. * @func: Function code. * r1: Reserved. * @msg_flag: Message flags. * r2: Reserved. * @mbox: Mailbox for command-specific parameters. * @sge: Scatter-gather entry for data buffer. */ struct leapraid_adapter_log_req { u8 action; u8 type; u8 chain_offset; u8 func; u8 r1[3]; u8 msg_flag; u8 r2[4]; union { u8 b[12]; __le16 s[6]; __le32 w[3]; } mbox; struct leapraid_sge_simple64 sge; } __packed __aligned(4); /** * struct leapraid_adapter_log_rep - Adapter log reply * * @action: Action code echoed. * @type: Log type echoed. * @msg_len: Length of message. * @func: Function code. * @r1: Reserved. * @msg_flag: Message flags. * @r2: Reserved. * @adapter_status: Status returned by adapter. */ struct leapraid_adapter_log_rep { u8 action; u8 type; u8 msg_len; u8 func; u8 r1[3]; u8 msg_flag; u8 r2[6]; __le16 adapter_status; }; /** * struct leapraid_adapter_features_req - Request adapter features * * @r1: Reserved. * @chain_offset: Offset for chained SGE. * @func: Function code. * @r2: Reserved. * @msg_flag: Message flags. * @r3: Reserved. */ struct leapraid_adapter_features_req { u8 r1[2]; u8 chain_offset; u8 func; u8 r2[3]; u8 msg_flag; u8 r3[4]; }; /** * struct leapraid_adapter_features_rep - Adapter features reply * * @msg_ver: Message version. * @msg_len: Length of reply message. * @func: Function code. * @header_ver: Header version. * @r1: Reserved. * @msg_flag: Message flags. * @r2: Reserved. * @adapter_status: Adapter status. * @r3: Reserved. * @who_init: Who initialized the adapter. * @r4: Reserved. * @max_msix_vectors: Max MSI-X vectors supported. * @req_slot: Number of request slots. * @r5: Reserved. * @adapter_caps: Adapter capabilities. * @fw_version: Firmware version. * @sas_wide_max_qdepth: Max wide SAS queue depth. * @sas_narrow_max_qdepth: Max narrow SAS queue depth. * @r6: Reserved. * @hp_slot: Number of high-priority slots. * @r7: Reserved. * @max_volumes: Maximum supported volumes. * @max_dev_hdl: Maximum device handle. * @r8: Reserved. * @min_dev_hdl: Minimum device handle. * @r9: Reserved. */ struct leapraid_adapter_features_rep { __le16 msg_ver; u8 msg_len; u8 func; u16 header_ver; u8 r1; u8 msg_flag; u8 r2[6]; u16 adapter_status; u8 r3[4]; u8 sata_max_qdepth; u8 who_init; u8 r4; u8 max_msix_vectors; __le16 req_slot; __le16 product_id; __le32 adapter_caps; __le32 fw_version; __le16 sas_wide_max_qdepth; __le16 sas_narrow_max_qdepth; u8 r6[10]; __le16 hp_slot; u8 r7[3]; u8 max_volumes; __le16 max_dev_hdl; u8 r8[2]; __le16 min_dev_hdl; u8 r9[6]; }; /** * struct leapraid_scan_dev_req - Request to scan devices * * @r1: Reserved. * @chain_offset: Offset for chained SGE. * @func: Function code. * @r2: Reserved. * @msg_flag: Message flags. * @r3: Reserved. */ struct leapraid_scan_dev_req { u8 r1[2]; u8 chain_offset; u8 func; u8 r2[3]; u8 msg_flag; u8 r3[4]; }; /** * struct leapraid_scan_dev_rep - Scan devices reply * * @r1: Reserved. * @msg_len: Length of message. * @func: Function code. * @r2: Reserved. * @msg_flag: Message flags. * @r3: Reserved. * @adapter_status: Adapter status. * @r4: Reserved. */ struct leapraid_scan_dev_rep { u8 r1[2]; u8 msg_len; u8 func; u8 r2[3]; u8 msg_flag; u8 r3[6]; __le16 adapter_status; u8 r4[4]; }; /** * struct leapraid_evt_notify_req - Event notification request * * @r1: Reserved. * @chain_offset: Offset for chained SGE. * @func: Function code. * @r2: Reserved. * @msg_flag: Message flags. * @r3: Reserved. * @evt_masks: Event masks to enable notifications. * @r4: Reserved. */ struct leapraid_evt_notify_req { u8 r1[2]; u8 chain_offset; u8 func; u8 r2[3]; u8 msg_flag; u8 r3[12]; __le32 evt_masks[4]; u8 r4[8]; }; /** * struct leapraid_evt_notify_rep - Event notification reply * * @evt_data_len: Length of event data. * @msg_len: Length of message. * @func: Function code. * @r1: Reserved. * @r2: Reserved. * @msg_flag: Message flags. * @r3: Reserved. * @adapter_status: Adapter status. * @r4: Reserved. * @evt: Event code. * @r5: Reserved. * @evt_data: Event data array. */ struct leapraid_evt_notify_rep { __le16 evt_data_len; u8 msg_len; u8 func; u8 r1[2]; u8 r2; u8 msg_flag; u8 r3[6]; __le16 adapter_status; u8 r4[4]; __le16 evt; u8 r5[6]; __le32 evt_data[]; }; /** * struct leapraid_evt_data_sas_dev_status_change - SAS device status change * * @task_tag: Task identifier. * @reason_code: Reason for status change. * @physical_port: Physical port number. * @r1: Reserved. * @dev_hdl: Device handle. * @r2: Reserved. * @sas_address: SAS address of device. * @lun: Logical unit Number. */ struct leapraid_evt_data_sas_dev_status_change { __le16 task_tag; u8 reason_code; u8 physical_port; u8 r1[2]; __le16 dev_hdl; u8 r2[4]; __le64 sas_address; u8 lun[8]; } __packed __aligned(4); /** * struct leapraid_evt_data_ir_change - IR (Integrated RAID) change event data * * @r1: Reserved. * @reason_code: Reason for IR change. * @r2: Reserved. * @vol_dev_hdl: Volume device handle. * @phys_disk_dev_hdl: Physical disk device handle. */ struct leapraid_evt_data_ir_change { u8 r1; u8 reason_code; u8 r2[2]; __le16 vol_dev_hdl; __le16 phys_disk_dev_hdl; }; /** * struct leapraid_evt_data_sas_disc - SAS discovery event data * * @r1: Reserved. * @reason_code: Reason for discovery event. * @physical_port: Physical port number where event occurred. * @r2: Reserved. */ struct leapraid_evt_data_sas_disc { u8 r1; u8 reason_code; u8 physical_port; u8 r2[5]; }; /** * struct leapraid_evt_sas_topo_phy_entry - SAS topology PHY entry * * @attached_dev_hdl: Device handle attached to PHY. * @link_rate: Current link rate. * @phy_status: PHY status flags. */ struct leapraid_evt_sas_topo_phy_entry { __le16 attached_dev_hdl; u8 link_rate; u8 phy_status; }; /** * struct leapraid_evt_data_sas_topo_change_list - SAS topology change list * * @encl_hdl: Enclosure handle. * @exp_dev_hdl: Expander device handle. * @num_phys: Number of PHYs in this entry. * @r1: Reserved. * @entry_num: Number of PHY elements. * @start_phy_num: Start PHY number. * @exp_status: Expander status. * @physical_port: Physical port number. * @phy: Array of SAS PHY entries. */ struct leapraid_evt_data_sas_topo_change_list { __le16 encl_hdl; __le16 exp_dev_hdl; u8 num_phys; u8 r1[3]; u8 entry_num; u8 start_phy_num; u8 exp_status; u8 physical_port; struct leapraid_evt_sas_topo_phy_entry phy[]; }; /** * struct leapraid_evt_data_sas_enc_dev_status_change - * SAS enclosure device status * * @enc_hdl: Enclosure handle. * @reason_code: Reason code for status change. * @physical_port: Physical port number. * @encl_logical_id: Enclosure logical ID. * @num_slots: Number of slots in enclosure. * @start_slot: First affected slot. * @phy_bits: Bitmap of affected PHYs. */ struct leapraid_evt_data_sas_enc_dev_status_change { __le16 enc_hdl; u8 reason_code; u8 physical_port; __le64 encl_logical_id; __le16 num_slots; __le16 start_slot; __le32 phy_bits; } __packed __aligned(4); /** * struct leapraid_io_unit_ctrl_req - I/O unit control request * * @op: Operation code. * @r1: Reserved. * @chain_offset: SGE chain offset. * @func: Function code. * @dev_hdl: Device handle. * @adapter_para: Adapter parameter selector. * @msg_flag: Message flags. * @r2: Reserved. * @phy_num: PHY number. * @r3: Reserved. * @adapter_para_value: Value for adapter parameter. * @adapter_para_value2: Optional second parameter value. * @r4: Reserved. */ struct leapraid_io_unit_ctrl_req { u8 op; u8 r1; u8 chain_offset; u8 func; __le16 dev_hdl; u8 adapter_para; u8 msg_flag; u8 r2[6]; u8 phy_num; u8 r3[17]; __le32 adapter_para_value; __le32 adapter_para_value2; u8 r4[4]; }; /** * struct leapraid_io_unit_ctrl_rep - I/O unit control reply * * @op: Operation code echoed. * @r1: Reserved. * @func: Function code. * @dev_hdl: Device handle. * @r2: Reserved. */ struct leapraid_io_unit_ctrl_rep { u8 op; u8 r1[2]; u8 func; __le16 dev_hdl; u8 r2[14]; }; /** * struct leapraid_raid_act_req - RAID action request * * @act: RAID action code. * @r1: Reserved. * @func: Function code. * @r2: Reserved. * @phys_disk_num: Number of physical disks involved. * @r3: Reserved. * @action_data_sge: SGE describing action-specific data. */ struct leapraid_raid_act_req { u8 act; u8 r1[2]; u8 func; u8 r2[2]; u8 phys_disk_num; u8 r3[13]; struct leapraid_sge_simple_union action_data_sge; }; /** * struct leapraid_raid_act_rep - RAID action reply * * @act: RAID action code echoed. * @r1: Reserved. * @func: Function code. * @vol_dev_hdl: Volume device handle. * @r2: Reserved * @adapter_status: Status returned by adapter. * @r3: Reserved. */ struct leapraid_raid_act_rep { u8 act; u8 r1[2]; u8 func; __le16 vol_dev_hdl; u8 r2[8]; __le16 adapter_status; u8 r3[76]; }; /** * struct leapraid_smp_passthrough_req - SMP passthrough request * * @passthrough_flg: Passthrough flags. * @physical_port: Target PHY port. * @r1: Reserved. * @func: Function code. * @req_data_len: Request data length. * @r2: Reserved. * @sas_address: SAS address of target device. * @r3: Reserved. * @sgl: Scatter-gather list describing request buffer. */ struct leapraid_smp_passthrough_req { u8 passthrough_flg; u8 physical_port; u8 r1; u8 func; __le16 req_data_len; u8 r2[10]; __le64 sas_address; u8 r3[8]; union leapraid_simple_sge_union sgl; } __packed __aligned(4); /** * struct leapraid_smp_passthrough_rep - SMP passthrough reply * * @passthrough_flg: Passthrough flags echoed. * @physical_port: Target PHY port. * @r1: Reserved. * @func: Function code. * @resp_data_len: Length of response data. * @r2: Reserved. * @adapter_status: Adapter status. * @r3: Reserved. */ struct leapraid_smp_passthrough_rep { u8 passthrough_flg; u8 physical_port; u8 r1; u8 func; __le16 resp_data_len; u8 r2[8]; __le16 adapter_status; u8 r3[12]; }; /** * struct leapraid_sas_io_unit_ctrl_req - SAS I/O unit control request * * @op: Operation code. * @r1: Reserved. * @func: Function code. * @dev_hdl: Device handle. * @r2: Reserved. */ struct leapraid_sas_io_unit_ctrl_req { u8 op; u8 r1[2]; u8 func; __le16 dev_hdl; u8 r2[38]; }; #endif /* LEAPRAID_H */ |