#define TWE_CONTROL_CLEAR_HOST_INTERRUPT 0x00080000
#define TWE_CONTROL_CLEAR_ATTENTION_INTERRUPT 0x00040000
#define TWE_CONTROL_MASK_COMMAND_INTERRUPT 0x00020000
#define TWE_CONTROL_MASK_RESPONSE_INTERRUPT 0x00010000
#define TWE_CONTROL_UNMASK_COMMAND_INTERRUPT 0x00008000
#define TWE_CONTROL_UNMASK_RESPONSE_INTERRUPT 0x00004000
#define TWE_CONTROL_CLEAR_ERROR_STATUS 0x00000200
#define TWE_CONTROL_ISSUE_SOFT_RESET 0x00000100
#define TWE_CONTROL_ENABLE_INTERRUPTS 0x00000080
#define TWE_CONTROL_DISABLE_INTERRUPTS 0x00000040
#define TWE_CONTROL_ISSUE_HOST_INTERRUPT 0x00000020
#define TWE_CONTROL_CLEAR_PARITY_ERROR 0x00800000
#define TWE_CONTROL_CLEAR_PCI_ABORT 0x00100000
#define TWE_SOFT_RESET(sc) TWE_CONTROL(sc, TWE_CONTROL_ISSUE_SOFT_RESET | \
TWE_CONTROL_CLEAR_HOST_INTERRUPT | \
TWE_CONTROL_CLEAR_ATTENTION_INTERRUPT | \
TWE_CONTROL_MASK_COMMAND_INTERRUPT | \
TWE_CONTROL_MASK_RESPONSE_INTERRUPT | \
TWE_CONTROL_CLEAR_ERROR_STATUS | \
TWE_CONTROL_DISABLE_INTERRUPTS)
#define TWE_STATUS_MAJOR_VERSION_MASK 0xF0000000
#define TWE_STATUS_MINOR_VERSION_MASK 0x0F000000
#define TWE_STATUS_PCI_PARITY_ERROR 0x00800000
#define TWE_STATUS_QUEUE_ERROR 0x00400000
#define TWE_STATUS_MICROCONTROLLER_ERROR 0x00200000
#define TWE_STATUS_PCI_ABORT 0x00100000
#define TWE_STATUS_HOST_INTERRUPT 0x00080000
#define TWE_STATUS_ATTENTION_INTERRUPT 0x00040000
#define TWE_STATUS_COMMAND_INTERRUPT 0x00020000
#define TWE_STATUS_RESPONSE_INTERRUPT 0x00010000
#define TWE_STATUS_COMMAND_QUEUE_FULL 0x00008000
#define TWE_STATUS_RESPONSE_QUEUE_EMPTY 0x00004000
#define TWE_STATUS_MICROCONTROLLER_READY 0x00002000
#define TWE_STATUS_COMMAND_QUEUE_EMPTY 0x00001000
#define TWE_STATUS_ALL_INTERRUPTS 0x000F0000
#define TWE_STATUS_CLEARABLE_BITS 0x00D00000
#define TWE_STATUS_EXPECTED_BITS 0x00002000
#define TWE_STATUS_UNEXPECTED_BITS 0x00F80000
#define TWE_STATUS_PANIC_BITS (TWE_STATUS_MICROCONTROLLER_ERROR)
#define TWE_STATUS_BITS_DESCRIPTION \
"\20\15CQEMPTY\16UCREADY\17RQEMPTY\20CQFULL\21RINTR\22CINTR\23AINTR\24HINTR\25PCIABRT\26MCERR\27QERR\30PCIPERR\n"
#define TWE_STATUS_ERRORS(x) \
(((x & TWE_STATUS_PCI_ABORT) || \
(x & TWE_STATUS_PCI_PARITY_ERROR) || \
(x & TWE_STATUS_QUEUE_ERROR) || \
(x & TWE_STATUS_MICROCONTROLLER_ERROR)) && \
(x & TWE_STATUS_MICROCONTROLLER_READY))
#define TWE_RESPONSE_ID_MASK 0x00000FF0
#define TWE_IO_CONFIG_REG 0x10
#define TWE_DEVICE_NAME "3ware Storage Controller"
#define TWE_VENDOR_ID 0x13C1
#define TWE_DEVICE_ID 0x1000
#define TWE_DEVICE_ID_ASIC 0x1001
#define TWE_PCI_CLEAR_PARITY_ERROR 0xc100
#define TWE_PCI_CLEAR_PCI_ABORT 0x2000
#define TWE_OP_NOP 0x00
#define TWE_OP_INIT_CONNECTION 0x01
#define TWE_OP_READ 0x02
#define TWE_OP_WRITE 0x03
#define TWE_OP_READVERIFY 0x04
#define TWE_OP_VERIFY 0x05
#define TWE_OP_ZEROUNIT 0x08
#define TWE_OP_REPLACEUNIT 0x09
#define TWE_OP_HOTSWAP 0x0a
#define TWE_OP_SETATAFEATURE 0x0c
#define TWE_OP_FLUSH 0x0e
#define TWE_OP_ABORT 0x0f
#define TWE_OP_CHECKSTATUS 0x10
#define TWE_OP_ATA_PASSTHROUGH 0x11
#define TWE_OP_GET_PARAM 0x12
#define TWE_OP_SET_PARAM 0x13
#define TWE_OP_CREATEUNIT 0x14
#define TWE_OP_DELETEUNIT 0x15
#define TWE_OP_REBUILDUNIT 0x17
#define TWE_OP_SECTOR_INFO 0x1a
#define TWE_OP_AEN_LISTEN 0x1c
#define TWE_OP_CMD_PACKET 0x1d
#define TWE_OP_CMD_WITH_DATA 0x1f
#define TWE_STATUS_RESET 0xff
#define TWE_STATUS_FATAL 0xc0
#define TWE_STATUS_WARNING 0x80
#define TWE_STAUS_INFO 0x40
#define TWE_ALIGNMENT 0x200
#define TWE_ALIGNMASK (TWE_ALIGNMENT - 1)
#define TWE_MAX_UNITS 16
#define TWE_COMMAND_ALIGNMENT_MASK 0x1ff
#define TWE_INIT_MESSAGE_CREDITS 0xff
#define TWE_SHUTDOWN_MESSAGE_CREDITS 0x001
#define TWE_INIT_COMMAND_PACKET_SIZE 0x3
#define TWE_MAX_SGL_LENGTH 62
#define TWE_MAX_ATA_SGL_LENGTH 60
#define TWE_MAX_PASSTHROUGH 4096
#define TWE_Q_LENGTH TWE_INIT_MESSAGE_CREDITS
#define TWE_Q_START 0
#define TWE_MAX_RESET_TRIES 3
#define TWE_BLOCK_SIZE 0x200
#define TWE_SECTOR_SIZE 0x200
#define TWE_IOCTL 0x80
#define TWE_MAX_AEN_TRIES 100
#define TWE_UNIT_ONLINE 1
typedef struct
{
u_int32_t address;
u_int32_t length;
} __packed TWE_SG_Entry;
typedef struct {
u_int8_t opcode:5;
u_int8_t res1:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t res2:4;
u_int8_t host_id:4;
u_int8_t status;
u_int8_t flags;
u_int16_t message_credits;
u_int32_t response_queue_pointer;
} __packed TWE_Command_INITCONNECTION;
typedef struct
{
u_int8_t opcode:5;
u_int8_t res1:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t unit:4;
u_int8_t host_id:4;
u_int8_t status;
u_int8_t flags;
u_int16_t block_count;
u_int32_t lba;
TWE_SG_Entry sgl[TWE_MAX_SGL_LENGTH];
} __packed TWE_Command_IO;
typedef struct
{
u_int8_t opcode:5;
u_int8_t res1:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t unit:4;
u_int8_t host_id:4;
u_int8_t status;
u_int8_t flags;
u_int8_t action;
#define TWE_OP_HOTSWAP_REMOVE 0x00
#define TWE_OP_HOTSWAP_ADD_CBOD 0x01
#define TWE_OP_HOTSWAP_ADD_SPARE 0x02
u_int8_t aport;
} __packed TWE_Command_HOTSWAP;
typedef struct
{
u_int8_t opcode:5;
u_int8_t res1:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t unit:4;
u_int8_t host_id:4;
u_int8_t status;
u_int8_t flags;
u_int8_t feature;
#define TWE_OP_SETATAFEATURE_WCE 0x02
#define TWE_OP_SETATAFEATURE_DIS_WCE 0x82
u_int8_t feature_mode;
u_int16_t all_units;
u_int16_t persistence;
} __packed TWE_Command_SETATAFEATURE;
typedef struct
{
u_int8_t opcode:5;
u_int8_t res1:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t unit:4;
u_int8_t res2:4;
u_int8_t status;
u_int8_t flags;
u_int16_t target_status;
} __packed TWE_Command_CHECKSTATUS;
typedef struct
{
u_int8_t opcode:5;
u_int8_t res1:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t unit:4;
u_int8_t host_id:4;
u_int8_t status;
u_int8_t flags;
u_int16_t param_count;
TWE_SG_Entry sgl[TWE_MAX_SGL_LENGTH];
} __packed TWE_Command_PARAM;
typedef struct
{
u_int8_t opcode:5;
u_int8_t res1:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t src_unit:4;
u_int8_t host_id:4;
u_int8_t status;
u_int8_t flags;
u_int8_t action:7;
#define TWE_OP_REBUILDUNIT_NOP 0
#define TWE_OP_REBUILDUNIT_STOP 2
#define TWE_OP_REBUILDUNIT_START 4
#define TWE_OP_REBUILDUNIT_STARTUNIT 5
u_int8_t cs:1;
u_int8_t logical_subunit;
} __packed TWE_Command_REBUILDUNIT;
typedef struct
{
u_int8_t opcode:5;
u_int8_t sgl_offset:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t unit:4;
u_int8_t host_id:4;
u_int8_t status;
u_int8_t flags;
u_int16_t param;
u_int16_t features;
u_int16_t sector_count;
u_int16_t sector_num;
u_int16_t cylinder_lo;
u_int16_t cylinder_hi;
u_int8_t drive_head;
u_int8_t command;
TWE_SG_Entry sgl[TWE_MAX_ATA_SGL_LENGTH];
} __packed TWE_Command_ATA;
typedef struct
{
u_int8_t opcode:5;
u_int8_t sgl_offset:3;
u_int8_t size;
u_int8_t request_id;
u_int8_t unit:4;
u_int8_t host_id:4;
u_int8_t status;
u_int8_t flags;
#define TWE_FLAGS_SUCCESS 0x00
#define TWE_FLAGS_INFORMATIONAL 0x01
#define TWE_FLAGS_WARNING 0x02
#define TWE_FLAGS_FATAL 0x03
#define TWE_FLAGS_PERCENTAGE (1<<8)
u_int16_t count;
} __packed TWE_Command_Generic;
typedef union
{
TWE_Command_INITCONNECTION initconnection;
TWE_Command_IO io;
TWE_Command_PARAM param;
TWE_Command_CHECKSTATUS checkstatus;
TWE_Command_REBUILDUNIT rebuildunit;
TWE_Command_SETATAFEATURE setatafeature;
TWE_Command_ATA ata;
TWE_Command_Generic generic;
u_int8_t pad[512];
} TWE_Command;
typedef union
{
struct
{
u_int32_t undefined_1:4;
u_int32_t response_id:8;
u_int32_t undefined_2:20;
} u;
u_int32_t value;
} TWE_Response_Queue;
#define TWE_PARAM_PARAM_ALL 0
#define TWE_PARAM_PARAM_SIZE 1
#define TWE_PARAM_DIRECTORY 0xffff
#define TWE_PARAM_DIRECTORY_TABLES 2
#define TWE_PARAM_DIRECTORY_SIZES 3
#define TWE_PARAM_DRIVESUMMARY 0x0002
#define TWE_PARAM_DRIVESUMMARY_Num 2
#define TWE_PARAM_DRIVESUMMARY_Status 3
#define TWE_PARAM_DRIVESTATUS_Missing 0x00
#define TWE_PARAM_DRIVESTATUS_NotSupp 0xfe
#define TWE_PARAM_DRIVESTATUS_Present 0xff
#define TWE_PARAM_UNITSUMMARY 0x0003
#define TWE_PARAM_UNITSUMMARY_Num 2
#define TWE_PARAM_UNITSUMMARY_Status 3
#define TWE_PARAM_UNITSTATUS_Online (1<<0)
#define TWE_PARAM_UNITSTATUS_Complete (1<<1)
#define TWE_PARAM_UNITSTATUS_MASK 0xfc
#define TWE_PARAM_UNITSTATUS_Normal 0xfc
#define TWE_PARAM_UNITSTATUS_Initialising 0xf4
#define TWE_PARAM_UNITSTATUS_Degraded 0xec
#define TWE_PARAM_UNITSTATUS_Rebuilding 0xdc
#define TWE_PARAM_UNITSTATUS_Verifying 0xcc
#define TWE_PARAM_UNITSTATUS_Corrupt 0xbc
#define TWE_PARAM_UNITSTATUS_Missing 0x00
#define TWE_PARAM_DRIVEINFO 0x0200
#define TWE_PARAM_DRIVEINFO_Size 2
#define TWE_PARAM_DRIVEINFO_Model 3
#define TWE_PARAM_DRIVEINFO_Serial 4
#define TWE_PARAM_DRIVEINFO_PhysCylNum 5
#define TWE_PARAM_DRIVEINFO_PhysHeadNum 6
#define TWE_PARAM_DRIVEINFO_PhysSectorNym 7
#define TWE_PARAM_DRIVEINFO_LogCylNum 8
#define TWE_PARAM_DRIVEINFO_LogHeadNum 9
#define TWE_PARAM_DRIVEINFO_LogSectorNum 10
#define TWE_PARAM_DRIVEINFO_UnitNum 11
#define TWE_PARAM_DRIVEINFO_DriveFlags 12
#define TWE_PARAM_APORTTIMEOUT 0x02c0
#define TWE_PARAM_APORTTIMEOUT_READ 2
#define TWE_PARAM_APORTTIMEOUT_WRITE 3
#define TWE_PARAM_APORTTIMEOUT_DEGRADE 4
#define TWE_PARAM_UNITINFO 0x0300
#define TWE_PARAM_UNITINFO_Number 2
#define TWE_PARAM_UNITINFO_Status 3
#define TWE_PARAM_UNITINFO_Capacity 4
#define TWE_PARAM_UNITINFO_DescriptorSize 5
#define TWE_PARAM_UNITINFO_Descriptor 6
#define TWE_PARAM_UNITINFO_Flags 7
#define TWE_PARAM_UNITFLAGS_WCE (1<<0)
#define TWE_PARAM_AEN 0x0401
#define TWE_PARAM_AEN_UnitCode 2
#define TWE_AEN_QUEUE_EMPTY 0x00
#define TWE_AEN_SOFT_RESET 0x01
#define TWE_AEN_DEGRADED_MIRROR 0x02
#define TWE_AEN_CONTROLLER_ERROR 0x03
#define TWE_AEN_REBUILD_FAIL 0x04
#define TWE_AEN_REBUILD_DONE 0x05
#define TWE_AEN_INCOMP_UNIT 0x06
#define TWE_AEN_INIT_DONE 0x07
#define TWE_AEN_UNCLEAN_SHUTDOWN 0x08
#define TWE_AEN_APORT_TIMEOUT 0x09
#define TWE_AEN_DRIVE_ERROR 0x0a
#define TWE_AEN_REBUILD_STARTED 0x0b
#define TWE_AEN_QUEUE_FULL 0xff
#define TWE_AEN_TABLE_UNDEFINED 0x15
#define TWE_AEN_CODE(x) ((x) & 0xff)
#define TWE_AEN_UNIT(x) ((x) >> 8)
#define TWE_PARAM_VERSION 0x0402
#define TWE_PARAM_VERSION_Mon 2
#define TWE_PARAM_VERSION_FW 3
#define TWE_PARAM_VERSION_BIOS 4
#define TWE_PARAM_VERSION_PCB 5
#define TWE_PARAM_VERSION_ATA 6
#define TWE_PARAM_VERSION_PCI 7
#define TWE_PARAM_VERSION_CtrlModel 8
#define TWE_PARAM_VERSION_CtrlSerial 9
#define TWE_PARAM_VERSION_SBufSize 10
#define TWE_PARAM_VERSION_CompCode 11
#define TWE_PARAM_CONTROLLER 0x0403
#define TWE_PARAM_CONTROLLER_DCBSectors 2
#define TWE_PARAM_CONTROLLER_PortCount 3
#define TWE_PARAM_FEATURES 0x404
#define TWE_PARAM_FEATURES_DriverShutdown 2
typedef struct
{
u_int8_t num_subunits;
u_int8_t configuration;
#define TWE_UD_CONFIG_CBOD 0x0c
#define TWE_UD_CONFIG_SPARE 0x0d
#define TWE_UD_CONFIG_SUBUNIT 0x0e
#define TWE_UD_CONFIG_JBOD 0x0f
u_int8_t phys_drv_num;
u_int8_t log_drv_num;
u_int32_t start_lba;
u_int32_t block_count;
} __packed TWE_Unit_Descriptor;
typedef struct
{
u_int8_t flag;
u_int8_t res1;
u_int8_t mirunit_status[4];
u_int8_t res2[6];
} __packed TWE_Mirror_Descriptor;
typedef struct
{
u_int8_t num_subunits;
u_int8_t configuration;
#define TWE_UD_CONFIG_RAID0 0x00
#define TWE_UD_CONFIG_RAID1 0x01
#define TWE_UD_CONFIG_TwinStor 0x02
#define TWE_UD_CONFIG_RAID5 0x05
#define TWE_UD_CONFIG_RAID10 0x06
u_int8_t stripe_size;
#define TWE_UD_STRIPE_4k 0x03
#define TWE_UD_STRIPE_8k 0x04
#define TWE_UD_STRIPE_16k 0x05
#define TWE_UD_STRIPE_32k 0x06
#define TWE_UD_STRIPE_64k 0x07
u_int8_t log_drv_status;
u_int32_t start_lba;
u_int32_t block_count;
TWE_Unit_Descriptor subunit[0];
} __packed TWE_Array_Descriptor;
typedef struct
{
u_int16_t table_id;
u_int8_t parameter_id;
u_int8_t parameter_size_bytes;
u_int8_t data[0];
} __packed TWE_Param;