Home | History | Annotate | Line # | Download | only in ic
isp_tpublic.h revision 1.12.10.1
      1  1.12.10.1    yamt /* $NetBSD: isp_tpublic.h,v 1.12.10.1 2005/03/19 08:34:03 yamt Exp $ */
      2        1.4  mjacob /*
      3        1.4  mjacob  * This driver, which is contained in NetBSD in the files:
      4        1.4  mjacob  *
      5        1.4  mjacob  *	sys/dev/ic/isp.c
      6        1.5     wiz  *	sys/dev/ic/isp_inline.h
      7        1.5     wiz  *	sys/dev/ic/isp_netbsd.c
      8        1.5     wiz  *	sys/dev/ic/isp_netbsd.h
      9        1.5     wiz  *	sys/dev/ic/isp_target.c
     10        1.5     wiz  *	sys/dev/ic/isp_target.h
     11        1.5     wiz  *	sys/dev/ic/isp_tpublic.h
     12        1.5     wiz  *	sys/dev/ic/ispmbox.h
     13        1.5     wiz  *	sys/dev/ic/ispreg.h
     14        1.5     wiz  *	sys/dev/ic/ispvar.h
     15        1.4  mjacob  *	sys/microcode/isp/asm_sbus.h
     16        1.4  mjacob  *	sys/microcode/isp/asm_1040.h
     17        1.4  mjacob  *	sys/microcode/isp/asm_1080.h
     18        1.4  mjacob  *	sys/microcode/isp/asm_12160.h
     19        1.4  mjacob  *	sys/microcode/isp/asm_2100.h
     20        1.4  mjacob  *	sys/microcode/isp/asm_2200.h
     21        1.4  mjacob  *	sys/pci/isp_pci.c
     22        1.4  mjacob  *	sys/sbus/isp_sbus.c
     23        1.4  mjacob  *
     24       1.12  keihan  * Is being actively maintained by Matthew Jacob (mjacob (at) NetBSD.org).
     25        1.4  mjacob  * This driver also is shared source with FreeBSD, OpenBSD, Linux, Solaris,
     26        1.4  mjacob  * Linux versions. This tends to be an interesting maintenance problem.
     27        1.4  mjacob  *
     28        1.4  mjacob  * Please coordinate with Matthew Jacob on changes you wish to make here.
     29        1.4  mjacob  */
     30        1.1  mjacob /*
     31        1.1  mjacob  * Qlogic ISP Host Adapter Public Target Interface Structures && Routines
     32        1.1  mjacob  *---------------------------------------
     33        1.1  mjacob  * Copyright (c) 2000 by Matthew Jacob
     34        1.1  mjacob  * All rights reserved.
     35        1.1  mjacob  *
     36        1.1  mjacob  * Redistribution and use in source and binary forms, with or without
     37        1.1  mjacob  * modification, are permitted provided that the following conditions
     38        1.1  mjacob  * are met:
     39        1.1  mjacob  * 1. Redistributions of source code must retain the above copyright
     40        1.1  mjacob  *    notice, this list of conditions, and the following disclaimer,
     41        1.1  mjacob  *    without modification, immediately at the beginning of the file.
     42        1.1  mjacob  * 2. The name of the author may not be used to endorse or promote products
     43        1.1  mjacob  *    derived from this software without specific prior written permission.
     44        1.1  mjacob  *
     45        1.1  mjacob  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     46        1.1  mjacob  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     47        1.1  mjacob  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     48        1.1  mjacob  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
     49        1.1  mjacob  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     50        1.1  mjacob  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     51        1.1  mjacob  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     52        1.1  mjacob  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     53        1.1  mjacob  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     54        1.1  mjacob  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     55        1.1  mjacob  * SUCH DAMAGE.
     56  1.12.10.1    yamt  *
     57        1.1  mjacob  * Matthew Jacob
     58        1.1  mjacob  * Feral Software
     59        1.1  mjacob  * mjacob (at) feral.com
     60        1.1  mjacob  */
     61        1.1  mjacob 
     62        1.1  mjacob /*
     63        1.1  mjacob  * Required software target mode message and event handling structures.
     64        1.1  mjacob  *
     65        1.1  mjacob  * The message and event structures are used by the MI layer
     66        1.1  mjacob  * to propagate messages and events upstream.
     67        1.1  mjacob  */
     68        1.1  mjacob 
     69        1.1  mjacob #ifndef	IN_MSGLEN
     70        1.1  mjacob #define	IN_MSGLEN	8
     71        1.1  mjacob #endif
     72        1.1  mjacob typedef struct {
     73        1.1  mjacob 	void *		nt_hba;			/* HBA tag */
     74        1.1  mjacob 	u_int64_t	nt_iid;			/* inititator id */
     75        1.1  mjacob 	u_int64_t	nt_tgt;			/* target id */
     76        1.1  mjacob 	u_int64_t	nt_lun;			/* logical unit */
     77       1.10  mjacob 	u_int32_t	nt_tagval;		/* tag value */
     78        1.1  mjacob 	u_int8_t	nt_bus;			/* bus */
     79        1.1  mjacob 	u_int8_t	nt_tagtype;		/* tag type */
     80        1.1  mjacob 	u_int8_t	nt_msg[IN_MSGLEN];	/* message content */
     81        1.1  mjacob } tmd_msg_t;
     82        1.1  mjacob 
     83        1.1  mjacob typedef struct {
     84        1.1  mjacob 	void *		ev_hba;			/* HBA tag */
     85       1.10  mjacob 	u_int32_t	ev_bus;			/* bus */
     86       1.10  mjacob 	u_int32_t	ev_event;		/* type of async event */
     87        1.1  mjacob } tmd_event_t;
     88        1.1  mjacob 
     89        1.1  mjacob /*
     90        1.3      he  * Suggested Software Target Mode Command Handling structure.
     91        1.1  mjacob  *
     92        1.3      he  * A note about terminology:
     93        1.3      he  *
     94        1.3      he  *   MD stands for "Machine Dependent".
     95        1.3      he  *
     96        1.3      he  *    This driver is structured in three layers: Outer MD, core, and inner MD.
     97        1.3      he  *    The latter also is bus dependent (i.e., is cognizant of PCI bus issues
     98        1.3      he  *    as well as platform issues).
     99        1.3      he  *
    100        1.3      he  *
    101        1.3      he  *   "Outer Layer" means "Other Module"
    102        1.3      he  *
    103        1.3      he  *    Some additional module that actually implements SCSI target command
    104        1.3      he  *    policy is the recipient of incoming commands and the source of the
    105        1.3      he  *    disposition for them.
    106        1.3      he  *
    107        1.3      he  * The command structure below is one suggested possible MD command structure,
    108        1.3      he  * but since the handling of thbis is entirely in the MD layer, there is
    109        1.3      he  * no explicit or implicit requirement that it be used.
    110        1.1  mjacob  *
    111        1.1  mjacob  * The cd_private tag should be used by the MD layer to keep a free list
    112        1.1  mjacob  * of these structures. Code outside of this driver can then use this
    113        1.9  mjacob  * to identify it's own unit structures. That is, when not on the MD
    114        1.1  mjacob  * layer's freelist, the MD layer should shove into it the identifier
    115        1.1  mjacob  * that the outer layer has for it- passed in on an initial QIN_HBA_REG
    116        1.1  mjacob  * call (see below).
    117        1.1  mjacob  *
    118        1.1  mjacob  * The cd_hba tag is a tag that uniquely identifies the HBA this target
    119        1.1  mjacob  * mode command is coming from. The outer layer has to pass this back
    120        1.1  mjacob  * unchanged to avoid chaos.
    121        1.1  mjacob  *
    122        1.1  mjacob  * The cd_iid, cd_tgt, cd_lun and cd_bus tags are used to identify the
    123        1.1  mjacob  * id of the initiator who sent us a command, the target claim to be, the
    124        1.1  mjacob  * lun on the target we claim to be, and the bus instance (for multiple
    125        1.1  mjacob  * bus host adapters) that this applies to (consider it an extra Port
    126        1.1  mjacob  * parameter). The iid, tgt and lun values are deliberately chosen to be
    127        1.1  mjacob  * fat so that, for example, World Wide Names can be used instead of
    128        1.1  mjacob  * the units that the Qlogic firmware uses (in the case where the MD
    129        1.1  mjacob  * layer maintains a port database, for example).
    130        1.1  mjacob  *
    131        1.1  mjacob  * The cd_tagtype field specifies what kind of command tag has been
    132        1.6  mjacob  * sent with the command. The cd_tagval is the tag's value (low 16
    133        1.6  mjacob  * bits). It also contains (in the upper 16 bits) any command handle.
    134        1.6  mjacob  *
    135        1.1  mjacob  *
    136        1.1  mjacob  * N.B.: when the MD layer sends this command to outside software
    137        1.1  mjacob  * the outside software likely *MUST* return the same cd_tagval that
    138        1.1  mjacob  * was in place because this value is likely what the Qlogic f/w uses
    139        1.1  mjacob  * to identify a command.
    140        1.1  mjacob  *
    141        1.1  mjacob  * The cd_cdb contains storage for the passed in command descriptor block.
    142        1.1  mjacob  * This is the maximum size we can get out of the Qlogic f/w. There's no
    143        1.1  mjacob  * passed in length because whoever decodes the command to act upon it
    144        1.1  mjacob  * will know what the appropriate length is.
    145        1.1  mjacob  *
    146        1.1  mjacob  * The tag cd_lflags are the flags set by the MD driver when it gets
    147        1.1  mjacob  * command incoming or when it needs to inform any outside entities
    148        1.1  mjacob  * that the last requested action failed.
    149        1.1  mjacob  *
    150        1.1  mjacob  * The tag cd_hflags should be set by any outside software to indicate
    151        1.1  mjacob  * the validity of sense and status fields (defined below) and to indicate
    152        1.1  mjacob  * the direction data is expected to move. It is an error to have both
    153        1.1  mjacob  * CDFH_DATA_IN and CDFH_DATA_OUT set.
    154        1.1  mjacob  *
    155        1.1  mjacob  * If the CDFH_STSVALID flag is set, the command should be completed (after
    156        1.1  mjacob  * sending any data and/or status). If CDFH_SNSVALID is set and the MD layer
    157        1.1  mjacob  * can also handle sending the associated sense data (either back with an
    158        1.1  mjacob  * FCP RESPONSE IU for Fibre Channel or otherwise automatically handling a
    159        1.1  mjacob  * REQUEST SENSE from the initator for this target/lun), the MD layer will
    160        1.1  mjacob  * set the CDFL_SENTSENSE flag on successful transmission of the sense data.
    161        1.1  mjacob  * It is an error for the CDFH_SNSVALID bit to be set and CDFH_STSVALID not
    162        1.1  mjacob  * to be set. It is an error for the CDFH_SNSVALID be set and the associated
    163        1.1  mjacob  * SCSI status (cd_scsi_status) not be set to CHECK CONDITON.
    164  1.12.10.1    yamt  *
    165        1.1  mjacob  * The tag cd_data points to a data segment to either be filled or
    166        1.1  mjacob  * read from depending on the direction of data movement. The tag
    167        1.1  mjacob  * is undefined if no data direction is set. The MD layer and outer
    168        1.1  mjacob  * layers must agree on the meaning of cd_data.
    169        1.1  mjacob  *
    170        1.1  mjacob  * The tag cd_totlen is the total data amount expected to be moved
    171        1.3      he  * over the life of the command. It *may* be set by the MD layer, possibly
    172        1.3      he  * from the datalen field of an FCP CMND IU unit. If it shows up in the outer
    173        1.3      he  * layers set to zero and the CDB indicates data should be moved, the outer
    174        1.3      he  * layer should set it to the amount expected to be moved.
    175        1.1  mjacob  *
    176        1.2  mjacob  * The tag cd_resid should be the total residual of data not transferred.
    177       1.11     wiz  * The outer layers need to set this at the beginning of command processing
    178        1.2  mjacob  * to equal cd_totlen. As data is successfully moved, this value is decreased.
    179        1.2  mjacob  * At the end of a command, any nonzero residual indicates the number of bytes
    180  1.12.10.1    yamt  * requested but not moved. XXXXXXXXXXXXXXXXXXXXXXX TOO VAGUE!!!
    181        1.1  mjacob  *
    182        1.1  mjacob  * The tag cd_xfrlen is the length of the currently active data transfer.
    183        1.1  mjacob  * This allows several interations between any outside software and the
    184        1.1  mjacob  * MD layer to move data.
    185        1.1  mjacob  *
    186        1.1  mjacob  * The reason that total length and total residual have to be tracked
    187        1.1  mjacob  * is that fibre channel FCP DATA IU units have to have a relative
    188        1.1  mjacob  * offset field.
    189        1.1  mjacob  *
    190        1.1  mjacob  * N.B.: there is no necessary 1-to-1 correspondence between any one
    191        1.1  mjacob  * data transfer segment and the number of CTIOs that will be generated
    192        1.1  mjacob  * satisfy the current data transfer segment. It's not also possible to
    193        1.1  mjacob  * predict how big a transfer can be before it will be 'too big'. Be
    194        1.1  mjacob  * reasonable- a 64KB transfer is 'reasonable'. A 1MB transfer may not
    195        1.1  mjacob  * be. A 32MB transfer is unreasonable. The problem here has to do with
    196        1.1  mjacob  * how CTIOs can be used to map passed data pointers. In systems which
    197        1.1  mjacob  * have page based scatter-gather requirements, each PAGESIZEd chunk will
    198        1.1  mjacob  * consume one data segment descriptor- you get 3 or 4 of them per CTIO.
    199        1.1  mjacob  * The size of the REQUEST QUEUE you drop a CTIO onto is finite (typically
    200        1.1  mjacob  * it's 256, but on some systems it's even smaller, and note you have to
    201        1.1  mjacob  * sure this queue with the initiator side of this driver).
    202        1.1  mjacob  *
    203        1.1  mjacob  * The tags cd_sense and cd_scsi_status are pretty obvious.
    204        1.1  mjacob  *
    205        1.1  mjacob  * The tag cd_error is to communicate between the MD layer and outer software
    206        1.1  mjacob  * the current error conditions.
    207        1.1  mjacob  *
    208       1.10  mjacob  * The tag cd_lreserved, cd_hreserved are scratch areas for use for the MD
    209       1.10  mjacob  * and outer layers respectively.
    210  1.12.10.1    yamt  *
    211        1.1  mjacob  */
    212        1.1  mjacob 
    213       1.10  mjacob #ifndef	TMD_CDBLEN
    214       1.10  mjacob #define	TMD_CDBLEN	16
    215       1.10  mjacob #endif
    216       1.10  mjacob #ifndef	TMD_SENSELEN
    217       1.10  mjacob #define	TMD_SENSELEN	24
    218        1.1  mjacob #endif
    219       1.10  mjacob #ifndef	QCDS
    220       1.10  mjacob #define	QCDS	8
    221        1.1  mjacob #endif
    222        1.1  mjacob 
    223        1.1  mjacob typedef struct tmd_cmd {
    224       1.10  mjacob 	void *			cd_private;	/* private data pointer */
    225        1.1  mjacob 	void *			cd_hba;		/* HBA tag */
    226        1.1  mjacob 	void *			cd_data;	/* 'pointer' to data */
    227        1.1  mjacob 	u_int64_t		cd_iid;		/* initiator ID */
    228        1.1  mjacob 	u_int64_t		cd_tgt;		/* target id */
    229        1.1  mjacob 	u_int64_t		cd_lun;		/* logical unit */
    230        1.6  mjacob 	u_int32_t		cd_tagval;	/* tag value */
    231       1.10  mjacob 	u_int32_t		cd_lflags;	/* flags lower level sets */
    232       1.10  mjacob 	u_int32_t		cd_hflags;	/* flags higher level sets */
    233        1.1  mjacob 	u_int32_t		cd_totlen;	/* total data requirement */
    234        1.1  mjacob 	u_int32_t		cd_resid;	/* total data residual */
    235        1.1  mjacob 	u_int32_t		cd_xfrlen;	/* current data requirement */
    236        1.1  mjacob 	int32_t			cd_error;	/* current error */
    237       1.10  mjacob 	u_int32_t
    238       1.10  mjacob 		cd_scsi_status	: 16,	/* closing SCSI status */
    239       1.10  mjacob 				: 7,
    240       1.10  mjacob 	    	cd_chan		: 1,	/* channel on card */
    241       1.10  mjacob 				: 2,
    242       1.10  mjacob 		cd_tagtype	: 6;	/* tag type */
    243       1.10  mjacob 	u_int8_t		cd_senselen;
    244       1.10  mjacob 	u_int8_t		cd_cdblen;
    245       1.10  mjacob 	u_int8_t		cd_sense[TMD_SENSELEN];
    246       1.10  mjacob 	u_int8_t		cd_cdb[TMD_CDBLEN];	/* Command */
    247       1.10  mjacob 	union {
    248       1.10  mjacob 		void *		ptrs[QCDS / sizeof (void *)];
    249       1.10  mjacob 		u_int64_t	llongs[QCDS / sizeof (u_int64_t)];
    250       1.10  mjacob 		u_int32_t	longs[QCDS / sizeof (u_int32_t)];
    251       1.10  mjacob 		u_int16_t	shorts[QCDS / sizeof (u_int16_t)];
    252       1.10  mjacob 		u_int8_t	bytes[QCDS];
    253       1.10  mjacob 	} cd_lreserved[2], cd_hreserved[2];
    254        1.1  mjacob } tmd_cmd_t;
    255        1.1  mjacob 
    256       1.10  mjacob #ifndef	TMD_SIZE
    257       1.10  mjacob #define	TMD_SIZE	(sizeof (tmd_cmd_t))
    258       1.10  mjacob #endif
    259       1.10  mjacob 
    260       1.10  mjacob /*
    261       1.10  mjacob  * Note that NODISC (obviously) doesn't apply to non-SPI transport.
    262       1.10  mjacob  *
    263       1.10  mjacob  * Note that knowing the data direction and lengh at the time of receipt of
    264       1.10  mjacob  * a command from the initiator is a feature only of Fibre Channel.
    265       1.10  mjacob  *
    266       1.10  mjacob  * The CDFL_BIDIR is in anticipation of the adoption of some newer
    267       1.10  mjacob  * features required by OSD.
    268       1.10  mjacob  *
    269       1.10  mjacob  * The principle selector for MD layer to know whether data is to
    270       1.10  mjacob  * be transferred in any QOUT_TMD_CONT call is cd_xfrlen- the
    271       1.10  mjacob  * flags CDFH_DATA_IN and CDFH_DATA_OUT define which direction.
    272       1.10  mjacob  */
    273       1.10  mjacob #define	CDFL_SNSVALID	0x01		/* sense data (from f/w) good */
    274       1.10  mjacob #define	CDFL_SENTSTATUS	0x02		/* last action sent status */
    275       1.10  mjacob #define	CDFL_DATA_IN	0x04		/* target (us) -> initiator (them) */
    276       1.10  mjacob #define	CDFL_DATA_OUT	0x08		/* initiator (them) -> target (us) */
    277       1.10  mjacob #define	CDFL_BIDIR	0x0C		/* bidirectional data */
    278        1.3      he #define	CDFL_ERROR	0x10		/* last action ended in error */
    279       1.10  mjacob #define	CDFL_NODISC	0x20		/* disconnects disabled */
    280       1.10  mjacob #define	CDFL_SENTSENSE	0x40		/* last action sent sense data */
    281       1.10  mjacob #define	CDFL_BUSY	0x80		/* this command is not on a free list */
    282       1.10  mjacob #define	CDFL_PRIVATE	0xFF000000	/* private layer flags */
    283        1.1  mjacob 
    284       1.10  mjacob #define	CDFH_SNSVALID	0x01		/* sense data (from outer layer) good */
    285        1.1  mjacob #define	CDFH_STSVALID	0x02		/* status valid */
    286        1.1  mjacob #define	CDFH_DATA_IN	0x04		/* target (us) -> initiator (them) */
    287        1.1  mjacob #define	CDFH_DATA_OUT	0x08		/* initiator (them) -> target (us) */
    288        1.1  mjacob #define	CDFH_DATA_MASK	0x0C		/* mask to cover data direction */
    289       1.10  mjacob #define	CDFH_PRIVATE	0xFF000000	/* private layer flags */
    290       1.10  mjacob 
    291        1.1  mjacob 
    292        1.1  mjacob /*
    293        1.1  mjacob  * Action codes set by the Qlogic MD target driver for
    294        1.1  mjacob  * the external layer to figure out what to do with.
    295        1.1  mjacob  */
    296        1.1  mjacob typedef enum {
    297        1.1  mjacob 	QOUT_HBA_REG=0,	/* the argument is a pointer to a hba_register_t */
    298       1.10  mjacob 	QOUT_ENABLE,	/* the argument is a pointer to a enadis_t */
    299       1.10  mjacob 	QOUT_DISABLE,	/* the argument is a pointer to a enadis_t */
    300        1.1  mjacob 	QOUT_TMD_START,	/* the argument is a pointer to a tmd_cmd_t */
    301        1.1  mjacob 	QOUT_TMD_DONE,	/* the argument is a pointer to a tmd_cmd_t */
    302        1.1  mjacob 	QOUT_TEVENT,	/* the argument is a pointer to a tmd_event_t */
    303        1.1  mjacob 	QOUT_TMSG,	/* the argument is a pointer to a tmd_msg_t */
    304       1.10  mjacob 	QOUT_IOCTL,	/* the argument is a pointer to a ioctl_cmd_t */
    305        1.1  mjacob 	QOUT_HBA_UNREG	/* the argument is a pointer to a hba_register_t */
    306        1.1  mjacob } tact_e;
    307        1.1  mjacob 
    308        1.1  mjacob /*
    309        1.1  mjacob  * Action codes set by the external layer for the
    310        1.1  mjacob  * MD Qlogic driver to figure out what to do with.
    311        1.1  mjacob  */
    312        1.1  mjacob typedef enum {
    313       1.10  mjacob 	QIN_HBA_REG=99,	/* the argument is a pointer to a hba_register_t */
    314       1.10  mjacob 	QIN_ENABLE,	/* the argument is a pointer to a enadis_t */
    315       1.10  mjacob 	QIN_DISABLE,	/* the argument is a pointer to a enadis_t */
    316        1.1  mjacob 	QIN_TMD_CONT,	/* the argument is a pointer to a tmd_cmd_t */
    317       1.10  mjacob 	QIN_TMD_FIN,	/* the argument is a pointer to a tmd_cmd_t */
    318       1.10  mjacob 	QIN_IOCTL,	/* the argument is a pointer to a ioctl_cmd_t */
    319       1.10  mjacob 	QIN_HBA_UNREG,	/* the argument is a pointer to a hba_register_t */
    320        1.1  mjacob } qact_e;
    321        1.1  mjacob 
    322       1.10  mjacob 
    323        1.1  mjacob /*
    324        1.1  mjacob  * A word about the START/CONT/DONE/FIN dance:
    325        1.1  mjacob  *
    326        1.1  mjacob  *	When the HBA is enabled for receiving commands, one may	show up
    327        1.1  mjacob  *	without notice. When that happens, the Qlogic target mode driver
    328        1.1  mjacob  *	gets a tmd_cmd_t, fills it with the info that just arrived, and
    329        1.6  mjacob  *	calls the outer layer with a QOUT_TMD_START code and pointer to
    330        1.1  mjacob  *	the tmd_cmd_t.
    331        1.1  mjacob  *
    332        1.1  mjacob  *	The outer layer decodes the command, fetches data, prepares stuff,
    333        1.1  mjacob  *	whatever, and starts by passing back the pointer with a QIN_TMD_CONT
    334        1.1  mjacob  *	code which causes the Qlogic target mode driver to generate CTIOs to
    335        1.1  mjacob  *	satisfy whatever action needs to be taken. When those CTIOs complete,
    336        1.1  mjacob  *	the Qlogic target driver sends the pointer to the cmd_tmd_t back with
    337        1.1  mjacob  *	a QOUT_TMD_DONE code. This repeats for as long as necessary.
    338        1.1  mjacob  *
    339        1.1  mjacob  *	The outer layer signals it wants to end the command by settings within
    340        1.1  mjacob  *	the tmd_cmd_t itself. When the final QIN_TMD_CONT is reported completed,
    341        1.1  mjacob  *	the outer layer frees the tmd_cmd_t by sending the pointer to it
    342        1.1  mjacob  *	back with a QIN_TMD_FIN code.
    343        1.1  mjacob  *
    344        1.1  mjacob  *	The graph looks like:
    345        1.1  mjacob  *
    346        1.1  mjacob  *	QOUT_TMD_START -> [ QIN_TMD_CONT -> QOUT_TMD_DONE ] * -> QIN_TMD_FIN.
    347        1.3      he  *
    348        1.3      he  */
    349        1.3      he 
    350        1.3      he /*
    351       1.10  mjacob  * A word about ENABLE/DISABLE: the argument is a pointer to a enadis_t
    352       1.10  mjacob  * with cd_hba, cd_iid, cd_chan, cd_tgt and cd_lun filled out.
    353       1.10  mjacob  *
    354       1.10  mjacob  * If an error occurs in either enabling or disabling the described lun
    355       1.10  mjacob  * cd_error is set with an appropriate non-zero value.
    356        1.3      he  *
    357        1.3      he  * Logical unit zero must be the first enabled and the last disabled.
    358        1.1  mjacob  */
    359       1.10  mjacob typedef struct {
    360       1.10  mjacob 	void *			cd_private;	/* for outer layer usage */
    361       1.10  mjacob 	void *			cd_hba;		/* HBA tag */
    362       1.10  mjacob 	u_int64_t		cd_iid;		/* initiator ID */
    363       1.10  mjacob 	u_int64_t		cd_tgt;		/* target id */
    364       1.10  mjacob 	u_int64_t		cd_lun;		/* logical unit */
    365       1.10  mjacob 	u_int8_t		cd_chan;	/* channel on card */
    366       1.10  mjacob 	int32_t			cd_error;
    367       1.10  mjacob } enadis_t;
    368        1.1  mjacob 
    369        1.1  mjacob /*
    370        1.1  mjacob  * This structure is used to register to other software modules the
    371        1.1  mjacob  * binding of an HBA identifier, driver name and instance and the
    372       1.11     wiz  * lun width capabilities of this target driver. It's up to each
    373        1.1  mjacob  * platform to figure out how it wants to do this, but a typical
    374        1.1  mjacob  * sequence would be for the MD layer to find some external module's
    375        1.1  mjacob  * entry point and start by sending a QOUT_HBA_REG with info filled
    376        1.1  mjacob  * in, and the external module to call back with a QIN_HBA_REG that
    377        1.1  mjacob  * passes back the corresponding information.
    378        1.1  mjacob  */
    379       1.10  mjacob #define	QR_VERSION	1
    380        1.1  mjacob typedef struct {
    381        1.1  mjacob 	void *	r_identity;
    382       1.10  mjacob 	void   (*r_action)(qact_e, void *);
    383        1.1  mjacob 	char	r_name[8];
    384        1.1  mjacob 	int	r_inst;
    385       1.10  mjacob 	int	r_version;
    386       1.10  mjacob 	enum { R_FC, R_SCSI } r_type;
    387        1.1  mjacob } hba_register_t;
    388       1.10  mjacob 
    389       1.10  mjacob /*
    390       1.10  mjacob  * This structure is used to pass an encapsulated ioctl through to the
    391       1.10  mjacob  * MD layer. In many implementations it's often convenient to open just
    392       1.10  mjacob  * one device, but actions you want to take need to be taken on the
    393       1.10  mjacob  * underlying HBA. Rather than invent a separate protocol for each action,
    394       1.10  mjacob  * an ioctl passthrough seems simpler.
    395       1.10  mjacob  *
    396       1.10  mjacob  * In order to avoid cross domain copy problems, though, the caller will
    397       1.10  mjacob  * be responsible for allocating and providing a staging area for all ioctl
    398       1.10  mjacob  * related data. This, unavoidably, requires some ioctl decode capability
    399       1.10  mjacob  * in the outer layer code.`
    400       1.10  mjacob  *
    401       1.10  mjacob  * And also, albeit being cheesy, we'll define a few internal ioctls here.
    402       1.10  mjacob  */
    403       1.10  mjacob typedef struct {
    404       1.10  mjacob 	void *	i_identity;	/* HBA tag */
    405       1.10  mjacob 	void *	i_syncptr;	/* synchronization pointer */
    406       1.10  mjacob 	int	i_cmd;		/* ioctl command */
    407       1.10  mjacob 	void *	i_arg;		/* ioctl argument area */
    408       1.10  mjacob 	int	i_errno;	/* ioctl error return */
    409       1.10  mjacob } ioctl_cmd_t;
    410       1.10  mjacob 
    411       1.10  mjacob #define	QI_IOC	('Q' << 8)
    412       1.10  mjacob #define	QI_SCSI_TINI	QI_IOC|0
    413       1.10  mjacob #define	QI_SCSI_CMD	QI_IOC|1
    414       1.10  mjacob #define	QI_WWPN_XLT	QI_IOC|2
    415       1.10  mjacob 
    416       1.10  mjacob /*
    417       1.10  mjacob  * Target handler functions.
    418       1.10  mjacob  *
    419       1.10  mjacob  * The MD target handler function (the outer layer calls this)
    420       1.10  mjacob  * should be be prototyped like:
    421       1.10  mjacob  *
    422       1.10  mjacob  *	void target_action(qact_e, void *arg)
    423       1.10  mjacob  *
    424       1.10  mjacob  * The outer layer target handler function (the MD layer calls this)
    425       1.10  mjacob  * should be be prototyped like:
    426       1.10  mjacob  *
    427       1.10  mjacob  *	void system_target_handler(tact_e, void *arg)
    428       1.10  mjacob  */
    429       1.10  mjacob 
    430