]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/isp/isp_tpublic.h
This commit was generated by cvs2svn to compensate for changes in r168371,
[FreeBSD/FreeBSD.git] / sys / dev / isp / isp_tpublic.h
1 /* $FreeBSD$ */
2 /*-
3  *  Copyright (c) 1997-2007 by Matthew Jacob
4  *  All rights reserved.
5  * 
6  *  Redistribution and use in source and binary forms, with or without
7  *  modification, are permitted provided that the following conditions
8  *  are met:
9  * 
10  *  1. Redistributions of source code must retain the above copyright
11  *     notice, this list of conditions and the following disclaimer.
12  *  2. Redistributions in binary form must reproduce the above copyright
13  *     notice, this list of conditions and the following disclaimer in the
14  *     documentation and/or other materials provided with the distribution.
15  * 
16  *  THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  *  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  *  ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
20  *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  *  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  *  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  *  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  *  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  *  SUCH DAMAGE.
27  */
28 /*
29  * Host Adapter Public Target Interface Structures && Routines
30  */
31
32 #ifndef    _ISP_TPUBLIC_H
33 #define    _ISP_TPUBLIC_H    1
34
35 /*
36  * Action codes set by the MD target driver for
37  * the external layer to figure out what to do with.
38  */
39 typedef enum {
40     QOUT_HBA_REG=0,     /* the argument is a pointer to a hba_register_t */
41     QOUT_ENABLE,        /* the argument is a pointer to a enadis_t */
42     QOUT_DISABLE,       /* the argument is a pointer to a enadis_t */
43     QOUT_TMD_START,     /* the argument is a pointer to a tmd_cmd_t */
44     QOUT_TMD_DONE,      /* the argument is a pointer to a tmd_cmd_t */
45     QOUT_NOTIFY,        /* the argument is a pointer to a tmd_notify_t */
46     QOUT_HBA_UNREG      /* the argument is a pointer to a hba_register_t */
47 } tact_e;
48
49 /*
50  * Action codes set by the external layer for the
51  * MD driver to figure out what to do with.
52  */
53 typedef enum {
54     QIN_HBA_REG=99,     /* the argument is a pointer to a hba_register_t */
55     QIN_GETINFO,        /* the argument is a pointer to a info_t */
56     QIN_SETINFO,        /* the argument is a pointer to a info_t */
57     QIN_ENABLE,         /* the argument is a pointer to a enadis_t */
58     QIN_DISABLE,        /* the argument is a pointer to a enadis_t */
59     QIN_TMD_CONT,       /* the argument is a pointer to a tmd_cmd_t */
60     QIN_TMD_FIN,        /* the argument is a pointer to a tmd_cmd_t */
61     QIN_NOTIFY_ACK,     /* the argument is a pointer to a tmd_notify_t */
62     QIN_HBA_UNREG,      /* the argument is a pointer to a hba_register_t */
63 } qact_e;
64
65 /*
66  * This structure is used to register to other software modules the
67  * binding of an HBA identifier, driver name and instance and the
68  * lun width capapbilities of this target driver. It's up to each
69  * platform to figure out how it wants to do this, but a typical
70  * sequence would be for the MD layer to find some external module's
71  * entry point and start by sending a QOUT_HBA_REG with info filled
72  * in, and the external module to call back with a QIN_HBA_REG that
73  * passes back the corresponding information.
74  */
75 #define    QR_VERSION    15
76 typedef struct {
77     /* NB: tags from here to r_version must never change */
78     void *                  r_identity;
79     void                    (*r_action)(qact_e, void *);
80     char                    r_name[8];
81     int                     r_inst;
82     int                     r_version;
83     uint32_t                r_locator;
84     uint32_t                r_nchannels;
85     enum { R_FC, R_SPI }    r_type;
86     void *                  r_private;
87 } hba_register_t;
88
89 /*
90  * An information structure that is used to get or set per-channel
91  * transport layer parameters.
92  */
93 typedef struct {
94     void *                  i_identity;
95     enum { I_FC, I_SPI }    i_type;
96     int                     i_channel;
97     int                     i_error;
98     union {
99         struct {
100             uint64_t    wwnn_nvram;
101             uint64_t    wwpn_nvram;
102             uint64_t    wwnn;
103             uint64_t    wwpn;
104         } fc;
105         struct {
106             int         iid;
107         } spi;
108     }                       i_id;
109 } info_t;
110
111 /*
112  * Notify structure
113  */
114 typedef enum {
115     NT_ABORT_TASK=0x1000,
116     NT_ABORT_TASK_SET,
117     NT_CLEAR_ACA,
118     NT_CLEAR_TASK_SET,
119     NT_LUN_RESET,
120     NT_TARGET_RESET,
121     NT_BUS_RESET,
122     NT_LIP_RESET,
123     NT_LINK_UP,
124     NT_LINK_DOWN,
125     NT_LOGOUT,
126     NT_HBA_RESET
127 } tmd_ncode_t;
128
129 typedef struct tmd_notify {
130     void *      nt_hba;         /* HBA tag */
131     uint64_t    nt_iid;         /* inititator id */
132     uint64_t    nt_tgt;         /* target id */
133     uint16_t    nt_lun;         /* logical unit */
134     uint16_t                : 15,
135                 nt_need_ack : 1;    /* this notify needs an ACK */
136     uint64_t    nt_tagval;      /* tag value */
137     uint32_t    nt_channel;     /* channel id */
138     tmd_ncode_t nt_ncode;       /* action */
139     void *      nt_lreserved;
140     void *      nt_hreserved;
141 } tmd_notify_t;
142 #define LUN_ANY     0xffff
143 #define TGT_ANY     ((uint64_t) -1)
144 #define INI_ANY     ((uint64_t) -1)
145 #define TAG_ANY     ((uint64_t) 0)
146 #define MATCH_TMD(tmd, iid, lun, tag)                   \
147     (                                                   \
148         (tmd) &&                                        \
149         (iid == INI_ANY || iid == tmd->cd_iid) &&       \
150         (lun == LUN_ANY || lun == tmd->cd_lun) &&       \
151         (tag == TAG_ANY || tag == tmd->cd_tagval)       \
152     )
153
154 /*
155  * A word about ENABLE/DISABLE: the argument is a pointer to a enadis_t
156  * with en_hba, en_iid, en_chan, en_tgt and en_lun filled out.
157  *
158  * If an error occurs in either enabling or disabling the described lun
159  * cd_error is set with an appropriate non-zero value.
160  */
161 typedef struct {
162     void *          en_private;     /* for outer layer usage */
163     void *          en_hba;         /* HBA tag */
164     uint64_t        en_iid;         /* initiator ID */
165     uint64_t        en_tgt;         /* target id */
166     uint16_t        en_lun;         /* logical unit */
167     uint16_t        en_chan;        /* channel on card */
168     int             en_error;
169 } enadis_t;
170
171 /*
172  * Suggested Software Target Mode Command Handling structure.
173  *
174  * A note about terminology:
175  *
176  *   MD stands for "Machine Dependent".
177  *
178  *    This driver is structured in three layers: Outer MD, core, and inner MD.
179  *    The latter also is bus dependent (i.e., is cognizant of PCI bus issues
180  *    as well as platform issues).
181  *
182  *
183  *   "Outer Layer" means "Other Module"
184  *
185  *    Some additional module that actually implements SCSI target command
186  *    policy is the recipient of incoming commands and the source of the
187  *    disposition for them.
188  *
189  * The command structure below is one suggested possible MD command structure,
190  * but since the handling of thbis is entirely in the MD layer, there is
191  * no explicit or implicit requirement that it be used.
192  *
193  * The cd_private tag should be used by the MD layer to keep a free list
194  * of these structures. Code outside of this driver can then use this
195  * to identify it's own unit structures. That is, when not on the MD
196  * layer's freelist, the MD layer should shove into it the identifier
197  * that the outer layer has for it- passed in on an initial QIN_HBA_REG
198  * call (see below).
199  *
200  * The cd_hba tag is a tag that uniquely identifies the HBA this target
201  * mode command is coming from. The outer layer has to pass this back
202  * unchanged to avoid chaos.
203  *
204  * The cd_iid, cd_tgt, cd_lun and cd_port tags are used to identify the
205  * id of the initiator who sent us a command, the target claim to be, the
206  * lun on the target we claim to be, and the port instance (for multiple
207  * port host adapters) that this applies to (consider it an extra port
208  * parameter). The iid, tgt and lun values are deliberately chosen to be
209  * fat so that, for example, World Wide Names can be used instead of
210  * the units that the firmware uses (in the case where the MD
211  * layer maintains a port database, for example).
212  *
213  * The cd_tagtype field specifies what kind of command tag type, if
214  * any, has been sent with the command. Note that the Outer Layer
215  * still needs to pass the tag handle through unchanged even
216  * if the tag type is CD_UNTAGGED.
217  *
218  * The cd_cdb contains storage for the passed in command descriptor block.
219  * There is no need to define length as the callee should be able to
220  * figure this out.
221  *
222  * The tag cd_lflags are the flags set by the MD driver when it gets
223  * command incoming or when it needs to inform any outside entities
224  * that the last requested action failed.
225  *
226  * The tag cd_hflags should be set by any outside software to indicate
227  * the validity of sense and status fields (defined below) and to indicate
228  * the direction data is expected to move. It is an error to have both
229  * CDFH_DATA_IN and CDFH_DATA_OUT set.
230  *
231  * If the CDFH_STSVALID flag is set, the command should be completed (after
232  * sending any data and/or status). If CDFH_SNSVALID is set and the MD layer
233  * can also handle sending the associated sense data (either back with an
234  * FCP RESPONSE IU for Fibre Channel or otherwise automatically handling a
235  * REQUEST SENSE from the initator for this target/lun), the MD layer will
236  * set the CDFL_SENTSENSE flag on successful transmission of the sense data.
237  * It is an error for the CDFH_SNSVALID bit to be set and CDFH_STSVALID not
238  * to be set. It is an error for the CDFH_SNSVALID be set and the associated
239  * SCSI status (cd_scsi_status) not be set to CHECK CONDITON.
240  * 
241  * The tag cd_data points to a data segment to either be filled or
242  * read from depending on the direction of data movement. The tag
243  * is undefined if no data direction is set. The MD layer and outer
244  * layers must agree on the meaning of cd_data and it is specifically
245  * not defined here.
246  *
247  * The tag cd_totlen is the total data amount expected to be moved
248  * over the life of the command. It may be set by the MD layer, possibly
249  * from the datalen field of an FCP CMND IU unit. If it shows up in the outer
250  * layers set to zero and the CDB indicates data should be moved, the outer
251  * layer should set it to the amount expected to be moved.
252  *
253  * The tag cd_resid should be the total residual of data not transferred.
254  * The outer layers need to set this at the begining of command processing
255  * to equal cd_totlen. As data is successfully moved, this value is decreased.
256  * At the end of a command, any nonzero residual indicates the number of bytes
257  * requested by the command but not moved.
258  *
259  * The tag cd_xfrlen is the length of the currently active data transfer.
260  * This allows several interations between any outside software and the
261  * MD layer to move data.
262  *
263  * The reason that total length and total residual have to be tracked
264  * is to keep track of relative offset.
265  *
266  * The tags cd_sense and cd_scsi_status are pretty obvious.
267  *
268  * The tag cd_error is to communicate between the MD layer and outer software
269  * the current error conditions.
270  *
271  * The tag cd_lreserved, cd_hreserved are scratch areas for use for the MD
272  * and outer layers respectively.
273  * 
274  */
275
276 #ifndef    TMD_CDBLEN
277 #define    TMD_CDBLEN       16
278 #endif
279 #ifndef    TMD_SENSELEN
280 #define    TMD_SENSELEN     18
281 #endif
282 #ifndef    QCDS
283 #define    QCDS             (sizeof (void *))
284 #endif
285
286 typedef struct tmd_cmd {
287     void *              cd_private; /* private data pointer */
288     void *              cd_hba;     /* HBA tag */
289     void *              cd_data;    /* 'pointer' to data */
290     uint64_t            cd_iid;     /* initiator ID */
291     uint64_t            cd_tgt;     /* target id */
292     uint8_t             cd_lun[8];  /* logical unit */
293     uint64_t            cd_tagval;  /* tag value */
294     uint32_t            cd_channel; /* channel index */
295     uint32_t            cd_lflags;  /* flags lower level sets */
296     uint32_t            cd_hflags;  /* flags higher level sets */
297     uint32_t            cd_totlen;  /* total data load */
298     uint32_t            cd_resid;   /* total data residual */
299     uint32_t            cd_xfrlen;  /* current data load */
300     int32_t             cd_error;   /* current error */
301     uint8_t             cd_tagtype; /* tag type */
302     uint8_t             cd_scsi_status;
303     uint8_t             cd_sense[TMD_SENSELEN];
304     uint8_t             cd_cdb[TMD_CDBLEN];
305     union {
306         void *          ptrs[QCDS / sizeof (void *)];
307         uint64_t        llongs[QCDS / sizeof (uint64_t)];
308         uint32_t        longs[QCDS / sizeof (uint32_t)];
309         uint16_t        shorts[QCDS / sizeof (uint16_t)];
310         uint8_t         bytes[QCDS];
311     } cd_lreserved[4], cd_hreserved[4];
312 } tmd_cmd_t;
313
314 /* defined tags */
315 #define CD_UNTAGGED     0
316 #define CD_SIMPLE_TAG   1
317 #define CD_ORDERED_TAG  2
318 #define CD_HEAD_TAG     3
319 #define CD_ACA_TAG      4
320
321 #ifndef    TMD_SIZE
322 #define    TMD_SIZE     (sizeof (tmd_cmd_t))
323 #endif
324
325 #define L0LUN_TO_FLATLUN(lptr)              ((((lptr)[0] & 0x3f) << 8) | ((lptr)[1]))
326 #define FLATLUN_TO_L0LUN(lptr, lun)                 \
327     (lptr)[1] = lun;                                \
328     if (sizeof (lun) == 1) {                        \
329         (lptr)[0] = 0;                              \
330     } else {                                        \
331         int nl = (lun);                             \
332         if (nl < 256) {                             \
333             (lptr)[0] = 0;                          \
334         } else {                                    \
335             (lptr)[0] = 0x40 | ((nl >> 8) & 0x3f);  \
336         }                                           \
337     }                                               \
338     memset(&(lptr)[2], 0, 6)
339
340 /*
341  * Note that NODISC (obviously) doesn't apply to non-SPI transport.
342  *
343  * Note that knowing the data direction and lengh at the time of receipt of
344  * a command from the initiator is a feature only of Fibre Channel.
345  *
346  * The CDFL_BIDIR is in anticipation of the adoption of some newer
347  * features required by OSD.
348  *
349  * The principle selector for MD layer to know whether data is to
350  * be transferred in any QOUT_TMD_CONT call is cd_xfrlen- the
351  * flags CDFH_DATA_IN and CDFH_DATA_OUT define which direction.
352  */
353 #define    CDFL_SNSVALID        0x01            /* sense data (from f/w) good */
354 #define    CDFL_SENTSTATUS      0x02            /* last action sent status */
355 #define    CDFL_DATA_IN         0x04            /* target (us) -> initiator (them) */
356 #define    CDFL_DATA_OUT        0x08            /* initiator (them) -> target (us) */
357 #define    CDFL_BIDIR           0x0C            /* bidirectional data */
358 #define    CDFL_ERROR           0x10            /* last action ended in error */
359 #define    CDFL_NODISC          0x20            /* disconnects disabled */
360 #define    CDFL_SENTSENSE       0x40            /* last action sent sense data */
361 #define    CDFL_BUSY            0x80            /* this command is not on a free list */
362 #define    CDFL_PRIVATE         0xFF000000      /* private layer flags */
363
364 #define    CDFH_SNSVALID        0x01            /* sense data (from outer layer) good */
365 #define    CDFH_STSVALID        0x02            /* status valid */
366 #define    CDFH_DATA_IN         0x04            /* target (us) -> initiator (them) */
367 #define    CDFH_DATA_OUT        0x08            /* initiator (them) -> target (us) */
368 #define    CDFH_DATA_MASK       0x0C            /* mask to cover data direction */
369 #define    CDFH_PRIVATE         0xFF000000      /* private layer flags */
370
371
372 /*
373  * A word about the START/CONT/DONE/FIN dance:
374  *
375  *    When the HBA is enabled for receiving commands, one may show up
376  *    without notice. When that happens, the MD target mode driver
377  *    gets a tmd_cmd_t, fills it with the info that just arrived, and
378  *    calls the outer layer with a QOUT_TMD_START code and pointer to
379  *    the tmd_cmd_t.
380  *
381  *    The outer layer decodes the command, fetches data, prepares stuff,
382  *    whatever, and starts by passing back the pointer with a QIN_TMD_CONT
383  *    code which causes the MD target mode driver to generate CTIOs to
384  *    satisfy whatever action needs to be taken. When those CTIOs complete,
385  *    the MD target driver sends the pointer to the cmd_tmd_t back with
386  *    a QOUT_TMD_DONE code. This repeats for as long as necessary. These
387  *    may not be done in parallel- they are sequential operations.
388  *
389  *    The outer layer signals it wants to end the command by settings within
390  *    the tmd_cmd_t itself. When the final QIN_TMD_CONT is reported completed,
391  *    the outer layer frees the tmd_cmd_t by sending the pointer to it
392  *    back with a QIN_TMD_FIN code.
393  *
394  *    The graph looks like:
395  *
396  *    QOUT_TMD_START -> [ QIN_TMD_CONT -> QOUT_TMD_DONE ] * -> QIN_TMD_FIN.
397  *
398  */
399
400 /*
401  * Target handler functions.
402  *
403  * The MD target handler function (the outer layer calls this)
404  * should be be prototyped like:
405  *
406  *    void target_action(qact_e, void *arg)
407  *
408  * The outer layer target handler function (the MD layer calls this)
409  * should be be prototyped like:
410  *
411  *    void scsi_target_handler(tact_e, void *arg)
412  */
413 #endif    /* _ISP_TPUBLIC_H */
414 /*
415  * vim:ts=4:sw=4:expandtab
416  */