1 /* $FreeBSD$ */ 2 /* 3 * PCI specific probe and attach routines for Qlogic ISP SCSI adapters. 4 * FreeBSD Version. 5 * 6 *--------------------------------------- 7 * Copyright (c) 1997, 1998, 1999 by Matthew Jacob 8 * NASA/Ames Research Center 9 * All rights reserved. 10 *--------------------------------------- 11 * 12 * Redistribution and use in source and binary forms, with or without 13 * modification, are permitted provided that the following conditions 14 * are met: 15 * 1. Redistributions of source code must retain the above copyright 16 * notice immediately at the beginning of the file, without modification, 17 * this list of conditions, and the following disclaimer. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 3. The name of the author may not be used to endorse or promote products 22 * derived from this software without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 28 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 */ 36 37 #include <sys/param.h> 38 #include <sys/systm.h> 39 #include <sys/kernel.h> 40 #include <sys/module.h> 41 #include <sys/bus.h> 42 43 #include <pci/pcireg.h> 44 #include <pci/pcivar.h> 45 46 #include <machine/bus_memio.h> 47 #include <machine/bus_pio.h> 48 #include <machine/bus.h> 49 #include <machine/resource.h> 50 #include <machine/clock.h> 51 #include <sys/rman.h> 52 #include <sys/malloc.h> 53 54 #include <dev/isp/isp_freebsd.h> 55 #include <dev/isp/asm_pci.h> 56 57 static u_int16_t isp_pci_rd_reg __P((struct ispsoftc *, int)); 58 static void isp_pci_wr_reg __P((struct ispsoftc *, int, u_int16_t)); 59 #if !defined(ISP_DISABLE_1080_SUPPORT) && !defined(ISP_DISABLE_12160_SUPPORT) 60 static u_int16_t isp_pci_rd_reg_1080 __P((struct ispsoftc *, int)); 61 static void isp_pci_wr_reg_1080 __P((struct ispsoftc *, int, u_int16_t)); 62 #endif 63 static int isp_pci_mbxdma __P((struct ispsoftc *)); 64 static int isp_pci_dmasetup __P((struct ispsoftc *, ISP_SCSI_XFER_T *, 65 ispreq_t *, u_int16_t *, u_int16_t)); 66 static void 67 isp_pci_dmateardown __P((struct ispsoftc *, ISP_SCSI_XFER_T *, u_int32_t)); 68 69 static void isp_pci_reset1 __P((struct ispsoftc *)); 70 static void isp_pci_dumpregs __P((struct ispsoftc *)); 71 72 #ifndef ISP_CODE_ORG 73 #define ISP_CODE_ORG 0x1000 74 #endif 75 #ifndef ISP_1040_RISC_CODE 76 #define ISP_1040_RISC_CODE NULL 77 #endif 78 #ifndef ISP_1080_RISC_CODE 79 #define ISP_1080_RISC_CODE NULL 80 #endif 81 #ifndef ISP_12160_RISC_CODE 82 #define ISP_12160_RISC_CODE NULL 83 #endif 84 #ifndef ISP_2100_RISC_CODE 85 #define ISP_2100_RISC_CODE NULL 86 #endif 87 #ifndef ISP_2200_RISC_CODE 88 #define ISP_2200_RISC_CODE NULL 89 #endif 90 91 #ifndef ISP_DISABLE_1020_SUPPORT 92 static struct ispmdvec mdvec = { 93 isp_pci_rd_reg, 94 isp_pci_wr_reg, 95 isp_pci_mbxdma, 96 isp_pci_dmasetup, 97 isp_pci_dmateardown, 98 NULL, 99 isp_pci_reset1, 100 isp_pci_dumpregs, 101 ISP_1040_RISC_CODE, 102 0, 103 ISP_CODE_ORG, 104 0, 105 BIU_BURST_ENABLE|BIU_PCI_CONF1_FIFO_64, 106 0 107 }; 108 #endif 109 110 #ifndef ISP_DISABLE_1080_SUPPORT 111 static struct ispmdvec mdvec_1080 = { 112 isp_pci_rd_reg_1080, 113 isp_pci_wr_reg_1080, 114 isp_pci_mbxdma, 115 isp_pci_dmasetup, 116 isp_pci_dmateardown, 117 NULL, 118 isp_pci_reset1, 119 isp_pci_dumpregs, 120 ISP_1080_RISC_CODE, 121 0, 122 ISP_CODE_ORG, 123 0, 124 BIU_BURST_ENABLE|BIU_PCI_CONF1_FIFO_64, 125 0 126 }; 127 #endif 128 129 #ifndef ISP_DISABLE_12160_SUPPORT 130 static struct ispmdvec mdvec_12160 = { 131 isp_pci_rd_reg_1080, 132 isp_pci_wr_reg_1080, 133 isp_pci_mbxdma, 134 isp_pci_dmasetup, 135 isp_pci_dmateardown, 136 NULL, 137 isp_pci_reset1, 138 isp_pci_dumpregs, 139 ISP_12160_RISC_CODE, 140 0, 141 ISP_CODE_ORG, 142 0, 143 BIU_BURST_ENABLE|BIU_PCI_CONF1_FIFO_64, 144 0 145 }; 146 #endif 147 148 #ifndef ISP_DISABLE_2100_SUPPORT 149 static struct ispmdvec mdvec_2100 = { 150 isp_pci_rd_reg, 151 isp_pci_wr_reg, 152 isp_pci_mbxdma, 153 isp_pci_dmasetup, 154 isp_pci_dmateardown, 155 NULL, 156 isp_pci_reset1, 157 isp_pci_dumpregs, 158 ISP_2100_RISC_CODE, 159 0, 160 ISP_CODE_ORG, 161 0, 162 0, 163 0 164 }; 165 #endif 166 167 #ifndef ISP_DISABLE_2200_SUPPORT 168 static struct ispmdvec mdvec_2200 = { 169 isp_pci_rd_reg, 170 isp_pci_wr_reg, 171 isp_pci_mbxdma, 172 isp_pci_dmasetup, 173 isp_pci_dmateardown, 174 NULL, 175 isp_pci_reset1, 176 isp_pci_dumpregs, 177 ISP_2200_RISC_CODE, 178 0, 179 ISP_CODE_ORG, 180 0, 181 0, 182 0 183 }; 184 #endif 185 186 #ifndef SCSI_ISP_PREFER_MEM_MAP 187 #define SCSI_ISP_PREFER_MEM_MAP 0 188 #endif 189 190 #ifndef PCIM_CMD_INVEN 191 #define PCIM_CMD_INVEN 0x10 192 #endif 193 #ifndef PCIM_CMD_BUSMASTEREN 194 #define PCIM_CMD_BUSMASTEREN 0x0004 195 #endif 196 #ifndef PCIM_CMD_PERRESPEN 197 #define PCIM_CMD_PERRESPEN 0x0040 198 #endif 199 #ifndef PCIM_CMD_SEREN 200 #define PCIM_CMD_SEREN 0x0100 201 #endif 202 203 #ifndef PCIR_COMMAND 204 #define PCIR_COMMAND 0x04 205 #endif 206 207 #ifndef PCIR_CACHELNSZ 208 #define PCIR_CACHELNSZ 0x0c 209 #endif 210 211 #ifndef PCIR_LATTIMER 212 #define PCIR_LATTIMER 0x0d 213 #endif 214 215 #ifndef PCIR_ROMADDR 216 #define PCIR_ROMADDR 0x30 217 #endif 218 219 #ifndef PCI_VENDOR_QLOGIC 220 #define PCI_VENDOR_QLOGIC 0x1077 221 #endif 222 223 #ifndef PCI_PRODUCT_QLOGIC_ISP1020 224 #define PCI_PRODUCT_QLOGIC_ISP1020 0x1020 225 #endif 226 227 #ifndef PCI_PRODUCT_QLOGIC_ISP1080 228 #define PCI_PRODUCT_QLOGIC_ISP1080 0x1080 229 #endif 230 231 #ifndef PCI_PRODUCT_QLOGIC_ISP12160 232 #define PCI_PRODUCT_QLOGIC_ISP12160 0x1216 233 #endif 234 235 #ifndef PCI_PRODUCT_QLOGIC_ISP1240 236 #define PCI_PRODUCT_QLOGIC_ISP1240 0x1240 237 #endif 238 239 #ifndef PCI_PRODUCT_QLOGIC_ISP1280 240 #define PCI_PRODUCT_QLOGIC_ISP1280 0x1280 241 #endif 242 243 #ifndef PCI_PRODUCT_QLOGIC_ISP2100 244 #define PCI_PRODUCT_QLOGIC_ISP2100 0x2100 245 #endif 246 247 #ifndef PCI_PRODUCT_QLOGIC_ISP2200 248 #define PCI_PRODUCT_QLOGIC_ISP2200 0x2200 249 #endif 250 251 #define PCI_QLOGIC_ISP ((PCI_PRODUCT_QLOGIC_ISP1020 << 16) | PCI_VENDOR_QLOGIC) 252 253 #define PCI_QLOGIC_ISP1080 \ 254 ((PCI_PRODUCT_QLOGIC_ISP1080 << 16) | PCI_VENDOR_QLOGIC) 255 256 #define PCI_QLOGIC_ISP12160 \ 257 ((PCI_PRODUCT_QLOGIC_ISP12160 << 16) | PCI_VENDOR_QLOGIC) 258 259 #define PCI_QLOGIC_ISP1240 \ 260 ((PCI_PRODUCT_QLOGIC_ISP1240 << 16) | PCI_VENDOR_QLOGIC) 261 262 #define PCI_QLOGIC_ISP1280 \ 263 ((PCI_PRODUCT_QLOGIC_ISP1280 << 16) | PCI_VENDOR_QLOGIC) 264 265 #define PCI_QLOGIC_ISP2100 \ 266 ((PCI_PRODUCT_QLOGIC_ISP2100 << 16) | PCI_VENDOR_QLOGIC) 267 268 #define PCI_QLOGIC_ISP2200 \ 269 ((PCI_PRODUCT_QLOGIC_ISP2200 << 16) | PCI_VENDOR_QLOGIC) 270 271 #define IO_MAP_REG 0x10 272 #define MEM_MAP_REG 0x14 273 274 #define PCI_DFLT_LTNCY 0x40 275 #define PCI_DFLT_LNSZ 0x10 276 277 static int isp_pci_probe (device_t); 278 static int isp_pci_attach (device_t); 279 280 /* This distinguishing define is not right, but it does work */ 281 #ifdef __alpha__ 282 #define IO_SPACE_MAPPING ALPHA_BUS_SPACE_IO 283 #define MEM_SPACE_MAPPING ALPHA_BUS_SPACE_MEM 284 #else 285 #define IO_SPACE_MAPPING I386_BUS_SPACE_IO 286 #define MEM_SPACE_MAPPING I386_BUS_SPACE_MEM 287 #endif 288 289 struct isp_pcisoftc { 290 struct ispsoftc pci_isp; 291 device_t pci_dev; 292 struct resource * pci_reg; 293 bus_space_tag_t pci_st; 294 bus_space_handle_t pci_sh; 295 void * ih; 296 int16_t pci_poff[_NREG_BLKS]; 297 bus_dma_tag_t parent_dmat; 298 bus_dma_tag_t cntrol_dmat; 299 bus_dmamap_t cntrol_dmap; 300 bus_dmamap_t *dmaps; 301 }; 302 303 static device_method_t isp_pci_methods[] = { 304 /* Device interface */ 305 DEVMETHOD(device_probe, isp_pci_probe), 306 DEVMETHOD(device_attach, isp_pci_attach), 307 { 0, 0 } 308 }; 309 310 static driver_t isp_pci_driver = { 311 "isp", isp_pci_methods, sizeof (struct isp_pcisoftc) 312 }; 313 static devclass_t isp_devclass; 314 DRIVER_MODULE(isp, pci, isp_pci_driver, isp_devclass, 0, 0); 315 316 static int 317 isp_pci_probe(device_t dev) 318 { 319 switch ((pci_get_device(dev) << 16) | (pci_get_vendor(dev))) { 320 #ifndef ISP_DISABLE_1020_SUPPORT 321 case PCI_QLOGIC_ISP: 322 device_set_desc(dev, "Qlogic ISP 1020/1040 PCI SCSI Adapter"); 323 break; 324 #endif 325 #ifndef ISP_DISABLE_1080_SUPPORT 326 case PCI_QLOGIC_ISP1080: 327 device_set_desc(dev, "Qlogic ISP 1080 PCI SCSI Adapter"); 328 break; 329 case PCI_QLOGIC_ISP1240: 330 device_set_desc(dev, "Qlogic ISP 1240 PCI SCSI Adapter"); 331 break; 332 case PCI_QLOGIC_ISP1280: 333 device_set_desc(dev, "Qlogic ISP 1280 PCI SCSI Adapter"); 334 break; 335 #endif 336 #ifndef ISP_DISABLE_12160_SUPPORT 337 case PCI_QLOGIC_ISP12160: 338 device_set_desc(dev, "Qlogic ISP 12160 PCI SCSI Adapter"); 339 break; 340 #endif 341 #ifndef ISP_DISABLE_2100_SUPPORT 342 case PCI_QLOGIC_ISP2100: 343 device_set_desc(dev, "Qlogic ISP 2100 PCI FC-AL Adapter"); 344 break; 345 #endif 346 #ifndef ISP_DISABLE_2200_SUPPORT 347 case PCI_QLOGIC_ISP2200: 348 device_set_desc(dev, "Qlogic ISP 2200 PCI FC-AL Adapter"); 349 break; 350 #endif 351 default: 352 return (ENXIO); 353 } 354 if (device_get_unit(dev) == 0) { 355 CFGPRINTF("Qlogic ISP Driver, FreeBSD Version %d.%d, " 356 "Core Version %d.%d\n", 357 ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR, 358 ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR); 359 } 360 return (0); 361 } 362 363 static int 364 isp_pci_attach(device_t dev) 365 { 366 #ifdef SCSI_ISP_WWN 367 const char *name = SCSI_ISP_WWN; 368 char *vtp = NULL; 369 #endif 370 struct resource *regs, *irq; 371 int unit, bitmap, rtp, rgd, iqd, m1, m2; 372 u_int32_t data, cmd, linesz, psize, basetype; 373 struct isp_pcisoftc *pcs; 374 struct ispsoftc *isp; 375 struct ispmdvec *mdvp; 376 bus_size_t lim; 377 ISP_LOCKVAL_DECL; 378 379 /* 380 * Figure out if we're supposed to skip this one. 381 */ 382 unit = device_get_unit(dev); 383 if (getenv_int("isp_disable", &bitmap)) { 384 if (bitmap & (1 << unit)) { 385 device_printf(dev, "not configuring\n"); 386 return (ENODEV); 387 } 388 } 389 390 pcs = malloc(sizeof (struct isp_pcisoftc), M_DEVBUF, M_NOWAIT); 391 if (pcs == NULL) { 392 device_printf(dev, "cannot allocate softc\n"); 393 return (ENOMEM); 394 } 395 bzero(pcs, sizeof (struct isp_pcisoftc)); 396 397 /* 398 * Figure out which we should try first - memory mapping or i/o mapping? 399 */ 400 #if SCSI_ISP_PREFER_MEM_MAP == 1 401 m1 = PCIM_CMD_MEMEN; 402 m2 = PCIM_CMD_PORTEN; 403 #else 404 m1 = PCIM_CMD_PORTEN; 405 m2 = PCIM_CMD_MEMEN; 406 #endif 407 bitmap = 0; 408 if (getenv_int("isp_mem_map", &bitmap)) { 409 if (bitmap & (1 << unit)) { 410 m1 = PCIM_CMD_MEMEN; 411 m2 = PCIM_CMD_PORTEN; 412 } 413 } 414 bitmap = 0; 415 if (getenv_int("isp_io_map", &bitmap)) { 416 if (bitmap & (1 << unit)) { 417 m1 = PCIM_CMD_PORTEN; 418 m2 = PCIM_CMD_MEMEN; 419 } 420 } 421 422 linesz = PCI_DFLT_LNSZ; 423 irq = regs = NULL; 424 rgd = rtp = iqd = 0; 425 426 cmd = pci_read_config(dev, PCIR_COMMAND, 1); 427 if (cmd & m1) { 428 rtp = (m1 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT; 429 rgd = (m1 == PCIM_CMD_MEMEN)? MEM_MAP_REG : IO_MAP_REG; 430 regs = bus_alloc_resource(dev, rtp, &rgd, 0, ~0, 1, RF_ACTIVE); 431 } 432 if (regs == NULL && (cmd & m2)) { 433 rtp = (m2 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT; 434 rgd = (m2 == PCIM_CMD_MEMEN)? MEM_MAP_REG : IO_MAP_REG; 435 regs = bus_alloc_resource(dev, rtp, &rgd, 0, ~0, 1, RF_ACTIVE); 436 } 437 if (regs == NULL) { 438 device_printf(dev, "unable to map any ports\n"); 439 goto bad; 440 } 441 if (bootverbose) 442 printf("isp%d: using %s space register mapping\n", unit, 443 (rgd == IO_MAP_REG)? "I/O" : "Memory"); 444 pcs->pci_dev = dev; 445 pcs->pci_reg = regs; 446 pcs->pci_st = rman_get_bustag(regs); 447 pcs->pci_sh = rman_get_bushandle(regs); 448 449 pcs->pci_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF; 450 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = PCI_MBOX_REGS_OFF; 451 pcs->pci_poff[SXP_BLOCK >> _BLK_REG_SHFT] = PCI_SXP_REGS_OFF; 452 pcs->pci_poff[RISC_BLOCK >> _BLK_REG_SHFT] = PCI_RISC_REGS_OFF; 453 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = DMA_REGS_OFF; 454 /* 455 * GCC! 456 */ 457 mdvp = &mdvec; 458 basetype = ISP_HA_SCSI_UNKNOWN; 459 psize = sizeof (sdparam); 460 lim = BUS_SPACE_MAXSIZE_32BIT; 461 #ifndef ISP_DISABLE_1020_SUPPORT 462 if (pci_get_devid(dev) == PCI_QLOGIC_ISP) { 463 mdvp = &mdvec; 464 basetype = ISP_HA_SCSI_UNKNOWN; 465 psize = sizeof (sdparam); 466 lim = BUS_SPACE_MAXSIZE_24BIT; 467 } 468 #endif 469 #ifndef ISP_DISABLE_1080_SUPPORT 470 if (pci_get_devid(dev) == PCI_QLOGIC_ISP1080) { 471 mdvp = &mdvec_1080; 472 basetype = ISP_HA_SCSI_1080; 473 psize = sizeof (sdparam); 474 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = 475 ISP1080_DMA_REGS_OFF; 476 } 477 if (pci_get_devid(dev) == PCI_QLOGIC_ISP1240) { 478 mdvp = &mdvec_1080; 479 basetype = ISP_HA_SCSI_1240; 480 psize = 2 * sizeof (sdparam); 481 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = 482 ISP1080_DMA_REGS_OFF; 483 } 484 if (pci_get_devid(dev) == PCI_QLOGIC_ISP1280) { 485 mdvp = &mdvec_1080; 486 basetype = ISP_HA_SCSI_1280; 487 psize = 2 * sizeof (sdparam); 488 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = 489 ISP1080_DMA_REGS_OFF; 490 } 491 #endif 492 #ifndef ISP_DISABLE_1080_SUPPORT 493 if (pci_get_devid(dev) == PCI_QLOGIC_ISP12160) { 494 mdvp = &mdvec_12160; 495 basetype = ISP_HA_SCSI_12160; 496 psize = 2 * sizeof (sdparam); 497 pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = 498 ISP1080_DMA_REGS_OFF; 499 } 500 #endif 501 #ifndef ISP_DISABLE_2100_SUPPORT 502 if (pci_get_devid(dev) == PCI_QLOGIC_ISP2100) { 503 mdvp = &mdvec_2100; 504 basetype = ISP_HA_FC_2100; 505 psize = sizeof (fcparam); 506 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = 507 PCI_MBOX_REGS2100_OFF; 508 if (pci_get_revid(dev) < 3) { 509 /* 510 * XXX: Need to get the actual revision 511 * XXX: number of the 2100 FB. At any rate, 512 * XXX: lower cache line size for early revision 513 * XXX; boards. 514 */ 515 linesz = 1; 516 } 517 } 518 #endif 519 #ifndef ISP_DISABLE_2200_SUPPORT 520 if (pci_get_devid(dev) == PCI_QLOGIC_ISP2200) { 521 mdvp = &mdvec_2200; 522 basetype = ISP_HA_FC_2200; 523 psize = sizeof (fcparam); 524 pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = 525 PCI_MBOX_REGS2100_OFF; 526 } 527 #endif 528 isp = &pcs->pci_isp; 529 isp->isp_param = malloc(psize, M_DEVBUF, M_NOWAIT); 530 if (isp->isp_param == NULL) { 531 device_printf(dev, "cannot allocate parameter data\n"); 532 goto bad; 533 } 534 bzero(isp->isp_param, psize); 535 isp->isp_mdvec = mdvp; 536 isp->isp_type = basetype; 537 isp->isp_revision = pci_get_revid(dev); 538 (void) snprintf(isp->isp_name, sizeof (isp->isp_name), "isp%d", unit); 539 isp->isp_osinfo.unit = unit; 540 541 ISP_LOCK(isp); 542 /* 543 * Make sure that SERR, PERR, WRITE INVALIDATE and BUSMASTER 544 * are set. 545 */ 546 cmd |= PCIM_CMD_SEREN | PCIM_CMD_PERRESPEN | 547 PCIM_CMD_BUSMASTEREN | PCIM_CMD_INVEN; 548 pci_write_config(dev, PCIR_COMMAND, cmd, 1); 549 550 /* 551 * Make sure the Cache Line Size register is set sensibly. 552 */ 553 data = pci_read_config(dev, PCIR_CACHELNSZ, 1); 554 if (data != linesz) { 555 data = PCI_DFLT_LNSZ; 556 CFGPRINTF("%s: set PCI line size to %d\n", isp->isp_name, data); 557 pci_write_config(dev, PCIR_CACHELNSZ, data, 1); 558 } 559 560 /* 561 * Make sure the Latency Timer is sane. 562 */ 563 data = pci_read_config(dev, PCIR_LATTIMER, 1); 564 if (data < PCI_DFLT_LTNCY) { 565 data = PCI_DFLT_LTNCY; 566 CFGPRINTF("%s: set PCI latency to %d\n", isp->isp_name, data); 567 pci_write_config(dev, PCIR_LATTIMER, data, 1); 568 } 569 570 /* 571 * Make sure we've disabled the ROM. 572 */ 573 data = pci_read_config(dev, PCIR_ROMADDR, 4); 574 data &= ~1; 575 pci_write_config(dev, PCIR_ROMADDR, data, 4); 576 ISP_UNLOCK(isp); 577 578 if (bus_dma_tag_create(NULL, 1, 0, BUS_SPACE_MAXADDR_32BIT, 579 BUS_SPACE_MAXADDR, NULL, NULL, lim + 1, 580 255, lim, 0, &pcs->parent_dmat) != 0) { 581 printf("%s: could not create master dma tag\n", isp->isp_name); 582 free(isp->isp_param, M_DEVBUF); 583 free(pcs, M_DEVBUF); 584 return (ENXIO); 585 } 586 587 iqd = 0; 588 irq = bus_alloc_resource(dev, SYS_RES_IRQ, &iqd, 0, ~0, 589 1, RF_ACTIVE | RF_SHAREABLE); 590 if (irq == NULL) { 591 device_printf(dev, "could not allocate interrupt\n"); 592 goto bad; 593 } 594 595 #ifdef SCSI_ISP_NO_FWLOAD_MASK 596 if (SCSI_ISP_NO_FWLOAD_MASK && (SCSI_ISP_NO_FWLOAD_MASK & (1 << unit))) 597 isp->isp_confopts |= ISP_CFG_NORELOAD; 598 #endif 599 if (getenv_int("isp_no_fwload", &bitmap)) { 600 if (bitmap & (1 << unit)) 601 isp->isp_confopts |= ISP_CFG_NORELOAD; 602 } 603 if (getenv_int("isp_fwload", &bitmap)) { 604 if (bitmap & (1 << unit)) 605 isp->isp_confopts &= ~ISP_CFG_NORELOAD; 606 } 607 608 #ifdef SCSI_ISP_NO_NVRAM_MASK 609 if (SCSI_ISP_NO_NVRAM_MASK && (SCSI_ISP_NO_NVRAM_MASK & (1 << unit))) { 610 printf("%s: ignoring NVRAM\n", isp->isp_name); 611 isp->isp_confopts |= ISP_CFG_NONVRAM; 612 } 613 #endif 614 if (getenv_int("isp_no_nvram", &bitmap)) { 615 if (bitmap & (1 << unit)) 616 isp->isp_confopts |= ISP_CFG_NONVRAM; 617 } 618 if (getenv_int("isp_nvram", &bitmap)) { 619 if (bitmap & (1 << unit)) 620 isp->isp_confopts &= ~ISP_CFG_NONVRAM; 621 } 622 623 #ifdef SCSI_ISP_FCDUPLEX 624 if (IS_FC(isp)) { 625 if (SCSI_ISP_FCDUPLEX && (SCSI_ISP_FCDUPLEX & (1 << unit))) { 626 isp->isp_confopts |= ISP_CFG_FULL_DUPLEX; 627 } 628 } 629 #endif 630 if (getenv_int("isp_fcduplex", &bitmap)) { 631 if (bitmap & (1 << unit)) 632 isp->isp_confopts |= ISP_CFG_FULL_DUPLEX; 633 } 634 if (getenv_int("isp_no_fcduplex", &bitmap)) { 635 if (bitmap & (1 << unit)) 636 isp->isp_confopts &= ~ISP_CFG_FULL_DUPLEX; 637 } 638 if (getenv_int("isp_nport", &bitmap)) { 639 if (bitmap & (1 << unit)) 640 isp->isp_confopts |= ISP_CFG_NPORT; 641 } 642 /* 643 * Look for overriding WWN. This is a Node WWN so it binds to 644 * all FC instances. A Port WWN will be constructed from it 645 * as appropriate. 646 */ 647 #ifdef SCSI_ISP_WWN 648 isp->isp_osinfo.default_wwn = strtoq(name, &vtp, 16); 649 if (vtp != name && *vtp == 0) { 650 isp->isp_confopts |= ISP_CFG_OWNWWN; 651 } else 652 #endif 653 if (!getenv_quad("isp_wwn", (quad_t *) &isp->isp_osinfo.default_wwn)) { 654 int i; 655 u_int64_t seed = (u_int64_t) (intptr_t) isp; 656 657 seed <<= 16; 658 seed &= ((1LL << 48) - 1LL); 659 /* 660 * This isn't very random, but it's the best we can do for 661 * the real edge case of cards that don't have WWNs. If 662 * you recompile a new vers.c, you'll get a different WWN. 663 */ 664 for (i = 0; version[i] != 0; i++) { 665 seed += version[i]; 666 } 667 /* 668 * Make sure the top nibble has something vaguely sensible. 669 */ 670 isp->isp_osinfo.default_wwn |= (4LL << 60) | seed; 671 } else { 672 isp->isp_confopts |= ISP_CFG_OWNWWN; 673 } 674 (void) getenv_int("isp_debug", &isp_debug); 675 #ifdef ISP_TARGET_MODE 676 (void) getenv_int("isp_tdebug", &isp_tdebug); 677 #endif 678 ISP_LOCK(isp); 679 if (bus_setup_intr(dev, irq, INTR_TYPE_CAM, (void (*)(void *))isp_intr, 680 isp, &pcs->ih)) { 681 ISP_UNLOCK(isp); 682 device_printf(dev, "could not setup interrupt\n"); 683 goto bad; 684 } 685 686 isp_reset(isp); 687 if (isp->isp_state != ISP_RESETSTATE) { 688 ISP_UNLOCK(isp); 689 goto bad; 690 } 691 isp_init(isp); 692 if (isp->isp_state != ISP_INITSTATE) { 693 /* If we're a Fibre Channel Card, we allow deferred attach */ 694 if (IS_SCSI(isp)) { 695 isp_uninit(isp); 696 ISP_UNLOCK(isp); 697 goto bad; 698 } 699 } 700 isp_attach(isp); 701 if (isp->isp_state != ISP_RUNSTATE) { 702 /* If we're a Fibre Channel Card, we allow deferred attach */ 703 if (IS_SCSI(isp)) { 704 isp_uninit(isp); 705 ISP_UNLOCK(isp); 706 goto bad; 707 } 708 } 709 ISP_UNLOCK(isp); 710 return (0); 711 712 bad: 713 714 if (pcs && pcs->ih) { 715 (void) bus_teardown_intr(dev, irq, pcs->ih); 716 } 717 718 if (irq) { 719 (void) bus_release_resource(dev, SYS_RES_IRQ, iqd, irq); 720 } 721 if (regs) { 722 (void) bus_release_resource(dev, rtp, rgd, regs); 723 } 724 if (pcs) { 725 if (pcs->pci_isp.isp_param) 726 free(pcs->pci_isp.isp_param, M_DEVBUF); 727 free(pcs, M_DEVBUF); 728 } 729 return (ENXIO); 730 } 731 732 static u_int16_t 733 isp_pci_rd_reg(isp, regoff) 734 struct ispsoftc *isp; 735 int regoff; 736 { 737 u_int16_t rv; 738 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 739 int offset, oldconf = 0; 740 741 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK) { 742 /* 743 * We will assume that someone has paused the RISC processor. 744 */ 745 oldconf = isp_pci_rd_reg(isp, BIU_CONF1); 746 isp_pci_wr_reg(isp, BIU_CONF1, oldconf | BIU_PCI_CONF1_SXP); 747 } 748 offset = pcs->pci_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT]; 749 offset += (regoff & 0xff); 750 rv = bus_space_read_2(pcs->pci_st, pcs->pci_sh, offset); 751 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK) { 752 isp_pci_wr_reg(isp, BIU_CONF1, oldconf); 753 } 754 return (rv); 755 } 756 757 static void 758 isp_pci_wr_reg(isp, regoff, val) 759 struct ispsoftc *isp; 760 int regoff; 761 u_int16_t val; 762 { 763 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 764 int offset, oldconf = 0; 765 766 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK) { 767 /* 768 * We will assume that someone has paused the RISC processor. 769 */ 770 oldconf = isp_pci_rd_reg(isp, BIU_CONF1); 771 isp_pci_wr_reg(isp, BIU_CONF1, oldconf | BIU_PCI_CONF1_SXP); 772 } 773 offset = pcs->pci_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT]; 774 offset += (regoff & 0xff); 775 bus_space_write_2(pcs->pci_st, pcs->pci_sh, offset, val); 776 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK) { 777 isp_pci_wr_reg(isp, BIU_CONF1, oldconf); 778 } 779 } 780 781 #if !defined(ISP_DISABLE_1080_SUPPORT) && !defined(ISP_DISABLE_12160_SUPPORT) 782 static u_int16_t 783 isp_pci_rd_reg_1080(isp, regoff) 784 struct ispsoftc *isp; 785 int regoff; 786 { 787 u_int16_t rv, oc = 0; 788 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 789 int offset; 790 791 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK || 792 (regoff & _BLK_REG_MASK) == (SXP_BLOCK|SXP_BANK1_SELECT)) { 793 u_int16_t tc; 794 /* 795 * We will assume that someone has paused the RISC processor. 796 */ 797 oc = isp_pci_rd_reg(isp, BIU_CONF1); 798 tc = oc & ~BIU_PCI1080_CONF1_DMA; 799 if (regoff & SXP_BANK1_SELECT) 800 tc |= BIU_PCI1080_CONF1_SXP1; 801 else 802 tc |= BIU_PCI1080_CONF1_SXP0; 803 isp_pci_wr_reg(isp, BIU_CONF1, tc); 804 } else if ((regoff & _BLK_REG_MASK) == DMA_BLOCK) { 805 oc = isp_pci_rd_reg(isp, BIU_CONF1); 806 isp_pci_wr_reg(isp, BIU_CONF1, oc | BIU_PCI1080_CONF1_DMA); 807 } 808 offset = pcs->pci_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT]; 809 offset += (regoff & 0xff); 810 rv = bus_space_read_2(pcs->pci_st, pcs->pci_sh, offset); 811 if (oc) { 812 isp_pci_wr_reg(isp, BIU_CONF1, oc); 813 } 814 return (rv); 815 } 816 817 static void 818 isp_pci_wr_reg_1080(isp, regoff, val) 819 struct ispsoftc *isp; 820 int regoff; 821 u_int16_t val; 822 { 823 struct isp_pcisoftc *pcs = (struct isp_pcisoftc *) isp; 824 int offset, oc = 0; 825 826 if ((regoff & _BLK_REG_MASK) == SXP_BLOCK || 827 (regoff & _BLK_REG_MASK) == (SXP_BLOCK|SXP_BANK1_SELECT)) { 828 u_int16_t tc; 829 /* 830 * We will assume that someone has paused the RISC processor. 831 */ 832 oc = isp_pci_rd_reg(isp, BIU_CONF1); 833 tc = oc & ~BIU_PCI1080_CONF1_DMA; 834 if (regoff & SXP_BANK1_SELECT) 835 tc |= BIU_PCI1080_CONF1_SXP1; 836 else 837 tc |= BIU_PCI1080_CONF1_SXP0; 838 isp_pci_wr_reg(isp, BIU_CONF1, tc); 839 } else if ((regoff & _BLK_REG_MASK) == DMA_BLOCK) { 840 oc = isp_pci_rd_reg(isp, BIU_CONF1); 841 isp_pci_wr_reg(isp, BIU_CONF1, oc | BIU_PCI1080_CONF1_DMA); 842 } 843 offset = pcs->pci_poff[(regoff & _BLK_REG_MASK) >> _BLK_REG_SHFT]; 844 offset += (regoff & 0xff); 845 bus_space_write_2(pcs->pci_st, pcs->pci_sh, offset, val); 846 if (oc) { 847 isp_pci_wr_reg(isp, BIU_CONF1, oc); 848 } 849 } 850 #endif 851 852 853 static void isp_map_rquest __P((void *, bus_dma_segment_t *, int, int)); 854 static void isp_map_result __P((void *, bus_dma_segment_t *, int, int)); 855 static void isp_map_fcscrt __P((void *, bus_dma_segment_t *, int, int)); 856 857 struct imush { 858 struct ispsoftc *isp; 859 int error; 860 }; 861 862 static void 863 isp_map_rquest(void *arg, bus_dma_segment_t *segs, int nseg, int error) 864 { 865 struct imush *imushp = (struct imush *) arg; 866 if (error) { 867 imushp->error = error; 868 } else { 869 imushp->isp->isp_rquest_dma = segs->ds_addr; 870 } 871 } 872 873 static void 874 isp_map_result(void *arg, bus_dma_segment_t *segs, int nseg, int error) 875 { 876 struct imush *imushp = (struct imush *) arg; 877 if (error) { 878 imushp->error = error; 879 } else { 880 imushp->isp->isp_result_dma = segs->ds_addr; 881 } 882 } 883 884 static void 885 isp_map_fcscrt(void *arg, bus_dma_segment_t *segs, int nseg, int error) 886 { 887 struct imush *imushp = (struct imush *) arg; 888 if (error) { 889 imushp->error = error; 890 } else { 891 fcparam *fcp = imushp->isp->isp_param; 892 fcp->isp_scdma = segs->ds_addr; 893 } 894 } 895 896 static int 897 isp_pci_mbxdma(struct ispsoftc *isp) 898 { 899 struct isp_pcisoftc *pci = (struct isp_pcisoftc *)isp; 900 caddr_t base; 901 u_int32_t len; 902 int i, error; 903 bus_size_t lim; 904 struct imush im; 905 906 907 /* 908 * Already been here? If so, leave... 909 */ 910 if (isp->isp_rquest) { 911 return (0); 912 } 913 914 len = sizeof (ISP_SCSI_XFER_T **) * isp->isp_maxcmds; 915 isp->isp_xflist = (ISP_SCSI_XFER_T **) malloc(len, M_DEVBUF, M_WAITOK); 916 if (isp->isp_xflist == NULL) { 917 printf("%s: can't alloc xflist array\n", isp->isp_name); 918 return (1); 919 } 920 bzero(isp->isp_xflist, len); 921 len = sizeof (bus_dmamap_t) * isp->isp_maxcmds; 922 pci->dmaps = (bus_dmamap_t *) malloc(len, M_DEVBUF, M_WAITOK); 923 if (pci->dmaps == NULL) { 924 printf("%s: can't alloc dma maps\n", isp->isp_name); 925 free(isp->isp_xflist, M_DEVBUF); 926 return (1); 927 } 928 929 if (IS_FC(isp) || IS_ULTRA2(isp)) 930 lim = BUS_SPACE_MAXADDR + 1; 931 else 932 lim = BUS_SPACE_MAXADDR_24BIT + 1; 933 934 /* 935 * Allocate and map the request, result queues, plus FC scratch area. 936 */ 937 len = ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN); 938 len += ISP_QUEUE_SIZE(RESULT_QUEUE_LEN); 939 if (IS_FC(isp)) { 940 len += ISP2100_SCRLEN; 941 } 942 if (bus_dma_tag_create(pci->parent_dmat, PAGE_SIZE, lim, 943 BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, len, 1, 944 BUS_SPACE_MAXSIZE_32BIT, 0, &pci->cntrol_dmat) != 0) { 945 printf("%s: cannot create a dma tag for control spaces\n", 946 isp->isp_name); 947 free(isp->isp_xflist, M_DEVBUF); 948 free(pci->dmaps, M_DEVBUF); 949 return (1); 950 } 951 if (bus_dmamem_alloc(pci->cntrol_dmat, (void **)&base, 952 BUS_DMA_NOWAIT, &pci->cntrol_dmap) != 0) { 953 printf("%s: cannot allocate %d bytes of CCB memory\n", 954 isp->isp_name, len); 955 free(isp->isp_xflist, M_DEVBUF); 956 free(pci->dmaps, M_DEVBUF); 957 return (1); 958 } 959 960 isp->isp_rquest = base; 961 im.isp = isp; 962 im.error = 0; 963 bus_dmamap_load(pci->cntrol_dmat, pci->cntrol_dmap, isp->isp_rquest, 964 ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN), isp_map_rquest, &im, 0); 965 if (im.error) { 966 printf("%s: error %d loading dma map for DMA request queue\n", 967 isp->isp_name, im.error); 968 free(isp->isp_xflist, M_DEVBUF); 969 free(pci->dmaps, M_DEVBUF); 970 isp->isp_rquest = NULL; 971 return (1); 972 } 973 isp->isp_result = base + ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN); 974 im.error = 0; 975 bus_dmamap_load(pci->cntrol_dmat, pci->cntrol_dmap, isp->isp_result, 976 ISP_QUEUE_SIZE(RESULT_QUEUE_LEN), isp_map_result, &im, 0); 977 if (im.error) { 978 printf("%s: error %d loading dma map for DMA result queue\n", 979 isp->isp_name, im.error); 980 free(isp->isp_xflist, M_DEVBUF); 981 free(pci->dmaps, M_DEVBUF); 982 isp->isp_rquest = NULL; 983 return (1); 984 } 985 986 for (i = 0; i < isp->isp_maxcmds; i++) { 987 error = bus_dmamap_create(pci->parent_dmat, 0, &pci->dmaps[i]); 988 if (error) { 989 printf("%s: error %d creating per-cmd DMA maps\n", 990 isp->isp_name, error); 991 free(isp->isp_xflist, M_DEVBUF); 992 free(pci->dmaps, M_DEVBUF); 993 isp->isp_rquest = NULL; 994 return (1); 995 } 996 } 997 998 if (IS_FC(isp)) { 999 fcparam *fcp = (fcparam *) isp->isp_param; 1000 fcp->isp_scratch = base + 1001 ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN) + 1002 ISP_QUEUE_SIZE(RESULT_QUEUE_LEN); 1003 im.error = 0; 1004 bus_dmamap_load(pci->cntrol_dmat, pci->cntrol_dmap, 1005 fcp->isp_scratch, ISP2100_SCRLEN, isp_map_fcscrt, &im, 0); 1006 if (im.error) { 1007 printf("%s: error %d loading FC scratch area\n", 1008 isp->isp_name, im.error); 1009 free(isp->isp_xflist, M_DEVBUF); 1010 free(pci->dmaps, M_DEVBUF); 1011 isp->isp_rquest = NULL; 1012 return (1); 1013 } 1014 } 1015 return (0); 1016 } 1017 1018 typedef struct { 1019 struct ispsoftc *isp; 1020 void *cmd_token; 1021 void *rq; 1022 u_int16_t *iptrp; 1023 u_int16_t optr; 1024 u_int error; 1025 } mush_t; 1026 1027 #define MUSHERR_NOQENTRIES -2 1028 1029 #ifdef ISP_TARGET_MODE 1030 /* 1031 * We need to handle DMA for target mode differently from initiator mode. 1032 * 1033 * DMA mapping and construction and submission of CTIO Request Entries 1034 * and rendevous for completion are very tightly coupled because we start 1035 * out by knowing (per platform) how much data we have to move, but we 1036 * don't know, up front, how many DMA mapping segments will have to be used 1037 * cover that data, so we don't know how many CTIO Request Entries we 1038 * will end up using. Further, for performance reasons we may want to 1039 * (on the last CTIO for Fibre Channel), send status too (if all went well). 1040 * 1041 * The standard vector still goes through isp_pci_dmasetup, but the callback 1042 * for the DMA mapping routines comes here instead with the whole transfer 1043 * mapped and a pointer to a partially filled in already allocated request 1044 * queue entry. We finish the job. 1045 */ 1046 static void dma2_tgt __P((void *, bus_dma_segment_t *, int, int)); 1047 static void dma2_tgt_fc __P((void *, bus_dma_segment_t *, int, int)); 1048 1049 static void 1050 dma2_tgt(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) 1051 { 1052 mush_t *mp; 1053 struct ccb_scsiio *csio; 1054 struct isp_pcisoftc *pci; 1055 bus_dmamap_t *dp; 1056 u_int8_t scsi_status, send_status; 1057 ct_entry_t *cto; 1058 u_int32_t handle; 1059 int nctios; 1060 1061 mp = (mush_t *) arg; 1062 if (error) { 1063 mp->error = error; 1064 return; 1065 } 1066 1067 csio = mp->cmd_token; 1068 cto = mp->rq; 1069 1070 cto->ct_xfrlen = 0; 1071 cto->ct_resid = 0; 1072 cto->ct_seg_count = 0; 1073 bzero(cto->ct_dataseg, sizeof (cto->ct_dataseg)); 1074 if (nseg == 0) { 1075 cto->ct_header.rqs_entry_count = 1; 1076 ISP_TDQE(mp->isp, "dma2_tgt[no data]", *mp->iptrp, cto); 1077 if (isp_tdebug) { 1078 printf("%s:CTIO lun %d->iid%d flgs 0x%x sts 0x%x ssts " 1079 "0x%x res %u\n", mp->isp->isp_name, 1080 csio->ccb_h.target_lun, cto->ct_iid, cto->ct_flags, 1081 cto->ct_status, cto->ct_scsi_status, cto->ct_resid); 1082 } 1083 ISP_SWIZ_CTIO(isp, cto, cto); 1084 return; 1085 } 1086 1087 /* 1088 * Save handle, and potentially any SCSI status, which 1089 * we'll reinsert on the last CTIO we're going to send. 1090 */ 1091 handle = cto->ct_reserved; 1092 cto->ct_reserved = 0; 1093 scsi_status = cto->ct_scsi_status; 1094 cto->ct_scsi_status = 0; 1095 send_status = cto->ct_flags & CT_SENDSTATUS; 1096 cto->ct_flags &= ~CT_SENDSTATUS; 1097 1098 nctios = nseg / ISP_RQDSEG; 1099 if (nseg % ISP_RQDSEG) { 1100 nctios++; 1101 } 1102 1103 pci = (struct isp_pcisoftc *)mp->isp; 1104 dp = &pci->dmaps[handle - 1]; 1105 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1106 bus_dmamap_sync(pci->parent_dmat, *dp, BUS_DMASYNC_PREREAD); 1107 } else { 1108 bus_dmamap_sync(pci->parent_dmat, *dp, BUS_DMASYNC_PREWRITE); 1109 } 1110 1111 1112 while (nctios--) { 1113 int seg, seglim; 1114 1115 seglim = nseg; 1116 if (seglim > ISP_RQDSEG) 1117 seglim = ISP_RQDSEG; 1118 1119 for (seg = 0; seg < seglim; seg++) { 1120 cto->ct_dataseg[seg].ds_base = dm_segs->ds_addr; 1121 cto->ct_dataseg[seg].ds_count = dm_segs->ds_len; 1122 cto->ct_xfrlen += dm_segs->ds_len; 1123 dm_segs++; 1124 } 1125 1126 cto->ct_seg_count = seg; 1127 cto->ct_flags &= CT_DATAMASK; 1128 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1129 cto->ct_flags |= CT_DATA_IN; 1130 } else { 1131 cto->ct_flags |= CT_DATA_OUT; 1132 } 1133 1134 if (nctios == 0) { 1135 /* 1136 * We're the last in a sequence of CTIOs, so mark this 1137 * CTIO and save the handle to the CCB such that when 1138 * this CTIO completes we can free dma resources and 1139 * do whatever else we need to do to finish the rest 1140 * of the command. 1141 */ 1142 cto->ct_header.rqs_seqno = 1; 1143 cto->ct_reserved = handle; 1144 cto->ct_scsi_status = scsi_status; 1145 cto->ct_flags |= send_status; 1146 ISP_TDQE(mp->isp, "last dma2_tgt", *mp->iptrp, cto); 1147 if (isp_tdebug) { 1148 printf("%s:CTIO lun %d->iid%d flgs 0x%x sts " 1149 "0x%x ssts 0x%x res %u\n", 1150 mp->isp->isp_name, csio->ccb_h.target_lun, 1151 cto->ct_iid, cto->ct_flags, cto->ct_status, 1152 cto->ct_scsi_status, cto->ct_resid); 1153 } 1154 ISP_SWIZ_CTIO(isp, cto, cto); 1155 } else { 1156 ct_entry_t *octo = cto; 1157 cto->ct_reserved = 0; 1158 cto->ct_header.rqs_seqno = 0; 1159 ISP_TDQE(mp->isp, "dma2_tgt", *mp->iptrp, cto); 1160 if (isp_tdebug) { 1161 printf("%s:CTIO lun %d->iid%d flgs 0x%x res" 1162 " %u\n", mp->isp->isp_name, 1163 csio->ccb_h.target_lun, cto->ct_iid, 1164 cto->ct_flags, cto->ct_resid); 1165 } 1166 cto = (ct_entry_t *) 1167 ISP_QUEUE_ENTRY(mp->isp->isp_rquest, *mp->iptrp); 1168 *mp->iptrp = 1169 ISP_NXT_QENTRY(*mp->iptrp, RQUEST_QUEUE_LEN); 1170 if (*mp->iptrp == mp->optr) { 1171 printf("%s: Queue Overflow in dma2_tgt\n", 1172 mp->isp->isp_name); 1173 mp->error = MUSHERR_NOQENTRIES; 1174 return; 1175 } 1176 /* 1177 * Fill in the new CTIO with info from the old one. 1178 */ 1179 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO; 1180 cto->ct_header.rqs_entry_count = 1; 1181 cto->ct_header.rqs_flags = 0; 1182 /* ct_header.rqs_seqno && ct_reserved filled in later */ 1183 cto->ct_lun = octo->ct_lun; 1184 cto->ct_iid = octo->ct_iid; 1185 cto->ct_reserved2 = octo->ct_reserved2; 1186 cto->ct_tgt = octo->ct_tgt; 1187 cto->ct_flags = octo->ct_flags & ~CT_DATAMASK; 1188 cto->ct_status = 0; 1189 cto->ct_scsi_status = 0; 1190 cto->ct_tag_val = octo->ct_tag_val; 1191 cto->ct_tag_type = octo->ct_tag_type; 1192 cto->ct_xfrlen = 0; 1193 cto->ct_resid = 0; 1194 cto->ct_timeout = octo->ct_timeout; 1195 cto->ct_seg_count = 0; 1196 bzero(cto->ct_dataseg, sizeof (cto->ct_dataseg)); 1197 ISP_SWIZ_CTIO(isp, octo, octo); 1198 } 1199 } 1200 } 1201 1202 static void 1203 dma2_tgt_fc(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) 1204 { 1205 mush_t *mp; 1206 struct ccb_scsiio *csio; 1207 struct isp_pcisoftc *pci; 1208 bus_dmamap_t *dp; 1209 ct2_entry_t *cto; 1210 u_int16_t scsi_status, send_status, send_sense; 1211 u_int32_t handle, totxfr; 1212 u_int8_t sense[QLTM_SENSELEN]; 1213 int nctios; 1214 int32_t resid; 1215 1216 mp = (mush_t *) arg; 1217 if (error) { 1218 mp->error = error; 1219 return; 1220 } 1221 1222 csio = mp->cmd_token; 1223 cto = mp->rq; 1224 1225 if (nseg == 0) { 1226 if ((cto->ct_flags & CT2_FLAG_MMASK) != CT2_FLAG_MODE1) { 1227 printf("%s: dma2_tgt_fc, a status CTIO2 without MODE1 " 1228 "set (0x%x)\n", mp->isp->isp_name, cto->ct_flags); 1229 mp->error = EINVAL; 1230 return; 1231 } 1232 cto->ct_header.rqs_entry_count = 1; 1233 /* ct_reserved contains the handle set by caller */ 1234 /* 1235 * We preserve ct_lun, ct_iid, ct_rxid. We set the data 1236 * flags to NO DATA and clear relative offset flags. 1237 * We preserve the ct_resid and the response area. 1238 */ 1239 cto->ct_flags |= CT2_NO_DATA; 1240 cto->ct_seg_count = 0; 1241 cto->ct_reloff = 0; 1242 ISP_TDQE(mp->isp, "dma2_tgt_fc[no data]", *mp->iptrp, cto); 1243 if (isp_tdebug) { 1244 scsi_status = cto->rsp.m1.ct_scsi_status; 1245 printf("%s:CTIO2 RX_ID 0x%x lun %d->iid%d flgs 0x%x " 1246 "sts 0x%x ssts 0x%x res %u\n", mp->isp->isp_name, 1247 cto->ct_rxid, csio->ccb_h.target_lun, cto->ct_iid, 1248 cto->ct_flags, cto->ct_status, 1249 cto->rsp.m1.ct_scsi_status, cto->ct_resid); 1250 } 1251 ISP_SWIZ_CTIO2(isp, cto, cto); 1252 return; 1253 } 1254 1255 if ((cto->ct_flags & CT2_FLAG_MMASK) != CT2_FLAG_MODE0) { 1256 printf("%s: dma2_tgt_fc, a data CTIO2 without MODE0 set " 1257 "(0x%x)\n\n", mp->isp->isp_name, cto->ct_flags); 1258 mp->error = EINVAL; 1259 return; 1260 } 1261 1262 1263 nctios = nseg / ISP_RQDSEG_T2; 1264 if (nseg % ISP_RQDSEG_T2) { 1265 nctios++; 1266 } 1267 1268 /* 1269 * Save the handle, status, reloff, and residual. We'll reinsert the 1270 * handle into the last CTIO2 we're going to send, and reinsert status 1271 * and residual (and possibly sense data) if that's to be sent as well. 1272 * 1273 * We preserve ct_reloff and adjust it for each data CTIO2 we send past 1274 * the first one. This is needed so that the FCP DATA IUs being sent 1275 * out have the correct offset (they can arrive at the other end out 1276 * of order). 1277 */ 1278 1279 handle = cto->ct_reserved; 1280 cto->ct_reserved = 0; 1281 1282 if ((send_status = (cto->ct_flags & CT2_SENDSTATUS)) != 0) { 1283 cto->ct_flags &= ~CT2_SENDSTATUS; 1284 1285 /* 1286 * Preserve residual. 1287 */ 1288 resid = cto->ct_resid; 1289 1290 /* 1291 * Save actual SCSI status. We'll reinsert the 1292 * CT2_SNSLEN_VALID later if appropriate. 1293 */ 1294 scsi_status = cto->rsp.m0.ct_scsi_status & 0xff; 1295 send_sense = cto->rsp.m0.ct_scsi_status & CT2_SNSLEN_VALID; 1296 1297 /* 1298 * If we're sending status and have a CHECK CONDTION and 1299 * have sense data, we send one more CTIO2 with just the 1300 * status and sense data. The upper layers have stashed 1301 * the sense data in the dataseg structure for us. 1302 */ 1303 1304 if ((scsi_status & 0xf) == SCSI_STATUS_CHECK_COND && 1305 send_sense) { 1306 bcopy(cto->rsp.m0.ct_dataseg, sense, QLTM_SENSELEN); 1307 nctios++; 1308 } 1309 } else { 1310 scsi_status = send_sense = resid = 0; 1311 } 1312 1313 totxfr = cto->ct_resid = 0; 1314 cto->rsp.m0.ct_scsi_status = 0; 1315 bzero(&cto->rsp, sizeof (cto->rsp)); 1316 1317 pci = (struct isp_pcisoftc *)mp->isp; 1318 dp = &pci->dmaps[handle - 1]; 1319 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1320 bus_dmamap_sync(pci->parent_dmat, *dp, BUS_DMASYNC_PREREAD); 1321 } else { 1322 bus_dmamap_sync(pci->parent_dmat, *dp, BUS_DMASYNC_PREWRITE); 1323 } 1324 1325 while (nctios--) { 1326 int seg, seglim; 1327 1328 seglim = nseg; 1329 if (seglim) { 1330 if (seglim > ISP_RQDSEG_T2) 1331 seglim = ISP_RQDSEG_T2; 1332 1333 for (seg = 0; seg < seglim; seg++) { 1334 cto->rsp.m0.ct_dataseg[seg].ds_base = 1335 dm_segs->ds_addr; 1336 cto->rsp.m0.ct_dataseg[seg].ds_count = 1337 dm_segs->ds_len; 1338 cto->rsp.m0.ct_xfrlen += dm_segs->ds_len; 1339 totxfr += dm_segs->ds_len; 1340 dm_segs++; 1341 } 1342 cto->ct_seg_count = seg; 1343 } else { 1344 /* 1345 * This case should only happen when we're sending a 1346 * synthesized MODE1 final status with sense data. 1347 */ 1348 if (send_sense == 0) { 1349 printf("%s: dma2_tgt_fc ran out of segments, " 1350 "no SENSE DATA\n", mp->isp->isp_name); 1351 mp->error = EINVAL; 1352 return; 1353 } 1354 } 1355 1356 /* 1357 * At this point, the fields ct_lun, ct_iid, ct_rxid, 1358 * ct_timeout have been carried over unchanged from what 1359 * our caller had set. 1360 * 1361 * The field ct_reloff is either what the caller set, or 1362 * what we've added to below. 1363 * 1364 * The dataseg fields and the seg_count fields we just got 1365 * through setting. The data direction we've preserved all 1366 * along and only clear it if we're sending a MODE1 status 1367 * as the last CTIO. 1368 * 1369 */ 1370 1371 if (nctios == 0) { 1372 1373 /* 1374 * We're the last in a sequence of CTIO2s, so mark this 1375 * CTIO2 and save the handle to the CCB such that when 1376 * this CTIO2 completes we can free dma resources and 1377 * do whatever else we need to do to finish the rest 1378 * of the command. 1379 */ 1380 1381 cto->ct_reserved = handle; 1382 cto->ct_header.rqs_seqno = 1; 1383 1384 if (send_status) { 1385 if (send_sense) { 1386 bcopy(sense, cto->rsp.m1.ct_resp, 1387 QLTM_SENSELEN); 1388 cto->rsp.m1.ct_senselen = 1389 QLTM_SENSELEN; 1390 scsi_status |= CT2_SNSLEN_VALID; 1391 cto->rsp.m1.ct_scsi_status = 1392 scsi_status; 1393 cto->ct_flags &= CT2_FLAG_MMASK; 1394 cto->ct_flags |= CT2_FLAG_MODE1 | 1395 CT2_NO_DATA| CT2_SENDSTATUS; 1396 } else { 1397 cto->rsp.m0.ct_scsi_status = 1398 scsi_status; 1399 cto->ct_flags |= CT2_SENDSTATUS; 1400 } 1401 cto->ct_resid = resid - totxfr; 1402 } 1403 ISP_TDQE(mp->isp, "last dma2_tgt_fc", *mp->iptrp, cto); 1404 if (isp_tdebug) { 1405 printf("%s:CTIO2 RX_ID 0x%x lun %d->iid%d flgs" 1406 "0x%x sts 0x%x ssts 0x%x res %u\n", 1407 mp->isp->isp_name, cto->ct_rxid, 1408 csio->ccb_h.target_lun, (int) cto->ct_iid, 1409 cto->ct_flags, cto->ct_status, 1410 cto->rsp.m1.ct_scsi_status, cto->ct_resid); 1411 } 1412 ISP_SWIZ_CTIO2(isp, cto, cto); 1413 } else { 1414 ct2_entry_t *octo = cto; 1415 1416 /* 1417 * Make sure handle fields are clean 1418 */ 1419 cto->ct_reserved = 0; 1420 cto->ct_header.rqs_seqno = 0; 1421 1422 ISP_TDQE(mp->isp, "dma2_tgt_fc", *mp->iptrp, cto); 1423 if (isp_tdebug) { 1424 printf("%s:CTIO2 RX_ID 0x%x lun %d->iid%d flgs" 1425 "0x%x\n", mp->isp->isp_name, cto->ct_rxid, 1426 csio->ccb_h.target_lun, (int) cto->ct_iid, 1427 cto->ct_flags); 1428 } 1429 /* 1430 * Get a new CTIO2 1431 */ 1432 cto = (ct2_entry_t *) 1433 ISP_QUEUE_ENTRY(mp->isp->isp_rquest, *mp->iptrp); 1434 *mp->iptrp = 1435 ISP_NXT_QENTRY(*mp->iptrp, RQUEST_QUEUE_LEN); 1436 if (*mp->iptrp == mp->optr) { 1437 printf("%s: Queue Overflow in dma2_tgt_fc\n", 1438 mp->isp->isp_name); 1439 mp->error = MUSHERR_NOQENTRIES; 1440 return; 1441 } 1442 1443 /* 1444 * Fill in the new CTIO2 with info from the old one. 1445 */ 1446 cto->ct_header.rqs_entry_type = RQSTYPE_CTIO2; 1447 cto->ct_header.rqs_entry_count = 1; 1448 cto->ct_header.rqs_flags = 0; 1449 /* ct_header.rqs_seqno && ct_reserved done later */ 1450 cto->ct_lun = octo->ct_lun; 1451 cto->ct_iid = octo->ct_iid; 1452 cto->ct_rxid = octo->ct_rxid; 1453 cto->ct_flags = octo->ct_flags; 1454 cto->ct_status = 0; 1455 cto->ct_resid = 0; 1456 cto->ct_timeout = octo->ct_timeout; 1457 cto->ct_seg_count = 0; 1458 /* 1459 * Adjust the new relative offset by the amount which 1460 * is recorded in the data segment of the old CTIO2 we 1461 * just finished filling out. 1462 */ 1463 cto->ct_reloff += octo->rsp.m0.ct_xfrlen; 1464 bzero(&cto->rsp, sizeof (cto->rsp)); 1465 ISP_SWIZ_CTIO2(isp, cto, cto); 1466 } 1467 } 1468 } 1469 #endif 1470 1471 static void dma2 __P((void *, bus_dma_segment_t *, int, int)); 1472 1473 static void 1474 dma2(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) 1475 { 1476 mush_t *mp; 1477 struct ccb_scsiio *csio; 1478 struct isp_pcisoftc *pci; 1479 bus_dmamap_t *dp; 1480 bus_dma_segment_t *eseg; 1481 ispreq_t *rq; 1482 ispcontreq_t *crq; 1483 int seglim, datalen; 1484 1485 mp = (mush_t *) arg; 1486 if (error) { 1487 mp->error = error; 1488 return; 1489 } 1490 1491 if (nseg < 1) { 1492 printf("%s: bad segment count (%d)\n", mp->isp->isp_name, nseg); 1493 mp->error = EFAULT; 1494 return; 1495 } 1496 csio = mp->cmd_token; 1497 rq = mp->rq; 1498 pci = (struct isp_pcisoftc *)mp->isp; 1499 dp = &pci->dmaps[rq->req_handle - 1]; 1500 1501 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1502 bus_dmamap_sync(pci->parent_dmat, *dp, BUS_DMASYNC_PREREAD); 1503 } else { 1504 bus_dmamap_sync(pci->parent_dmat, *dp, BUS_DMASYNC_PREWRITE); 1505 } 1506 1507 datalen = XS_XFRLEN(csio); 1508 1509 /* 1510 * We're passed an initial partially filled in entry that 1511 * has most fields filled in except for data transfer 1512 * related values. 1513 * 1514 * Our job is to fill in the initial request queue entry and 1515 * then to start allocating and filling in continuation entries 1516 * until we've covered the entire transfer. 1517 */ 1518 1519 if (IS_FC(mp->isp)) { 1520 seglim = ISP_RQDSEG_T2; 1521 ((ispreqt2_t *)rq)->req_totalcnt = datalen; 1522 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1523 ((ispreqt2_t *)rq)->req_flags |= REQFLAG_DATA_IN; 1524 } else { 1525 ((ispreqt2_t *)rq)->req_flags |= REQFLAG_DATA_OUT; 1526 } 1527 } else { 1528 if (csio->cdb_len > 12) { 1529 seglim = 0; 1530 } else { 1531 seglim = ISP_RQDSEG; 1532 } 1533 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1534 rq->req_flags |= REQFLAG_DATA_IN; 1535 } else { 1536 rq->req_flags |= REQFLAG_DATA_OUT; 1537 } 1538 } 1539 1540 eseg = dm_segs + nseg; 1541 1542 while (datalen != 0 && rq->req_seg_count < seglim && dm_segs != eseg) { 1543 if (IS_FC(mp->isp)) { 1544 ispreqt2_t *rq2 = (ispreqt2_t *)rq; 1545 rq2->req_dataseg[rq2->req_seg_count].ds_base = 1546 dm_segs->ds_addr; 1547 rq2->req_dataseg[rq2->req_seg_count].ds_count = 1548 dm_segs->ds_len; 1549 } else { 1550 rq->req_dataseg[rq->req_seg_count].ds_base = 1551 dm_segs->ds_addr; 1552 rq->req_dataseg[rq->req_seg_count].ds_count = 1553 dm_segs->ds_len; 1554 } 1555 datalen -= dm_segs->ds_len; 1556 #if 0 1557 if (IS_FC(mp->isp)) { 1558 ispreqt2_t *rq2 = (ispreqt2_t *)rq; 1559 printf("%s: seg0[%d] cnt 0x%x paddr 0x%08x\n", 1560 mp->isp->isp_name, rq->req_seg_count, 1561 rq2->req_dataseg[rq2->req_seg_count].ds_count, 1562 rq2->req_dataseg[rq2->req_seg_count].ds_base); 1563 } else { 1564 printf("%s: seg0[%d] cnt 0x%x paddr 0x%08x\n", 1565 mp->isp->isp_name, rq->req_seg_count, 1566 rq->req_dataseg[rq->req_seg_count].ds_count, 1567 rq->req_dataseg[rq->req_seg_count].ds_base); 1568 } 1569 #endif 1570 rq->req_seg_count++; 1571 dm_segs++; 1572 } 1573 1574 while (datalen > 0 && dm_segs != eseg) { 1575 crq = (ispcontreq_t *) 1576 ISP_QUEUE_ENTRY(mp->isp->isp_rquest, *mp->iptrp); 1577 *mp->iptrp = ISP_NXT_QENTRY(*mp->iptrp, RQUEST_QUEUE_LEN); 1578 if (*mp->iptrp == mp->optr) { 1579 #if 0 1580 printf("%s: Request Queue Overflow++\n", 1581 mp->isp->isp_name); 1582 #endif 1583 mp->error = MUSHERR_NOQENTRIES; 1584 return; 1585 } 1586 rq->req_header.rqs_entry_count++; 1587 bzero((void *)crq, sizeof (*crq)); 1588 crq->req_header.rqs_entry_count = 1; 1589 crq->req_header.rqs_entry_type = RQSTYPE_DATASEG; 1590 1591 seglim = 0; 1592 while (datalen > 0 && seglim < ISP_CDSEG && dm_segs != eseg) { 1593 crq->req_dataseg[seglim].ds_base = 1594 dm_segs->ds_addr; 1595 crq->req_dataseg[seglim].ds_count = 1596 dm_segs->ds_len; 1597 #if 0 1598 printf("%s: seg%d[%d] cnt 0x%x paddr 0x%08x\n", 1599 mp->isp->isp_name, rq->req_header.rqs_entry_count-1, 1600 seglim, crq->req_dataseg[seglim].ds_count, 1601 crq->req_dataseg[seglim].ds_base); 1602 #endif 1603 rq->req_seg_count++; 1604 dm_segs++; 1605 seglim++; 1606 datalen -= dm_segs->ds_len; 1607 } 1608 } 1609 } 1610 1611 static int 1612 isp_pci_dmasetup(struct ispsoftc *isp, struct ccb_scsiio *csio, ispreq_t *rq, 1613 u_int16_t *iptrp, u_int16_t optr) 1614 { 1615 struct isp_pcisoftc *pci = (struct isp_pcisoftc *)isp; 1616 bus_dmamap_t *dp = NULL; 1617 mush_t mush, *mp; 1618 void (*eptr) __P((void *, bus_dma_segment_t *, int, int)); 1619 1620 #ifdef ISP_TARGET_MODE 1621 if (csio->ccb_h.func_code == XPT_CONT_TARGET_IO) { 1622 if (IS_FC(isp)) { 1623 eptr = dma2_tgt_fc; 1624 } else { 1625 eptr = dma2_tgt; 1626 } 1627 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE) { 1628 rq->req_seg_count = 1; 1629 mp = &mush; 1630 mp->isp = isp; 1631 mp->cmd_token = csio; 1632 mp->rq = rq; 1633 mp->iptrp = iptrp; 1634 mp->optr = optr; 1635 mp->error = 0; 1636 (*eptr)(mp, NULL, 0, 0); 1637 goto exit; 1638 } 1639 } else 1640 #endif 1641 eptr = dma2; 1642 1643 /* 1644 * NB: if we need to do request queue entry swizzling, 1645 * NB: this is where it would need to be done for cmds 1646 * NB: that move no data. For commands that move data, 1647 * NB: swizzling would take place in those functions. 1648 */ 1649 if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE) { 1650 rq->req_seg_count = 1; 1651 return (CMD_QUEUED); 1652 } 1653 1654 /* 1655 * Do a virtual grapevine step to collect info for 1656 * the callback dma allocation that we have to use... 1657 */ 1658 mp = &mush; 1659 mp->isp = isp; 1660 mp->cmd_token = csio; 1661 mp->rq = rq; 1662 mp->iptrp = iptrp; 1663 mp->optr = optr; 1664 mp->error = 0; 1665 1666 if ((csio->ccb_h.flags & CAM_SCATTER_VALID) == 0) { 1667 if ((csio->ccb_h.flags & CAM_DATA_PHYS) == 0) { 1668 int error, s; 1669 dp = &pci->dmaps[rq->req_handle - 1]; 1670 s = splsoftvm(); 1671 error = bus_dmamap_load(pci->parent_dmat, *dp, 1672 csio->data_ptr, csio->dxfer_len, eptr, mp, 0); 1673 if (error == EINPROGRESS) { 1674 bus_dmamap_unload(pci->parent_dmat, *dp); 1675 mp->error = EINVAL; 1676 printf("%s: deferred dma allocation not " 1677 "supported\n", isp->isp_name); 1678 } else if (error && mp->error == 0) { 1679 #ifdef DIAGNOSTIC 1680 printf("%s: error %d in dma mapping code\n", 1681 isp->isp_name, error); 1682 #endif 1683 mp->error = error; 1684 } 1685 splx(s); 1686 } else { 1687 /* Pointer to physical buffer */ 1688 struct bus_dma_segment seg; 1689 seg.ds_addr = (bus_addr_t)csio->data_ptr; 1690 seg.ds_len = csio->dxfer_len; 1691 (*eptr)(mp, &seg, 1, 0); 1692 } 1693 } else { 1694 struct bus_dma_segment *segs; 1695 1696 if ((csio->ccb_h.flags & CAM_DATA_PHYS) != 0) { 1697 printf("%s: Physical segment pointers unsupported", 1698 isp->isp_name); 1699 mp->error = EINVAL; 1700 } else if ((csio->ccb_h.flags & CAM_SG_LIST_PHYS) == 0) { 1701 printf("%s: Virtual segment addresses unsupported", 1702 isp->isp_name); 1703 mp->error = EINVAL; 1704 } else { 1705 /* Just use the segments provided */ 1706 segs = (struct bus_dma_segment *) csio->data_ptr; 1707 (*eptr)(mp, segs, csio->sglist_cnt, 0); 1708 } 1709 } 1710 #ifdef ISP_TARGET_MODE 1711 exit: 1712 #endif 1713 if (mp->error) { 1714 int retval = CMD_COMPLETE; 1715 if (mp->error == MUSHERR_NOQENTRIES) { 1716 retval = CMD_EAGAIN; 1717 } else if (mp->error == EFBIG) { 1718 XS_SETERR(csio, CAM_REQ_TOO_BIG); 1719 } else if (mp->error == EINVAL) { 1720 XS_SETERR(csio, CAM_REQ_INVALID); 1721 } else { 1722 XS_SETERR(csio, CAM_UNREC_HBA_ERROR); 1723 } 1724 return (retval); 1725 } else { 1726 /* 1727 * Check to see if we weren't cancelled while sleeping on 1728 * getting DMA resources... 1729 */ 1730 if ((csio->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_INPROG) { 1731 if (dp) { 1732 bus_dmamap_unload(pci->parent_dmat, *dp); 1733 } 1734 return (CMD_COMPLETE); 1735 } 1736 return (CMD_QUEUED); 1737 } 1738 } 1739 1740 static void 1741 isp_pci_dmateardown(struct ispsoftc *isp, ISP_SCSI_XFER_T *xs, u_int32_t handle) 1742 { 1743 struct isp_pcisoftc *pci = (struct isp_pcisoftc *)isp; 1744 bus_dmamap_t *dp = &pci->dmaps[handle - 1]; 1745 KASSERT((handle > 0 && handle <= isp->isp_maxcmds), 1746 ("bad handle in isp_pci_dmateardonw")); 1747 if ((xs->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { 1748 bus_dmamap_sync(pci->parent_dmat, *dp, BUS_DMASYNC_POSTREAD); 1749 } else { 1750 bus_dmamap_sync(pci->parent_dmat, *dp, BUS_DMASYNC_POSTWRITE); 1751 } 1752 bus_dmamap_unload(pci->parent_dmat, *dp); 1753 } 1754 1755 1756 static void 1757 isp_pci_reset1(struct ispsoftc *isp) 1758 { 1759 /* Make sure the BIOS is disabled */ 1760 isp_pci_wr_reg(isp, HCCR, PCI_HCCR_CMD_BIOS); 1761 } 1762 1763 static void 1764 isp_pci_dumpregs(struct ispsoftc *isp) 1765 { 1766 struct isp_pcisoftc *pci = (struct isp_pcisoftc *)isp; 1767 printf("%s: PCI Status Command/Status=%x\n", pci->pci_isp.isp_name, 1768 pci_read_config(pci->pci_dev, PCIR_COMMAND, 1)); 1769 } 1770