13a31b7ebSMike Smith /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3718cf2ccSPedro F. Giffuni * 43a31b7ebSMike Smith * Copyright (c) 2001 Michael Smith 53a31b7ebSMike Smith * All rights reserved. 63a31b7ebSMike Smith * 73a31b7ebSMike Smith * Redistribution and use in source and binary forms, with or without 83a31b7ebSMike Smith * modification, are permitted provided that the following conditions 93a31b7ebSMike Smith * are met: 103a31b7ebSMike Smith * 1. Redistributions of source code must retain the above copyright 113a31b7ebSMike Smith * notice, this list of conditions and the following disclaimer. 123a31b7ebSMike Smith * 2. Redistributions in binary form must reproduce the above copyright 133a31b7ebSMike Smith * notice, this list of conditions and the following disclaimer in the 143a31b7ebSMike Smith * documentation and/or other materials provided with the distribution. 153a31b7ebSMike Smith * 163a31b7ebSMike Smith * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 173a31b7ebSMike Smith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 183a31b7ebSMike Smith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 193a31b7ebSMike Smith * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 203a31b7ebSMike Smith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 213a31b7ebSMike Smith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 223a31b7ebSMike Smith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 233a31b7ebSMike Smith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 243a31b7ebSMike Smith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 253a31b7ebSMike Smith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 263a31b7ebSMike Smith * SUCH DAMAGE. 273a31b7ebSMike Smith */ 283a31b7ebSMike Smith 293a31b7ebSMike Smith /* 303a31b7ebSMike Smith * Driver ioctl interface. 313a31b7ebSMike Smith * 323a31b7ebSMike Smith * Note that this interface is API-compatible with the Linux implementation 333a31b7ebSMike Smith * except as noted, and thus this header bears a striking resemblance to 343a31b7ebSMike Smith * the Linux driver's cciss_ioctl.h. 353a31b7ebSMike Smith * 363a31b7ebSMike Smith */ 373a31b7ebSMike Smith 383a31b7ebSMike Smith #include <sys/ioccom.h> 393a31b7ebSMike Smith 403a31b7ebSMike Smith #pragma pack(1) 413a31b7ebSMike Smith 423a31b7ebSMike Smith typedef struct 433a31b7ebSMike Smith { 443a31b7ebSMike Smith u_int8_t bus; 453a31b7ebSMike Smith u_int8_t dev_fn; 463a31b7ebSMike Smith u_int32_t board_id; 473a31b7ebSMike Smith } cciss_pci_info_struct; 483a31b7ebSMike Smith 493a31b7ebSMike Smith typedef struct 503a31b7ebSMike Smith { 513a31b7ebSMike Smith u_int32_t delay; 523a31b7ebSMike Smith u_int32_t count; 533a31b7ebSMike Smith } cciss_coalint_struct; 543a31b7ebSMike Smith 553a31b7ebSMike Smith typedef char NodeName_type[16]; 563a31b7ebSMike Smith typedef u_int32_t Heartbeat_type; 573a31b7ebSMike Smith 583a31b7ebSMike Smith #define CISS_PARSCSIU2 0x0001 593a31b7ebSMike Smith #define CISS_PARCSCIU3 0x0002 603a31b7ebSMike Smith #define CISS_FIBRE1G 0x0100 613a31b7ebSMike Smith #define CISS_FIBRE2G 0x0200 623a31b7ebSMike Smith typedef u_int32_t BusTypes_type; 633a31b7ebSMike Smith 643a31b7ebSMike Smith typedef char FirmwareVer_type[4]; 653a31b7ebSMike Smith typedef u_int32_t DriverVer_type; 663a31b7ebSMike Smith 673a31b7ebSMike Smith /* passthrough command definitions */ 683a31b7ebSMike Smith #define SENSEINFOBYTES 32 693a31b7ebSMike Smith #define CISS_MAX_LUN 16 703a31b7ebSMike Smith #define LEVEL2LUN 1 713a31b7ebSMike Smith #define LEVEL3LUN 0 723a31b7ebSMike Smith 733a31b7ebSMike Smith /* command status value */ 743a31b7ebSMike Smith #define CMD_SUCCESS 0x0000 753a31b7ebSMike Smith #define CMD_TARGET_STATUS 0x0001 763a31b7ebSMike Smith #define CMD_DATA_UNDERRUN 0x0002 773a31b7ebSMike Smith #define CMD_DATA_OVERRUN 0x0003 783a31b7ebSMike Smith #define CMD_INVALID 0x0004 793a31b7ebSMike Smith #define CMD_PROTOCOL_ERR 0x0005 803a31b7ebSMike Smith #define CMD_HARDWARE_ERR 0x0006 813a31b7ebSMike Smith #define CMD_CONNECTION_LOST 0x0007 823a31b7ebSMike Smith #define CMD_ABORTED 0x0008 833a31b7ebSMike Smith #define CMD_ABORT_FAILED 0x0009 843a31b7ebSMike Smith #define CMD_UNSOLICITED_ABORT 0x000A 853a31b7ebSMike Smith #define CMD_TIMEOUT 0x000B 863a31b7ebSMike Smith #define CMD_UNABORTABLE 0x000C 873a31b7ebSMike Smith 883a31b7ebSMike Smith /* transfer direction */ 893a31b7ebSMike Smith #define XFER_NONE 0x00 903a31b7ebSMike Smith #define XFER_WRITE 0x01 913a31b7ebSMike Smith #define XFER_READ 0x02 923a31b7ebSMike Smith #define XFER_RSVD 0x03 933a31b7ebSMike Smith 943a31b7ebSMike Smith /* task attribute */ 953a31b7ebSMike Smith #define ATTR_UNTAGGED 0x00 963a31b7ebSMike Smith #define ATTR_SIMPLE 0x04 973a31b7ebSMike Smith #define ATTR_HEADOFQUEUE 0x05 983a31b7ebSMike Smith #define ATTR_ORDERED 0x06 993a31b7ebSMike Smith #define ATTR_ACA 0x07 1003a31b7ebSMike Smith 1013a31b7ebSMike Smith /* CDB type */ 1023a31b7ebSMike Smith #define TYPE_CMD 0x00 1033a31b7ebSMike Smith #define TYPE_MSG 0x01 1043a31b7ebSMike Smith 1053a31b7ebSMike Smith /* command list structure */ 1063a31b7ebSMike Smith typedef union { 1073a31b7ebSMike Smith struct { 1083a31b7ebSMike Smith u_int8_t Dev; 1093a31b7ebSMike Smith u_int8_t Bus:6; 1103a31b7ebSMike Smith u_int8_t Mode:2; 1114788ab33SPaul Saab } __packed PeripDev; 1123a31b7ebSMike Smith struct { 1133a31b7ebSMike Smith u_int8_t DevLSB; 1143a31b7ebSMike Smith u_int8_t DevMSB:6; 1153a31b7ebSMike Smith u_int8_t Mode:2; 1164788ab33SPaul Saab } __packed LogDev; 1173a31b7ebSMike Smith struct { 1183a31b7ebSMike Smith u_int8_t Dev:5; 1193a31b7ebSMike Smith u_int8_t Bus:3; 1203a31b7ebSMike Smith u_int8_t Targ:6; 1213a31b7ebSMike Smith u_int8_t Mode:2; 1224788ab33SPaul Saab } __packed LogUnit; 1233a31b7ebSMike Smith } SCSI3Addr_struct; 1243a31b7ebSMike Smith 1254788ab33SPaul Saab typedef struct { 1263a31b7ebSMike Smith u_int32_t TargetId:24; 1273a31b7ebSMike Smith u_int32_t Bus:6; 1283a31b7ebSMike Smith u_int32_t Mode:2; 1293a31b7ebSMike Smith SCSI3Addr_struct Target[2]; 1304788ab33SPaul Saab } __packed PhysDevAddr_struct; 1313a31b7ebSMike Smith 1324788ab33SPaul Saab typedef struct { 1333a31b7ebSMike Smith u_int32_t VolId:30; 1343a31b7ebSMike Smith u_int32_t Mode:2; 1353a31b7ebSMike Smith u_int8_t reserved[4]; 1364788ab33SPaul Saab } __packed LogDevAddr_struct; 1373a31b7ebSMike Smith 1383a31b7ebSMike Smith typedef union { 1393a31b7ebSMike Smith u_int8_t LunAddrBytes[8]; 1403a31b7ebSMike Smith SCSI3Addr_struct SCSI3Lun[4]; 1414788ab33SPaul Saab PhysDevAddr_struct PhysDev; 1424788ab33SPaul Saab LogDevAddr_struct LogDev; 1434788ab33SPaul Saab } __packed LUNAddr_struct; 1443a31b7ebSMike Smith 1454788ab33SPaul Saab typedef struct { 1463a31b7ebSMike Smith u_int8_t CDBLen; 1473a31b7ebSMike Smith struct { 1483a31b7ebSMike Smith u_int8_t Type:3; 1493a31b7ebSMike Smith u_int8_t Attribute:3; 1503a31b7ebSMike Smith u_int8_t Direction:2; 1514788ab33SPaul Saab } __packed Type; 1523a31b7ebSMike Smith u_int16_t Timeout; 1533a31b7ebSMike Smith u_int8_t CDB[16]; 1544788ab33SPaul Saab } __packed RequestBlock_struct; 1553a31b7ebSMike Smith 1563a31b7ebSMike Smith typedef union { 1573a31b7ebSMike Smith struct { 1583a31b7ebSMike Smith u_int8_t Reserved[3]; 1593a31b7ebSMike Smith u_int8_t Type; 1603a31b7ebSMike Smith u_int32_t ErrorInfo; 1614788ab33SPaul Saab } __packed Common_Info; 1623a31b7ebSMike Smith struct { 1633a31b7ebSMike Smith u_int8_t Reserved[2]; 1643a31b7ebSMike Smith u_int8_t offense_size; 1653a31b7ebSMike Smith u_int8_t offense_num; 1663a31b7ebSMike Smith u_int32_t offense_value; 1674788ab33SPaul Saab } __packed Invalid_Cmd; 1684788ab33SPaul Saab } __packed MoreErrInfo_struct; 1693a31b7ebSMike Smith 1704788ab33SPaul Saab typedef struct { 1713a31b7ebSMike Smith u_int8_t ScsiStatus; 1723a31b7ebSMike Smith u_int8_t SenseLen; 1733a31b7ebSMike Smith u_int16_t CommandStatus; 1743a31b7ebSMike Smith u_int32_t ResidualCnt; 1753a31b7ebSMike Smith MoreErrInfo_struct MoreErrInfo; 1763a31b7ebSMike Smith u_int8_t SenseInfo[SENSEINFOBYTES]; 1774788ab33SPaul Saab } __packed ErrorInfo_struct; 1783a31b7ebSMike Smith 1794788ab33SPaul Saab typedef struct { 1803a31b7ebSMike Smith LUNAddr_struct LUN_info; /* 8 */ 1813a31b7ebSMike Smith RequestBlock_struct Request; /* 20 */ 1823a31b7ebSMike Smith ErrorInfo_struct error_info; /* 48 */ 1833a31b7ebSMike Smith u_int16_t buf_size; /* 2 */ 1843a31b7ebSMike Smith u_int8_t *buf; /* 4 */ 1854788ab33SPaul Saab } __packed IOCTL_Command_struct; 1863a31b7ebSMike Smith 1877caeec6aSPaul Saab #ifdef __amd64__ 1887caeec6aSPaul Saab typedef struct { 1897caeec6aSPaul Saab LUNAddr_struct LUN_info; /* 8 */ 1907caeec6aSPaul Saab RequestBlock_struct Request; /* 20 */ 1917caeec6aSPaul Saab ErrorInfo_struct error_info; /* 48 */ 1927caeec6aSPaul Saab u_int16_t buf_size; /* 2 */ 1937caeec6aSPaul Saab u_int32_t buf; /* 4 */ 1947caeec6aSPaul Saab } __packed IOCTL_Command_struct32; 1957caeec6aSPaul Saab #endif 1967caeec6aSPaul Saab 19722657ce1SScott Long /************************************************************************ 19822657ce1SScott Long * Command queue statistics 19922657ce1SScott Long */ 20022657ce1SScott Long 20122657ce1SScott Long #define CISSQ_FREE 0 20222657ce1SScott Long #define CISSQ_NOTIFY 1 20322657ce1SScott Long #define CISSQ_COUNT 2 20422657ce1SScott Long 20522657ce1SScott Long struct ciss_qstat { 20622657ce1SScott Long uint32_t q_length; 20722657ce1SScott Long uint32_t q_max; 20822657ce1SScott Long }; 20922657ce1SScott Long 21022657ce1SScott Long union ciss_statrequest { 21122657ce1SScott Long uint32_t cs_item; 21222657ce1SScott Long struct ciss_qstat cs_qstat; 21322657ce1SScott Long }; 21422657ce1SScott Long 2153a31b7ebSMike Smith /* 2163a31b7ebSMike Smith * Note that we'd normally pass the struct in directly, but 2173a31b7ebSMike Smith * this code is trying to be compatible with other drivers. 2183a31b7ebSMike Smith */ 2193a31b7ebSMike Smith #define CCISS_GETPCIINFO _IOR ('C', 200, cciss_pci_info_struct) 2203a31b7ebSMike Smith #define CCISS_GETINTINFO _IOR ('C', 201, cciss_coalint_struct) 2213a31b7ebSMike Smith #define CCISS_SETINTINFO _IOW ('C', 202, cciss_coalint_struct) 2223a31b7ebSMike Smith #define CCISS_GETNODENAME _IOR ('C', 203, NodeName_type) 2233a31b7ebSMike Smith #define CCISS_SETNODENAME _IOW ('C', 204, NodeName_type) 2243a31b7ebSMike Smith #define CCISS_GETHEARTBEAT _IOR ('C', 205, Heartbeat_type) 2253a31b7ebSMike Smith #define CCISS_GETBUSTYPES _IOR ('C', 206, BusTypes_type) 2263a31b7ebSMike Smith #define CCISS_GETFIRMVER _IOR ('C', 207, FirmwareVer_type) 2273a31b7ebSMike Smith #define CCISS_GETDRIVERVER _IOR ('C', 208, DriverVer_type) 2283a31b7ebSMike Smith #define CCISS_REVALIDVOLS _IO ('C', 209) 2293a31b7ebSMike Smith #define CCISS_PASSTHRU _IOWR ('C', 210, IOCTL_Command_struct) 2307caeec6aSPaul Saab #ifdef __amd64 2317caeec6aSPaul Saab #define CCISS_PASSTHRU32 _IOWR ('C', 210, IOCTL_Command_struct32) 2327caeec6aSPaul Saab #endif 23322657ce1SScott Long #define CCISS_GETQSTATS _IOWR ('C', 211, union ciss_statrequest) 2343a31b7ebSMike Smith 2353a31b7ebSMike Smith #pragma pack() 236