1 /* $FreeBSD$ */ 2 /*- 3 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 4 * 5 * Qlogic ISP SCSI Host Adapter FreeBSD Wrapper Definitions 6 * 7 * Copyright (c) 2009-2020 Alexander Motin <mav@FreeBSD.org> 8 * Copyright (c) 1997-2008 by Matthew Jacob 9 * All rights reserved. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice immediately at the beginning of the file, without modification, 16 * this list of conditions, and the following disclaimer. 17 * 2. The name of the author may not be used to endorse or promote products 18 * derived from this software without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 24 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 #ifndef _ISP_FREEBSD_H 33 #define _ISP_FREEBSD_H 34 35 #include <sys/param.h> 36 #include <sys/systm.h> 37 #include <sys/endian.h> 38 #include <sys/jail.h> 39 #include <sys/lock.h> 40 #include <sys/kernel.h> 41 #include <sys/queue.h> 42 #include <sys/malloc.h> 43 #include <sys/mutex.h> 44 #include <sys/condvar.h> 45 #include <sys/rman.h> 46 #include <sys/sysctl.h> 47 48 #include <sys/proc.h> 49 #include <sys/bus.h> 50 #include <sys/taskqueue.h> 51 52 #include <machine/bus.h> 53 #include <machine/cpu.h> 54 #include <machine/stdarg.h> 55 56 #include <cam/cam.h> 57 #include <cam/cam_debug.h> 58 #include <cam/cam_ccb.h> 59 #include <cam/cam_sim.h> 60 #include <cam/cam_xpt.h> 61 #include <cam/cam_xpt_sim.h> 62 #include <cam/cam_debug.h> 63 #include <cam/scsi/scsi_all.h> 64 #include <cam/scsi/scsi_message.h> 65 66 #include "opt_ddb.h" 67 #include "opt_isp.h" 68 69 #define ISP_PLATFORM_VERSION_MAJOR 7 70 #define ISP_PLATFORM_VERSION_MINOR 10 71 72 #define ISP_IFLAGS INTR_TYPE_CAM | INTR_ENTROPY | INTR_MPSAFE 73 74 #ifdef ISP_TARGET_MODE 75 #define N_XCMDS 64 76 #define XCMD_SIZE 512 77 struct ispsoftc; 78 typedef union isp_ecmd { 79 union isp_ecmd * next; 80 uint8_t data[XCMD_SIZE]; 81 } isp_ecmd_t; 82 isp_ecmd_t * isp_get_ecmd(struct ispsoftc *); 83 void isp_put_ecmd(struct ispsoftc *, isp_ecmd_t *); 84 85 #define ATPDPSIZE 4096 86 #define ATPDPHASHSIZE 32 87 #define ATPDPHASH(x) ((((x) >> 24) ^ ((x) >> 16) ^ ((x) >> 8) ^ (x)) & \ 88 ((ATPDPHASHSIZE) - 1)) 89 90 #include <dev/isp/isp_target.h> 91 typedef struct atio_private_data { 92 LIST_ENTRY(atio_private_data) next; 93 uint32_t orig_datalen; 94 uint32_t bytes_xfered; 95 uint32_t bytes_in_transit; 96 uint32_t tag; /* typically f/w RX_ID */ 97 lun_id_t lun; 98 uint32_t nphdl; 99 uint32_t sid; 100 uint32_t did; 101 uint16_t rxid; /* wire rxid */ 102 uint16_t oxid; /* wire oxid */ 103 uint16_t word3; /* PRLI word3 params */ 104 uint16_t ctcnt; /* number of CTIOs currently active */ 105 uint8_t seqno; /* CTIO sequence number */ 106 uint32_t 107 srr_notify_rcvd : 1, 108 cdb0 : 8, 109 sendst : 1, 110 dead : 1, 111 tattr : 3, 112 state : 3; 113 void * ests; 114 /* 115 * The current SRR notify copy 116 */ 117 uint8_t srr[64]; /* sb QENTRY_LEN, but order of definitions is wrong */ 118 void * srr_ccb; 119 uint32_t nsrr; 120 } atio_private_data_t; 121 #define ATPD_STATE_FREE 0 122 #define ATPD_STATE_ATIO 1 123 #define ATPD_STATE_CAM 2 124 #define ATPD_STATE_CTIO 3 125 #define ATPD_STATE_LAST_CTIO 4 126 #define ATPD_STATE_PDON 5 127 128 #define ATPD_CCB_OUTSTANDING 16 129 130 #define ATPD_SEQ_MASK 0x7f 131 #define ATPD_SEQ_NOTIFY_CAM 0x80 132 #define ATPD_SET_SEQNO(hdrp, atp) ((isphdr_t *)hdrp)->rqs_seqno &= ~ATPD_SEQ_MASK, ((isphdr_t *)hdrp)->rqs_seqno |= (atp)->seqno 133 #define ATPD_GET_SEQNO(hdrp) (((isphdr_t *)hdrp)->rqs_seqno & ATPD_SEQ_MASK) 134 #define ATPD_GET_NCAM(hdrp) ((((isphdr_t *)hdrp)->rqs_seqno & ATPD_SEQ_NOTIFY_CAM) != 0) 135 136 typedef struct inot_private_data inot_private_data_t; 137 struct inot_private_data { 138 STAILQ_ENTRY(inot_private_data) next; 139 isp_notify_t nt; 140 uint8_t data[64]; /* sb QENTRY_LEN, but order of definitions is wrong */ 141 uint32_t tag_id, seq_id; 142 }; 143 typedef struct isp_timed_notify_ack { 144 void *isp; 145 void *not; 146 uint8_t data[64]; /* sb QENTRY_LEN, but order of definitions is wrong */ 147 struct callout timer; 148 } isp_tna_t; 149 150 STAILQ_HEAD(ntpdlist, inot_private_data); 151 typedef struct tstate { 152 SLIST_ENTRY(tstate) next; 153 lun_id_t ts_lun; 154 struct ccb_hdr_slist atios; 155 struct ccb_hdr_slist inots; 156 struct ntpdlist restart_queue; 157 } tstate_t; 158 159 #define LUN_HASH_SIZE 32 160 #define LUN_HASH_FUNC(lun) ((lun) & (LUN_HASH_SIZE - 1)) 161 162 #endif 163 164 /* 165 * Per command info. 166 */ 167 struct isp_pcmd { 168 struct isp_pcmd * next; 169 bus_dmamap_t dmap; /* dma map for this command */ 170 struct callout wdog; /* watchdog timer */ 171 uint32_t datalen; /* data length for this command (target mode only) */ 172 }; 173 #define ISP_PCMD(ccb) (ccb)->ccb_h.spriv_ptr1 174 #define PISP_PCMD(ccb) ((struct isp_pcmd *)ISP_PCMD(ccb)) 175 176 /* 177 * Per nexus info. 178 */ 179 struct isp_nexus { 180 uint64_t lun; /* LUN for target */ 181 uint32_t tgt; /* TGT for target */ 182 uint8_t crnseed; /* next command reference number */ 183 struct isp_nexus *next; 184 }; 185 #define NEXUS_HASH_WIDTH 32 186 #define INITIAL_NEXUS_COUNT MAX_FC_TARG 187 #define NEXUS_HASH(tgt, lun) ((tgt + lun) % NEXUS_HASH_WIDTH) 188 189 /* 190 * Per channel information 191 */ 192 SLIST_HEAD(tslist, tstate); 193 TAILQ_HEAD(isp_ccbq, ccb_hdr); 194 LIST_HEAD(atpdlist, atio_private_data); 195 196 struct isp_fc { 197 struct cam_sim *sim; 198 struct cam_path *path; 199 struct ispsoftc *isp; 200 struct proc *kproc; 201 bus_dmamap_t scmap; 202 uint64_t def_wwpn; 203 uint64_t def_wwnn; 204 time_t loop_down_time; 205 int loop_down_limit; 206 int gone_device_time; 207 /* 208 * Per target/lun info- just to keep a per-ITL nexus crn count 209 */ 210 struct isp_nexus *nexus_hash[NEXUS_HASH_WIDTH]; 211 struct isp_nexus *nexus_free_list; 212 uint32_t 213 simqfrozen : 3, 214 default_id : 8, 215 def_role : 2, /* default role */ 216 loop_seen_once : 1, 217 fcbsy : 1, 218 ready : 1; 219 struct callout gdt; /* gone device timer */ 220 struct task gtask; 221 #ifdef ISP_TARGET_MODE 222 struct tslist lun_hash[LUN_HASH_SIZE]; 223 struct isp_ccbq waitq; /* waiting CCBs */ 224 struct ntpdlist ntfree; 225 inot_private_data_t ntpool[ATPDPSIZE]; 226 struct atpdlist atfree; 227 struct atpdlist atused[ATPDPHASHSIZE]; 228 atio_private_data_t atpool[ATPDPSIZE]; 229 #if defined(DEBUG) 230 unsigned int inject_lost_data_frame; 231 #endif 232 #endif 233 int num_threads; 234 }; 235 236 struct isposinfo { 237 /* 238 * Linkage, locking, and identity 239 */ 240 struct mtx lock; 241 device_t dev; 242 struct cdev * cdev; 243 struct cam_devq * devq; 244 245 /* 246 * Firmware pointer 247 */ 248 const struct firmware * fw; 249 250 /* 251 * DMA related stuff 252 */ 253 struct resource * regs; 254 struct resource * regs2; 255 bus_dma_tag_t dmat; 256 bus_dma_tag_t reqdmat; 257 bus_dma_tag_t respdmat; 258 bus_dma_tag_t atiodmat; 259 bus_dma_tag_t iocbdmat; 260 bus_dma_tag_t scdmat; 261 bus_dmamap_t reqmap; 262 bus_dmamap_t respmap; 263 bus_dmamap_t atiomap; 264 bus_dmamap_t iocbmap; 265 266 /* 267 * Command and transaction related related stuff 268 */ 269 struct isp_pcmd * pcmd_pool; 270 struct isp_pcmd * pcmd_free; 271 272 struct callout tmo; /* general timer */ 273 274 /* 275 * misc- needs to be sorted better XXXXXX 276 */ 277 int framesize; 278 int cont_max; 279 280 #ifdef ISP_TARGET_MODE 281 bus_dma_tag_t ecmd_dmat; 282 bus_dmamap_t ecmd_map; 283 bus_addr_t ecmd_dma; 284 isp_ecmd_t * ecmd_base; 285 isp_ecmd_t * ecmd_free; 286 #endif 287 288 /* 289 * Per-channel storage. 290 */ 291 struct isp_fc *fc; 292 293 int is_exiting; 294 }; 295 #define ISP_FC_PC(isp, chan) (&(isp)->isp_osinfo.fc[(chan)]) 296 297 #define FCP_NEXT_CRN isp_fcp_next_crn 298 #define isp_lock isp_osinfo.lock 299 #define isp_regs isp_osinfo.regs 300 #define isp_regs2 isp_osinfo.regs2 301 302 /* 303 * Locking macros... 304 */ 305 #define ISP_LOCK(isp) mtx_lock(&(isp)->isp_lock) 306 #define ISP_UNLOCK(isp) mtx_unlock(&(isp)->isp_lock) 307 #define ISP_ASSERT_LOCKED(isp) mtx_assert(&(isp)->isp_lock, MA_OWNED) 308 309 /* 310 * Required Macros/Defines 311 */ 312 #define ISP_FC_SCRLEN 0x1000 313 314 #define ISP_MEMZERO(a, b) memset(a, 0, b) 315 #define ISP_MEMCPY memcpy 316 #define ISP_SNPRINTF snprintf 317 #define ISP_DELAY(x) DELAY(x) 318 #define ISP_SLEEP(isp, x) msleep_sbt(&(isp)->isp_osinfo.is_exiting, \ 319 &(isp)->isp_lock, 0, "isp_sleep", (x) * SBT_1US, 0, 0) 320 321 #define ISP_MIN imin 322 323 #ifndef DIAGNOSTIC 324 #define ISP_INLINE __inline 325 #else 326 #define ISP_INLINE 327 #endif 328 329 #define ISP_DMASETUP(isp, xs, req) isp_dmasetup(isp, xs, req) 330 #define ISP_DMAFREE(isp, xs) isp_dmafree(isp, xs) 331 332 #define NANOTIME_T struct timespec 333 #define GET_NANOTIME nanotime 334 #define GET_NANOSEC(x) ((x)->tv_sec * 1000000000 + (x)->tv_nsec) 335 #define NANOTIME_SUB isp_nanotime_sub 336 337 #define MEMORYBARRIER(isp, type, offset, size, chan) \ 338 switch (type) { \ 339 case SYNC_REQUEST: \ 340 bus_dmamap_sync(isp->isp_osinfo.reqdmat, \ 341 isp->isp_osinfo.reqmap, BUS_DMASYNC_PREWRITE); \ 342 break; \ 343 case SYNC_RESULT: \ 344 bus_dmamap_sync(isp->isp_osinfo.respdmat, \ 345 isp->isp_osinfo.respmap, BUS_DMASYNC_POSTREAD); \ 346 break; \ 347 case SYNC_SFORDEV: \ 348 { \ 349 struct isp_fc *fc = ISP_FC_PC(isp, chan); \ 350 bus_dmamap_sync(isp->isp_osinfo.scdmat, fc->scmap, \ 351 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); \ 352 break; \ 353 } \ 354 case SYNC_SFORCPU: \ 355 { \ 356 struct isp_fc *fc = ISP_FC_PC(isp, chan); \ 357 bus_dmamap_sync(isp->isp_osinfo.scdmat, fc->scmap, \ 358 BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE); \ 359 break; \ 360 } \ 361 case SYNC_REG: \ 362 bus_barrier(isp->isp_osinfo.regs, offset, size, \ 363 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); \ 364 break; \ 365 case SYNC_ATIOQ: \ 366 bus_dmamap_sync(isp->isp_osinfo.atiodmat, \ 367 isp->isp_osinfo.atiomap, BUS_DMASYNC_POSTREAD); \ 368 break; \ 369 case SYNC_IFORDEV: \ 370 bus_dmamap_sync(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, \ 371 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); \ 372 break; \ 373 case SYNC_IFORCPU: \ 374 bus_dmamap_sync(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, \ 375 BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE); \ 376 break; \ 377 default: \ 378 break; \ 379 } 380 381 #define MEMORYBARRIERW(isp, type, offset, size, chan) \ 382 switch (type) { \ 383 case SYNC_REQUEST: \ 384 bus_dmamap_sync(isp->isp_osinfo.reqdmat, \ 385 isp->isp_osinfo.reqmap, BUS_DMASYNC_PREWRITE); \ 386 break; \ 387 case SYNC_SFORDEV: \ 388 { \ 389 struct isp_fc *fc = ISP_FC_PC(isp, chan); \ 390 bus_dmamap_sync(isp->isp_osinfo.scdmat, fc->scmap, \ 391 BUS_DMASYNC_PREWRITE); \ 392 break; \ 393 } \ 394 case SYNC_SFORCPU: \ 395 { \ 396 struct isp_fc *fc = ISP_FC_PC(isp, chan); \ 397 bus_dmamap_sync(isp->isp_osinfo.scdmat, fc->scmap, \ 398 BUS_DMASYNC_POSTWRITE); \ 399 break; \ 400 } \ 401 case SYNC_REG: \ 402 bus_barrier(isp->isp_osinfo.regs, offset, size, \ 403 BUS_SPACE_BARRIER_WRITE); \ 404 break; \ 405 case SYNC_IFORDEV: \ 406 bus_dmamap_sync(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, \ 407 BUS_DMASYNC_PREWRITE); \ 408 break; \ 409 case SYNC_IFORCPU: \ 410 bus_dmamap_sync(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, \ 411 BUS_DMASYNC_POSTWRITE); \ 412 break; \ 413 default: \ 414 break; \ 415 } 416 417 #define FC_SCRATCH_ACQUIRE isp_fc_scratch_acquire 418 #define FC_SCRATCH_RELEASE(isp, chan) ISP_FC_PC(isp, chan)->fcbsy = 0 419 420 #ifndef SCSI_GOOD 421 #define SCSI_GOOD SCSI_STATUS_OK 422 #endif 423 #ifndef SCSI_CHECK 424 #define SCSI_CHECK SCSI_STATUS_CHECK_COND 425 #endif 426 #ifndef SCSI_BUSY 427 #define SCSI_BUSY SCSI_STATUS_BUSY 428 #endif 429 #ifndef SCSI_QFULL 430 #define SCSI_QFULL SCSI_STATUS_QUEUE_FULL 431 #endif 432 433 #define XS_T struct ccb_scsiio 434 #define XS_DMA_ADDR_T bus_addr_t 435 #define XS_GET_DMA64_SEG(a, b, c) \ 436 { \ 437 ispds64_t *d = a; \ 438 bus_dma_segment_t *e = b; \ 439 uint32_t f = c; \ 440 e += f; \ 441 d->ds_base = DMA_LO32(e->ds_addr); \ 442 d->ds_basehi = DMA_HI32(e->ds_addr); \ 443 d->ds_count = e->ds_len; \ 444 } 445 #define XS_ISP(ccb) cam_sim_softc(xpt_path_sim((ccb)->ccb_h.path)) 446 #define XS_CHANNEL(ccb) cam_sim_bus(xpt_path_sim((ccb)->ccb_h.path)) 447 #define XS_TGT(ccb) (ccb)->ccb_h.target_id 448 #define XS_LUN(ccb) (ccb)->ccb_h.target_lun 449 450 #define XS_CDBP(ccb) \ 451 (((ccb)->ccb_h.flags & CAM_CDB_POINTER)? \ 452 (ccb)->cdb_io.cdb_ptr : (ccb)->cdb_io.cdb_bytes) 453 454 #define XS_CDBLEN(ccb) (ccb)->cdb_len 455 #define XS_XFRLEN(ccb) (ccb)->dxfer_len 456 #define XS_XFRIN(ccb) (((ccb)->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) 457 #define XS_XFROUT(ccb) (((ccb)->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) 458 #define XS_TIME(ccb) \ 459 (((ccb)->ccb_h.timeout > 0xffff * 1000 - 999) ? 0 : \ 460 (((ccb)->ccb_h.timeout + 999) / 1000)) 461 #define XS_GET_RESID(ccb) (ccb)->resid 462 #define XS_SET_RESID(ccb, r) (ccb)->resid = r 463 #define XS_STSP(ccb) (&(ccb)->scsi_status) 464 #define XS_SNSP(ccb) (&(ccb)->sense_data) 465 466 #define XS_TOT_SNSLEN(ccb) ccb->sense_len 467 #define XS_CUR_SNSLEN(ccb) (ccb->sense_len - ccb->sense_resid) 468 469 #define XS_SNSKEY(ccb) (scsi_get_sense_key(&(ccb)->sense_data, \ 470 ccb->sense_len - ccb->sense_resid, 1)) 471 472 #define XS_SNSASC(ccb) (scsi_get_asc(&(ccb)->sense_data, \ 473 ccb->sense_len - ccb->sense_resid, 1)) 474 475 #define XS_SNSASCQ(ccb) (scsi_get_ascq(&(ccb)->sense_data, \ 476 ccb->sense_len - ccb->sense_resid, 1)) 477 #define XS_TAG_P(ccb) \ 478 (((ccb)->ccb_h.flags & CAM_TAG_ACTION_VALID) && \ 479 (ccb)->tag_action != CAM_TAG_ACTION_NONE) 480 481 #define XS_TAG_TYPE(ccb) \ 482 ((ccb->tag_action == MSG_HEAD_OF_QUEUE_TASK)? FCP_CMND_TASK_ATTR_HEAD:\ 483 ((ccb->tag_action == MSG_ORDERED_TASK) ? FCP_CMND_TASK_ATTR_ORDERED :\ 484 ((ccb->tag_action == MSG_ACA_TASK) ? FCP_CMND_TASK_ATTR_ACA : \ 485 FCP_CMND_TASK_ATTR_SIMPLE))) 486 487 #define XS_PRIORITY(ccb) (ccb)->priority 488 489 #define XS_SETERR(ccb, v) (ccb)->ccb_h.status &= ~CAM_STATUS_MASK, \ 490 (ccb)->ccb_h.status |= v 491 492 # define HBA_NOERROR CAM_REQ_INPROG 493 # define HBA_BOTCH CAM_UNREC_HBA_ERROR 494 # define HBA_CMDTIMEOUT CAM_CMD_TIMEOUT 495 # define HBA_SELTIMEOUT CAM_SEL_TIMEOUT 496 # define HBA_TGTBSY CAM_SCSI_STATUS_ERROR 497 # define HBA_REQINVAL CAM_REQ_INVALID 498 # define HBA_BUSRESET CAM_SCSI_BUS_RESET 499 # define HBA_ABORTED CAM_REQ_ABORTED 500 # define HBA_DATAOVR CAM_DATA_RUN_ERR 501 # define HBA_ARQFAIL CAM_AUTOSENSE_FAIL 502 503 504 #define XS_ERR(ccb) ((ccb)->ccb_h.status & CAM_STATUS_MASK) 505 506 #define XS_NOERR(ccb) (((ccb)->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INPROG) 507 508 #define XS_INITERR(ccb) XS_SETERR(ccb, CAM_REQ_INPROG), ccb->sense_resid = ccb->sense_len 509 510 #define XS_SAVE_SENSE(xs, sp, len) do { \ 511 uint32_t amt = min(len, (xs)->sense_len); \ 512 memcpy(&(xs)->sense_data, sp, amt); \ 513 (xs)->sense_resid = (xs)->sense_len - amt; \ 514 (xs)->ccb_h.status |= CAM_AUTOSNS_VALID; \ 515 } while (0) 516 517 #define XS_SENSE_APPEND(xs, sp, len) do { \ 518 uint8_t *ptr = (uint8_t *)(&(xs)->sense_data) + \ 519 ((xs)->sense_len - (xs)->sense_resid); \ 520 uint32_t amt = min((len), (xs)->sense_resid); \ 521 memcpy(ptr, sp, amt); \ 522 (xs)->sense_resid -= amt; \ 523 } while (0) 524 525 #define XS_SENSE_VALID(xs) (((xs)->ccb_h.status & CAM_AUTOSNS_VALID) != 0) 526 527 #define DEFAULT_FRAMESIZE(isp) isp->isp_osinfo.framesize 528 529 #define DEFAULT_ROLE(isp, chan) ISP_FC_PC(isp, chan)->def_role 530 531 #define DEFAULT_LOOPID(isp, chan) ISP_FC_PC(isp, chan)->default_id 532 533 #define DEFAULT_NODEWWN(isp, chan) isp_default_wwn(isp, chan, 0, 1) 534 #define DEFAULT_PORTWWN(isp, chan) isp_default_wwn(isp, chan, 0, 0) 535 #define ACTIVE_NODEWWN(isp, chan) isp_default_wwn(isp, chan, 1, 1) 536 #define ACTIVE_PORTWWN(isp, chan) isp_default_wwn(isp, chan, 1, 0) 537 538 539 #if BYTE_ORDER == BIG_ENDIAN 540 #define ISP_IOXPUT_8(isp, s, d) *(d) = s 541 #define ISP_IOXPUT_16(isp, s, d) *(d) = bswap16(s) 542 #define ISP_IOXPUT_32(isp, s, d) *(d) = bswap32(s) 543 #define ISP_IOXGET_8(isp, s, d) d = (*((uint8_t *)s)) 544 #define ISP_IOXGET_16(isp, s, d) d = bswap16(*((uint16_t *)s)) 545 #define ISP_IOXGET_32(isp, s, d) d = bswap32(*((uint32_t *)s)) 546 #define ISP_SWIZZLE_NVRAM_WORD(isp, rp) *rp = bswap16(*rp) 547 #define ISP_SWIZZLE_NVRAM_LONG(isp, rp) *rp = bswap32(*rp) 548 549 #define ISP_IOZGET_8(isp, s, d) d = (*((uint8_t *)s)) 550 #define ISP_IOZGET_16(isp, s, d) d = (*((uint16_t *)s)) 551 #define ISP_IOZGET_32(isp, s, d) d = (*((uint32_t *)s)) 552 #define ISP_IOZPUT_8(isp, s, d) *(d) = s 553 #define ISP_IOZPUT_16(isp, s, d) *(d) = s 554 #define ISP_IOZPUT_32(isp, s, d) *(d) = s 555 556 #else 557 #define ISP_IOXPUT_8(isp, s, d) *(d) = s 558 #define ISP_IOXPUT_16(isp, s, d) *(d) = s 559 #define ISP_IOXPUT_32(isp, s, d) *(d) = s 560 #define ISP_IOXGET_8(isp, s, d) d = *(s) 561 #define ISP_IOXGET_16(isp, s, d) d = *(s) 562 #define ISP_IOXGET_32(isp, s, d) d = *(s) 563 #define ISP_SWIZZLE_NVRAM_WORD(isp, rp) 564 #define ISP_SWIZZLE_NVRAM_LONG(isp, rp) 565 566 #define ISP_IOZPUT_8(isp, s, d) *(d) = s 567 #define ISP_IOZPUT_16(isp, s, d) *(d) = bswap16(s) 568 #define ISP_IOZPUT_32(isp, s, d) *(d) = bswap32(s) 569 #define ISP_IOZGET_8(isp, s, d) d = (*((uint8_t *)(s))) 570 #define ISP_IOZGET_16(isp, s, d) d = bswap16(*((uint16_t *)(s))) 571 #define ISP_IOZGET_32(isp, s, d) d = bswap32(*((uint32_t *)(s))) 572 #endif 573 574 #define ISP_SWAP16(isp, s) bswap16(s) 575 #define ISP_SWAP32(isp, s) bswap32(s) 576 577 /* 578 * Includes of common header files 579 */ 580 581 #include <dev/isp/ispreg.h> 582 #include <dev/isp/ispvar.h> 583 #include <dev/isp/ispmbox.h> 584 585 /* 586 * isp_osinfo definiitions && shorthand 587 */ 588 #define SIMQFRZ_RESOURCE 0x1 589 #define SIMQFRZ_LOOPDOWN 0x2 590 #define SIMQFRZ_TIMED 0x4 591 592 #define isp_dev isp_osinfo.dev 593 594 /* 595 * prototypes for isp_pci && isp_freebsd to share 596 */ 597 extern int isp_attach(ispsoftc_t *); 598 extern int isp_detach(ispsoftc_t *); 599 extern uint64_t isp_default_wwn(ispsoftc_t *, int, int, int); 600 601 /* 602 * driver global data 603 */ 604 extern int isp_announced; 605 extern int isp_loop_down_limit; 606 extern int isp_gone_device_time; 607 extern int isp_quickboot_time; 608 609 /* 610 * Platform Library Functions 611 */ 612 void isp_prt(ispsoftc_t *, int level, const char *, ...) __printflike(3, 4); 613 void isp_xs_prt(ispsoftc_t *, XS_T *, int level, const char *, ...) __printflike(4, 5); 614 uint64_t isp_nanotime_sub(struct timespec *, struct timespec *); 615 int isp_fc_scratch_acquire(ispsoftc_t *, int); 616 void isp_platform_intr(void *); 617 void isp_platform_intr_resp(void *); 618 void isp_platform_intr_atio(void *); 619 int isp_dmasetup(ispsoftc_t *, XS_T *, void *); 620 void isp_dmafree(ispsoftc_t *, struct ccb_scsiio *); 621 void isp_fcp_reset_crn(ispsoftc_t *, int, uint32_t, int); 622 int isp_fcp_next_crn(ispsoftc_t *, uint8_t *, XS_T *); 623 624 /* 625 * Platform Version specific defines 626 */ 627 #define ISP_PATH_PRT(i, l, p, ...) \ 628 if ((l) == ISP_LOGALL || ((l)& (i)->isp_dblev) != 0) { \ 629 xpt_print(p, __VA_ARGS__); \ 630 } 631 632 /* 633 * ISP General Library functions 634 */ 635 636 #include <dev/isp/isp_library.h> 637 638 #endif /* _ISP_FREEBSD_H */ 639