1 #include <sys/cdefs.h> 2 __FBSDID("$FreeBSD$"); 3 4 /*- 5 * Copyright (c) 1999 MAEKAWA Masahide <bishop@rr.iij4u.or.jp>, 6 * Nick Hibma <n_hibma@FreeBSD.org> 7 * All rights reserved. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 * 30 * $FreeBSD$ 31 * $NetBSD: umass.c,v 1.28 2000/04/02 23:46:53 augustss Exp $ 32 */ 33 34 /* Also already merged from NetBSD: 35 * $NetBSD: umass.c,v 1.67 2001/11/25 19:05:22 augustss Exp $ 36 * $NetBSD: umass.c,v 1.90 2002/11/04 19:17:33 pooka Exp $ 37 * $NetBSD: umass.c,v 1.108 2003/11/07 17:03:25 wiz Exp $ 38 * $NetBSD: umass.c,v 1.109 2003/12/04 13:57:31 keihan Exp $ 39 */ 40 41 /* 42 * Universal Serial Bus Mass Storage Class specs: 43 * http://www.usb.org/developers/devclass_docs/usb_msc_overview_1.2.pdf 44 * http://www.usb.org/developers/devclass_docs/usbmassbulk_10.pdf 45 * http://www.usb.org/developers/devclass_docs/usb_msc_cbi_1.1.pdf 46 * http://www.usb.org/developers/devclass_docs/usbmass-ufi10.pdf 47 */ 48 49 /* 50 * Ported to NetBSD by Lennart Augustsson <augustss@NetBSD.org>. 51 * Parts of the code written by Jason R. Thorpe <thorpej@shagadelic.org>. 52 */ 53 54 /* 55 * The driver handles 3 Wire Protocols 56 * - Command/Bulk/Interrupt (CBI) 57 * - Command/Bulk/Interrupt with Command Completion Interrupt (CBI with CCI) 58 * - Mass Storage Bulk-Only (BBB) 59 * (BBB refers Bulk/Bulk/Bulk for Command/Data/Status phases) 60 * 61 * Over these wire protocols it handles the following command protocols 62 * - SCSI 63 * - UFI (floppy command set) 64 * - 8070i (ATAPI) 65 * 66 * UFI and 8070i (ATAPI) are transformed versions of the SCSI command set. The 67 * sc->sc_transform method is used to convert the commands into the appropriate 68 * format (if at all necessary). For example, UFI requires all commands to be 69 * 12 bytes in length amongst other things. 70 * 71 * The source code below is marked and can be split into a number of pieces 72 * (in this order): 73 * 74 * - probe/attach/detach 75 * - generic transfer routines 76 * - BBB 77 * - CBI 78 * - CBI_I (in addition to functions from CBI) 79 * - CAM (Common Access Method) 80 * - SCSI 81 * - UFI 82 * - 8070i (ATAPI) 83 * 84 * The protocols are implemented using a state machine, for the transfers as 85 * well as for the resets. The state machine is contained in umass_t_*_callback. 86 * The state machine is started through either umass_command_start() or 87 * umass_reset(). 88 * 89 * The reason for doing this is a) CAM performs a lot better this way and b) it 90 * avoids using tsleep from interrupt context (for example after a failed 91 * transfer). 92 */ 93 94 /* 95 * The SCSI related part of this driver has been derived from the 96 * dev/ppbus/vpo.c driver, by Nicolas Souchu (nsouch@FreeBSD.org). 97 * 98 * The CAM layer uses so called actions which are messages sent to the host 99 * adapter for completion. The actions come in through umass_cam_action. The 100 * appropriate block of routines is called depending on the transport protocol 101 * in use. When the transfer has finished, these routines call 102 * umass_cam_cb again to complete the CAM command. 103 */ 104 105 #include <sys/stdint.h> 106 #include <sys/stddef.h> 107 #include <sys/param.h> 108 #include <sys/queue.h> 109 #include <sys/types.h> 110 #include <sys/systm.h> 111 #include <sys/kernel.h> 112 #include <sys/bus.h> 113 #include <sys/module.h> 114 #include <sys/lock.h> 115 #include <sys/mutex.h> 116 #include <sys/condvar.h> 117 #include <sys/sysctl.h> 118 #include <sys/sx.h> 119 #include <sys/unistd.h> 120 #include <sys/callout.h> 121 #include <sys/malloc.h> 122 #include <sys/priv.h> 123 124 #include <dev/usb/usb.h> 125 #include <dev/usb/usbdi.h> 126 #include <dev/usb/usbdi_util.h> 127 #include "usbdevs.h" 128 129 #include <dev/usb/quirk/usb_quirk.h> 130 131 #include <cam/cam.h> 132 #include <cam/cam_ccb.h> 133 #include <cam/cam_sim.h> 134 #include <cam/cam_xpt_sim.h> 135 #include <cam/scsi/scsi_all.h> 136 #include <cam/scsi/scsi_da.h> 137 138 #include <cam/cam_periph.h> 139 140 #ifdef USB_DEBUG 141 #define DIF(m, x) \ 142 do { \ 143 if (umass_debug & (m)) { x ; } \ 144 } while (0) 145 146 #define DPRINTF(sc, m, fmt, ...) \ 147 do { \ 148 if (umass_debug & (m)) { \ 149 printf("%s:%s: " fmt, \ 150 (sc) ? (const char *)(sc)->sc_name : \ 151 (const char *)"umassX", \ 152 __FUNCTION__ ,## __VA_ARGS__); \ 153 } \ 154 } while (0) 155 156 #define UDMASS_GEN 0x00010000 /* general */ 157 #define UDMASS_SCSI 0x00020000 /* scsi */ 158 #define UDMASS_UFI 0x00040000 /* ufi command set */ 159 #define UDMASS_ATAPI 0x00080000 /* 8070i command set */ 160 #define UDMASS_CMD (UDMASS_SCSI|UDMASS_UFI|UDMASS_ATAPI) 161 #define UDMASS_USB 0x00100000 /* USB general */ 162 #define UDMASS_BBB 0x00200000 /* Bulk-Only transfers */ 163 #define UDMASS_CBI 0x00400000 /* CBI transfers */ 164 #define UDMASS_WIRE (UDMASS_BBB|UDMASS_CBI) 165 #define UDMASS_ALL 0xffff0000 /* all of the above */ 166 static int umass_debug; 167 static int umass_throttle; 168 169 static SYSCTL_NODE(_hw_usb, OID_AUTO, umass, CTLFLAG_RW, 0, "USB umass"); 170 SYSCTL_INT(_hw_usb_umass, OID_AUTO, debug, CTLFLAG_RW | CTLFLAG_TUN, 171 &umass_debug, 0, "umass debug level"); 172 TUNABLE_INT("hw.usb.umass.debug", &umass_debug); 173 SYSCTL_INT(_hw_usb_umass, OID_AUTO, throttle, CTLFLAG_RW | CTLFLAG_TUN, 174 &umass_throttle, 0, "Forced delay between commands in milliseconds"); 175 TUNABLE_INT("hw.usb.umass.throttle", &umass_throttle); 176 #else 177 #define DIF(...) do { } while (0) 178 #define DPRINTF(...) do { } while (0) 179 #endif 180 181 #define UMASS_BULK_SIZE (1 << 17) 182 #define UMASS_CBI_DIAGNOSTIC_CMDLEN 12 /* bytes */ 183 #define UMASS_MAX_CMDLEN MAX(12, CAM_MAX_CDBLEN) /* bytes */ 184 185 /* USB transfer definitions */ 186 187 #define UMASS_T_BBB_RESET1 0 /* Bulk-Only */ 188 #define UMASS_T_BBB_RESET2 1 189 #define UMASS_T_BBB_RESET3 2 190 #define UMASS_T_BBB_COMMAND 3 191 #define UMASS_T_BBB_DATA_READ 4 192 #define UMASS_T_BBB_DATA_RD_CS 5 193 #define UMASS_T_BBB_DATA_WRITE 6 194 #define UMASS_T_BBB_DATA_WR_CS 7 195 #define UMASS_T_BBB_STATUS 8 196 #define UMASS_T_BBB_MAX 9 197 198 #define UMASS_T_CBI_RESET1 0 /* CBI */ 199 #define UMASS_T_CBI_RESET2 1 200 #define UMASS_T_CBI_RESET3 2 201 #define UMASS_T_CBI_COMMAND 3 202 #define UMASS_T_CBI_DATA_READ 4 203 #define UMASS_T_CBI_DATA_RD_CS 5 204 #define UMASS_T_CBI_DATA_WRITE 6 205 #define UMASS_T_CBI_DATA_WR_CS 7 206 #define UMASS_T_CBI_STATUS 8 207 #define UMASS_T_CBI_RESET4 9 208 #define UMASS_T_CBI_MAX 10 209 210 #define UMASS_T_MAX MAX(UMASS_T_CBI_MAX, UMASS_T_BBB_MAX) 211 212 /* Generic definitions */ 213 214 /* Direction for transfer */ 215 #define DIR_NONE 0 216 #define DIR_IN 1 217 #define DIR_OUT 2 218 219 /* device name */ 220 #define DEVNAME "umass" 221 #define DEVNAME_SIM "umass-sim" 222 223 /* Approximate maximum transfer speeds (assumes 33% overhead). */ 224 #define UMASS_FULL_TRANSFER_SPEED 1000 225 #define UMASS_HIGH_TRANSFER_SPEED 40000 226 #define UMASS_SUPER_TRANSFER_SPEED 400000 227 #define UMASS_FLOPPY_TRANSFER_SPEED 20 228 229 #define UMASS_TIMEOUT 5000 /* ms */ 230 231 /* CAM specific definitions */ 232 233 #define UMASS_SCSIID_MAX 1 /* maximum number of drives expected */ 234 #define UMASS_SCSIID_HOST UMASS_SCSIID_MAX 235 236 /* Bulk-Only features */ 237 238 #define UR_BBB_RESET 0xff /* Bulk-Only reset */ 239 #define UR_BBB_GET_MAX_LUN 0xfe /* Get maximum lun */ 240 241 /* Command Block Wrapper */ 242 typedef struct { 243 uDWord dCBWSignature; 244 #define CBWSIGNATURE 0x43425355 245 uDWord dCBWTag; 246 uDWord dCBWDataTransferLength; 247 uByte bCBWFlags; 248 #define CBWFLAGS_OUT 0x00 249 #define CBWFLAGS_IN 0x80 250 uByte bCBWLUN; 251 uByte bCDBLength; 252 #define CBWCDBLENGTH 16 253 uByte CBWCDB[CBWCDBLENGTH]; 254 } __packed umass_bbb_cbw_t; 255 256 #define UMASS_BBB_CBW_SIZE 31 257 258 /* Command Status Wrapper */ 259 typedef struct { 260 uDWord dCSWSignature; 261 #define CSWSIGNATURE 0x53425355 262 #define CSWSIGNATURE_IMAGINATION_DBX1 0x43425355 263 #define CSWSIGNATURE_OLYMPUS_C1 0x55425355 264 uDWord dCSWTag; 265 uDWord dCSWDataResidue; 266 uByte bCSWStatus; 267 #define CSWSTATUS_GOOD 0x0 268 #define CSWSTATUS_FAILED 0x1 269 #define CSWSTATUS_PHASE 0x2 270 } __packed umass_bbb_csw_t; 271 272 #define UMASS_BBB_CSW_SIZE 13 273 274 /* CBI features */ 275 276 #define UR_CBI_ADSC 0x00 277 278 typedef union { 279 struct { 280 uint8_t type; 281 #define IDB_TYPE_CCI 0x00 282 uint8_t value; 283 #define IDB_VALUE_PASS 0x00 284 #define IDB_VALUE_FAIL 0x01 285 #define IDB_VALUE_PHASE 0x02 286 #define IDB_VALUE_PERSISTENT 0x03 287 #define IDB_VALUE_STATUS_MASK 0x03 288 } __packed common; 289 290 struct { 291 uint8_t asc; 292 uint8_t ascq; 293 } __packed ufi; 294 } __packed umass_cbi_sbl_t; 295 296 struct umass_softc; /* see below */ 297 298 typedef void (umass_callback_t)(struct umass_softc *sc, union ccb *ccb, 299 uint32_t residue, uint8_t status); 300 301 #define STATUS_CMD_OK 0 /* everything ok */ 302 #define STATUS_CMD_UNKNOWN 1 /* will have to fetch sense */ 303 #define STATUS_CMD_FAILED 2 /* transfer was ok, command failed */ 304 #define STATUS_WIRE_FAILED 3 /* couldn't even get command across */ 305 306 typedef uint8_t (umass_transform_t)(struct umass_softc *sc, uint8_t *cmd_ptr, 307 uint8_t cmd_len); 308 309 /* Wire and command protocol */ 310 #define UMASS_PROTO_BBB 0x0001 /* USB wire protocol */ 311 #define UMASS_PROTO_CBI 0x0002 312 #define UMASS_PROTO_CBI_I 0x0004 313 #define UMASS_PROTO_WIRE 0x00ff /* USB wire protocol mask */ 314 #define UMASS_PROTO_SCSI 0x0100 /* command protocol */ 315 #define UMASS_PROTO_ATAPI 0x0200 316 #define UMASS_PROTO_UFI 0x0400 317 #define UMASS_PROTO_RBC 0x0800 318 #define UMASS_PROTO_COMMAND 0xff00 /* command protocol mask */ 319 320 /* Device specific quirks */ 321 #define NO_QUIRKS 0x0000 322 /* 323 * The drive does not support Test Unit Ready. Convert to Start Unit 324 */ 325 #define NO_TEST_UNIT_READY 0x0001 326 /* 327 * The drive does not reset the Unit Attention state after REQUEST 328 * SENSE has been sent. The INQUIRY command does not reset the UA 329 * either, and so CAM runs in circles trying to retrieve the initial 330 * INQUIRY data. 331 */ 332 #define RS_NO_CLEAR_UA 0x0002 333 /* The drive does not support START STOP. */ 334 #define NO_START_STOP 0x0004 335 /* Don't ask for full inquiry data (255b). */ 336 #define FORCE_SHORT_INQUIRY 0x0008 337 /* Needs to be initialised the Shuttle way */ 338 #define SHUTTLE_INIT 0x0010 339 /* Drive needs to be switched to alternate iface 1 */ 340 #define ALT_IFACE_1 0x0020 341 /* Drive does not do 1Mb/s, but just floppy speeds (20kb/s) */ 342 #define FLOPPY_SPEED 0x0040 343 /* The device can't count and gets the residue of transfers wrong */ 344 #define IGNORE_RESIDUE 0x0080 345 /* No GetMaxLun call */ 346 #define NO_GETMAXLUN 0x0100 347 /* The device uses a weird CSWSIGNATURE. */ 348 #define WRONG_CSWSIG 0x0200 349 /* Device cannot handle INQUIRY so fake a generic response */ 350 #define NO_INQUIRY 0x0400 351 /* Device cannot handle INQUIRY EVPD, return CHECK CONDITION */ 352 #define NO_INQUIRY_EVPD 0x0800 353 /* Pad all RBC requests to 12 bytes. */ 354 #define RBC_PAD_TO_12 0x1000 355 /* 356 * Device reports number of sectors from READ_CAPACITY, not max 357 * sector number. 358 */ 359 #define READ_CAPACITY_OFFBY1 0x2000 360 /* 361 * Device cannot handle a SCSI synchronize cache command. Normally 362 * this quirk would be handled in the cam layer, but for IDE bridges 363 * we need to associate the quirk with the bridge and not the 364 * underlying disk device. This is handled by faking a success 365 * result. 366 */ 367 #define NO_SYNCHRONIZE_CACHE 0x4000 368 /* Device does not support 'PREVENT/ALLOW MEDIUM REMOVAL'. */ 369 #define NO_PREVENT_ALLOW 0x8000 370 371 struct umass_softc { 372 373 struct scsi_sense cam_scsi_sense; 374 struct scsi_test_unit_ready cam_scsi_test_unit_ready; 375 struct mtx sc_mtx; 376 struct { 377 uint8_t *data_ptr; 378 union ccb *ccb; 379 umass_callback_t *callback; 380 381 uint32_t data_len; /* bytes */ 382 uint32_t data_rem; /* bytes */ 383 uint32_t data_timeout; /* ms */ 384 uint32_t actlen; /* bytes */ 385 386 uint8_t cmd_data[UMASS_MAX_CMDLEN]; 387 uint8_t cmd_len; /* bytes */ 388 uint8_t dir; 389 uint8_t lun; 390 } sc_transfer; 391 392 /* Bulk specific variables for transfers in progress */ 393 umass_bbb_cbw_t cbw; /* command block wrapper */ 394 umass_bbb_csw_t csw; /* command status wrapper */ 395 396 /* CBI specific variables for transfers in progress */ 397 umass_cbi_sbl_t sbl; /* status block */ 398 399 device_t sc_dev; 400 struct usb_device *sc_udev; 401 struct cam_sim *sc_sim; /* SCSI Interface Module */ 402 struct usb_xfer *sc_xfer[UMASS_T_MAX]; 403 404 /* 405 * The command transform function is used to convert the SCSI 406 * commands into their derivatives, like UFI, ATAPI, and friends. 407 */ 408 umass_transform_t *sc_transform; 409 410 uint32_t sc_unit; 411 uint32_t sc_quirks; /* they got it almost right */ 412 uint32_t sc_proto; /* wire and cmd protocol */ 413 414 uint8_t sc_name[16]; 415 uint8_t sc_iface_no; /* interface number */ 416 uint8_t sc_maxlun; /* maximum LUN number, inclusive */ 417 uint8_t sc_last_xfer_index; 418 uint8_t sc_status_try; 419 }; 420 421 struct umass_probe_proto { 422 uint32_t quirks; 423 uint32_t proto; 424 425 int error; 426 }; 427 428 /* prototypes */ 429 430 static device_probe_t umass_probe; 431 static device_attach_t umass_attach; 432 static device_detach_t umass_detach; 433 434 static usb_callback_t umass_tr_error; 435 static usb_callback_t umass_t_bbb_reset1_callback; 436 static usb_callback_t umass_t_bbb_reset2_callback; 437 static usb_callback_t umass_t_bbb_reset3_callback; 438 static usb_callback_t umass_t_bbb_command_callback; 439 static usb_callback_t umass_t_bbb_data_read_callback; 440 static usb_callback_t umass_t_bbb_data_rd_cs_callback; 441 static usb_callback_t umass_t_bbb_data_write_callback; 442 static usb_callback_t umass_t_bbb_data_wr_cs_callback; 443 static usb_callback_t umass_t_bbb_status_callback; 444 static usb_callback_t umass_t_cbi_reset1_callback; 445 static usb_callback_t umass_t_cbi_reset2_callback; 446 static usb_callback_t umass_t_cbi_reset3_callback; 447 static usb_callback_t umass_t_cbi_reset4_callback; 448 static usb_callback_t umass_t_cbi_command_callback; 449 static usb_callback_t umass_t_cbi_data_read_callback; 450 static usb_callback_t umass_t_cbi_data_rd_cs_callback; 451 static usb_callback_t umass_t_cbi_data_write_callback; 452 static usb_callback_t umass_t_cbi_data_wr_cs_callback; 453 static usb_callback_t umass_t_cbi_status_callback; 454 455 static void umass_cancel_ccb(struct umass_softc *); 456 static void umass_init_shuttle(struct umass_softc *); 457 static void umass_reset(struct umass_softc *); 458 static void umass_t_bbb_data_clear_stall_callback(struct usb_xfer *, 459 uint8_t, uint8_t, usb_error_t); 460 static void umass_command_start(struct umass_softc *, uint8_t, void *, 461 uint32_t, uint32_t, umass_callback_t *, union ccb *); 462 static uint8_t umass_bbb_get_max_lun(struct umass_softc *); 463 static void umass_cbi_start_status(struct umass_softc *); 464 static void umass_t_cbi_data_clear_stall_callback(struct usb_xfer *, 465 uint8_t, uint8_t, usb_error_t); 466 static int umass_cam_attach_sim(struct umass_softc *); 467 static void umass_cam_attach(struct umass_softc *); 468 static void umass_cam_detach_sim(struct umass_softc *); 469 static void umass_cam_action(struct cam_sim *, union ccb *); 470 static void umass_cam_poll(struct cam_sim *); 471 static void umass_cam_cb(struct umass_softc *, union ccb *, uint32_t, 472 uint8_t); 473 static void umass_cam_sense_cb(struct umass_softc *, union ccb *, uint32_t, 474 uint8_t); 475 static void umass_cam_quirk_cb(struct umass_softc *, union ccb *, uint32_t, 476 uint8_t); 477 static uint8_t umass_scsi_transform(struct umass_softc *, uint8_t *, uint8_t); 478 static uint8_t umass_rbc_transform(struct umass_softc *, uint8_t *, uint8_t); 479 static uint8_t umass_ufi_transform(struct umass_softc *, uint8_t *, uint8_t); 480 static uint8_t umass_atapi_transform(struct umass_softc *, uint8_t *, 481 uint8_t); 482 static uint8_t umass_no_transform(struct umass_softc *, uint8_t *, uint8_t); 483 static uint8_t umass_std_transform(struct umass_softc *, union ccb *, uint8_t 484 *, uint8_t); 485 486 #ifdef USB_DEBUG 487 static void umass_bbb_dump_cbw(struct umass_softc *, umass_bbb_cbw_t *); 488 static void umass_bbb_dump_csw(struct umass_softc *, umass_bbb_csw_t *); 489 static void umass_cbi_dump_cmd(struct umass_softc *, void *, uint8_t); 490 static void umass_dump_buffer(struct umass_softc *, uint8_t *, uint32_t, 491 uint32_t); 492 #endif 493 494 static struct usb_config umass_bbb_config[UMASS_T_BBB_MAX] = { 495 496 [UMASS_T_BBB_RESET1] = { 497 .type = UE_CONTROL, 498 .endpoint = 0x00, /* Control pipe */ 499 .direction = UE_DIR_ANY, 500 .bufsize = sizeof(struct usb_device_request), 501 .callback = &umass_t_bbb_reset1_callback, 502 .timeout = 5000, /* 5 seconds */ 503 .interval = 500, /* 500 milliseconds */ 504 }, 505 506 [UMASS_T_BBB_RESET2] = { 507 .type = UE_CONTROL, 508 .endpoint = 0x00, /* Control pipe */ 509 .direction = UE_DIR_ANY, 510 .bufsize = sizeof(struct usb_device_request), 511 .callback = &umass_t_bbb_reset2_callback, 512 .timeout = 5000, /* 5 seconds */ 513 .interval = 50, /* 50 milliseconds */ 514 }, 515 516 [UMASS_T_BBB_RESET3] = { 517 .type = UE_CONTROL, 518 .endpoint = 0x00, /* Control pipe */ 519 .direction = UE_DIR_ANY, 520 .bufsize = sizeof(struct usb_device_request), 521 .callback = &umass_t_bbb_reset3_callback, 522 .timeout = 5000, /* 5 seconds */ 523 .interval = 50, /* 50 milliseconds */ 524 }, 525 526 [UMASS_T_BBB_COMMAND] = { 527 .type = UE_BULK, 528 .endpoint = UE_ADDR_ANY, 529 .direction = UE_DIR_OUT, 530 .bufsize = sizeof(umass_bbb_cbw_t), 531 .callback = &umass_t_bbb_command_callback, 532 .timeout = 5000, /* 5 seconds */ 533 }, 534 535 [UMASS_T_BBB_DATA_READ] = { 536 .type = UE_BULK, 537 .endpoint = UE_ADDR_ANY, 538 .direction = UE_DIR_IN, 539 .bufsize = UMASS_BULK_SIZE, 540 .flags = {.proxy_buffer = 1,.short_xfer_ok = 1,.ext_buffer=1,}, 541 .callback = &umass_t_bbb_data_read_callback, 542 .timeout = 0, /* overwritten later */ 543 }, 544 545 [UMASS_T_BBB_DATA_RD_CS] = { 546 .type = UE_CONTROL, 547 .endpoint = 0x00, /* Control pipe */ 548 .direction = UE_DIR_ANY, 549 .bufsize = sizeof(struct usb_device_request), 550 .callback = &umass_t_bbb_data_rd_cs_callback, 551 .timeout = 5000, /* 5 seconds */ 552 }, 553 554 [UMASS_T_BBB_DATA_WRITE] = { 555 .type = UE_BULK, 556 .endpoint = UE_ADDR_ANY, 557 .direction = UE_DIR_OUT, 558 .bufsize = UMASS_BULK_SIZE, 559 .flags = {.proxy_buffer = 1,.short_xfer_ok = 1,.ext_buffer=1,}, 560 .callback = &umass_t_bbb_data_write_callback, 561 .timeout = 0, /* overwritten later */ 562 }, 563 564 [UMASS_T_BBB_DATA_WR_CS] = { 565 .type = UE_CONTROL, 566 .endpoint = 0x00, /* Control pipe */ 567 .direction = UE_DIR_ANY, 568 .bufsize = sizeof(struct usb_device_request), 569 .callback = &umass_t_bbb_data_wr_cs_callback, 570 .timeout = 5000, /* 5 seconds */ 571 }, 572 573 [UMASS_T_BBB_STATUS] = { 574 .type = UE_BULK, 575 .endpoint = UE_ADDR_ANY, 576 .direction = UE_DIR_IN, 577 .bufsize = sizeof(umass_bbb_csw_t), 578 .flags = {.short_xfer_ok = 1,}, 579 .callback = &umass_t_bbb_status_callback, 580 .timeout = 5000, /* ms */ 581 }, 582 }; 583 584 static struct usb_config umass_cbi_config[UMASS_T_CBI_MAX] = { 585 586 [UMASS_T_CBI_RESET1] = { 587 .type = UE_CONTROL, 588 .endpoint = 0x00, /* Control pipe */ 589 .direction = UE_DIR_ANY, 590 .bufsize = (sizeof(struct usb_device_request) + 591 UMASS_CBI_DIAGNOSTIC_CMDLEN), 592 .callback = &umass_t_cbi_reset1_callback, 593 .timeout = 5000, /* 5 seconds */ 594 .interval = 500, /* 500 milliseconds */ 595 }, 596 597 [UMASS_T_CBI_RESET2] = { 598 .type = UE_CONTROL, 599 .endpoint = 0x00, /* Control pipe */ 600 .direction = UE_DIR_ANY, 601 .bufsize = sizeof(struct usb_device_request), 602 .callback = &umass_t_cbi_reset2_callback, 603 .timeout = 5000, /* 5 seconds */ 604 .interval = 50, /* 50 milliseconds */ 605 }, 606 607 [UMASS_T_CBI_RESET3] = { 608 .type = UE_CONTROL, 609 .endpoint = 0x00, /* Control pipe */ 610 .direction = UE_DIR_ANY, 611 .bufsize = sizeof(struct usb_device_request), 612 .callback = &umass_t_cbi_reset3_callback, 613 .timeout = 5000, /* 5 seconds */ 614 .interval = 50, /* 50 milliseconds */ 615 }, 616 617 [UMASS_T_CBI_COMMAND] = { 618 .type = UE_CONTROL, 619 .endpoint = 0x00, /* Control pipe */ 620 .direction = UE_DIR_ANY, 621 .bufsize = (sizeof(struct usb_device_request) + 622 UMASS_MAX_CMDLEN), 623 .callback = &umass_t_cbi_command_callback, 624 .timeout = 5000, /* 5 seconds */ 625 }, 626 627 [UMASS_T_CBI_DATA_READ] = { 628 .type = UE_BULK, 629 .endpoint = UE_ADDR_ANY, 630 .direction = UE_DIR_IN, 631 .bufsize = UMASS_BULK_SIZE, 632 .flags = {.proxy_buffer = 1,.short_xfer_ok = 1,.ext_buffer=1,}, 633 .callback = &umass_t_cbi_data_read_callback, 634 .timeout = 0, /* overwritten later */ 635 }, 636 637 [UMASS_T_CBI_DATA_RD_CS] = { 638 .type = UE_CONTROL, 639 .endpoint = 0x00, /* Control pipe */ 640 .direction = UE_DIR_ANY, 641 .bufsize = sizeof(struct usb_device_request), 642 .callback = &umass_t_cbi_data_rd_cs_callback, 643 .timeout = 5000, /* 5 seconds */ 644 }, 645 646 [UMASS_T_CBI_DATA_WRITE] = { 647 .type = UE_BULK, 648 .endpoint = UE_ADDR_ANY, 649 .direction = UE_DIR_OUT, 650 .bufsize = UMASS_BULK_SIZE, 651 .flags = {.proxy_buffer = 1,.short_xfer_ok = 1,.ext_buffer=1,}, 652 .callback = &umass_t_cbi_data_write_callback, 653 .timeout = 0, /* overwritten later */ 654 }, 655 656 [UMASS_T_CBI_DATA_WR_CS] = { 657 .type = UE_CONTROL, 658 .endpoint = 0x00, /* Control pipe */ 659 .direction = UE_DIR_ANY, 660 .bufsize = sizeof(struct usb_device_request), 661 .callback = &umass_t_cbi_data_wr_cs_callback, 662 .timeout = 5000, /* 5 seconds */ 663 }, 664 665 [UMASS_T_CBI_STATUS] = { 666 .type = UE_INTERRUPT, 667 .endpoint = UE_ADDR_ANY, 668 .direction = UE_DIR_IN, 669 .flags = {.short_xfer_ok = 1,.no_pipe_ok = 1,}, 670 .bufsize = sizeof(umass_cbi_sbl_t), 671 .callback = &umass_t_cbi_status_callback, 672 .timeout = 5000, /* ms */ 673 }, 674 675 [UMASS_T_CBI_RESET4] = { 676 .type = UE_CONTROL, 677 .endpoint = 0x00, /* Control pipe */ 678 .direction = UE_DIR_ANY, 679 .bufsize = sizeof(struct usb_device_request), 680 .callback = &umass_t_cbi_reset4_callback, 681 .timeout = 5000, /* ms */ 682 }, 683 }; 684 685 /* If device cannot return valid inquiry data, fake it */ 686 static const uint8_t fake_inq_data[SHORT_INQUIRY_LENGTH] = { 687 0, /* removable */ 0x80, SCSI_REV_2, SCSI_REV_2, 688 /* additional_length */ 31, 0, 0, 0 689 }; 690 691 #define UFI_COMMAND_LENGTH 12 /* UFI commands are always 12 bytes */ 692 #define ATAPI_COMMAND_LENGTH 12 /* ATAPI commands are always 12 bytes */ 693 694 static devclass_t umass_devclass; 695 696 static device_method_t umass_methods[] = { 697 /* Device interface */ 698 DEVMETHOD(device_probe, umass_probe), 699 DEVMETHOD(device_attach, umass_attach), 700 DEVMETHOD(device_detach, umass_detach), 701 702 DEVMETHOD_END 703 }; 704 705 static driver_t umass_driver = { 706 .name = "umass", 707 .methods = umass_methods, 708 .size = sizeof(struct umass_softc), 709 }; 710 711 DRIVER_MODULE(umass, uhub, umass_driver, umass_devclass, NULL, 0); 712 MODULE_DEPEND(umass, usb, 1, 1, 1); 713 MODULE_DEPEND(umass, cam, 1, 1, 1); 714 MODULE_VERSION(umass, 1); 715 716 /* 717 * USB device probe/attach/detach 718 */ 719 720 static const STRUCT_USB_HOST_ID __used umass_devs[] = { 721 /* generic mass storage class */ 722 {USB_IFACE_CLASS(UICLASS_MASS),}, 723 }; 724 725 static uint16_t 726 umass_get_proto(struct usb_interface *iface) 727 { 728 struct usb_interface_descriptor *id; 729 uint16_t retval; 730 731 retval = 0; 732 733 /* Check for a standards compliant device */ 734 id = usbd_get_interface_descriptor(iface); 735 if ((id == NULL) || 736 (id->bInterfaceClass != UICLASS_MASS)) { 737 goto done; 738 } 739 switch (id->bInterfaceSubClass) { 740 case UISUBCLASS_SCSI: 741 retval |= UMASS_PROTO_SCSI; 742 break; 743 case UISUBCLASS_UFI: 744 retval |= UMASS_PROTO_UFI; 745 break; 746 case UISUBCLASS_RBC: 747 retval |= UMASS_PROTO_RBC; 748 break; 749 case UISUBCLASS_SFF8020I: 750 case UISUBCLASS_SFF8070I: 751 retval |= UMASS_PROTO_ATAPI; 752 break; 753 default: 754 goto done; 755 } 756 757 switch (id->bInterfaceProtocol) { 758 case UIPROTO_MASS_CBI: 759 retval |= UMASS_PROTO_CBI; 760 break; 761 case UIPROTO_MASS_CBI_I: 762 retval |= UMASS_PROTO_CBI_I; 763 break; 764 case UIPROTO_MASS_BBB_OLD: 765 case UIPROTO_MASS_BBB: 766 retval |= UMASS_PROTO_BBB; 767 break; 768 default: 769 goto done; 770 } 771 done: 772 return (retval); 773 } 774 775 /* 776 * Match the device we are seeing with the devices supported. 777 */ 778 static struct umass_probe_proto 779 umass_probe_proto(device_t dev, struct usb_attach_arg *uaa) 780 { 781 struct umass_probe_proto ret; 782 uint32_t quirks = NO_QUIRKS; 783 uint32_t proto = umass_get_proto(uaa->iface); 784 785 memset(&ret, 0, sizeof(ret)); 786 ret.error = BUS_PROBE_GENERIC; 787 788 /* Search for protocol enforcement */ 789 790 if (usb_test_quirk(uaa, UQ_MSC_FORCE_WIRE_BBB)) { 791 proto &= ~UMASS_PROTO_WIRE; 792 proto |= UMASS_PROTO_BBB; 793 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_WIRE_CBI)) { 794 proto &= ~UMASS_PROTO_WIRE; 795 proto |= UMASS_PROTO_CBI; 796 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_WIRE_CBI_I)) { 797 proto &= ~UMASS_PROTO_WIRE; 798 proto |= UMASS_PROTO_CBI_I; 799 } 800 801 if (usb_test_quirk(uaa, UQ_MSC_FORCE_PROTO_SCSI)) { 802 proto &= ~UMASS_PROTO_COMMAND; 803 proto |= UMASS_PROTO_SCSI; 804 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_PROTO_ATAPI)) { 805 proto &= ~UMASS_PROTO_COMMAND; 806 proto |= UMASS_PROTO_ATAPI; 807 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_PROTO_UFI)) { 808 proto &= ~UMASS_PROTO_COMMAND; 809 proto |= UMASS_PROTO_UFI; 810 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_PROTO_RBC)) { 811 proto &= ~UMASS_PROTO_COMMAND; 812 proto |= UMASS_PROTO_RBC; 813 } 814 815 /* Check if the protocol is invalid */ 816 817 if ((proto & UMASS_PROTO_COMMAND) == 0) { 818 ret.error = ENXIO; 819 goto done; 820 } 821 822 if ((proto & UMASS_PROTO_WIRE) == 0) { 823 ret.error = ENXIO; 824 goto done; 825 } 826 827 /* Search for quirks */ 828 829 if (usb_test_quirk(uaa, UQ_MSC_NO_TEST_UNIT_READY)) 830 quirks |= NO_TEST_UNIT_READY; 831 if (usb_test_quirk(uaa, UQ_MSC_NO_RS_CLEAR_UA)) 832 quirks |= RS_NO_CLEAR_UA; 833 if (usb_test_quirk(uaa, UQ_MSC_NO_START_STOP)) 834 quirks |= NO_START_STOP; 835 if (usb_test_quirk(uaa, UQ_MSC_NO_GETMAXLUN)) 836 quirks |= NO_GETMAXLUN; 837 if (usb_test_quirk(uaa, UQ_MSC_NO_INQUIRY)) 838 quirks |= NO_INQUIRY; 839 if (usb_test_quirk(uaa, UQ_MSC_NO_INQUIRY_EVPD)) 840 quirks |= NO_INQUIRY_EVPD; 841 if (usb_test_quirk(uaa, UQ_MSC_NO_PREVENT_ALLOW)) 842 quirks |= NO_PREVENT_ALLOW; 843 if (usb_test_quirk(uaa, UQ_MSC_NO_SYNC_CACHE)) 844 quirks |= NO_SYNCHRONIZE_CACHE; 845 if (usb_test_quirk(uaa, UQ_MSC_SHUTTLE_INIT)) 846 quirks |= SHUTTLE_INIT; 847 if (usb_test_quirk(uaa, UQ_MSC_ALT_IFACE_1)) 848 quirks |= ALT_IFACE_1; 849 if (usb_test_quirk(uaa, UQ_MSC_FLOPPY_SPEED)) 850 quirks |= FLOPPY_SPEED; 851 if (usb_test_quirk(uaa, UQ_MSC_IGNORE_RESIDUE)) 852 quirks |= IGNORE_RESIDUE; 853 if (usb_test_quirk(uaa, UQ_MSC_WRONG_CSWSIG)) 854 quirks |= WRONG_CSWSIG; 855 if (usb_test_quirk(uaa, UQ_MSC_RBC_PAD_TO_12)) 856 quirks |= RBC_PAD_TO_12; 857 if (usb_test_quirk(uaa, UQ_MSC_READ_CAP_OFFBY1)) 858 quirks |= READ_CAPACITY_OFFBY1; 859 if (usb_test_quirk(uaa, UQ_MSC_FORCE_SHORT_INQ)) 860 quirks |= FORCE_SHORT_INQUIRY; 861 862 done: 863 ret.quirks = quirks; 864 ret.proto = proto; 865 return (ret); 866 } 867 868 static int 869 umass_probe(device_t dev) 870 { 871 struct usb_attach_arg *uaa = device_get_ivars(dev); 872 struct umass_probe_proto temp; 873 874 if (uaa->usb_mode != USB_MODE_HOST) { 875 return (ENXIO); 876 } 877 temp = umass_probe_proto(dev, uaa); 878 879 return (temp.error); 880 } 881 882 static int 883 umass_attach(device_t dev) 884 { 885 struct umass_softc *sc = device_get_softc(dev); 886 struct usb_attach_arg *uaa = device_get_ivars(dev); 887 struct umass_probe_proto temp = umass_probe_proto(dev, uaa); 888 struct usb_interface_descriptor *id; 889 int err; 890 891 /* 892 * NOTE: the softc struct is cleared in device_set_driver. 893 * We can safely call umass_detach without specifically 894 * initializing the struct. 895 */ 896 897 sc->sc_dev = dev; 898 sc->sc_udev = uaa->device; 899 sc->sc_proto = temp.proto; 900 sc->sc_quirks = temp.quirks; 901 sc->sc_unit = device_get_unit(dev); 902 903 snprintf(sc->sc_name, sizeof(sc->sc_name), 904 "%s", device_get_nameunit(dev)); 905 906 device_set_usb_desc(dev); 907 908 mtx_init(&sc->sc_mtx, device_get_nameunit(dev), 909 NULL, MTX_DEF | MTX_RECURSE); 910 911 /* get interface index */ 912 913 id = usbd_get_interface_descriptor(uaa->iface); 914 if (id == NULL) { 915 device_printf(dev, "failed to get " 916 "interface number\n"); 917 goto detach; 918 } 919 sc->sc_iface_no = id->bInterfaceNumber; 920 921 #ifdef USB_DEBUG 922 device_printf(dev, " "); 923 924 switch (sc->sc_proto & UMASS_PROTO_COMMAND) { 925 case UMASS_PROTO_SCSI: 926 printf("SCSI"); 927 break; 928 case UMASS_PROTO_ATAPI: 929 printf("8070i (ATAPI)"); 930 break; 931 case UMASS_PROTO_UFI: 932 printf("UFI"); 933 break; 934 case UMASS_PROTO_RBC: 935 printf("RBC"); 936 break; 937 default: 938 printf("(unknown 0x%02x)", 939 sc->sc_proto & UMASS_PROTO_COMMAND); 940 break; 941 } 942 943 printf(" over "); 944 945 switch (sc->sc_proto & UMASS_PROTO_WIRE) { 946 case UMASS_PROTO_BBB: 947 printf("Bulk-Only"); 948 break; 949 case UMASS_PROTO_CBI: /* uses Comand/Bulk pipes */ 950 printf("CBI"); 951 break; 952 case UMASS_PROTO_CBI_I: /* uses Comand/Bulk/Interrupt pipes */ 953 printf("CBI with CCI"); 954 break; 955 default: 956 printf("(unknown 0x%02x)", 957 sc->sc_proto & UMASS_PROTO_WIRE); 958 } 959 960 printf("; quirks = 0x%04x\n", sc->sc_quirks); 961 #endif 962 963 if (sc->sc_quirks & ALT_IFACE_1) { 964 err = usbd_set_alt_interface_index 965 (uaa->device, uaa->info.bIfaceIndex, 1); 966 967 if (err) { 968 DPRINTF(sc, UDMASS_USB, "could not switch to " 969 "Alt Interface 1\n"); 970 goto detach; 971 } 972 } 973 /* allocate all required USB transfers */ 974 975 if (sc->sc_proto & UMASS_PROTO_BBB) { 976 977 err = usbd_transfer_setup(uaa->device, 978 &uaa->info.bIfaceIndex, sc->sc_xfer, umass_bbb_config, 979 UMASS_T_BBB_MAX, sc, &sc->sc_mtx); 980 981 /* skip reset first time */ 982 sc->sc_last_xfer_index = UMASS_T_BBB_COMMAND; 983 984 } else if (sc->sc_proto & (UMASS_PROTO_CBI | UMASS_PROTO_CBI_I)) { 985 986 err = usbd_transfer_setup(uaa->device, 987 &uaa->info.bIfaceIndex, sc->sc_xfer, umass_cbi_config, 988 UMASS_T_CBI_MAX, sc, &sc->sc_mtx); 989 990 /* skip reset first time */ 991 sc->sc_last_xfer_index = UMASS_T_CBI_COMMAND; 992 993 } else { 994 err = USB_ERR_INVAL; 995 } 996 997 if (err) { 998 device_printf(dev, "could not setup required " 999 "transfers, %s\n", usbd_errstr(err)); 1000 goto detach; 1001 } 1002 #ifdef USB_DEBUG 1003 if (umass_throttle > 0) { 1004 uint8_t x; 1005 int iv; 1006 1007 iv = umass_throttle; 1008 1009 if (iv < 1) 1010 iv = 1; 1011 else if (iv > 8000) 1012 iv = 8000; 1013 1014 for (x = 0; x != UMASS_T_MAX; x++) { 1015 if (sc->sc_xfer[x] != NULL) 1016 usbd_xfer_set_interval(sc->sc_xfer[x], iv); 1017 } 1018 } 1019 #endif 1020 sc->sc_transform = 1021 (sc->sc_proto & UMASS_PROTO_SCSI) ? &umass_scsi_transform : 1022 (sc->sc_proto & UMASS_PROTO_UFI) ? &umass_ufi_transform : 1023 (sc->sc_proto & UMASS_PROTO_ATAPI) ? &umass_atapi_transform : 1024 (sc->sc_proto & UMASS_PROTO_RBC) ? &umass_rbc_transform : 1025 &umass_no_transform; 1026 1027 /* from here onwards the device can be used. */ 1028 1029 if (sc->sc_quirks & SHUTTLE_INIT) { 1030 umass_init_shuttle(sc); 1031 } 1032 /* get the maximum LUN supported by the device */ 1033 1034 if (((sc->sc_proto & UMASS_PROTO_WIRE) == UMASS_PROTO_BBB) && 1035 !(sc->sc_quirks & NO_GETMAXLUN)) 1036 sc->sc_maxlun = umass_bbb_get_max_lun(sc); 1037 else 1038 sc->sc_maxlun = 0; 1039 1040 /* Prepare the SCSI command block */ 1041 sc->cam_scsi_sense.opcode = REQUEST_SENSE; 1042 sc->cam_scsi_test_unit_ready.opcode = TEST_UNIT_READY; 1043 1044 /* register the SIM */ 1045 err = umass_cam_attach_sim(sc); 1046 if (err) { 1047 goto detach; 1048 } 1049 /* scan the SIM */ 1050 umass_cam_attach(sc); 1051 1052 DPRINTF(sc, UDMASS_GEN, "Attach finished\n"); 1053 1054 return (0); /* success */ 1055 1056 detach: 1057 umass_detach(dev); 1058 return (ENXIO); /* failure */ 1059 } 1060 1061 static int 1062 umass_detach(device_t dev) 1063 { 1064 struct umass_softc *sc = device_get_softc(dev); 1065 1066 DPRINTF(sc, UDMASS_USB, "\n"); 1067 1068 /* teardown our statemachine */ 1069 1070 usbd_transfer_unsetup(sc->sc_xfer, UMASS_T_MAX); 1071 1072 mtx_lock(&sc->sc_mtx); 1073 1074 /* cancel any leftover CCB's */ 1075 1076 umass_cancel_ccb(sc); 1077 1078 umass_cam_detach_sim(sc); 1079 1080 mtx_unlock(&sc->sc_mtx); 1081 1082 mtx_destroy(&sc->sc_mtx); 1083 1084 return (0); /* success */ 1085 } 1086 1087 static void 1088 umass_init_shuttle(struct umass_softc *sc) 1089 { 1090 struct usb_device_request req; 1091 usb_error_t err; 1092 uint8_t status[2] = {0, 0}; 1093 1094 /* 1095 * The Linux driver does this, but no one can tell us what the 1096 * command does. 1097 */ 1098 req.bmRequestType = UT_READ_VENDOR_DEVICE; 1099 req.bRequest = 1; /* XXX unknown command */ 1100 USETW(req.wValue, 0); 1101 req.wIndex[0] = sc->sc_iface_no; 1102 req.wIndex[1] = 0; 1103 USETW(req.wLength, sizeof(status)); 1104 err = usbd_do_request(sc->sc_udev, NULL, &req, &status); 1105 1106 DPRINTF(sc, UDMASS_GEN, "Shuttle init returned 0x%02x%02x\n", 1107 status[0], status[1]); 1108 } 1109 1110 /* 1111 * Generic functions to handle transfers 1112 */ 1113 1114 static void 1115 umass_transfer_start(struct umass_softc *sc, uint8_t xfer_index) 1116 { 1117 DPRINTF(sc, UDMASS_GEN, "transfer index = " 1118 "%d\n", xfer_index); 1119 1120 if (sc->sc_xfer[xfer_index]) { 1121 sc->sc_last_xfer_index = xfer_index; 1122 usbd_transfer_start(sc->sc_xfer[xfer_index]); 1123 } else { 1124 umass_cancel_ccb(sc); 1125 } 1126 } 1127 1128 static void 1129 umass_reset(struct umass_softc *sc) 1130 { 1131 DPRINTF(sc, UDMASS_GEN, "resetting device\n"); 1132 1133 /* 1134 * stop the last transfer, if not already stopped: 1135 */ 1136 usbd_transfer_stop(sc->sc_xfer[sc->sc_last_xfer_index]); 1137 umass_transfer_start(sc, 0); 1138 } 1139 1140 static void 1141 umass_cancel_ccb(struct umass_softc *sc) 1142 { 1143 union ccb *ccb; 1144 1145 mtx_assert(&sc->sc_mtx, MA_OWNED); 1146 1147 ccb = sc->sc_transfer.ccb; 1148 sc->sc_transfer.ccb = NULL; 1149 sc->sc_last_xfer_index = 0; 1150 1151 if (ccb) { 1152 (sc->sc_transfer.callback) 1153 (sc, ccb, (sc->sc_transfer.data_len - 1154 sc->sc_transfer.actlen), STATUS_WIRE_FAILED); 1155 } 1156 } 1157 1158 static void 1159 umass_tr_error(struct usb_xfer *xfer, usb_error_t error) 1160 { 1161 struct umass_softc *sc = usbd_xfer_softc(xfer); 1162 1163 if (error != USB_ERR_CANCELLED) { 1164 1165 DPRINTF(sc, UDMASS_GEN, "transfer error, %s -> " 1166 "reset\n", usbd_errstr(error)); 1167 } 1168 umass_cancel_ccb(sc); 1169 } 1170 1171 /* 1172 * BBB protocol specific functions 1173 */ 1174 1175 static void 1176 umass_t_bbb_reset1_callback(struct usb_xfer *xfer, usb_error_t error) 1177 { 1178 struct umass_softc *sc = usbd_xfer_softc(xfer); 1179 struct usb_device_request req; 1180 struct usb_page_cache *pc; 1181 1182 switch (USB_GET_STATE(xfer)) { 1183 case USB_ST_TRANSFERRED: 1184 umass_transfer_start(sc, UMASS_T_BBB_RESET2); 1185 return; 1186 1187 case USB_ST_SETUP: 1188 /* 1189 * Reset recovery (5.3.4 in Universal Serial Bus Mass Storage Class) 1190 * 1191 * For Reset Recovery the host shall issue in the following order: 1192 * a) a Bulk-Only Mass Storage Reset 1193 * b) a Clear Feature HALT to the Bulk-In endpoint 1194 * c) a Clear Feature HALT to the Bulk-Out endpoint 1195 * 1196 * This is done in 3 steps, using 3 transfers: 1197 * UMASS_T_BBB_RESET1 1198 * UMASS_T_BBB_RESET2 1199 * UMASS_T_BBB_RESET3 1200 */ 1201 1202 DPRINTF(sc, UDMASS_BBB, "BBB reset!\n"); 1203 1204 req.bmRequestType = UT_WRITE_CLASS_INTERFACE; 1205 req.bRequest = UR_BBB_RESET; /* bulk only reset */ 1206 USETW(req.wValue, 0); 1207 req.wIndex[0] = sc->sc_iface_no; 1208 req.wIndex[1] = 0; 1209 USETW(req.wLength, 0); 1210 1211 pc = usbd_xfer_get_frame(xfer, 0); 1212 usbd_copy_in(pc, 0, &req, sizeof(req)); 1213 1214 usbd_xfer_set_frame_len(xfer, 0, sizeof(req)); 1215 usbd_xfer_set_frames(xfer, 1); 1216 usbd_transfer_submit(xfer); 1217 return; 1218 1219 default: /* Error */ 1220 umass_tr_error(xfer, error); 1221 return; 1222 } 1223 } 1224 1225 static void 1226 umass_t_bbb_reset2_callback(struct usb_xfer *xfer, usb_error_t error) 1227 { 1228 umass_t_bbb_data_clear_stall_callback(xfer, UMASS_T_BBB_RESET3, 1229 UMASS_T_BBB_DATA_READ, error); 1230 } 1231 1232 static void 1233 umass_t_bbb_reset3_callback(struct usb_xfer *xfer, usb_error_t error) 1234 { 1235 umass_t_bbb_data_clear_stall_callback(xfer, UMASS_T_BBB_COMMAND, 1236 UMASS_T_BBB_DATA_WRITE, error); 1237 } 1238 1239 static void 1240 umass_t_bbb_data_clear_stall_callback(struct usb_xfer *xfer, 1241 uint8_t next_xfer, uint8_t stall_xfer, usb_error_t error) 1242 { 1243 struct umass_softc *sc = usbd_xfer_softc(xfer); 1244 1245 switch (USB_GET_STATE(xfer)) { 1246 case USB_ST_TRANSFERRED: 1247 tr_transferred: 1248 umass_transfer_start(sc, next_xfer); 1249 return; 1250 1251 case USB_ST_SETUP: 1252 if (usbd_clear_stall_callback(xfer, sc->sc_xfer[stall_xfer])) { 1253 goto tr_transferred; 1254 } 1255 return; 1256 1257 default: /* Error */ 1258 umass_tr_error(xfer, error); 1259 return; 1260 } 1261 } 1262 1263 static void 1264 umass_t_bbb_command_callback(struct usb_xfer *xfer, usb_error_t error) 1265 { 1266 struct umass_softc *sc = usbd_xfer_softc(xfer); 1267 union ccb *ccb = sc->sc_transfer.ccb; 1268 struct usb_page_cache *pc; 1269 uint32_t tag; 1270 1271 switch (USB_GET_STATE(xfer)) { 1272 case USB_ST_TRANSFERRED: 1273 umass_transfer_start 1274 (sc, ((sc->sc_transfer.dir == DIR_IN) ? UMASS_T_BBB_DATA_READ : 1275 (sc->sc_transfer.dir == DIR_OUT) ? UMASS_T_BBB_DATA_WRITE : 1276 UMASS_T_BBB_STATUS)); 1277 return; 1278 1279 case USB_ST_SETUP: 1280 1281 sc->sc_status_try = 0; 1282 1283 if (ccb) { 1284 1285 /* 1286 * the initial value is not important, 1287 * as long as the values are unique: 1288 */ 1289 tag = UGETDW(sc->cbw.dCBWTag) + 1; 1290 1291 USETDW(sc->cbw.dCBWSignature, CBWSIGNATURE); 1292 USETDW(sc->cbw.dCBWTag, tag); 1293 1294 /* 1295 * dCBWDataTransferLength: 1296 * This field indicates the number of bytes of data that the host 1297 * intends to transfer on the IN or OUT Bulk endpoint(as indicated by 1298 * the Direction bit) during the execution of this command. If this 1299 * field is set to 0, the device will expect that no data will be 1300 * transferred IN or OUT during this command, regardless of the value 1301 * of the Direction bit defined in dCBWFlags. 1302 */ 1303 USETDW(sc->cbw.dCBWDataTransferLength, sc->sc_transfer.data_len); 1304 1305 /* 1306 * dCBWFlags: 1307 * The bits of the Flags field are defined as follows: 1308 * Bits 0-6 reserved 1309 * Bit 7 Direction - this bit shall be ignored if the 1310 * dCBWDataTransferLength field is zero. 1311 * 0 = data Out from host to device 1312 * 1 = data In from device to host 1313 */ 1314 sc->cbw.bCBWFlags = ((sc->sc_transfer.dir == DIR_IN) ? 1315 CBWFLAGS_IN : CBWFLAGS_OUT); 1316 sc->cbw.bCBWLUN = sc->sc_transfer.lun; 1317 1318 if (sc->sc_transfer.cmd_len > sizeof(sc->cbw.CBWCDB)) { 1319 sc->sc_transfer.cmd_len = sizeof(sc->cbw.CBWCDB); 1320 DPRINTF(sc, UDMASS_BBB, "Truncating long command!\n"); 1321 } 1322 sc->cbw.bCDBLength = sc->sc_transfer.cmd_len; 1323 1324 memcpy(sc->cbw.CBWCDB, sc->sc_transfer.cmd_data, 1325 sc->sc_transfer.cmd_len); 1326 1327 memset(sc->sc_transfer.cmd_data + 1328 sc->sc_transfer.cmd_len, 0, 1329 sizeof(sc->cbw.CBWCDB) - 1330 sc->sc_transfer.cmd_len); 1331 1332 DIF(UDMASS_BBB, umass_bbb_dump_cbw(sc, &sc->cbw)); 1333 1334 pc = usbd_xfer_get_frame(xfer, 0); 1335 usbd_copy_in(pc, 0, &sc->cbw, sizeof(sc->cbw)); 1336 usbd_xfer_set_frame_len(xfer, 0, sizeof(sc->cbw)); 1337 1338 usbd_transfer_submit(xfer); 1339 } 1340 return; 1341 1342 default: /* Error */ 1343 umass_tr_error(xfer, error); 1344 return; 1345 } 1346 } 1347 1348 static void 1349 umass_t_bbb_data_read_callback(struct usb_xfer *xfer, usb_error_t error) 1350 { 1351 struct umass_softc *sc = usbd_xfer_softc(xfer); 1352 uint32_t max_bulk = usbd_xfer_max_len(xfer); 1353 int actlen, sumlen; 1354 1355 usbd_xfer_status(xfer, &actlen, &sumlen, NULL, NULL); 1356 1357 switch (USB_GET_STATE(xfer)) { 1358 case USB_ST_TRANSFERRED: 1359 sc->sc_transfer.data_rem -= actlen; 1360 sc->sc_transfer.data_ptr += actlen; 1361 sc->sc_transfer.actlen += actlen; 1362 1363 if (actlen < sumlen) { 1364 /* short transfer */ 1365 sc->sc_transfer.data_rem = 0; 1366 } 1367 case USB_ST_SETUP: 1368 DPRINTF(sc, UDMASS_BBB, "max_bulk=%d, data_rem=%d\n", 1369 max_bulk, sc->sc_transfer.data_rem); 1370 1371 if (sc->sc_transfer.data_rem == 0) { 1372 umass_transfer_start(sc, UMASS_T_BBB_STATUS); 1373 return; 1374 } 1375 if (max_bulk > sc->sc_transfer.data_rem) { 1376 max_bulk = sc->sc_transfer.data_rem; 1377 } 1378 usbd_xfer_set_timeout(xfer, sc->sc_transfer.data_timeout); 1379 1380 usbd_xfer_set_frame_data(xfer, 0, sc->sc_transfer.data_ptr, 1381 max_bulk); 1382 1383 usbd_transfer_submit(xfer); 1384 return; 1385 1386 default: /* Error */ 1387 if (error == USB_ERR_CANCELLED) { 1388 umass_tr_error(xfer, error); 1389 } else { 1390 umass_transfer_start(sc, UMASS_T_BBB_DATA_RD_CS); 1391 } 1392 return; 1393 } 1394 } 1395 1396 static void 1397 umass_t_bbb_data_rd_cs_callback(struct usb_xfer *xfer, usb_error_t error) 1398 { 1399 umass_t_bbb_data_clear_stall_callback(xfer, UMASS_T_BBB_STATUS, 1400 UMASS_T_BBB_DATA_READ, error); 1401 } 1402 1403 static void 1404 umass_t_bbb_data_write_callback(struct usb_xfer *xfer, usb_error_t error) 1405 { 1406 struct umass_softc *sc = usbd_xfer_softc(xfer); 1407 uint32_t max_bulk = usbd_xfer_max_len(xfer); 1408 int actlen, sumlen; 1409 1410 usbd_xfer_status(xfer, &actlen, &sumlen, NULL, NULL); 1411 1412 switch (USB_GET_STATE(xfer)) { 1413 case USB_ST_TRANSFERRED: 1414 sc->sc_transfer.data_rem -= actlen; 1415 sc->sc_transfer.data_ptr += actlen; 1416 sc->sc_transfer.actlen += actlen; 1417 1418 if (actlen < sumlen) { 1419 /* short transfer */ 1420 sc->sc_transfer.data_rem = 0; 1421 } 1422 case USB_ST_SETUP: 1423 DPRINTF(sc, UDMASS_BBB, "max_bulk=%d, data_rem=%d\n", 1424 max_bulk, sc->sc_transfer.data_rem); 1425 1426 if (sc->sc_transfer.data_rem == 0) { 1427 umass_transfer_start(sc, UMASS_T_BBB_STATUS); 1428 return; 1429 } 1430 if (max_bulk > sc->sc_transfer.data_rem) { 1431 max_bulk = sc->sc_transfer.data_rem; 1432 } 1433 usbd_xfer_set_timeout(xfer, sc->sc_transfer.data_timeout); 1434 1435 usbd_xfer_set_frame_data(xfer, 0, sc->sc_transfer.data_ptr, 1436 max_bulk); 1437 1438 usbd_transfer_submit(xfer); 1439 return; 1440 1441 default: /* Error */ 1442 if (error == USB_ERR_CANCELLED) { 1443 umass_tr_error(xfer, error); 1444 } else { 1445 umass_transfer_start(sc, UMASS_T_BBB_DATA_WR_CS); 1446 } 1447 return; 1448 } 1449 } 1450 1451 static void 1452 umass_t_bbb_data_wr_cs_callback(struct usb_xfer *xfer, usb_error_t error) 1453 { 1454 umass_t_bbb_data_clear_stall_callback(xfer, UMASS_T_BBB_STATUS, 1455 UMASS_T_BBB_DATA_WRITE, error); 1456 } 1457 1458 static void 1459 umass_t_bbb_status_callback(struct usb_xfer *xfer, usb_error_t error) 1460 { 1461 struct umass_softc *sc = usbd_xfer_softc(xfer); 1462 union ccb *ccb = sc->sc_transfer.ccb; 1463 struct usb_page_cache *pc; 1464 uint32_t residue; 1465 int actlen; 1466 1467 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL); 1468 1469 switch (USB_GET_STATE(xfer)) { 1470 case USB_ST_TRANSFERRED: 1471 1472 /* 1473 * Do a full reset if there is something wrong with the CSW: 1474 */ 1475 sc->sc_status_try = 1; 1476 1477 /* Zero missing parts of the CSW: */ 1478 1479 if (actlen < (int)sizeof(sc->csw)) 1480 memset(&sc->csw, 0, sizeof(sc->csw)); 1481 1482 pc = usbd_xfer_get_frame(xfer, 0); 1483 usbd_copy_out(pc, 0, &sc->csw, actlen); 1484 1485 DIF(UDMASS_BBB, umass_bbb_dump_csw(sc, &sc->csw)); 1486 1487 residue = UGETDW(sc->csw.dCSWDataResidue); 1488 1489 if ((!residue) || (sc->sc_quirks & IGNORE_RESIDUE)) { 1490 residue = (sc->sc_transfer.data_len - 1491 sc->sc_transfer.actlen); 1492 } 1493 if (residue > sc->sc_transfer.data_len) { 1494 DPRINTF(sc, UDMASS_BBB, "truncating residue from %d " 1495 "to %d bytes\n", residue, sc->sc_transfer.data_len); 1496 residue = sc->sc_transfer.data_len; 1497 } 1498 /* translate weird command-status signatures: */ 1499 if (sc->sc_quirks & WRONG_CSWSIG) { 1500 1501 uint32_t temp = UGETDW(sc->csw.dCSWSignature); 1502 1503 if ((temp == CSWSIGNATURE_OLYMPUS_C1) || 1504 (temp == CSWSIGNATURE_IMAGINATION_DBX1)) { 1505 USETDW(sc->csw.dCSWSignature, CSWSIGNATURE); 1506 } 1507 } 1508 /* check CSW and handle eventual error */ 1509 if (UGETDW(sc->csw.dCSWSignature) != CSWSIGNATURE) { 1510 DPRINTF(sc, UDMASS_BBB, "bad CSW signature 0x%08x != 0x%08x\n", 1511 UGETDW(sc->csw.dCSWSignature), CSWSIGNATURE); 1512 /* 1513 * Invalid CSW: Wrong signature or wrong tag might 1514 * indicate that we lost synchronization. Reset the 1515 * device. 1516 */ 1517 goto tr_error; 1518 } else if (UGETDW(sc->csw.dCSWTag) != UGETDW(sc->cbw.dCBWTag)) { 1519 DPRINTF(sc, UDMASS_BBB, "Invalid CSW: tag 0x%08x should be " 1520 "0x%08x\n", UGETDW(sc->csw.dCSWTag), 1521 UGETDW(sc->cbw.dCBWTag)); 1522 goto tr_error; 1523 } else if (sc->csw.bCSWStatus > CSWSTATUS_PHASE) { 1524 DPRINTF(sc, UDMASS_BBB, "Invalid CSW: status %d > %d\n", 1525 sc->csw.bCSWStatus, CSWSTATUS_PHASE); 1526 goto tr_error; 1527 } else if (sc->csw.bCSWStatus == CSWSTATUS_PHASE) { 1528 DPRINTF(sc, UDMASS_BBB, "Phase error, residue = " 1529 "%d\n", residue); 1530 goto tr_error; 1531 } else if (sc->sc_transfer.actlen > sc->sc_transfer.data_len) { 1532 DPRINTF(sc, UDMASS_BBB, "Buffer overrun %d > %d\n", 1533 sc->sc_transfer.actlen, sc->sc_transfer.data_len); 1534 goto tr_error; 1535 } else if (sc->csw.bCSWStatus == CSWSTATUS_FAILED) { 1536 DPRINTF(sc, UDMASS_BBB, "Command failed, residue = " 1537 "%d\n", residue); 1538 1539 sc->sc_transfer.ccb = NULL; 1540 1541 sc->sc_last_xfer_index = UMASS_T_BBB_COMMAND; 1542 1543 (sc->sc_transfer.callback) 1544 (sc, ccb, residue, STATUS_CMD_FAILED); 1545 } else { 1546 sc->sc_transfer.ccb = NULL; 1547 1548 sc->sc_last_xfer_index = UMASS_T_BBB_COMMAND; 1549 1550 (sc->sc_transfer.callback) 1551 (sc, ccb, residue, STATUS_CMD_OK); 1552 } 1553 return; 1554 1555 case USB_ST_SETUP: 1556 usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer)); 1557 usbd_transfer_submit(xfer); 1558 return; 1559 1560 default: 1561 tr_error: 1562 DPRINTF(sc, UDMASS_BBB, "Failed to read CSW: %s, try %d\n", 1563 usbd_errstr(error), sc->sc_status_try); 1564 1565 if ((error == USB_ERR_CANCELLED) || 1566 (sc->sc_status_try)) { 1567 umass_tr_error(xfer, error); 1568 } else { 1569 sc->sc_status_try = 1; 1570 umass_transfer_start(sc, UMASS_T_BBB_DATA_RD_CS); 1571 } 1572 return; 1573 } 1574 } 1575 1576 static void 1577 umass_command_start(struct umass_softc *sc, uint8_t dir, 1578 void *data_ptr, uint32_t data_len, 1579 uint32_t data_timeout, umass_callback_t *callback, 1580 union ccb *ccb) 1581 { 1582 sc->sc_transfer.lun = ccb->ccb_h.target_lun; 1583 1584 /* 1585 * NOTE: assumes that "sc->sc_transfer.cmd_data" and 1586 * "sc->sc_transfer.cmd_len" has been properly 1587 * initialized. 1588 */ 1589 1590 sc->sc_transfer.dir = data_len ? dir : DIR_NONE; 1591 sc->sc_transfer.data_ptr = data_ptr; 1592 sc->sc_transfer.data_len = data_len; 1593 sc->sc_transfer.data_rem = data_len; 1594 sc->sc_transfer.data_timeout = (data_timeout + UMASS_TIMEOUT); 1595 1596 sc->sc_transfer.actlen = 0; 1597 sc->sc_transfer.callback = callback; 1598 sc->sc_transfer.ccb = ccb; 1599 1600 if (sc->sc_xfer[sc->sc_last_xfer_index]) { 1601 usbd_transfer_start(sc->sc_xfer[sc->sc_last_xfer_index]); 1602 } else { 1603 umass_cancel_ccb(sc); 1604 } 1605 } 1606 1607 static uint8_t 1608 umass_bbb_get_max_lun(struct umass_softc *sc) 1609 { 1610 struct usb_device_request req; 1611 usb_error_t err; 1612 uint8_t buf = 0; 1613 1614 /* The Get Max Lun command is a class-specific request. */ 1615 req.bmRequestType = UT_READ_CLASS_INTERFACE; 1616 req.bRequest = UR_BBB_GET_MAX_LUN; 1617 USETW(req.wValue, 0); 1618 req.wIndex[0] = sc->sc_iface_no; 1619 req.wIndex[1] = 0; 1620 USETW(req.wLength, 1); 1621 1622 err = usbd_do_request(sc->sc_udev, NULL, &req, &buf); 1623 if (err) { 1624 buf = 0; 1625 1626 /* Device doesn't support Get Max Lun request. */ 1627 printf("%s: Get Max Lun not supported (%s)\n", 1628 sc->sc_name, usbd_errstr(err)); 1629 } 1630 return (buf); 1631 } 1632 1633 /* 1634 * Command/Bulk/Interrupt (CBI) specific functions 1635 */ 1636 1637 static void 1638 umass_cbi_start_status(struct umass_softc *sc) 1639 { 1640 if (sc->sc_xfer[UMASS_T_CBI_STATUS]) { 1641 umass_transfer_start(sc, UMASS_T_CBI_STATUS); 1642 } else { 1643 union ccb *ccb = sc->sc_transfer.ccb; 1644 1645 sc->sc_transfer.ccb = NULL; 1646 1647 sc->sc_last_xfer_index = UMASS_T_CBI_COMMAND; 1648 1649 (sc->sc_transfer.callback) 1650 (sc, ccb, (sc->sc_transfer.data_len - 1651 sc->sc_transfer.actlen), STATUS_CMD_UNKNOWN); 1652 } 1653 } 1654 1655 static void 1656 umass_t_cbi_reset1_callback(struct usb_xfer *xfer, usb_error_t error) 1657 { 1658 struct umass_softc *sc = usbd_xfer_softc(xfer); 1659 struct usb_device_request req; 1660 struct usb_page_cache *pc; 1661 uint8_t buf[UMASS_CBI_DIAGNOSTIC_CMDLEN]; 1662 1663 uint8_t i; 1664 1665 switch (USB_GET_STATE(xfer)) { 1666 case USB_ST_TRANSFERRED: 1667 umass_transfer_start(sc, UMASS_T_CBI_RESET2); 1668 break; 1669 1670 case USB_ST_SETUP: 1671 /* 1672 * Command Block Reset Protocol 1673 * 1674 * First send a reset request to the device. Then clear 1675 * any possibly stalled bulk endpoints. 1676 * 1677 * This is done in 3 steps, using 3 transfers: 1678 * UMASS_T_CBI_RESET1 1679 * UMASS_T_CBI_RESET2 1680 * UMASS_T_CBI_RESET3 1681 * UMASS_T_CBI_RESET4 (only if there is an interrupt endpoint) 1682 */ 1683 1684 DPRINTF(sc, UDMASS_CBI, "CBI reset!\n"); 1685 1686 req.bmRequestType = UT_WRITE_CLASS_INTERFACE; 1687 req.bRequest = UR_CBI_ADSC; 1688 USETW(req.wValue, 0); 1689 req.wIndex[0] = sc->sc_iface_no; 1690 req.wIndex[1] = 0; 1691 USETW(req.wLength, UMASS_CBI_DIAGNOSTIC_CMDLEN); 1692 1693 /* 1694 * The 0x1d code is the SEND DIAGNOSTIC command. To 1695 * distinguish between the two, the last 10 bytes of the CBL 1696 * is filled with 0xff (section 2.2 of the CBI 1697 * specification) 1698 */ 1699 buf[0] = 0x1d; /* Command Block Reset */ 1700 buf[1] = 0x04; 1701 1702 for (i = 2; i < UMASS_CBI_DIAGNOSTIC_CMDLEN; i++) { 1703 buf[i] = 0xff; 1704 } 1705 1706 pc = usbd_xfer_get_frame(xfer, 0); 1707 usbd_copy_in(pc, 0, &req, sizeof(req)); 1708 pc = usbd_xfer_get_frame(xfer, 1); 1709 usbd_copy_in(pc, 0, buf, sizeof(buf)); 1710 1711 usbd_xfer_set_frame_len(xfer, 0, sizeof(req)); 1712 usbd_xfer_set_frame_len(xfer, 1, sizeof(buf)); 1713 usbd_xfer_set_frames(xfer, 2); 1714 usbd_transfer_submit(xfer); 1715 break; 1716 1717 default: /* Error */ 1718 if (error == USB_ERR_CANCELLED) 1719 umass_tr_error(xfer, error); 1720 else 1721 umass_transfer_start(sc, UMASS_T_CBI_RESET2); 1722 break; 1723 } 1724 } 1725 1726 static void 1727 umass_t_cbi_reset2_callback(struct usb_xfer *xfer, usb_error_t error) 1728 { 1729 umass_t_cbi_data_clear_stall_callback(xfer, UMASS_T_CBI_RESET3, 1730 UMASS_T_CBI_DATA_READ, error); 1731 } 1732 1733 static void 1734 umass_t_cbi_reset3_callback(struct usb_xfer *xfer, usb_error_t error) 1735 { 1736 struct umass_softc *sc = usbd_xfer_softc(xfer); 1737 1738 umass_t_cbi_data_clear_stall_callback 1739 (xfer, (sc->sc_xfer[UMASS_T_CBI_RESET4] && 1740 sc->sc_xfer[UMASS_T_CBI_STATUS]) ? 1741 UMASS_T_CBI_RESET4 : UMASS_T_CBI_COMMAND, 1742 UMASS_T_CBI_DATA_WRITE, error); 1743 } 1744 1745 static void 1746 umass_t_cbi_reset4_callback(struct usb_xfer *xfer, usb_error_t error) 1747 { 1748 umass_t_cbi_data_clear_stall_callback(xfer, UMASS_T_CBI_COMMAND, 1749 UMASS_T_CBI_STATUS, error); 1750 } 1751 1752 static void 1753 umass_t_cbi_data_clear_stall_callback(struct usb_xfer *xfer, 1754 uint8_t next_xfer, uint8_t stall_xfer, usb_error_t error) 1755 { 1756 struct umass_softc *sc = usbd_xfer_softc(xfer); 1757 1758 switch (USB_GET_STATE(xfer)) { 1759 case USB_ST_TRANSFERRED: 1760 tr_transferred: 1761 if (next_xfer == UMASS_T_CBI_STATUS) { 1762 umass_cbi_start_status(sc); 1763 } else { 1764 umass_transfer_start(sc, next_xfer); 1765 } 1766 break; 1767 1768 case USB_ST_SETUP: 1769 if (usbd_clear_stall_callback(xfer, sc->sc_xfer[stall_xfer])) { 1770 goto tr_transferred; /* should not happen */ 1771 } 1772 break; 1773 1774 default: /* Error */ 1775 umass_tr_error(xfer, error); 1776 break; 1777 } 1778 } 1779 1780 static void 1781 umass_t_cbi_command_callback(struct usb_xfer *xfer, usb_error_t error) 1782 { 1783 struct umass_softc *sc = usbd_xfer_softc(xfer); 1784 union ccb *ccb = sc->sc_transfer.ccb; 1785 struct usb_device_request req; 1786 struct usb_page_cache *pc; 1787 1788 switch (USB_GET_STATE(xfer)) { 1789 case USB_ST_TRANSFERRED: 1790 1791 if (sc->sc_transfer.dir == DIR_NONE) { 1792 umass_cbi_start_status(sc); 1793 } else { 1794 umass_transfer_start 1795 (sc, (sc->sc_transfer.dir == DIR_IN) ? 1796 UMASS_T_CBI_DATA_READ : UMASS_T_CBI_DATA_WRITE); 1797 } 1798 break; 1799 1800 case USB_ST_SETUP: 1801 1802 if (ccb) { 1803 1804 /* 1805 * do a CBI transfer with cmd_len bytes from 1806 * cmd_data, possibly a data phase of data_len 1807 * bytes from/to the device and finally a status 1808 * read phase. 1809 */ 1810 1811 req.bmRequestType = UT_WRITE_CLASS_INTERFACE; 1812 req.bRequest = UR_CBI_ADSC; 1813 USETW(req.wValue, 0); 1814 req.wIndex[0] = sc->sc_iface_no; 1815 req.wIndex[1] = 0; 1816 req.wLength[0] = sc->sc_transfer.cmd_len; 1817 req.wLength[1] = 0; 1818 1819 pc = usbd_xfer_get_frame(xfer, 0); 1820 usbd_copy_in(pc, 0, &req, sizeof(req)); 1821 pc = usbd_xfer_get_frame(xfer, 1); 1822 usbd_copy_in(pc, 0, sc->sc_transfer.cmd_data, 1823 sc->sc_transfer.cmd_len); 1824 1825 usbd_xfer_set_frame_len(xfer, 0, sizeof(req)); 1826 usbd_xfer_set_frame_len(xfer, 1, sc->sc_transfer.cmd_len); 1827 usbd_xfer_set_frames(xfer, 1828 sc->sc_transfer.cmd_len ? 2 : 1); 1829 1830 DIF(UDMASS_CBI, 1831 umass_cbi_dump_cmd(sc, 1832 sc->sc_transfer.cmd_data, 1833 sc->sc_transfer.cmd_len)); 1834 1835 usbd_transfer_submit(xfer); 1836 } 1837 break; 1838 1839 default: /* Error */ 1840 /* 1841 * STALL on the control pipe can be result of the command error. 1842 * Attempt to clear this STALL same as for bulk pipe also 1843 * results in command completion interrupt, but ASC/ASCQ there 1844 * look like not always valid, so don't bother about it. 1845 */ 1846 if ((error == USB_ERR_STALLED) || 1847 (sc->sc_transfer.callback == &umass_cam_cb)) { 1848 sc->sc_transfer.ccb = NULL; 1849 (sc->sc_transfer.callback) 1850 (sc, ccb, sc->sc_transfer.data_len, 1851 STATUS_CMD_UNKNOWN); 1852 } else { 1853 umass_tr_error(xfer, error); 1854 /* skip reset */ 1855 sc->sc_last_xfer_index = UMASS_T_CBI_COMMAND; 1856 } 1857 break; 1858 } 1859 } 1860 1861 static void 1862 umass_t_cbi_data_read_callback(struct usb_xfer *xfer, usb_error_t error) 1863 { 1864 struct umass_softc *sc = usbd_xfer_softc(xfer); 1865 uint32_t max_bulk = usbd_xfer_max_len(xfer); 1866 int actlen, sumlen; 1867 1868 usbd_xfer_status(xfer, &actlen, &sumlen, NULL, NULL); 1869 1870 switch (USB_GET_STATE(xfer)) { 1871 case USB_ST_TRANSFERRED: 1872 sc->sc_transfer.data_rem -= actlen; 1873 sc->sc_transfer.data_ptr += actlen; 1874 sc->sc_transfer.actlen += actlen; 1875 1876 if (actlen < sumlen) { 1877 /* short transfer */ 1878 sc->sc_transfer.data_rem = 0; 1879 } 1880 case USB_ST_SETUP: 1881 DPRINTF(sc, UDMASS_CBI, "max_bulk=%d, data_rem=%d\n", 1882 max_bulk, sc->sc_transfer.data_rem); 1883 1884 if (sc->sc_transfer.data_rem == 0) { 1885 umass_cbi_start_status(sc); 1886 break; 1887 } 1888 if (max_bulk > sc->sc_transfer.data_rem) { 1889 max_bulk = sc->sc_transfer.data_rem; 1890 } 1891 usbd_xfer_set_timeout(xfer, sc->sc_transfer.data_timeout); 1892 1893 usbd_xfer_set_frame_data(xfer, 0, sc->sc_transfer.data_ptr, 1894 max_bulk); 1895 1896 usbd_transfer_submit(xfer); 1897 break; 1898 1899 default: /* Error */ 1900 if ((error == USB_ERR_CANCELLED) || 1901 (sc->sc_transfer.callback != &umass_cam_cb)) { 1902 umass_tr_error(xfer, error); 1903 } else { 1904 umass_transfer_start(sc, UMASS_T_CBI_DATA_RD_CS); 1905 } 1906 break; 1907 } 1908 } 1909 1910 static void 1911 umass_t_cbi_data_rd_cs_callback(struct usb_xfer *xfer, usb_error_t error) 1912 { 1913 umass_t_cbi_data_clear_stall_callback(xfer, UMASS_T_CBI_STATUS, 1914 UMASS_T_CBI_DATA_READ, error); 1915 } 1916 1917 static void 1918 umass_t_cbi_data_write_callback(struct usb_xfer *xfer, usb_error_t error) 1919 { 1920 struct umass_softc *sc = usbd_xfer_softc(xfer); 1921 uint32_t max_bulk = usbd_xfer_max_len(xfer); 1922 int actlen, sumlen; 1923 1924 usbd_xfer_status(xfer, &actlen, &sumlen, NULL, NULL); 1925 1926 switch (USB_GET_STATE(xfer)) { 1927 case USB_ST_TRANSFERRED: 1928 sc->sc_transfer.data_rem -= actlen; 1929 sc->sc_transfer.data_ptr += actlen; 1930 sc->sc_transfer.actlen += actlen; 1931 1932 if (actlen < sumlen) { 1933 /* short transfer */ 1934 sc->sc_transfer.data_rem = 0; 1935 } 1936 case USB_ST_SETUP: 1937 DPRINTF(sc, UDMASS_CBI, "max_bulk=%d, data_rem=%d\n", 1938 max_bulk, sc->sc_transfer.data_rem); 1939 1940 if (sc->sc_transfer.data_rem == 0) { 1941 umass_cbi_start_status(sc); 1942 break; 1943 } 1944 if (max_bulk > sc->sc_transfer.data_rem) { 1945 max_bulk = sc->sc_transfer.data_rem; 1946 } 1947 usbd_xfer_set_timeout(xfer, sc->sc_transfer.data_timeout); 1948 1949 usbd_xfer_set_frame_data(xfer, 0, sc->sc_transfer.data_ptr, 1950 max_bulk); 1951 1952 usbd_transfer_submit(xfer); 1953 break; 1954 1955 default: /* Error */ 1956 if ((error == USB_ERR_CANCELLED) || 1957 (sc->sc_transfer.callback != &umass_cam_cb)) { 1958 umass_tr_error(xfer, error); 1959 } else { 1960 umass_transfer_start(sc, UMASS_T_CBI_DATA_WR_CS); 1961 } 1962 break; 1963 } 1964 } 1965 1966 static void 1967 umass_t_cbi_data_wr_cs_callback(struct usb_xfer *xfer, usb_error_t error) 1968 { 1969 umass_t_cbi_data_clear_stall_callback(xfer, UMASS_T_CBI_STATUS, 1970 UMASS_T_CBI_DATA_WRITE, error); 1971 } 1972 1973 static void 1974 umass_t_cbi_status_callback(struct usb_xfer *xfer, usb_error_t error) 1975 { 1976 struct umass_softc *sc = usbd_xfer_softc(xfer); 1977 union ccb *ccb = sc->sc_transfer.ccb; 1978 struct usb_page_cache *pc; 1979 uint32_t residue; 1980 uint8_t status; 1981 int actlen; 1982 1983 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL); 1984 1985 switch (USB_GET_STATE(xfer)) { 1986 case USB_ST_TRANSFERRED: 1987 1988 if (actlen < (int)sizeof(sc->sbl)) { 1989 goto tr_setup; 1990 } 1991 pc = usbd_xfer_get_frame(xfer, 0); 1992 usbd_copy_out(pc, 0, &sc->sbl, sizeof(sc->sbl)); 1993 1994 residue = (sc->sc_transfer.data_len - 1995 sc->sc_transfer.actlen); 1996 1997 /* dissect the information in the buffer */ 1998 1999 if (sc->sc_proto & UMASS_PROTO_UFI) { 2000 2001 /* 2002 * Section 3.4.3.1.3 specifies that the UFI command 2003 * protocol returns an ASC and ASCQ in the interrupt 2004 * data block. 2005 */ 2006 2007 DPRINTF(sc, UDMASS_CBI, "UFI CCI, ASC = 0x%02x, " 2008 "ASCQ = 0x%02x\n", sc->sbl.ufi.asc, 2009 sc->sbl.ufi.ascq); 2010 2011 status = (((sc->sbl.ufi.asc == 0) && 2012 (sc->sbl.ufi.ascq == 0)) ? 2013 STATUS_CMD_OK : STATUS_CMD_FAILED); 2014 2015 sc->sc_transfer.ccb = NULL; 2016 2017 sc->sc_last_xfer_index = UMASS_T_CBI_COMMAND; 2018 2019 (sc->sc_transfer.callback) 2020 (sc, ccb, residue, status); 2021 2022 break; 2023 2024 } else { 2025 2026 /* Command Interrupt Data Block */ 2027 2028 DPRINTF(sc, UDMASS_CBI, "type=0x%02x, value=0x%02x\n", 2029 sc->sbl.common.type, sc->sbl.common.value); 2030 2031 if (sc->sbl.common.type == IDB_TYPE_CCI) { 2032 2033 status = (sc->sbl.common.value & IDB_VALUE_STATUS_MASK); 2034 2035 status = ((status == IDB_VALUE_PASS) ? STATUS_CMD_OK : 2036 (status == IDB_VALUE_FAIL) ? STATUS_CMD_FAILED : 2037 (status == IDB_VALUE_PERSISTENT) ? STATUS_CMD_FAILED : 2038 STATUS_WIRE_FAILED); 2039 2040 sc->sc_transfer.ccb = NULL; 2041 2042 sc->sc_last_xfer_index = UMASS_T_CBI_COMMAND; 2043 2044 (sc->sc_transfer.callback) 2045 (sc, ccb, residue, status); 2046 2047 break; 2048 } 2049 } 2050 2051 /* fallthrough */ 2052 2053 case USB_ST_SETUP: 2054 tr_setup: 2055 usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer)); 2056 usbd_transfer_submit(xfer); 2057 break; 2058 2059 default: /* Error */ 2060 DPRINTF(sc, UDMASS_CBI, "Failed to read CSW: %s\n", 2061 usbd_errstr(error)); 2062 umass_tr_error(xfer, error); 2063 break; 2064 } 2065 } 2066 2067 /* 2068 * CAM specific functions (used by SCSI, UFI, 8070i (ATAPI)) 2069 */ 2070 2071 static int 2072 umass_cam_attach_sim(struct umass_softc *sc) 2073 { 2074 struct cam_devq *devq; /* Per device Queue */ 2075 2076 /* 2077 * A HBA is attached to the CAM layer. 2078 * 2079 * The CAM layer will then after a while start probing for devices on 2080 * the bus. The number of SIMs is limited to one. 2081 */ 2082 2083 devq = cam_simq_alloc(1 /* maximum openings */ ); 2084 if (devq == NULL) { 2085 return (ENOMEM); 2086 } 2087 sc->sc_sim = cam_sim_alloc 2088 (&umass_cam_action, &umass_cam_poll, 2089 DEVNAME_SIM, 2090 sc /* priv */ , 2091 sc->sc_unit /* unit number */ , 2092 &sc->sc_mtx /* mutex */ , 2093 1 /* maximum device openings */ , 2094 0 /* maximum tagged device openings */ , 2095 devq); 2096 2097 if (sc->sc_sim == NULL) { 2098 cam_simq_free(devq); 2099 return (ENOMEM); 2100 } 2101 2102 mtx_lock(&sc->sc_mtx); 2103 2104 if (xpt_bus_register(sc->sc_sim, sc->sc_dev, 2105 sc->sc_unit) != CAM_SUCCESS) { 2106 mtx_unlock(&sc->sc_mtx); 2107 return (ENOMEM); 2108 } 2109 mtx_unlock(&sc->sc_mtx); 2110 2111 return (0); 2112 } 2113 2114 static void 2115 umass_cam_attach(struct umass_softc *sc) 2116 { 2117 #ifndef USB_DEBUG 2118 if (bootverbose) 2119 #endif 2120 printf("%s:%d:%d:%d: Attached to scbus%d\n", 2121 sc->sc_name, cam_sim_path(sc->sc_sim), 2122 sc->sc_unit, CAM_LUN_WILDCARD, 2123 cam_sim_path(sc->sc_sim)); 2124 } 2125 2126 /* umass_cam_detach 2127 * detach from the CAM layer 2128 */ 2129 2130 static void 2131 umass_cam_detach_sim(struct umass_softc *sc) 2132 { 2133 if (sc->sc_sim != NULL) { 2134 if (xpt_bus_deregister(cam_sim_path(sc->sc_sim))) { 2135 /* accessing the softc is not possible after this */ 2136 sc->sc_sim->softc = NULL; 2137 cam_sim_free(sc->sc_sim, /* free_devq */ TRUE); 2138 } else { 2139 panic("%s: CAM layer is busy\n", 2140 sc->sc_name); 2141 } 2142 sc->sc_sim = NULL; 2143 } 2144 } 2145 2146 /* umass_cam_action 2147 * CAM requests for action come through here 2148 */ 2149 2150 static void 2151 umass_cam_action(struct cam_sim *sim, union ccb *ccb) 2152 { 2153 struct umass_softc *sc = (struct umass_softc *)sim->softc; 2154 2155 if (sc == NULL) { 2156 ccb->ccb_h.status = CAM_SEL_TIMEOUT; 2157 xpt_done(ccb); 2158 return; 2159 } 2160 2161 /* Perform the requested action */ 2162 switch (ccb->ccb_h.func_code) { 2163 case XPT_SCSI_IO: 2164 { 2165 uint8_t *cmd; 2166 uint8_t dir; 2167 2168 if (ccb->csio.ccb_h.flags & CAM_CDB_POINTER) { 2169 cmd = (uint8_t *)(ccb->csio.cdb_io.cdb_ptr); 2170 } else { 2171 cmd = (uint8_t *)(ccb->csio.cdb_io.cdb_bytes); 2172 } 2173 2174 DPRINTF(sc, UDMASS_SCSI, "%d:%d:%d:XPT_SCSI_IO: " 2175 "cmd: 0x%02x, flags: 0x%02x, " 2176 "%db cmd/%db data/%db sense\n", 2177 cam_sim_path(sc->sc_sim), ccb->ccb_h.target_id, 2178 ccb->ccb_h.target_lun, cmd[0], 2179 ccb->ccb_h.flags & CAM_DIR_MASK, ccb->csio.cdb_len, 2180 ccb->csio.dxfer_len, ccb->csio.sense_len); 2181 2182 if (sc->sc_transfer.ccb) { 2183 DPRINTF(sc, UDMASS_SCSI, "%d:%d:%d:XPT_SCSI_IO: " 2184 "I/O in progress, deferring\n", 2185 cam_sim_path(sc->sc_sim), ccb->ccb_h.target_id, 2186 ccb->ccb_h.target_lun); 2187 ccb->ccb_h.status = CAM_SCSI_BUSY; 2188 xpt_done(ccb); 2189 goto done; 2190 } 2191 switch (ccb->ccb_h.flags & CAM_DIR_MASK) { 2192 case CAM_DIR_IN: 2193 dir = DIR_IN; 2194 break; 2195 case CAM_DIR_OUT: 2196 dir = DIR_OUT; 2197 DIF(UDMASS_SCSI, 2198 umass_dump_buffer(sc, ccb->csio.data_ptr, 2199 ccb->csio.dxfer_len, 48)); 2200 break; 2201 default: 2202 dir = DIR_NONE; 2203 } 2204 2205 ccb->ccb_h.status = CAM_REQ_INPROG | CAM_SIM_QUEUED; 2206 2207 /* 2208 * sc->sc_transform will convert the command to the 2209 * command format needed by the specific command set 2210 * and return the converted command in 2211 * "sc->sc_transfer.cmd_data" 2212 */ 2213 if (umass_std_transform(sc, ccb, cmd, ccb->csio.cdb_len)) { 2214 2215 if (sc->sc_transfer.cmd_data[0] == INQUIRY) { 2216 const char *pserial; 2217 2218 pserial = usb_get_serial(sc->sc_udev); 2219 2220 /* 2221 * Umass devices don't generally report their serial numbers 2222 * in the usual SCSI way. Emulate it here. 2223 */ 2224 if ((sc->sc_transfer.cmd_data[1] & SI_EVPD) && 2225 (sc->sc_transfer.cmd_data[2] == SVPD_UNIT_SERIAL_NUMBER) && 2226 (pserial[0] != '\0')) { 2227 struct scsi_vpd_unit_serial_number *vpd_serial; 2228 2229 vpd_serial = (struct scsi_vpd_unit_serial_number *)ccb->csio.data_ptr; 2230 vpd_serial->length = strlen(pserial); 2231 if (vpd_serial->length > sizeof(vpd_serial->serial_num)) 2232 vpd_serial->length = sizeof(vpd_serial->serial_num); 2233 memcpy(vpd_serial->serial_num, pserial, vpd_serial->length); 2234 ccb->csio.scsi_status = SCSI_STATUS_OK; 2235 ccb->ccb_h.status = CAM_REQ_CMP; 2236 xpt_done(ccb); 2237 goto done; 2238 } 2239 2240 /* 2241 * Handle EVPD inquiry for broken devices first 2242 * NO_INQUIRY also implies NO_INQUIRY_EVPD 2243 */ 2244 if ((sc->sc_quirks & (NO_INQUIRY_EVPD | NO_INQUIRY)) && 2245 (sc->sc_transfer.cmd_data[1] & SI_EVPD)) { 2246 2247 scsi_set_sense_data(&ccb->csio.sense_data, 2248 /*sense_format*/ SSD_TYPE_NONE, 2249 /*current_error*/ 1, 2250 /*sense_key*/ SSD_KEY_ILLEGAL_REQUEST, 2251 /*asc*/ 0x24, 2252 /*ascq*/ 0x00, 2253 /*extra args*/ SSD_ELEM_NONE); 2254 ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND; 2255 ccb->ccb_h.status = 2256 CAM_SCSI_STATUS_ERROR | 2257 CAM_AUTOSNS_VALID | 2258 CAM_DEV_QFRZN; 2259 xpt_freeze_devq(ccb->ccb_h.path, 1); 2260 xpt_done(ccb); 2261 goto done; 2262 } 2263 /* 2264 * Return fake inquiry data for 2265 * broken devices 2266 */ 2267 if (sc->sc_quirks & NO_INQUIRY) { 2268 memcpy(ccb->csio.data_ptr, &fake_inq_data, 2269 sizeof(fake_inq_data)); 2270 ccb->csio.scsi_status = SCSI_STATUS_OK; 2271 ccb->ccb_h.status = CAM_REQ_CMP; 2272 xpt_done(ccb); 2273 goto done; 2274 } 2275 if (sc->sc_quirks & FORCE_SHORT_INQUIRY) { 2276 ccb->csio.dxfer_len = SHORT_INQUIRY_LENGTH; 2277 } 2278 } else if (sc->sc_transfer.cmd_data[0] == PREVENT_ALLOW) { 2279 if (sc->sc_quirks & NO_PREVENT_ALLOW) { 2280 ccb->csio.scsi_status = SCSI_STATUS_OK; 2281 ccb->ccb_h.status = CAM_REQ_CMP; 2282 xpt_done(ccb); 2283 goto done; 2284 } 2285 } else if (sc->sc_transfer.cmd_data[0] == SYNCHRONIZE_CACHE) { 2286 if (sc->sc_quirks & NO_SYNCHRONIZE_CACHE) { 2287 ccb->csio.scsi_status = SCSI_STATUS_OK; 2288 ccb->ccb_h.status = CAM_REQ_CMP; 2289 xpt_done(ccb); 2290 goto done; 2291 } 2292 } 2293 umass_command_start(sc, dir, ccb->csio.data_ptr, 2294 ccb->csio.dxfer_len, 2295 ccb->ccb_h.timeout, 2296 &umass_cam_cb, ccb); 2297 } 2298 break; 2299 } 2300 case XPT_PATH_INQ: 2301 { 2302 struct ccb_pathinq *cpi = &ccb->cpi; 2303 2304 DPRINTF(sc, UDMASS_SCSI, "%d:%d:%d:XPT_PATH_INQ:.\n", 2305 sc ? cam_sim_path(sc->sc_sim) : -1, ccb->ccb_h.target_id, 2306 ccb->ccb_h.target_lun); 2307 2308 /* host specific information */ 2309 cpi->version_num = 1; 2310 cpi->hba_inquiry = 0; 2311 cpi->target_sprt = 0; 2312 cpi->hba_misc = PIM_NO_6_BYTE; 2313 cpi->hba_eng_cnt = 0; 2314 cpi->max_target = UMASS_SCSIID_MAX; /* one target */ 2315 cpi->initiator_id = UMASS_SCSIID_HOST; 2316 strlcpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN); 2317 strlcpy(cpi->hba_vid, "USB SCSI", HBA_IDLEN); 2318 strlcpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN); 2319 cpi->unit_number = cam_sim_unit(sim); 2320 cpi->bus_id = sc->sc_unit; 2321 cpi->protocol = PROTO_SCSI; 2322 cpi->protocol_version = SCSI_REV_2; 2323 cpi->transport = XPORT_USB; 2324 cpi->transport_version = 0; 2325 2326 if (sc == NULL) { 2327 cpi->base_transfer_speed = 0; 2328 cpi->max_lun = 0; 2329 } else { 2330 if (sc->sc_quirks & FLOPPY_SPEED) { 2331 cpi->base_transfer_speed = 2332 UMASS_FLOPPY_TRANSFER_SPEED; 2333 } else { 2334 switch (usbd_get_speed(sc->sc_udev)) { 2335 case USB_SPEED_SUPER: 2336 cpi->base_transfer_speed = 2337 UMASS_SUPER_TRANSFER_SPEED; 2338 cpi->maxio = MAXPHYS; 2339 break; 2340 case USB_SPEED_HIGH: 2341 cpi->base_transfer_speed = 2342 UMASS_HIGH_TRANSFER_SPEED; 2343 break; 2344 default: 2345 cpi->base_transfer_speed = 2346 UMASS_FULL_TRANSFER_SPEED; 2347 break; 2348 } 2349 } 2350 cpi->max_lun = sc->sc_maxlun; 2351 } 2352 2353 cpi->ccb_h.status = CAM_REQ_CMP; 2354 xpt_done(ccb); 2355 break; 2356 } 2357 case XPT_RESET_DEV: 2358 { 2359 DPRINTF(sc, UDMASS_SCSI, "%d:%d:%d:XPT_RESET_DEV:.\n", 2360 cam_sim_path(sc->sc_sim), ccb->ccb_h.target_id, 2361 ccb->ccb_h.target_lun); 2362 2363 umass_reset(sc); 2364 2365 ccb->ccb_h.status = CAM_REQ_CMP; 2366 xpt_done(ccb); 2367 break; 2368 } 2369 case XPT_GET_TRAN_SETTINGS: 2370 { 2371 struct ccb_trans_settings *cts = &ccb->cts; 2372 2373 DPRINTF(sc, UDMASS_SCSI, "%d:%d:%d:XPT_GET_TRAN_SETTINGS:.\n", 2374 cam_sim_path(sc->sc_sim), ccb->ccb_h.target_id, 2375 ccb->ccb_h.target_lun); 2376 2377 cts->protocol = PROTO_SCSI; 2378 cts->protocol_version = SCSI_REV_2; 2379 cts->transport = XPORT_USB; 2380 cts->transport_version = 0; 2381 cts->xport_specific.valid = 0; 2382 2383 ccb->ccb_h.status = CAM_REQ_CMP; 2384 xpt_done(ccb); 2385 break; 2386 } 2387 case XPT_SET_TRAN_SETTINGS: 2388 { 2389 DPRINTF(sc, UDMASS_SCSI, "%d:%d:%d:XPT_SET_TRAN_SETTINGS:.\n", 2390 cam_sim_path(sc->sc_sim), ccb->ccb_h.target_id, 2391 ccb->ccb_h.target_lun); 2392 2393 ccb->ccb_h.status = CAM_FUNC_NOTAVAIL; 2394 xpt_done(ccb); 2395 break; 2396 } 2397 case XPT_CALC_GEOMETRY: 2398 { 2399 cam_calc_geometry(&ccb->ccg, /* extended */ 1); 2400 xpt_done(ccb); 2401 break; 2402 } 2403 case XPT_NOOP: 2404 { 2405 DPRINTF(sc, UDMASS_SCSI, "%d:%d:%d:XPT_NOOP:.\n", 2406 sc ? cam_sim_path(sc->sc_sim) : -1, ccb->ccb_h.target_id, 2407 ccb->ccb_h.target_lun); 2408 2409 ccb->ccb_h.status = CAM_REQ_CMP; 2410 xpt_done(ccb); 2411 break; 2412 } 2413 default: 2414 DPRINTF(sc, UDMASS_SCSI, "%d:%d:%d:func_code 0x%04x: " 2415 "Not implemented\n", 2416 sc ? cam_sim_path(sc->sc_sim) : -1, ccb->ccb_h.target_id, 2417 ccb->ccb_h.target_lun, ccb->ccb_h.func_code); 2418 2419 ccb->ccb_h.status = CAM_FUNC_NOTAVAIL; 2420 xpt_done(ccb); 2421 break; 2422 } 2423 2424 done: 2425 return; 2426 } 2427 2428 static void 2429 umass_cam_poll(struct cam_sim *sim) 2430 { 2431 struct umass_softc *sc = (struct umass_softc *)sim->softc; 2432 2433 if (sc == NULL) 2434 return; 2435 2436 DPRINTF(sc, UDMASS_SCSI, "CAM poll\n"); 2437 2438 usbd_transfer_poll(sc->sc_xfer, UMASS_T_MAX); 2439 } 2440 2441 2442 /* umass_cam_cb 2443 * finalise a completed CAM command 2444 */ 2445 2446 static void 2447 umass_cam_cb(struct umass_softc *sc, union ccb *ccb, uint32_t residue, 2448 uint8_t status) 2449 { 2450 ccb->csio.resid = residue; 2451 2452 switch (status) { 2453 case STATUS_CMD_OK: 2454 ccb->ccb_h.status = CAM_REQ_CMP; 2455 if ((sc->sc_quirks & READ_CAPACITY_OFFBY1) && 2456 (ccb->ccb_h.func_code == XPT_SCSI_IO) && 2457 (ccb->csio.cdb_io.cdb_bytes[0] == READ_CAPACITY)) { 2458 struct scsi_read_capacity_data *rcap; 2459 uint32_t maxsector; 2460 2461 rcap = (void *)(ccb->csio.data_ptr); 2462 maxsector = scsi_4btoul(rcap->addr) - 1; 2463 scsi_ulto4b(maxsector, rcap->addr); 2464 } 2465 /* 2466 * We have to add SVPD_UNIT_SERIAL_NUMBER to the list 2467 * of pages supported by the device - otherwise, CAM 2468 * will never ask us for the serial number if the 2469 * device cannot handle that by itself. 2470 */ 2471 if (ccb->ccb_h.func_code == XPT_SCSI_IO && 2472 sc->sc_transfer.cmd_data[0] == INQUIRY && 2473 (sc->sc_transfer.cmd_data[1] & SI_EVPD) && 2474 sc->sc_transfer.cmd_data[2] == SVPD_SUPPORTED_PAGE_LIST && 2475 (usb_get_serial(sc->sc_udev)[0] != '\0')) { 2476 struct ccb_scsiio *csio; 2477 struct scsi_vpd_supported_page_list *page_list; 2478 2479 csio = &ccb->csio; 2480 page_list = (struct scsi_vpd_supported_page_list *)csio->data_ptr; 2481 if (page_list->length + 1 < SVPD_SUPPORTED_PAGES_SIZE) { 2482 page_list->list[page_list->length] = SVPD_UNIT_SERIAL_NUMBER; 2483 page_list->length++; 2484 } 2485 } 2486 xpt_done(ccb); 2487 break; 2488 2489 case STATUS_CMD_UNKNOWN: 2490 case STATUS_CMD_FAILED: 2491 2492 /* fetch sense data */ 2493 2494 /* the rest of the command was filled in at attach */ 2495 sc->cam_scsi_sense.length = ccb->csio.sense_len; 2496 2497 DPRINTF(sc, UDMASS_SCSI, "Fetching %d bytes of " 2498 "sense data\n", ccb->csio.sense_len); 2499 2500 if (umass_std_transform(sc, ccb, &sc->cam_scsi_sense.opcode, 2501 sizeof(sc->cam_scsi_sense))) { 2502 2503 if ((sc->sc_quirks & FORCE_SHORT_INQUIRY) && 2504 (sc->sc_transfer.cmd_data[0] == INQUIRY)) { 2505 ccb->csio.sense_len = SHORT_INQUIRY_LENGTH; 2506 } 2507 umass_command_start(sc, DIR_IN, &ccb->csio.sense_data.error_code, 2508 ccb->csio.sense_len, ccb->ccb_h.timeout, 2509 &umass_cam_sense_cb, ccb); 2510 } 2511 break; 2512 2513 default: 2514 /* 2515 * The wire protocol failed and will hopefully have 2516 * recovered. We return an error to CAM and let CAM 2517 * retry the command if necessary. 2518 */ 2519 xpt_freeze_devq(ccb->ccb_h.path, 1); 2520 ccb->ccb_h.status = CAM_REQ_CMP_ERR | CAM_DEV_QFRZN; 2521 xpt_done(ccb); 2522 break; 2523 } 2524 } 2525 2526 /* 2527 * Finalise a completed autosense operation 2528 */ 2529 static void 2530 umass_cam_sense_cb(struct umass_softc *sc, union ccb *ccb, uint32_t residue, 2531 uint8_t status) 2532 { 2533 uint8_t *cmd; 2534 2535 switch (status) { 2536 case STATUS_CMD_OK: 2537 case STATUS_CMD_UNKNOWN: 2538 case STATUS_CMD_FAILED: { 2539 int key, sense_len; 2540 2541 ccb->csio.sense_resid = residue; 2542 sense_len = ccb->csio.sense_len - ccb->csio.sense_resid; 2543 key = scsi_get_sense_key(&ccb->csio.sense_data, sense_len, 2544 /*show_errors*/ 1); 2545 2546 if (ccb->csio.ccb_h.flags & CAM_CDB_POINTER) { 2547 cmd = (uint8_t *)(ccb->csio.cdb_io.cdb_ptr); 2548 } else { 2549 cmd = (uint8_t *)(ccb->csio.cdb_io.cdb_bytes); 2550 } 2551 2552 /* 2553 * Getting sense data always succeeds (apart from wire 2554 * failures): 2555 */ 2556 if ((sc->sc_quirks & RS_NO_CLEAR_UA) && 2557 (cmd[0] == INQUIRY) && 2558 (key == SSD_KEY_UNIT_ATTENTION)) { 2559 /* 2560 * Ignore unit attention errors in the case where 2561 * the Unit Attention state is not cleared on 2562 * REQUEST SENSE. They will appear again at the next 2563 * command. 2564 */ 2565 ccb->ccb_h.status = CAM_REQ_CMP; 2566 } else if (key == SSD_KEY_NO_SENSE) { 2567 /* 2568 * No problem after all (in the case of CBI without 2569 * CCI) 2570 */ 2571 ccb->ccb_h.status = CAM_REQ_CMP; 2572 } else if ((sc->sc_quirks & RS_NO_CLEAR_UA) && 2573 (cmd[0] == READ_CAPACITY) && 2574 (key == SSD_KEY_UNIT_ATTENTION)) { 2575 /* 2576 * Some devices do not clear the unit attention error 2577 * on request sense. We insert a test unit ready 2578 * command to make sure we clear the unit attention 2579 * condition, then allow the retry to proceed as 2580 * usual. 2581 */ 2582 2583 xpt_freeze_devq(ccb->ccb_h.path, 1); 2584 ccb->ccb_h.status = CAM_SCSI_STATUS_ERROR 2585 | CAM_AUTOSNS_VALID | CAM_DEV_QFRZN; 2586 ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND; 2587 2588 #if 0 2589 DELAY(300000); 2590 #endif 2591 DPRINTF(sc, UDMASS_SCSI, "Doing a sneaky" 2592 "TEST_UNIT_READY\n"); 2593 2594 /* the rest of the command was filled in at attach */ 2595 2596 if ((sc->sc_transform)(sc, 2597 &sc->cam_scsi_test_unit_ready.opcode, 2598 sizeof(sc->cam_scsi_test_unit_ready)) == 1) { 2599 umass_command_start(sc, DIR_NONE, NULL, 0, 2600 ccb->ccb_h.timeout, 2601 &umass_cam_quirk_cb, ccb); 2602 break; 2603 } 2604 } else { 2605 xpt_freeze_devq(ccb->ccb_h.path, 1); 2606 if (key >= 0) { 2607 ccb->ccb_h.status = CAM_SCSI_STATUS_ERROR 2608 | CAM_AUTOSNS_VALID | CAM_DEV_QFRZN; 2609 ccb->csio.scsi_status = SCSI_STATUS_CHECK_COND; 2610 } else 2611 ccb->ccb_h.status = CAM_AUTOSENSE_FAIL 2612 | CAM_DEV_QFRZN; 2613 } 2614 xpt_done(ccb); 2615 break; 2616 } 2617 default: 2618 DPRINTF(sc, UDMASS_SCSI, "Autosense failed, " 2619 "status %d\n", status); 2620 xpt_freeze_devq(ccb->ccb_h.path, 1); 2621 ccb->ccb_h.status = CAM_AUTOSENSE_FAIL | CAM_DEV_QFRZN; 2622 xpt_done(ccb); 2623 } 2624 } 2625 2626 /* 2627 * This completion code just handles the fact that we sent a test-unit-ready 2628 * after having previously failed a READ CAPACITY with CHECK_COND. The CCB 2629 * status for CAM is already set earlier. 2630 */ 2631 static void 2632 umass_cam_quirk_cb(struct umass_softc *sc, union ccb *ccb, uint32_t residue, 2633 uint8_t status) 2634 { 2635 DPRINTF(sc, UDMASS_SCSI, "Test unit ready " 2636 "returned status %d\n", status); 2637 2638 xpt_done(ccb); 2639 } 2640 2641 /* 2642 * SCSI specific functions 2643 */ 2644 2645 static uint8_t 2646 umass_scsi_transform(struct umass_softc *sc, uint8_t *cmd_ptr, 2647 uint8_t cmd_len) 2648 { 2649 if ((cmd_len == 0) || 2650 (cmd_len > sizeof(sc->sc_transfer.cmd_data))) { 2651 DPRINTF(sc, UDMASS_SCSI, "Invalid command " 2652 "length: %d bytes\n", cmd_len); 2653 return (0); /* failure */ 2654 } 2655 sc->sc_transfer.cmd_len = cmd_len; 2656 2657 switch (cmd_ptr[0]) { 2658 case TEST_UNIT_READY: 2659 if (sc->sc_quirks & NO_TEST_UNIT_READY) { 2660 DPRINTF(sc, UDMASS_SCSI, "Converted TEST_UNIT_READY " 2661 "to START_UNIT\n"); 2662 memset(sc->sc_transfer.cmd_data, 0, cmd_len); 2663 sc->sc_transfer.cmd_data[0] = START_STOP_UNIT; 2664 sc->sc_transfer.cmd_data[4] = SSS_START; 2665 return (1); 2666 } 2667 break; 2668 2669 case INQUIRY: 2670 /* 2671 * some drives wedge when asked for full inquiry 2672 * information. 2673 */ 2674 if (sc->sc_quirks & FORCE_SHORT_INQUIRY) { 2675 memcpy(sc->sc_transfer.cmd_data, cmd_ptr, cmd_len); 2676 sc->sc_transfer.cmd_data[4] = SHORT_INQUIRY_LENGTH; 2677 return (1); 2678 } 2679 break; 2680 } 2681 2682 memcpy(sc->sc_transfer.cmd_data, cmd_ptr, cmd_len); 2683 return (1); 2684 } 2685 2686 static uint8_t 2687 umass_rbc_transform(struct umass_softc *sc, uint8_t *cmd_ptr, uint8_t cmd_len) 2688 { 2689 if ((cmd_len == 0) || 2690 (cmd_len > sizeof(sc->sc_transfer.cmd_data))) { 2691 DPRINTF(sc, UDMASS_SCSI, "Invalid command " 2692 "length: %d bytes\n", cmd_len); 2693 return (0); /* failure */ 2694 } 2695 switch (cmd_ptr[0]) { 2696 /* these commands are defined in RBC: */ 2697 case READ_10: 2698 case READ_CAPACITY: 2699 case START_STOP_UNIT: 2700 case SYNCHRONIZE_CACHE: 2701 case WRITE_10: 2702 case 0x2f: /* VERIFY_10 is absent from 2703 * scsi_all.h??? */ 2704 case INQUIRY: 2705 case MODE_SELECT_10: 2706 case MODE_SENSE_10: 2707 case TEST_UNIT_READY: 2708 case WRITE_BUFFER: 2709 /* 2710 * The following commands are not listed in my copy of the 2711 * RBC specs. CAM however seems to want those, and at least 2712 * the Sony DSC device appears to support those as well 2713 */ 2714 case REQUEST_SENSE: 2715 case PREVENT_ALLOW: 2716 2717 memcpy(sc->sc_transfer.cmd_data, cmd_ptr, cmd_len); 2718 2719 if ((sc->sc_quirks & RBC_PAD_TO_12) && (cmd_len < 12)) { 2720 memset(sc->sc_transfer.cmd_data + cmd_len, 2721 0, 12 - cmd_len); 2722 cmd_len = 12; 2723 } 2724 sc->sc_transfer.cmd_len = cmd_len; 2725 return (1); /* sucess */ 2726 2727 /* All other commands are not legal in RBC */ 2728 default: 2729 DPRINTF(sc, UDMASS_SCSI, "Unsupported RBC " 2730 "command 0x%02x\n", cmd_ptr[0]); 2731 return (0); /* failure */ 2732 } 2733 } 2734 2735 static uint8_t 2736 umass_ufi_transform(struct umass_softc *sc, uint8_t *cmd_ptr, 2737 uint8_t cmd_len) 2738 { 2739 if ((cmd_len == 0) || 2740 (cmd_len > sizeof(sc->sc_transfer.cmd_data))) { 2741 DPRINTF(sc, UDMASS_SCSI, "Invalid command " 2742 "length: %d bytes\n", cmd_len); 2743 return (0); /* failure */ 2744 } 2745 /* An UFI command is always 12 bytes in length */ 2746 sc->sc_transfer.cmd_len = UFI_COMMAND_LENGTH; 2747 2748 /* Zero the command data */ 2749 memset(sc->sc_transfer.cmd_data, 0, UFI_COMMAND_LENGTH); 2750 2751 switch (cmd_ptr[0]) { 2752 /* 2753 * Commands of which the format has been verified. They 2754 * should work. Copy the command into the (zeroed out) 2755 * destination buffer. 2756 */ 2757 case TEST_UNIT_READY: 2758 if (sc->sc_quirks & NO_TEST_UNIT_READY) { 2759 /* 2760 * Some devices do not support this command. Start 2761 * Stop Unit should give the same results 2762 */ 2763 DPRINTF(sc, UDMASS_UFI, "Converted TEST_UNIT_READY " 2764 "to START_UNIT\n"); 2765 2766 sc->sc_transfer.cmd_data[0] = START_STOP_UNIT; 2767 sc->sc_transfer.cmd_data[4] = SSS_START; 2768 return (1); 2769 } 2770 break; 2771 2772 case REZERO_UNIT: 2773 case REQUEST_SENSE: 2774 case FORMAT_UNIT: 2775 case INQUIRY: 2776 case START_STOP_UNIT: 2777 case SEND_DIAGNOSTIC: 2778 case PREVENT_ALLOW: 2779 case READ_CAPACITY: 2780 case READ_10: 2781 case WRITE_10: 2782 case POSITION_TO_ELEMENT: /* SEEK_10 */ 2783 case WRITE_AND_VERIFY: 2784 case VERIFY: 2785 case MODE_SELECT_10: 2786 case MODE_SENSE_10: 2787 case READ_12: 2788 case WRITE_12: 2789 case READ_FORMAT_CAPACITIES: 2790 break; 2791 2792 /* 2793 * SYNCHRONIZE_CACHE isn't supported by UFI, nor should it be 2794 * required for UFI devices, so it is appropriate to fake 2795 * success. 2796 */ 2797 case SYNCHRONIZE_CACHE: 2798 return (2); 2799 2800 default: 2801 DPRINTF(sc, UDMASS_SCSI, "Unsupported UFI " 2802 "command 0x%02x\n", cmd_ptr[0]); 2803 return (0); /* failure */ 2804 } 2805 2806 memcpy(sc->sc_transfer.cmd_data, cmd_ptr, cmd_len); 2807 return (1); /* success */ 2808 } 2809 2810 /* 2811 * 8070i (ATAPI) specific functions 2812 */ 2813 static uint8_t 2814 umass_atapi_transform(struct umass_softc *sc, uint8_t *cmd_ptr, 2815 uint8_t cmd_len) 2816 { 2817 if ((cmd_len == 0) || 2818 (cmd_len > sizeof(sc->sc_transfer.cmd_data))) { 2819 DPRINTF(sc, UDMASS_SCSI, "Invalid command " 2820 "length: %d bytes\n", cmd_len); 2821 return (0); /* failure */ 2822 } 2823 /* An ATAPI command is always 12 bytes in length. */ 2824 sc->sc_transfer.cmd_len = ATAPI_COMMAND_LENGTH; 2825 2826 /* Zero the command data */ 2827 memset(sc->sc_transfer.cmd_data, 0, ATAPI_COMMAND_LENGTH); 2828 2829 switch (cmd_ptr[0]) { 2830 /* 2831 * Commands of which the format has been verified. They 2832 * should work. Copy the command into the destination 2833 * buffer. 2834 */ 2835 case INQUIRY: 2836 /* 2837 * some drives wedge when asked for full inquiry 2838 * information. 2839 */ 2840 if (sc->sc_quirks & FORCE_SHORT_INQUIRY) { 2841 memcpy(sc->sc_transfer.cmd_data, cmd_ptr, cmd_len); 2842 2843 sc->sc_transfer.cmd_data[4] = SHORT_INQUIRY_LENGTH; 2844 return (1); 2845 } 2846 break; 2847 2848 case TEST_UNIT_READY: 2849 if (sc->sc_quirks & NO_TEST_UNIT_READY) { 2850 DPRINTF(sc, UDMASS_SCSI, "Converted TEST_UNIT_READY " 2851 "to START_UNIT\n"); 2852 sc->sc_transfer.cmd_data[0] = START_STOP_UNIT; 2853 sc->sc_transfer.cmd_data[4] = SSS_START; 2854 return (1); 2855 } 2856 break; 2857 2858 case REZERO_UNIT: 2859 case REQUEST_SENSE: 2860 case START_STOP_UNIT: 2861 case SEND_DIAGNOSTIC: 2862 case PREVENT_ALLOW: 2863 case READ_CAPACITY: 2864 case READ_10: 2865 case WRITE_10: 2866 case POSITION_TO_ELEMENT: /* SEEK_10 */ 2867 case SYNCHRONIZE_CACHE: 2868 case MODE_SELECT_10: 2869 case MODE_SENSE_10: 2870 case READ_BUFFER: 2871 case 0x42: /* READ_SUBCHANNEL */ 2872 case 0x43: /* READ_TOC */ 2873 case 0x44: /* READ_HEADER */ 2874 case 0x47: /* PLAY_MSF (Play Minute/Second/Frame) */ 2875 case 0x48: /* PLAY_TRACK */ 2876 case 0x49: /* PLAY_TRACK_REL */ 2877 case 0x4b: /* PAUSE */ 2878 case 0x51: /* READ_DISK_INFO */ 2879 case 0x52: /* READ_TRACK_INFO */ 2880 case 0x54: /* SEND_OPC */ 2881 case 0x59: /* READ_MASTER_CUE */ 2882 case 0x5b: /* CLOSE_TR_SESSION */ 2883 case 0x5c: /* READ_BUFFER_CAP */ 2884 case 0x5d: /* SEND_CUE_SHEET */ 2885 case 0xa1: /* BLANK */ 2886 case 0xa5: /* PLAY_12 */ 2887 case 0xa6: /* EXCHANGE_MEDIUM */ 2888 case 0xad: /* READ_DVD_STRUCTURE */ 2889 case 0xbb: /* SET_CD_SPEED */ 2890 case 0xe5: /* READ_TRACK_INFO_PHILIPS */ 2891 break; 2892 2893 case READ_12: 2894 case WRITE_12: 2895 default: 2896 DPRINTF(sc, UDMASS_SCSI, "Unsupported ATAPI " 2897 "command 0x%02x - trying anyway\n", 2898 cmd_ptr[0]); 2899 break; 2900 } 2901 2902 memcpy(sc->sc_transfer.cmd_data, cmd_ptr, cmd_len); 2903 return (1); /* success */ 2904 } 2905 2906 static uint8_t 2907 umass_no_transform(struct umass_softc *sc, uint8_t *cmd, 2908 uint8_t cmdlen) 2909 { 2910 return (0); /* failure */ 2911 } 2912 2913 static uint8_t 2914 umass_std_transform(struct umass_softc *sc, union ccb *ccb, 2915 uint8_t *cmd, uint8_t cmdlen) 2916 { 2917 uint8_t retval; 2918 2919 retval = (sc->sc_transform) (sc, cmd, cmdlen); 2920 2921 if (retval == 2) { 2922 ccb->ccb_h.status = CAM_REQ_CMP; 2923 xpt_done(ccb); 2924 return (0); 2925 } else if (retval == 0) { 2926 xpt_freeze_devq(ccb->ccb_h.path, 1); 2927 ccb->ccb_h.status = CAM_REQ_INVALID | CAM_DEV_QFRZN; 2928 xpt_done(ccb); 2929 return (0); 2930 } 2931 /* Command should be executed */ 2932 return (1); 2933 } 2934 2935 #ifdef USB_DEBUG 2936 static void 2937 umass_bbb_dump_cbw(struct umass_softc *sc, umass_bbb_cbw_t *cbw) 2938 { 2939 uint8_t *c = cbw->CBWCDB; 2940 2941 uint32_t dlen = UGETDW(cbw->dCBWDataTransferLength); 2942 uint32_t tag = UGETDW(cbw->dCBWTag); 2943 2944 uint8_t clen = cbw->bCDBLength; 2945 uint8_t flags = cbw->bCBWFlags; 2946 uint8_t lun = cbw->bCBWLUN; 2947 2948 DPRINTF(sc, UDMASS_BBB, "CBW %d: cmd = %db " 2949 "(0x%02x%02x%02x%02x%02x%02x%s), " 2950 "data = %db, lun = %d, dir = %s\n", 2951 tag, clen, 2952 c[0], c[1], c[2], c[3], c[4], c[5], (clen > 6 ? "..." : ""), 2953 dlen, lun, (flags == CBWFLAGS_IN ? "in" : 2954 (flags == CBWFLAGS_OUT ? "out" : "<invalid>"))); 2955 } 2956 2957 static void 2958 umass_bbb_dump_csw(struct umass_softc *sc, umass_bbb_csw_t *csw) 2959 { 2960 uint32_t sig = UGETDW(csw->dCSWSignature); 2961 uint32_t tag = UGETDW(csw->dCSWTag); 2962 uint32_t res = UGETDW(csw->dCSWDataResidue); 2963 uint8_t status = csw->bCSWStatus; 2964 2965 DPRINTF(sc, UDMASS_BBB, "CSW %d: sig = 0x%08x (%s), tag = 0x%08x, " 2966 "res = %d, status = 0x%02x (%s)\n", 2967 tag, sig, (sig == CSWSIGNATURE ? "valid" : "invalid"), 2968 tag, res, 2969 status, (status == CSWSTATUS_GOOD ? "good" : 2970 (status == CSWSTATUS_FAILED ? "failed" : 2971 (status == CSWSTATUS_PHASE ? "phase" : "<invalid>")))); 2972 } 2973 2974 static void 2975 umass_cbi_dump_cmd(struct umass_softc *sc, void *cmd, uint8_t cmdlen) 2976 { 2977 uint8_t *c = cmd; 2978 uint8_t dir = sc->sc_transfer.dir; 2979 2980 DPRINTF(sc, UDMASS_BBB, "cmd = %db " 2981 "(0x%02x%02x%02x%02x%02x%02x%s), " 2982 "data = %db, dir = %s\n", 2983 cmdlen, 2984 c[0], c[1], c[2], c[3], c[4], c[5], (cmdlen > 6 ? "..." : ""), 2985 sc->sc_transfer.data_len, 2986 (dir == DIR_IN ? "in" : 2987 (dir == DIR_OUT ? "out" : 2988 (dir == DIR_NONE ? "no data phase" : "<invalid>")))); 2989 } 2990 2991 static void 2992 umass_dump_buffer(struct umass_softc *sc, uint8_t *buffer, uint32_t buflen, 2993 uint32_t printlen) 2994 { 2995 uint32_t i, j; 2996 char s1[40]; 2997 char s2[40]; 2998 char s3[5]; 2999 3000 s1[0] = '\0'; 3001 s3[0] = '\0'; 3002 3003 sprintf(s2, " buffer=%p, buflen=%d", buffer, buflen); 3004 for (i = 0; (i < buflen) && (i < printlen); i++) { 3005 j = i % 16; 3006 if (j == 0 && i != 0) { 3007 DPRINTF(sc, UDMASS_GEN, "0x %s%s\n", 3008 s1, s2); 3009 s2[0] = '\0'; 3010 } 3011 sprintf(&s1[j * 2], "%02x", buffer[i] & 0xff); 3012 } 3013 if (buflen > printlen) 3014 sprintf(s3, " ..."); 3015 DPRINTF(sc, UDMASS_GEN, "0x %s%s%s\n", 3016 s1, s2, s3); 3017 } 3018 3019 #endif 3020