1 /* $FreeBSD$ */ 2 /* 3 * PCI specific probe and attach routines for Qlogic ISP SCSI adapters. 4 * FreeBSD Version. 5 * 6 * Copyright (c) 1997, 1998, 1999, 2000, 2001 by Matthew Jacob 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 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/kernel.h> 33 #include <sys/module.h> 34 #include <sys/bus.h> 35 36 #include <pci/pcireg.h> 37 #include <pci/pcivar.h> 38 39 #include <machine/bus_memio.h> 40 #include <machine/bus_pio.h> 41 #include <machine/bus.h> 42 #include <machine/resource.h> 43 #include <sys/rman.h> 44 #include <sys/malloc.h> 45 46 #include <dev/isp/isp_freebsd.h> 47 48 static u_int16_t isp_pci_rd_reg(struct ispsoftc *, int); 49 static void isp_pci_wr_reg(struct ispsoftc *, int, u_int16_t); 50 static u_int16_t isp_pci_rd_reg_1080(struct ispsoftc *, int); 51 static void isp_pci_wr_reg_1080(struct ispsoftc *, int, u_int16_t); 52 static int 53 isp_pci_rd_isr(struct ispsoftc *, u_int16_t *, u_int16_t *, u_int16_t *); 54 static int 55 isp_pci_rd_isr_2300(struct ispsoftc *, u_int16_t *, u_int16_t *, u_int16_t *); 56 static int isp_pci_mbxdma(struct ispsoftc *); 57 static int 58 isp_pci_dmasetup(struct ispsoftc *, XS_T *, ispreq_t *, u_int16_t *, u_int16_t); 59 static void 60 isp_pci_dmateardown(struct ispsoftc *, XS_T *, u_int16_t); 61 62 static void isp_pci_reset1(struct ispsoftc *); 63 static void isp_pci_dumpregs(struct ispsoftc *, const char *); 64 65 static struct ispmdvec mdvec = { 66 isp_pci_rd_isr, 67 isp_pci_rd_reg, 68 isp_pci_wr_reg, 69 isp_pci_mbxdma, 70 isp_pci_dmasetup, 71 isp_pci_dmateardown, 72 NULL, 73 isp_pci_reset1, 74 isp_pci_dumpregs, 75 NULL, 76 BIU_BURST_ENABLE|BIU_PCI_CONF1_FIFO_64 77 }; 78 79 static struct ispmdvec mdvec_1080 = { 80 isp_pci_rd_isr, 81 isp_pci_rd_reg_1080, 82 isp_pci_wr_reg_1080, 83 isp_pci_mbxdma, 84 isp_pci_dmasetup, 85 isp_pci_dmateardown, 86 NULL, 87 isp_pci_reset1, 88 isp_pci_dumpregs, 89 NULL, 90 BIU_BURST_ENABLE|BIU_PCI_CONF1_FIFO_64 91 }; 92 93 static struct ispmdvec mdvec_12160 = { 94 isp_pci_rd_isr, 95 isp_pci_rd_reg_1080, 96 isp_pci_wr_reg_1080, 97 isp_pci_mbxdma, 98 isp_pci_dmasetup, 99 isp_pci_dmateardown, 100 NULL, 101 isp_pci_reset1, 102 isp_pci_dumpregs, 103 NULL, 104 BIU_BURST_ENABLE|BIU_PCI_CONF1_FIFO_64 105 }; 106 107 static struct ispmdvec mdvec_2100 = { 108 isp_pci_rd_isr, 109 isp_pci_rd_reg, 110 isp_pci_wr_reg, 111 isp_pci_mbxdma, 112 isp_pci_dmasetup, 113 isp_pci_dmateardown, 114 NULL, 115 isp_pci_reset1, 116 isp_pci_dumpregs 117 }; 118 119 static struct ispmdvec mdvec_2200 = { 120 isp_pci_rd_isr, 121 isp_pci_rd_reg, 122 isp_pci_wr_reg, 123 isp_pci_mbxdma, 124 isp_pci_dmasetup, 125 isp_pci_dmateardown, 126 NULL, 127 isp_pci_reset1, 128 isp_pci_dumpregs 129 }; 130 131 static struct ispmdvec mdvec_2300 = { 132 isp_pci_rd_isr_2300, 133 isp_pci_rd_reg, 134 isp_pci_wr_reg, 135 isp_pci_mbxdma, 136 isp_pci_dmasetup, 137 isp_pci_dmateardown, 138 NULL, 139 isp_pci_reset1, 140 isp_pci_dumpregs 141 }; 142 143 #ifndef PCIM_CMD_INVEN 144 #define PCIM_CMD_INVEN 0x10 145 #endif 146 #ifndef PCIM_CMD_BUSMASTEREN 147 #define PCIM_CMD_BUSMASTEREN 0x0004 148 #endif 149 #ifndef PCIM_CMD_PERRESPEN 150 #define PCIM_CMD_PERRESPEN 0x0040 151 #endif 152 #ifndef PCIM_CMD_SEREN 153 #define PCIM_CMD_SEREN 0x0100 154 #endif 155 156 #ifndef PCIR_COMMAND 157 #define PCIR_COMMAND 0x04 158 #endif 159 160 #ifndef PCIR_CACHELNSZ 161 #define PCIR_CACHELNSZ 0x0c 162 #endif 163 164 #ifndef PCIR_LATTIMER 165 #define PCIR_LATTIMER 0x0d 166 #endif 167 168 #ifndef PCIR_ROMADDR 169 #define PCIR_ROMADDR 0x30 170 #endif 171 172 #ifndef PCI_VENDOR_QLOGIC 173 #define PCI_VENDOR_QLOGIC 0x1077 174 #endif 175 176 #ifndef PCI_PRODUCT_QLOGIC_ISP1020 177 #define PCI_PRODUCT_QLOGIC_ISP1020 0x1020 178 #endif 179 180 #ifndef PCI_PRODUCT_QLOGIC_ISP1080 181 #define PCI_PRODUCT_QLOGIC_ISP1080 0x1080 182 #endif 183 184 #ifndef PCI_PRODUCT_QLOGIC_ISP12160 185 #define PCI_PRODUCT_QLOGIC_ISP12160 0x1216 186 #endif 187 188 #ifndef PCI_PRODUCT_QLOGIC_ISP1240 189 #define PCI_PRODUCT_QLOGIC_ISP1240 0x1240 190 #endif 191 192 #ifndef PCI_PRODUCT_QLOGIC_ISP1280 193 #define PCI_PRODUCT_QLOGIC_ISP1280 0x1280 194 #endif 195 196 #ifndef PCI_PRODUCT_QLOGIC_ISP2100 197 #define PCI_PRODUCT_QLOGIC_ISP2100 0x2100 198 #endif 199 200 #ifndef PCI_PRODUCT_QLOGIC_ISP2200 201 #define PCI_PRODUCT_QLOGIC_ISP2200 0x2200 202 #endif 203 204 #ifndef PCI_PRODUCT_QLOGIC_ISP2300 205 #define PCI_PRODUCT_QLOGIC_ISP2300 0x2300 206 #endif 207 208 #ifndef PCI_PRODUCT_QLOGIC_ISP2312 209 #define PCI_PRODUCT_QLOGIC_ISP2312 0x2312 210 #endif 211 212 #define PCI_QLOGIC_ISP1020 \ 213 ((PCI_PRODUCT_QLOGIC_ISP1020 << 16) | PCI_VENDOR_QLOGIC) 214 215 #define PCI_QLOGIC_ISP1080 \ 216 ((PCI_PRODUCT_QLOGIC_ISP1080 << 16) | PCI_VENDOR_QLOGIC) 217 218 #define PCI_QLOGIC_ISP12160 \ 219 ((PCI_PRODUCT_QLOGIC_ISP12160 << 16) | PCI_VENDOR_QLOGIC) 220 221 #define PCI_QLOGIC_ISP1240 \ 222 ((PCI_PRODUCT_QLOGIC_ISP1240 << 16) | PCI_VENDOR_QLOGIC) 223 224 #define PCI_QLOGIC_ISP1280 \ 225 ((PCI_PRODUCT_QLOGIC_ISP1280 << 16) | PCI_VENDOR_QLOGIC) 226 227 #define PCI_QLOGIC_ISP2100 \ 228 ((PCI_PRODUCT_QLOGIC_ISP2100 << 16) | PCI_VENDOR_QLOGIC) 229 230 #define PCI_QLOGIC_ISP2200 \ 231 ((PCI_PRODUCT_QLOGIC_ISP2200 << 16) | PCI_VENDOR_QLOGIC) 232 233 #define PCI_QLOGIC_ISP2300 \ 234 ((PCI_PRODUCT_QLOGIC_ISP2300 << 16) | PCI_VENDOR_QLOGIC) 235 236 #define PCI_QLOGIC_ISP2312 \ 237 ((PCI_PRODUCT_QLOGIC_ISP2312 << 16) | PCI_VENDOR_QLOGIC) 238 239 /* 240 * Odd case for some AMI raid cards... We need to *not* attach to this. 241 */ 242 #define AMI_RAID_SUBVENDOR_ID 0x101e 243 244 #define IO_MAP_REG 0x10 245 #define MEM_MAP_REG 0x14 246 247 #define PCI_DFLT_LTNCY 0x40 248 #define PCI_DFLT_LNSZ 0x10 249 250 static int isp_pci_probe (device_t); 251 static int isp_pci_attach (device_t); 252 253 254 struct isp_pcisoftc { 255 struct ispsoftc pci_isp; 256 device_t pci_dev; 257 struct resource * pci_reg; 258 bus_space_tag_t pci_st; 259 bus_space_handle_t pci_sh; 260 void * ih; 261 int16_t pci_poff[_NREG_BLKS]; 262 bus_dma_tag_t dmat; 263 bus_dmamap_t *dmaps; 264 }; 265 extern ispfwfunc *isp_get_firmware_p; 266 267 static device_method_t isp_pci_methods[] = { 268 /* Device interface */ 269 DEVMETHOD(device_probe, isp_pci_probe), 270 DEVMETHOD(device_attach, isp_pci_attach), 271 { 0, 0 } 272 }; 273 static void isp_pci_intr(void *); 274 275 static driver_t isp_pci_driver = { 276 "isp", isp_pci_methods, sizeof (struct isp_pcisoftc) 277 }; 278 static devclass_t isp_devclass; 279 DRIVER_MODULE(isp, pci, isp_pci_driver, isp_devclass, 0, 0); 280 281 static int 282 isp_pci_probe(device_t dev) 283 { 284 switch ((pci_get_device(dev) << 16) | (pci_get_vendor(dev))) { 285 case PCI_QLOGIC_ISP1020: 286 device_set_desc(dev, "Qlogic ISP 1020/1040 PCI SCSI Adapter"); 287 break; 288 case PCI_QLOGIC_ISP1080: 289 device_set_desc(dev, "Qlogic ISP 1080 PCI SCSI Adapter"); 290 break; 291 case PCI_QLOGIC_ISP1240: 292 device_set_desc(dev, "Qlogic ISP 1240 PCI SCSI Adapter"); 293 break; 294 case PCI_QLOGIC_ISP1280: 295 device_set_desc(dev, "Qlogic ISP 1280 PCI SCSI Adapter"); 296 break; 297 case PCI_QLOGIC_ISP12160: 298 if (pci_get_subvendor(dev) == AMI_RAID_SUBVENDOR_ID) { 299 return (ENXIO); 300 } 301 device_set_desc(dev, "Qlogic ISP 12160 PCI SCSI Adapter"); 302 break; 303 case PCI_QLOGIC_ISP2100: 304 device_set_desc(dev, "Qlogic ISP 2100 PCI FC-AL Adapter"); 305 break; 306 case PCI_QLOGIC_ISP2200: 307 device_set_desc(dev, "Qlogic ISP 2200 PCI FC-AL Adapter"); 308 break; 309 case PCI_QLOGIC_ISP2300: 310 device_set_desc(dev, "Qlogic ISP 2300 PCI FC-AL Adapter"); 311 break; 312 case PCI_QLOGIC_ISP2312: 313 device_set_desc(dev, "Qlogic ISP 2312 PCI FC-AL Adapter"); 314 break; 315 default: 316 return (ENXIO); 317 } 318 if (isp_announced == 0 && bootverbose) { 319 printf("Qlogic ISP Driver, FreeBSD Version %d.%d, " 320 "Core Version %d.%d\n", 321 ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR, 322 ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR); 323 isp_announced++; 324 } 325 /* 326 * XXXX: Here is where we might load the f/w module 327 * XXXX: (or increase a reference count to it). 328 */ 329 return (0); 330 } 331 332 static int 333 isp_pci_attach(device_t dev) 334 { 335 struct resource *regs, *irq; 336 int tval, rtp, rgd, iqd, m1, m2, isp_debug, role; 337 u_int32_t data, cmd, linesz, psize, basetype; 338 struct isp_pcisoftc *pcs; 339 struct ispsoftc *isp = NULL; 340 struct ispmdvec *mdvp; 341 const char *sptr; 342 int locksetup = 0; 343 344 /* 345 * Figure out if we're supposed to skip this one. 346 * If we are, we actually go to ISP_ROLE_NONE. 347 */ 348 349 tval = 0; 350 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 351 "disable", &tval) == 0 && tval) { 352 device_printf(dev, "device is disabled\n"); 353 /* but return 0 so the !$)$)*!$*) unit isn't reused */ 354 return (0); 355 } 356 357 role = 0; 358 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 359 "role", &role) == 0 && 360 ((role & ~(ISP_ROLE_INITIATOR|ISP_ROLE_TARGET)) == 0)) { 361 device_printf(dev, "setting role to 0x%x\n", role); 362 } else { 363 #ifdef ISP_TARGET_MODE 364 role = ISP_ROLE_INITIATOR|ISP_ROLE_TARGET; 365 #else 366 role = ISP_DEFAULT_ROLES; 367 #endif 368 } 369 370 pcs = malloc(sizeof (struct isp_pcisoftc), M_DEVBUF, M_NOWAIT | M_ZERO); 371 if (pcs == NULL) { 372 device_printf(dev, "cannot allocate softc\n"); 373 return (ENOMEM); 374 } 375 376 /* 377 * Figure out which we should try first - memory mapping or i/o mapping? 378 */ 379 #ifdef __alpha__ 380 m1 = PCIM_CMD_MEMEN; 381 m2 = PCIM_CMD_PORTEN; 382 #else 383 m1 = PCIM_CMD_PORTEN; 384 m2 = PCIM_CMD_MEMEN; 385 #endif 386 387 tval = 0; 388 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 389 "prefer_iomap", &tval) == 0 && tval != 0) { 390 m1 = PCIM_CMD_PORTEN; 391 m2 = PCIM_CMD_MEMEN; 392 } 393 tval = 0; 394 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 395 "prefer_memmap", &tval) == 0 && tval != 0) { 396 m1 = PCIM_CMD_MEMEN; 397 m2 = PCIM_CMD_PORTEN; 398 } 399 400 linesz = PCI_DFLT_LNSZ; 401 irq = regs = NULL; 402 rgd = rtp = iqd = 0; 403 404 cmd = pci_read_config(dev, PCIR_COMMAND, 1); 405 if (cmd & m1) { 406 rtp = (m1 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT; 407 rgd = (m1 == PCIM_CMD_MEMEN)? MEM_MAP_REG : IO_MAP_REG; 408 regs = bus_alloc_resource(dev, rtp, &rgd, 0, ~0, 1, RF_ACTIVE); 409 } 410 if (regs == NULL && (cmd & m2)) { 411 rtp = (m2 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT; 412 rgd = (m2 == PCIM_CMD_MEMEN)? MEM_MAP_REG : IO_MAP_REG; 413 regs = bus_alloc_resource(dev, rtp, &rgd, 0, ~0, 1, RF_ACTIVE); 414 } 415 if (regs == NULL) { 416 device_printf(dev, "unable to map any ports\n"); 417 goto bad; 418 } 419 if (bootverbose) 420 device_printf(dev, "using %s space register mapping\n", 421 (rgd == IO_MAP_REG)? "I/O" : "Memory"); 422 pcs->pci_dev = dev; 423 pcs->pci_reg = regs; 424 pcs->pci_st = rman_get_bustag(regs); 425 pcs->pci_sh = rman_get_bushandle(regs); 426 427 pcs->pci_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF; 428 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = PCI_MBOX_REGS_OFF; 429 pcs->pci_poff[SXP_BLOCK >> _BLK_REG_SHFT] = PCI_SXP_REGS_OFF; 430 pcs->pci_poff[RISC_BLOCK >> _BLK_REG_SHFT] = PCI_RISC_REGS_OFF; 431 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = DMA_REGS_OFF; 432 mdvp = &mdvec; 433 basetype = ISP_HA_SCSI_UNKNOWN; 434 psize = sizeof (sdparam); 435 if (pci_get_devid(dev) == PCI_QLOGIC_ISP1020) { 436 mdvp = &mdvec; 437 basetype = ISP_HA_SCSI_UNKNOWN; 438 psize = sizeof (sdparam); 439 } 440 if (pci_get_devid(dev) == PCI_QLOGIC_ISP1080) { 441 mdvp = &mdvec_1080; 442 basetype = ISP_HA_SCSI_1080; 443 psize = sizeof (sdparam); 444 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = 445 ISP1080_DMA_REGS_OFF; 446 } 447 if (pci_get_devid(dev) == PCI_QLOGIC_ISP1240) { 448 mdvp = &mdvec_1080; 449 basetype = ISP_HA_SCSI_1240; 450 psize = 2 * sizeof (sdparam); 451 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = 452 ISP1080_DMA_REGS_OFF; 453 } 454 if (pci_get_devid(dev) == PCI_QLOGIC_ISP1280) { 455 mdvp = &mdvec_1080; 456 basetype = ISP_HA_SCSI_1280; 457 psize = 2 * sizeof (sdparam); 458 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = 459 ISP1080_DMA_REGS_OFF; 460 } 461 if (pci_get_devid(dev) == PCI_QLOGIC_ISP12160) { 462 mdvp = &mdvec_12160; 463 basetype = ISP_HA_SCSI_12160; 464 psize = 2 * sizeof (sdparam); 465 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = 466 ISP1080_DMA_REGS_OFF; 467 } 468 if (pci_get_devid(dev) == PCI_QLOGIC_ISP2100) { 469 mdvp = &mdvec_2100; 470 basetype = ISP_HA_FC_2100; 471 psize = sizeof (fcparam); 472 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = 473 PCI_MBOX_REGS2100_OFF; 474 if (pci_get_revid(dev) < 3) { 475 /* 476 * XXX: Need to get the actual revision 477 * XXX: number of the 2100 FB. At any rate, 478 * XXX: lower cache line size for early revision 479 * XXX; boards. 480 */ 481 linesz = 1; 482 } 483 } 484 if (pci_get_devid(dev) == PCI_QLOGIC_ISP2200) { 485 mdvp = &mdvec_2200; 486 basetype = ISP_HA_FC_2200; 487 psize = sizeof (fcparam); 488 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = 489 PCI_MBOX_REGS2100_OFF; 490 } 491 if (pci_get_devid(dev) == PCI_QLOGIC_ISP2300) { 492 mdvp = &mdvec_2300; 493 basetype = ISP_HA_FC_2300; 494 psize = sizeof (fcparam); 495 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = 496 PCI_MBOX_REGS2300_OFF; 497 } 498 if (pci_get_devid(dev) == PCI_QLOGIC_ISP2312) { 499 mdvp = &mdvec_2300; 500 basetype = ISP_HA_FC_2312; 501 psize = sizeof (fcparam); 502 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = 503 PCI_MBOX_REGS2300_OFF; 504 } 505 isp = &pcs->pci_isp; 506 isp->isp_param = malloc(psize, M_DEVBUF, M_NOWAIT | M_ZERO); 507 if (isp->isp_param == NULL) { 508 device_printf(dev, "cannot allocate parameter data\n"); 509 goto bad; 510 } 511 isp->isp_mdvec = mdvp; 512 isp->isp_type = basetype; 513 isp->isp_revision = pci_get_revid(dev); 514 isp->isp_role = role; 515 isp->isp_dev = dev; 516 517 /* 518 * Try and find firmware for this device. 519 */ 520 521 if (isp_get_firmware_p) { 522 int device = (int) pci_get_device(dev); 523 #ifdef ISP_TARGET_MODE 524 (*isp_get_firmware_p)(0, 1, device, &mdvp->dv_ispfw); 525 #else 526 (*isp_get_firmware_p)(0, 0, device, &mdvp->dv_ispfw); 527 #endif 528 } 529 530 /* 531 * Make sure that SERR, PERR, WRITE INVALIDATE and BUSMASTER 532 * are set. 533 */ 534 cmd |= PCIM_CMD_SEREN | PCIM_CMD_PERRESPEN | 535 PCIM_CMD_BUSMASTEREN | PCIM_CMD_INVEN; 536 if (IS_2300(isp)) { /* per QLogic errata */ 537 cmd &= ~PCIM_CMD_INVEN; 538 } 539 if (IS_23XX(isp)) { 540 /* 541 * Can't tell if ROM will hang on 'ABOUT FIRMWARE' command. 542 */ 543 isp->isp_touched = 1; 544 545 } 546 pci_write_config(dev, PCIR_COMMAND, cmd, 1); 547 548 /* 549 * Make sure the Cache Line Size register is set sensibly. 550 */ 551 data = pci_read_config(dev, PCIR_CACHELNSZ, 1); 552 if (data != linesz) { 553 data = PCI_DFLT_LNSZ; 554 isp_prt(isp, ISP_LOGCONFIG, "set PCI line size to %d", data); 555 pci_write_config(dev, PCIR_CACHELNSZ, data, 1); 556 } 557 558 /* 559 * Make sure the Latency Timer is sane. 560 */ 561 data = pci_read_config(dev, PCIR_LATTIMER, 1); 562 if (data < PCI_DFLT_LTNCY) { 563 data = PCI_DFLT_LTNCY; 564 isp_prt(isp, ISP_LOGCONFIG, "set PCI latency to %d", data); 565 pci_write_config(dev, PCIR_LATTIMER, data, 1); 566 } 567 568 /* 569 * Make sure we've disabled the ROM. 570 */ 571 data = pci_read_config(dev, PCIR_ROMADDR, 4); 572 data &= ~1; 573 pci_write_config(dev, PCIR_ROMADDR, data, 4); 574 575 iqd = 0; 576 irq = bus_alloc_resource(dev, SYS_RES_IRQ, &iqd, 0, ~0, 577 1, RF_ACTIVE | RF_SHAREABLE); 578 if (irq == NULL) { 579 device_printf(dev, "could not allocate interrupt\n"); 580 goto bad; 581 } 582 583 tval = 0; 584 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 585 "fwload_disable", &tval) == 0 && tval != 0) { 586 isp->isp_confopts |= ISP_CFG_NORELOAD; 587 } 588 tval = 0; 589 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 590 "ignore_nvram", &tval) == 0 && tval != 0) { 591 isp->isp_confopts |= ISP_CFG_NONVRAM; 592 } 593 tval = 0; 594 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 595 "fullduplex", &tval) == 0 && tval != 0) { 596 isp->isp_confopts |= ISP_CFG_FULL_DUPLEX; 597 } 598 #ifdef ISP_FW_CRASH_DUMP 599 tval = 0; 600 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 601 "fw_dump_enable", &tval) == 0 && tval != 0) { 602 size_t amt = 0; 603 if (IS_2200(isp)) { 604 amt = QLA2200_RISC_IMAGE_DUMP_SIZE; 605 } else if (IS_23XX(isp)) { 606 amt = QLA2300_RISC_IMAGE_DUMP_SIZE; 607 } 608 if (amt) { 609 FCPARAM(isp)->isp_dump_data = 610 malloc(amt, M_DEVBUF, M_WAITOK | M_ZERO); 611 } else { 612 device_printf(dev, 613 "f/w crash dumps not supported for this model\n"); 614 } 615 } 616 #endif 617 618 sptr = 0; 619 if (resource_string_value(device_get_name(dev), device_get_unit(dev), 620 "topology", (const char **) &sptr) == 0 && sptr != 0) { 621 if (strcmp(sptr, "lport") == 0) { 622 isp->isp_confopts |= ISP_CFG_LPORT; 623 } else if (strcmp(sptr, "nport") == 0) { 624 isp->isp_confopts |= ISP_CFG_NPORT; 625 } else if (strcmp(sptr, "lport-only") == 0) { 626 isp->isp_confopts |= ISP_CFG_LPORT_ONLY; 627 } else if (strcmp(sptr, "nport-only") == 0) { 628 isp->isp_confopts |= ISP_CFG_NPORT_ONLY; 629 } 630 } 631 632 /* 633 * Because the resource_*_value functions can neither return 634 * 64 bit integer values, nor can they be directly coerced 635 * to interpret the right hand side of the assignment as 636 * you want them to interpret it, we have to force WWN 637 * hint replacement to specify WWN strings with a leading 638 * 'w' (e..g w50000000aaaa0001). Sigh. 639 */ 640 sptr = 0; 641 tval = resource_string_value(device_get_name(dev), device_get_unit(dev), 642 "portwwn", (const char **) &sptr); 643 if (tval == 0 && sptr != 0 && *sptr++ == 'w') { 644 char *eptr = 0; 645 isp->isp_osinfo.default_port_wwn = strtouq(sptr, &eptr, 16); 646 if (eptr < sptr + 16 || isp->isp_osinfo.default_port_wwn == 0) { 647 device_printf(dev, "mangled portwwn hint '%s'\n", sptr); 648 isp->isp_osinfo.default_port_wwn = 0; 649 } else { 650 isp->isp_confopts |= ISP_CFG_OWNWWPN; 651 } 652 } 653 if (isp->isp_osinfo.default_port_wwn == 0) { 654 isp->isp_osinfo.default_port_wwn = 0x400000007F000009ull; 655 } 656 657 sptr = 0; 658 tval = resource_string_value(device_get_name(dev), device_get_unit(dev), 659 "nodewwn", (const char **) &sptr); 660 if (tval == 0 && sptr != 0 && *sptr++ == 'w') { 661 char *eptr = 0; 662 isp->isp_osinfo.default_node_wwn = strtouq(sptr, &eptr, 16); 663 if (eptr < sptr + 16 || isp->isp_osinfo.default_node_wwn == 0) { 664 device_printf(dev, "mangled nodewwn hint '%s'\n", sptr); 665 isp->isp_osinfo.default_node_wwn = 0; 666 } else { 667 isp->isp_confopts |= ISP_CFG_OWNWWNN; 668 } 669 } 670 if (isp->isp_osinfo.default_node_wwn == 0) { 671 isp->isp_osinfo.default_node_wwn = 0x400000007F000009ull; 672 } 673 674 isp->isp_osinfo.default_id = -1; 675 if (resource_int_value(device_get_name(dev), device_get_unit(dev), 676 "iid", &tval) == 0) { 677 isp->isp_osinfo.default_id = tval; 678 isp->isp_confopts |= ISP_CFG_OWNLOOPID; 679 } 680 if (isp->isp_osinfo.default_id == -1) { 681 if (IS_FC(isp)) { 682 isp->isp_osinfo.default_id = 109; 683 } else { 684 isp->isp_osinfo.default_id = 7; 685 } 686 } 687 688 isp_debug = 0; 689 (void) resource_int_value(device_get_name(dev), device_get_unit(dev), 690 "debug", &isp_debug); 691 692 /* Make sure the lock is set up. */ 693 mtx_init(&isp->isp_osinfo.lock, "isp", NULL, MTX_DEF); 694 locksetup++; 695 696 if (bus_setup_intr(dev, irq, ISP_IFLAGS, isp_pci_intr, isp, &pcs->ih)) { 697 device_printf(dev, "could not setup interrupt\n"); 698 goto bad; 699 } 700 701 /* 702 * Set up logging levels. 703 */ 704 if (isp_debug) { 705 isp->isp_dblev = isp_debug; 706 } else { 707 isp->isp_dblev = ISP_LOGWARN|ISP_LOGERR; 708 } 709 if (bootverbose) 710 isp->isp_dblev |= ISP_LOGCONFIG|ISP_LOGINFO; 711 712 /* 713 * Last minute checks... 714 */ 715 if (IS_2312(isp)) { 716 isp->isp_port = pci_get_function(dev); 717 } 718 719 /* 720 * Make sure we're in reset state. 721 */ 722 ISP_LOCK(isp); 723 isp_reset(isp); 724 if (isp->isp_state != ISP_RESETSTATE) { 725 ISP_UNLOCK(isp); 726 goto bad; 727 } 728 isp_init(isp); 729 if (isp->isp_role != ISP_ROLE_NONE && isp->isp_state != ISP_INITSTATE) { 730 isp_uninit(isp); 731 ISP_UNLOCK(isp); 732 goto bad; 733 } 734 isp_attach(isp); 735 if (isp->isp_role != ISP_ROLE_NONE && isp->isp_state != ISP_RUNSTATE) { 736 isp_uninit(isp); 737 ISP_UNLOCK(isp); 738 goto bad; 739 } 740 /* 741 * XXXX: Here is where we might unload the f/w module 742 * XXXX: (or decrease the reference count to it). 743 */ 744 ISP_UNLOCK(isp); 745 return (0); 746 747 bad: 748 749 if (pcs && pcs->ih) { 750 (void) bus_teardown_intr(dev, irq, pcs->ih); 751 } 752 753 if (locksetup && isp) { 754 mtx_destroy(&isp->isp_osinfo.lock); 755 } 756 757 if (irq) { 758 (void) bus_release_resource(dev, SYS_RES_IRQ, iqd, irq); 759 } 760 761 762 if (regs) { 763 (void) bus_release_resource(dev, rtp, rgd, regs); 764 } 765 766 if (pcs) { 767 if (pcs->pci_isp.isp_param) 768 free(pcs->pci_isp.isp_param, M_DEVBUF); 769 free(pcs, M_DEVBUF); 770 } 771 772 /* 773 * XXXX: Here is where we might unload the f/w module 774 * XXXX: (or decrease the reference count to it). 775 */ 776 return (ENXIO); 777 } 778 779 static void 780 isp_pci_intr(void *arg) 781 { 782 struct ispsoftc *isp = arg; 783 u_int16_t isr, sema, mbox; 784 785 ISP_LOCK(isp); 786 isp->isp_intcnt++; 787 if (ISP_READ_ISR(isp, &isr, &sema, &mbox) == 0) { 788 isp->isp_intbogus++; 789 } else { 790 int iok = isp->isp_osinfo.intsok; 791 isp->isp_osinfo.intsok = 0; 792 isp_intr(isp, isr, sema, mbox); 793 isp->isp_osinfo.intsok = iok; 794 } 795 ISP_UNLOCK(isp); 796 } 797 798 799 #define IspVirt2Off(a, x) \ 800 (((struct isp_pcisoftc *)a)->pci_poff[((x) & _BLK_REG_MASK) >> \ 801 _BLK_REG_SHFT] + ((x) & 0xff)) 802 803 #define BXR2(pcs, off) \ 804 bus_space_read_2(pcs->pci_st, pcs->pci_sh, off) 805 #define BXW2(pcs, off, v) \ 806 bus_space_write_2(pcs->pci_st, pcs->pci_sh, off, v) 807 808 809 static INLINE int 810 isp_pci_rd_debounced(struct ispsoftc *isp, int off, u_int16_t *rp) 811 { 812 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 813 u_int16_t val0, val1; 814 int i = 0; 815 816 do { 817 val0 = BXR2(pcs, IspVirt2Off(isp, off)); 818 val1 = BXR2(pcs, IspVirt2Off(isp, off)); 819 } while (val0 != val1 && ++i < 1000); 820 if (val0 != val1) { 821 return (1); 822 } 823 *rp = val0; 824 return (0); 825 } 826 827 static int 828 isp_pci_rd_isr(struct ispsoftc *isp, u_int16_t *isrp, 829 u_int16_t *semap, u_int16_t *mbp) 830 { 831 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 832 u_int16_t isr, sema; 833 834 if (IS_2100(isp)) { 835 if (isp_pci_rd_debounced(isp, BIU_ISR, &isr)) { 836 return (0); 837 } 838 if (isp_pci_rd_debounced(isp, BIU_SEMA, &sema)) { 839 return (0); 840 } 841 } else { 842 isr = BXR2(pcs, IspVirt2Off(isp, BIU_ISR)); 843 sema = BXR2(pcs, IspVirt2Off(isp, BIU_SEMA)); 844 } 845 isp_prt(isp, ISP_LOGDEBUG3, "ISR 0x%x SEMA 0x%x", isr, sema); 846 isr &= INT_PENDING_MASK(isp); 847 sema &= BIU_SEMA_LOCK; 848 if (isr == 0 && sema == 0) { 849 return (0); 850 } 851 *isrp = isr; 852 if ((*semap = sema) != 0) { 853 if (IS_2100(isp)) { 854 if (isp_pci_rd_debounced(isp, OUTMAILBOX0, mbp)) { 855 return (0); 856 } 857 } else { 858 *mbp = BXR2(pcs, IspVirt2Off(isp, OUTMAILBOX0)); 859 } 860 } 861 return (1); 862 } 863 864 static int 865 isp_pci_rd_isr_2300(struct ispsoftc *isp, u_int16_t *isrp, 866 u_int16_t *semap, u_int16_t *mbox0p) 867 { 868 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 869 u_int32_t r2hisr; 870 871 if (!(BXR2(pcs, IspVirt2Off(isp, BIU_ISR) & BIU2100_ISR_RISC_INT))) { 872 *isrp = 0; 873 return (0); 874 } 875 r2hisr = bus_space_read_4(pcs->pci_st, pcs->pci_sh, 876 IspVirt2Off(pcs, BIU_R2HSTSLO)); 877 isp_prt(isp, ISP_LOGDEBUG3, "RISC2HOST ISR 0x%x", r2hisr); 878 if ((r2hisr & BIU_R2HST_INTR) == 0) { 879 *isrp = 0; 880 return (0); 881 } 882 switch (r2hisr & BIU_R2HST_ISTAT_MASK) { 883 case ISPR2HST_ROM_MBX_OK: 884 case ISPR2HST_ROM_MBX_FAIL: 885 case ISPR2HST_MBX_OK: 886 case ISPR2HST_MBX_FAIL: 887 case ISPR2HST_ASYNC_EVENT: 888 case ISPR2HST_RIO_16: 889 case ISPR2HST_FPOST: 890 case ISPR2HST_FPOST_CTIO: 891 *isrp = r2hisr & 0xffff; 892 *mbox0p = (r2hisr >> 16); 893 *semap = 1; 894 return (1); 895 case ISPR2HST_RSPQ_UPDATE: 896 *isrp = r2hisr & 0xffff; 897 *mbox0p = 0; 898 *semap = 0; 899 return (1); 900 default: 901 return (0); 902 } 903 } 904 905 static u_int16_t 906 isp_pci_rd_reg(struct ispsoftc *isp, int regoff) 907 { 908 u_int16_t rv; 909 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 910 int oldconf = 0; 911 912 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK) { 913 /* 914 * We will assume that someone has paused the RISC processor. 915 */ 916 oldconf = BXR2(pcs, IspVirt2Off(isp, BIU_CONF1)); 917 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), 918 oldconf | BIU_PCI_CONF1_SXP); 919 } 920 rv = BXR2(pcs, IspVirt2Off(isp, regoff)); 921 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK) { 922 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), oldconf); 923 } 924 return (rv); 925 } 926 927 static void 928 isp_pci_wr_reg(struct ispsoftc *isp, int regoff, u_int16_t val) 929 { 930 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 931 int oldconf = 0; 932 933 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK) { 934 /* 935 * We will assume that someone has paused the RISC processor. 936 */ 937 oldconf = BXR2(pcs, IspVirt2Off(isp, BIU_CONF1)); 938 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), 939 oldconf | BIU_PCI_CONF1_SXP); 940 } 941 BXW2(pcs, IspVirt2Off(isp, regoff), val); 942 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK) { 943 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), oldconf); 944 } 945 } 946 947 static u_int16_t 948 isp_pci_rd_reg_1080(struct ispsoftc *isp, int regoff) 949 { 950 u_int16_t rv, oc = 0; 951 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 952 953 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK || 954 (regoff & _BLK_REG_MASK) == (SXP_BLOCK|SXP_BANK1_SELECT)) { 955 u_int16_t tc; 956 /* 957 * We will assume that someone has paused the RISC processor. 958 */ 959 oc = BXR2(pcs, IspVirt2Off(isp, BIU_CONF1)); 960 tc = oc & ~BIU_PCI1080_CONF1_DMA; 961 if (regoff & SXP_BANK1_SELECT) 962 tc |= BIU_PCI1080_CONF1_SXP1; 963 else 964 tc |= BIU_PCI1080_CONF1_SXP0; 965 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), tc); 966 } else if ((regoff & _BLK_REG_MASK) == DMA_BLOCK) { 967 oc = BXR2(pcs, IspVirt2Off(isp, BIU_CONF1)); 968 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), 969 oc | BIU_PCI1080_CONF1_DMA); 970 } 971 rv = BXR2(pcs, IspVirt2Off(isp, regoff)); 972 if (oc) { 973 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), oc); 974 } 975 return (rv); 976 } 977 978 static void 979 isp_pci_wr_reg_1080(struct ispsoftc *isp, int regoff, u_int16_t val) 980 { 981 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 982 int oc = 0; 983 984 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK || 985 (regoff & _BLK_REG_MASK) == (SXP_BLOCK|SXP_BANK1_SELECT)) { 986 u_int16_t tc; 987 /* 988 * We will assume that someone has paused the RISC processor. 989 */ 990 oc = BXR2(pcs, IspVirt2Off(isp, BIU_CONF1)); 991 tc = oc & ~BIU_PCI1080_CONF1_DMA; 992 if (regoff & SXP_BANK1_SELECT) 993 tc |= BIU_PCI1080_CONF1_SXP1; 994 else 995 tc |= BIU_PCI1080_CONF1_SXP0; 996 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), tc); 997 } else if ((regoff & _BLK_REG_MASK) == DMA_BLOCK) { 998 oc = BXR2(pcs, IspVirt2Off(isp, BIU_CONF1)); 999 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), 1000 oc | BIU_PCI1080_CONF1_DMA); 1001 } 1002 BXW2(pcs, IspVirt2Off(isp, regoff), val); 1003 if (oc) { 1004 BXW2(pcs, IspVirt2Off(isp, BIU_CONF1), oc); 1005 } 1006 } 1007 1008 1009 struct imush { 1010 struct ispsoftc *isp; 1011 int error; 1012 }; 1013 1014 static void imc(void *, bus_dma_segment_t *, int, int); 1015 1016 static void 1017 imc(void *arg, bus_dma_segment_t *segs, int nseg, int error) 1018 { 1019 struct imush *imushp = (struct imush *) arg; 1020 if (error) { 1021 imushp->error = error; 1022 } else { 1023 struct ispsoftc *isp =imushp->isp; 1024 bus_addr_t addr = segs->ds_addr; 1025 1026 isp->isp_rquest_dma = addr; 1027 addr += ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp)); 1028 isp->isp_result_dma = addr; 1029 if (IS_FC(isp)) { 1030 addr += ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp)); 1031 FCPARAM(isp)->isp_scdma = addr; 1032 } 1033 } 1034 } 1035 1036 /* 1037 * Should be BUS_SPACE_MAXSIZE, but MAXPHYS is larger than BUS_SPACE_MAXSIZE 1038 */ 1039 #define ISP_NSEGS ((MAXPHYS / PAGE_SIZE) + 1) 1040 1041 static int 1042 isp_pci_mbxdma(struct ispsoftc *isp) 1043 { 1044 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *)isp; 1045 caddr_t base; 1046 u_int32_t len; 1047 int i, error, ns; 1048 bus_size_t bl; 1049 struct imush im; 1050 1051 /* 1052 * Already been here? If so, leave... 1053 */ 1054 if (isp->isp_rquest) { 1055 return (0); 1056 } 1057 1058 if (IS_ULTRA2(isp) || IS_FC(isp) || IS_1240(isp)) { 1059 bl = BUS_SPACE_UNRESTRICTED; 1060 } else { 1061 bl = BUS_SPACE_MAXADDR_24BIT; 1062 } 1063 1064 ISP_UNLOCK(isp); 1065 if (bus_dma_tag_create(NULL, 1, 0, BUS_SPACE_MAXADDR, 1066 BUS_SPACE_MAXADDR, NULL, NULL, BUS_SPACE_MAXSIZE, 1067 ISP_NSEGS, bl, 0, &pcs->dmat)) { 1068 isp_prt(isp, ISP_LOGERR, "could not create master dma tag"); 1069 ISP_LOCK(isp); 1070 return(1); 1071 } 1072 1073 1074 len = sizeof (XS_T **) * isp->isp_maxcmds; 1075 isp->isp_xflist = (XS_T **) malloc(len, M_DEVBUF, M_WAITOK | M_ZERO); 1076 if (isp->isp_xflist == NULL) { 1077 isp_prt(isp, ISP_LOGERR, "cannot alloc xflist array"); 1078 ISP_LOCK(isp); 1079 return (1); 1080 } 1081 len = sizeof (bus_dmamap_t) * isp->isp_maxcmds; 1082 pcs->dmaps = (bus_dmamap_t *) malloc(len, M_DEVBUF, M_WAITOK); 1083 if (pcs->dmaps == NULL) { 1084 isp_prt(isp, ISP_LOGERR, "can't alloc dma map storage"); 1085 free(isp->isp_xflist, M_DEVBUF); 1086 ISP_LOCK(isp); 1087 return (1); 1088 } 1089 1090 /* 1091 * Allocate and map the request, result queues, plus FC scratch area. 1092 */ 1093 len = ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp)); 1094 len += ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp)); 1095 if (IS_FC(isp)) { 1096 len += ISP2100_SCRLEN; 1097 } 1098 1099 ns = (len / PAGE_SIZE) + 1; 1100 if (bus_dma_tag_create(pcs->dmat, QENTRY_LEN, 0, BUS_SPACE_MAXADDR, 1101 BUS_SPACE_MAXADDR, NULL, NULL, len, ns, bl, 0, &isp->isp_cdmat)) { 1102 isp_prt(isp, ISP_LOGERR, 1103 "cannot create a dma tag for control spaces"); 1104 free(pcs->dmaps, M_DEVBUF); 1105 free(isp->isp_xflist, M_DEVBUF); 1106 ISP_LOCK(isp); 1107 return (1); 1108 } 1109 1110 if (bus_dmamem_alloc(isp->isp_cdmat, (void **)&base, BUS_DMA_NOWAIT, 1111 &isp->isp_cdmap) != 0) { 1112 isp_prt(isp, ISP_LOGERR, 1113 "cannot allocate %d bytes of CCB memory", len); 1114 bus_dma_tag_destroy(isp->isp_cdmat); 1115 free(isp->isp_xflist, M_DEVBUF); 1116 free(pcs->dmaps, M_DEVBUF); 1117 ISP_LOCK(isp); 1118 return (1); 1119 } 1120 1121 for (i = 0; i < isp->isp_maxcmds; i++) { 1122 error = bus_dmamap_create(pcs->dmat, 0, &pcs->dmaps[i]); 1123 if (error) { 1124 isp_prt(isp, ISP_LOGERR, 1125 "error %d creating per-cmd DMA maps", error); 1126 while (--i >= 0) { 1127 bus_dmamap_destroy(pcs->dmat, pcs->dmaps[i]); 1128 } 1129 goto bad; 1130 } 1131 } 1132 1133 im.isp = isp; 1134 im.error = 0; 1135 bus_dmamap_load(isp->isp_cdmat, isp->isp_cdmap, base, len, imc, &im, 0); 1136 if (im.error) { 1137 isp_prt(isp, ISP_LOGERR, 1138 "error %d loading dma map for control areas", im.error); 1139 goto bad; 1140 } 1141 1142 isp->isp_rquest = base; 1143 base += ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp)); 1144 isp->isp_result = base; 1145 if (IS_FC(isp)) { 1146 base += ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp)); 1147 FCPARAM(isp)->isp_scratch = base; 1148 } 1149 ISP_LOCK(isp); 1150 return (0); 1151 1152 bad: 1153 bus_dmamem_free(isp->isp_cdmat, base, isp->isp_cdmap); 1154 bus_dma_tag_destroy(isp->isp_cdmat); 1155 free(isp->isp_xflist, M_DEVBUF); 1156 free(pcs->dmaps, M_DEVBUF); 1157 ISP_LOCK(isp); 1158 isp->isp_rquest = NULL; 1159 return (1); 1160 } 1161 1162 typedef struct { 1163 struct ispsoftc *isp; 1164 void *cmd_token; 1165 void *rq; 1166 u_int16_t *nxtip; 1167 u_int16_t optr; 1168 u_int error; 1169 } mush_t; 1170 1171 #define MUSHERR_NOQENTRIES -2 1172 1173 #ifdef ISP_TARGET_MODE 1174 /* 1175 * We need to handle DMA for target mode differently from initiator mode. 1176 * 1177 * DMA mapping and construction and submission of CTIO Request Entries 1178 * and rendevous for completion are very tightly coupled because we start 1179 * out by knowing (per platform) how much data we have to move, but we 1180 * don't know, up front, how many DMA mapping segments will have to be used 1181 * cover that data, so we don't know how many CTIO Request Entries we 1182 * will end up using. Further, for performance reasons we may want to 1183 * (on the last CTIO for Fibre Channel), send status too (if all went well). 1184 * 1185 * The standard vector still goes through isp_pci_dmasetup, but the callback 1186 * for the DMA mapping routines comes here instead with the whole transfer 1187 * mapped and a pointer to a partially filled in already allocated request 1188 * queue entry. We finish the job. 1189 */ 1190 static void tdma_mk(void *, bus_dma_segment_t *, int, int); 1191 static void tdma_mkfc(void *, bus_dma_segment_t *, int, int); 1192 1193 #define STATUS_WITH_DATA 1 1194 1195 static void 1196 tdma_mk(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) 1197 { 1198 mush_t *mp; 1199 struct ccb_scsiio *csio; 1200 struct ispsoftc *isp; 1201 struct isp_pcisoftc *pcs; 1202 bus_dmamap_t *dp; 1203 ct_entry_t *cto, *qe; 1204 u_int8_t scsi_status; 1205 u_int16_t curi, nxti, handle; 1206 u_int32_t sflags; 1207 int32_t resid; 1208 int nth_ctio, nctios, send_status; 1209 1210 mp = (mush_t *) arg; 1211 if (error) { 1212 mp->error = error; 1213 return; 1214 } 1215 1216 isp = mp->isp; 1217 csio = mp->cmd_token; 1218 cto = mp->rq; 1219 curi = isp->isp_reqidx; 1220 qe = (ct_entry_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, curi); 1221 1222 cto->ct_xfrlen = 0; 1223 cto->ct_seg_count = 0; 1224 cto->ct_header.rqs_entry_count = 1; 1225 MEMZERO(cto->ct_dataseg, sizeof(cto->ct_dataseg)); 1226 1227 if (nseg == 0) { 1228 cto->ct_header.rqs_seqno = 1; 1229 isp_prt(isp, ISP_LOGTDEBUG1, 1230 "CTIO[%x] lun%d iid%d tag %x flgs %x sts %x ssts %x res %d", 1231 cto->ct_fwhandle, csio->ccb_h.target_lun, cto->ct_iid, 1232 cto->ct_tag_val, cto->ct_flags, cto->ct_status, 1233 cto->ct_scsi_status, cto->ct_resid); 1234 ISP_TDQE(isp, "tdma_mk[no data]", curi, cto); 1235 isp_put_ctio(isp, cto, qe); 1236 return; 1237 } 1238 1239 nctios = nseg / ISP_RQDSEG; 1240 if (nseg % ISP_RQDSEG) { 1241 nctios++; 1242 } 1243 1244 /* 1245 * Save syshandle, and potentially any SCSI status, which we'll 1246 * reinsert on the last CTIO we're going to send. 1247 */ 1248 1249 handle = cto->ct_syshandle; 1250 cto->ct_syshandle = 0; 1251 cto->ct_header.rqs_seqno = 0; 1252 send_status = (cto->ct_flags & CT_SENDSTATUS) != 0; 1253 1254 if (send_status) { 1255 sflags = cto->ct_flags & (CT_SENDSTATUS | CT_CCINCR); 1256 cto->ct_flags &= ~(CT_SENDSTATUS | CT_CCINCR); 1257 /* 1258 * Preserve residual. 1259 */ 1260 resid = cto->ct_resid; 1261 1262 /* 1263 * Save actual SCSI status. 1264 */ 1265 scsi_status = cto->ct_scsi_status; 1266 1267 #ifndef STATUS_WITH_DATA 1268 sflags |= CT_NO_DATA; 1269 /* 1270 * We can't do a status at the same time as a data CTIO, so 1271 * we need to synthesize an extra CTIO at this level. 1272 */ 1273 nctios++; 1274 #endif 1275 } else { 1276 sflags = scsi_status = resid = 0; 1277 } 1278 1279 cto->ct_resid = 0; 1280 cto->ct_scsi_status = 0; 1281 1282 pcs = (struct isp_pcisoftc *)isp; 1283 dp = &pcs->dmaps[isp_handle_index(handle)]; 1284 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1285 bus_dmamap_sync(pcs->dmat, *dp, BUS_DMASYNC_PREREAD); 1286 } else { 1287 bus_dmamap_sync(pcs->dmat, *dp, BUS_DMASYNC_PREWRITE); 1288 } 1289 1290 nxti = *mp->nxtip; 1291 1292 for (nth_ctio = 0; nth_ctio < nctios; nth_ctio++) { 1293 int seglim; 1294 1295 seglim = nseg; 1296 if (seglim) { 1297 int seg; 1298 1299 if (seglim > ISP_RQDSEG) 1300 seglim = ISP_RQDSEG; 1301 1302 for (seg = 0; seg < seglim; seg++, nseg--) { 1303 /* 1304 * Unlike normal initiator commands, we don't 1305 * do any swizzling here. 1306 */ 1307 cto->ct_dataseg[seg].ds_count = dm_segs->ds_len; 1308 cto->ct_dataseg[seg].ds_base = dm_segs->ds_addr; 1309 cto->ct_xfrlen += dm_segs->ds_len; 1310 dm_segs++; 1311 } 1312 cto->ct_seg_count = seg; 1313 } else { 1314 /* 1315 * This case should only happen when we're sending an 1316 * extra CTIO with final status. 1317 */ 1318 if (send_status == 0) { 1319 isp_prt(isp, ISP_LOGWARN, 1320 "tdma_mk ran out of segments"); 1321 mp->error = EINVAL; 1322 return; 1323 } 1324 } 1325 1326 /* 1327 * At this point, the fields ct_lun, ct_iid, ct_tagval, 1328 * ct_tagtype, and ct_timeout have been carried over 1329 * unchanged from what our caller had set. 1330 * 1331 * The dataseg fields and the seg_count fields we just got 1332 * through setting. The data direction we've preserved all 1333 * along and only clear it if we're now sending status. 1334 */ 1335 1336 if (nth_ctio == nctios - 1) { 1337 /* 1338 * We're the last in a sequence of CTIOs, so mark 1339 * this CTIO and save the handle to the CCB such that 1340 * when this CTIO completes we can free dma resources 1341 * and do whatever else we need to do to finish the 1342 * rest of the command. We *don't* give this to the 1343 * firmware to work on- the caller will do that. 1344 */ 1345 1346 cto->ct_syshandle = handle; 1347 cto->ct_header.rqs_seqno = 1; 1348 1349 if (send_status) { 1350 cto->ct_scsi_status = scsi_status; 1351 cto->ct_flags |= sflags; 1352 cto->ct_resid = resid; 1353 } 1354 if (send_status) { 1355 isp_prt(isp, ISP_LOGTDEBUG1, 1356 "CTIO[%x] lun%d iid %d tag %x ct_flags %x " 1357 "scsi status %x resid %d", 1358 cto->ct_fwhandle, csio->ccb_h.target_lun, 1359 cto->ct_iid, cto->ct_tag_val, cto->ct_flags, 1360 cto->ct_scsi_status, cto->ct_resid); 1361 } else { 1362 isp_prt(isp, ISP_LOGTDEBUG1, 1363 "CTIO[%x] lun%d iid%d tag %x ct_flags 0x%x", 1364 cto->ct_fwhandle, csio->ccb_h.target_lun, 1365 cto->ct_iid, cto->ct_tag_val, 1366 cto->ct_flags); 1367 } 1368 isp_put_ctio(isp, cto, qe); 1369 ISP_TDQE(isp, "last tdma_mk", curi, cto); 1370 if (nctios > 1) { 1371 MEMORYBARRIER(isp, SYNC_REQUEST, 1372 curi, QENTRY_LEN); 1373 } 1374 } else { 1375 ct_entry_t *oqe = qe; 1376 1377 /* 1378 * Make sure syshandle fields are clean 1379 */ 1380 cto->ct_syshandle = 0; 1381 cto->ct_header.rqs_seqno = 0; 1382 1383 isp_prt(isp, ISP_LOGTDEBUG1, 1384 "CTIO[%x] lun%d for ID%d ct_flags 0x%x", 1385 cto->ct_fwhandle, csio->ccb_h.target_lun, 1386 cto->ct_iid, cto->ct_flags); 1387 1388 /* 1389 * Get a new CTIO 1390 */ 1391 qe = (ct_entry_t *) 1392 ISP_QUEUE_ENTRY(isp->isp_rquest, nxti); 1393 nxti = ISP_NXT_QENTRY(nxti, RQUEST_QUEUE_LEN(isp)); 1394 if (nxti == mp->optr) { 1395 isp_prt(isp, ISP_LOGTDEBUG0, 1396 "Queue Overflow in tdma_mk"); 1397 mp->error = MUSHERR_NOQENTRIES; 1398 return; 1399 } 1400 1401 /* 1402 * Now that we're done with the old CTIO, 1403 * flush it out to the request queue. 1404 */ 1405 ISP_TDQE(isp, "dma_tgt_fc", curi, cto); 1406 isp_put_ctio(isp, cto, oqe); 1407 if (nth_ctio != 0) { 1408 MEMORYBARRIER(isp, SYNC_REQUEST, curi, 1409 QENTRY_LEN); 1410 } 1411 curi = ISP_NXT_QENTRY(curi, RQUEST_QUEUE_LEN(isp)); 1412 1413 /* 1414 * Reset some fields in the CTIO so we can reuse 1415 * for the next one we'll flush to the request 1416 * queue. 1417 */ 1418 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO; 1419 cto->ct_header.rqs_entry_count = 1; 1420 cto->ct_header.rqs_flags = 0; 1421 cto->ct_status = 0; 1422 cto->ct_scsi_status = 0; 1423 cto->ct_xfrlen = 0; 1424 cto->ct_resid = 0; 1425 cto->ct_seg_count = 0; 1426 MEMZERO(cto->ct_dataseg, sizeof(cto->ct_dataseg)); 1427 } 1428 } 1429 *mp->nxtip = nxti; 1430 } 1431 1432 /* 1433 * We don't have to do multiple CTIOs here. Instead, we can just do 1434 * continuation segments as needed. This greatly simplifies the code 1435 * improves performance. 1436 */ 1437 1438 static void 1439 tdma_mkfc(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) 1440 { 1441 mush_t *mp; 1442 struct ccb_scsiio *csio; 1443 struct ispsoftc *isp; 1444 ct2_entry_t *cto, *qe; 1445 u_int16_t curi, nxti; 1446 int segcnt; 1447 1448 mp = (mush_t *) arg; 1449 if (error) { 1450 mp->error = error; 1451 return; 1452 } 1453 1454 isp = mp->isp; 1455 csio = mp->cmd_token; 1456 cto = mp->rq; 1457 1458 curi = isp->isp_reqidx; 1459 qe = (ct2_entry_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, curi); 1460 1461 if (nseg == 0) { 1462 if ((cto->ct_flags & CT2_FLAG_MMASK) != CT2_FLAG_MODE1) { 1463 isp_prt(isp, ISP_LOGWARN, 1464 "dma2_tgt_fc, a status CTIO2 without MODE1 " 1465 "set (0x%x)", cto->ct_flags); 1466 mp->error = EINVAL; 1467 return; 1468 } 1469 /* 1470 * We preserve ct_lun, ct_iid, ct_rxid. We set the data 1471 * flags to NO DATA and clear relative offset flags. 1472 * We preserve the ct_resid and the response area. 1473 */ 1474 cto->ct_header.rqs_seqno = 1; 1475 cto->ct_seg_count = 0; 1476 cto->ct_reloff = 0; 1477 isp_prt(isp, ISP_LOGTDEBUG1, 1478 "CTIO2[%x] lun %d->iid%d flgs 0x%x sts 0x%x ssts " 1479 "0x%x res %d", cto->ct_rxid, csio->ccb_h.target_lun, 1480 cto->ct_iid, cto->ct_flags, cto->ct_status, 1481 cto->rsp.m1.ct_scsi_status, cto->ct_resid); 1482 isp_put_ctio2(isp, cto, qe); 1483 ISP_TDQE(isp, "dma2_tgt_fc[no data]", curi, qe); 1484 return; 1485 } 1486 1487 if ((cto->ct_flags & CT2_FLAG_MMASK) != CT2_FLAG_MODE0) { 1488 isp_prt(isp, ISP_LOGERR, 1489 "dma2_tgt_fc, a data CTIO2 without MODE0 set " 1490 "(0x%x)", cto->ct_flags); 1491 mp->error = EINVAL; 1492 return; 1493 } 1494 1495 1496 nxti = *mp->nxtip; 1497 1498 /* 1499 * Set up the CTIO2 data segments. 1500 */ 1501 for (segcnt = 0; cto->ct_seg_count < ISP_RQDSEG_T2 && segcnt < nseg; 1502 cto->ct_seg_count++, segcnt++) { 1503 cto->rsp.m0.ct_dataseg[cto->ct_seg_count].ds_base = 1504 dm_segs[segcnt].ds_addr; 1505 cto->rsp.m0.ct_dataseg[cto->ct_seg_count].ds_count = 1506 dm_segs[segcnt].ds_len; 1507 cto->rsp.m0.ct_xfrlen += dm_segs[segcnt].ds_len; 1508 isp_prt(isp, ISP_LOGTDEBUG1, "isp_send_ctio2: ent0[%d]0x%x:%d", 1509 cto->ct_seg_count, dm_segs[segcnt].ds_addr, 1510 dm_segs[segcnt].ds_len); 1511 } 1512 1513 while (segcnt < nseg) { 1514 u_int16_t curip; 1515 int seg; 1516 ispcontreq_t local, *crq = &local, *qep; 1517 1518 qep = (ispcontreq_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, nxti); 1519 curip = nxti; 1520 nxti = ISP_NXT_QENTRY(curip, RQUEST_QUEUE_LEN(isp)); 1521 if (nxti == mp->optr) { 1522 ISP_UNLOCK(isp); 1523 isp_prt(isp, ISP_LOGTDEBUG0, 1524 "tdma_mkfc: request queue overflow"); 1525 mp->error = MUSHERR_NOQENTRIES; 1526 return; 1527 } 1528 cto->ct_header.rqs_entry_count++; 1529 MEMZERO((void *)crq, sizeof (*crq)); 1530 crq->req_header.rqs_entry_count = 1; 1531 crq->req_header.rqs_entry_type = RQSTYPE_DATASEG; 1532 for (seg = 0; segcnt < nseg && seg < ISP_CDSEG; 1533 segcnt++, seg++) { 1534 crq->req_dataseg[seg].ds_base = dm_segs[segcnt].ds_addr; 1535 crq->req_dataseg[seg].ds_count = dm_segs[segcnt].ds_len; 1536 isp_prt(isp, ISP_LOGTDEBUG1, 1537 "isp_send_ctio2: ent%d[%d]%x:%u", 1538 cto->ct_header.rqs_entry_count-1, seg, 1539 dm_segs[segcnt].ds_addr, dm_segs[segcnt].ds_len); 1540 cto->rsp.m0.ct_xfrlen += dm_segs[segcnt].ds_len; 1541 cto->ct_seg_count++; 1542 } 1543 MEMORYBARRIER(isp, SYNC_REQUEST, curip, QENTRY_LEN); 1544 isp_put_cont_req(isp, crq, qep); 1545 ISP_TDQE(isp, "cont entry", curi, qep); 1546 } 1547 1548 /* 1549 * No do final twiddling for the CTIO itself. 1550 */ 1551 cto->ct_header.rqs_seqno = 1; 1552 isp_prt(isp, ISP_LOGTDEBUG1, 1553 "CTIO2[%x] lun %d->iid%d flgs 0x%x sts 0x%x ssts 0x%x resid %d", 1554 cto->ct_rxid, csio->ccb_h.target_lun, (int) cto->ct_iid, 1555 cto->ct_flags, cto->ct_status, cto->rsp.m1.ct_scsi_status, 1556 cto->ct_resid); 1557 isp_put_ctio2(isp, cto, qe); 1558 ISP_TDQE(isp, "last dma2_tgt_fc", curi, qe); 1559 *mp->nxtip = nxti; 1560 } 1561 #endif 1562 1563 static void dma2(void *, bus_dma_segment_t *, int, int); 1564 1565 static void 1566 dma2(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) 1567 { 1568 mush_t *mp; 1569 struct ispsoftc *isp; 1570 struct ccb_scsiio *csio; 1571 struct isp_pcisoftc *pcs; 1572 bus_dmamap_t *dp; 1573 bus_dma_segment_t *eseg; 1574 ispreq_t *rq; 1575 int seglim, datalen; 1576 u_int16_t nxti; 1577 1578 mp = (mush_t *) arg; 1579 if (error) { 1580 mp->error = error; 1581 return; 1582 } 1583 1584 if (nseg < 1) { 1585 isp_prt(mp->isp, ISP_LOGERR, "bad segment count (%d)", nseg); 1586 mp->error = EFAULT; 1587 return; 1588 } 1589 csio = mp->cmd_token; 1590 isp = mp->isp; 1591 rq = mp->rq; 1592 pcs = (struct isp_pcisoftc *)mp->isp; 1593 dp = &pcs->dmaps[isp_handle_index(rq->req_handle)]; 1594 nxti = *mp->nxtip; 1595 1596 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1597 bus_dmamap_sync(pcs->dmat, *dp, BUS_DMASYNC_PREREAD); 1598 } else { 1599 bus_dmamap_sync(pcs->dmat, *dp, BUS_DMASYNC_PREWRITE); 1600 } 1601 1602 datalen = XS_XFRLEN(csio); 1603 1604 /* 1605 * We're passed an initial partially filled in entry that 1606 * has most fields filled in except for data transfer 1607 * related values. 1608 * 1609 * Our job is to fill in the initial request queue entry and 1610 * then to start allocating and filling in continuation entries 1611 * until we've covered the entire transfer. 1612 */ 1613 1614 if (IS_FC(isp)) { 1615 seglim = ISP_RQDSEG_T2; 1616 ((ispreqt2_t *)rq)->req_totalcnt = datalen; 1617 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1618 ((ispreqt2_t *)rq)->req_flags |= REQFLAG_DATA_IN; 1619 } else { 1620 ((ispreqt2_t *)rq)->req_flags |= REQFLAG_DATA_OUT; 1621 } 1622 } else { 1623 if (csio->cdb_len > 12) { 1624 seglim = 0; 1625 } else { 1626 seglim = ISP_RQDSEG; 1627 } 1628 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1629 rq->req_flags |= REQFLAG_DATA_IN; 1630 } else { 1631 rq->req_flags |= REQFLAG_DATA_OUT; 1632 } 1633 } 1634 1635 eseg = dm_segs + nseg; 1636 1637 while (datalen != 0 && rq->req_seg_count < seglim && dm_segs != eseg) { 1638 if (IS_FC(isp)) { 1639 ispreqt2_t *rq2 = (ispreqt2_t *)rq; 1640 rq2->req_dataseg[rq2->req_seg_count].ds_base = 1641 dm_segs->ds_addr; 1642 rq2->req_dataseg[rq2->req_seg_count].ds_count = 1643 dm_segs->ds_len; 1644 } else { 1645 rq->req_dataseg[rq->req_seg_count].ds_base = 1646 dm_segs->ds_addr; 1647 rq->req_dataseg[rq->req_seg_count].ds_count = 1648 dm_segs->ds_len; 1649 } 1650 datalen -= dm_segs->ds_len; 1651 rq->req_seg_count++; 1652 dm_segs++; 1653 } 1654 1655 while (datalen > 0 && dm_segs != eseg) { 1656 u_int16_t onxti; 1657 ispcontreq_t local, *crq = &local, *cqe; 1658 1659 cqe = (ispcontreq_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, nxti); 1660 onxti = nxti; 1661 nxti = ISP_NXT_QENTRY(onxti, RQUEST_QUEUE_LEN(isp)); 1662 if (nxti == mp->optr) { 1663 isp_prt(isp, ISP_LOGDEBUG0, "Request Queue Overflow++"); 1664 mp->error = MUSHERR_NOQENTRIES; 1665 return; 1666 } 1667 rq->req_header.rqs_entry_count++; 1668 MEMZERO((void *)crq, sizeof (*crq)); 1669 crq->req_header.rqs_entry_count = 1; 1670 crq->req_header.rqs_entry_type = RQSTYPE_DATASEG; 1671 1672 seglim = 0; 1673 while (datalen > 0 && seglim < ISP_CDSEG && dm_segs != eseg) { 1674 crq->req_dataseg[seglim].ds_base = 1675 dm_segs->ds_addr; 1676 crq->req_dataseg[seglim].ds_count = 1677 dm_segs->ds_len; 1678 rq->req_seg_count++; 1679 dm_segs++; 1680 seglim++; 1681 datalen -= dm_segs->ds_len; 1682 } 1683 isp_put_cont_req(isp, crq, cqe); 1684 MEMORYBARRIER(isp, SYNC_REQUEST, onxti, QENTRY_LEN); 1685 } 1686 *mp->nxtip = nxti; 1687 } 1688 1689 static int 1690 isp_pci_dmasetup(struct ispsoftc *isp, struct ccb_scsiio *csio, ispreq_t *rq, 1691 u_int16_t *nxtip, u_int16_t optr) 1692 { 1693 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *)isp; 1694 ispreq_t *qep; 1695 bus_dmamap_t *dp = NULL; 1696 mush_t mush, *mp; 1697 void (*eptr)(void *, bus_dma_segment_t *, int, int); 1698 1699 qep = (ispreq_t *) ISP_QUEUE_ENTRY(isp->isp_rquest, isp->isp_reqidx); 1700 #ifdef ISP_TARGET_MODE 1701 if (csio->ccb_h.func_code == XPT_CONT_TARGET_IO) { 1702 if (IS_FC(isp)) { 1703 eptr = tdma_mkfc; 1704 } else { 1705 eptr = tdma_mk; 1706 } 1707 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE || 1708 (csio->dxfer_len == 0)) { 1709 mp = &mush; 1710 mp->isp = isp; 1711 mp->cmd_token = csio; 1712 mp->rq = rq; /* really a ct_entry_t or ct2_entry_t */ 1713 mp->nxtip = nxtip; 1714 mp->optr = optr; 1715 mp->error = 0; 1716 (*eptr)(mp, NULL, 0, 0); 1717 goto mbxsync; 1718 } 1719 } else 1720 #endif 1721 eptr = dma2; 1722 1723 1724 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE || 1725 (csio->dxfer_len == 0)) { 1726 rq->req_seg_count = 1; 1727 goto mbxsync; 1728 } 1729 1730 /* 1731 * Do a virtual grapevine step to collect info for 1732 * the callback dma allocation that we have to use... 1733 */ 1734 mp = &mush; 1735 mp->isp = isp; 1736 mp->cmd_token = csio; 1737 mp->rq = rq; 1738 mp->nxtip = nxtip; 1739 mp->optr = optr; 1740 mp->error = 0; 1741 1742 if ((csio->ccb_h.flags & CAM_SCATTER_VALID) == 0) { 1743 if ((csio->ccb_h.flags & CAM_DATA_PHYS) == 0) { 1744 int error, s; 1745 dp = &pcs->dmaps[isp_handle_index(rq->req_handle)]; 1746 s = splsoftvm(); 1747 error = bus_dmamap_load(pcs->dmat, *dp, 1748 csio->data_ptr, csio->dxfer_len, eptr, mp, 0); 1749 if (error == EINPROGRESS) { 1750 bus_dmamap_unload(pcs->dmat, *dp); 1751 mp->error = EINVAL; 1752 isp_prt(isp, ISP_LOGERR, 1753 "deferred dma allocation not supported"); 1754 } else if (error && mp->error == 0) { 1755 #ifdef DIAGNOSTIC 1756 isp_prt(isp, ISP_LOGERR, 1757 "error %d in dma mapping code", error); 1758 #endif 1759 mp->error = error; 1760 } 1761 splx(s); 1762 } else { 1763 /* Pointer to physical buffer */ 1764 struct bus_dma_segment seg; 1765 seg.ds_addr = (bus_addr_t)csio->data_ptr; 1766 seg.ds_len = csio->dxfer_len; 1767 (*eptr)(mp, &seg, 1, 0); 1768 } 1769 } else { 1770 struct bus_dma_segment *segs; 1771 1772 if ((csio->ccb_h.flags & CAM_DATA_PHYS) != 0) { 1773 isp_prt(isp, ISP_LOGERR, 1774 "Physical segment pointers unsupported"); 1775 mp->error = EINVAL; 1776 } else if ((csio->ccb_h.flags & CAM_SG_LIST_PHYS) == 0) { 1777 isp_prt(isp, ISP_LOGERR, 1778 "Virtual segment addresses unsupported"); 1779 mp->error = EINVAL; 1780 } else { 1781 /* Just use the segments provided */ 1782 segs = (struct bus_dma_segment *) csio->data_ptr; 1783 (*eptr)(mp, segs, csio->sglist_cnt, 0); 1784 } 1785 } 1786 if (mp->error) { 1787 int retval = CMD_COMPLETE; 1788 if (mp->error == MUSHERR_NOQENTRIES) { 1789 retval = CMD_EAGAIN; 1790 } else if (mp->error == EFBIG) { 1791 XS_SETERR(csio, CAM_REQ_TOO_BIG); 1792 } else if (mp->error == EINVAL) { 1793 XS_SETERR(csio, CAM_REQ_INVALID); 1794 } else { 1795 XS_SETERR(csio, CAM_UNREC_HBA_ERROR); 1796 } 1797 return (retval); 1798 } 1799 mbxsync: 1800 switch (rq->req_header.rqs_entry_type) { 1801 case RQSTYPE_REQUEST: 1802 isp_put_request(isp, rq, qep); 1803 break; 1804 case RQSTYPE_CMDONLY: 1805 isp_put_extended_request(isp, (ispextreq_t *)rq, 1806 (ispextreq_t *)qep); 1807 break; 1808 case RQSTYPE_T2RQS: 1809 isp_put_request_t2(isp, (ispreqt2_t *) rq, (ispreqt2_t *) qep); 1810 break; 1811 } 1812 return (CMD_QUEUED); 1813 } 1814 1815 static void 1816 isp_pci_dmateardown(struct ispsoftc *isp, XS_T *xs, u_int16_t handle) 1817 { 1818 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *)isp; 1819 bus_dmamap_t *dp = &pcs->dmaps[isp_handle_index(handle)]; 1820 if ((xs->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1821 bus_dmamap_sync(pcs->dmat, *dp, BUS_DMASYNC_POSTREAD); 1822 } else { 1823 bus_dmamap_sync(pcs->dmat, *dp, BUS_DMASYNC_POSTWRITE); 1824 } 1825 bus_dmamap_unload(pcs->dmat, *dp); 1826 } 1827 1828 1829 static void 1830 isp_pci_reset1(struct ispsoftc *isp) 1831 { 1832 /* Make sure the BIOS is disabled */ 1833 isp_pci_wr_reg(isp, HCCR, PCI_HCCR_CMD_BIOS); 1834 /* and enable interrupts */ 1835 ENABLE_INTS(isp); 1836 } 1837 1838 static void 1839 isp_pci_dumpregs(struct ispsoftc *isp, const char *msg) 1840 { 1841 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *)isp; 1842 if (msg) 1843 printf("%s: %s\n", device_get_nameunit(isp->isp_dev), msg); 1844 else 1845 printf("%s:\n", device_get_nameunit(isp->isp_dev)); 1846 if (IS_SCSI(isp)) 1847 printf(" biu_conf1=%x", ISP_READ(isp, BIU_CONF1)); 1848 else 1849 printf(" biu_csr=%x", ISP_READ(isp, BIU2100_CSR)); 1850 printf(" biu_icr=%x biu_isr=%x biu_sema=%x ", ISP_READ(isp, BIU_ICR), 1851 ISP_READ(isp, BIU_ISR), ISP_READ(isp, BIU_SEMA)); 1852 printf("risc_hccr=%x\n", ISP_READ(isp, HCCR)); 1853 1854 1855 if (IS_SCSI(isp)) { 1856 ISP_WRITE(isp, HCCR, HCCR_CMD_PAUSE); 1857 printf(" cdma_conf=%x cdma_sts=%x cdma_fifostat=%x\n", 1858 ISP_READ(isp, CDMA_CONF), ISP_READ(isp, CDMA_STATUS), 1859 ISP_READ(isp, CDMA_FIFO_STS)); 1860 printf(" ddma_conf=%x ddma_sts=%x ddma_fifostat=%x\n", 1861 ISP_READ(isp, DDMA_CONF), ISP_READ(isp, DDMA_STATUS), 1862 ISP_READ(isp, DDMA_FIFO_STS)); 1863 printf(" sxp_int=%x sxp_gross=%x sxp(scsi_ctrl)=%x\n", 1864 ISP_READ(isp, SXP_INTERRUPT), 1865 ISP_READ(isp, SXP_GROSS_ERR), 1866 ISP_READ(isp, SXP_PINS_CTRL)); 1867 ISP_WRITE(isp, HCCR, HCCR_CMD_RELEASE); 1868 } 1869 printf(" mbox regs: %x %x %x %x %x\n", 1870 ISP_READ(isp, OUTMAILBOX0), ISP_READ(isp, OUTMAILBOX1), 1871 ISP_READ(isp, OUTMAILBOX2), ISP_READ(isp, OUTMAILBOX3), 1872 ISP_READ(isp, OUTMAILBOX4)); 1873 printf(" PCI Status Command/Status=%x\n", 1874 pci_read_config(pcs->pci_dev, PCIR_COMMAND, 1)); 1875 } 1876