]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/dev/isp/isp_freebsd.h
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / dev / isp / isp_freebsd.h
1 /* $FreeBSD$ */
2 /*-
3  * Qlogic ISP SCSI Host Adapter FreeBSD Wrapper Definitions
4  *
5  * Copyright (c) 1997-2008 by Matthew Jacob
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice immediately at the beginning of the file, without modification,
13  *    this list of conditions, and the following disclaimer.
14  * 2. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29 #ifndef _ISP_FREEBSD_H
30 #define _ISP_FREEBSD_H
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/endian.h>
35 #include <sys/lock.h>
36 #include <sys/kernel.h>
37 #include <sys/queue.h>
38 #include <sys/malloc.h>
39 #include <sys/mutex.h>
40 #include <sys/condvar.h>
41 #include <sys/sysctl.h>
42
43 #include <sys/proc.h>
44 #include <sys/bus.h>
45 #include <sys/taskqueue.h>
46
47 #include <machine/bus.h>
48 #include <machine/cpu.h>
49 #include <machine/stdarg.h>
50
51 #include <cam/cam.h>
52 #include <cam/cam_debug.h>
53 #include <cam/cam_ccb.h>
54 #include <cam/cam_sim.h>
55 #include <cam/cam_xpt.h>
56 #include <cam/cam_xpt_sim.h>
57 #include <cam/cam_debug.h>
58 #include <cam/scsi/scsi_all.h>
59 #include <cam/scsi/scsi_message.h>
60
61 #include "opt_ddb.h"
62 #include "opt_isp.h"
63
64 #define ISP_PLATFORM_VERSION_MAJOR      7
65 #define ISP_PLATFORM_VERSION_MINOR      10
66
67 /*
68  * Efficiency- get rid of SBus code && tests unless we need them.
69  */
70 #ifdef __sparc64__
71 #define ISP_SBUS_SUPPORTED      1
72 #else
73 #define ISP_SBUS_SUPPORTED      0
74 #endif
75
76 #define ISP_IFLAGS      INTR_TYPE_CAM | INTR_ENTROPY | INTR_MPSAFE
77
78 #define N_XCMDS         64
79 #define XCMD_SIZE       512
80 struct ispsoftc;
81 typedef union isp_ecmd {
82         union isp_ecmd *        next;
83         uint8_t                 data[XCMD_SIZE];
84 } isp_ecmd_t;
85 isp_ecmd_t *    isp_get_ecmd(struct ispsoftc *);
86 void            isp_put_ecmd(struct ispsoftc *, isp_ecmd_t *);
87
88 #ifdef  ISP_TARGET_MODE
89 /* Not quite right, but there was no bump for this change */
90 #if __FreeBSD_version < 225469
91 #define SDFIXED(x)      (&x)
92 #else
93 #define SDFIXED(x)      ((struct scsi_sense_data_fixed *)(&x))
94 #endif
95
96 #define ISP_TARGET_FUNCTIONS    1
97 #define ATPDPSIZE       4096
98 #define ATPDPHASHSIZE   32
99 #define ATPDPHASH(x)    ((((x) >> 24) ^ ((x) >> 16) ^ ((x) >> 8) ^ (x)) &  \
100                             ((ATPDPHASHSIZE) - 1))
101
102 #include <dev/isp/isp_target.h>
103 typedef struct atio_private_data {
104         LIST_ENTRY(atio_private_data)   next;
105         uint32_t        orig_datalen;
106         uint32_t        bytes_xfered;
107         uint32_t        bytes_in_transit;
108         uint32_t        tag;            /* typically f/w RX_ID */
109         uint32_t        lun;
110         uint32_t        nphdl;
111         uint32_t        sid;
112         uint32_t        portid;
113         uint16_t        rxid;   /* wire rxid */
114         uint16_t        oxid;   /* wire oxid */
115         uint16_t        word3;  /* PRLI word3 params */
116         uint16_t        ctcnt;  /* number of CTIOs currently active */
117         uint8_t         seqno;  /* CTIO sequence number */
118         uint32_t
119                         srr_notify_rcvd : 1,
120                         cdb0            : 8,
121                         sendst          : 1,
122                         dead            : 1,
123                         tattr           : 3,
124                         state           : 3;
125         void *          ests;
126         /*
127          * The current SRR notify copy
128          */
129         uint8_t         srr[64];        /*  sb QENTRY_LEN, but order of definitions is wrong */
130         void *          srr_ccb;
131         uint32_t        nsrr;
132 } atio_private_data_t;
133 #define ATPD_STATE_FREE                 0
134 #define ATPD_STATE_ATIO                 1
135 #define ATPD_STATE_CAM                  2
136 #define ATPD_STATE_CTIO                 3
137 #define ATPD_STATE_LAST_CTIO            4
138 #define ATPD_STATE_PDON                 5
139
140 #define ATPD_CCB_OUTSTANDING            16
141
142 #define ATPD_SEQ_MASK                   0x7f
143 #define ATPD_SEQ_NOTIFY_CAM             0x80
144 #define ATPD_SET_SEQNO(hdrp, atp)       ((isphdr_t *)hdrp)->rqs_seqno &= ~ATPD_SEQ_MASK, ((isphdr_t *)hdrp)->rqs_seqno |= (atp)->seqno
145 #define ATPD_GET_SEQNO(hdrp)            (((isphdr_t *)hdrp)->rqs_seqno & ATPD_SEQ_MASK)
146 #define ATPD_GET_NCAM(hdrp)             ((((isphdr_t *)hdrp)->rqs_seqno & ATPD_SEQ_NOTIFY_CAM) != 0)
147
148 typedef union inot_private_data inot_private_data_t;
149 union inot_private_data {
150         inot_private_data_t *next;
151         struct {
152                 isp_notify_t nt;        /* must be first! */
153                 uint8_t data[64];       /* sb QENTRY_LEN, but order of definitions is wrong */
154                 uint32_t tag_id, seq_id;
155         } rd;
156 };
157 typedef struct isp_timed_notify_ack {
158         void *isp;
159         void *not;
160         uint8_t data[64];        /* sb QENTRY_LEN, but order of definitions is wrong */
161         struct callout timer;
162 } isp_tna_t;
163
164 TAILQ_HEAD(isp_ccbq, ccb_hdr);
165 typedef struct tstate {
166         SLIST_ENTRY(tstate) next;
167         lun_id_t ts_lun;
168         struct cam_path *owner;
169         struct isp_ccbq waitq;          /* waiting CCBs */
170         struct ccb_hdr_slist atios;
171         struct ccb_hdr_slist inots;
172         uint32_t hold;
173         uint32_t
174                 enabled         : 1,
175                 atio_count      : 15,
176                 inot_count      : 15;
177         inot_private_data_t *   restart_queue;
178         inot_private_data_t *   ntfree;
179         inot_private_data_t     ntpool[ATPDPSIZE];
180         LIST_HEAD(, atio_private_data)  atfree;
181         LIST_HEAD(, atio_private_data)  atused[ATPDPHASHSIZE];
182         atio_private_data_t     atpool[ATPDPSIZE];
183 } tstate_t;
184
185 #define LUN_HASH_SIZE           32
186 #define LUN_HASH_FUNC(lun)      ((lun) & (LUN_HASH_SIZE - 1))
187
188 #endif
189
190 /*
191  * Per command info.
192  */
193 struct isp_pcmd {
194         struct isp_pcmd *       next;
195         bus_dmamap_t            dmap;           /* dma map for this command */
196         struct ispsoftc *       isp;            /* containing isp */
197         struct callout          wdog;           /* watchdog timer */
198         uint32_t                datalen;        /* data length for this command (target mode only) */
199         uint8_t                 totslen;        /* sense length on status response */
200         uint8_t                 cumslen;        /* sense length on status response */
201         uint8_t                 crn;            /* command reference number */
202 };
203 #define ISP_PCMD(ccb)           (ccb)->ccb_h.spriv_ptr1
204 #define PISP_PCMD(ccb)          ((struct isp_pcmd *)ISP_PCMD(ccb))
205
206 /*
207  * Per nexus info.
208  */
209 struct isp_nexus {
210         struct isp_nexus *      next;
211         uint32_t
212                 crnseed :       8;      /* next command reference number */
213         uint32_t
214                 tgt     :       16,     /* TGT for target */
215                 lun     :       16;     /* LUN for target */
216 };
217 #define NEXUS_HASH_WIDTH        32
218 #define INITIAL_NEXUS_COUNT     MAX_FC_TARG
219 #define NEXUS_HASH(tgt, lun)    ((tgt + lun) % NEXUS_HASH_WIDTH)
220
221 /*
222  * Per channel information
223  */
224 SLIST_HEAD(tslist, tstate);
225
226 struct isp_fc {
227         struct cam_sim *sim;
228         struct cam_path *path;
229         struct ispsoftc *isp;
230         struct proc *kproc;
231         bus_dma_tag_t tdmat;
232         bus_dmamap_t tdmap;
233         uint64_t def_wwpn;
234         uint64_t def_wwnn;
235         uint32_t loop_down_time;
236         uint32_t loop_down_limit;
237         uint32_t gone_device_time;
238         /*
239          * Per target/lun info- just to keep a per-ITL nexus crn count
240          */
241         struct isp_nexus *nexus_hash[NEXUS_HASH_WIDTH];
242         struct isp_nexus *nexus_free_list;
243         uint32_t
244 #ifdef  ISP_TARGET_MODE
245 #ifdef  ISP_INTERNAL_TARGET
246                 proc_active     : 1,
247 #endif
248                 tm_luns_enabled : 1,
249                 tm_enable_defer : 1,
250                 tm_enabled      : 1,
251 #endif
252                 simqfrozen      : 3,
253                 default_id      : 8,
254                 hysteresis      : 8,
255                 def_role        : 2,    /* default role */
256                 gdt_running     : 1,
257                 loop_dead       : 1,
258                 fcbsy           : 1,
259                 ready           : 1;
260         struct callout ldt;     /* loop down timer */
261         struct callout gdt;     /* gone device timer */
262         struct task ltask;
263         struct task gtask;
264 #ifdef  ISP_TARGET_MODE
265         struct tslist lun_hash[LUN_HASH_SIZE];
266 #ifdef  ISP_INTERNAL_TARGET
267         struct proc *           target_proc;
268 #endif
269 #if defined(DEBUG)
270         unsigned int inject_lost_data_frame;
271 #endif
272 #endif
273 };
274
275 struct isp_spi {
276         struct cam_sim *sim;
277         struct cam_path *path;
278         uint32_t
279 #ifdef  ISP_TARGET_MODE
280 #ifdef  ISP_INTERNAL_TARGET
281                 proc_active     : 1,
282 #endif
283                 tm_luns_enabled : 1,
284                 tm_enable_defer : 1,
285                 tm_enabled      : 1,
286 #endif
287                 simqfrozen      : 3,
288                 def_role        : 2,
289                 iid             : 4;
290 #ifdef  ISP_TARGET_MODE
291         struct tslist lun_hash[LUN_HASH_SIZE];
292 #ifdef  ISP_INTERNAL_TARGET
293         struct proc *           target_proc;
294 #endif
295 #endif
296 };
297
298 struct isposinfo {
299         /*
300          * Linkage, locking, and identity
301          */
302         struct mtx              lock;
303         device_t                dev;
304         struct cdev *           cdev;
305         struct intr_config_hook ehook;
306         struct cam_devq *       devq;
307
308         /*
309          * Firmware pointer
310          */
311         const struct firmware * fw;
312
313         /*
314          * DMA related sdtuff
315          */
316         bus_space_tag_t         bus_tag;
317         bus_dma_tag_t           dmat;
318         bus_space_handle_t      bus_handle;
319         bus_dma_tag_t           cdmat;
320         bus_dmamap_t            cdmap;
321
322         /*
323          * Command and transaction related related stuff
324          */
325         struct isp_pcmd *       pcmd_pool;
326         struct isp_pcmd *       pcmd_free;
327
328         uint32_t
329 #ifdef  ISP_TARGET_MODE
330                 tmwanted        : 1,
331                 tmbusy          : 1,
332 #else
333                                 : 2,
334 #endif
335                 sixtyfourbit    : 1,    /* sixtyfour bit platform */
336                 timer_active    : 1,
337                 autoconf        : 1,
338                 ehook_active    : 1,
339                 disabled        : 1,
340                 mbox_sleeping   : 1,
341                 mbox_sleep_ok   : 1,
342                 mboxcmd_done    : 1,
343                 mboxbsy         : 1;
344
345         struct callout          tmo;    /* general timer */
346
347         /*
348          * misc- needs to be sorted better XXXXXX
349          */
350         int                     framesize;
351         int                     exec_throttle;
352         int                     cont_max;
353
354 #ifdef  ISP_TARGET_MODE
355         cam_status *            rptr;
356 #endif
357
358         bus_addr_t              ecmd_dma;
359         isp_ecmd_t *            ecmd_base;
360         isp_ecmd_t *            ecmd_free;
361
362         /*
363          * Per-type private storage...
364          */
365         union {
366                 struct isp_fc *fc;
367                 struct isp_spi *spi;
368                 void *ptr;
369         } pc;
370 };
371 #define ISP_FC_PC(isp, chan)    (&(isp)->isp_osinfo.pc.fc[(chan)])
372 #define ISP_SPI_PC(isp, chan)   (&(isp)->isp_osinfo.pc.spi[(chan)])
373 #define ISP_GET_PC(isp, chan, tag, rslt)                \
374         if (IS_SCSI(isp)) {                             \
375                 rslt = ISP_SPI_PC(isp, chan)-> tag;     \
376         } else {                                        \
377                 rslt = ISP_FC_PC(isp, chan)-> tag;      \
378         }
379 #define ISP_GET_PC_ADDR(isp, chan, tag, rp)             \
380         if (IS_SCSI(isp)) {                             \
381                 rp = &ISP_SPI_PC(isp, chan)-> tag;      \
382         } else {                                        \
383                 rp = &ISP_FC_PC(isp, chan)-> tag;       \
384         }
385 #define ISP_SET_PC(isp, chan, tag, val)                 \
386         if (IS_SCSI(isp)) {                             \
387                 ISP_SPI_PC(isp, chan)-> tag = val;      \
388         } else {                                        \
389                 ISP_FC_PC(isp, chan)-> tag = val;       \
390         }
391
392 #define FCP_NEXT_CRN    isp_fcp_next_crn
393 #define isp_lock        isp_osinfo.lock
394 #define isp_bus_tag     isp_osinfo.bus_tag
395 #define isp_bus_handle  isp_osinfo.bus_handle
396
397 /*
398  * Locking macros...
399  */
400 #define ISP_LOCK(isp)   mtx_lock(&(isp)->isp_osinfo.lock)
401 #define ISP_UNLOCK(isp) mtx_unlock(&(isp)->isp_osinfo.lock)
402 #define ISP_ASSERT_LOCKED(isp)  mtx_assert(&(isp)->isp_osinfo.lock, MA_OWNED)
403
404 /*
405  * Required Macros/Defines
406  */
407 #define ISP_FC_SCRLEN           0x1000
408
409 #define ISP_MEMZERO(a, b)       memset(a, 0, b)
410 #define ISP_MEMCPY              memcpy
411 #define ISP_SNPRINTF            snprintf
412 #define ISP_DELAY               DELAY
413 #define ISP_SLEEP(isp, x)       DELAY(x)
414
415 #define ISP_MIN                 imin
416
417 #ifndef DIAGNOSTIC
418 #define ISP_INLINE              __inline
419 #else
420 #define ISP_INLINE
421 #endif
422
423 #define NANOTIME_T              struct timespec
424 #define GET_NANOTIME            nanotime
425 #define GET_NANOSEC(x)          ((x)->tv_sec * 1000000000 + (x)->tv_nsec)
426 #define NANOTIME_SUB            isp_nanotime_sub
427
428 #define MAXISPREQUEST(isp)      ((IS_FC(isp) || IS_ULTRA2(isp))? 1024 : 256)
429
430 #define MEMORYBARRIER(isp, type, offset, size, chan)            \
431 switch (type) {                                                 \
432 case SYNC_SFORDEV:                                              \
433 {                                                               \
434         struct isp_fc *fc = ISP_FC_PC(isp, chan);               \
435         bus_dmamap_sync(fc->tdmat, fc->tdmap,                   \
436            BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);         \
437         break;                                                  \
438 }                                                               \
439 case SYNC_REQUEST:                                              \
440         bus_dmamap_sync(isp->isp_osinfo.cdmat,                  \
441            isp->isp_osinfo.cdmap,                               \
442            BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);         \
443         break;                                                  \
444 case SYNC_SFORCPU:                                              \
445 {                                                               \
446         struct isp_fc *fc = ISP_FC_PC(isp, chan);               \
447         bus_dmamap_sync(fc->tdmat, fc->tdmap,                   \
448            BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);       \
449         break;                                                  \
450 }                                                               \
451 case SYNC_RESULT:                                               \
452         bus_dmamap_sync(isp->isp_osinfo.cdmat,                  \
453            isp->isp_osinfo.cdmap,                               \
454            BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);       \
455         break;                                                  \
456 case SYNC_REG:                                                  \
457         bus_space_barrier(isp->isp_osinfo.bus_tag,              \
458             isp->isp_osinfo.bus_handle, offset, size,           \
459             BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);  \
460         break;                                                  \
461 default:                                                        \
462         break;                                                  \
463 }
464
465 #define MEMORYBARRIERW(isp, type, offset, size, chan)           \
466 switch (type) {                                                 \
467 case SYNC_SFORDEV:                                              \
468 {                                                               \
469         struct isp_fc *fc = ISP_FC_PC(isp, chan);               \
470         bus_dmamap_sync(fc->tdmat, fc->tdmap,                   \
471            BUS_DMASYNC_PREWRITE);                               \
472         break;                                                  \
473 }                                                               \
474 case SYNC_REQUEST:                                              \
475         bus_dmamap_sync(isp->isp_osinfo.cdmat,                  \
476            isp->isp_osinfo.cdmap, BUS_DMASYNC_PREWRITE);        \
477         break;                                                  \
478 case SYNC_SFORCPU:                                              \
479 {                                                               \
480         struct isp_fc *fc = ISP_FC_PC(isp, chan);               \
481         bus_dmamap_sync(fc->tdmat, fc->tdmap,                   \
482            BUS_DMASYNC_POSTWRITE);                              \
483         break;                                                  \
484 }                                                               \
485 case SYNC_RESULT:                                               \
486         bus_dmamap_sync(isp->isp_osinfo.cdmat,                  \
487            isp->isp_osinfo.cdmap, BUS_DMASYNC_POSTWRITE);       \
488         break;                                                  \
489 case SYNC_REG:                                                  \
490         bus_space_barrier(isp->isp_osinfo.bus_tag,              \
491             isp->isp_osinfo.bus_handle, offset, size,           \
492             BUS_SPACE_BARRIER_WRITE);                           \
493         break;                                                  \
494 default:                                                        \
495         break;                                                  \
496 }
497
498 #define MBOX_ACQUIRE                    isp_mbox_acquire
499 #define MBOX_WAIT_COMPLETE              isp_mbox_wait_complete
500 #define MBOX_NOTIFY_COMPLETE            isp_mbox_notify_done
501 #define MBOX_RELEASE                    isp_mbox_release
502
503 #define FC_SCRATCH_ACQUIRE              isp_fc_scratch_acquire
504 #define FC_SCRATCH_RELEASE(isp, chan)   isp->isp_osinfo.pc.fc[chan].fcbsy = 0
505
506 #ifndef SCSI_GOOD
507 #define SCSI_GOOD       SCSI_STATUS_OK
508 #endif
509 #ifndef SCSI_CHECK
510 #define SCSI_CHECK      SCSI_STATUS_CHECK_COND
511 #endif
512 #ifndef SCSI_BUSY
513 #define SCSI_BUSY       SCSI_STATUS_BUSY
514 #endif
515 #ifndef SCSI_QFULL
516 #define SCSI_QFULL      SCSI_STATUS_QUEUE_FULL
517 #endif
518
519 #define XS_T                    struct ccb_scsiio
520 #define XS_DMA_ADDR_T           bus_addr_t
521 #define XS_GET_DMA64_SEG(a, b, c)               \
522 {                                               \
523         ispds64_t *d = a;                       \
524         bus_dma_segment_t *e = b;               \
525         uint32_t f = c;                         \
526         e += f;                                 \
527         d->ds_base = DMA_LO32(e->ds_addr);      \
528         d->ds_basehi = DMA_HI32(e->ds_addr);    \
529         d->ds_count = e->ds_len;                \
530 }
531 #define XS_GET_DMA_SEG(a, b, c)                 \
532 {                                               \
533         ispds_t *d = a;                         \
534         bus_dma_segment_t *e = b;               \
535         uint32_t f = c;                         \
536         e += f;                                 \
537         d->ds_base = DMA_LO32(e->ds_addr);      \
538         d->ds_count = e->ds_len;                \
539 }
540 #define XS_ISP(ccb)             cam_sim_softc(xpt_path_sim((ccb)->ccb_h.path))
541 #define XS_CHANNEL(ccb)         cam_sim_bus(xpt_path_sim((ccb)->ccb_h.path))
542 #define XS_TGT(ccb)             (ccb)->ccb_h.target_id
543 #define XS_LUN(ccb)             (ccb)->ccb_h.target_lun
544
545 #define XS_CDBP(ccb)    \
546         (((ccb)->ccb_h.flags & CAM_CDB_POINTER)? \
547          (ccb)->cdb_io.cdb_ptr : (ccb)->cdb_io.cdb_bytes)
548
549 #define XS_CDBLEN(ccb)          (ccb)->cdb_len
550 #define XS_XFRLEN(ccb)          (ccb)->dxfer_len
551 #define XS_TIME(ccb)            (ccb)->ccb_h.timeout
552 #define XS_GET_RESID(ccb)       (ccb)->resid
553 #define XS_SET_RESID(ccb, r)    (ccb)->resid = r
554 #define XS_STSP(ccb)            (&(ccb)->scsi_status)
555 #define XS_SNSP(ccb)            (&(ccb)->sense_data)
556
557 #define XS_TOT_SNSLEN(ccb)      ccb->sense_len
558 #define XS_CUR_SNSLEN(ccb)      (ccb->sense_len - ccb->sense_resid)
559
560 #define XS_SNSKEY(ccb)          (scsi_get_sense_key(&(ccb)->sense_data, \
561                                  ccb->sense_len - ccb->sense_resid, 1))
562
563 #define XS_SNSASC(ccb)          (scsi_get_asc(&(ccb)->sense_data,       \
564                                  ccb->sense_len - ccb->sense_resid, 1))
565
566 #define XS_SNSASCQ(ccb)         (scsi_get_ascq(&(ccb)->sense_data,      \
567                                  ccb->sense_len - ccb->sense_resid, 1))
568 #define XS_TAG_P(ccb)   \
569         (((ccb)->ccb_h.flags & CAM_TAG_ACTION_VALID) && \
570          (ccb)->tag_action != CAM_TAG_ACTION_NONE)
571
572 #define XS_TAG_TYPE(ccb)        \
573         ((ccb->tag_action == MSG_SIMPLE_Q_TAG)? REQFLAG_STAG : \
574          ((ccb->tag_action == MSG_HEAD_OF_Q_TAG)? REQFLAG_HTAG : REQFLAG_OTAG))
575                 
576
577 #define XS_SETERR(ccb, v)       (ccb)->ccb_h.status &= ~CAM_STATUS_MASK, \
578                                 (ccb)->ccb_h.status |= v
579
580 #       define  HBA_NOERROR             CAM_REQ_INPROG
581 #       define  HBA_BOTCH               CAM_UNREC_HBA_ERROR
582 #       define  HBA_CMDTIMEOUT          CAM_CMD_TIMEOUT
583 #       define  HBA_SELTIMEOUT          CAM_SEL_TIMEOUT
584 #       define  HBA_TGTBSY              CAM_SCSI_STATUS_ERROR
585 #       define  HBA_BUSRESET            CAM_SCSI_BUS_RESET
586 #       define  HBA_ABORTED             CAM_REQ_ABORTED
587 #       define  HBA_DATAOVR             CAM_DATA_RUN_ERR
588 #       define  HBA_ARQFAIL             CAM_AUTOSENSE_FAIL
589
590
591 #define XS_ERR(ccb)             ((ccb)->ccb_h.status & CAM_STATUS_MASK)
592
593 #define XS_NOERR(ccb)           (((ccb)->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INPROG)
594
595 #define XS_INITERR(ccb)         XS_SETERR(ccb, CAM_REQ_INPROG), ccb->sense_resid = ccb->sense_len
596
597 #define XS_SAVE_SENSE(xs, sense_ptr, totslen, slen)     do {                    \
598                 uint32_t tlen = slen;                                           \
599                 if (tlen > (xs)->sense_len)                                     \
600                         tlen = (xs)->sense_len;                                 \
601                 PISP_PCMD(xs)->totslen = imin((xs)->sense_len, totslen);        \
602                 PISP_PCMD(xs)->cumslen = tlen;                                  \
603                 memcpy(&(xs)->sense_data, sense_ptr, tlen);                     \
604                 (xs)->sense_resid = (xs)->sense_len - tlen;                     \
605                 (xs)->ccb_h.status |= CAM_AUTOSNS_VALID;                        \
606         } while (0)
607
608 #define XS_SENSE_APPEND(xs, xsnsp, xsnsl)       do {                            \
609                 uint32_t off = PISP_PCMD(xs)->cumslen;                          \
610                 uint8_t *ptr = &((uint8_t *)(&(xs)->sense_data))[off];          \
611                 uint32_t amt = imin(xsnsl, PISP_PCMD(xs)->totslen - off);       \
612                 if (amt) {                                                      \
613                         memcpy(ptr, xsnsp, amt);                                \
614                         (xs)->sense_resid -= amt;                               \
615                         PISP_PCMD(xs)->cumslen += amt;                          \
616                 }                                                               \
617         } while (0)
618
619 #define XS_SENSE_VALID(xs)      (((xs)->ccb_h.status & CAM_AUTOSNS_VALID) != 0)
620
621 #define DEFAULT_FRAMESIZE(isp)          isp->isp_osinfo.framesize
622 #define DEFAULT_EXEC_THROTTLE(isp)      isp->isp_osinfo.exec_throttle
623
624 #define GET_DEFAULT_ROLE(isp, chan)     \
625         (IS_FC(isp)? ISP_FC_PC(isp, chan)->def_role : ISP_SPI_PC(isp, chan)->def_role)
626 #define SET_DEFAULT_ROLE(isp, chan, val)                \
627         if (IS_FC(isp)) {                               \
628                 ISP_FC_PC(isp, chan)->def_role = val;   \
629         } else {                                        \
630                 ISP_SPI_PC(isp, chan)->def_role = val;  \
631         }
632
633 #define DEFAULT_IID(isp, chan)          isp->isp_osinfo.pc.spi[chan].iid
634
635 #define DEFAULT_LOOPID(x, chan)         isp->isp_osinfo.pc.fc[chan].default_id
636
637 #define DEFAULT_NODEWWN(isp, chan)      isp_default_wwn(isp, chan, 0, 1)
638 #define DEFAULT_PORTWWN(isp, chan)      isp_default_wwn(isp, chan, 0, 0)
639 #define ACTIVE_NODEWWN(isp, chan)       isp_default_wwn(isp, chan, 1, 1)
640 #define ACTIVE_PORTWWN(isp, chan)       isp_default_wwn(isp, chan, 1, 0)
641
642
643 #if     BYTE_ORDER == BIG_ENDIAN
644 #ifdef  ISP_SBUS_SUPPORTED
645 #define ISP_IOXPUT_8(isp, s, d)         *(d) = s
646 #define ISP_IOXPUT_16(isp, s, d)                                \
647         *(d) = (isp->isp_bustype == ISP_BT_SBUS)? s : bswap16(s)
648 #define ISP_IOXPUT_32(isp, s, d)                                \
649         *(d) = (isp->isp_bustype == ISP_BT_SBUS)? s : bswap32(s)
650 #define ISP_IOXGET_8(isp, s, d)         d = (*((uint8_t *)s))
651 #define ISP_IOXGET_16(isp, s, d)                                \
652         d = (isp->isp_bustype == ISP_BT_SBUS)?                  \
653         *((uint16_t *)s) : bswap16(*((uint16_t *)s))
654 #define ISP_IOXGET_32(isp, s, d)                                \
655         d = (isp->isp_bustype == ISP_BT_SBUS)?                  \
656         *((uint32_t *)s) : bswap32(*((uint32_t *)s))
657
658 #else   /* ISP_SBUS_SUPPORTED */
659 #define ISP_IOXPUT_8(isp, s, d)         *(d) = s
660 #define ISP_IOXPUT_16(isp, s, d)        *(d) = bswap16(s)
661 #define ISP_IOXPUT_32(isp, s, d)        *(d) = bswap32(s)
662 #define ISP_IOXGET_8(isp, s, d)         d = (*((uint8_t *)s))
663 #define ISP_IOXGET_16(isp, s, d)        d = bswap16(*((uint16_t *)s))
664 #define ISP_IOXGET_32(isp, s, d)        d = bswap32(*((uint32_t *)s))
665 #endif
666 #define ISP_SWIZZLE_NVRAM_WORD(isp, rp) *rp = bswap16(*rp)
667 #define ISP_SWIZZLE_NVRAM_LONG(isp, rp) *rp = bswap32(*rp)
668
669 #define ISP_IOZGET_8(isp, s, d)         d = (*((uint8_t *)s))
670 #define ISP_IOZGET_16(isp, s, d)        d = (*((uint16_t *)s))
671 #define ISP_IOZGET_32(isp, s, d)        d = (*((uint32_t *)s))
672 #define ISP_IOZPUT_8(isp, s, d)         *(d) = s
673 #define ISP_IOZPUT_16(isp, s, d)        *(d) = s
674 #define ISP_IOZPUT_32(isp, s, d)        *(d) = s
675
676
677 #else
678 #define ISP_IOXPUT_8(isp, s, d)         *(d) = s
679 #define ISP_IOXPUT_16(isp, s, d)        *(d) = s
680 #define ISP_IOXPUT_32(isp, s, d)        *(d) = s
681 #define ISP_IOXGET_8(isp, s, d)         d = *(s)
682 #define ISP_IOXGET_16(isp, s, d)        d = *(s)
683 #define ISP_IOXGET_32(isp, s, d)        d = *(s)
684 #define ISP_SWIZZLE_NVRAM_WORD(isp, rp)
685 #define ISP_SWIZZLE_NVRAM_LONG(isp, rp)
686
687 #define ISP_IOZPUT_8(isp, s, d)         *(d) = s
688 #define ISP_IOZPUT_16(isp, s, d)        *(d) = bswap16(s)
689 #define ISP_IOZPUT_32(isp, s, d)        *(d) = bswap32(s)
690
691 #define ISP_IOZGET_8(isp, s, d)         d = (*((uint8_t *)(s)))
692 #define ISP_IOZGET_16(isp, s, d)        d = bswap16(*((uint16_t *)(s)))
693 #define ISP_IOZGET_32(isp, s, d)        d = bswap32(*((uint32_t *)(s)))
694
695 #endif
696
697 #define ISP_SWAP16(isp, s)      bswap16(s)
698 #define ISP_SWAP32(isp, s)      bswap32(s)
699
700 /*
701  * Includes of common header files
702  */
703
704 #include <dev/isp/ispreg.h>
705 #include <dev/isp/ispvar.h>
706 #include <dev/isp/ispmbox.h>
707
708 /*
709  * isp_osinfo definiitions && shorthand
710  */
711 #define SIMQFRZ_RESOURCE        0x1
712 #define SIMQFRZ_LOOPDOWN        0x2
713 #define SIMQFRZ_TIMED           0x4
714
715 #define isp_dev         isp_osinfo.dev
716
717 /*
718  * prototypes for isp_pci && isp_freebsd to share
719  */
720 extern int isp_attach(ispsoftc_t *);
721 extern int isp_detach(ispsoftc_t *);
722 extern void isp_uninit(ispsoftc_t *);
723 extern uint64_t isp_default_wwn(ispsoftc_t *, int, int, int);
724
725 /*
726  * driver global data
727  */
728 extern int isp_announced;
729 extern int isp_fabric_hysteresis;
730 extern int isp_loop_down_limit;
731 extern int isp_gone_device_time;
732 extern int isp_quickboot_time;
733 extern int isp_autoconfig;
734
735 /*
736  * Platform private flags
737  */
738
739 /*
740  * Platform Library Functions
741  */
742 void isp_prt(ispsoftc_t *, int level, const char *, ...) __printflike(3, 4);
743 void isp_xs_prt(ispsoftc_t *, XS_T *, int level, const char *, ...) __printflike(4, 5);
744 uint64_t isp_nanotime_sub(struct timespec *, struct timespec *);
745 int isp_mbox_acquire(ispsoftc_t *);
746 void isp_mbox_wait_complete(ispsoftc_t *, mbreg_t *);
747 void isp_mbox_notify_done(ispsoftc_t *);
748 void isp_mbox_release(ispsoftc_t *);
749 int isp_fc_scratch_acquire(ispsoftc_t *, int);
750 int isp_mstohz(int);
751 void isp_platform_intr(void *);
752 void isp_common_dmateardown(ispsoftc_t *, struct ccb_scsiio *, uint32_t);
753 void isp_fcp_reset_crn(struct isp_fc *, uint32_t, int);
754 int isp_fcp_next_crn(ispsoftc_t *, uint8_t *, XS_T *);
755
756 /*
757  * Platform Version specific defines
758  */
759 #define BUS_DMA_ROOTARG(x)      bus_get_dma_tag(x)
760 #define isp_dma_tag_create(a, b, c, d, e, f, g, h, i, j, k, z)  \
761         bus_dma_tag_create(a, b, c, d, e, f, g, h, i, j, k, \
762         busdma_lock_mutex, &isp->isp_osinfo.lock, z)
763
764 #define isp_setup_intr  bus_setup_intr
765
766 #define isp_sim_alloc(a, b, c, d, e, f, g, h)   \
767         cam_sim_alloc(a, b, c, d, e, &(d)->isp_osinfo.lock, f, g, h)
768
769 #define ISP_PATH_PRT(i, l, p, ...)                                      \
770         if ((l) == ISP_LOGALL || ((l)& (i)->isp_dblev) != 0) {          \
771                 xpt_print(p, __VA_ARGS__);                              \
772         }
773
774 /*
775  * Platform specific inline functions
776  */
777
778 /*
779  * ISP General Library functions
780  */
781
782 #include <dev/isp/isp_library.h>
783
784 #endif  /* _ISP_FREEBSD_H */