Home | History | Annotate | Line # | Download | only in ic
ispmbox.h revision 1.49.30.1
      1  1.49.30.1      ad /* $NetBSD: ispmbox.h,v 1.49.30.1 2007/05/27 14:30:04 ad Exp $ */
      2        1.1     cgd /*
      3       1.18  mjacob  * Copyright (C) 1997, 1998, 1999 National Aeronautics & Space Administration
      4        1.1     cgd  * All rights reserved.
      5        1.1     cgd  *
      6  1.49.30.1      ad  * Additional Copyright (C) 2000-2007 by Matthew Jacob
      7  1.49.30.1      ad  * All rights reserved.
      8  1.49.30.1      ad  *
      9        1.1     cgd  * Redistribution and use in source and binary forms, with or without
     10        1.1     cgd  * modification, are permitted provided that the following conditions
     11        1.1     cgd  * are met:
     12        1.1     cgd  * 1. Redistributions of source code must retain the above copyright
     13       1.18  mjacob  *    notice, this list of conditions and the following disclaimer.
     14        1.1     cgd  * 2. Redistributions in binary form must reproduce the above copyright
     15        1.1     cgd  *    notice, this list of conditions and the following disclaimer in the
     16        1.1     cgd  *    documentation and/or other materials provided with the distribution.
     17        1.1     cgd  * 3. The name of the author may not be used to endorse or promote products
     18       1.18  mjacob  *    derived from this software without specific prior written permission
     19        1.6  mjacob  *
     20       1.18  mjacob  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21       1.18  mjacob  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22       1.18  mjacob  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23       1.18  mjacob  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24       1.18  mjacob  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25       1.18  mjacob  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26       1.18  mjacob  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27       1.18  mjacob  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28       1.18  mjacob  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29       1.18  mjacob  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30       1.18  mjacob  */
     31       1.18  mjacob /*
     32       1.18  mjacob  * Mailbox and Queue Entry Definitions for for Qlogic ISP SCSI adapters.
     33        1.1     cgd  */
     34        1.1     cgd #ifndef	_ISPMBOX_H
     35        1.1     cgd #define	_ISPMBOX_H
     36        1.1     cgd 
     37        1.1     cgd /*
     38        1.1     cgd  * Mailbox Command Opcodes
     39        1.1     cgd  */
     40        1.1     cgd #define MBOX_NO_OP			0x0000
     41        1.1     cgd #define MBOX_LOAD_RAM			0x0001
     42        1.1     cgd #define MBOX_EXEC_FIRMWARE		0x0002
     43        1.1     cgd #define MBOX_DUMP_RAM			0x0003
     44        1.1     cgd #define MBOX_WRITE_RAM_WORD		0x0004
     45        1.1     cgd #define MBOX_READ_RAM_WORD		0x0005
     46        1.1     cgd #define MBOX_MAILBOX_REG_TEST		0x0006
     47        1.1     cgd #define MBOX_VERIFY_CHECKSUM		0x0007
     48        1.1     cgd #define MBOX_ABOUT_FIRMWARE		0x0008
     49  1.49.30.1      ad #define	MBOX_LOAD_RISC_RAM_2100		0x0009
     50        1.1     cgd 					/*   a */
     51  1.49.30.1      ad #define	MBOX_LOAD_RISC_RAM		0x000b
     52        1.1     cgd 					/*   c */
     53  1.49.30.1      ad #define MBOX_WRITE_RAM_WORD_EXTENDED	0x000d
     54        1.1     cgd #define MBOX_CHECK_FIRMWARE		0x000e
     55       1.38  mjacob #define	MBOX_READ_RAM_WORD_EXTENDED	0x000f
     56        1.1     cgd #define MBOX_INIT_REQ_QUEUE		0x0010
     57        1.1     cgd #define MBOX_INIT_RES_QUEUE		0x0011
     58        1.1     cgd #define MBOX_EXECUTE_IOCB		0x0012
     59        1.1     cgd #define MBOX_WAKE_UP			0x0013
     60        1.1     cgd #define MBOX_STOP_FIRMWARE		0x0014
     61        1.1     cgd #define MBOX_ABORT			0x0015
     62        1.1     cgd #define MBOX_ABORT_DEVICE		0x0016
     63        1.1     cgd #define MBOX_ABORT_TARGET		0x0017
     64        1.1     cgd #define MBOX_BUS_RESET			0x0018
     65        1.1     cgd #define MBOX_STOP_QUEUE			0x0019
     66        1.1     cgd #define MBOX_START_QUEUE		0x001a
     67        1.1     cgd #define MBOX_SINGLE_STEP_QUEUE		0x001b
     68        1.1     cgd #define MBOX_ABORT_QUEUE		0x001c
     69        1.1     cgd #define MBOX_GET_DEV_QUEUE_STATUS	0x001d
     70        1.1     cgd 					/*  1e */
     71        1.1     cgd #define MBOX_GET_FIRMWARE_STATUS	0x001f
     72        1.1     cgd #define MBOX_GET_INIT_SCSI_ID		0x0020
     73        1.1     cgd #define MBOX_GET_SELECT_TIMEOUT		0x0021
     74        1.1     cgd #define MBOX_GET_RETRY_COUNT		0x0022
     75        1.1     cgd #define MBOX_GET_TAG_AGE_LIMIT		0x0023
     76        1.1     cgd #define MBOX_GET_CLOCK_RATE		0x0024
     77        1.1     cgd #define MBOX_GET_ACT_NEG_STATE		0x0025
     78        1.1     cgd #define MBOX_GET_ASYNC_DATA_SETUP_TIME	0x0026
     79        1.1     cgd #define MBOX_GET_SBUS_PARAMS		0x0027
     80       1.34  mjacob #define		MBOX_GET_PCI_PARAMS	MBOX_GET_SBUS_PARAMS
     81        1.1     cgd #define MBOX_GET_TARGET_PARAMS		0x0028
     82        1.1     cgd #define MBOX_GET_DEV_QUEUE_PARAMS	0x0029
     83       1.17  mjacob #define	MBOX_GET_RESET_DELAY_PARAMS	0x002a
     84        1.1     cgd 					/*  2b */
     85        1.1     cgd 					/*  2c */
     86        1.1     cgd 					/*  2d */
     87        1.1     cgd 					/*  2e */
     88        1.1     cgd 					/*  2f */
     89        1.1     cgd #define MBOX_SET_INIT_SCSI_ID		0x0030
     90        1.1     cgd #define MBOX_SET_SELECT_TIMEOUT		0x0031
     91        1.1     cgd #define MBOX_SET_RETRY_COUNT		0x0032
     92        1.1     cgd #define MBOX_SET_TAG_AGE_LIMIT		0x0033
     93        1.1     cgd #define MBOX_SET_CLOCK_RATE		0x0034
     94       1.17  mjacob #define MBOX_SET_ACT_NEG_STATE		0x0035
     95        1.1     cgd #define MBOX_SET_ASYNC_DATA_SETUP_TIME	0x0036
     96        1.1     cgd #define MBOX_SET_SBUS_CONTROL_PARAMS	0x0037
     97        1.3  mjacob #define		MBOX_SET_PCI_PARAMETERS	0x0037
     98        1.1     cgd #define MBOX_SET_TARGET_PARAMS		0x0038
     99        1.1     cgd #define MBOX_SET_DEV_QUEUE_PARAMS	0x0039
    100       1.17  mjacob #define	MBOX_SET_RESET_DELAY_PARAMS	0x003a
    101        1.1     cgd 					/*  3b */
    102        1.1     cgd 					/*  3c */
    103        1.1     cgd 					/*  3d */
    104        1.1     cgd 					/*  3e */
    105        1.1     cgd 					/*  3f */
    106        1.1     cgd #define	MBOX_RETURN_BIOS_BLOCK_ADDR	0x0040
    107        1.1     cgd #define	MBOX_WRITE_FOUR_RAM_WORDS	0x0041
    108        1.1     cgd #define	MBOX_EXEC_BIOS_IOCB		0x0042
    109       1.12  mjacob #define	MBOX_SET_FW_FEATURES		0x004a
    110       1.12  mjacob #define	MBOX_GET_FW_FEATURES		0x004b
    111       1.38  mjacob #define		FW_FEATURE_FAST_POST	0x1
    112       1.12  mjacob #define		FW_FEATURE_LVD_NOTIFY	0x2
    113       1.38  mjacob #define		FW_FEATURE_RIO_32BIT	0x4
    114       1.38  mjacob #define		FW_FEATURE_RIO_16BIT	0x8
    115        1.1     cgd 
    116       1.44  mjacob #define	MBOX_INIT_REQ_QUEUE_A64		0x0052
    117       1.44  mjacob #define	MBOX_INIT_RES_QUEUE_A64		0x0053
    118       1.44  mjacob 
    119       1.35  mjacob #define	MBOX_ENABLE_TARGET_MODE		0x0055
    120       1.20  mjacob #define		ENABLE_TARGET_FLAG	0x8000
    121       1.32  mjacob #define		ENABLE_TQING_FLAG	0x0004
    122       1.32  mjacob #define		ENABLE_MANDATORY_DISC	0x0002
    123       1.35  mjacob #define	MBOX_GET_TARGET_STATUS		0x0056
    124       1.35  mjacob 
    125       1.35  mjacob /* These are for the ISP2X00 FC cards */
    126       1.35  mjacob #define	MBOX_GET_LOOP_ID		0x0020
    127       1.35  mjacob #define	MBOX_GET_FIRMWARE_OPTIONS	0x0028
    128       1.35  mjacob #define	MBOX_SET_FIRMWARE_OPTIONS	0x0038
    129       1.35  mjacob #define	MBOX_GET_RESOURCE_COUNT		0x0042
    130  1.49.30.1      ad #define	MBOX_REQUEST_OFFLINE_MODE	0x0043
    131       1.35  mjacob #define	MBOX_ENHANCED_GET_PDB		0x0047
    132       1.35  mjacob #define	MBOX_EXEC_COMMAND_IOCB_A64	0x0054
    133       1.35  mjacob #define	MBOX_INIT_FIRMWARE		0x0060
    134       1.35  mjacob #define	MBOX_GET_INIT_CONTROL_BLOCK	0x0061
    135       1.35  mjacob #define	MBOX_INIT_LIP			0x0062
    136       1.35  mjacob #define	MBOX_GET_FC_AL_POSITION_MAP	0x0063
    137       1.35  mjacob #define	MBOX_GET_PORT_DB		0x0064
    138       1.35  mjacob #define	MBOX_CLEAR_ACA			0x0065
    139       1.35  mjacob #define	MBOX_TARGET_RESET		0x0066
    140       1.35  mjacob #define	MBOX_CLEAR_TASK_SET		0x0067
    141       1.35  mjacob #define	MBOX_ABORT_TASK_SET		0x0068
    142       1.35  mjacob #define	MBOX_GET_FW_STATE		0x0069
    143       1.35  mjacob #define	MBOX_GET_PORT_NAME		0x006A
    144       1.35  mjacob #define	MBOX_GET_LINK_STATUS		0x006B
    145       1.35  mjacob #define	MBOX_INIT_LIP_RESET		0x006C
    146       1.35  mjacob #define	MBOX_SEND_SNS			0x006E
    147       1.35  mjacob #define	MBOX_FABRIC_LOGIN		0x006F
    148       1.35  mjacob #define	MBOX_SEND_CHANGE_REQUEST	0x0070
    149       1.35  mjacob #define	MBOX_FABRIC_LOGOUT		0x0071
    150       1.35  mjacob #define	MBOX_INIT_LIP_LOGIN		0x0072
    151  1.49.30.1      ad #define	MBOX_LUN_RESET			0x007E
    152       1.41  mjacob 
    153       1.41  mjacob #define	MBOX_DRIVER_HEARTBEAT		0x005B
    154       1.41  mjacob #define	MBOX_FW_HEARTBEAT		0x005C
    155       1.35  mjacob 
    156  1.49.30.1      ad #define	MBOX_GET_SET_DATA_RATE		0x005D	/* 24XX/23XX only */
    157  1.49.30.1      ad #define		MBGSD_GET_RATE		0
    158  1.49.30.1      ad #define		MBGSD_SET_RATE		1
    159  1.49.30.1      ad #define		MBGSD_SET_RATE_NOW	2	/* 24XX only */
    160       1.35  mjacob #define		MBGSD_ONEGB	0
    161       1.35  mjacob #define		MBGSD_TWOGB	1
    162       1.35  mjacob #define		MBGSD_AUTO	2
    163  1.49.30.1      ad #define		MBGSD_FOURGB	3		/* 24XX only */
    164       1.20  mjacob 
    165        1.3  mjacob 
    166        1.3  mjacob #define	ISP2100_SET_PCI_PARAM		0x00ff
    167        1.3  mjacob 
    168        1.1     cgd #define	MBOX_BUSY			0x04
    169        1.1     cgd 
    170        1.1     cgd /*
    171        1.8  mjacob  * Mailbox Command Complete Status Codes
    172        1.8  mjacob  */
    173        1.8  mjacob #define	MBOX_COMMAND_COMPLETE		0x4000
    174        1.8  mjacob #define	MBOX_INVALID_COMMAND		0x4001
    175        1.8  mjacob #define	MBOX_HOST_INTERFACE_ERROR	0x4002
    176        1.8  mjacob #define	MBOX_TEST_FAILED		0x4003
    177        1.8  mjacob #define	MBOX_COMMAND_ERROR		0x4005
    178        1.8  mjacob #define	MBOX_COMMAND_PARAM_ERROR	0x4006
    179       1.22  mjacob #define	MBOX_PORT_ID_USED		0x4007
    180       1.22  mjacob #define	MBOX_LOOP_ID_USED		0x4008
    181       1.22  mjacob #define	MBOX_ALL_IDS_USED		0x4009
    182       1.22  mjacob #define	MBOX_NOT_LOGGED_IN		0x400A
    183  1.49.30.1      ad /* pseudo mailbox completion codes */
    184  1.49.30.1      ad #define	MBOX_REGS_BUSY			0x6000	/* registers in use */
    185  1.49.30.1      ad #define	MBOX_TIMEOUT			0x6001	/* command timed out */
    186  1.49.30.1      ad 
    187       1.25  mjacob #define	MBLOGALL			0x000f
    188       1.25  mjacob #define	MBLOGNONE			0x0000
    189       1.25  mjacob #define	MBLOGMASK(x)			((x) & 0xf)
    190        1.8  mjacob 
    191        1.8  mjacob /*
    192        1.8  mjacob  * Asynchronous event status codes
    193        1.8  mjacob  */
    194        1.8  mjacob #define	ASYNC_BUS_RESET			0x8001
    195        1.8  mjacob #define	ASYNC_SYSTEM_ERROR		0x8002
    196        1.8  mjacob #define	ASYNC_RQS_XFER_ERR		0x8003
    197        1.8  mjacob #define	ASYNC_RSP_XFER_ERR		0x8004
    198        1.8  mjacob #define	ASYNC_QWAKEUP			0x8005
    199        1.8  mjacob #define	ASYNC_TIMEOUT_RESET		0x8006
    200       1.10  mjacob #define	ASYNC_DEVICE_RESET		0x8007
    201        1.8  mjacob #define	ASYNC_EXTMSG_UNDERRUN		0x800A
    202        1.8  mjacob #define	ASYNC_SCAM_INT			0x800B
    203        1.8  mjacob #define	ASYNC_HUNG_SCSI			0x800C
    204        1.8  mjacob #define	ASYNC_KILLED_BUS		0x800D
    205        1.8  mjacob #define	ASYNC_BUS_TRANSIT		0x800E	/* LVD -> HVD, eg. */
    206        1.8  mjacob #define	ASYNC_LIP_OCCURRED		0x8010
    207        1.8  mjacob #define	ASYNC_LOOP_UP			0x8011
    208        1.8  mjacob #define	ASYNC_LOOP_DOWN			0x8012
    209        1.8  mjacob #define	ASYNC_LOOP_RESET		0x8013
    210       1.10  mjacob #define	ASYNC_PDB_CHANGED		0x8014
    211        1.8  mjacob #define	ASYNC_CHANGE_NOTIFY		0x8015
    212       1.34  mjacob #define	ASYNC_LIP_F8			0x8016
    213  1.49.30.1      ad #define	ASYNC_LIP_ERROR			0x8017
    214  1.49.30.1      ad #define	ASYNC_SECURITY_UPDATE		0x801B
    215       1.33  mjacob #define	ASYNC_CMD_CMPLT			0x8020
    216       1.33  mjacob #define	ASYNC_CTIO_DONE			0x8021
    217       1.33  mjacob #define	ASYNC_IP_XMIT_DONE		0x8022
    218       1.33  mjacob #define	ASYNC_IP_RECV_DONE		0x8023
    219       1.33  mjacob #define	ASYNC_IP_BROADCAST		0x8024
    220       1.33  mjacob #define	ASYNC_IP_RCVQ_LOW		0x8025
    221       1.33  mjacob #define	ASYNC_IP_RCVQ_EMPTY		0x8026
    222       1.33  mjacob #define	ASYNC_IP_RECV_DONE_ALIGNED	0x8027
    223       1.21  mjacob #define	ASYNC_PTPMODE			0x8030
    224       1.33  mjacob #define	ASYNC_RIO1			0x8031
    225       1.33  mjacob #define	ASYNC_RIO2			0x8032
    226       1.33  mjacob #define	ASYNC_RIO3			0x8033
    227       1.33  mjacob #define	ASYNC_RIO4			0x8034
    228       1.33  mjacob #define	ASYNC_RIO5			0x8035
    229       1.21  mjacob #define	ASYNC_CONNMODE			0x8036
    230       1.21  mjacob #define		ISP_CONN_LOOP		1
    231       1.21  mjacob #define		ISP_CONN_PTP		2
    232       1.21  mjacob #define		ISP_CONN_BADLIP		3
    233       1.21  mjacob #define		ISP_CONN_FATAL		4
    234       1.21  mjacob #define		ISP_CONN_LOOPBACK	5
    235       1.33  mjacob #define	ASYNC_RIO_RESP			0x8040
    236       1.33  mjacob #define	ASYNC_RIO_COMP			0x8042
    237  1.49.30.1      ad #define	ASYNC_RCV_ERR			0x8048
    238  1.49.30.1      ad 
    239       1.33  mjacob /*
    240       1.33  mjacob  * 2.01.31 2200 Only. Need Bit 13 in Mailbox 1 for Set Firmware Options
    241       1.33  mjacob  * mailbox command to enable this.
    242       1.33  mjacob  */
    243       1.33  mjacob #define	ASYNC_QFULL_SENT		0x8049
    244       1.33  mjacob 
    245       1.33  mjacob /*
    246  1.49.30.1      ad  * 24XX only
    247       1.33  mjacob  */
    248  1.49.30.1      ad #define	ASYNC_RJT_SENT			0x8049
    249       1.33  mjacob 
    250  1.49.30.1      ad /*
    251  1.49.30.1      ad  * All IOCB Queue entries are this size
    252  1.49.30.1      ad  */
    253  1.49.30.1      ad #define	QENTRY_LEN			64
    254       1.21  mjacob 
    255        1.8  mjacob /*
    256        1.1     cgd  * Command Structure Definitions
    257        1.1     cgd  */
    258        1.1     cgd 
    259        1.1     cgd typedef struct {
    260  1.49.30.1      ad 	uint32_t	ds_base;
    261  1.49.30.1      ad 	uint32_t	ds_count;
    262        1.1     cgd } ispds_t;
    263        1.1     cgd 
    264       1.33  mjacob typedef struct {
    265  1.49.30.1      ad 	uint32_t	ds_base;
    266  1.49.30.1      ad 	uint32_t	ds_basehi;
    267  1.49.30.1      ad 	uint32_t	ds_count;
    268       1.33  mjacob } ispds64_t;
    269       1.33  mjacob 
    270       1.36  mjacob #define	DSTYPE_32BIT	0
    271       1.36  mjacob #define	DSTYPE_64BIT	1
    272       1.33  mjacob typedef struct {
    273  1.49.30.1      ad 	uint16_t	ds_type;	/* 0-> ispds_t, 1-> ispds64_t */
    274  1.49.30.1      ad 	uint32_t	ds_segment;	/* unused */
    275  1.49.30.1      ad 	uint32_t	ds_base;	/* 32 bit address of DSD list */
    276       1.33  mjacob } ispdslist_t;
    277       1.33  mjacob 
    278       1.33  mjacob 
    279       1.33  mjacob /*
    280       1.33  mjacob  * These elements get swizzled around for SBus instances.
    281       1.33  mjacob  */
    282       1.36  mjacob #define	ISP_SWAP8(a, b)	{		\
    283  1.49.30.1      ad 	uint8_t tmp;			\
    284       1.16  mjacob 	tmp = a;			\
    285       1.16  mjacob 	a = b;				\
    286       1.16  mjacob 	b = tmp;			\
    287       1.16  mjacob }
    288        1.1     cgd typedef struct {
    289  1.49.30.1      ad 	uint8_t		rqs_entry_type;
    290  1.49.30.1      ad 	uint8_t		rqs_entry_count;
    291  1.49.30.1      ad 	uint8_t		rqs_seqno;
    292  1.49.30.1      ad 	uint8_t		rqs_flags;
    293       1.16  mjacob } isphdr_t;
    294        1.1     cgd 
    295        1.1     cgd /* RQS Flag definitions */
    296        1.1     cgd #define	RQSFLAG_CONTINUATION	0x01
    297        1.1     cgd #define	RQSFLAG_FULL		0x02
    298        1.1     cgd #define	RQSFLAG_BADHEADER	0x04
    299        1.1     cgd #define	RQSFLAG_BADPACKET	0x08
    300  1.49.30.1      ad #define	RQSFLAG_MASK		0x0f
    301        1.3  mjacob 
    302        1.1     cgd /* RQS entry_type definitions */
    303        1.8  mjacob #define	RQSTYPE_REQUEST		0x01
    304        1.8  mjacob #define	RQSTYPE_DATASEG		0x02
    305        1.8  mjacob #define	RQSTYPE_RESPONSE	0x03
    306        1.8  mjacob #define	RQSTYPE_MARKER		0x04
    307        1.8  mjacob #define	RQSTYPE_CMDONLY		0x05
    308        1.8  mjacob #define	RQSTYPE_ATIO		0x06	/* Target Mode */
    309       1.20  mjacob #define	RQSTYPE_CTIO		0x07	/* Target Mode */
    310        1.8  mjacob #define	RQSTYPE_SCAM		0x08
    311        1.8  mjacob #define	RQSTYPE_A64		0x09
    312        1.8  mjacob #define	RQSTYPE_A64_CONT	0x0a
    313        1.8  mjacob #define	RQSTYPE_ENABLE_LUN	0x0b	/* Target Mode */
    314        1.8  mjacob #define	RQSTYPE_MODIFY_LUN	0x0c	/* Target Mode */
    315        1.8  mjacob #define	RQSTYPE_NOTIFY		0x0d	/* Target Mode */
    316        1.8  mjacob #define	RQSTYPE_NOTIFY_ACK	0x0e	/* Target Mode */
    317        1.8  mjacob #define	RQSTYPE_CTIO1		0x0f	/* Target Mode */
    318        1.8  mjacob #define	RQSTYPE_STATUS_CONT	0x10
    319        1.8  mjacob #define	RQSTYPE_T2RQS		0x11
    320  1.49.30.1      ad #define	RQSTYPE_CTIO7		0x12
    321       1.33  mjacob #define	RQSTYPE_IP_XMIT		0x13
    322  1.49.30.1      ad #define	RQSTYPE_TSK_MGMT	0x14
    323        1.8  mjacob #define	RQSTYPE_T4RQS		0x15
    324       1.33  mjacob #define	RQSTYPE_ATIO2		0x16	/* Target Mode */
    325       1.33  mjacob #define	RQSTYPE_CTIO2		0x17	/* Target Mode */
    326  1.49.30.1      ad #define	RQSTYPE_T7RQS		0x18
    327        1.8  mjacob #define	RQSTYPE_T3RQS		0x19
    328       1.33  mjacob #define	RQSTYPE_IP_XMIT_64	0x1b
    329       1.33  mjacob #define	RQSTYPE_CTIO4		0x1e	/* Target Mode */
    330       1.33  mjacob #define	RQSTYPE_CTIO3		0x1f	/* Target Mode */
    331       1.33  mjacob #define	RQSTYPE_RIO1		0x21
    332       1.33  mjacob #define	RQSTYPE_RIO2		0x22
    333       1.33  mjacob #define	RQSTYPE_IP_RECV		0x23
    334       1.33  mjacob #define	RQSTYPE_IP_RECV_CONT	0x24
    335  1.49.30.1      ad #define	RQSTYPE_CT_PASSTHRU	0x29
    336  1.49.30.1      ad #define	RQSTYPE_MS_PASSTHRU	0x29
    337  1.49.30.1      ad #define	RQSTYPE_ABORT_IO	0x33
    338  1.49.30.1      ad #define	RQSTYPE_T6RQS		0x48
    339  1.49.30.1      ad #define	RQSTYPE_LOGIN		0x52
    340  1.49.30.1      ad #define	RQSTYPE_ABTS_RCVD	0x54	/* 24XX only */
    341  1.49.30.1      ad #define	RQSTYPE_ABTS_RSP	0x55	/* 24XX only */
    342        1.1     cgd 
    343        1.1     cgd 
    344        1.1     cgd #define	ISP_RQDSEG	4
    345        1.1     cgd typedef struct {
    346        1.1     cgd 	isphdr_t	req_header;
    347  1.49.30.1      ad 	uint32_t	req_handle;
    348  1.49.30.1      ad 	uint8_t		req_lun_trn;
    349  1.49.30.1      ad 	uint8_t		req_target;
    350  1.49.30.1      ad 	uint16_t	req_cdblen;
    351  1.49.30.1      ad 	uint16_t	req_flags;
    352  1.49.30.1      ad 	uint16_t	req_reserved;
    353  1.49.30.1      ad 	uint16_t	req_time;
    354  1.49.30.1      ad 	uint16_t	req_seg_count;
    355  1.49.30.1      ad 	uint8_t		req_cdb[12];
    356        1.1     cgd 	ispds_t		req_dataseg[ISP_RQDSEG];
    357        1.1     cgd } ispreq_t;
    358       1.44  mjacob #define	ISP_RQDSEG_A64	2
    359        1.1     cgd 
    360  1.49.30.1      ad typedef struct {
    361  1.49.30.1      ad 	isphdr_t	mrk_header;
    362  1.49.30.1      ad 	uint32_t	mrk_handle;
    363  1.49.30.1      ad 	uint8_t		mrk_reserved0;
    364  1.49.30.1      ad 	uint8_t		mrk_target;
    365  1.49.30.1      ad 	uint16_t	mrk_modifier;
    366  1.49.30.1      ad 	uint16_t	mrk_flags;
    367  1.49.30.1      ad 	uint16_t	mrk_lun;
    368  1.49.30.1      ad 	uint8_t		mrk_reserved1[48];
    369  1.49.30.1      ad } isp_marker_t;
    370  1.49.30.1      ad 
    371  1.49.30.1      ad typedef struct {
    372  1.49.30.1      ad 	isphdr_t	mrk_header;
    373  1.49.30.1      ad 	uint32_t	mrk_handle;
    374  1.49.30.1      ad 	uint16_t	mrk_nphdl;
    375  1.49.30.1      ad 	uint8_t		mrk_modifier;
    376  1.49.30.1      ad 	uint8_t		mrk_reserved0;
    377  1.49.30.1      ad 	uint8_t		mrk_reserved1;
    378  1.49.30.1      ad 	uint8_t		mrk_vphdl;
    379  1.49.30.1      ad 	uint16_t	mrk_reserved2;
    380  1.49.30.1      ad 	uint8_t		mrk_lun[8];
    381  1.49.30.1      ad 	uint8_t		mrk_reserved3[40];
    382  1.49.30.1      ad } isp_marker_24xx_t;
    383  1.49.30.1      ad 
    384  1.49.30.1      ad 
    385       1.16  mjacob #define SYNC_DEVICE	0
    386       1.16  mjacob #define SYNC_TARGET	1
    387       1.16  mjacob #define SYNC_ALL	2
    388  1.49.30.1      ad #define SYNC_LIP	3
    389       1.16  mjacob 
    390       1.34  mjacob #define	ISP_RQDSEG_T2		3
    391        1.3  mjacob typedef struct {
    392        1.3  mjacob 	isphdr_t	req_header;
    393  1.49.30.1      ad 	uint32_t	req_handle;
    394  1.49.30.1      ad 	uint8_t		req_lun_trn;
    395  1.49.30.1      ad 	uint8_t		req_target;
    396  1.49.30.1      ad 	uint16_t	req_scclun;
    397  1.49.30.1      ad 	uint16_t	req_flags;
    398  1.49.30.1      ad 	uint16_t	req_reserved;
    399  1.49.30.1      ad 	uint16_t	req_time;
    400  1.49.30.1      ad 	uint16_t	req_seg_count;
    401  1.49.30.1      ad 	uint8_t		req_cdb[16];
    402  1.49.30.1      ad 	uint32_t	req_totalcnt;
    403        1.3  mjacob 	ispds_t		req_dataseg[ISP_RQDSEG_T2];
    404        1.3  mjacob } ispreqt2_t;
    405        1.3  mjacob 
    406  1.49.30.1      ad typedef struct {
    407  1.49.30.1      ad 	isphdr_t	req_header;
    408  1.49.30.1      ad 	uint32_t	req_handle;
    409  1.49.30.1      ad 	uint16_t	req_target;
    410  1.49.30.1      ad 	uint16_t	req_scclun;
    411  1.49.30.1      ad 	uint16_t	req_flags;
    412  1.49.30.1      ad 	uint16_t	req_reserved;
    413  1.49.30.1      ad 	uint16_t	req_time;
    414  1.49.30.1      ad 	uint16_t	req_seg_count;
    415  1.49.30.1      ad 	uint8_t		req_cdb[16];
    416  1.49.30.1      ad 	uint32_t	req_totalcnt;
    417  1.49.30.1      ad 	ispds_t		req_dataseg[ISP_RQDSEG_T2];
    418  1.49.30.1      ad } ispreqt2e_t;
    419  1.49.30.1      ad 
    420       1.34  mjacob #define	ISP_RQDSEG_T3		2
    421       1.34  mjacob typedef struct {
    422       1.34  mjacob 	isphdr_t	req_header;
    423  1.49.30.1      ad 	uint32_t	req_handle;
    424  1.49.30.1      ad 	uint8_t		req_lun_trn;
    425  1.49.30.1      ad 	uint8_t		req_target;
    426  1.49.30.1      ad 	uint16_t	req_scclun;
    427  1.49.30.1      ad 	uint16_t	req_flags;
    428  1.49.30.1      ad 	uint16_t	req_reserved;
    429  1.49.30.1      ad 	uint16_t	req_time;
    430  1.49.30.1      ad 	uint16_t	req_seg_count;
    431  1.49.30.1      ad 	uint8_t		req_cdb[16];
    432  1.49.30.1      ad 	uint32_t	req_totalcnt;
    433       1.34  mjacob 	ispds64_t	req_dataseg[ISP_RQDSEG_T3];
    434       1.34  mjacob } ispreqt3_t;
    435  1.49.30.1      ad #define	ispreq64_t	ispreqt3_t	/* same as.... */
    436  1.49.30.1      ad 
    437  1.49.30.1      ad typedef struct {
    438  1.49.30.1      ad 	isphdr_t	req_header;
    439  1.49.30.1      ad 	uint32_t	req_handle;
    440  1.49.30.1      ad 	uint16_t	req_target;
    441  1.49.30.1      ad 	uint16_t	req_scclun;
    442  1.49.30.1      ad 	uint16_t	req_flags;
    443  1.49.30.1      ad 	uint16_t	req_reserved;
    444  1.49.30.1      ad 	uint16_t	req_time;
    445  1.49.30.1      ad 	uint16_t	req_seg_count;
    446  1.49.30.1      ad 	uint8_t		req_cdb[16];
    447  1.49.30.1      ad 	uint32_t	req_totalcnt;
    448  1.49.30.1      ad 	ispds64_t	req_dataseg[ISP_RQDSEG_T3];
    449  1.49.30.1      ad } ispreqt3e_t;
    450       1.34  mjacob 
    451        1.1     cgd /* req_flag values */
    452        1.1     cgd #define	REQFLAG_NODISCON	0x0001
    453        1.1     cgd #define	REQFLAG_HTAG		0x0002
    454        1.1     cgd #define	REQFLAG_OTAG		0x0004
    455        1.1     cgd #define	REQFLAG_STAG		0x0008
    456        1.1     cgd #define	REQFLAG_TARGET_RTN	0x0010
    457        1.1     cgd 
    458        1.1     cgd #define	REQFLAG_NODATA		0x0000
    459        1.1     cgd #define	REQFLAG_DATA_IN		0x0020
    460        1.1     cgd #define	REQFLAG_DATA_OUT	0x0040
    461        1.1     cgd #define	REQFLAG_DATA_UNKNOWN	0x0060
    462        1.1     cgd 
    463        1.1     cgd #define	REQFLAG_DISARQ		0x0100
    464        1.8  mjacob #define	REQFLAG_FRC_ASYNC	0x0200
    465        1.8  mjacob #define	REQFLAG_FRC_SYNC	0x0400
    466        1.8  mjacob #define	REQFLAG_FRC_WIDE	0x0800
    467        1.8  mjacob #define	REQFLAG_NOPARITY	0x1000
    468        1.8  mjacob #define	REQFLAG_STOPQ		0x2000
    469        1.8  mjacob #define	REQFLAG_XTRASNS		0x4000
    470        1.8  mjacob #define	REQFLAG_PRIORITY	0x8000
    471        1.1     cgd 
    472        1.1     cgd typedef struct {
    473        1.1     cgd 	isphdr_t	req_header;
    474  1.49.30.1      ad 	uint32_t	req_handle;
    475  1.49.30.1      ad 	uint8_t		req_lun_trn;
    476  1.49.30.1      ad 	uint8_t		req_target;
    477  1.49.30.1      ad 	uint16_t	req_cdblen;
    478  1.49.30.1      ad 	uint16_t	req_flags;
    479  1.49.30.1      ad 	uint16_t	req_reserved;
    480  1.49.30.1      ad 	uint16_t	req_time;
    481  1.49.30.1      ad 	uint16_t	req_seg_count;
    482  1.49.30.1      ad 	uint8_t		req_cdb[44];
    483        1.1     cgd } ispextreq_t;
    484        1.1     cgd 
    485  1.49.30.1      ad /* 24XX only */
    486  1.49.30.1      ad typedef struct {
    487  1.49.30.1      ad 	uint16_t	fcd_length;
    488  1.49.30.1      ad 	uint16_t	fcd_a1500;
    489  1.49.30.1      ad 	uint16_t	fcd_a3116;
    490  1.49.30.1      ad 	uint16_t	fcd_a4732;
    491  1.49.30.1      ad 	uint16_t	fcd_a6348;
    492  1.49.30.1      ad } fcp_cmnd_ds_t;
    493  1.49.30.1      ad 
    494  1.49.30.1      ad typedef struct {
    495  1.49.30.1      ad 	isphdr_t	req_header;
    496  1.49.30.1      ad 	uint32_t	req_handle;
    497  1.49.30.1      ad 	uint16_t	req_nphdl;
    498  1.49.30.1      ad 	uint16_t	req_time;
    499  1.49.30.1      ad 	uint16_t	req_seg_count;
    500  1.49.30.1      ad 	uint16_t	req_fc_rsp_dsd_length;
    501  1.49.30.1      ad 	uint8_t		req_lun[8];
    502  1.49.30.1      ad 	uint16_t	req_flags;
    503  1.49.30.1      ad 	uint16_t	req_fc_cmnd_dsd_length;
    504  1.49.30.1      ad 	uint16_t	req_fc_cmnd_dsd_a1500;
    505  1.49.30.1      ad 	uint16_t	req_fc_cmnd_dsd_a3116;
    506  1.49.30.1      ad 	uint16_t	req_fc_cmnd_dsd_a4732;
    507  1.49.30.1      ad 	uint16_t	req_fc_cmnd_dsd_a6348;
    508  1.49.30.1      ad 	uint16_t	req_fc_rsp_dsd_a1500;
    509  1.49.30.1      ad 	uint16_t	req_fc_rsp_dsd_a3116;
    510  1.49.30.1      ad 	uint16_t	req_fc_rsp_dsd_a4732;
    511  1.49.30.1      ad 	uint16_t	req_fc_rsp_dsd_a6348;
    512  1.49.30.1      ad 	uint32_t	req_totalcnt;
    513  1.49.30.1      ad 	uint16_t	req_tidlo;
    514  1.49.30.1      ad 	uint8_t		req_tidhi;
    515  1.49.30.1      ad 	uint8_t		req_vpidx;
    516  1.49.30.1      ad 	ispds64_t	req_dataseg;
    517  1.49.30.1      ad } ispreqt6_t;
    518  1.49.30.1      ad 
    519  1.49.30.1      ad typedef struct {
    520  1.49.30.1      ad 	isphdr_t	req_header;
    521  1.49.30.1      ad 	uint32_t	req_handle;
    522  1.49.30.1      ad 	uint16_t	req_nphdl;
    523  1.49.30.1      ad 	uint16_t	req_time;
    524  1.49.30.1      ad 	uint16_t	req_seg_count;
    525  1.49.30.1      ad 	uint16_t	req_reserved;
    526  1.49.30.1      ad 	uint8_t		req_lun[8];
    527  1.49.30.1      ad 	uint8_t		req_alen_datadir;
    528  1.49.30.1      ad 	uint8_t		req_task_management;
    529  1.49.30.1      ad 	uint8_t		req_task_attribute;
    530  1.49.30.1      ad 	uint8_t		req_crn;
    531  1.49.30.1      ad 	uint8_t		req_cdb[16];
    532  1.49.30.1      ad 	uint32_t	req_dl;
    533  1.49.30.1      ad 	uint16_t	req_tidlo;
    534  1.49.30.1      ad 	uint8_t		req_tidhi;
    535  1.49.30.1      ad 	uint8_t		req_vpidx;
    536  1.49.30.1      ad 	ispds64_t	req_dataseg;
    537  1.49.30.1      ad } ispreqt7_t;
    538  1.49.30.1      ad 
    539  1.49.30.1      ad /* I/O Abort Structure */
    540  1.49.30.1      ad typedef struct {
    541  1.49.30.1      ad 	isphdr_t	abrt_header;
    542  1.49.30.1      ad 	uint32_t	abrt_handle;
    543  1.49.30.1      ad 	uint16_t	abrt_nphdl;
    544  1.49.30.1      ad 	uint16_t	abrt_options;
    545  1.49.30.1      ad 	uint32_t	abrt_cmd_handle;
    546  1.49.30.1      ad 	uint8_t		abrt_reserved[32];
    547  1.49.30.1      ad 	uint16_t	abrt_tidlo;
    548  1.49.30.1      ad 	uint8_t		abrt_tidhi;
    549  1.49.30.1      ad 	uint8_t		abrt_vpidx;
    550  1.49.30.1      ad 	uint8_t		abrt_reserved1[12];
    551  1.49.30.1      ad } isp24xx_abrt_t;
    552  1.49.30.1      ad #define	ISP24XX_ABRT_NO_ABTS	0x01	/* don't actually send an ABTS */
    553  1.49.30.1      ad #define	ISP24XX_ABRT_ENXIO	0x31	/* in nphdl on return */
    554  1.49.30.1      ad 
    555        1.1     cgd #define	ISP_CDSEG	7
    556        1.1     cgd typedef struct {
    557        1.1     cgd 	isphdr_t	req_header;
    558  1.49.30.1      ad 	uint32_t	req_reserved;
    559        1.1     cgd 	ispds_t		req_dataseg[ISP_CDSEG];
    560        1.1     cgd } ispcontreq_t;
    561        1.1     cgd 
    562       1.34  mjacob #define	ISP_CDSEG64	5
    563       1.34  mjacob typedef struct {
    564       1.34  mjacob 	isphdr_t	req_header;
    565       1.34  mjacob 	ispds64_t	req_dataseg[ISP_CDSEG64];
    566       1.34  mjacob } ispcontreq64_t;
    567       1.34  mjacob 
    568        1.1     cgd typedef struct {
    569        1.1     cgd 	isphdr_t	req_header;
    570  1.49.30.1      ad 	uint32_t	req_handle;
    571  1.49.30.1      ad 	uint16_t	req_scsi_status;
    572  1.49.30.1      ad 	uint16_t	req_completion_status;
    573  1.49.30.1      ad 	uint16_t	req_state_flags;
    574  1.49.30.1      ad 	uint16_t	req_status_flags;
    575  1.49.30.1      ad 	uint16_t	req_time;
    576       1.20  mjacob #define	req_response_len	req_time	/* FC only */
    577  1.49.30.1      ad 	uint16_t	req_sense_len;
    578  1.49.30.1      ad 	uint32_t	req_resid;
    579  1.49.30.1      ad 	uint8_t		req_response[8];	/* FC only */
    580  1.49.30.1      ad 	uint8_t		req_sense_data[32];
    581        1.1     cgd } ispstatusreq_t;
    582       1.36  mjacob 
    583  1.49.30.1      ad /*
    584  1.49.30.1      ad  * Status Continuation
    585  1.49.30.1      ad  */
    586       1.36  mjacob typedef struct {
    587       1.36  mjacob 	isphdr_t	req_header;
    588  1.49.30.1      ad 	uint8_t		req_sense_data[60];
    589       1.36  mjacob } ispstatus_cont_t;
    590        1.1     cgd 
    591       1.48   perry /*
    592  1.49.30.1      ad  * 24XX Type 0 status
    593  1.49.30.1      ad  */
    594  1.49.30.1      ad typedef struct {
    595  1.49.30.1      ad 	isphdr_t	req_header;
    596  1.49.30.1      ad 	uint32_t	req_handle;
    597  1.49.30.1      ad 	uint16_t	req_completion_status;
    598  1.49.30.1      ad 	uint16_t	req_oxid;
    599  1.49.30.1      ad 	uint32_t	req_resid;
    600  1.49.30.1      ad 	uint16_t	req_reserved0;
    601  1.49.30.1      ad 	uint16_t	req_state_flags;
    602  1.49.30.1      ad 	uint16_t	req_reserved1;
    603  1.49.30.1      ad 	uint16_t	req_scsi_status;
    604  1.49.30.1      ad 	uint32_t	req_fcp_residual;
    605  1.49.30.1      ad 	uint32_t	req_sense_len;
    606  1.49.30.1      ad 	uint32_t	req_response_len;
    607  1.49.30.1      ad 	uint8_t		req_rsp_sense[28];
    608  1.49.30.1      ad } isp24xx_statusreq_t;
    609  1.49.30.1      ad 
    610  1.49.30.1      ad /*
    611       1.29  mjacob  * For Qlogic 2X00, the high order byte of SCSI status has
    612        1.3  mjacob  * additional meaning.
    613        1.3  mjacob  */
    614        1.3  mjacob #define	RQCS_RU	0x800	/* Residual Under */
    615        1.3  mjacob #define	RQCS_RO	0x400	/* Residual Over */
    616       1.27  mjacob #define	RQCS_RESID	(RQCS_RU|RQCS_RO)
    617        1.3  mjacob #define	RQCS_SV	0x200	/* Sense Length Valid */
    618       1.27  mjacob #define	RQCS_RV	0x100	/* FCP Response Length Valid */
    619        1.3  mjacob 
    620       1.48   perry /*
    621  1.49.30.1      ad  * CT Passthru IOCB
    622  1.49.30.1      ad  */
    623  1.49.30.1      ad typedef struct {
    624  1.49.30.1      ad 	isphdr_t	ctp_header;
    625  1.49.30.1      ad 	uint32_t	ctp_handle;
    626  1.49.30.1      ad 	uint16_t	ctp_status;
    627  1.49.30.1      ad 	uint16_t	ctp_nphdl;	/* n-port handle */
    628  1.49.30.1      ad 	uint16_t	ctp_cmd_cnt;	/* Command DSD count */
    629  1.49.30.1      ad 	uint16_t	ctp_vpidx;	/* low 8 bits */
    630  1.49.30.1      ad 	uint16_t	ctp_time;
    631  1.49.30.1      ad 	uint16_t	ctp_reserved0;
    632  1.49.30.1      ad 	uint16_t	ctp_rsp_cnt;	/* Response DSD count */
    633  1.49.30.1      ad 	uint16_t	ctp_reserved1[5];
    634  1.49.30.1      ad 	uint32_t	ctp_rsp_bcnt;	/* Response byte count */
    635  1.49.30.1      ad 	uint32_t	ctp_cmd_bcnt;	/* Command byte count */
    636  1.49.30.1      ad 	ispds64_t	ctp_dataseg[2];
    637  1.49.30.1      ad } isp_ct_pt_t;
    638  1.49.30.1      ad 
    639  1.49.30.1      ad /*
    640  1.49.30.1      ad  * MS Passthru IOCB
    641  1.49.30.1      ad  */
    642  1.49.30.1      ad typedef struct {
    643  1.49.30.1      ad 	isphdr_t	ms_header;
    644  1.49.30.1      ad 	uint32_t	ms_handle;
    645  1.49.30.1      ad 	uint16_t	ms_nphdl;	/* handle in high byte for !2k f/w */
    646  1.49.30.1      ad 	uint16_t	ms_status;
    647  1.49.30.1      ad 	uint16_t	ms_flags;
    648  1.49.30.1      ad 	uint16_t	ms_reserved1;	/* low 8 bits */
    649  1.49.30.1      ad 	uint16_t	ms_time;
    650  1.49.30.1      ad 	uint16_t	ms_cmd_cnt;	/* Command DSD count */
    651  1.49.30.1      ad 	uint16_t	ms_tot_cnt;	/* Total DSD Count */
    652  1.49.30.1      ad 	uint8_t		ms_type;	/* MS type */
    653  1.49.30.1      ad 	uint8_t		ms_r_ctl;	/* R_CTL */
    654  1.49.30.1      ad 	uint16_t	ms_rxid;	/* RX_ID */
    655  1.49.30.1      ad 	uint16_t	ms_reserved2;
    656  1.49.30.1      ad 	uint32_t	ms_handle2;
    657  1.49.30.1      ad 	uint32_t	ms_rsp_bcnt;	/* Response byte count */
    658  1.49.30.1      ad 	uint32_t	ms_cmd_bcnt;	/* Command byte count */
    659  1.49.30.1      ad 	ispds64_t	ms_dataseg[2];
    660  1.49.30.1      ad } isp_ms_t;
    661  1.49.30.1      ad 
    662  1.49.30.1      ad /*
    663        1.3  mjacob  * Completion Status Codes.
    664        1.3  mjacob  */
    665        1.1     cgd #define RQCS_COMPLETE			0x0000
    666        1.1     cgd #define RQCS_DMA_ERROR			0x0002
    667        1.1     cgd #define RQCS_RESET_OCCURRED		0x0004
    668        1.1     cgd #define RQCS_ABORTED			0x0005
    669        1.1     cgd #define RQCS_TIMEOUT			0x0006
    670        1.1     cgd #define RQCS_DATA_OVERRUN		0x0007
    671       1.27  mjacob #define RQCS_DATA_UNDERRUN		0x0015
    672       1.27  mjacob #define	RQCS_QUEUE_FULL			0x001C
    673       1.27  mjacob 
    674       1.27  mjacob /* 1X00 Only Completion Codes */
    675       1.27  mjacob #define RQCS_INCOMPLETE			0x0001
    676       1.27  mjacob #define RQCS_TRANSPORT_ERROR		0x0003
    677        1.1     cgd #define RQCS_COMMAND_OVERRUN		0x0008
    678        1.1     cgd #define RQCS_STATUS_OVERRUN		0x0009
    679        1.1     cgd #define RQCS_BAD_MESSAGE		0x000a
    680        1.1     cgd #define RQCS_NO_MESSAGE_OUT		0x000b
    681        1.1     cgd #define RQCS_EXT_ID_FAILED		0x000c
    682        1.1     cgd #define RQCS_IDE_MSG_FAILED		0x000d
    683        1.1     cgd #define RQCS_ABORT_MSG_FAILED		0x000e
    684        1.1     cgd #define RQCS_REJECT_MSG_FAILED		0x000f
    685        1.1     cgd #define RQCS_NOP_MSG_FAILED		0x0010
    686        1.1     cgd #define RQCS_PARITY_ERROR_MSG_FAILED	0x0011
    687        1.1     cgd #define RQCS_DEVICE_RESET_MSG_FAILED	0x0012
    688        1.1     cgd #define RQCS_ID_MSG_FAILED		0x0013
    689        1.1     cgd #define RQCS_UNEXP_BUS_FREE		0x0014
    690        1.8  mjacob #define	RQCS_XACT_ERR1			0x0018
    691        1.8  mjacob #define	RQCS_XACT_ERR2			0x0019
    692        1.8  mjacob #define	RQCS_XACT_ERR3			0x001A
    693        1.8  mjacob #define	RQCS_BAD_ENTRY			0x001B
    694        1.8  mjacob #define	RQCS_PHASE_SKIPPED		0x001D
    695        1.8  mjacob #define	RQCS_ARQS_FAILED		0x001E
    696        1.8  mjacob #define	RQCS_WIDE_FAILED		0x001F
    697        1.8  mjacob #define	RQCS_SYNCXFER_FAILED		0x0020
    698        1.8  mjacob #define	RQCS_LVD_BUSERR			0x0021
    699        1.8  mjacob 
    700       1.27  mjacob /* 2X00 Only Completion Codes */
    701        1.3  mjacob #define	RQCS_PORT_UNAVAILABLE		0x0028
    702        1.3  mjacob #define	RQCS_PORT_LOGGED_OUT		0x0029
    703        1.3  mjacob #define	RQCS_PORT_CHANGED		0x002A
    704        1.3  mjacob #define	RQCS_PORT_BUSY			0x002B
    705        1.1     cgd 
    706  1.49.30.1      ad /* 24XX Only Completion Codes */
    707  1.49.30.1      ad #define	RQCS_24XX_DRE			0x0011	/* data reassembly error */
    708  1.49.30.1      ad #define	RQCS_24XX_TABORT		0x0013	/* aborted by target */
    709  1.49.30.1      ad #define	RQCS_24XX_ENOMEM		0x002C	/* f/w resource unavailable */
    710  1.49.30.1      ad #define	RQCS_24XX_TMO			0x0030	/* task management overrun */
    711  1.49.30.1      ad 
    712  1.49.30.1      ad 
    713        1.3  mjacob /*
    714  1.49.30.1      ad  * 1X00 specific State Flags
    715        1.3  mjacob  */
    716        1.1     cgd #define RQSF_GOT_BUS			0x0100
    717        1.1     cgd #define RQSF_GOT_TARGET			0x0200
    718        1.1     cgd #define RQSF_SENT_CDB			0x0400
    719        1.5  mjacob #define RQSF_XFRD_DATA			0x0800
    720        1.1     cgd #define RQSF_GOT_STATUS			0x1000
    721        1.1     cgd #define RQSF_GOT_SENSE			0x2000
    722        1.5  mjacob #define	RQSF_XFER_COMPLETE		0x4000
    723        1.1     cgd 
    724        1.3  mjacob /*
    725       1.29  mjacob  * 2X00 specific State Flags
    726       1.29  mjacob  * (same as 1X00 except RQSF_GOT_BUS/RQSF_GOT_TARGET are not available)
    727       1.29  mjacob  */
    728       1.29  mjacob #define	RQSF_DATA_IN			0x0020
    729       1.29  mjacob #define	RQSF_DATA_OUT			0x0040
    730       1.29  mjacob #define	RQSF_STAG			0x0008
    731       1.29  mjacob #define	RQSF_OTAG			0x0004
    732       1.29  mjacob #define	RQSF_HTAG			0x0002
    733       1.29  mjacob /*
    734       1.27  mjacob  * 1X00 Status Flags
    735        1.3  mjacob  */
    736        1.1     cgd #define RQSTF_DISCONNECT		0x0001
    737        1.1     cgd #define RQSTF_SYNCHRONOUS		0x0002
    738        1.1     cgd #define RQSTF_PARITY_ERROR		0x0004
    739        1.1     cgd #define RQSTF_BUS_RESET			0x0008
    740        1.1     cgd #define RQSTF_DEVICE_RESET		0x0010
    741        1.1     cgd #define RQSTF_ABORTED			0x0020
    742        1.1     cgd #define RQSTF_TIMEOUT			0x0040
    743        1.1     cgd #define RQSTF_NEGOTIATION		0x0080
    744       1.27  mjacob 
    745       1.27  mjacob /*
    746       1.27  mjacob  * 2X00 specific state flags
    747       1.27  mjacob  */
    748       1.27  mjacob /* RQSF_SENT_CDB	*/
    749       1.27  mjacob /* RQSF_XFRD_DATA	*/
    750       1.27  mjacob /* RQSF_GOT_STATUS	*/
    751       1.27  mjacob /* RQSF_XFER_COMPLETE	*/
    752       1.27  mjacob 
    753       1.27  mjacob /*
    754       1.27  mjacob  * 2X00 specific status flags
    755       1.27  mjacob  */
    756       1.27  mjacob /* RQSTF_ABORTED */
    757       1.27  mjacob /* RQSTF_TIMEOUT */
    758       1.27  mjacob #define	RQSTF_DMA_ERROR			0x0080
    759       1.27  mjacob #define	RQSTF_LOGOUT			0x2000
    760       1.27  mjacob 
    761       1.27  mjacob /*
    762       1.27  mjacob  * Miscellaneous
    763       1.27  mjacob  */
    764       1.27  mjacob #ifndef	ISP_EXEC_THROTTLE
    765       1.27  mjacob #define	ISP_EXEC_THROTTLE	16
    766       1.27  mjacob #endif
    767       1.32  mjacob 
    768       1.32  mjacob /*
    769       1.32  mjacob  * About Firmware returns an 'attribute' word in mailbox 6.
    770  1.49.30.1      ad  * These attributes are for 2200 and 2300.
    771       1.32  mjacob  */
    772       1.32  mjacob #define	ISP_FW_ATTR_TMODE	0x01
    773       1.32  mjacob #define	ISP_FW_ATTR_SCCLUN	0x02
    774       1.32  mjacob #define	ISP_FW_ATTR_FABRIC	0x04
    775       1.32  mjacob #define	ISP_FW_ATTR_CLASS2	0x08
    776       1.32  mjacob #define	ISP_FW_ATTR_FCTAPE	0x10
    777       1.32  mjacob #define	ISP_FW_ATTR_IP		0x20
    778  1.49.30.1      ad #define	ISP_FW_ATTR_VI		0x40
    779  1.49.30.1      ad #define	ISP_FW_ATTR_VI_SOLARIS	0x80
    780  1.49.30.1      ad #define	ISP_FW_ATTR_2KLOGINS	0x100	/* XXX: just a guess */
    781  1.49.30.1      ad 
    782  1.49.30.1      ad /* and these are for the 2400 */
    783  1.49.30.1      ad #define	ISP2400_FW_ATTR_CLASS2	(1 << 0)
    784  1.49.30.1      ad #define	ISP2400_FW_ATTR_IP	(1 << 1)
    785  1.49.30.1      ad #define	ISP2400_FW_ATTR_MULTIID	(1 << 2)
    786  1.49.30.1      ad #define	ISP2400_FW_ATTR_SB2	(1 << 3)
    787  1.49.30.1      ad #define	ISP2400_FW_ATTR_T10CRC	(1 << 4)
    788  1.49.30.1      ad #define	ISP2400_FW_ATTR_VI	(1 << 5)
    789  1.49.30.1      ad #define	ISP2400_FW_ATTR_EXPFW	(1 << 13)
    790       1.33  mjacob 
    791       1.33  mjacob /*
    792       1.33  mjacob  * Reduced Interrupt Operation Response Queue Entreis
    793       1.33  mjacob  */
    794       1.33  mjacob 
    795       1.33  mjacob typedef struct {
    796       1.33  mjacob 	isphdr_t	req_header;
    797  1.49.30.1      ad 	uint32_t	req_handles[15];
    798       1.33  mjacob } isp_rio1_t;
    799       1.33  mjacob 
    800       1.33  mjacob typedef struct {
    801       1.33  mjacob 	isphdr_t	req_header;
    802  1.49.30.1      ad 	uint16_t	req_handles[30];
    803       1.33  mjacob } isp_rio2_t;
    804        1.3  mjacob 
    805        1.3  mjacob /*
    806  1.49.30.1      ad  * FC (ISP2100/ISP2200/ISP2300/ISP2400) specific data structures
    807        1.3  mjacob  */
    808        1.3  mjacob 
    809        1.3  mjacob /*
    810        1.3  mjacob  * Initialization Control Block
    811        1.8  mjacob  *
    812       1.19  mjacob  * Version One (prime) format.
    813        1.3  mjacob  */
    814  1.49.30.1      ad typedef struct {
    815  1.49.30.1      ad 	uint8_t		icb_version;
    816  1.49.30.1      ad 	uint8_t		icb_reserved0;
    817  1.49.30.1      ad 	uint16_t	icb_fwoptions;
    818  1.49.30.1      ad 	uint16_t	icb_maxfrmlen;
    819  1.49.30.1      ad 	uint16_t	icb_maxalloc;
    820  1.49.30.1      ad 	uint16_t	icb_execthrottle;
    821  1.49.30.1      ad 	uint8_t		icb_retry_count;
    822  1.49.30.1      ad 	uint8_t		icb_retry_delay;
    823  1.49.30.1      ad 	uint8_t		icb_portname[8];
    824  1.49.30.1      ad 	uint16_t	icb_hardaddr;
    825  1.49.30.1      ad 	uint8_t		icb_iqdevtype;
    826  1.49.30.1      ad 	uint8_t		icb_logintime;
    827  1.49.30.1      ad 	uint8_t		icb_nodename[8];
    828  1.49.30.1      ad 	uint16_t	icb_rqstout;
    829  1.49.30.1      ad 	uint16_t	icb_rspnsin;
    830  1.49.30.1      ad 	uint16_t	icb_rqstqlen;
    831  1.49.30.1      ad 	uint16_t	icb_rsltqlen;
    832  1.49.30.1      ad 	uint16_t	icb_rqstaddr[4];
    833  1.49.30.1      ad 	uint16_t	icb_respaddr[4];
    834  1.49.30.1      ad 	uint16_t	icb_lunenables;
    835  1.49.30.1      ad 	uint8_t		icb_ccnt;
    836  1.49.30.1      ad 	uint8_t		icb_icnt;
    837  1.49.30.1      ad 	uint16_t	icb_lunetimeout;
    838  1.49.30.1      ad 	uint16_t	icb_reserved1;
    839  1.49.30.1      ad 	uint16_t	icb_xfwoptions;
    840  1.49.30.1      ad 	uint8_t		icb_racctimer;
    841  1.49.30.1      ad 	uint8_t		icb_idelaytimer;
    842  1.49.30.1      ad 	uint16_t	icb_zfwoptions;
    843  1.49.30.1      ad 	uint16_t	icb_reserved2[13];
    844        1.3  mjacob } isp_icb_t;
    845  1.49.30.1      ad 
    846        1.8  mjacob #define	ICB_VERSION1	1
    847        1.8  mjacob 
    848       1.19  mjacob #define	ICBOPT_EXTENDED		0x8000
    849  1.49.30.1      ad #define	ICBOPT_BOTH_WWNS	0x4000
    850  1.49.30.1      ad #define	ICBOPT_FULL_LOGIN	0x2000
    851  1.49.30.1      ad #define	ICBOPT_STOP_ON_QFULL	0x1000	/* 2200/2100 only */
    852  1.49.30.1      ad #define	ICBOPT_PREVLOOP		0x0800
    853  1.49.30.1      ad #define	ICBOPT_SRCHDOWN		0x0400
    854  1.49.30.1      ad #define	ICBOPT_NOLIP		0x0200
    855  1.49.30.1      ad #define	ICBOPT_PDBCHANGE_AE	0x0100
    856  1.49.30.1      ad #define	ICBOPT_INI_TGTTYPE	0x0080
    857  1.49.30.1      ad #define	ICBOPT_INI_ADISC	0x0040
    858  1.49.30.1      ad #define	ICBOPT_INI_DISABLE	0x0020
    859  1.49.30.1      ad #define	ICBOPT_TGT_ENABLE	0x0010
    860  1.49.30.1      ad #define	ICBOPT_FAST_POST	0x0008
    861  1.49.30.1      ad #define	ICBOPT_FULL_DUPLEX	0x0004
    862  1.49.30.1      ad #define	ICBOPT_FAIRNESS		0x0002
    863  1.49.30.1      ad #define	ICBOPT_HARD_ADDRESS	0x0001
    864       1.21  mjacob 
    865  1.49.30.1      ad #define	ICBXOPT_NO_LOGOUT	0x8000	/* no logout on link failure */
    866  1.49.30.1      ad #define	ICBXOPT_FCTAPE_CCQ	0x4000	/* FC-Tape Command Queueing */
    867  1.49.30.1      ad #define	ICBXOPT_FCTAPE_CONFIRM	0x2000
    868  1.49.30.1      ad #define	ICBXOPT_FCTAPE		0x1000
    869       1.21  mjacob #define	ICBXOPT_CLASS2_ACK0	0x0200
    870       1.21  mjacob #define	ICBXOPT_CLASS2		0x0100
    871  1.49.30.1      ad #define	ICBXOPT_NO_PLAY		0x0080	/* don't play if can't get hard addr */
    872  1.49.30.1      ad #define	ICBXOPT_TOPO_MASK	0x0070
    873  1.49.30.1      ad #define	ICBXOPT_LOOP_ONLY	0x0000
    874  1.49.30.1      ad #define	ICBXOPT_PTP_ONLY	0x0010
    875  1.49.30.1      ad #define	ICBXOPT_LOOP_2_PTP	0x0020
    876  1.49.30.1      ad #define	ICBXOPT_PTP_2_LOOP	0x0030
    877       1.46  mjacob /*
    878       1.46  mjacob  * The lower 4 bits of the xfwoptions field are the OPERATION MODE bits.
    879  1.49.30.1      ad  * RIO is not defined for the 23XX cards (just 2200)
    880       1.46  mjacob  */
    881       1.21  mjacob #define	ICBXOPT_RIO_OFF		0
    882       1.21  mjacob #define	ICBXOPT_RIO_16BIT	1
    883       1.21  mjacob #define	ICBXOPT_RIO_32BIT	2
    884       1.37  mjacob #define	ICBXOPT_RIO_16BIT_IOCB	3
    885       1.37  mjacob #define	ICBXOPT_RIO_32BIT_IOCB	4
    886  1.49.30.1      ad #define	ICBXOPT_ZIO		5
    887  1.49.30.1      ad #define	ICBXOPT_TIMER_MASK	0x7
    888        1.8  mjacob 
    889  1.49.30.1      ad #define	ICBZOPT_RATE_MASK	0xC000
    890  1.49.30.1      ad #define	ICBZOPT_RATE_ONEGB	0x0000
    891  1.49.30.1      ad #define	ICBZOPT_RATE_AUTO	0x8000
    892  1.49.30.1      ad #define	ICBZOPT_RATE_TWOGB	0x4000
    893  1.49.30.1      ad #define	ICBZOPT_50_OHM		0x2000
    894  1.49.30.1      ad #define	ICBZOPT_ENA_OOF		0x0040	/* out of order frame handling */
    895  1.49.30.1      ad #define	ICBZOPT_RSPSZ_MASK	0x0030
    896  1.49.30.1      ad #define	ICBZOPT_RSPSZ_24	0x0000
    897  1.49.30.1      ad #define	ICBZOPT_RSPSZ_12	0x0010
    898  1.49.30.1      ad #define	ICBZOPT_RSPSZ_24A	0x0020
    899  1.49.30.1      ad #define	ICBZOPT_RSPSZ_32	0x0030
    900  1.49.30.1      ad #define	ICBZOPT_SOFTID		0x0002
    901  1.49.30.1      ad #define	ICBZOPT_ENA_RDXFR_RDY	0x0001
    902  1.49.30.1      ad 
    903  1.49.30.1      ad /* 2400 F/W options */
    904  1.49.30.1      ad #define	ICB2400_OPT1_BOTH_WWNS		0x00004000
    905  1.49.30.1      ad #define	ICB2400_OPT1_FULL_LOGIN		0x00002000
    906  1.49.30.1      ad #define	ICB2400_OPT1_PREVLOOP		0x00000800
    907  1.49.30.1      ad #define	ICB2400_OPT1_SRCHDOWN		0x00000400
    908  1.49.30.1      ad #define	ICB2400_OPT1_NOLIP		0x00000200
    909  1.49.30.1      ad #define	ICB2400_OPT1_INI_DISABLE	0x00000020
    910  1.49.30.1      ad #define	ICB2400_OPT1_TGT_ENABLE		0x00000010
    911  1.49.30.1      ad #define	ICB2400_OPT1_FULL_DUPLEX	0x00000004
    912  1.49.30.1      ad #define	ICB2400_OPT1_FAIRNESS		0x00000002
    913  1.49.30.1      ad #define	ICB2400_OPT1_HARD_ADDRESS	0x00000001
    914  1.49.30.1      ad 
    915  1.49.30.1      ad #define	ICB2400_OPT2_FCTAPE		0x00001000
    916  1.49.30.1      ad #define	ICB2400_OPT2_CLASS2_ACK0	0x00000200
    917  1.49.30.1      ad #define	ICB2400_OPT2_CLASS2		0x00000100
    918  1.49.30.1      ad #define	ICB2400_OPT2_NO_PLAY		0x00000080
    919  1.49.30.1      ad #define	ICB2400_OPT2_TOPO_MASK		0x00000070
    920  1.49.30.1      ad #define	ICB2400_OPT2_LOOP_ONLY		0x00000000
    921  1.49.30.1      ad #define	ICB2400_OPT2_PTP_ONLY		0x00000010
    922  1.49.30.1      ad #define	ICB2400_OPT2_LOOP_2_PTP		0x00000020
    923  1.49.30.1      ad #define	ICB2400_OPT2_PTP_2_LOOP		0x00000030
    924  1.49.30.1      ad #define	ICB2400_OPT2_TIMER_MASK		0x00000007
    925  1.49.30.1      ad #define	ICB2400_OPT2_ZIO		0x00000005
    926  1.49.30.1      ad #define	ICB2400_OPT2_ZIO1		0x00000006
    927  1.49.30.1      ad 
    928  1.49.30.1      ad #define	ICB2400_OPT3_75_OHM		0x00010000
    929  1.49.30.1      ad #define	ICB2400_OPT3_RATE_MASK		0x0000E000
    930  1.49.30.1      ad #define	ICB2400_OPT3_RATE_ONEGB		0x00000000
    931  1.49.30.1      ad #define	ICB2400_OPT3_RATE_TWOGB		0x00002000
    932  1.49.30.1      ad #define ICB2400_OPT3_RATE_AUTO		0x00004000
    933  1.49.30.1      ad #define	ICB2400_OPT3_RATE_FOURGB	0x00006000
    934  1.49.30.1      ad #define	ICB2400_OPT3_ENA_OOF_XFRDY	0x00000200
    935  1.49.30.1      ad #define	ICB2400_OPT3_NO_LOCAL_PLOGI	0x00000080
    936  1.49.30.1      ad #define	ICB2400_OPT3_ENA_OOF		0x00000040
    937  1.49.30.1      ad /* note that a response size flag of zero is reserved! */
    938  1.49.30.1      ad #define	ICB2400_OPT3_RSPSZ_MASK		0x00000030
    939  1.49.30.1      ad #define	ICB2400_OPT3_RSPSZ_12		0x00000010
    940  1.49.30.1      ad #define	ICB2400_OPT3_RSPSZ_24		0x00000020
    941  1.49.30.1      ad #define	ICB2400_OPT3_RSPSZ_32		0x00000030
    942  1.49.30.1      ad #define	ICB2400_OPT3_SOFTID		0x00000002
    943        1.8  mjacob 
    944        1.8  mjacob #define	ICB_MIN_FRMLEN		256
    945        1.8  mjacob #define	ICB_MAX_FRMLEN		2112
    946        1.8  mjacob #define	ICB_DFLT_FRMLEN		1024
    947       1.18  mjacob #define	ICB_DFLT_ALLOC		256
    948       1.18  mjacob #define	ICB_DFLT_THROTTLE	16
    949       1.18  mjacob #define	ICB_DFLT_RDELAY		5
    950       1.18  mjacob #define	ICB_DFLT_RCOUNT		3
    951       1.18  mjacob 
    952  1.49.30.1      ad #define	ICB_LOGIN_TOV		30
    953  1.49.30.1      ad #define	ICB_LUN_ENABLE_TOV	180
    954  1.49.30.1      ad 
    955  1.49.30.1      ad 
    956  1.49.30.1      ad /*
    957  1.49.30.1      ad  * And somebody at QLogic had a great idea that you could just change
    958  1.49.30.1      ad  * the structure *and* keep the version number the same as the other cards.
    959  1.49.30.1      ad  */
    960  1.49.30.1      ad typedef struct {
    961  1.49.30.1      ad 	uint16_t	icb_version;
    962  1.49.30.1      ad 	uint16_t	icb_reserved0;
    963  1.49.30.1      ad 	uint16_t	icb_maxfrmlen;
    964  1.49.30.1      ad 	uint16_t	icb_execthrottle;
    965  1.49.30.1      ad 	uint16_t	icb_xchgcnt;
    966  1.49.30.1      ad 	uint16_t	icb_hardaddr;
    967  1.49.30.1      ad 	uint8_t		icb_portname[8];
    968  1.49.30.1      ad 	uint8_t		icb_nodename[8];
    969  1.49.30.1      ad 	uint16_t	icb_rspnsin;
    970  1.49.30.1      ad 	uint16_t	icb_rqstout;
    971  1.49.30.1      ad 	uint16_t	icb_retry_count;
    972  1.49.30.1      ad 	uint16_t	icb_priout;
    973  1.49.30.1      ad 	uint16_t	icb_rsltqlen;
    974  1.49.30.1      ad 	uint16_t	icb_rqstqlen;
    975  1.49.30.1      ad 	uint16_t	icb_ldn_nols;
    976  1.49.30.1      ad 	uint16_t	icb_prqstqlen;
    977  1.49.30.1      ad 	uint16_t	icb_rqstaddr[4];
    978  1.49.30.1      ad 	uint16_t	icb_respaddr[4];
    979  1.49.30.1      ad 	uint16_t	icb_priaddr[4];
    980  1.49.30.1      ad 	uint16_t	icb_reserved1[4];
    981  1.49.30.1      ad 	uint16_t	icb_atio_in;
    982  1.49.30.1      ad 	uint16_t	icb_atioqlen;
    983  1.49.30.1      ad 	uint16_t	icb_atioqaddr[4];
    984  1.49.30.1      ad 	uint16_t	icb_idelaytimer;
    985  1.49.30.1      ad 	uint16_t	icb_logintime;
    986  1.49.30.1      ad 	uint32_t	icb_fwoptions1;
    987  1.49.30.1      ad 	uint32_t	icb_fwoptions2;
    988  1.49.30.1      ad 	uint32_t	icb_fwoptions3;
    989  1.49.30.1      ad 	uint16_t	icb_reserved2[12];
    990  1.49.30.1      ad } isp_icb_2400_t;
    991        1.8  mjacob 
    992        1.8  mjacob #define	RQRSP_ADDR0015	0
    993        1.8  mjacob #define	RQRSP_ADDR1631	1
    994        1.8  mjacob #define	RQRSP_ADDR3247	2
    995        1.8  mjacob #define	RQRSP_ADDR4863	3
    996        1.8  mjacob 
    997        1.8  mjacob 
    998        1.8  mjacob #define	ICB_NNM0	7
    999        1.8  mjacob #define	ICB_NNM1	6
   1000        1.8  mjacob #define	ICB_NNM2	5
   1001        1.8  mjacob #define	ICB_NNM3	4
   1002        1.8  mjacob #define	ICB_NNM4	3
   1003        1.8  mjacob #define	ICB_NNM5	2
   1004        1.8  mjacob #define	ICB_NNM6	1
   1005        1.8  mjacob #define	ICB_NNM7	0
   1006        1.3  mjacob 
   1007        1.8  mjacob #define	MAKE_NODE_NAME_FROM_WWN(array, wwn)	\
   1008  1.49.30.1      ad 	array[ICB_NNM0] = (uint8_t) ((wwn >>  0) & 0xff), \
   1009  1.49.30.1      ad 	array[ICB_NNM1] = (uint8_t) ((wwn >>  8) & 0xff), \
   1010  1.49.30.1      ad 	array[ICB_NNM2] = (uint8_t) ((wwn >> 16) & 0xff), \
   1011  1.49.30.1      ad 	array[ICB_NNM3] = (uint8_t) ((wwn >> 24) & 0xff), \
   1012  1.49.30.1      ad 	array[ICB_NNM4] = (uint8_t) ((wwn >> 32) & 0xff), \
   1013  1.49.30.1      ad 	array[ICB_NNM5] = (uint8_t) ((wwn >> 40) & 0xff), \
   1014  1.49.30.1      ad 	array[ICB_NNM6] = (uint8_t) ((wwn >> 48) & 0xff), \
   1015  1.49.30.1      ad 	array[ICB_NNM7] = (uint8_t) ((wwn >> 56) & 0xff)
   1016  1.49.30.1      ad 
   1017  1.49.30.1      ad #define	MAKE_WWN_FROM_NODE_NAME(wwn, array)	\
   1018  1.49.30.1      ad 	wwn =	((uint64_t) array[ICB_NNM0]) | \
   1019  1.49.30.1      ad 		((uint64_t) array[ICB_NNM1] <<  8) | \
   1020  1.49.30.1      ad 		((uint64_t) array[ICB_NNM2] << 16) | \
   1021  1.49.30.1      ad 		((uint64_t) array[ICB_NNM3] << 24) | \
   1022  1.49.30.1      ad 		((uint64_t) array[ICB_NNM4] << 32) | \
   1023  1.49.30.1      ad 		((uint64_t) array[ICB_NNM5] << 40) | \
   1024  1.49.30.1      ad 		((uint64_t) array[ICB_NNM6] << 48) | \
   1025  1.49.30.1      ad 		((uint64_t) array[ICB_NNM7] << 56)
   1026       1.14  mjacob 
   1027       1.14  mjacob /*
   1028       1.14  mjacob  * Port Data Base Element
   1029       1.14  mjacob  */
   1030       1.14  mjacob 
   1031       1.14  mjacob typedef struct {
   1032  1.49.30.1      ad 	uint16_t	pdb_options;
   1033  1.49.30.1      ad 	uint8_t		pdb_mstate;
   1034  1.49.30.1      ad 	uint8_t		pdb_sstate;
   1035  1.49.30.1      ad 	uint8_t		pdb_hardaddr_bits[4];
   1036  1.49.30.1      ad 	uint8_t		pdb_portid_bits[4];
   1037  1.49.30.1      ad 	uint8_t		pdb_nodename[8];
   1038  1.49.30.1      ad 	uint8_t		pdb_portname[8];
   1039  1.49.30.1      ad 	uint16_t	pdb_execthrottle;
   1040  1.49.30.1      ad 	uint16_t	pdb_exec_count;
   1041  1.49.30.1      ad 	uint8_t		pdb_retry_count;
   1042  1.49.30.1      ad 	uint8_t		pdb_retry_delay;
   1043  1.49.30.1      ad 	uint16_t	pdb_resalloc;
   1044  1.49.30.1      ad 	uint16_t	pdb_curalloc;
   1045  1.49.30.1      ad 	uint16_t	pdb_qhead;
   1046  1.49.30.1      ad 	uint16_t	pdb_qtail;
   1047  1.49.30.1      ad 	uint16_t	pdb_tl_next;
   1048  1.49.30.1      ad 	uint16_t	pdb_tl_last;
   1049  1.49.30.1      ad 	uint16_t	pdb_features;	/* PLOGI, Common Service */
   1050  1.49.30.1      ad 	uint16_t	pdb_pconcurrnt;	/* PLOGI, Common Service */
   1051  1.49.30.1      ad 	uint16_t	pdb_roi;	/* PLOGI, Common Service */
   1052  1.49.30.1      ad 	uint8_t		pdb_target;
   1053  1.49.30.1      ad 	uint8_t		pdb_initiator;	/* PLOGI, Class 3 Control Flags */
   1054  1.49.30.1      ad 	uint16_t	pdb_rdsiz;	/* PLOGI, Class 3 */
   1055  1.49.30.1      ad 	uint16_t	pdb_ncseq;	/* PLOGI, Class 3 */
   1056  1.49.30.1      ad 	uint16_t	pdb_noseq;	/* PLOGI, Class 3 */
   1057  1.49.30.1      ad 	uint16_t	pdb_labrtflg;
   1058  1.49.30.1      ad 	uint16_t	pdb_lstopflg;
   1059  1.49.30.1      ad 	uint16_t	pdb_sqhead;
   1060  1.49.30.1      ad 	uint16_t	pdb_sqtail;
   1061  1.49.30.1      ad 	uint16_t	pdb_ptimer;
   1062  1.49.30.1      ad 	uint16_t	pdb_nxt_seqid;
   1063  1.49.30.1      ad 	uint16_t	pdb_fcount;
   1064  1.49.30.1      ad 	uint16_t	pdb_prli_len;
   1065  1.49.30.1      ad 	uint16_t	pdb_prli_svc0;
   1066  1.49.30.1      ad 	uint16_t	pdb_prli_svc3;
   1067  1.49.30.1      ad 	uint16_t	pdb_loopid;
   1068  1.49.30.1      ad 	uint16_t	pdb_il_ptr;
   1069  1.49.30.1      ad 	uint16_t	pdb_sl_ptr;
   1070  1.49.30.1      ad } isp_pdb_21xx_t;
   1071       1.14  mjacob 
   1072       1.14  mjacob #define	PDB_OPTIONS_XMITTING	(1<<11)
   1073       1.14  mjacob #define	PDB_OPTIONS_LNKXMIT	(1<<10)
   1074       1.14  mjacob #define	PDB_OPTIONS_ABORTED	(1<<9)
   1075       1.14  mjacob #define	PDB_OPTIONS_ADISC	(1<<1)
   1076       1.14  mjacob 
   1077       1.14  mjacob #define	PDB_STATE_DISCOVERY	0
   1078       1.14  mjacob #define	PDB_STATE_WDISC_ACK	1
   1079       1.14  mjacob #define	PDB_STATE_PLOGI		2
   1080       1.14  mjacob #define	PDB_STATE_PLOGI_ACK	3
   1081       1.14  mjacob #define	PDB_STATE_PRLI		4
   1082       1.14  mjacob #define	PDB_STATE_PRLI_ACK	5
   1083       1.14  mjacob #define	PDB_STATE_LOGGED_IN	6
   1084       1.14  mjacob #define	PDB_STATE_PORT_UNAVAIL	7
   1085       1.14  mjacob #define	PDB_STATE_PRLO		8
   1086       1.14  mjacob #define	PDB_STATE_PRLO_ACK	9
   1087       1.14  mjacob #define	PDB_STATE_PLOGO		10
   1088       1.14  mjacob #define	PDB_STATE_PLOG_ACK	11
   1089       1.14  mjacob 
   1090       1.14  mjacob #define		SVC3_TGT_ROLE		0x10
   1091       1.14  mjacob #define 	SVC3_INI_ROLE		0x20
   1092       1.14  mjacob #define			SVC3_ROLE_MASK	0x30
   1093       1.18  mjacob #define			SVC3_ROLE_SHIFT	4
   1094       1.18  mjacob 
   1095  1.49.30.1      ad #define	BITS2WORD(x)		((x)[0] << 16 | (x)[3] << 8 | (x)[2])
   1096  1.49.30.1      ad #define	BITS2WORD_24XX(x)	((x)[0] << 16 | (x)[1] << 8 | (x)[2])
   1097  1.49.30.1      ad 
   1098       1.39  mjacob /*
   1099  1.49.30.1      ad  * Port Data Base Element- 24XX cards
   1100  1.49.30.1      ad  */
   1101  1.49.30.1      ad typedef struct {
   1102  1.49.30.1      ad 	uint16_t	pdb_flags;
   1103  1.49.30.1      ad 	uint8_t		pdb_curstate;
   1104  1.49.30.1      ad 	uint8_t		pdb_laststate;
   1105  1.49.30.1      ad 	uint8_t		pdb_hardaddr_bits[4];
   1106  1.49.30.1      ad 	uint8_t		pdb_portid_bits[4];
   1107  1.49.30.1      ad #define		pdb_nxt_seqid_2400	pdb_portid_bits[3]
   1108  1.49.30.1      ad 	uint16_t	pdb_retry_timer;
   1109  1.49.30.1      ad 	uint16_t	pdb_handle;
   1110  1.49.30.1      ad 	uint16_t	pdb_rcv_dsize;
   1111  1.49.30.1      ad 	uint16_t	pdb_reserved0;
   1112  1.49.30.1      ad 	uint16_t	pdb_prli_svc0;
   1113  1.49.30.1      ad 	uint16_t	pdb_prli_svc3;
   1114  1.49.30.1      ad 	uint8_t		pdb_portname[8];
   1115  1.49.30.1      ad 	uint8_t		pdb_nodename[8];
   1116  1.49.30.1      ad 	uint8_t		pdb_reserved1[24];
   1117  1.49.30.1      ad } isp_pdb_24xx_t;
   1118  1.49.30.1      ad 
   1119  1.49.30.1      ad #define	PDB2400_TID_SUPPORTED	0x4000
   1120  1.49.30.1      ad #define	PDB2400_FC_TAPE		0x0080
   1121  1.49.30.1      ad #define	PDB2400_CLASS2_ACK0	0x0040
   1122  1.49.30.1      ad #define	PDB2400_FCP_CONF	0x0020
   1123  1.49.30.1      ad #define	PDB2400_CLASS2		0x0010
   1124  1.49.30.1      ad #define	PDB2400_ADDR_VALID	0x0002
   1125  1.49.30.1      ad 
   1126  1.49.30.1      ad /*
   1127  1.49.30.1      ad  * Common elements from the above two structures that are actually useful to us.
   1128  1.49.30.1      ad  */
   1129  1.49.30.1      ad typedef struct {
   1130  1.49.30.1      ad 	uint16_t	handle;
   1131  1.49.30.1      ad 	uint16_t	reserved;
   1132  1.49.30.1      ad 	uint32_t	s3_role	: 8,
   1133  1.49.30.1      ad 			portid	: 24;
   1134  1.49.30.1      ad 	uint8_t		portname[8];
   1135  1.49.30.1      ad 	uint8_t		nodename[8];
   1136  1.49.30.1      ad } isp_pdb_t;
   1137  1.49.30.1      ad 
   1138  1.49.30.1      ad /*
   1139  1.49.30.1      ad  * Genericized Port Login/Logout software structure
   1140       1.39  mjacob  */
   1141  1.49.30.1      ad typedef struct {
   1142  1.49.30.1      ad 	uint16_t	handle;
   1143  1.49.30.1      ad 	uint32_t
   1144  1.49.30.1      ad 		flags	: 8,
   1145  1.49.30.1      ad 		portid	: 24;
   1146  1.49.30.1      ad } isp_plcmd_t;
   1147  1.49.30.1      ad /* the flags to use are those for PLOGX_FLG_* below */
   1148       1.39  mjacob 
   1149  1.49.30.1      ad /*
   1150  1.49.30.1      ad  * ISP24XX- Login/Logout Port IOCB
   1151  1.49.30.1      ad  */
   1152       1.39  mjacob typedef struct {
   1153  1.49.30.1      ad 	isphdr_t	plogx_header;
   1154  1.49.30.1      ad 	uint32_t	plogx_handle;
   1155  1.49.30.1      ad 	uint16_t	plogx_status;
   1156  1.49.30.1      ad 	uint16_t	plogx_nphdl;
   1157  1.49.30.1      ad 	uint16_t	plogx_flags;
   1158  1.49.30.1      ad 	uint16_t	plogx_vphdl;		/* low 8 bits */
   1159  1.49.30.1      ad 	uint16_t	plogx_portlo;		/* low 16 bits */
   1160  1.49.30.1      ad 	uint16_t	plogx_rspsz_porthi;
   1161  1.49.30.1      ad 	struct {
   1162  1.49.30.1      ad 		uint16_t	lo16;
   1163  1.49.30.1      ad 		uint16_t	hi16;
   1164  1.49.30.1      ad 	} plogx_ioparm[11];
   1165  1.49.30.1      ad } isp_plogx_t;
   1166  1.49.30.1      ad 
   1167  1.49.30.1      ad #define	PLOGX_STATUS_OK		0x00
   1168  1.49.30.1      ad #define	PLOGX_STATUS_UNAVAIL	0x28
   1169  1.49.30.1      ad #define	PLOGX_STATUS_LOGOUT	0x29
   1170  1.49.30.1      ad #define	PLOGX_STATUS_IOCBERR	0x31
   1171  1.49.30.1      ad 
   1172  1.49.30.1      ad #define	PLOGX_IOCBERR_NOLINK	0x01
   1173  1.49.30.1      ad #define	PLOGX_IOCBERR_NOIOCB	0x02
   1174  1.49.30.1      ad #define	PLOGX_IOCBERR_NOXGHG	0x03
   1175  1.49.30.1      ad #define	PLOGX_IOCBERR_FAILED	0x04	/* further info in IOPARM 1 */
   1176  1.49.30.1      ad #define	PLOGX_IOCBERR_NOFABRIC	0x05
   1177  1.49.30.1      ad #define	PLOGX_IOCBERR_NOTREADY	0x07
   1178  1.49.30.1      ad #define	PLOGX_IOCBERR_NOLOGIN	0x08	/* further info in IOPARM 1 */
   1179  1.49.30.1      ad #define	PLOGX_IOCBERR_NOPCB	0x0a
   1180  1.49.30.1      ad #define	PLOGX_IOCBERR_REJECT	0x18	/* further info in IOPARM 1 */
   1181  1.49.30.1      ad #define	PLOGX_IOCBERR_EINVAL	0x19	/* further info in IOPARM 1 */
   1182  1.49.30.1      ad #define	PLOGX_IOCBERR_PORTUSED	0x1a	/* further info in IOPARM 1 */
   1183  1.49.30.1      ad #define	PLOGX_IOCBERR_HNDLUSED	0x1b	/* further info in IOPARM 1 */
   1184  1.49.30.1      ad #define	PLOGX_IOCBERR_NOHANDLE	0x1c
   1185  1.49.30.1      ad #define	PLOGX_IOCBERR_NOFLOGI	0x1f	/* further info in IOPARM 1 */
   1186  1.49.30.1      ad 
   1187  1.49.30.1      ad #define	PLOGX_FLG_CMD_MASK	0xf
   1188  1.49.30.1      ad #define	PLOGX_FLG_CMD_PLOGI	0
   1189  1.49.30.1      ad #define	PLOGX_FLG_CMD_PRLI	1
   1190  1.49.30.1      ad #define	PLOGX_FLG_CMD_PDISC	2
   1191  1.49.30.1      ad #define	PLOGX_FLG_CMD_LOGO	8
   1192  1.49.30.1      ad #define	PLOGX_FLG_CMD_PRLO	9
   1193  1.49.30.1      ad #define	PLOGX_FLG_CMD_TPRLO	10
   1194  1.49.30.1      ad 
   1195  1.49.30.1      ad #define	PLOGX_FLG_COND_PLOGI		0x10	/* if with PLOGI */
   1196  1.49.30.1      ad #define	PLOGX_FLG_IMPLICIT		0x10	/* if with LOGO, PRLO, TPRLO */
   1197  1.49.30.1      ad #define	PLOGX_FLG_SKIP_PRLI		0x20	/* if with PLOGI */
   1198  1.49.30.1      ad #define	PLOGX_FLG_IMPLICIT_LOGO_ALL	0x20	/* if with LOGO */
   1199  1.49.30.1      ad #define	PLOGX_FLG_EXPLICIT_LOGO		0x40	/* if with LOGO */
   1200  1.49.30.1      ad #define	PLOGX_FLG_COMMON_FEATURES	0x80	/* if with PLOGI */
   1201  1.49.30.1      ad #define	PLOGX_FLG_FREE_NPHDL		0x80	/* if with with LOGO */
   1202  1.49.30.1      ad 
   1203  1.49.30.1      ad #define	PLOGX_FLG_CLASS2		0x100	/* if with PLOGI */
   1204  1.49.30.1      ad #define	PLOGX_FLG_FCP2_OVERRIDE		0x200	/* if with PRLOG, PRLI */
   1205       1.39  mjacob 
   1206  1.49.30.1      ad /*
   1207  1.49.30.1      ad  * Simple Name Server Data Structures
   1208  1.49.30.1      ad  */
   1209       1.39  mjacob #define	SNS_GA_NXT	0x100
   1210       1.39  mjacob #define	SNS_GPN_ID	0x112
   1211       1.39  mjacob #define	SNS_GNN_ID	0x113
   1212       1.40  mjacob #define	SNS_GFF_ID	0x11F
   1213       1.39  mjacob #define	SNS_GID_FT	0x171
   1214       1.39  mjacob #define	SNS_RFT_ID	0x217
   1215       1.18  mjacob typedef struct {
   1216  1.49.30.1      ad 	uint16_t	snscb_rblen;	/* response buffer length (words) */
   1217  1.49.30.1      ad 	uint16_t	snscb_reserved0;
   1218  1.49.30.1      ad 	uint16_t	snscb_addr[4];	/* response buffer address */
   1219  1.49.30.1      ad 	uint16_t	snscb_sblen;	/* subcommand buffer length (words) */
   1220  1.49.30.1      ad 	uint16_t	snscb_reserved1;
   1221  1.49.30.1      ad 	uint16_t	snscb_data[1];	/* variable data */
   1222       1.18  mjacob } sns_screq_t;	/* Subcommand Request Structure */
   1223       1.18  mjacob 
   1224       1.18  mjacob typedef struct {
   1225  1.49.30.1      ad 	uint16_t	snscb_rblen;	/* response buffer length (words) */
   1226  1.49.30.1      ad 	uint16_t	snscb_reserved0;
   1227  1.49.30.1      ad 	uint16_t	snscb_addr[4];	/* response buffer address */
   1228  1.49.30.1      ad 	uint16_t	snscb_sblen;	/* subcommand buffer length (words) */
   1229  1.49.30.1      ad 	uint16_t	snscb_reserved1;
   1230  1.49.30.1      ad 	uint16_t	snscb_cmd;
   1231  1.49.30.1      ad 	uint16_t	snscb_reserved2;
   1232  1.49.30.1      ad 	uint32_t	snscb_reserved3;
   1233  1.49.30.1      ad 	uint32_t	snscb_port;
   1234       1.39  mjacob } sns_ga_nxt_req_t;
   1235       1.39  mjacob #define	SNS_GA_NXT_REQ_SIZE	(sizeof (sns_ga_nxt_req_t))
   1236       1.39  mjacob 
   1237       1.39  mjacob typedef struct {
   1238  1.49.30.1      ad 	uint16_t	snscb_rblen;	/* response buffer length (words) */
   1239  1.49.30.1      ad 	uint16_t	snscb_reserved0;
   1240  1.49.30.1      ad 	uint16_t	snscb_addr[4];	/* response buffer address */
   1241  1.49.30.1      ad 	uint16_t	snscb_sblen;	/* subcommand buffer length (words) */
   1242  1.49.30.1      ad 	uint16_t	snscb_reserved1;
   1243  1.49.30.1      ad 	uint16_t	snscb_cmd;
   1244  1.49.30.1      ad 	uint16_t	snscb_reserved2;
   1245  1.49.30.1      ad 	uint32_t	snscb_reserved3;
   1246  1.49.30.1      ad 	uint32_t	snscb_portid;
   1247       1.39  mjacob } sns_gxn_id_req_t;
   1248       1.39  mjacob #define	SNS_GXN_ID_REQ_SIZE	(sizeof (sns_gxn_id_req_t))
   1249       1.39  mjacob 
   1250       1.39  mjacob typedef struct {
   1251  1.49.30.1      ad 	uint16_t	snscb_rblen;	/* response buffer length (words) */
   1252  1.49.30.1      ad 	uint16_t	snscb_reserved0;
   1253  1.49.30.1      ad 	uint16_t	snscb_addr[4];	/* response buffer address */
   1254  1.49.30.1      ad 	uint16_t	snscb_sblen;	/* subcommand buffer length (words) */
   1255  1.49.30.1      ad 	uint16_t	snscb_reserved1;
   1256  1.49.30.1      ad 	uint16_t	snscb_cmd;
   1257  1.49.30.1      ad 	uint16_t	snscb_mword_div_2;
   1258  1.49.30.1      ad 	uint32_t	snscb_reserved3;
   1259  1.49.30.1      ad 	uint32_t	snscb_fc4_type;
   1260       1.39  mjacob } sns_gid_ft_req_t;
   1261       1.39  mjacob #define	SNS_GID_FT_REQ_SIZE	(sizeof (sns_gid_ft_req_t))
   1262       1.39  mjacob 
   1263       1.39  mjacob typedef struct {
   1264  1.49.30.1      ad 	uint16_t	snscb_rblen;	/* response buffer length (words) */
   1265  1.49.30.1      ad 	uint16_t	snscb_reserved0;
   1266  1.49.30.1      ad 	uint16_t	snscb_addr[4];	/* response buffer address */
   1267  1.49.30.1      ad 	uint16_t	snscb_sblen;	/* subcommand buffer length (words) */
   1268  1.49.30.1      ad 	uint16_t	snscb_reserved1;
   1269  1.49.30.1      ad 	uint16_t	snscb_cmd;
   1270  1.49.30.1      ad 	uint16_t	snscb_reserved2;
   1271  1.49.30.1      ad 	uint32_t	snscb_reserved3;
   1272  1.49.30.1      ad 	uint32_t	snscb_port;
   1273  1.49.30.1      ad 	uint32_t	snscb_fc4_types[8];
   1274       1.39  mjacob } sns_rft_id_req_t;
   1275       1.39  mjacob #define	SNS_RFT_ID_REQ_SIZE	(sizeof (sns_rft_id_req_t))
   1276       1.39  mjacob 
   1277       1.39  mjacob typedef struct {
   1278       1.39  mjacob 	ct_hdr_t	snscb_cthdr;
   1279  1.49.30.1      ad 	uint8_t		snscb_port_type;
   1280  1.49.30.1      ad 	uint8_t		snscb_port_id[3];
   1281  1.49.30.1      ad 	uint8_t		snscb_portname[8];
   1282  1.49.30.1      ad 	uint16_t	snscb_data[1];	/* variable data */
   1283       1.18  mjacob } sns_scrsp_t;	/* Subcommand Response Structure */
   1284       1.22  mjacob 
   1285       1.22  mjacob typedef struct {
   1286       1.39  mjacob 	ct_hdr_t	snscb_cthdr;
   1287  1.49.30.1      ad 	uint8_t		snscb_port_type;
   1288  1.49.30.1      ad 	uint8_t		snscb_port_id[3];
   1289  1.49.30.1      ad 	uint8_t		snscb_portname[8];
   1290  1.49.30.1      ad 	uint8_t		snscb_pnlen;		/* symbolic port name length */
   1291  1.49.30.1      ad 	uint8_t		snscb_pname[255];	/* symbolic port name */
   1292  1.49.30.1      ad 	uint8_t		snscb_nodename[8];
   1293  1.49.30.1      ad 	uint8_t		snscb_nnlen;		/* symbolic node name length */
   1294  1.49.30.1      ad 	uint8_t		snscb_nname[255];	/* symbolic node name */
   1295  1.49.30.1      ad 	uint8_t		snscb_ipassoc[8];
   1296  1.49.30.1      ad 	uint8_t		snscb_ipaddr[16];
   1297  1.49.30.1      ad 	uint8_t		snscb_svc_class[4];
   1298  1.49.30.1      ad 	uint8_t		snscb_fc4_types[32];
   1299  1.49.30.1      ad 	uint8_t		snscb_fpname[8];
   1300  1.49.30.1      ad 	uint8_t		snscb_reserved;
   1301  1.49.30.1      ad 	uint8_t		snscb_hardaddr[3];
   1302       1.39  mjacob } sns_ga_nxt_rsp_t;	/* Subcommand Response Structure */
   1303       1.39  mjacob #define	SNS_GA_NXT_RESP_SIZE	(sizeof (sns_ga_nxt_rsp_t))
   1304       1.39  mjacob 
   1305       1.39  mjacob typedef struct {
   1306       1.39  mjacob 	ct_hdr_t	snscb_cthdr;
   1307  1.49.30.1      ad 	uint8_t		snscb_wwn[8];
   1308       1.39  mjacob } sns_gxn_id_rsp_t;
   1309       1.39  mjacob #define	SNS_GXN_ID_RESP_SIZE	(sizeof (sns_gxn_id_rsp_t))
   1310       1.39  mjacob 
   1311       1.40  mjacob typedef struct {
   1312       1.40  mjacob 	ct_hdr_t	snscb_cthdr;
   1313  1.49.30.1      ad 	uint32_t	snscb_fc4_features[32];
   1314       1.40  mjacob } sns_gff_id_rsp_t;
   1315       1.40  mjacob #define	SNS_GFF_ID_RESP_SIZE	(sizeof (sns_gff_id_rsp_t))
   1316       1.39  mjacob 
   1317       1.39  mjacob typedef struct {
   1318       1.39  mjacob 	ct_hdr_t	snscb_cthdr;
   1319       1.39  mjacob 	struct {
   1320  1.49.30.1      ad 		uint8_t		control;
   1321  1.49.30.1      ad 		uint8_t		portid[3];
   1322       1.39  mjacob 	} snscb_ports[1];
   1323       1.39  mjacob } sns_gid_ft_rsp_t;
   1324       1.39  mjacob #define	SNS_GID_FT_RESP_SIZE(x)	((sizeof (sns_gid_ft_rsp_t)) + ((x - 1) << 2))
   1325       1.39  mjacob #define	SNS_RFT_ID_RESP_SIZE	(sizeof (ct_hdr_t))
   1326        1.1     cgd 
   1327  1.49.30.1      ad /*
   1328  1.49.30.1      ad  * Other Misc Structures
   1329  1.49.30.1      ad  */
   1330  1.49.30.1      ad 
   1331  1.49.30.1      ad /* ELS Pass Through */
   1332  1.49.30.1      ad typedef struct {
   1333  1.49.30.1      ad 	isphdr_t	els_hdr;
   1334  1.49.30.1      ad 	uint32_t	els_handle;
   1335  1.49.30.1      ad 	uint16_t	els_status;
   1336  1.49.30.1      ad 	uint16_t	els_nphdl;
   1337  1.49.30.1      ad 	uint16_t	els_xmit_dsd_count;	/* outgoing only */
   1338  1.49.30.1      ad 	uint8_t		els_vphdl;
   1339  1.49.30.1      ad 	uint8_t		els_sof;
   1340  1.49.30.1      ad 	uint32_t	els_rxid;
   1341  1.49.30.1      ad 	uint16_t	els_recv_dsd_count;	/* outgoing only */
   1342  1.49.30.1      ad 	uint8_t		els_opcode;
   1343  1.49.30.1      ad 	uint8_t		els_reserved1;
   1344  1.49.30.1      ad 	uint8_t		els_did_lo;
   1345  1.49.30.1      ad 	uint8_t		els_did_mid;
   1346  1.49.30.1      ad 	uint8_t		els_did_hi;
   1347  1.49.30.1      ad 	uint8_t		els_reserved2;
   1348  1.49.30.1      ad 	uint16_t	els_reserved3;
   1349  1.49.30.1      ad 	uint16_t	els_ctl_flags;
   1350  1.49.30.1      ad 	union {
   1351  1.49.30.1      ad 		struct {
   1352  1.49.30.1      ad 			uint32_t	_els_bytecnt;
   1353  1.49.30.1      ad 			uint32_t	_els_subcode1;
   1354  1.49.30.1      ad 			uint32_t	_els_subcode2;
   1355  1.49.30.1      ad 			uint8_t		_els_reserved4[20];
   1356  1.49.30.1      ad 		} in;
   1357  1.49.30.1      ad 		struct {
   1358  1.49.30.1      ad 			uint32_t	_els_recv_bytecnt;
   1359  1.49.30.1      ad 			uint32_t	_els_xmit_bytecnt;
   1360  1.49.30.1      ad 			uint32_t	_els_xmit_dsd_length;
   1361  1.49.30.1      ad 			uint16_t	_els_xmit_dsd_a1500;
   1362  1.49.30.1      ad 			uint16_t	_els_xmit_dsd_a3116;
   1363  1.49.30.1      ad 			uint16_t	_els_xmit_dsd_a4732;
   1364  1.49.30.1      ad 			uint16_t	_els_xmit_dsd_a6348;
   1365  1.49.30.1      ad 			uint32_t	_els_recv_dsd_length;
   1366  1.49.30.1      ad 			uint16_t	_els_recv_dsd_a1500;
   1367  1.49.30.1      ad 			uint16_t	_els_recv_dsd_a3116;
   1368  1.49.30.1      ad 			uint16_t	_els_recv_dsd_a4732;
   1369  1.49.30.1      ad 			uint16_t	_els_recv_dsd_a6348;
   1370  1.49.30.1      ad 		} out;
   1371  1.49.30.1      ad 	} inout;
   1372  1.49.30.1      ad #define	els_bytecnt		inout.in._els_bytecnt
   1373  1.49.30.1      ad #define	els_subcode1		inout.in._els_subcode1
   1374  1.49.30.1      ad #define	els_subcode2		inout.in._els_subcode2
   1375  1.49.30.1      ad #define	els_reserved4		inout.in._els_reserved4
   1376  1.49.30.1      ad #define	els_recv_bytecnt	inout.out._els_recv_bytecnt
   1377  1.49.30.1      ad #define	els_xmit_bytecnt	inout.out._els_xmit_bytecnt
   1378  1.49.30.1      ad #define	els_xmit_dsd_length	inout.out._els_xmit_dsd_length
   1379  1.49.30.1      ad #define	els_xmit_dsd_a1500	inout.out._els_xmit_dsd_a1500
   1380  1.49.30.1      ad #define	els_xmit_dsd_a3116	inout.out._els_xmit_dsd_a3116
   1381  1.49.30.1      ad #define	els_xmit_dsd_a4732	inout.out._els_xmit_dsd_a4732
   1382  1.49.30.1      ad #define	els_xmit_dsd_a6348	inout.out._els_xmit_dsd_a6348
   1383  1.49.30.1      ad #define	els_recv_dsd_length	inout.out._els_recv_dsd_length
   1384  1.49.30.1      ad #define	els_recv_dsd_a1500	inout.out._els_recv_dsd_a1500
   1385  1.49.30.1      ad #define	els_recv_dsd_a3116	inout.out._els_recv_dsd_a3116
   1386  1.49.30.1      ad #define	els_recv_dsd_a4732	inout.out._els_recv_dsd_a4732
   1387  1.49.30.1      ad #define	els_recv_dsd_a6348	inout.out._els_recv_dsd_a6348
   1388  1.49.30.1      ad } els_t;
   1389  1.49.30.1      ad 
   1390  1.49.30.1      ad /*
   1391  1.49.30.1      ad  * A handy package structure for running FC-SCSI commands via RUN IOCB A64.
   1392  1.49.30.1      ad  */
   1393  1.49.30.1      ad typedef struct {
   1394  1.49.30.1      ad 	uint16_t	handle;
   1395  1.49.30.1      ad 	uint16_t	lun;
   1396  1.49.30.1      ad 	uint32_t	portid;
   1397  1.49.30.1      ad 	uint32_t	timeout;
   1398  1.49.30.1      ad 	union {
   1399  1.49.30.1      ad 		struct {
   1400  1.49.30.1      ad 			uint32_t data_length;
   1401  1.49.30.1      ad 			uint8_t do_read;
   1402  1.49.30.1      ad 			uint8_t pad[3];
   1403  1.49.30.1      ad 			uint8_t cdb[16];
   1404  1.49.30.1      ad 			void *data_ptr;
   1405  1.49.30.1      ad 		} beg;
   1406  1.49.30.1      ad 		struct {
   1407  1.49.30.1      ad 			uint32_t data_residual;
   1408  1.49.30.1      ad 			uint8_t status;
   1409  1.49.30.1      ad 			uint8_t pad;
   1410  1.49.30.1      ad 			uint16_t sense_length;
   1411  1.49.30.1      ad 			uint8_t sense_data[32];
   1412  1.49.30.1      ad 		} end;
   1413  1.49.30.1      ad 	} fcd;
   1414  1.49.30.1      ad } isp_xcmd_t;
   1415        1.1     cgd #endif	/* _ISPMBOX_H */
   1416