1 /* 2 * Copyright (c) 2003 Hidetoshi Shimokawa 3 * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. All advertising materials mentioning features or use of this software 15 * must display the acknowledgement as bellow: 16 * 17 * This product includes software developed by K. Kobayashi and H. Shimokawa 18 * 19 * 4. The name of the author may not be used to endorse or promote products 20 * derived from this software without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 25 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, 26 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 30 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32 * POSSIBILITY OF SUCH DAMAGE. 33 * 34 * $FreeBSD$ 35 * 36 */ 37 38 #include <sys/param.h> 39 #include <sys/systm.h> 40 #include <sys/module.h> 41 #include <sys/bus.h> 42 #include <sys/kernel.h> 43 #include <sys/sysctl.h> 44 #include <machine/bus.h> 45 #include <sys/malloc.h> 46 #if defined(__FreeBSD__) && __FreeBSD_version >= 501102 47 #include <sys/lock.h> 48 #include <sys/mutex.h> 49 #endif 50 51 #if defined(__DragonFly__) || __FreeBSD_version < 500106 52 #include <sys/devicestat.h> /* for struct devstat */ 53 #endif 54 55 #ifdef __DragonFly__ 56 #include <bus/cam/cam.h> 57 #include <bus/cam/cam_ccb.h> 58 #include <bus/cam/cam_sim.h> 59 #include <bus/cam/cam_xpt_sim.h> 60 #include <bus/cam/cam_debug.h> 61 #include <bus/cam/cam_periph.h> 62 #include <bus/cam/scsi/scsi_all.h> 63 64 #include <bus/firewire/firewire.h> 65 #include <bus/firewire/firewirereg.h> 66 #include <bus/firewire/fwdma.h> 67 #include <bus/firewire/iec13213.h> 68 #include "sbp.h" 69 #else 70 #include <cam/cam.h> 71 #include <cam/cam_ccb.h> 72 #include <cam/cam_sim.h> 73 #include <cam/cam_xpt_sim.h> 74 #include <cam/cam_debug.h> 75 #include <cam/cam_periph.h> 76 #include <cam/scsi/scsi_all.h> 77 78 #include <dev/firewire/firewire.h> 79 #include <dev/firewire/firewirereg.h> 80 #include <dev/firewire/fwdma.h> 81 #include <dev/firewire/iec13213.h> 82 #include <dev/firewire/sbp.h> 83 #endif 84 85 #define ccb_sdev_ptr spriv_ptr0 86 #define ccb_sbp_ptr spriv_ptr1 87 88 #define SBP_NUM_TARGETS 8 /* MAX 64 */ 89 /* 90 * Scan_bus doesn't work for more than 8 LUNs 91 * because of CAM_SCSI2_MAXLUN in cam_xpt.c 92 */ 93 #define SBP_NUM_LUNS 64 94 #define SBP_DMA_SIZE PAGE_SIZE 95 #define SBP_LOGIN_SIZE sizeof(struct sbp_login_res) 96 #define SBP_QUEUE_LEN ((SBP_DMA_SIZE - SBP_LOGIN_SIZE) / sizeof(struct sbp_ocb)) 97 #define SBP_NUM_OCB (SBP_QUEUE_LEN * SBP_NUM_TARGETS) 98 99 /* 100 * STATUS FIFO addressing 101 * bit 102 * ----------------------- 103 * 0- 1( 2): 0 (alignment) 104 * 2- 7( 6): target 105 * 8-15( 8): lun 106 * 16-31( 8): reserved 107 * 32-47(16): SBP_BIND_HI 108 * 48-64(16): bus_id, node_id 109 */ 110 #define SBP_BIND_HI 0x1 111 #define SBP_DEV2ADDR(t, l) \ 112 (((u_int64_t)SBP_BIND_HI << 32) \ 113 | (((l) & 0xff) << 8) \ 114 | (((t) & 0x3f) << 2)) 115 #define SBP_ADDR2TRG(a) (((a) >> 2) & 0x3f) 116 #define SBP_ADDR2LUN(a) (((a) >> 8) & 0xff) 117 #define SBP_INITIATOR 7 118 119 static char *orb_fun_name[] = { 120 ORB_FUN_NAMES 121 }; 122 123 static int debug = 0; 124 static int auto_login = 1; 125 static int max_speed = -1; 126 static int sbp_cold = 1; 127 static int ex_login = 1; 128 static int login_delay = 1000; /* msec */ 129 static int scan_delay = 500; /* msec */ 130 static int use_doorbell = 0; 131 static int sbp_tags = 0; 132 133 SYSCTL_DECL(_hw_firewire); 134 SYSCTL_NODE(_hw_firewire, OID_AUTO, sbp, CTLFLAG_RD, 0, "SBP-II Subsystem"); 135 SYSCTL_INT(_debug, OID_AUTO, sbp_debug, CTLFLAG_RW, &debug, 0, 136 "SBP debug flag"); 137 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, auto_login, CTLFLAG_RW, &auto_login, 0, 138 "SBP perform login automatically"); 139 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, max_speed, CTLFLAG_RW, &max_speed, 0, 140 "SBP transfer max speed"); 141 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, exclusive_login, CTLFLAG_RW, 142 &ex_login, 0, "SBP enable exclusive login"); 143 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, login_delay, CTLFLAG_RW, 144 &login_delay, 0, "SBP login delay in msec"); 145 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, scan_delay, CTLFLAG_RW, 146 &scan_delay, 0, "SBP scan delay in msec"); 147 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, use_doorbell, CTLFLAG_RW, 148 &use_doorbell, 0, "SBP use doorbell request"); 149 SYSCTL_INT(_hw_firewire_sbp, OID_AUTO, tags, CTLFLAG_RW, &sbp_tags, 0, 150 "SBP tagged queuing support"); 151 152 TUNABLE_INT("hw.firewire.sbp.auto_login", &auto_login); 153 TUNABLE_INT("hw.firewire.sbp.max_speed", &max_speed); 154 TUNABLE_INT("hw.firewire.sbp.exclusive_login", &ex_login); 155 TUNABLE_INT("hw.firewire.sbp.login_delay", &login_delay); 156 TUNABLE_INT("hw.firewire.sbp.scan_delay", &scan_delay); 157 TUNABLE_INT("hw.firewire.sbp.use_doorbell", &use_doorbell); 158 TUNABLE_INT("hw.firewire.sbp.tags", &sbp_tags); 159 160 #define NEED_RESPONSE 0 161 162 #define SBP_SEG_MAX rounddown(0xffff, PAGE_SIZE) 163 #ifdef __sparc64__ /* iommu */ 164 #define SBP_IND_MAX howmany(MAXPHYS, SBP_SEG_MAX) 165 #else 166 #define SBP_IND_MAX howmany(MAXPHYS, PAGE_SIZE) 167 #endif 168 struct sbp_ocb { 169 STAILQ_ENTRY(sbp_ocb) ocb; 170 union ccb *ccb; 171 bus_addr_t bus_addr; 172 uint32_t orb[8]; 173 #define IND_PTR_OFFSET (8*sizeof(uint32_t)) 174 struct ind_ptr ind_ptr[SBP_IND_MAX]; 175 struct sbp_dev *sdev; 176 int flags; /* XXX should be removed */ 177 bus_dmamap_t dmamap; 178 }; 179 180 #define OCB_ACT_MGM 0 181 #define OCB_ACT_CMD 1 182 #define OCB_MATCH(o,s) ((o)->bus_addr == ntohl((s)->orb_lo)) 183 184 struct sbp_dev{ 185 #define SBP_DEV_RESET 0 /* accept login */ 186 #define SBP_DEV_LOGIN 1 /* to login */ 187 #if 0 188 #define SBP_DEV_RECONN 2 /* to reconnect */ 189 #endif 190 #define SBP_DEV_TOATTACH 3 /* to attach */ 191 #define SBP_DEV_PROBE 4 /* scan lun */ 192 #define SBP_DEV_ATTACHED 5 /* in operation */ 193 #define SBP_DEV_DEAD 6 /* unavailable unit */ 194 #define SBP_DEV_RETRY 7 /* unavailable unit */ 195 uint8_t status:4, 196 timeout:4; 197 uint8_t type; 198 uint16_t lun_id; 199 uint16_t freeze; 200 #define ORB_LINK_DEAD (1 << 0) 201 #define VALID_LUN (1 << 1) 202 #define ORB_POINTER_ACTIVE (1 << 2) 203 #define ORB_POINTER_NEED (1 << 3) 204 #define ORB_DOORBELL_ACTIVE (1 << 4) 205 #define ORB_DOORBELL_NEED (1 << 5) 206 #define ORB_SHORTAGE (1 << 6) 207 uint16_t flags; 208 struct cam_path *path; 209 struct sbp_target *target; 210 struct fwdma_alloc dma; 211 struct sbp_login_res *login; 212 struct callout login_callout; 213 struct sbp_ocb *ocb; 214 STAILQ_HEAD(, sbp_ocb) ocbs; 215 STAILQ_HEAD(, sbp_ocb) free_ocbs; 216 struct sbp_ocb *last_ocb; 217 char vendor[32]; 218 char product[32]; 219 char revision[10]; 220 }; 221 222 struct sbp_target { 223 int target_id; 224 int num_lun; 225 struct sbp_dev **luns; 226 struct sbp_softc *sbp; 227 struct fw_device *fwdev; 228 uint32_t mgm_hi, mgm_lo; 229 struct sbp_ocb *mgm_ocb_cur; 230 STAILQ_HEAD(, sbp_ocb) mgm_ocb_queue; 231 struct callout mgm_ocb_timeout; 232 struct callout scan_callout; 233 STAILQ_HEAD(, fw_xfer) xferlist; 234 int n_xfer; 235 }; 236 237 struct sbp_softc { 238 struct firewire_dev_comm fd; 239 struct cam_sim *sim; 240 struct cam_path *path; 241 struct sbp_target targets[SBP_NUM_TARGETS]; 242 struct fw_bind fwb; 243 bus_dma_tag_t dmat; 244 struct timeval last_busreset; 245 #define SIMQ_FREEZED 1 246 int flags; 247 }; 248 249 static void sbp_post_explore (void *); 250 static void sbp_recv (struct fw_xfer *); 251 static void sbp_mgm_callback (struct fw_xfer *); 252 #if 0 253 static void sbp_cmd_callback (struct fw_xfer *); 254 #endif 255 static void sbp_orb_pointer (struct sbp_dev *, struct sbp_ocb *); 256 static void sbp_doorbell(struct sbp_dev *); 257 static void sbp_execute_ocb (void *, bus_dma_segment_t *, int, int); 258 static void sbp_free_ocb (struct sbp_dev *, struct sbp_ocb *); 259 static void sbp_abort_ocb (struct sbp_ocb *, int); 260 static void sbp_abort_all_ocbs (struct sbp_dev *, int); 261 static struct fw_xfer * sbp_write_cmd (struct sbp_dev *, int, int); 262 static struct sbp_ocb * sbp_get_ocb (struct sbp_dev *); 263 static struct sbp_ocb * sbp_enqueue_ocb (struct sbp_dev *, struct sbp_ocb *); 264 static struct sbp_ocb * sbp_dequeue_ocb (struct sbp_dev *, struct sbp_status *); 265 static void sbp_cam_detach_sdev(struct sbp_dev *); 266 static void sbp_free_sdev(struct sbp_dev *); 267 static void sbp_cam_detach_target (struct sbp_target *); 268 static void sbp_free_target (struct sbp_target *); 269 static void sbp_mgm_timeout (void *arg); 270 static void sbp_timeout (void *arg); 271 static void sbp_mgm_orb (struct sbp_dev *, int, struct sbp_ocb *); 272 273 MALLOC_DEFINE(M_SBP, "sbp", "SBP-II/FireWire"); 274 275 /* cam related functions */ 276 static void sbp_action(struct cam_sim *sim, union ccb *ccb); 277 static void sbp_poll(struct cam_sim *sim); 278 static void sbp_cam_scan_lun(struct cam_periph *, union ccb *); 279 static void sbp_cam_scan_target(void *arg); 280 281 static char *orb_status0[] = { 282 /* 0 */ "No additional information to report", 283 /* 1 */ "Request type not supported", 284 /* 2 */ "Speed not supported", 285 /* 3 */ "Page size not supported", 286 /* 4 */ "Access denied", 287 /* 5 */ "Logical unit not supported", 288 /* 6 */ "Maximum payload too small", 289 /* 7 */ "Reserved for future standardization", 290 /* 8 */ "Resources unavailable", 291 /* 9 */ "Function rejected", 292 /* A */ "Login ID not recognized", 293 /* B */ "Dummy ORB completed", 294 /* C */ "Request aborted", 295 /* FF */ "Unspecified error" 296 #define MAX_ORB_STATUS0 0xd 297 }; 298 299 static char *orb_status1_object[] = { 300 /* 0 */ "Operation request block (ORB)", 301 /* 1 */ "Data buffer", 302 /* 2 */ "Page table", 303 /* 3 */ "Unable to specify" 304 }; 305 306 static char *orb_status1_serial_bus_error[] = { 307 /* 0 */ "Missing acknowledge", 308 /* 1 */ "Reserved; not to be used", 309 /* 2 */ "Time-out error", 310 /* 3 */ "Reserved; not to be used", 311 /* 4 */ "Busy retry limit exceeded(X)", 312 /* 5 */ "Busy retry limit exceeded(A)", 313 /* 6 */ "Busy retry limit exceeded(B)", 314 /* 7 */ "Reserved for future standardization", 315 /* 8 */ "Reserved for future standardization", 316 /* 9 */ "Reserved for future standardization", 317 /* A */ "Reserved for future standardization", 318 /* B */ "Tardy retry limit exceeded", 319 /* C */ "Conflict error", 320 /* D */ "Data error", 321 /* E */ "Type error", 322 /* F */ "Address error" 323 }; 324 325 static void 326 sbp_identify(driver_t *driver, device_t parent) 327 { 328 device_t child; 329 SBP_DEBUG(0) 330 printf("sbp_identify\n"); 331 END_DEBUG 332 333 child = BUS_ADD_CHILD(parent, 0, "sbp", device_get_unit(parent)); 334 } 335 336 /* 337 * sbp_probe() 338 */ 339 static int 340 sbp_probe(device_t dev) 341 { 342 device_t pa; 343 344 SBP_DEBUG(0) 345 printf("sbp_probe\n"); 346 END_DEBUG 347 348 pa = device_get_parent(dev); 349 if(device_get_unit(dev) != device_get_unit(pa)){ 350 return(ENXIO); 351 } 352 353 device_set_desc(dev, "SBP-2/SCSI over FireWire"); 354 355 if (bootverbose) 356 debug = bootverbose; 357 return (0); 358 } 359 360 static void 361 sbp_show_sdev_info(struct sbp_dev *sdev, int new) 362 { 363 struct fw_device *fwdev; 364 365 printf("%s:%d:%d ", 366 device_get_nameunit(sdev->target->sbp->fd.dev), 367 sdev->target->target_id, 368 sdev->lun_id 369 ); 370 if (new == 2) { 371 return; 372 } 373 fwdev = sdev->target->fwdev; 374 printf("ordered:%d type:%d EUI:%08x%08x node:%d " 375 "speed:%d maxrec:%d", 376 (sdev->type & 0x40) >> 6, 377 (sdev->type & 0x1f), 378 fwdev->eui.hi, 379 fwdev->eui.lo, 380 fwdev->dst, 381 fwdev->speed, 382 fwdev->maxrec 383 ); 384 if (new) 385 printf(" new!\n"); 386 else 387 printf("\n"); 388 sbp_show_sdev_info(sdev, 2); 389 printf("'%s' '%s' '%s'\n", sdev->vendor, sdev->product, sdev->revision); 390 } 391 392 static struct { 393 int bus; 394 int target; 395 struct fw_eui64 eui; 396 } wired[] = { 397 /* Bus Target EUI64 */ 398 #if 0 399 {0, 2, {0x00018ea0, 0x01fd0154}}, /* Logitec HDD */ 400 {0, 0, {0x00018ea6, 0x00100682}}, /* Logitec DVD */ 401 {0, 1, {0x00d03200, 0xa412006a}}, /* Yano HDD */ 402 #endif 403 {-1, -1, {0,0}} 404 }; 405 406 static int 407 sbp_new_target(struct sbp_softc *sbp, struct fw_device *fwdev) 408 { 409 int bus, i, target=-1; 410 char w[SBP_NUM_TARGETS]; 411 412 bzero(w, sizeof(w)); 413 bus = device_get_unit(sbp->fd.dev); 414 415 /* XXX wired-down configuration should be gotten from 416 tunable or device hint */ 417 for (i = 0; wired[i].bus >= 0; i ++) { 418 if (wired[i].bus == bus) { 419 w[wired[i].target] = 1; 420 if (wired[i].eui.hi == fwdev->eui.hi && 421 wired[i].eui.lo == fwdev->eui.lo) 422 target = wired[i].target; 423 } 424 } 425 if (target >= 0) { 426 if(target < SBP_NUM_TARGETS && 427 sbp->targets[target].fwdev == NULL) 428 return(target); 429 device_printf(sbp->fd.dev, 430 "target %d is not free for %08x:%08x\n", 431 target, fwdev->eui.hi, fwdev->eui.lo); 432 target = -1; 433 } 434 /* non-wired target */ 435 for (i = 0; i < SBP_NUM_TARGETS; i ++) 436 if (sbp->targets[i].fwdev == NULL && w[i] == 0) { 437 target = i; 438 break; 439 } 440 441 return target; 442 } 443 444 static void 445 sbp_alloc_lun(struct sbp_target *target) 446 { 447 struct crom_context cc; 448 struct csrreg *reg; 449 struct sbp_dev *sdev, **newluns; 450 struct sbp_softc *sbp; 451 int maxlun, lun, i; 452 453 sbp = target->sbp; 454 crom_init_context(&cc, target->fwdev->csrrom); 455 /* XXX shoud parse appropriate unit directories only */ 456 maxlun = -1; 457 while (cc.depth >= 0) { 458 reg = crom_search_key(&cc, CROM_LUN); 459 if (reg == NULL) 460 break; 461 lun = reg->val & 0xffff; 462 SBP_DEBUG(0) 463 printf("target %d lun %d found\n", target->target_id, lun); 464 END_DEBUG 465 if (maxlun < lun) 466 maxlun = lun; 467 crom_next(&cc); 468 } 469 if (maxlun < 0) 470 printf("%s:%d no LUN found\n", 471 device_get_nameunit(target->sbp->fd.dev), 472 target->target_id); 473 474 maxlun ++; 475 if (maxlun >= SBP_NUM_LUNS) 476 maxlun = SBP_NUM_LUNS; 477 478 /* Invalidiate stale devices */ 479 for (lun = 0; lun < target->num_lun; lun ++) { 480 sdev = target->luns[lun]; 481 if (sdev == NULL) 482 continue; 483 sdev->flags &= ~VALID_LUN; 484 if (lun >= maxlun) { 485 /* lost device */ 486 sbp_cam_detach_sdev(sdev); 487 sbp_free_sdev(sdev); 488 } 489 } 490 491 /* Reallocate */ 492 if (maxlun != target->num_lun) { 493 newluns = (struct sbp_dev **) realloc(target->luns, 494 sizeof(struct sbp_dev *) * maxlun, 495 M_SBP, M_NOWAIT | M_ZERO); 496 497 if (newluns == NULL) { 498 printf("%s: realloc failed\n", __func__); 499 newluns = target->luns; 500 maxlun = target->num_lun; 501 } 502 503 /* 504 * We must zero the extended region for the case 505 * realloc() doesn't allocate new buffer. 506 */ 507 if (maxlun > target->num_lun) 508 bzero(&newluns[target->num_lun], 509 sizeof(struct sbp_dev *) * 510 (maxlun - target->num_lun)); 511 512 target->luns = newluns; 513 target->num_lun = maxlun; 514 } 515 516 crom_init_context(&cc, target->fwdev->csrrom); 517 while (cc.depth >= 0) { 518 int new = 0; 519 520 reg = crom_search_key(&cc, CROM_LUN); 521 if (reg == NULL) 522 break; 523 lun = reg->val & 0xffff; 524 if (lun >= SBP_NUM_LUNS) { 525 printf("too large lun %d\n", lun); 526 goto next; 527 } 528 529 sdev = target->luns[lun]; 530 if (sdev == NULL) { 531 sdev = malloc(sizeof(struct sbp_dev), 532 M_SBP, M_NOWAIT | M_ZERO); 533 if (sdev == NULL) { 534 printf("%s: malloc failed\n", __func__); 535 goto next; 536 } 537 target->luns[lun] = sdev; 538 sdev->lun_id = lun; 539 sdev->target = target; 540 STAILQ_INIT(&sdev->ocbs); 541 CALLOUT_INIT(&sdev->login_callout); 542 sdev->status = SBP_DEV_RESET; 543 new = 1; 544 } 545 sdev->flags |= VALID_LUN; 546 sdev->type = (reg->val & 0xff0000) >> 16; 547 548 if (new == 0) 549 goto next; 550 551 fwdma_malloc(sbp->fd.fc, 552 /* alignment */ sizeof(uint32_t), 553 SBP_DMA_SIZE, &sdev->dma, BUS_DMA_NOWAIT); 554 if (sdev->dma.v_addr == NULL) { 555 printf("%s: dma space allocation failed\n", 556 __func__); 557 free(sdev, M_SBP); 558 target->luns[lun] = NULL; 559 goto next; 560 } 561 sdev->login = (struct sbp_login_res *) sdev->dma.v_addr; 562 sdev->ocb = (struct sbp_ocb *) 563 ((char *)sdev->dma.v_addr + SBP_LOGIN_SIZE); 564 bzero((char *)sdev->ocb, 565 sizeof (struct sbp_ocb) * SBP_QUEUE_LEN); 566 567 STAILQ_INIT(&sdev->free_ocbs); 568 for (i = 0; i < SBP_QUEUE_LEN; i++) { 569 struct sbp_ocb *ocb; 570 ocb = &sdev->ocb[i]; 571 ocb->bus_addr = sdev->dma.bus_addr 572 + SBP_LOGIN_SIZE 573 + sizeof(struct sbp_ocb) * i 574 + offsetof(struct sbp_ocb, orb[0]); 575 if (bus_dmamap_create(sbp->dmat, 0, &ocb->dmamap)) { 576 printf("sbp_attach: cannot create dmamap\n"); 577 /* XXX */ 578 goto next; 579 } 580 sbp_free_ocb(sdev, ocb); 581 } 582 next: 583 crom_next(&cc); 584 } 585 586 for (lun = 0; lun < target->num_lun; lun ++) { 587 sdev = target->luns[lun]; 588 if (sdev != NULL && (sdev->flags & VALID_LUN) == 0) { 589 sbp_cam_detach_sdev(sdev); 590 sbp_free_sdev(sdev); 591 target->luns[lun] = NULL; 592 } 593 } 594 } 595 596 static struct sbp_target * 597 sbp_alloc_target(struct sbp_softc *sbp, struct fw_device *fwdev) 598 { 599 int i; 600 struct sbp_target *target; 601 struct crom_context cc; 602 struct csrreg *reg; 603 604 SBP_DEBUG(1) 605 printf("sbp_alloc_target\n"); 606 END_DEBUG 607 i = sbp_new_target(sbp, fwdev); 608 if (i < 0) { 609 device_printf(sbp->fd.dev, "increase SBP_NUM_TARGETS!\n"); 610 return NULL; 611 } 612 /* new target */ 613 target = &sbp->targets[i]; 614 target->sbp = sbp; 615 target->fwdev = fwdev; 616 target->target_id = i; 617 /* XXX we may want to reload mgm port after each bus reset */ 618 /* XXX there might be multiple management agents */ 619 crom_init_context(&cc, target->fwdev->csrrom); 620 reg = crom_search_key(&cc, CROM_MGM); 621 if (reg == NULL || reg->val == 0) { 622 printf("NULL management address\n"); 623 target->fwdev = NULL; 624 return NULL; 625 } 626 target->mgm_hi = 0xffff; 627 target->mgm_lo = 0xf0000000 | (reg->val << 2); 628 target->mgm_ocb_cur = NULL; 629 SBP_DEBUG(1) 630 printf("target:%d mgm_port: %x\n", i, target->mgm_lo); 631 END_DEBUG 632 STAILQ_INIT(&target->xferlist); 633 target->n_xfer = 0; 634 STAILQ_INIT(&target->mgm_ocb_queue); 635 CALLOUT_INIT(&target->mgm_ocb_timeout); 636 CALLOUT_INIT(&target->scan_callout); 637 638 target->luns = NULL; 639 target->num_lun = 0; 640 return target; 641 } 642 643 static void 644 sbp_probe_lun(struct sbp_dev *sdev) 645 { 646 struct fw_device *fwdev; 647 struct crom_context c, *cc = &c; 648 struct csrreg *reg; 649 650 bzero(sdev->vendor, sizeof(sdev->vendor)); 651 bzero(sdev->product, sizeof(sdev->product)); 652 653 fwdev = sdev->target->fwdev; 654 crom_init_context(cc, fwdev->csrrom); 655 /* get vendor string */ 656 crom_search_key(cc, CSRKEY_VENDOR); 657 crom_next(cc); 658 crom_parse_text(cc, sdev->vendor, sizeof(sdev->vendor)); 659 /* skip to the unit directory for SBP-2 */ 660 while ((reg = crom_search_key(cc, CSRKEY_VER)) != NULL) { 661 if (reg->val == CSRVAL_T10SBP2) 662 break; 663 crom_next(cc); 664 } 665 /* get firmware revision */ 666 reg = crom_search_key(cc, CSRKEY_FIRM_VER); 667 if (reg != NULL) 668 snprintf(sdev->revision, sizeof(sdev->revision), 669 "%06x", reg->val); 670 /* get product string */ 671 crom_search_key(cc, CSRKEY_MODEL); 672 crom_next(cc); 673 crom_parse_text(cc, sdev->product, sizeof(sdev->product)); 674 } 675 676 static void 677 sbp_login_callout(void *arg) 678 { 679 struct sbp_dev *sdev = (struct sbp_dev *)arg; 680 sbp_mgm_orb(sdev, ORB_FUN_LGI, NULL); 681 } 682 683 static void 684 sbp_login(struct sbp_dev *sdev) 685 { 686 struct timeval delta; 687 struct timeval t; 688 int ticks = 0; 689 690 microtime(&delta); 691 timevalsub(&delta, &sdev->target->sbp->last_busreset); 692 t.tv_sec = login_delay / 1000; 693 t.tv_usec = (login_delay % 1000) * 1000; 694 timevalsub(&t, &delta); 695 if (t.tv_sec >= 0 && t.tv_usec > 0) 696 ticks = (t.tv_sec * 1000 + t.tv_usec / 1000) * hz / 1000; 697 SBP_DEBUG(0) 698 printf("%s: sec = %ld usec = %ld ticks = %d\n", __func__, 699 t.tv_sec, t.tv_usec, ticks); 700 END_DEBUG 701 callout_reset(&sdev->login_callout, ticks, 702 sbp_login_callout, (void *)(sdev)); 703 } 704 705 #define SBP_FWDEV_ALIVE(fwdev) (((fwdev)->status == FWDEVATTACHED) \ 706 && crom_has_specver((fwdev)->csrrom, CSRVAL_ANSIT10, CSRVAL_T10SBP2)) 707 708 static void 709 sbp_probe_target(void *arg) 710 { 711 struct sbp_target *target = (struct sbp_target *)arg; 712 struct sbp_softc *sbp; 713 struct sbp_dev *sdev; 714 struct firewire_comm *fc; 715 int i, alive; 716 717 alive = SBP_FWDEV_ALIVE(target->fwdev); 718 SBP_DEBUG(1) 719 printf("sbp_probe_target %d\n", target->target_id); 720 if (!alive) 721 printf("not alive\n"); 722 END_DEBUG 723 724 sbp = target->sbp; 725 fc = target->sbp->fd.fc; 726 sbp_alloc_lun(target); 727 728 /* XXX untimeout mgm_ocb and dequeue */ 729 for (i=0; i < target->num_lun; i++) { 730 sdev = target->luns[i]; 731 if (sdev == NULL) 732 continue; 733 if (alive && (sdev->status != SBP_DEV_DEAD)) { 734 if (sdev->path != NULL) { 735 xpt_freeze_devq(sdev->path, 1); 736 sdev->freeze ++; 737 } 738 sbp_probe_lun(sdev); 739 SBP_DEBUG(0) 740 sbp_show_sdev_info(sdev, 741 (sdev->status == SBP_DEV_RESET)); 742 END_DEBUG 743 744 sbp_abort_all_ocbs(sdev, CAM_SCSI_BUS_RESET); 745 switch (sdev->status) { 746 case SBP_DEV_RESET: 747 /* new or revived target */ 748 if (auto_login) 749 sbp_login(sdev); 750 break; 751 case SBP_DEV_TOATTACH: 752 case SBP_DEV_PROBE: 753 case SBP_DEV_ATTACHED: 754 case SBP_DEV_RETRY: 755 default: 756 sbp_mgm_orb(sdev, ORB_FUN_RCN, NULL); 757 break; 758 } 759 } else { 760 switch (sdev->status) { 761 case SBP_DEV_ATTACHED: 762 SBP_DEBUG(0) 763 /* the device has gone */ 764 sbp_show_sdev_info(sdev, 2); 765 printf("lost target\n"); 766 END_DEBUG 767 if (sdev->path) { 768 xpt_freeze_devq(sdev->path, 1); 769 sdev->freeze ++; 770 } 771 sdev->status = SBP_DEV_RETRY; 772 sbp_abort_all_ocbs(sdev, CAM_SCSI_BUS_RESET); 773 break; 774 case SBP_DEV_PROBE: 775 case SBP_DEV_TOATTACH: 776 sdev->status = SBP_DEV_RESET; 777 break; 778 case SBP_DEV_RETRY: 779 case SBP_DEV_RESET: 780 case SBP_DEV_DEAD: 781 break; 782 } 783 } 784 } 785 } 786 787 static void 788 sbp_post_busreset(void *arg) 789 { 790 struct sbp_softc *sbp; 791 792 sbp = (struct sbp_softc *)arg; 793 SBP_DEBUG(0) 794 printf("sbp_post_busreset\n"); 795 END_DEBUG 796 if ((sbp->sim->flags & SIMQ_FREEZED) == 0) { 797 xpt_freeze_simq(sbp->sim, /*count*/1); 798 sbp->sim->flags |= SIMQ_FREEZED; 799 } 800 microtime(&sbp->last_busreset); 801 } 802 803 static void 804 sbp_post_explore(void *arg) 805 { 806 struct sbp_softc *sbp = (struct sbp_softc *)arg; 807 struct sbp_target *target; 808 struct fw_device *fwdev; 809 int i, alive; 810 811 SBP_DEBUG(0) 812 printf("sbp_post_explore (sbp_cold=%d)\n", sbp_cold); 813 END_DEBUG 814 if (sbp_cold > 0) 815 sbp_cold --; 816 817 #if 0 818 /* 819 * XXX don't let CAM the bus rest. 820 * CAM tries to do something with freezed (DEV_RETRY) devices. 821 */ 822 xpt_async(AC_BUS_RESET, sbp->path, /*arg*/ NULL); 823 #endif 824 825 /* Garbage Collection */ 826 for(i = 0 ; i < SBP_NUM_TARGETS ; i ++){ 827 target = &sbp->targets[i]; 828 STAILQ_FOREACH(fwdev, &sbp->fd.fc->devices, link) 829 if (target->fwdev == NULL || target->fwdev == fwdev) 830 break; 831 if (fwdev == NULL) { 832 /* device has removed in lower driver */ 833 sbp_cam_detach_target(target); 834 sbp_free_target(target); 835 } 836 } 837 /* traverse device list */ 838 STAILQ_FOREACH(fwdev, &sbp->fd.fc->devices, link) { 839 SBP_DEBUG(0) 840 printf("sbp_post_explore: EUI:%08x%08x ", 841 fwdev->eui.hi, fwdev->eui.lo); 842 if (fwdev->status != FWDEVATTACHED) 843 printf("not attached, state=%d.\n", fwdev->status); 844 else 845 printf("attached\n"); 846 END_DEBUG 847 alive = SBP_FWDEV_ALIVE(fwdev); 848 for(i = 0 ; i < SBP_NUM_TARGETS ; i ++){ 849 target = &sbp->targets[i]; 850 if(target->fwdev == fwdev ) { 851 /* known target */ 852 break; 853 } 854 } 855 if(i == SBP_NUM_TARGETS){ 856 if (alive) { 857 /* new target */ 858 target = sbp_alloc_target(sbp, fwdev); 859 if (target == NULL) 860 continue; 861 } else { 862 continue; 863 } 864 } 865 sbp_probe_target((void *)target); 866 if (target->num_lun == 0) 867 sbp_free_target(target); 868 } 869 xpt_release_simq(sbp->sim, /*run queue*/TRUE); 870 sbp->sim->flags &= ~SIMQ_FREEZED; 871 } 872 873 #if NEED_RESPONSE 874 static void 875 sbp_loginres_callback(struct fw_xfer *xfer){ 876 int s; 877 struct sbp_dev *sdev; 878 sdev = (struct sbp_dev *)xfer->sc; 879 SBP_DEBUG(1) 880 sbp_show_sdev_info(sdev, 2); 881 printf("sbp_loginres_callback\n"); 882 END_DEBUG 883 /* recycle */ 884 s = splfw(); 885 STAILQ_INSERT_TAIL(&sdev->target->sbp->fwb.xferlist, xfer, link); 886 splx(s); 887 return; 888 } 889 #endif 890 891 static __inline void 892 sbp_xfer_free(struct fw_xfer *xfer) 893 { 894 struct sbp_dev *sdev; 895 int s; 896 897 sdev = (struct sbp_dev *)xfer->sc; 898 fw_xfer_unload(xfer); 899 s = splfw(); 900 STAILQ_INSERT_TAIL(&sdev->target->xferlist, xfer, link); 901 splx(s); 902 } 903 904 static void 905 sbp_reset_start_callback(struct fw_xfer *xfer) 906 { 907 struct sbp_dev *tsdev, *sdev = (struct sbp_dev *)xfer->sc; 908 struct sbp_target *target = sdev->target; 909 int i; 910 911 if (xfer->resp != 0) { 912 sbp_show_sdev_info(sdev, 2); 913 printf("sbp_reset_start failed: resp=%d\n", xfer->resp); 914 } 915 916 for (i = 0; i < target->num_lun; i++) { 917 tsdev = target->luns[i]; 918 if (tsdev != NULL && tsdev->status == SBP_DEV_LOGIN) 919 sbp_login(tsdev); 920 } 921 } 922 923 static void 924 sbp_reset_start(struct sbp_dev *sdev) 925 { 926 struct fw_xfer *xfer; 927 struct fw_pkt *fp; 928 929 SBP_DEBUG(0) 930 sbp_show_sdev_info(sdev, 2); 931 printf("sbp_reset_start\n"); 932 END_DEBUG 933 934 xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0); 935 xfer->act.hand = sbp_reset_start_callback; 936 fp = &xfer->send.hdr; 937 fp->mode.wreqq.dest_hi = 0xffff; 938 fp->mode.wreqq.dest_lo = 0xf0000000 | RESET_START; 939 fp->mode.wreqq.data = htonl(0xf); 940 fw_asyreq(xfer->fc, -1, xfer); 941 } 942 943 static void 944 sbp_mgm_callback(struct fw_xfer *xfer) 945 { 946 struct sbp_dev *sdev; 947 int resp; 948 949 sdev = (struct sbp_dev *)xfer->sc; 950 951 SBP_DEBUG(1) 952 sbp_show_sdev_info(sdev, 2); 953 printf("sbp_mgm_callback\n"); 954 END_DEBUG 955 resp = xfer->resp; 956 sbp_xfer_free(xfer); 957 #if 0 958 if (resp != 0) { 959 sbp_show_sdev_info(sdev, 2); 960 printf("management ORB failed(%d) ... RESET_START\n", resp); 961 sbp_reset_start(sdev); 962 } 963 #endif 964 return; 965 } 966 967 static struct sbp_dev * 968 sbp_next_dev(struct sbp_target *target, int lun) 969 { 970 struct sbp_dev **sdevp; 971 int i; 972 973 for (i = lun, sdevp = &target->luns[lun]; i < target->num_lun; 974 i++, sdevp++) 975 if (*sdevp != NULL && (*sdevp)->status == SBP_DEV_PROBE) 976 return(*sdevp); 977 return(NULL); 978 } 979 980 #define SCAN_PRI 1 981 static void 982 sbp_cam_scan_lun(struct cam_periph *periph, union ccb *ccb) 983 { 984 struct sbp_target *target; 985 struct sbp_dev *sdev; 986 987 sdev = (struct sbp_dev *) ccb->ccb_h.ccb_sdev_ptr; 988 target = sdev->target; 989 SBP_DEBUG(0) 990 sbp_show_sdev_info(sdev, 2); 991 printf("sbp_cam_scan_lun\n"); 992 END_DEBUG 993 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) { 994 sdev->status = SBP_DEV_ATTACHED; 995 } else { 996 sbp_show_sdev_info(sdev, 2); 997 printf("scan failed\n"); 998 } 999 sdev = sbp_next_dev(target, sdev->lun_id + 1); 1000 if (sdev == NULL) { 1001 free(ccb, M_SBP); 1002 return; 1003 } 1004 /* reuse ccb */ 1005 xpt_setup_ccb(&ccb->ccb_h, sdev->path, SCAN_PRI); 1006 ccb->ccb_h.ccb_sdev_ptr = sdev; 1007 xpt_action(ccb); 1008 xpt_release_devq(sdev->path, sdev->freeze, TRUE); 1009 sdev->freeze = 1; 1010 } 1011 1012 static void 1013 sbp_cam_scan_target(void *arg) 1014 { 1015 struct sbp_target *target = (struct sbp_target *)arg; 1016 struct sbp_dev *sdev; 1017 union ccb *ccb; 1018 1019 sdev = sbp_next_dev(target, 0); 1020 if (sdev == NULL) { 1021 printf("sbp_cam_scan_target: nothing to do for target%d\n", 1022 target->target_id); 1023 return; 1024 } 1025 SBP_DEBUG(0) 1026 sbp_show_sdev_info(sdev, 2); 1027 printf("sbp_cam_scan_target\n"); 1028 END_DEBUG 1029 ccb = malloc(sizeof(union ccb), M_SBP, M_NOWAIT | M_ZERO); 1030 if (ccb == NULL) { 1031 printf("sbp_cam_scan_target: malloc failed\n"); 1032 return; 1033 } 1034 xpt_setup_ccb(&ccb->ccb_h, sdev->path, SCAN_PRI); 1035 ccb->ccb_h.func_code = XPT_SCAN_LUN; 1036 ccb->ccb_h.cbfcnp = sbp_cam_scan_lun; 1037 ccb->ccb_h.flags |= CAM_DEV_QFREEZE; 1038 ccb->crcn.flags = CAM_FLAG_NONE; 1039 ccb->ccb_h.ccb_sdev_ptr = sdev; 1040 1041 /* The scan is in progress now. */ 1042 xpt_action(ccb); 1043 xpt_release_devq(sdev->path, sdev->freeze, TRUE); 1044 sdev->freeze = 1; 1045 } 1046 1047 static __inline void 1048 sbp_scan_dev(struct sbp_dev *sdev) 1049 { 1050 sdev->status = SBP_DEV_PROBE; 1051 callout_reset(&sdev->target->scan_callout, scan_delay * hz / 1000, 1052 sbp_cam_scan_target, (void *)sdev->target); 1053 } 1054 1055 static void 1056 sbp_do_attach(struct fw_xfer *xfer) 1057 { 1058 struct sbp_dev *sdev; 1059 struct sbp_target *target; 1060 struct sbp_softc *sbp; 1061 1062 sdev = (struct sbp_dev *)xfer->sc; 1063 target = sdev->target; 1064 sbp = target->sbp; 1065 SBP_DEBUG(0) 1066 sbp_show_sdev_info(sdev, 2); 1067 printf("sbp_do_attach\n"); 1068 END_DEBUG 1069 sbp_xfer_free(xfer); 1070 1071 if (sdev->path == NULL) 1072 xpt_create_path(&sdev->path, xpt_periph, 1073 cam_sim_path(target->sbp->sim), 1074 target->target_id, sdev->lun_id); 1075 1076 /* 1077 * Let CAM scan the bus if we are in the boot process. 1078 * XXX xpt_scan_bus cannot detect LUN larger than 0 1079 * if LUN 0 doesn't exists. 1080 */ 1081 if (sbp_cold > 0) { 1082 sdev->status = SBP_DEV_ATTACHED; 1083 return; 1084 } 1085 1086 sbp_scan_dev(sdev); 1087 return; 1088 } 1089 1090 static void 1091 sbp_agent_reset_callback(struct fw_xfer *xfer) 1092 { 1093 struct sbp_dev *sdev; 1094 1095 sdev = (struct sbp_dev *)xfer->sc; 1096 SBP_DEBUG(1) 1097 sbp_show_sdev_info(sdev, 2); 1098 printf("%s\n", __func__); 1099 END_DEBUG 1100 if (xfer->resp != 0) { 1101 sbp_show_sdev_info(sdev, 2); 1102 printf("%s: resp=%d\n", __func__, xfer->resp); 1103 } 1104 1105 sbp_xfer_free(xfer); 1106 if (sdev->path) { 1107 xpt_release_devq(sdev->path, sdev->freeze, TRUE); 1108 sdev->freeze = 0; 1109 } 1110 } 1111 1112 static void 1113 sbp_agent_reset(struct sbp_dev *sdev) 1114 { 1115 struct fw_xfer *xfer; 1116 struct fw_pkt *fp; 1117 1118 SBP_DEBUG(0) 1119 sbp_show_sdev_info(sdev, 2); 1120 printf("sbp_agent_reset\n"); 1121 END_DEBUG 1122 xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0x04); 1123 if (xfer == NULL) 1124 return; 1125 if (sdev->status == SBP_DEV_ATTACHED || sdev->status == SBP_DEV_PROBE) 1126 xfer->act.hand = sbp_agent_reset_callback; 1127 else 1128 xfer->act.hand = sbp_do_attach; 1129 fp = &xfer->send.hdr; 1130 fp->mode.wreqq.data = htonl(0xf); 1131 fw_asyreq(xfer->fc, -1, xfer); 1132 sbp_abort_all_ocbs(sdev, CAM_BDR_SENT); 1133 } 1134 1135 static void 1136 sbp_busy_timeout_callback(struct fw_xfer *xfer) 1137 { 1138 struct sbp_dev *sdev; 1139 1140 sdev = (struct sbp_dev *)xfer->sc; 1141 SBP_DEBUG(1) 1142 sbp_show_sdev_info(sdev, 2); 1143 printf("sbp_busy_timeout_callback\n"); 1144 END_DEBUG 1145 sbp_xfer_free(xfer); 1146 sbp_agent_reset(sdev); 1147 } 1148 1149 static void 1150 sbp_busy_timeout(struct sbp_dev *sdev) 1151 { 1152 struct fw_pkt *fp; 1153 struct fw_xfer *xfer; 1154 SBP_DEBUG(0) 1155 sbp_show_sdev_info(sdev, 2); 1156 printf("sbp_busy_timeout\n"); 1157 END_DEBUG 1158 xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0); 1159 1160 xfer->act.hand = sbp_busy_timeout_callback; 1161 fp = &xfer->send.hdr; 1162 fp->mode.wreqq.dest_hi = 0xffff; 1163 fp->mode.wreqq.dest_lo = 0xf0000000 | BUSY_TIMEOUT; 1164 fp->mode.wreqq.data = htonl((1 << (13+12)) | 0xf); 1165 fw_asyreq(xfer->fc, -1, xfer); 1166 } 1167 1168 static void 1169 sbp_orb_pointer_callback(struct fw_xfer *xfer) 1170 { 1171 struct sbp_dev *sdev; 1172 sdev = (struct sbp_dev *)xfer->sc; 1173 1174 SBP_DEBUG(1) 1175 sbp_show_sdev_info(sdev, 2); 1176 printf("%s\n", __func__); 1177 END_DEBUG 1178 if (xfer->resp != 0) { 1179 /* XXX */ 1180 printf("%s: xfer->resp = %d\n", __func__, xfer->resp); 1181 } 1182 sbp_xfer_free(xfer); 1183 sdev->flags &= ~ORB_POINTER_ACTIVE; 1184 1185 if ((sdev->flags & ORB_POINTER_NEED) != 0) { 1186 struct sbp_ocb *ocb; 1187 1188 sdev->flags &= ~ORB_POINTER_NEED; 1189 ocb = STAILQ_FIRST(&sdev->ocbs); 1190 if (ocb != NULL) 1191 sbp_orb_pointer(sdev, ocb); 1192 } 1193 return; 1194 } 1195 1196 static void 1197 sbp_orb_pointer(struct sbp_dev *sdev, struct sbp_ocb *ocb) 1198 { 1199 struct fw_xfer *xfer; 1200 struct fw_pkt *fp; 1201 SBP_DEBUG(1) 1202 sbp_show_sdev_info(sdev, 2); 1203 printf("%s: 0x%08x\n", __func__, (uint32_t)ocb->bus_addr); 1204 END_DEBUG 1205 1206 if ((sdev->flags & ORB_POINTER_ACTIVE) != 0) { 1207 SBP_DEBUG(0) 1208 printf("%s: orb pointer active\n", __func__); 1209 END_DEBUG 1210 sdev->flags |= ORB_POINTER_NEED; 1211 return; 1212 } 1213 1214 sdev->flags |= ORB_POINTER_ACTIVE; 1215 xfer = sbp_write_cmd(sdev, FWTCODE_WREQB, 0x08); 1216 if (xfer == NULL) 1217 return; 1218 xfer->act.hand = sbp_orb_pointer_callback; 1219 1220 fp = &xfer->send.hdr; 1221 fp->mode.wreqb.len = 8; 1222 fp->mode.wreqb.extcode = 0; 1223 xfer->send.payload[0] = 1224 htonl(((sdev->target->sbp->fd.fc->nodeid | FWLOCALBUS )<< 16)); 1225 xfer->send.payload[1] = htonl((uint32_t)ocb->bus_addr); 1226 1227 if(fw_asyreq(xfer->fc, -1, xfer) != 0){ 1228 sbp_xfer_free(xfer); 1229 ocb->ccb->ccb_h.status = CAM_REQ_INVALID; 1230 xpt_done(ocb->ccb); 1231 } 1232 } 1233 1234 static void 1235 sbp_doorbell_callback(struct fw_xfer *xfer) 1236 { 1237 struct sbp_dev *sdev; 1238 sdev = (struct sbp_dev *)xfer->sc; 1239 1240 SBP_DEBUG(1) 1241 sbp_show_sdev_info(sdev, 2); 1242 printf("sbp_doorbell_callback\n"); 1243 END_DEBUG 1244 if (xfer->resp != 0) { 1245 /* XXX */ 1246 printf("%s: xfer->resp = %d\n", __func__, xfer->resp); 1247 } 1248 sbp_xfer_free(xfer); 1249 sdev->flags &= ~ORB_DOORBELL_ACTIVE; 1250 if ((sdev->flags & ORB_DOORBELL_NEED) != 0) { 1251 sdev->flags &= ~ORB_DOORBELL_NEED; 1252 sbp_doorbell(sdev); 1253 } 1254 return; 1255 } 1256 1257 static void 1258 sbp_doorbell(struct sbp_dev *sdev) 1259 { 1260 struct fw_xfer *xfer; 1261 struct fw_pkt *fp; 1262 SBP_DEBUG(1) 1263 sbp_show_sdev_info(sdev, 2); 1264 printf("sbp_doorbell\n"); 1265 END_DEBUG 1266 1267 if ((sdev->flags & ORB_DOORBELL_ACTIVE) != 0) { 1268 sdev->flags |= ORB_DOORBELL_NEED; 1269 return; 1270 } 1271 sdev->flags |= ORB_DOORBELL_ACTIVE; 1272 xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0x10); 1273 if (xfer == NULL) 1274 return; 1275 xfer->act.hand = sbp_doorbell_callback; 1276 fp = &xfer->send.hdr; 1277 fp->mode.wreqq.data = htonl(0xf); 1278 fw_asyreq(xfer->fc, -1, xfer); 1279 } 1280 1281 static struct fw_xfer * 1282 sbp_write_cmd(struct sbp_dev *sdev, int tcode, int offset) 1283 { 1284 struct fw_xfer *xfer; 1285 struct fw_pkt *fp; 1286 struct sbp_target *target; 1287 int s, new = 0; 1288 1289 target = sdev->target; 1290 s = splfw(); 1291 xfer = STAILQ_FIRST(&target->xferlist); 1292 if (xfer == NULL) { 1293 if (target->n_xfer > 5 /* XXX */) { 1294 printf("sbp: no more xfer for this target\n"); 1295 splx(s); 1296 return(NULL); 1297 } 1298 xfer = fw_xfer_alloc_buf(M_SBP, 8, 0); 1299 if(xfer == NULL){ 1300 printf("sbp: fw_xfer_alloc_buf failed\n"); 1301 splx(s); 1302 return NULL; 1303 } 1304 target->n_xfer ++; 1305 if (debug) 1306 printf("sbp: alloc %d xfer\n", target->n_xfer); 1307 new = 1; 1308 } else { 1309 STAILQ_REMOVE_HEAD(&target->xferlist, link); 1310 } 1311 splx(s); 1312 1313 microtime(&xfer->tv); 1314 1315 if (new) { 1316 xfer->recv.pay_len = 0; 1317 xfer->send.spd = min(sdev->target->fwdev->speed, max_speed); 1318 xfer->fc = sdev->target->sbp->fd.fc; 1319 xfer->retry_req = fw_asybusy; 1320 } 1321 1322 if (tcode == FWTCODE_WREQB) 1323 xfer->send.pay_len = 8; 1324 else 1325 xfer->send.pay_len = 0; 1326 1327 xfer->sc = (caddr_t)sdev; 1328 fp = &xfer->send.hdr; 1329 fp->mode.wreqq.dest_hi = sdev->login->cmd_hi; 1330 fp->mode.wreqq.dest_lo = sdev->login->cmd_lo + offset; 1331 fp->mode.wreqq.tlrt = 0; 1332 fp->mode.wreqq.tcode = tcode; 1333 fp->mode.wreqq.pri = 0; 1334 fp->mode.wreqq.dst = FWLOCALBUS | sdev->target->fwdev->dst; 1335 1336 return xfer; 1337 1338 } 1339 1340 static void 1341 sbp_mgm_orb(struct sbp_dev *sdev, int func, struct sbp_ocb *aocb) 1342 { 1343 struct fw_xfer *xfer; 1344 struct fw_pkt *fp; 1345 struct sbp_ocb *ocb; 1346 struct sbp_target *target; 1347 int s, nid; 1348 1349 target = sdev->target; 1350 nid = target->sbp->fd.fc->nodeid | FWLOCALBUS; 1351 1352 s = splfw(); 1353 if (func == ORB_FUN_RUNQUEUE) { 1354 ocb = STAILQ_FIRST(&target->mgm_ocb_queue); 1355 if (target->mgm_ocb_cur != NULL || ocb == NULL) { 1356 splx(s); 1357 return; 1358 } 1359 STAILQ_REMOVE_HEAD(&target->mgm_ocb_queue, ocb); 1360 goto start; 1361 } 1362 if ((ocb = sbp_get_ocb(sdev)) == NULL) { 1363 splx(s); 1364 /* XXX */ 1365 return; 1366 } 1367 ocb->flags = OCB_ACT_MGM; 1368 ocb->sdev = sdev; 1369 1370 bzero((void *)ocb->orb, sizeof(ocb->orb)); 1371 ocb->orb[6] = htonl((nid << 16) | SBP_BIND_HI); 1372 ocb->orb[7] = htonl(SBP_DEV2ADDR(target->target_id, sdev->lun_id)); 1373 1374 SBP_DEBUG(0) 1375 sbp_show_sdev_info(sdev, 2); 1376 printf("%s\n", orb_fun_name[(func>>16)&0xf]); 1377 END_DEBUG 1378 switch (func) { 1379 case ORB_FUN_LGI: 1380 ocb->orb[0] = ocb->orb[1] = 0; /* password */ 1381 ocb->orb[2] = htonl(nid << 16); 1382 ocb->orb[3] = htonl(sdev->dma.bus_addr); 1383 ocb->orb[4] = htonl(ORB_NOTIFY | sdev->lun_id); 1384 if (ex_login) 1385 ocb->orb[4] |= htonl(ORB_EXV); 1386 ocb->orb[5] = htonl(SBP_LOGIN_SIZE); 1387 fwdma_sync(&sdev->dma, BUS_DMASYNC_PREREAD); 1388 break; 1389 case ORB_FUN_ATA: 1390 ocb->orb[0] = htonl((0 << 16) | 0); 1391 ocb->orb[1] = htonl(aocb->bus_addr & 0xffffffff); 1392 /* fall through */ 1393 case ORB_FUN_RCN: 1394 case ORB_FUN_LGO: 1395 case ORB_FUN_LUR: 1396 case ORB_FUN_RST: 1397 case ORB_FUN_ATS: 1398 ocb->orb[4] = htonl(ORB_NOTIFY | func | sdev->login->id); 1399 break; 1400 } 1401 1402 if (target->mgm_ocb_cur != NULL) { 1403 /* there is a standing ORB */ 1404 STAILQ_INSERT_TAIL(&sdev->target->mgm_ocb_queue, ocb, ocb); 1405 splx(s); 1406 return; 1407 } 1408 start: 1409 target->mgm_ocb_cur = ocb; 1410 splx(s); 1411 1412 callout_reset(&target->mgm_ocb_timeout, 5*hz, 1413 sbp_mgm_timeout, (caddr_t)ocb); 1414 xfer = sbp_write_cmd(sdev, FWTCODE_WREQB, 0); 1415 if(xfer == NULL){ 1416 return; 1417 } 1418 xfer->act.hand = sbp_mgm_callback; 1419 1420 fp = &xfer->send.hdr; 1421 fp->mode.wreqb.dest_hi = sdev->target->mgm_hi; 1422 fp->mode.wreqb.dest_lo = sdev->target->mgm_lo; 1423 fp->mode.wreqb.len = 8; 1424 fp->mode.wreqb.extcode = 0; 1425 xfer->send.payload[0] = htonl(nid << 16); 1426 xfer->send.payload[1] = htonl(ocb->bus_addr & 0xffffffff); 1427 SBP_DEBUG(0) 1428 sbp_show_sdev_info(sdev, 2); 1429 printf("mgm orb: %08x\n", (uint32_t)ocb->bus_addr); 1430 END_DEBUG 1431 1432 fw_asyreq(xfer->fc, -1, xfer); 1433 } 1434 1435 static void 1436 sbp_print_scsi_cmd(struct sbp_ocb *ocb) 1437 { 1438 struct ccb_scsiio *csio; 1439 1440 csio = &ocb->ccb->csio; 1441 printf("%s:%d:%d XPT_SCSI_IO: " 1442 "cmd: %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x" 1443 ", flags: 0x%02x, " 1444 "%db cmd/%db data/%db sense\n", 1445 device_get_nameunit(ocb->sdev->target->sbp->fd.dev), 1446 ocb->ccb->ccb_h.target_id, ocb->ccb->ccb_h.target_lun, 1447 csio->cdb_io.cdb_bytes[0], 1448 csio->cdb_io.cdb_bytes[1], 1449 csio->cdb_io.cdb_bytes[2], 1450 csio->cdb_io.cdb_bytes[3], 1451 csio->cdb_io.cdb_bytes[4], 1452 csio->cdb_io.cdb_bytes[5], 1453 csio->cdb_io.cdb_bytes[6], 1454 csio->cdb_io.cdb_bytes[7], 1455 csio->cdb_io.cdb_bytes[8], 1456 csio->cdb_io.cdb_bytes[9], 1457 ocb->ccb->ccb_h.flags & CAM_DIR_MASK, 1458 csio->cdb_len, csio->dxfer_len, 1459 csio->sense_len); 1460 } 1461 1462 static void 1463 sbp_scsi_status(struct sbp_status *sbp_status, struct sbp_ocb *ocb) 1464 { 1465 struct sbp_cmd_status *sbp_cmd_status; 1466 struct scsi_sense_data *sense; 1467 1468 sbp_cmd_status = (struct sbp_cmd_status *)sbp_status->data; 1469 sense = &ocb->ccb->csio.sense_data; 1470 1471 SBP_DEBUG(0) 1472 sbp_print_scsi_cmd(ocb); 1473 /* XXX need decode status */ 1474 sbp_show_sdev_info(ocb->sdev, 2); 1475 printf("SCSI status %x sfmt %x valid %x key %x code %x qlfr %x len %d\n", 1476 sbp_cmd_status->status, 1477 sbp_cmd_status->sfmt, 1478 sbp_cmd_status->valid, 1479 sbp_cmd_status->s_key, 1480 sbp_cmd_status->s_code, 1481 sbp_cmd_status->s_qlfr, 1482 sbp_status->len 1483 ); 1484 END_DEBUG 1485 1486 switch (sbp_cmd_status->status) { 1487 case SCSI_STATUS_CHECK_COND: 1488 case SCSI_STATUS_BUSY: 1489 case SCSI_STATUS_CMD_TERMINATED: 1490 if(sbp_cmd_status->sfmt == SBP_SFMT_CURR){ 1491 sense->error_code = SSD_CURRENT_ERROR; 1492 }else{ 1493 sense->error_code = SSD_DEFERRED_ERROR; 1494 } 1495 if(sbp_cmd_status->valid) 1496 sense->error_code |= SSD_ERRCODE_VALID; 1497 sense->flags = sbp_cmd_status->s_key; 1498 if(sbp_cmd_status->mark) 1499 sense->flags |= SSD_FILEMARK; 1500 if(sbp_cmd_status->eom) 1501 sense->flags |= SSD_EOM; 1502 if(sbp_cmd_status->ill_len) 1503 sense->flags |= SSD_ILI; 1504 1505 bcopy(&sbp_cmd_status->info, &sense->info[0], 4); 1506 1507 if (sbp_status->len <= 1) 1508 /* XXX not scsi status. shouldn't be happened */ 1509 sense->extra_len = 0; 1510 else if (sbp_status->len <= 4) 1511 /* add_sense_code(_qual), info, cmd_spec_info */ 1512 sense->extra_len = 6; 1513 else 1514 /* fru, sense_key_spec */ 1515 sense->extra_len = 10; 1516 1517 bcopy(&sbp_cmd_status->cdb, &sense->cmd_spec_info[0], 4); 1518 1519 sense->add_sense_code = sbp_cmd_status->s_code; 1520 sense->add_sense_code_qual = sbp_cmd_status->s_qlfr; 1521 sense->fru = sbp_cmd_status->fru; 1522 1523 bcopy(&sbp_cmd_status->s_keydep[0], 1524 &sense->sense_key_spec[0], 3); 1525 1526 ocb->ccb->csio.scsi_status = sbp_cmd_status->status;; 1527 ocb->ccb->ccb_h.status = CAM_SCSI_STATUS_ERROR 1528 | CAM_AUTOSNS_VALID; 1529 /* 1530 { 1531 uint8_t j, *tmp; 1532 tmp = sense; 1533 for( j = 0 ; j < 32 ; j+=8){ 1534 printf("sense %02x%02x %02x%02x %02x%02x %02x%02x\n", 1535 tmp[j], tmp[j+1], tmp[j+2], tmp[j+3], 1536 tmp[j+4], tmp[j+5], tmp[j+6], tmp[j+7]); 1537 } 1538 1539 } 1540 */ 1541 break; 1542 default: 1543 sbp_show_sdev_info(ocb->sdev, 2); 1544 printf("sbp_scsi_status: unknown scsi status 0x%x\n", 1545 sbp_cmd_status->status); 1546 } 1547 } 1548 1549 static void 1550 sbp_fix_inq_data(struct sbp_ocb *ocb) 1551 { 1552 union ccb *ccb; 1553 struct sbp_dev *sdev; 1554 struct scsi_inquiry_data *inq; 1555 1556 ccb = ocb->ccb; 1557 sdev = ocb->sdev; 1558 1559 if (ccb->csio.cdb_io.cdb_bytes[1] & SI_EVPD) 1560 return; 1561 SBP_DEBUG(1) 1562 sbp_show_sdev_info(sdev, 2); 1563 printf("sbp_fix_inq_data\n"); 1564 END_DEBUG 1565 inq = (struct scsi_inquiry_data *) ccb->csio.data_ptr; 1566 switch (SID_TYPE(inq)) { 1567 case T_DIRECT: 1568 #if 0 1569 /* 1570 * XXX Convert Direct Access device to RBC. 1571 * I've never seen FireWire DA devices which support READ_6. 1572 */ 1573 if (SID_TYPE(inq) == T_DIRECT) 1574 inq->device |= T_RBC; /* T_DIRECT == 0 */ 1575 #endif 1576 /* fall through */ 1577 case T_RBC: 1578 /* 1579 * Override vendor/product/revision information. 1580 * Some devices sometimes return strange strings. 1581 */ 1582 #if 1 1583 bcopy(sdev->vendor, inq->vendor, sizeof(inq->vendor)); 1584 bcopy(sdev->product, inq->product, sizeof(inq->product)); 1585 bcopy(sdev->revision+2, inq->revision, sizeof(inq->revision)); 1586 #endif 1587 break; 1588 } 1589 /* 1590 * Force to enable/disable tagged queuing. 1591 * XXX CAM also checks SCP_QUEUE_DQUE flag in the control mode page. 1592 */ 1593 if (sbp_tags > 0) 1594 inq->flags |= SID_CmdQue; 1595 else if (sbp_tags < 0) 1596 inq->flags &= ~SID_CmdQue; 1597 1598 } 1599 1600 static void 1601 sbp_recv1(struct fw_xfer *xfer) 1602 { 1603 struct fw_pkt *rfp; 1604 #if NEED_RESPONSE 1605 struct fw_pkt *sfp; 1606 #endif 1607 struct sbp_softc *sbp; 1608 struct sbp_dev *sdev; 1609 struct sbp_ocb *ocb; 1610 struct sbp_login_res *login_res = NULL; 1611 struct sbp_status *sbp_status; 1612 struct sbp_target *target; 1613 int orb_fun, status_valid0, status_valid, t, l, reset_agent = 0; 1614 uint32_t addr; 1615 /* 1616 uint32_t *ld; 1617 ld = xfer->recv.buf; 1618 printf("sbp %x %d %d %08x %08x %08x %08x\n", 1619 xfer->resp, xfer->recv.len, xfer->recv.off, ntohl(ld[0]), ntohl(ld[1]), ntohl(ld[2]), ntohl(ld[3])); 1620 printf("sbp %08x %08x %08x %08x\n", ntohl(ld[4]), ntohl(ld[5]), ntohl(ld[6]), ntohl(ld[7])); 1621 printf("sbp %08x %08x %08x %08x\n", ntohl(ld[8]), ntohl(ld[9]), ntohl(ld[10]), ntohl(ld[11])); 1622 */ 1623 sbp = (struct sbp_softc *)xfer->sc; 1624 if (xfer->resp != 0){ 1625 printf("sbp_recv: xfer->resp = %d\n", xfer->resp); 1626 goto done0; 1627 } 1628 if (xfer->recv.payload == NULL){ 1629 printf("sbp_recv: xfer->recv.payload == NULL\n"); 1630 goto done0; 1631 } 1632 rfp = &xfer->recv.hdr; 1633 if(rfp->mode.wreqb.tcode != FWTCODE_WREQB){ 1634 printf("sbp_recv: tcode = %d\n", rfp->mode.wreqb.tcode); 1635 goto done0; 1636 } 1637 sbp_status = (struct sbp_status *)xfer->recv.payload; 1638 addr = rfp->mode.wreqb.dest_lo; 1639 SBP_DEBUG(2) 1640 printf("received address 0x%x\n", addr); 1641 END_DEBUG 1642 t = SBP_ADDR2TRG(addr); 1643 if (t >= SBP_NUM_TARGETS) { 1644 device_printf(sbp->fd.dev, 1645 "sbp_recv1: invalid target %d\n", t); 1646 goto done0; 1647 } 1648 target = &sbp->targets[t]; 1649 l = SBP_ADDR2LUN(addr); 1650 if (l >= target->num_lun || target->luns[l] == NULL) { 1651 device_printf(sbp->fd.dev, 1652 "sbp_recv1: invalid lun %d (target=%d)\n", l, t); 1653 goto done0; 1654 } 1655 sdev = target->luns[l]; 1656 1657 ocb = NULL; 1658 switch (sbp_status->src) { 1659 case 0: 1660 case 1: 1661 /* check mgm_ocb_cur first */ 1662 ocb = target->mgm_ocb_cur; 1663 if (ocb != NULL) { 1664 if (OCB_MATCH(ocb, sbp_status)) { 1665 callout_stop(&target->mgm_ocb_timeout); 1666 target->mgm_ocb_cur = NULL; 1667 break; 1668 } 1669 } 1670 ocb = sbp_dequeue_ocb(sdev, sbp_status); 1671 if (ocb == NULL) { 1672 sbp_show_sdev_info(sdev, 2); 1673 #if defined(__DragonFly__) || __FreeBSD_version < 500000 1674 printf("No ocb(%lx) on the queue\n", 1675 #else 1676 printf("No ocb(%x) on the queue\n", 1677 #endif 1678 ntohl(sbp_status->orb_lo)); 1679 } 1680 break; 1681 case 2: 1682 /* unsolicit */ 1683 sbp_show_sdev_info(sdev, 2); 1684 printf("unsolicit status received\n"); 1685 break; 1686 default: 1687 sbp_show_sdev_info(sdev, 2); 1688 printf("unknown sbp_status->src\n"); 1689 } 1690 1691 status_valid0 = (sbp_status->src < 2 1692 && sbp_status->resp == ORB_RES_CMPL 1693 && sbp_status->dead == 0); 1694 status_valid = (status_valid0 && sbp_status->status == 0); 1695 1696 if (!status_valid0 || debug > 2){ 1697 int status; 1698 SBP_DEBUG(0) 1699 sbp_show_sdev_info(sdev, 2); 1700 printf("ORB status src:%x resp:%x dead:%x" 1701 #if defined(__DragonFly__) || __FreeBSD_version < 500000 1702 " len:%x stat:%x orb:%x%08lx\n", 1703 #else 1704 " len:%x stat:%x orb:%x%08x\n", 1705 #endif 1706 sbp_status->src, sbp_status->resp, sbp_status->dead, 1707 sbp_status->len, sbp_status->status, 1708 ntohs(sbp_status->orb_hi), ntohl(sbp_status->orb_lo)); 1709 END_DEBUG 1710 sbp_show_sdev_info(sdev, 2); 1711 status = sbp_status->status; 1712 switch(sbp_status->resp) { 1713 case 0: 1714 if (status > MAX_ORB_STATUS0) 1715 printf("%s\n", orb_status0[MAX_ORB_STATUS0]); 1716 else 1717 printf("%s\n", orb_status0[status]); 1718 break; 1719 case 1: 1720 printf("Obj: %s, Error: %s\n", 1721 orb_status1_object[(status>>6) & 3], 1722 orb_status1_serial_bus_error[status & 0xf]); 1723 break; 1724 case 2: 1725 printf("Illegal request\n"); 1726 break; 1727 case 3: 1728 printf("Vendor dependent\n"); 1729 break; 1730 default: 1731 printf("unknown respose code %d\n", sbp_status->resp); 1732 } 1733 } 1734 1735 /* we have to reset the fetch agent if it's dead */ 1736 if (sbp_status->dead) { 1737 if (sdev->path) { 1738 xpt_freeze_devq(sdev->path, 1); 1739 sdev->freeze ++; 1740 } 1741 reset_agent = 1; 1742 } 1743 1744 if (ocb == NULL) 1745 goto done; 1746 1747 switch(ntohl(ocb->orb[4]) & ORB_FMT_MSK){ 1748 case ORB_FMT_NOP: 1749 break; 1750 case ORB_FMT_VED: 1751 break; 1752 case ORB_FMT_STD: 1753 switch(ocb->flags) { 1754 case OCB_ACT_MGM: 1755 orb_fun = ntohl(ocb->orb[4]) & ORB_FUN_MSK; 1756 reset_agent = 0; 1757 switch(orb_fun) { 1758 case ORB_FUN_LGI: 1759 fwdma_sync(&sdev->dma, BUS_DMASYNC_POSTREAD); 1760 login_res = sdev->login; 1761 login_res->len = ntohs(login_res->len); 1762 login_res->id = ntohs(login_res->id); 1763 login_res->cmd_hi = ntohs(login_res->cmd_hi); 1764 login_res->cmd_lo = ntohl(login_res->cmd_lo); 1765 if (status_valid) { 1766 SBP_DEBUG(0) 1767 sbp_show_sdev_info(sdev, 2); 1768 printf("login: len %d, ID %d, cmd %08x%08x, recon_hold %d\n", login_res->len, login_res->id, login_res->cmd_hi, login_res->cmd_lo, ntohs(login_res->recon_hold)); 1769 END_DEBUG 1770 sbp_busy_timeout(sdev); 1771 } else { 1772 /* forgot logout? */ 1773 sbp_show_sdev_info(sdev, 2); 1774 printf("login failed\n"); 1775 sdev->status = SBP_DEV_RESET; 1776 } 1777 break; 1778 case ORB_FUN_RCN: 1779 login_res = sdev->login; 1780 if (status_valid) { 1781 SBP_DEBUG(0) 1782 sbp_show_sdev_info(sdev, 2); 1783 printf("reconnect: len %d, ID %d, cmd %08x%08x\n", login_res->len, login_res->id, login_res->cmd_hi, login_res->cmd_lo); 1784 END_DEBUG 1785 #if 1 1786 if (sdev->status == SBP_DEV_ATTACHED) 1787 sbp_scan_dev(sdev); 1788 else 1789 sbp_agent_reset(sdev); 1790 #else 1791 sdev->status = SBP_DEV_ATTACHED; 1792 sbp_mgm_orb(sdev, ORB_FUN_ATS, NULL); 1793 #endif 1794 } else { 1795 /* reconnection hold time exceed? */ 1796 SBP_DEBUG(0) 1797 sbp_show_sdev_info(sdev, 2); 1798 printf("reconnect failed\n"); 1799 END_DEBUG 1800 sbp_login(sdev); 1801 } 1802 break; 1803 case ORB_FUN_LGO: 1804 sdev->status = SBP_DEV_RESET; 1805 break; 1806 case ORB_FUN_RST: 1807 sbp_busy_timeout(sdev); 1808 break; 1809 case ORB_FUN_LUR: 1810 case ORB_FUN_ATA: 1811 case ORB_FUN_ATS: 1812 sbp_agent_reset(sdev); 1813 break; 1814 default: 1815 sbp_show_sdev_info(sdev, 2); 1816 printf("unknown function %d\n", orb_fun); 1817 break; 1818 } 1819 sbp_mgm_orb(sdev, ORB_FUN_RUNQUEUE, NULL); 1820 break; 1821 case OCB_ACT_CMD: 1822 sdev->timeout = 0; 1823 if(ocb->ccb != NULL){ 1824 union ccb *ccb; 1825 /* 1826 uint32_t *ld; 1827 ld = ocb->ccb->csio.data_ptr; 1828 if(ld != NULL && ocb->ccb->csio.dxfer_len != 0) 1829 printf("ptr %08x %08x %08x %08x\n", ld[0], ld[1], ld[2], ld[3]); 1830 else 1831 printf("ptr NULL\n"); 1832 printf("len %d\n", sbp_status->len); 1833 */ 1834 ccb = ocb->ccb; 1835 if(sbp_status->len > 1){ 1836 sbp_scsi_status(sbp_status, ocb); 1837 }else{ 1838 if(sbp_status->resp != ORB_RES_CMPL){ 1839 ccb->ccb_h.status = CAM_REQ_CMP_ERR; 1840 }else{ 1841 ccb->ccb_h.status = CAM_REQ_CMP; 1842 } 1843 } 1844 /* fix up inq data */ 1845 if (ccb->csio.cdb_io.cdb_bytes[0] == INQUIRY) 1846 sbp_fix_inq_data(ocb); 1847 xpt_done(ccb); 1848 } 1849 break; 1850 default: 1851 break; 1852 } 1853 } 1854 1855 if (!use_doorbell) 1856 sbp_free_ocb(sdev, ocb); 1857 done: 1858 if (reset_agent) 1859 sbp_agent_reset(sdev); 1860 1861 done0: 1862 xfer->recv.pay_len = SBP_RECV_LEN; 1863 /* The received packet is usually small enough to be stored within 1864 * the buffer. In that case, the controller return ack_complete and 1865 * no respose is necessary. 1866 * 1867 * XXX fwohci.c and firewire.c should inform event_code such as 1868 * ack_complete or ack_pending to upper driver. 1869 */ 1870 #if NEED_RESPONSE 1871 xfer->send.off = 0; 1872 sfp = (struct fw_pkt *)xfer->send.buf; 1873 sfp->mode.wres.dst = rfp->mode.wreqb.src; 1874 xfer->dst = sfp->mode.wres.dst; 1875 xfer->spd = min(sdev->target->fwdev->speed, max_speed); 1876 xfer->act.hand = sbp_loginres_callback; 1877 xfer->retry_req = fw_asybusy; 1878 1879 sfp->mode.wres.tlrt = rfp->mode.wreqb.tlrt; 1880 sfp->mode.wres.tcode = FWTCODE_WRES; 1881 sfp->mode.wres.rtcode = 0; 1882 sfp->mode.wres.pri = 0; 1883 1884 fw_asyreq(xfer->fc, -1, xfer); 1885 #else 1886 /* recycle */ 1887 STAILQ_INSERT_TAIL(&sbp->fwb.xferlist, xfer, link); 1888 #endif 1889 1890 return; 1891 1892 } 1893 1894 static void 1895 sbp_recv(struct fw_xfer *xfer) 1896 { 1897 int s; 1898 1899 s = splcam(); 1900 sbp_recv1(xfer); 1901 splx(s); 1902 } 1903 /* 1904 * sbp_attach() 1905 */ 1906 static int 1907 sbp_attach(device_t dev) 1908 { 1909 struct sbp_softc *sbp; 1910 struct cam_devq *devq; 1911 struct fw_xfer *xfer; 1912 int i, s, error; 1913 1914 SBP_DEBUG(0) 1915 printf("sbp_attach (cold=%d)\n", cold); 1916 END_DEBUG 1917 1918 if (cold) 1919 sbp_cold ++; 1920 sbp = ((struct sbp_softc *)device_get_softc(dev)); 1921 bzero(sbp, sizeof(struct sbp_softc)); 1922 sbp->fd.dev = dev; 1923 sbp->fd.fc = device_get_ivars(dev); 1924 1925 if (max_speed < 0) 1926 max_speed = sbp->fd.fc->speed; 1927 1928 error = bus_dma_tag_create(/*parent*/sbp->fd.fc->dmat, 1929 /* XXX shoud be 4 for sane backend? */ 1930 /*alignment*/1, 1931 /*boundary*/0, 1932 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT, 1933 /*highaddr*/BUS_SPACE_MAXADDR, 1934 /*filter*/NULL, /*filterarg*/NULL, 1935 /*maxsize*/0x100000, /*nsegments*/SBP_IND_MAX, 1936 /*maxsegsz*/SBP_SEG_MAX, 1937 /*flags*/BUS_DMA_ALLOCNOW, 1938 #if defined(__FreeBSD__) && __FreeBSD_version >= 501102 1939 /*lockfunc*/busdma_lock_mutex, 1940 /*lockarg*/&Giant, 1941 #endif 1942 &sbp->dmat); 1943 if (error != 0) { 1944 printf("sbp_attach: Could not allocate DMA tag " 1945 "- error %d\n", error); 1946 return (ENOMEM); 1947 } 1948 1949 devq = cam_simq_alloc(/*maxopenings*/SBP_NUM_OCB); 1950 if (devq == NULL) 1951 return (ENXIO); 1952 1953 for( i = 0 ; i < SBP_NUM_TARGETS ; i++){ 1954 sbp->targets[i].fwdev = NULL; 1955 sbp->targets[i].luns = NULL; 1956 } 1957 1958 sbp->sim = cam_sim_alloc(sbp_action, sbp_poll, "sbp", sbp, 1959 device_get_unit(dev), 1960 /*untagged*/ 1, 1961 /*tagged*/ SBP_QUEUE_LEN - 1, 1962 devq); 1963 1964 if (sbp->sim == NULL) { 1965 cam_simq_free(devq); 1966 return (ENXIO); 1967 } 1968 1969 1970 if (xpt_bus_register(sbp->sim, /*bus*/0) != CAM_SUCCESS) 1971 goto fail; 1972 1973 if (xpt_create_path(&sbp->path, xpt_periph, cam_sim_path(sbp->sim), 1974 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP) { 1975 xpt_bus_deregister(cam_sim_path(sbp->sim)); 1976 goto fail; 1977 } 1978 1979 /* We reserve 16 bit space (4 bytes X 64 targets X 256 luns) */ 1980 sbp->fwb.start = ((u_int64_t)SBP_BIND_HI << 32) | SBP_DEV2ADDR(0, 0); 1981 sbp->fwb.end = sbp->fwb.start + 0xffff; 1982 sbp->fwb.act_type = FWACT_XFER; 1983 /* pre-allocate xfer */ 1984 STAILQ_INIT(&sbp->fwb.xferlist); 1985 for (i = 0; i < SBP_NUM_OCB/2; i ++) { 1986 xfer = fw_xfer_alloc_buf(M_SBP, 1987 /* send */0, 1988 /* recv */SBP_RECV_LEN); 1989 xfer->act.hand = sbp_recv; 1990 #if NEED_RESPONSE 1991 xfer->fc = sbp->fd.fc; 1992 #endif 1993 xfer->sc = (caddr_t)sbp; 1994 STAILQ_INSERT_TAIL(&sbp->fwb.xferlist, xfer, link); 1995 } 1996 fw_bindadd(sbp->fd.fc, &sbp->fwb); 1997 1998 sbp->fd.post_busreset = sbp_post_busreset; 1999 sbp->fd.post_explore = sbp_post_explore; 2000 2001 if (sbp->fd.fc->status != -1) { 2002 s = splfw(); 2003 sbp_post_busreset((void *)sbp); 2004 sbp_post_explore((void *)sbp); 2005 splx(s); 2006 } 2007 xpt_async(AC_BUS_RESET, sbp->path, /*arg*/ NULL); 2008 2009 return (0); 2010 fail: 2011 cam_sim_free(sbp->sim, /*free_devq*/TRUE); 2012 return (ENXIO); 2013 } 2014 2015 static int 2016 sbp_logout_all(struct sbp_softc *sbp) 2017 { 2018 struct sbp_target *target; 2019 struct sbp_dev *sdev; 2020 int i, j; 2021 2022 SBP_DEBUG(0) 2023 printf("sbp_logout_all\n"); 2024 END_DEBUG 2025 for (i = 0 ; i < SBP_NUM_TARGETS ; i ++) { 2026 target = &sbp->targets[i]; 2027 if (target->luns == NULL) 2028 continue; 2029 for (j = 0; j < target->num_lun; j++) { 2030 sdev = target->luns[j]; 2031 if (sdev == NULL) 2032 continue; 2033 callout_stop(&sdev->login_callout); 2034 if (sdev->status >= SBP_DEV_TOATTACH && 2035 sdev->status <= SBP_DEV_ATTACHED) 2036 sbp_mgm_orb(sdev, ORB_FUN_LGO, NULL); 2037 } 2038 } 2039 2040 return 0; 2041 } 2042 2043 static int 2044 sbp_shutdown(device_t dev) 2045 { 2046 struct sbp_softc *sbp = ((struct sbp_softc *)device_get_softc(dev)); 2047 2048 sbp_logout_all(sbp); 2049 return (0); 2050 } 2051 2052 static void 2053 sbp_free_sdev(struct sbp_dev *sdev) 2054 { 2055 int i; 2056 2057 if (sdev == NULL) 2058 return; 2059 for (i = 0; i < SBP_QUEUE_LEN; i++) 2060 bus_dmamap_destroy(sdev->target->sbp->dmat, 2061 sdev->ocb[i].dmamap); 2062 fwdma_free(sdev->target->sbp->fd.fc, &sdev->dma); 2063 free(sdev, M_SBP); 2064 } 2065 2066 static void 2067 sbp_free_target(struct sbp_target *target) 2068 { 2069 struct sbp_softc *sbp; 2070 struct fw_xfer *xfer, *next; 2071 int i; 2072 2073 if (target->luns == NULL) 2074 return; 2075 callout_stop(&target->mgm_ocb_timeout); 2076 sbp = target->sbp; 2077 for (i = 0; i < target->num_lun; i++) 2078 sbp_free_sdev(target->luns[i]); 2079 2080 for (xfer = STAILQ_FIRST(&target->xferlist); 2081 xfer != NULL; xfer = next) { 2082 next = STAILQ_NEXT(xfer, link); 2083 fw_xfer_free_buf(xfer); 2084 } 2085 STAILQ_INIT(&target->xferlist); 2086 free(target->luns, M_SBP); 2087 target->num_lun = 0;; 2088 target->luns = NULL; 2089 target->fwdev = NULL; 2090 } 2091 2092 static int 2093 sbp_detach(device_t dev) 2094 { 2095 struct sbp_softc *sbp = ((struct sbp_softc *)device_get_softc(dev)); 2096 struct firewire_comm *fc = sbp->fd.fc; 2097 struct fw_xfer *xfer, *next; 2098 int i; 2099 2100 SBP_DEBUG(0) 2101 printf("sbp_detach\n"); 2102 END_DEBUG 2103 2104 for (i = 0; i < SBP_NUM_TARGETS; i ++) 2105 sbp_cam_detach_target(&sbp->targets[i]); 2106 xpt_async(AC_LOST_DEVICE, sbp->path, NULL); 2107 xpt_free_path(sbp->path); 2108 xpt_bus_deregister(cam_sim_path(sbp->sim)); 2109 cam_sim_free(sbp->sim, /*free_devq*/ TRUE), 2110 2111 sbp_logout_all(sbp); 2112 2113 /* XXX wait for logout completion */ 2114 tsleep(&i, FWPRI, "sbpdtc", hz/2); 2115 2116 for (i = 0 ; i < SBP_NUM_TARGETS ; i ++) 2117 sbp_free_target(&sbp->targets[i]); 2118 2119 for (xfer = STAILQ_FIRST(&sbp->fwb.xferlist); 2120 xfer != NULL; xfer = next) { 2121 next = STAILQ_NEXT(xfer, link); 2122 fw_xfer_free_buf(xfer); 2123 } 2124 STAILQ_INIT(&sbp->fwb.xferlist); 2125 fw_bindremove(fc, &sbp->fwb); 2126 2127 bus_dma_tag_destroy(sbp->dmat); 2128 2129 return (0); 2130 } 2131 2132 static void 2133 sbp_cam_detach_sdev(struct sbp_dev *sdev) 2134 { 2135 if (sdev == NULL) 2136 return; 2137 if (sdev->status == SBP_DEV_DEAD) 2138 return; 2139 if (sdev->status == SBP_DEV_RESET) 2140 return; 2141 if (sdev->path) { 2142 xpt_release_devq(sdev->path, 2143 sdev->freeze, TRUE); 2144 sdev->freeze = 0; 2145 xpt_async(AC_LOST_DEVICE, sdev->path, NULL); 2146 xpt_free_path(sdev->path); 2147 sdev->path = NULL; 2148 } 2149 sbp_abort_all_ocbs(sdev, CAM_DEV_NOT_THERE); 2150 } 2151 2152 static void 2153 sbp_cam_detach_target(struct sbp_target *target) 2154 { 2155 int i; 2156 2157 if (target->luns != NULL) { 2158 SBP_DEBUG(0) 2159 printf("sbp_detach_target %d\n", target->target_id); 2160 END_DEBUG 2161 callout_stop(&target->scan_callout); 2162 for (i = 0; i < target->num_lun; i++) 2163 sbp_cam_detach_sdev(target->luns[i]); 2164 } 2165 } 2166 2167 static void 2168 sbp_target_reset(struct sbp_dev *sdev, int method) 2169 { 2170 int i; 2171 struct sbp_target *target = sdev->target; 2172 struct sbp_dev *tsdev; 2173 2174 for (i = 0; i < target->num_lun; i++) { 2175 tsdev = target->luns[i]; 2176 if (tsdev == NULL) 2177 continue; 2178 if (tsdev->status == SBP_DEV_DEAD) 2179 continue; 2180 if (tsdev->status == SBP_DEV_RESET) 2181 continue; 2182 xpt_freeze_devq(tsdev->path, 1); 2183 tsdev->freeze ++; 2184 sbp_abort_all_ocbs(tsdev, CAM_CMD_TIMEOUT); 2185 if (method == 2) 2186 tsdev->status = SBP_DEV_LOGIN; 2187 } 2188 switch(method) { 2189 case 1: 2190 printf("target reset\n"); 2191 sbp_mgm_orb(sdev, ORB_FUN_RST, NULL); 2192 break; 2193 case 2: 2194 printf("reset start\n"); 2195 sbp_reset_start(sdev); 2196 break; 2197 } 2198 2199 } 2200 2201 static void 2202 sbp_mgm_timeout(void *arg) 2203 { 2204 struct sbp_ocb *ocb = (struct sbp_ocb *)arg; 2205 struct sbp_dev *sdev = ocb->sdev; 2206 struct sbp_target *target = sdev->target; 2207 2208 sbp_show_sdev_info(sdev, 2); 2209 printf("request timeout(mgm orb:0x%08x) ... ", 2210 (uint32_t)ocb->bus_addr); 2211 target->mgm_ocb_cur = NULL; 2212 sbp_free_ocb(sdev, ocb); 2213 #if 0 2214 /* XXX */ 2215 printf("run next request\n"); 2216 sbp_mgm_orb(sdev, ORB_FUN_RUNQUEUE, NULL); 2217 #endif 2218 #if 1 2219 printf("reset start\n"); 2220 sbp_reset_start(sdev); 2221 #endif 2222 } 2223 2224 static void 2225 sbp_timeout(void *arg) 2226 { 2227 struct sbp_ocb *ocb = (struct sbp_ocb *)arg; 2228 struct sbp_dev *sdev = ocb->sdev; 2229 2230 sbp_show_sdev_info(sdev, 2); 2231 printf("request timeout(cmd orb:0x%08x) ... ", 2232 (uint32_t)ocb->bus_addr); 2233 2234 sdev->timeout ++; 2235 switch(sdev->timeout) { 2236 case 1: 2237 printf("agent reset\n"); 2238 xpt_freeze_devq(sdev->path, 1); 2239 sdev->freeze ++; 2240 sbp_abort_all_ocbs(sdev, CAM_CMD_TIMEOUT); 2241 sbp_agent_reset(sdev); 2242 break; 2243 case 2: 2244 case 3: 2245 sbp_target_reset(sdev, sdev->timeout - 1); 2246 break; 2247 #if 0 2248 default: 2249 /* XXX give up */ 2250 sbp_cam_detach_target(target); 2251 if (target->luns != NULL) 2252 free(target->luns, M_SBP); 2253 target->num_lun = 0;; 2254 target->luns = NULL; 2255 target->fwdev = NULL; 2256 #endif 2257 } 2258 } 2259 2260 static void 2261 sbp_action1(struct cam_sim *sim, union ccb *ccb) 2262 { 2263 2264 struct sbp_softc *sbp = (struct sbp_softc *)sim->softc; 2265 struct sbp_target *target = NULL; 2266 struct sbp_dev *sdev = NULL; 2267 2268 /* target:lun -> sdev mapping */ 2269 if (sbp != NULL 2270 && ccb->ccb_h.target_id != CAM_TARGET_WILDCARD 2271 && ccb->ccb_h.target_id < SBP_NUM_TARGETS) { 2272 target = &sbp->targets[ccb->ccb_h.target_id]; 2273 if (target->fwdev != NULL 2274 && ccb->ccb_h.target_lun != CAM_LUN_WILDCARD 2275 && ccb->ccb_h.target_lun < target->num_lun) { 2276 sdev = target->luns[ccb->ccb_h.target_lun]; 2277 if (sdev != NULL && sdev->status != SBP_DEV_ATTACHED && 2278 sdev->status != SBP_DEV_PROBE) 2279 sdev = NULL; 2280 } 2281 } 2282 2283 SBP_DEBUG(1) 2284 if (sdev == NULL) 2285 printf("invalid target %d lun %d\n", 2286 ccb->ccb_h.target_id, ccb->ccb_h.target_lun); 2287 END_DEBUG 2288 2289 switch (ccb->ccb_h.func_code) { 2290 case XPT_SCSI_IO: 2291 case XPT_RESET_DEV: 2292 case XPT_GET_TRAN_SETTINGS: 2293 case XPT_SET_TRAN_SETTINGS: 2294 case XPT_CALC_GEOMETRY: 2295 if (sdev == NULL) { 2296 SBP_DEBUG(1) 2297 printf("%s:%d:%d:func_code 0x%04x: " 2298 "Invalid target (target needed)\n", 2299 device_get_nameunit(sbp->fd.dev), 2300 ccb->ccb_h.target_id, ccb->ccb_h.target_lun, 2301 ccb->ccb_h.func_code); 2302 END_DEBUG 2303 2304 ccb->ccb_h.status = CAM_DEV_NOT_THERE; 2305 xpt_done(ccb); 2306 return; 2307 } 2308 break; 2309 case XPT_PATH_INQ: 2310 case XPT_NOOP: 2311 /* The opcodes sometimes aimed at a target (sc is valid), 2312 * sometimes aimed at the SIM (sc is invalid and target is 2313 * CAM_TARGET_WILDCARD) 2314 */ 2315 if (sbp == NULL && 2316 ccb->ccb_h.target_id != CAM_TARGET_WILDCARD) { 2317 SBP_DEBUG(0) 2318 printf("%s:%d:%d func_code 0x%04x: " 2319 "Invalid target (no wildcard)\n", 2320 device_get_nameunit(sbp->fd.dev), 2321 ccb->ccb_h.target_id, ccb->ccb_h.target_lun, 2322 ccb->ccb_h.func_code); 2323 END_DEBUG 2324 ccb->ccb_h.status = CAM_DEV_NOT_THERE; 2325 xpt_done(ccb); 2326 return; 2327 } 2328 break; 2329 default: 2330 /* XXX Hm, we should check the input parameters */ 2331 break; 2332 } 2333 2334 switch (ccb->ccb_h.func_code) { 2335 case XPT_SCSI_IO: 2336 { 2337 struct ccb_scsiio *csio; 2338 struct sbp_ocb *ocb; 2339 int speed; 2340 void *cdb; 2341 2342 csio = &ccb->csio; 2343 2344 SBP_DEBUG(2) 2345 printf("%s:%d:%d XPT_SCSI_IO: " 2346 "cmd: %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x" 2347 ", flags: 0x%02x, " 2348 "%db cmd/%db data/%db sense\n", 2349 device_get_nameunit(sbp->fd.dev), 2350 ccb->ccb_h.target_id, ccb->ccb_h.target_lun, 2351 csio->cdb_io.cdb_bytes[0], 2352 csio->cdb_io.cdb_bytes[1], 2353 csio->cdb_io.cdb_bytes[2], 2354 csio->cdb_io.cdb_bytes[3], 2355 csio->cdb_io.cdb_bytes[4], 2356 csio->cdb_io.cdb_bytes[5], 2357 csio->cdb_io.cdb_bytes[6], 2358 csio->cdb_io.cdb_bytes[7], 2359 csio->cdb_io.cdb_bytes[8], 2360 csio->cdb_io.cdb_bytes[9], 2361 ccb->ccb_h.flags & CAM_DIR_MASK, 2362 csio->cdb_len, csio->dxfer_len, 2363 csio->sense_len); 2364 END_DEBUG 2365 if(sdev == NULL){ 2366 ccb->ccb_h.status = CAM_DEV_NOT_THERE; 2367 xpt_done(ccb); 2368 return; 2369 } 2370 #if 0 2371 /* if we are in probe stage, pass only probe commands */ 2372 if (sdev->status == SBP_DEV_PROBE) { 2373 char *name; 2374 name = xpt_path_periph(ccb->ccb_h.path)->periph_name; 2375 printf("probe stage, periph name: %s\n", name); 2376 if (strcmp(name, "probe") != 0) { 2377 ccb->ccb_h.status = CAM_REQUEUE_REQ; 2378 xpt_done(ccb); 2379 return; 2380 } 2381 } 2382 #endif 2383 if ((ocb = sbp_get_ocb(sdev)) == NULL) { 2384 ccb->ccb_h.status = CAM_REQUEUE_REQ; 2385 if (sdev->freeze == 0) { 2386 xpt_freeze_devq(sdev->path, 1); 2387 sdev->freeze ++; 2388 } 2389 xpt_done(ccb); 2390 return; 2391 } 2392 2393 ocb->flags = OCB_ACT_CMD; 2394 ocb->sdev = sdev; 2395 ocb->ccb = ccb; 2396 ccb->ccb_h.ccb_sdev_ptr = sdev; 2397 ocb->orb[0] = htonl(1 << 31); 2398 ocb->orb[1] = 0; 2399 ocb->orb[2] = htonl(((sbp->fd.fc->nodeid | FWLOCALBUS )<< 16) ); 2400 ocb->orb[3] = htonl(ocb->bus_addr + IND_PTR_OFFSET); 2401 speed = min(target->fwdev->speed, max_speed); 2402 ocb->orb[4] = htonl(ORB_NOTIFY | ORB_CMD_SPD(speed) 2403 | ORB_CMD_MAXP(speed + 7)); 2404 if((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN){ 2405 ocb->orb[4] |= htonl(ORB_CMD_IN); 2406 } 2407 2408 if (csio->ccb_h.flags & CAM_SCATTER_VALID) 2409 printf("sbp: CAM_SCATTER_VALID\n"); 2410 if (csio->ccb_h.flags & CAM_DATA_PHYS) 2411 printf("sbp: CAM_DATA_PHYS\n"); 2412 2413 if (csio->ccb_h.flags & CAM_CDB_POINTER) 2414 cdb = (void *)csio->cdb_io.cdb_ptr; 2415 else 2416 cdb = (void *)&csio->cdb_io.cdb_bytes; 2417 bcopy(cdb, (void *)&ocb->orb[5], csio->cdb_len); 2418 /* 2419 printf("ORB %08x %08x %08x %08x\n", ntohl(ocb->orb[0]), ntohl(ocb->orb[1]), ntohl(ocb->orb[2]), ntohl(ocb->orb[3])); 2420 printf("ORB %08x %08x %08x %08x\n", ntohl(ocb->orb[4]), ntohl(ocb->orb[5]), ntohl(ocb->orb[6]), ntohl(ocb->orb[7])); 2421 */ 2422 if (ccb->csio.dxfer_len > 0) { 2423 int s, error; 2424 2425 s = splsoftvm(); 2426 error = bus_dmamap_load(/*dma tag*/sbp->dmat, 2427 /*dma map*/ocb->dmamap, 2428 ccb->csio.data_ptr, 2429 ccb->csio.dxfer_len, 2430 sbp_execute_ocb, 2431 ocb, 2432 /*flags*/0); 2433 splx(s); 2434 if (error) 2435 printf("sbp: bus_dmamap_load error %d\n", error); 2436 } else 2437 sbp_execute_ocb(ocb, NULL, 0, 0); 2438 break; 2439 } 2440 case XPT_CALC_GEOMETRY: 2441 { 2442 struct ccb_calc_geometry *ccg; 2443 #if defined(__DragonFly__) || __FreeBSD_version < 501100 2444 uint32_t size_mb; 2445 uint32_t secs_per_cylinder; 2446 int extended = 1; 2447 #endif 2448 2449 ccg = &ccb->ccg; 2450 if (ccg->block_size == 0) { 2451 printf("sbp_action1: block_size is 0.\n"); 2452 ccb->ccb_h.status = CAM_REQ_INVALID; 2453 xpt_done(ccb); 2454 break; 2455 } 2456 SBP_DEBUG(1) 2457 printf("%s:%d:%d:%d:XPT_CALC_GEOMETRY: " 2458 #if defined(__DragonFly__) || __FreeBSD_version < 500000 2459 "Volume size = %d\n", 2460 #else 2461 "Volume size = %jd\n", 2462 #endif 2463 device_get_nameunit(sbp->fd.dev), 2464 cam_sim_path(sbp->sim), 2465 ccb->ccb_h.target_id, ccb->ccb_h.target_lun, 2466 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000 2467 (uintmax_t) 2468 #endif 2469 ccg->volume_size); 2470 END_DEBUG 2471 2472 #if defined(__DragonFly__) || __FreeBSD_version < 501100 2473 size_mb = ccg->volume_size 2474 / ((1024L * 1024L) / ccg->block_size); 2475 2476 if (size_mb > 1024 && extended) { 2477 ccg->heads = 255; 2478 ccg->secs_per_track = 63; 2479 } else { 2480 ccg->heads = 64; 2481 ccg->secs_per_track = 32; 2482 } 2483 secs_per_cylinder = ccg->heads * ccg->secs_per_track; 2484 ccg->cylinders = ccg->volume_size / secs_per_cylinder; 2485 ccb->ccb_h.status = CAM_REQ_CMP; 2486 #else 2487 cam_calc_geometry(ccg, /*extended*/1); 2488 #endif 2489 xpt_done(ccb); 2490 break; 2491 } 2492 case XPT_RESET_BUS: /* Reset the specified SCSI bus */ 2493 { 2494 2495 SBP_DEBUG(1) 2496 printf("%s:%d:XPT_RESET_BUS: \n", 2497 device_get_nameunit(sbp->fd.dev), cam_sim_path(sbp->sim)); 2498 END_DEBUG 2499 2500 ccb->ccb_h.status = CAM_REQ_INVALID; 2501 xpt_done(ccb); 2502 break; 2503 } 2504 case XPT_PATH_INQ: /* Path routing inquiry */ 2505 { 2506 struct ccb_pathinq *cpi = &ccb->cpi; 2507 2508 SBP_DEBUG(1) 2509 printf("%s:%d:%d XPT_PATH_INQ:.\n", 2510 device_get_nameunit(sbp->fd.dev), 2511 ccb->ccb_h.target_id, ccb->ccb_h.target_lun); 2512 END_DEBUG 2513 cpi->version_num = 1; /* XXX??? */ 2514 cpi->hba_inquiry = PI_TAG_ABLE; 2515 cpi->target_sprt = 0; 2516 cpi->hba_misc = PIM_NOBUSRESET | PIM_NO_6_BYTE; 2517 cpi->hba_eng_cnt = 0; 2518 cpi->max_target = SBP_NUM_TARGETS - 1; 2519 cpi->max_lun = SBP_NUM_LUNS - 1; 2520 cpi->initiator_id = SBP_INITIATOR; 2521 cpi->bus_id = sim->bus_id; 2522 cpi->base_transfer_speed = 400 * 1000 / 8; 2523 strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN); 2524 strncpy(cpi->hba_vid, "SBP", HBA_IDLEN); 2525 strncpy(cpi->dev_name, sim->sim_name, DEV_IDLEN); 2526 cpi->unit_number = sim->unit_number; 2527 2528 cpi->ccb_h.status = CAM_REQ_CMP; 2529 xpt_done(ccb); 2530 break; 2531 } 2532 case XPT_GET_TRAN_SETTINGS: 2533 { 2534 struct ccb_trans_settings *cts = &ccb->cts; 2535 SBP_DEBUG(1) 2536 printf("%s:%d:%d XPT_GET_TRAN_SETTINGS:.\n", 2537 device_get_nameunit(sbp->fd.dev), 2538 ccb->ccb_h.target_id, ccb->ccb_h.target_lun); 2539 END_DEBUG 2540 /* Enable disconnect and tagged queuing */ 2541 cts->valid = CCB_TRANS_DISC_VALID | CCB_TRANS_TQ_VALID; 2542 cts->flags = CCB_TRANS_DISC_ENB | CCB_TRANS_TAG_ENB; 2543 2544 cts->ccb_h.status = CAM_REQ_CMP; 2545 xpt_done(ccb); 2546 break; 2547 } 2548 case XPT_ABORT: 2549 ccb->ccb_h.status = CAM_UA_ABORT; 2550 xpt_done(ccb); 2551 break; 2552 case XPT_SET_TRAN_SETTINGS: 2553 /* XXX */ 2554 default: 2555 ccb->ccb_h.status = CAM_REQ_INVALID; 2556 xpt_done(ccb); 2557 break; 2558 } 2559 return; 2560 } 2561 2562 static void 2563 sbp_action(struct cam_sim *sim, union ccb *ccb) 2564 { 2565 int s; 2566 2567 s = splfw(); 2568 sbp_action1(sim, ccb); 2569 splx(s); 2570 } 2571 2572 static void 2573 sbp_execute_ocb(void *arg, bus_dma_segment_t *segments, int seg, int error) 2574 { 2575 int i; 2576 struct sbp_ocb *ocb; 2577 struct sbp_ocb *prev; 2578 bus_dma_segment_t *s; 2579 2580 if (error) 2581 printf("sbp_execute_ocb: error=%d\n", error); 2582 2583 ocb = (struct sbp_ocb *)arg; 2584 2585 SBP_DEBUG(2) 2586 printf("sbp_execute_ocb: seg %d", seg); 2587 for (i = 0; i < seg; i++) 2588 #if defined(__DragonFly__) || __FreeBSD_version < 500000 2589 printf(", %x:%d", segments[i].ds_addr, segments[i].ds_len); 2590 #else 2591 printf(", %jx:%jd", (uintmax_t)segments[i].ds_addr, 2592 (uintmax_t)segments[i].ds_len); 2593 #endif 2594 printf("\n"); 2595 END_DEBUG 2596 2597 if (seg == 1) { 2598 /* direct pointer */ 2599 s = &segments[0]; 2600 if (s->ds_len > SBP_SEG_MAX) 2601 panic("ds_len > SBP_SEG_MAX, fix busdma code"); 2602 ocb->orb[3] = htonl(s->ds_addr); 2603 ocb->orb[4] |= htonl(s->ds_len); 2604 } else if(seg > 1) { 2605 /* page table */ 2606 for (i = 0; i < seg; i++) { 2607 s = &segments[i]; 2608 SBP_DEBUG(0) 2609 /* XXX LSI Logic "< 16 byte" bug might be hit */ 2610 if (s->ds_len < 16) 2611 printf("sbp_execute_ocb: warning, " 2612 #if defined(__DragonFly__) || __FreeBSD_version < 500000 2613 "segment length(%d) is less than 16." 2614 #else 2615 "segment length(%zd) is less than 16." 2616 #endif 2617 "(seg=%d/%d)\n", s->ds_len, i+1, seg); 2618 END_DEBUG 2619 if (s->ds_len > SBP_SEG_MAX) 2620 panic("ds_len > SBP_SEG_MAX, fix busdma code"); 2621 ocb->ind_ptr[i].hi = htonl(s->ds_len << 16); 2622 ocb->ind_ptr[i].lo = htonl(s->ds_addr); 2623 } 2624 ocb->orb[4] |= htonl(ORB_CMD_PTBL | seg); 2625 } 2626 2627 if (seg > 0) 2628 bus_dmamap_sync(ocb->sdev->target->sbp->dmat, ocb->dmamap, 2629 (ntohl(ocb->orb[4]) & ORB_CMD_IN) ? 2630 BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE); 2631 prev = sbp_enqueue_ocb(ocb->sdev, ocb); 2632 fwdma_sync(&ocb->sdev->dma, BUS_DMASYNC_PREWRITE); 2633 if (use_doorbell) { 2634 if (prev == NULL) { 2635 if (ocb->sdev->last_ocb != NULL) 2636 sbp_doorbell(ocb->sdev); 2637 else 2638 sbp_orb_pointer(ocb->sdev, ocb); 2639 } 2640 } else { 2641 if (prev == NULL || (ocb->sdev->flags & ORB_LINK_DEAD) != 0) { 2642 ocb->sdev->flags &= ~ORB_LINK_DEAD; 2643 sbp_orb_pointer(ocb->sdev, ocb); 2644 } 2645 } 2646 } 2647 2648 static void 2649 sbp_poll(struct cam_sim *sim) 2650 { 2651 struct sbp_softc *sbp; 2652 struct firewire_comm *fc; 2653 2654 sbp = (struct sbp_softc *)sim->softc; 2655 fc = sbp->fd.fc; 2656 2657 fc->poll(fc, 0, -1); 2658 2659 return; 2660 } 2661 2662 static struct sbp_ocb * 2663 sbp_dequeue_ocb(struct sbp_dev *sdev, struct sbp_status *sbp_status) 2664 { 2665 struct sbp_ocb *ocb; 2666 struct sbp_ocb *next; 2667 int s = splfw(), order = 0; 2668 int flags; 2669 2670 SBP_DEBUG(1) 2671 sbp_show_sdev_info(sdev, 2); 2672 #if defined(__DragonFly__) || __FreeBSD_version < 500000 2673 printf("%s: 0x%08lx src %d\n", 2674 #else 2675 printf("%s: 0x%08x src %d\n", 2676 #endif 2677 __func__, ntohl(sbp_status->orb_lo), sbp_status->src); 2678 END_DEBUG 2679 for (ocb = STAILQ_FIRST(&sdev->ocbs); ocb != NULL; ocb = next) { 2680 next = STAILQ_NEXT(ocb, ocb); 2681 flags = ocb->flags; 2682 if (OCB_MATCH(ocb, sbp_status)) { 2683 /* found */ 2684 STAILQ_REMOVE(&sdev->ocbs, ocb, sbp_ocb, ocb); 2685 if (ocb->ccb != NULL) 2686 untimeout(sbp_timeout, (caddr_t)ocb, 2687 ocb->ccb->ccb_h.timeout_ch); 2688 if (ntohl(ocb->orb[4]) & 0xffff) { 2689 bus_dmamap_sync(sdev->target->sbp->dmat, 2690 ocb->dmamap, 2691 (ntohl(ocb->orb[4]) & ORB_CMD_IN) ? 2692 BUS_DMASYNC_POSTREAD : 2693 BUS_DMASYNC_POSTWRITE); 2694 bus_dmamap_unload(sdev->target->sbp->dmat, 2695 ocb->dmamap); 2696 } 2697 if (!use_doorbell) { 2698 if (sbp_status->src == SRC_NO_NEXT) { 2699 if (next != NULL) 2700 sbp_orb_pointer(sdev, next); 2701 else if (order > 0) { 2702 /* 2703 * Unordered execution 2704 * We need to send pointer for 2705 * next ORB 2706 */ 2707 sdev->flags |= ORB_LINK_DEAD; 2708 } 2709 } 2710 } else { 2711 /* 2712 * XXX this is not correct for unordered 2713 * execution. 2714 */ 2715 if (sdev->last_ocb != NULL) 2716 sbp_free_ocb(sdev, sdev->last_ocb); 2717 sdev->last_ocb = ocb; 2718 if (next != NULL && 2719 sbp_status->src == SRC_NO_NEXT) 2720 sbp_doorbell(sdev); 2721 } 2722 break; 2723 } else 2724 order ++; 2725 } 2726 splx(s); 2727 SBP_DEBUG(0) 2728 if (ocb && order > 0) { 2729 sbp_show_sdev_info(sdev, 2); 2730 printf("unordered execution order:%d\n", order); 2731 } 2732 END_DEBUG 2733 return (ocb); 2734 } 2735 2736 static struct sbp_ocb * 2737 sbp_enqueue_ocb(struct sbp_dev *sdev, struct sbp_ocb *ocb) 2738 { 2739 int s = splfw(); 2740 struct sbp_ocb *prev, *prev2; 2741 2742 SBP_DEBUG(1) 2743 sbp_show_sdev_info(sdev, 2); 2744 #if defined(__DragonFly__) || __FreeBSD_version < 500000 2745 printf("%s: 0x%08x\n", __func__, ocb->bus_addr); 2746 #else 2747 printf("%s: 0x%08jx\n", __func__, (uintmax_t)ocb->bus_addr); 2748 #endif 2749 END_DEBUG 2750 prev2 = prev = STAILQ_LAST(&sdev->ocbs, sbp_ocb, ocb); 2751 STAILQ_INSERT_TAIL(&sdev->ocbs, ocb, ocb); 2752 2753 if (ocb->ccb != NULL) 2754 ocb->ccb->ccb_h.timeout_ch = timeout(sbp_timeout, (caddr_t)ocb, 2755 (ocb->ccb->ccb_h.timeout * hz) / 1000); 2756 2757 if (use_doorbell && prev == NULL) 2758 prev2 = sdev->last_ocb; 2759 2760 if (prev2 != NULL) { 2761 SBP_DEBUG(2) 2762 #if defined(__DragonFly__) || __FreeBSD_version < 500000 2763 printf("linking chain 0x%x -> 0x%x\n", 2764 prev2->bus_addr, ocb->bus_addr); 2765 #else 2766 printf("linking chain 0x%jx -> 0x%jx\n", 2767 (uintmax_t)prev2->bus_addr, (uintmax_t)ocb->bus_addr); 2768 #endif 2769 END_DEBUG 2770 prev2->orb[1] = htonl(ocb->bus_addr); 2771 prev2->orb[0] = 0; 2772 } 2773 splx(s); 2774 2775 return prev; 2776 } 2777 2778 static struct sbp_ocb * 2779 sbp_get_ocb(struct sbp_dev *sdev) 2780 { 2781 struct sbp_ocb *ocb; 2782 int s = splfw(); 2783 ocb = STAILQ_FIRST(&sdev->free_ocbs); 2784 if (ocb == NULL) { 2785 sdev->flags |= ORB_SHORTAGE; 2786 printf("ocb shortage!!!\n"); 2787 return NULL; 2788 } 2789 STAILQ_REMOVE_HEAD(&sdev->free_ocbs, ocb); 2790 splx(s); 2791 ocb->ccb = NULL; 2792 return (ocb); 2793 } 2794 2795 static void 2796 sbp_free_ocb(struct sbp_dev *sdev, struct sbp_ocb *ocb) 2797 { 2798 ocb->flags = 0; 2799 ocb->ccb = NULL; 2800 STAILQ_INSERT_TAIL(&sdev->free_ocbs, ocb, ocb); 2801 if ((sdev->flags & ORB_SHORTAGE) != 0) { 2802 int count; 2803 2804 sdev->flags &= ~ORB_SHORTAGE; 2805 count = sdev->freeze; 2806 sdev->freeze = 0; 2807 xpt_release_devq(sdev->path, count, TRUE); 2808 } 2809 } 2810 2811 static void 2812 sbp_abort_ocb(struct sbp_ocb *ocb, int status) 2813 { 2814 struct sbp_dev *sdev; 2815 2816 sdev = ocb->sdev; 2817 SBP_DEBUG(0) 2818 sbp_show_sdev_info(sdev, 2); 2819 #if defined(__DragonFly__) || __FreeBSD_version < 500000 2820 printf("sbp_abort_ocb 0x%x\n", ocb->bus_addr); 2821 #else 2822 printf("sbp_abort_ocb 0x%jx\n", (uintmax_t)ocb->bus_addr); 2823 #endif 2824 END_DEBUG 2825 SBP_DEBUG(1) 2826 if (ocb->ccb != NULL) 2827 sbp_print_scsi_cmd(ocb); 2828 END_DEBUG 2829 if (ntohl(ocb->orb[4]) & 0xffff) { 2830 bus_dmamap_sync(sdev->target->sbp->dmat, ocb->dmamap, 2831 (ntohl(ocb->orb[4]) & ORB_CMD_IN) ? 2832 BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE); 2833 bus_dmamap_unload(sdev->target->sbp->dmat, ocb->dmamap); 2834 } 2835 if (ocb->ccb != NULL) { 2836 untimeout(sbp_timeout, (caddr_t)ocb, 2837 ocb->ccb->ccb_h.timeout_ch); 2838 ocb->ccb->ccb_h.status = status; 2839 xpt_done(ocb->ccb); 2840 } 2841 sbp_free_ocb(sdev, ocb); 2842 } 2843 2844 static void 2845 sbp_abort_all_ocbs(struct sbp_dev *sdev, int status) 2846 { 2847 int s; 2848 struct sbp_ocb *ocb, *next; 2849 STAILQ_HEAD(, sbp_ocb) temp; 2850 2851 s = splfw(); 2852 2853 bcopy(&sdev->ocbs, &temp, sizeof(temp)); 2854 STAILQ_INIT(&sdev->ocbs); 2855 for (ocb = STAILQ_FIRST(&temp); ocb != NULL; ocb = next) { 2856 next = STAILQ_NEXT(ocb, ocb); 2857 sbp_abort_ocb(ocb, status); 2858 } 2859 if (sdev->last_ocb != NULL) { 2860 sbp_free_ocb(sdev, sdev->last_ocb); 2861 sdev->last_ocb = NULL; 2862 } 2863 2864 splx(s); 2865 } 2866 2867 static devclass_t sbp_devclass; 2868 2869 static device_method_t sbp_methods[] = { 2870 /* device interface */ 2871 DEVMETHOD(device_identify, sbp_identify), 2872 DEVMETHOD(device_probe, sbp_probe), 2873 DEVMETHOD(device_attach, sbp_attach), 2874 DEVMETHOD(device_detach, sbp_detach), 2875 DEVMETHOD(device_shutdown, sbp_shutdown), 2876 2877 { 0, 0 } 2878 }; 2879 2880 static driver_t sbp_driver = { 2881 "sbp", 2882 sbp_methods, 2883 sizeof(struct sbp_softc), 2884 }; 2885 #ifdef __DragonFly__ 2886 DECLARE_DUMMY_MODULE(sbp); 2887 #endif 2888 DRIVER_MODULE(sbp, firewire, sbp_driver, sbp_devclass, 0, 0); 2889 MODULE_VERSION(sbp, 1); 2890 MODULE_DEPEND(sbp, firewire, 1, 1, 1); 2891 MODULE_DEPEND(sbp, cam, 1, 1, 1); 2892