Home | History | Annotate | Line # | Download | only in ic
isp_tpublic.h revision 1.17
      1  1.17  mjacob /* $NetBSD: isp_tpublic.h,v 1.17 2008/05/11 02:08:11 mjacob Exp $ */
      2  1.16  mjacob /*-
      3  1.16  mjacob  *  Copyright (c) 1997-2008 by Matthew Jacob
      4  1.16  mjacob  *  All rights reserved.
      5  1.16  mjacob  *
      6  1.16  mjacob  *  Redistribution and use in source and binary forms, with or without
      7  1.16  mjacob  *  modification, are permitted provided that the following conditions
      8  1.16  mjacob  *  are met:
      9  1.15  mjacob  *
     10  1.16  mjacob  *  1. Redistributions of source code must retain the above copyright
     11  1.16  mjacob  *     notice, this list of conditions and the following disclaimer.
     12  1.16  mjacob  *  2. Redistributions in binary form must reproduce the above copyright
     13  1.16  mjacob  *     notice, this list of conditions and the following disclaimer in the
     14  1.16  mjacob  *     documentation and/or other materials provided with the distribution.
     15  1.15  mjacob  *
     16  1.16  mjacob  *  THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  1.16  mjacob  *  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.16  mjacob  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.16  mjacob  *  ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
     20  1.16  mjacob  *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.16  mjacob  *  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.16  mjacob  *  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.16  mjacob  *  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.16  mjacob  *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.16  mjacob  *  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.16  mjacob  *  SUCH DAMAGE.
     27   1.1  mjacob  */
     28  1.15  mjacob /*
     29  1.15  mjacob  * Host Adapter Public Target Interface Structures && Routines
     30  1.15  mjacob  */
     31  1.16  mjacob /*
     32  1.16  mjacob  * A note about terminology:
     33  1.16  mjacob  *
     34  1.16  mjacob  *  "Inner Layer" means this driver (isp and the isp_tpublic API).
     35  1.16  mjacob  *
     36  1.16  mjacob  *    This module includes the both generic and platform specific pieces.
     37  1.16  mjacob  *
     38  1.16  mjacob  *  "Outer Layer" means another (external) module.
     39  1.16  mjacob  *
     40  1.16  mjacob  *    This is an additional module that actually implements SCSI target command
     41  1.16  mjacob  *    decode and is the recipient of incoming commands and the source of the
     42  1.16  mjacob  *    disposition for them.
     43  1.16  mjacob  */
     44  1.15  mjacob 
     45  1.15  mjacob #ifndef    _ISP_TPUBLIC_H
     46  1.15  mjacob #define    _ISP_TPUBLIC_H    1
     47  1.15  mjacob 
     48  1.15  mjacob /*
     49  1.16  mjacob  * Action codes set by the Inner Layer for the outer layer to figure out what to do with.
     50  1.15  mjacob  */
     51  1.15  mjacob typedef enum {
     52  1.15  mjacob     QOUT_HBA_REG=0,     /* the argument is a pointer to a hba_register_t */
     53  1.15  mjacob     QOUT_ENABLE,        /* the argument is a pointer to a enadis_t */
     54  1.15  mjacob     QOUT_DISABLE,       /* the argument is a pointer to a enadis_t */
     55  1.15  mjacob     QOUT_TMD_START,     /* the argument is a pointer to a tmd_cmd_t */
     56  1.16  mjacob     QOUT_TMD_DONE,      /* the argument is a pointer to a tmd_xact_t */
     57  1.15  mjacob     QOUT_NOTIFY,        /* the argument is a pointer to a tmd_notify_t */
     58  1.15  mjacob     QOUT_HBA_UNREG      /* the argument is a pointer to a hba_register_t */
     59  1.15  mjacob } tact_e;
     60  1.15  mjacob 
     61  1.15  mjacob /*
     62  1.16  mjacob  * Action codes set by the outer layer for the
     63  1.16  mjacob  * inner layer to figure out what to do with.
     64  1.15  mjacob  */
     65  1.15  mjacob typedef enum {
     66  1.15  mjacob     QIN_HBA_REG=99,     /* the argument is a pointer to a hba_register_t */
     67  1.15  mjacob     QIN_GETINFO,        /* the argument is a pointer to a info_t */
     68  1.15  mjacob     QIN_SETINFO,        /* the argument is a pointer to a info_t */
     69  1.15  mjacob     QIN_GETDLIST,       /* the argument is a pointer to a fc_dlist_t */
     70  1.15  mjacob     QIN_ENABLE,         /* the argument is a pointer to a enadis_t */
     71  1.15  mjacob     QIN_DISABLE,        /* the argument is a pointer to a enadis_t */
     72  1.16  mjacob     QIN_TMD_CONT,       /* the argument is a pointer to a tmd_xact_t */
     73  1.15  mjacob     QIN_TMD_FIN,        /* the argument is a pointer to a tmd_cmd_t */
     74  1.15  mjacob     QIN_NOTIFY_ACK,     /* the argument is a pointer to a tmd_notify_t */
     75  1.15  mjacob     QIN_HBA_UNREG,      /* the argument is a pointer to a hba_register_t */
     76  1.15  mjacob } qact_e;
     77  1.15  mjacob 
     78  1.15  mjacob /*
     79  1.16  mjacob  * This structure is used to register to the outer layer the
     80  1.15  mjacob  * binding of an HBA identifier, driver name and instance and the
     81  1.16  mjacob  * lun width capapbilities of this inner layer. It's up to each
     82  1.16  mjacob  * platform to figure out how it wants to actually implement this.
     83  1.16  mjacob  * A typical sequence would be for the MD layer to find some external
     84  1.16  mjacob  * module's entry point and start by sending a QOUT_HBA_REG with info
     85  1.16  mjacob  * filled in, and the external module to call back with a QIN_HBA_REG
     86  1.16  mjacob  * that passes back the corresponding information.
     87  1.16  mjacob  *
     88  1.16  mjacob  * The r_version tag defines the version of this API.
     89  1.15  mjacob  */
     90  1.17  mjacob #define    QR_VERSION    20
     91  1.15  mjacob typedef struct {
     92  1.16  mjacob     /* NB: structure tags from here to r_version must never change */
     93  1.15  mjacob     void *                  r_identity;
     94  1.15  mjacob     void                    (*r_action)(qact_e, void *);
     95  1.15  mjacob     char                    r_name[8];
     96  1.15  mjacob     int                     r_inst;
     97  1.15  mjacob     int                     r_version;
     98  1.15  mjacob     uint32_t                r_locator;
     99  1.15  mjacob     uint32_t                r_nchannels;
    100  1.15  mjacob     enum { R_FC, R_SPI }    r_type;
    101  1.15  mjacob     void *                  r_private;
    102  1.15  mjacob } hba_register_t;
    103   1.1  mjacob 
    104   1.1  mjacob /*
    105  1.15  mjacob  * An information structure that is used to get or set per-channel transport layer parameters.
    106   1.1  mjacob  */
    107  1.15  mjacob typedef struct {
    108  1.15  mjacob     void *                  i_identity;
    109  1.15  mjacob     enum { I_FC, I_SPI }    i_type;
    110  1.15  mjacob     int                     i_channel;
    111  1.15  mjacob     int                     i_error;
    112  1.15  mjacob     union {
    113  1.15  mjacob         struct {
    114  1.15  mjacob             uint64_t    wwnn_nvram;
    115  1.15  mjacob             uint64_t    wwpn_nvram;
    116  1.15  mjacob             uint64_t    wwnn;
    117  1.15  mjacob             uint64_t    wwpn;
    118  1.15  mjacob         } fc;
    119  1.15  mjacob         struct {
    120  1.15  mjacob             int         iid;
    121  1.15  mjacob         } spi;
    122  1.15  mjacob     }                       i_id;
    123  1.15  mjacob } info_t;
    124   1.1  mjacob 
    125  1.15  mjacob /*
    126  1.15  mjacob  * An information structure to return a list of logged in WWPNs. FC specific.
    127  1.15  mjacob  */
    128   1.1  mjacob typedef struct {
    129  1.15  mjacob     void *                  d_identity;
    130  1.15  mjacob     int                     d_channel;
    131  1.15  mjacob     int                     d_error;
    132  1.15  mjacob     int                     d_count;
    133  1.15  mjacob     uint64_t *              d_wwpns;
    134  1.15  mjacob } fc_dlist_t;
    135  1.16  mjacob 
    136  1.15  mjacob /*
    137  1.16  mjacob  * Notify structure- these are for asynchronous events that need to be sent
    138  1.16  mjacob  * as notifications to the outer layer. It should be pretty self-explanatory.
    139  1.15  mjacob  */
    140  1.15  mjacob typedef enum {
    141  1.16  mjacob     NT_UNKNOWN=0x999,
    142  1.15  mjacob     NT_ABORT_TASK=0x1000,
    143  1.15  mjacob     NT_ABORT_TASK_SET,
    144  1.15  mjacob     NT_CLEAR_ACA,
    145  1.15  mjacob     NT_CLEAR_TASK_SET,
    146  1.15  mjacob     NT_LUN_RESET,
    147  1.15  mjacob     NT_TARGET_RESET,
    148  1.15  mjacob     NT_BUS_RESET,
    149  1.15  mjacob     NT_LIP_RESET,
    150  1.15  mjacob     NT_LINK_UP,
    151  1.15  mjacob     NT_LINK_DOWN,
    152  1.15  mjacob     NT_LOGOUT,
    153  1.15  mjacob     NT_HBA_RESET
    154  1.15  mjacob } tmd_ncode_t;
    155  1.15  mjacob 
    156  1.15  mjacob typedef struct tmd_notify {
    157  1.15  mjacob     void *      nt_hba;         /* HBA tag */
    158  1.15  mjacob     uint64_t    nt_iid;         /* inititator id */
    159  1.15  mjacob     uint64_t    nt_tgt;         /* target id */
    160  1.15  mjacob     uint16_t    nt_lun;         /* logical unit */
    161  1.15  mjacob     uint16_t                : 15,
    162  1.15  mjacob                 nt_need_ack : 1;    /* this notify needs an ACK */
    163  1.15  mjacob     uint64_t    nt_tagval;      /* tag value */
    164  1.15  mjacob     uint32_t    nt_channel;     /* channel id */
    165  1.15  mjacob     tmd_ncode_t nt_ncode;       /* action */
    166  1.17  mjacob     void *      nt_tmd;         /* TMD for this notify */
    167  1.15  mjacob     void *      nt_lreserved;
    168  1.15  mjacob     void *      nt_hreserved;
    169  1.15  mjacob } tmd_notify_t;
    170  1.15  mjacob #define LUN_ANY     0xffff
    171  1.15  mjacob #define TGT_ANY     ((uint64_t) -1)
    172  1.16  mjacob #ifdef  INI_ANY
    173  1.15  mjacob #define INI_ANY     ((uint64_t) -1)
    174  1.16  mjacob #endif
    175  1.16  mjacob #ifndef INI_NONE
    176  1.16  mjacob #define INI_NONE    ((uint64_t) 0)
    177  1.16  mjacob #endif
    178  1.15  mjacob #define TAG_ANY     ((uint64_t) 0)
    179  1.15  mjacob #define MATCH_TMD(tmd, iid, lun, tag)                   \
    180  1.15  mjacob     (                                                   \
    181  1.15  mjacob         (tmd) &&                                        \
    182  1.15  mjacob         (iid == INI_ANY || iid == tmd->cd_iid) &&       \
    183  1.15  mjacob         (lun == LUN_ANY || lun == tmd->cd_lun) &&       \
    184  1.15  mjacob         (tag == TAG_ANY || tag == tmd->cd_tagval)       \
    185  1.15  mjacob     )
    186   1.1  mjacob 
    187  1.15  mjacob /*
    188  1.16  mjacob  * Lun ENABLE/DISABLE
    189  1.16  mjacob  *
    190  1.15  mjacob  * A word about ENABLE/DISABLE: the argument is a pointer to a enadis_t
    191  1.16  mjacob  * with en_hba, en_chan and en_lun filled out. We used to have an iid
    192  1.16  mjacob  * and target pair, but this just gets silly so we made initiator id
    193  1.16  mjacob  * and target id something you set, once, elsewhere.
    194  1.15  mjacob  *
    195  1.15  mjacob  * If an error occurs in either enabling or disabling the described lun
    196  1.16  mjacob  * en_error is set with an appropriate non-zero value.
    197  1.15  mjacob  */
    198   1.1  mjacob typedef struct {
    199  1.15  mjacob     void *          en_private;     /* for outer layer usage */
    200  1.15  mjacob     void *          en_hba;         /* HBA tag */
    201  1.15  mjacob     uint16_t        en_lun;         /* logical unit */
    202  1.15  mjacob     uint16_t        en_chan;        /* channel on card */
    203  1.15  mjacob     int             en_error;
    204  1.15  mjacob } enadis_t;
    205   1.1  mjacob 
    206  1.16  mjacob 
    207  1.16  mjacob 
    208   1.1  mjacob /*
    209  1.16  mjacob  * Data Transaction
    210   1.1  mjacob  *
    211  1.16  mjacob  * A tmd_xact_t is a structure used to describe a transaction within
    212  1.16  mjacob  * an overall command. It used to be part of the overall command,
    213  1.16  mjacob  * but it became desirable to allow for multiple simultaneous
    214  1.16  mjacob  * transfers for a command to happen. Generally these structures
    215  1.16  mjacob  * define data to be moved (along with the relative offset within
    216  1.16  mjacob  * the overall command) with the last structure containing status
    217  1.16  mjacob  * and sense (if needed) as well.
    218  1.16  mjacob  *
    219  1.16  mjacob  * The td_cmd tag points back to the owning command.
    220  1.16  mjacob  *
    221  1.16  mjacob  * The td_data tag points to the (platform specific) data descriptor.
    222  1.16  mjacob  *
    223  1.16  mjacob  * The td_lprivate is for use by the Inner Layer for private usage.
    224  1.16  mjacob  *
    225  1.16  mjacob  * The td_xfrlen says whether this transaction is moving data- if nonzero.
    226  1.16  mjacob  *
    227  1.16  mjacob  * The td_offset states what the relative offset within the comamnd the
    228  1.16  mjacob  * data transfer will start at. It is undefined if td_xfrlen is zero.
    229  1.16  mjacob  *
    230  1.16  mjacob  * The td_error flag will note any errors that occurred during an attempt
    231  1.16  mjacob  * to start this transaction. The inner layer is responsible for setting
    232  1.16  mjacob  * this.
    233  1.16  mjacob  *
    234  1.16  mjacob  * The td_hflags tag is set by the outer layer to indicate how the inner
    235  1.16  mjacob  * layer is supposed to treat this transaction.
    236  1.16  mjacob  *
    237  1.16  mjacob  * The td_lflags tag is set by the inner layer to indicate whether this
    238  1.16  mjacob  * transaction sent status and/or sense. Note that (much as it hurts),
    239  1.16  mjacob  * this API allows the inner layer to *fail* to send sense even if asked
    240  1.16  mjacob  * to- that is, AUTOSENSE is not a requirement of this API and the outer
    241  1.16  mjacob  * layer has to be prepared for this (unlikely) eventuality.
    242  1.16  mjacob  */
    243  1.16  mjacob 
    244  1.16  mjacob typedef struct tmd_cmd tmd_cmd_t;
    245  1.16  mjacob typedef struct tmd_xact {
    246  1.16  mjacob     tmd_cmd_t *         td_cmd;                 /* cross-ref to tmd_cmd_t */
    247  1.16  mjacob     void *              td_data;                /* data descriptor */
    248  1.16  mjacob     void *              td_lprivate;            /* private for lower layer */
    249  1.16  mjacob     uint32_t            td_xfrlen;              /* size of this data load */
    250  1.16  mjacob     uint32_t            td_offset;              /* offset for this data load */
    251  1.16  mjacob     int                 td_error;               /* error with this transfer */
    252  1.16  mjacob     uint8_t             td_hflags;              /* flags set by caller */
    253  1.16  mjacob     uint8_t             td_lflags;              /* flags set by callee */
    254  1.16  mjacob } tmd_xact_t;
    255  1.16  mjacob 
    256  1.16  mjacob #define TDFH_STSVALID   0x01    /* status is valid - include it */
    257  1.16  mjacob #define TDFH_SNSVALID   0x02    /* sense data (from outer layer) good - include it */
    258  1.16  mjacob #define TDFH_DATA_IN    0x04    /* target (us) -> initiator (them) */
    259  1.16  mjacob #define TDFH_DATA_OUT   0x08    /* initiator (them) -> target (us) */
    260  1.16  mjacob #define TDFH_DATA_MASK  0x0C    /* mask to cover data direction */
    261  1.16  mjacob #define TDFH_PRIVATE    0xF0    /* private outer layer usage */
    262  1.16  mjacob 
    263  1.16  mjacob #define TDFL_SENTSTATUS 0x01    /* this transaction sent status */
    264  1.16  mjacob #define TDFL_SENTSENSE  0x02    /* this transaction sent sense data */
    265  1.16  mjacob #define TDFL_ERROR      0x04    /* this transaction had an error */
    266  1.16  mjacob #define TDFL_PRIVATE    0xF0    /* private inner layer usage */
    267  1.16  mjacob 
    268  1.16  mjacob /*
    269  1.16  mjacob  * The command structure below the SCSI Command structure that is
    270  1.16  mjacob  * is the whole point of this API. After a LUN is (or LUNS are)
    271  1.16  mjacob  * enabled, initiators who send commands addressed to the port,
    272  1.16  mjacob  * channel and lun that have been enabled cause an interrupt which
    273  1.16  mjacob  * causes the chip to receive the command and present it to the
    274  1.16  mjacob  * inner layer. The inner layer allocates one of this command
    275  1.16  mjacob  * structures and copies relevant information to it and sends it
    276  1.16  mjacob  * to the outer layer with the action QOUT_TMD_START.
    277  1.16  mjacob  *
    278  1.16  mjacob  * The outer layer is then responsible for command decode and is responsible
    279  1.16  mjacob  * for sending any transactions back (via a QIN_TMD_CONT) to the inner layer
    280  1.16  mjacob  * that (optionally) moves data and then sends closing status.
    281  1.16  mjacob  *
    282  1.16  mjacob  * The outer layer, when informed of the status of the final transaction
    283  1.16  mjacob  * then releases this structure by sending it back to the inner layer
    284  1.16  mjacob  * with the action QOUT_TMD_FIN.
    285   1.3      he  *
    286  1.16  mjacob  * The structure tag meanings are as described below.
    287   1.3      he  *
    288  1.16  mjacob  * The cd_hba tag is a tag that uniquely identifies the HBA this target
    289  1.16  mjacob  * mode command is coming from. The outer layer has to pass this back
    290  1.16  mjacob  * unchanged to avoid chaos. It is identical to the r_identity tag used
    291  1.16  mjacob  * by the inner layer to register with the outer layer.
    292   1.3      he  *
    293  1.16  mjacob  * The cd_iid, cd_channel, cd_tgt and cd_lun tags are used to identify the
    294  1.16  mjacob  * the initiator who sent us a command, the channel on the this particular
    295  1.16  mjacob  * hardware port we arrived on (for multiple channel devices), the target we
    296  1.16  mjacob  * claim to be, and the lun on that target.
    297  1.16  mjacob  *
    298  1.16  mjacob  * The cd_tagval field is a tag that uniquely describes this tag. It may
    299  1.16  mjacob  * or may not have any correspondence to an underying hardware tag. The
    300  1.16  mjacob  * outer layer must pass this back unchanged or chaos will result.
    301   1.3      he  *
    302  1.16  mjacob  * The tag cd_totlen is the total data amount expected to be moved
    303  1.16  mjacob  * for this command. This will be set to non-zero for transports
    304  1.16  mjacob  * that know this value from the transport level (e.g., Fibre Channel).
    305  1.16  mjacob  * If it shows up in the outer layers set to zero, the total data length
    306  1.16  mjacob  * must be inferred from the CDB.
    307  1.16  mjacob  *
    308  1.16  mjacob  * The tag cd_moved is the total amount of data moved so far. It is the
    309  1.16  mjacob  * responsibilty of the inner layer to set this for every transaction and
    310  1.16  mjacob  * to keep track of it so that transport level residuals may be correctly
    311  1.16  mjacob  * set.
    312   1.1  mjacob  *
    313  1.16  mjacob  * The cd_cdb contains storage for the passed in SCSI command.
    314   1.1  mjacob  *
    315  1.15  mjacob  * The cd_tagtype field specifies what kind of command tag type, if
    316  1.16  mjacob  * any, has been sent with this command.
    317   1.1  mjacob  *
    318  1.16  mjacob  * The tag cd_flags has some junk flags set but mostly has flags reserved for outer layer use.
    319   1.1  mjacob  *
    320  1.16  mjacob  * The tags cd_sense and cd_scsi_status are self-explanatory.
    321   1.1  mjacob  *
    322  1.16  mjacob  * The cd_xact tag is the first or only transaction structure related to this command.
    323   1.1  mjacob  *
    324  1.16  mjacob  * The tag cd_lreserved, cd_hreserved are scratch areas for use for the outer and inner layers respectively.
    325  1.15  mjacob  *
    326   1.1  mjacob  */
    327   1.1  mjacob 
    328  1.16  mjacob #ifndef TMD_CDBLEN
    329  1.16  mjacob #define TMD_CDBLEN       16
    330  1.16  mjacob #endif
    331  1.16  mjacob #ifndef TMD_SENSELEN
    332  1.16  mjacob #define TMD_SENSELEN     18
    333  1.10  mjacob #endif
    334  1.16  mjacob #ifndef QCDS
    335  1.16  mjacob #define QCDS             (sizeof (uint64_t))
    336   1.1  mjacob #endif
    337  1.16  mjacob #ifndef TMD_PRIV_LO
    338  1.16  mjacob #define TMD_PRIV_LO 4
    339  1.16  mjacob #endif
    340  1.16  mjacob #ifndef TMD_PRIV_HI
    341  1.16  mjacob #define TMD_PRIV_HI 4
    342   1.1  mjacob #endif
    343   1.1  mjacob 
    344  1.16  mjacob struct tmd_cmd {
    345  1.15  mjacob     void *              cd_hba;     /* HBA tag */
    346  1.15  mjacob     uint64_t            cd_iid;     /* initiator ID */
    347  1.15  mjacob     uint64_t            cd_tgt;     /* target id */
    348  1.16  mjacob     uint64_t            cd_tagval;  /* tag value */
    349  1.15  mjacob     uint8_t             cd_lun[8];  /* logical unit */
    350  1.15  mjacob     uint32_t            cd_totlen;  /* total data load */
    351  1.16  mjacob     uint32_t            cd_moved;   /* total data moved so far */
    352  1.16  mjacob     uint16_t            cd_channel; /* channel index */
    353  1.16  mjacob     uint16_t            cd_flags;   /* flags */
    354  1.16  mjacob     uint16_t            cd_req_cnt; /* how many tmd_xact_t's are active */
    355  1.16  mjacob     uint8_t             cd_cdb[TMD_CDBLEN];
    356  1.15  mjacob     uint8_t             cd_tagtype; /* tag type */
    357  1.15  mjacob     uint8_t             cd_scsi_status;
    358  1.15  mjacob     uint8_t             cd_sense[TMD_SENSELEN];
    359  1.16  mjacob     tmd_xact_t          cd_xact;    /* first or only transaction */
    360  1.15  mjacob     union {
    361  1.16  mjacob         void *          ptrs[QCDS / sizeof (void *)];       /* (assume) one pointer */
    362  1.16  mjacob         uint64_t        llongs[QCDS / sizeof (uint64_t)];   /* one long long */
    363  1.16  mjacob         uint32_t        longs[QCDS / sizeof (uint32_t)];    /* two longs */
    364  1.16  mjacob         uint16_t        shorts[QCDS / sizeof (uint16_t)];   /* four shorts */
    365  1.16  mjacob         uint8_t         bytes[QCDS];                        /* eight bytes */
    366  1.16  mjacob     } cd_lreserved[TMD_PRIV_LO], cd_hreserved[TMD_PRIV_HI];
    367  1.16  mjacob };
    368  1.16  mjacob 
    369  1.16  mjacob #define CDF_NODISC      0x0001  /* disconnects disabled */
    370  1.16  mjacob #define CDF_DATA_IN     0x0002  /* target (us) -> initiator (them) */
    371  1.16  mjacob #define CDF_DATA_OUT    0x0004  /* initiator (them) -> target (us) */
    372  1.16  mjacob #define CDF_BIDIR       0x0006  /* bidirectional data */
    373  1.16  mjacob #define CDF_SNSVALID    0x0008  /* sense is set on incoming command */
    374  1.16  mjacob #define CDF_PRIVATE     0xff00  /* available for private use in outer layer */
    375   1.1  mjacob 
    376  1.15  mjacob /* defined tags */
    377  1.15  mjacob #define CD_UNTAGGED     0
    378  1.15  mjacob #define CD_SIMPLE_TAG   1
    379  1.15  mjacob #define CD_ORDERED_TAG  2
    380  1.15  mjacob #define CD_HEAD_TAG     3
    381  1.15  mjacob #define CD_ACA_TAG      4
    382  1.15  mjacob 
    383  1.15  mjacob #ifndef    TMD_SIZE
    384  1.15  mjacob #define    TMD_SIZE     (sizeof (tmd_cmd_t))
    385  1.10  mjacob #endif
    386  1.10  mjacob 
    387  1.15  mjacob #define L0LUN_TO_FLATLUN(lptr)              ((((lptr)[0] & 0x3f) << 8) | ((lptr)[1]))
    388  1.15  mjacob #define FLATLUN_TO_L0LUN(lptr, lun)                 \
    389  1.15  mjacob     (lptr)[1] = lun & 0xff;                         \
    390  1.15  mjacob     if (sizeof (lun) == 1) {                        \
    391  1.15  mjacob         (lptr)[0] = 0;                              \
    392  1.15  mjacob     } else {                                        \
    393  1.15  mjacob         uint16_t nl = lun;                          \
    394  1.15  mjacob         if (nl == LUN_ANY) {                        \
    395  1.15  mjacob             (lptr)[0] = (nl >> 8) & 0xff;           \
    396  1.15  mjacob         } else if (nl < 256) {                      \
    397  1.15  mjacob             (lptr)[0] = 0;                          \
    398  1.15  mjacob         } else {                                    \
    399  1.15  mjacob             (lptr)[0] = 0x40 | ((nl >> 8) & 0x3f);  \
    400  1.15  mjacob         }                                           \
    401  1.15  mjacob     }                                               \
    402  1.15  mjacob     memset(&(lptr)[2], 0, 6)
    403  1.15  mjacob 
    404  1.10  mjacob /*
    405  1.16  mjacob  * Inner Layer Handler Function.
    406  1.10  mjacob  *
    407  1.16  mjacob  * The inner layer target handler function (the outer layer calls this)
    408  1.16  mjacob  * should be be prototyped like so:
    409  1.10  mjacob  *
    410  1.15  mjacob  *    void target_action(qact_e, void *arg)
    411  1.10  mjacob  *
    412  1.16  mjacob  * The outer layer target handler function (the inner layer calls this)
    413  1.10  mjacob  * should be be prototyped like:
    414  1.10  mjacob  *
    415  1.15  mjacob  *    void scsi_target_handler(tact_e, void *arg)
    416  1.15  mjacob  */
    417  1.15  mjacob #endif    /* _ISP_TPUBLIC_H */
    418  1.15  mjacob /*
    419  1.15  mjacob  * vim:ts=4:sw=4:expandtab
    420  1.10  mjacob  */
    421