1 // SPDX-License-Identifier: GPL-2.0+
3 * Most of this source has been derived from the Linux USB
8 * (c) 2000 Yggdrasil Computing, Inc.
12 * (C) Copyright 2001 Denis Peter, MPL AG Switzerland
13 * Driver model conversion:
14 * (C) Copyright 2015 Google, Inc
16 * For BBB support (C) Copyright 2003
19 * BBB support based on /sys/dev/usb/umass.c from
24 * Currently only the CBI transport protocoll has been implemented, and it
25 * is only tested with a TEAC USB Floppy. Other Massstorages with CBI or CB
26 * transport protocoll may work as well.
30 * Support for USB Mass Storage Devices (BBB) has been added. It has
31 * only been tested with USB memory sticks.
43 #include <asm/byteorder.h>
44 #include <asm/cache.h>
45 #include <asm/processor.h>
46 #include <dm/device-internal.h>
48 #include <linux/delay.h>
53 #undef BBB_COMDAT_TRACE
54 #undef BBB_XPORT_TRACE
57 /* direction table -- this indicates the direction of the data
58 * transfer for each command code -- a 1 indicates input
60 static const unsigned char us_direction[256/8] = {
61 0x28, 0x81, 0x14, 0x14, 0x20, 0x01, 0x90, 0x77,
62 0x0C, 0x20, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,
63 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01,
64 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
66 #define US_DIRECTION(x) ((us_direction[x>>3] >> (x & 7)) & 1)
68 static struct scsi_cmd usb_ccb __aligned(ARCH_DMA_MINALIGN);
71 static int usb_max_devs; /* number of highest available usb device */
73 #if !CONFIG_IS_ENABLED(BLK)
74 static struct blk_desc usb_dev_desc[USB_MAX_STOR_DEV];
78 typedef int (*trans_cmnd)(struct scsi_cmd *cb, struct us_data *data);
79 typedef int (*trans_reset)(struct us_data *data);
82 struct usb_device *pusb_dev; /* this usb_device */
84 unsigned int flags; /* from filter initially */
85 # define USB_READY (1 << 0)
86 unsigned char ifnum; /* interface number */
87 unsigned char ep_in; /* in endpoint */
88 unsigned char ep_out; /* out ....... */
89 unsigned char ep_int; /* interrupt . */
90 unsigned char subclass; /* as in overview */
91 unsigned char protocol; /* .............. */
92 unsigned char attention_done; /* force attn on first cmd */
93 unsigned short ip_data; /* interrupt data */
94 int action; /* what to do */
95 int ip_wanted; /* needed */
96 int *irq_handle; /* for USB int requests */
97 unsigned int irqpipe; /* pipe for release_irq */
98 unsigned char irqmaxp; /* max packed for irq Pipe */
99 unsigned char irqinterval; /* Intervall for IRQ Pipe */
100 struct scsi_cmd *srb; /* current srb */
101 trans_reset transport_reset; /* reset routine */
102 trans_cmnd transport; /* transport routine */
103 unsigned short max_xfer_blk; /* maximum transfer blocks */
104 bool cmd12; /* use 12-byte commands (RBC/UFI) */
107 #if !CONFIG_IS_ENABLED(BLK)
108 static struct us_data usb_stor[USB_MAX_STOR_DEV];
111 #define USB_STOR_TRANSPORT_GOOD 0
112 #define USB_STOR_TRANSPORT_FAILED -1
113 #define USB_STOR_TRANSPORT_ERROR -2
115 int usb_stor_get_info(struct usb_device *dev, struct us_data *us,
116 struct blk_desc *dev_desc);
117 int usb_storage_probe(struct usb_device *dev, unsigned int ifnum,
119 #if CONFIG_IS_ENABLED(BLK)
120 static unsigned long usb_stor_read(struct udevice *dev, lbaint_t blknr,
121 lbaint_t blkcnt, void *buffer);
122 static unsigned long usb_stor_write(struct udevice *dev, lbaint_t blknr,
123 lbaint_t blkcnt, const void *buffer);
125 static unsigned long usb_stor_read(struct blk_desc *block_dev, lbaint_t blknr,
126 lbaint_t blkcnt, void *buffer);
127 static unsigned long usb_stor_write(struct blk_desc *block_dev, lbaint_t blknr,
128 lbaint_t blkcnt, const void *buffer);
130 void uhci_show_temp_int_td(void);
132 static void usb_show_progress(void)
137 /*******************************************************************************
138 * show info on storage devices; 'usb start/init' must be invoked earlier
139 * as we only retrieve structures populated during devices initialization
141 int usb_stor_info(void)
144 #if CONFIG_IS_ENABLED(BLK)
147 for (blk_first_device(UCLASS_USB, &dev);
149 blk_next_device(&dev)) {
150 struct blk_desc *desc = dev_get_uclass_plat(dev);
152 printf(" Device %d: ", desc->devnum);
159 if (usb_max_devs > 0) {
160 for (i = 0; i < usb_max_devs; i++) {
161 printf(" Device %d: ", i);
162 dev_print(&usb_dev_desc[i]);
168 printf("No storage devices, perhaps not 'usb start'ed..?\n");
175 static unsigned int usb_get_max_lun(struct us_data *us)
178 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, result, 1);
179 len = usb_control_msg(us->pusb_dev,
180 usb_rcvctrlpipe(us->pusb_dev, 0),
182 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
184 result, sizeof(char),
185 USB_CNTL_TIMEOUT * 5);
186 debug("Get Max LUN -> len = %i, result = %i\n", len, (int) *result);
187 return (len > 0) ? *result : 0;
190 static int usb_stor_probe_device(struct usb_device *udev)
194 #if CONFIG_IS_ENABLED(BLK)
195 struct us_data *data;
201 return -ENOENT; /* no more devices available */
204 debug("\n\nProbing for storage\n");
205 #if CONFIG_IS_ENABLED(BLK)
207 * We store the us_data in the mass storage device's plat. It
208 * is shared by all LUNs (block devices) attached to this mass storage
211 data = dev_get_plat(udev->dev);
212 if (!usb_storage_probe(udev, 0, data))
214 max_lun = usb_get_max_lun(data);
215 for (lun = 0; lun <= max_lun; lun++) {
216 struct blk_desc *blkdev;
220 snprintf(str, sizeof(str), "lun%d", lun);
221 ret = blk_create_devicef(udev->dev, "usb_storage_blk", str,
222 UCLASS_USB, usb_max_devs,
223 DEFAULT_BLKSZ, 0, &dev);
225 debug("Cannot bind driver\n");
229 blkdev = dev_get_uclass_plat(dev);
230 blkdev->target = 0xff;
233 ret = usb_stor_get_info(udev, data, blkdev);
236 debug("%s: Found device %p\n", __func__, udev);
238 debug("usb_stor_get_info: Invalid device\n");
239 ret = device_unbind(dev);
245 ret = blk_probe_or_unbind(dev);
249 ret = bootdev_setup_for_sibling_blk(dev, "usb_bootdev");
253 ret2 = device_unbind(dev);
255 return log_msg_ret("bootdev", ret2);
256 return log_msg_ret("bootdev", ret);
260 /* We don't have space to even probe if we hit the maximum */
261 if (usb_max_devs == USB_MAX_STOR_DEV) {
262 printf("max USB Storage Device reached: %d stopping\n",
267 if (!usb_storage_probe(udev, 0, &usb_stor[usb_max_devs]))
271 * OK, it's a storage device. Iterate over its LUNs and populate
274 start = usb_max_devs;
276 max_lun = usb_get_max_lun(&usb_stor[usb_max_devs]);
277 for (lun = 0; lun <= max_lun && usb_max_devs < USB_MAX_STOR_DEV;
279 struct blk_desc *blkdev;
281 blkdev = &usb_dev_desc[usb_max_devs];
282 memset(blkdev, '\0', sizeof(struct blk_desc));
283 blkdev->uclass_id = UCLASS_USB;
284 blkdev->devnum = usb_max_devs;
285 blkdev->part_type = PART_TYPE_UNKNOWN;
286 blkdev->target = 0xff;
287 blkdev->type = DEV_TYPE_UNKNOWN;
288 blkdev->block_read = usb_stor_read;
289 blkdev->block_write = usb_stor_write;
293 if (usb_stor_get_info(udev, &usb_stor[start],
294 &usb_dev_desc[usb_max_devs]) == 1) {
295 debug("partype: %d\n", blkdev->part_type);
297 debug("partype: %d\n", blkdev->part_type);
299 debug("%s: Found device %p\n", __func__, udev);
307 void usb_stor_reset(void)
312 /*******************************************************************************
313 * scan the usb and reports device info
314 * to the user if mode = 1
315 * returns current device or -1 if no
317 int usb_stor_scan(int mode)
320 printf(" scanning usb for storage devices... ");
322 #if !CONFIG_IS_ENABLED(DM_USB)
325 usb_disable_asynch(1); /* asynch transfer not allowed */
328 for (i = 0; i < USB_MAX_DEVICE; i++) {
329 struct usb_device *dev;
331 dev = usb_get_dev_index(i); /* get device */
333 if (usb_stor_probe_device(dev))
337 usb_disable_asynch(0); /* asynch transfer allowed */
339 printf("%d Storage Device(s) found\n", usb_max_devs);
340 if (usb_max_devs > 0)
345 static int usb_stor_irq(struct usb_device *dev)
348 us = (struct us_data *)dev->privptr;
358 static void usb_show_srb(struct scsi_cmd *pccb)
361 printf("SRB: len %d datalen 0x%lX\n ", pccb->cmdlen, pccb->datalen);
362 for (i = 0; i < pccb->cmdlen; i++)
363 printf("%02X ", pccb->cmd[i]);
367 static void display_int_status(unsigned long tmp)
369 printf("Status: %s %s %s %s %s %s %s\n",
370 (tmp & USB_ST_ACTIVE) ? "Active" : "",
371 (tmp & USB_ST_STALLED) ? "Stalled" : "",
372 (tmp & USB_ST_BUF_ERR) ? "Buffer Error" : "",
373 (tmp & USB_ST_BABBLE_DET) ? "Babble Det" : "",
374 (tmp & USB_ST_NAK_REC) ? "NAKed" : "",
375 (tmp & USB_ST_CRC_ERR) ? "CRC Error" : "",
376 (tmp & USB_ST_BIT_ERR) ? "Bitstuff Error" : "");
379 /***********************************************************************
380 * Data transfer routines
381 ***********************************************************************/
383 static int us_one_transfer(struct us_data *us, int pipe, char *buf, int length)
392 /* determine the maximum packet size for these transfers */
393 max_size = usb_maxpacket(us->pusb_dev, pipe) * 16;
395 /* while we have data left to transfer */
398 /* calculate how long this will be -- maximum or a remainder */
399 this_xfer = length > max_size ? max_size : length;
402 /* setup the retry counter */
405 /* set up the transfer loop */
407 /* transfer the data */
408 debug("Bulk xfer 0x%lx(%d) try #%d\n",
409 (ulong)map_to_sysmem(buf), this_xfer,
411 result = usb_bulk_msg(us->pusb_dev, pipe, buf,
413 USB_CNTL_TIMEOUT * 5);
414 debug("bulk_msg returned %d xferred %d/%d\n",
415 result, partial, this_xfer);
416 if (us->pusb_dev->status != 0) {
417 /* if we stall, we need to clear it before
421 display_int_status(us->pusb_dev->status);
423 if (us->pusb_dev->status & USB_ST_STALLED) {
424 debug("stalled ->clearing endpoint" \
425 "halt for pipe 0x%x\n", pipe);
426 stat = us->pusb_dev->status;
427 usb_clear_halt(us->pusb_dev, pipe);
428 us->pusb_dev->status = stat;
429 if (this_xfer == partial) {
430 debug("bulk transferred" \
433 us->pusb_dev->status);
439 if (us->pusb_dev->status & USB_ST_NAK_REC) {
440 debug("Device NAKed bulk_msg\n");
443 debug("bulk transferred with error");
444 if (this_xfer == partial) {
445 debug(" %ld, but data ok\n",
446 us->pusb_dev->status);
449 /* if our try counter reaches 0, bail out */
450 debug(" %ld, data %d\n",
451 us->pusb_dev->status, partial);
455 /* update to show what data was transferred */
456 this_xfer -= partial;
458 /* continue until this transfer is done */
462 /* if we get here, we're done and successful */
466 static int usb_stor_BBB_reset(struct us_data *us)
472 * Reset recovery (5.3.4 in Universal Serial Bus Mass Storage Class)
474 * For Reset Recovery the host shall issue in the following order:
475 * a) a Bulk-Only Mass Storage Reset
476 * b) a Clear Feature HALT to the Bulk-In endpoint
477 * c) a Clear Feature HALT to the Bulk-Out endpoint
479 * This is done in 3 steps.
481 * If the reset doesn't succeed, the device should be port reset.
483 * This comment stolen from FreeBSD's /sys/dev/usb/umass.c.
485 debug("BBB_reset\n");
486 result = usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0),
488 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
489 0, us->ifnum, NULL, 0, USB_CNTL_TIMEOUT * 5);
491 if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) {
492 debug("RESET:stall\n");
496 /* long wait for reset */
498 debug("BBB_reset result %d: status %lX reset\n",
499 result, us->pusb_dev->status);
500 pipe = usb_rcvbulkpipe(us->pusb_dev, us->ep_in);
501 result = usb_clear_halt(us->pusb_dev, pipe);
502 /* long wait for reset */
504 debug("BBB_reset result %d: status %lX clearing IN endpoint\n",
505 result, us->pusb_dev->status);
506 /* long wait for reset */
507 pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
508 result = usb_clear_halt(us->pusb_dev, pipe);
510 debug("BBB_reset result %d: status %lX clearing OUT endpoint\n",
511 result, us->pusb_dev->status);
512 debug("BBB_reset done\n");
516 /* FIXME: this reset function doesn't really reset the port, and it
517 * should. Actually it should probably do what it's doing here, and
518 * reset the port physically
520 static int usb_stor_CB_reset(struct us_data *us)
522 unsigned char cmd[12];
526 memset(cmd, 0xff, sizeof(cmd));
527 cmd[0] = SCSI_SEND_DIAG;
529 result = usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0),
531 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
532 0, us->ifnum, cmd, sizeof(cmd),
533 USB_CNTL_TIMEOUT * 5);
535 /* long wait for reset */
537 debug("CB_reset result %d: status %lX clearing endpoint halt\n",
538 result, us->pusb_dev->status);
539 usb_clear_halt(us->pusb_dev, usb_rcvbulkpipe(us->pusb_dev, us->ep_in));
540 usb_clear_halt(us->pusb_dev, usb_rcvbulkpipe(us->pusb_dev, us->ep_out));
542 debug("CB_reset done\n");
547 * Set up the command for a BBB device. Note that the actual SCSI
548 * command is copied into cbw.CBWCDB.
550 static int usb_stor_BBB_comdat(struct scsi_cmd *srb, struct us_data *us)
556 ALLOC_CACHE_ALIGN_BUFFER(struct umass_bbb_cbw, cbw, 1);
558 dir_in = US_DIRECTION(srb->cmd[0]);
560 #ifdef BBB_COMDAT_TRACE
561 printf("dir %d lun %d cmdlen %d cmd %p datalen %lu pdata %p\n",
562 dir_in, srb->lun, srb->cmdlen, srb->cmd, srb->datalen,
565 for (result = 0; result < srb->cmdlen; result++)
566 printf("cmd[%d] %#x ", result, srb->cmd[result]);
571 if (!(srb->cmdlen <= CBWCDBLENGTH)) {
572 debug("usb_stor_BBB_comdat:cmdlen too large\n");
576 /* always OUT to the ep */
577 pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
579 cbw->dCBWSignature = cpu_to_le32(CBWSIGNATURE);
580 cbw->dCBWTag = cpu_to_le32(CBWTag++);
581 cbw->dCBWDataTransferLength = cpu_to_le32(srb->datalen);
582 cbw->bCBWFlags = (dir_in ? CBWFLAGS_IN : CBWFLAGS_OUT);
583 cbw->bCBWLUN = srb->lun;
584 cbw->bCDBLength = srb->cmdlen;
585 /* copy the command data into the CBW command data buffer */
588 memcpy(cbw->CBWCDB, srb->cmd, srb->cmdlen);
589 result = usb_bulk_msg(us->pusb_dev, pipe, cbw, UMASS_BBB_CBW_SIZE,
590 &actlen, USB_CNTL_TIMEOUT * 5);
592 debug("usb_stor_BBB_comdat:usb_bulk_msg error\n");
596 /* FIXME: we also need a CBI_command which sets up the completion
597 * interrupt, and waits for it
599 static int usb_stor_CB_comdat(struct scsi_cmd *srb, struct us_data *us)
604 unsigned long status;
607 dir_in = US_DIRECTION(srb->cmd[0]);
610 pipe = usb_rcvbulkpipe(us->pusb_dev, us->ep_in);
612 pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
615 debug("CBI gets a command: Try %d\n", 5 - retry);
619 /* let's send the command via the control pipe */
620 result = usb_control_msg(us->pusb_dev,
621 usb_sndctrlpipe(us->pusb_dev , 0),
623 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
625 srb->cmd, srb->cmdlen,
626 USB_CNTL_TIMEOUT * 5);
627 debug("CB_transport: control msg returned %d, status %lX\n",
628 result, us->pusb_dev->status);
629 /* check the return code for the command */
631 if (us->pusb_dev->status & USB_ST_STALLED) {
632 status = us->pusb_dev->status;
633 debug(" stall during command found," \
635 usb_clear_halt(us->pusb_dev,
636 usb_sndctrlpipe(us->pusb_dev, 0));
637 us->pusb_dev->status = status;
639 debug(" error during command %02X" \
640 " Stat = %lX\n", srb->cmd[0],
641 us->pusb_dev->status);
644 /* transfer the data payload for this command, if one exists*/
646 debug("CB_transport: control msg returned %d," \
647 " direction is %s to go 0x%lx\n", result,
648 dir_in ? "IN" : "OUT", srb->datalen);
650 result = us_one_transfer(us, pipe, (char *)srb->pdata,
652 debug("CBI attempted to transfer data," \
653 " result is %d status %lX, len %d\n",
654 result, us->pusb_dev->status,
655 us->pusb_dev->act_len);
656 if (!(us->pusb_dev->status & USB_ST_NAK_REC))
658 } /* if (srb->datalen) */
668 static int usb_stor_CBI_get_status(struct scsi_cmd *srb, struct us_data *us)
673 usb_int_msg(us->pusb_dev, us->irqpipe,
674 (void *)&us->ip_data, us->irqmaxp, us->irqinterval, false);
677 if (us->ip_wanted == 0)
682 printf(" Did not get interrupt on CBI\n");
684 return USB_STOR_TRANSPORT_ERROR;
686 debug("Got interrupt data 0x%x, transferred %d status 0x%lX\n",
687 us->ip_data, us->pusb_dev->irq_act_len,
688 us->pusb_dev->irq_status);
689 /* UFI gives us ASC and ASCQ, like a request sense */
690 if (us->subclass == US_SC_UFI) {
691 if (srb->cmd[0] == SCSI_REQ_SENSE ||
692 srb->cmd[0] == SCSI_INQUIRY)
693 return USB_STOR_TRANSPORT_GOOD; /* Good */
694 else if (us->ip_data)
695 return USB_STOR_TRANSPORT_FAILED;
697 return USB_STOR_TRANSPORT_GOOD;
699 /* otherwise, we interpret the data normally */
700 switch (us->ip_data) {
702 return USB_STOR_TRANSPORT_GOOD;
704 return USB_STOR_TRANSPORT_FAILED;
706 return USB_STOR_TRANSPORT_ERROR;
708 return USB_STOR_TRANSPORT_ERROR;
711 #define USB_TRANSPORT_UNKNOWN_RETRY 5
712 #define USB_TRANSPORT_NOT_READY_RETRY 10
714 /* clear a stall on an endpoint - special for BBB devices */
715 static int usb_stor_BBB_clear_endpt_stall(struct us_data *us, __u8 endpt)
717 /* ENDPOINT_HALT = 0, so set value to 0 */
718 return usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0),
719 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
720 endpt, NULL, 0, USB_CNTL_TIMEOUT * 5);
723 static int usb_stor_BBB_transport(struct scsi_cmd *srb, struct us_data *us)
727 int actlen, data_actlen;
728 unsigned int pipe, pipein, pipeout;
729 ALLOC_CACHE_ALIGN_BUFFER(struct umass_bbb_csw, csw, 1);
730 #ifdef BBB_XPORT_TRACE
735 dir_in = US_DIRECTION(srb->cmd[0]);
738 debug("COMMAND phase\n");
739 result = usb_stor_BBB_comdat(srb, us);
741 debug("failed to send CBW status %ld\n",
742 us->pusb_dev->status);
743 usb_stor_BBB_reset(us);
744 return USB_STOR_TRANSPORT_FAILED;
746 if (!(us->flags & USB_READY))
748 pipein = usb_rcvbulkpipe(us->pusb_dev, us->ep_in);
749 pipeout = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
750 /* DATA phase + error handling */
752 /* no data, go immediately to the STATUS phase */
753 if (srb->datalen == 0)
755 debug("DATA phase\n");
761 result = usb_bulk_msg(us->pusb_dev, pipe, srb->pdata, srb->datalen,
762 &data_actlen, USB_CNTL_TIMEOUT * 5);
763 /* special handling of STALL in DATA phase */
764 if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) {
765 debug("DATA:stall\n");
766 /* clear the STALL on the endpoint */
767 result = usb_stor_BBB_clear_endpt_stall(us,
768 dir_in ? us->ep_in : us->ep_out);
770 /* continue on to STATUS phase */
774 debug("usb_bulk_msg error status %ld\n",
775 us->pusb_dev->status);
776 usb_stor_BBB_reset(us);
777 return USB_STOR_TRANSPORT_FAILED;
779 #ifdef BBB_XPORT_TRACE
780 for (index = 0; index < data_actlen; index++)
781 printf("pdata[%d] %#x ", index, srb->pdata[index]);
784 /* STATUS phase + error handling */
788 debug("STATUS phase\n");
789 result = usb_bulk_msg(us->pusb_dev, pipein, csw, UMASS_BBB_CSW_SIZE,
790 &actlen, USB_CNTL_TIMEOUT*5);
792 /* special handling of STALL in STATUS phase */
793 if ((result < 0) && (retry < 1) &&
794 (us->pusb_dev->status & USB_ST_STALLED)) {
795 debug("STATUS:stall\n");
796 /* clear the STALL on the endpoint */
797 result = usb_stor_BBB_clear_endpt_stall(us, us->ep_in);
798 if (result >= 0 && (retry++ < 1))
803 debug("usb_bulk_msg error status %ld\n",
804 us->pusb_dev->status);
805 usb_stor_BBB_reset(us);
806 return USB_STOR_TRANSPORT_FAILED;
808 #ifdef BBB_XPORT_TRACE
809 ptr = (unsigned char *)csw;
810 for (index = 0; index < UMASS_BBB_CSW_SIZE; index++)
811 printf("ptr[%d] %#x ", index, ptr[index]);
814 /* misuse pipe to get the residue */
815 pipe = le32_to_cpu(csw->dCSWDataResidue);
816 if (pipe == 0 && srb->datalen != 0 && srb->datalen - data_actlen != 0)
817 pipe = srb->datalen - data_actlen;
818 if (CSWSIGNATURE != le32_to_cpu(csw->dCSWSignature)) {
819 debug("!CSWSIGNATURE\n");
820 usb_stor_BBB_reset(us);
821 return USB_STOR_TRANSPORT_FAILED;
822 } else if ((CBWTag - 1) != le32_to_cpu(csw->dCSWTag)) {
824 usb_stor_BBB_reset(us);
825 return USB_STOR_TRANSPORT_FAILED;
826 } else if (csw->bCSWStatus > CSWSTATUS_PHASE) {
828 usb_stor_BBB_reset(us);
829 return USB_STOR_TRANSPORT_FAILED;
830 } else if (csw->bCSWStatus == CSWSTATUS_PHASE) {
832 usb_stor_BBB_reset(us);
833 return USB_STOR_TRANSPORT_FAILED;
834 } else if (data_actlen > srb->datalen) {
835 debug("transferred %dB instead of %ldB\n",
836 data_actlen, srb->datalen);
837 return USB_STOR_TRANSPORT_FAILED;
838 } else if (csw->bCSWStatus == CSWSTATUS_FAILED) {
840 return USB_STOR_TRANSPORT_FAILED;
846 static int usb_stor_CB_transport(struct scsi_cmd *srb, struct us_data *us)
849 struct scsi_cmd *psrb;
850 struct scsi_cmd reqsrb;
854 status = USB_STOR_TRANSPORT_GOOD;
857 /* issue the command */
859 result = usb_stor_CB_comdat(srb, us);
860 debug("command / Data returned %d, status %lX\n",
861 result, us->pusb_dev->status);
862 /* if this is an CBI Protocol, get IRQ */
863 if (us->protocol == US_PR_CBI) {
864 status = usb_stor_CBI_get_status(srb, us);
865 /* if the status is error, report it */
866 if (status == USB_STOR_TRANSPORT_ERROR) {
867 debug(" USB CBI Command Error\n");
870 srb->sense_buf[12] = (unsigned char)(us->ip_data >> 8);
871 srb->sense_buf[13] = (unsigned char)(us->ip_data & 0xff);
873 /* if the status is good, report it */
874 if (status == USB_STOR_TRANSPORT_GOOD) {
875 debug(" USB CBI Command Good\n");
880 /* do we have to issue an auto request? */
881 /* HERE we have to check the result */
882 if ((result < 0) && !(us->pusb_dev->status & USB_ST_STALLED)) {
883 debug("ERROR %lX\n", us->pusb_dev->status);
884 us->transport_reset(us);
885 return USB_STOR_TRANSPORT_ERROR;
887 if ((us->protocol == US_PR_CBI) &&
888 ((srb->cmd[0] == SCSI_REQ_SENSE) ||
889 (srb->cmd[0] == SCSI_INQUIRY))) {
890 /* do not issue an autorequest after request sense */
891 debug("No auto request and good\n");
892 return USB_STOR_TRANSPORT_GOOD;
894 /* issue an request_sense */
895 memset(&psrb->cmd[0], 0, 12);
896 psrb->cmd[0] = SCSI_REQ_SENSE;
897 psrb->cmd[1] = srb->lun << 5;
900 psrb->pdata = &srb->sense_buf[0];
901 psrb->cmdlen = us->cmd12 ? 12 : 6;
902 /* issue the command */
903 result = usb_stor_CB_comdat(psrb, us);
904 debug("auto request returned %d\n", result);
905 /* if this is an CBI Protocol, get IRQ */
906 if (us->protocol == US_PR_CBI)
907 status = usb_stor_CBI_get_status(psrb, us);
909 if ((result < 0) && !(us->pusb_dev->status & USB_ST_STALLED)) {
910 debug(" AUTO REQUEST ERROR %ld\n",
911 us->pusb_dev->status);
912 return USB_STOR_TRANSPORT_ERROR;
914 debug("autorequest returned 0x%02X 0x%02X 0x%02X 0x%02X\n",
915 srb->sense_buf[0], srb->sense_buf[2],
916 srb->sense_buf[12], srb->sense_buf[13]);
917 /* Check the auto request result */
918 if ((srb->sense_buf[2] == 0) &&
919 (srb->sense_buf[12] == 0) &&
920 (srb->sense_buf[13] == 0)) {
922 return USB_STOR_TRANSPORT_GOOD;
925 /* Check the auto request result */
926 switch (srb->sense_buf[2]) {
928 /* Recovered Error */
929 return USB_STOR_TRANSPORT_GOOD;
933 if (notready++ > USB_TRANSPORT_NOT_READY_RETRY) {
934 printf("cmd 0x%02X returned 0x%02X 0x%02X 0x%02X"
935 " 0x%02X (NOT READY)\n", srb->cmd[0],
936 srb->sense_buf[0], srb->sense_buf[2],
937 srb->sense_buf[12], srb->sense_buf[13]);
938 return USB_STOR_TRANSPORT_FAILED;
945 if (retry++ > USB_TRANSPORT_UNKNOWN_RETRY) {
946 printf("cmd 0x%02X returned 0x%02X 0x%02X 0x%02X"
947 " 0x%02X\n", srb->cmd[0], srb->sense_buf[0],
948 srb->sense_buf[2], srb->sense_buf[12],
950 return USB_STOR_TRANSPORT_FAILED;
955 return USB_STOR_TRANSPORT_FAILED;
958 static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
962 * Limit the total size of a transfer to 120 KB.
964 * Some devices are known to choke with anything larger. It seems like
965 * the problem stems from the fact that original IDE controllers had
966 * only an 8-bit register to hold the number of sectors in one transfer
967 * and even those couldn't handle a full 256 sectors.
969 * Because we want to make sure we interoperate with as many devices as
970 * possible, we will maintain a 240 sector transfer size limit for USB
971 * Mass Storage devices.
973 * Tests show that other operating have similar limits with Microsoft
974 * Windows 7 limiting transfers to 128 sectors for both USB2 and USB3
975 * and Apple Mac OS X 10.11 limiting transfers to 256 sectors for USB2
976 * and 2048 for USB3 devices.
978 unsigned short blk = 240;
980 #if CONFIG_IS_ENABLED(DM_USB)
984 ret = usb_get_max_xfer_size(udev, (size_t *)&size);
985 if ((ret >= 0) && (size < blk * 512))
989 us->max_xfer_blk = blk;
992 static int usb_inquiry(struct scsi_cmd *srb, struct us_data *ss)
997 memset(&srb->cmd[0], 0, 12);
998 srb->cmd[0] = SCSI_INQUIRY;
999 srb->cmd[1] = srb->lun << 5;
1002 srb->cmdlen = ss->cmd12 ? 12 : 6;
1003 i = ss->transport(srb, ss);
1004 debug("inquiry returns %d\n", i);
1010 printf("error in inquiry\n");
1016 static int usb_request_sense(struct scsi_cmd *srb, struct us_data *ss)
1020 ptr = (char *)srb->pdata;
1021 memset(&srb->cmd[0], 0, 12);
1022 srb->cmd[0] = SCSI_REQ_SENSE;
1023 srb->cmd[1] = srb->lun << 5;
1026 srb->pdata = &srb->sense_buf[0];
1027 srb->cmdlen = ss->cmd12 ? 12 : 6;
1028 ss->transport(srb, ss);
1029 debug("Request Sense returned %02X %02X %02X\n",
1030 srb->sense_buf[2], srb->sense_buf[12],
1031 srb->sense_buf[13]);
1032 srb->pdata = (uchar *)ptr;
1036 static int usb_test_unit_ready(struct scsi_cmd *srb, struct us_data *ss)
1041 memset(&srb->cmd[0], 0, 12);
1042 srb->cmd[0] = SCSI_TST_U_RDY;
1043 srb->cmd[1] = srb->lun << 5;
1045 srb->cmdlen = ss->cmd12 ? 12 : 6;
1046 if (ss->transport(srb, ss) == USB_STOR_TRANSPORT_GOOD) {
1047 ss->flags |= USB_READY;
1050 usb_request_sense(srb, ss);
1052 * Check the Key Code Qualifier, if it matches
1053 * "Not Ready - medium not present"
1054 * (the sense Key equals 0x2 and the ASC is 0x3a)
1055 * return immediately as the medium being absent won't change
1056 * unless there is a user action.
1058 if ((srb->sense_buf[2] == 0x02) &&
1059 (srb->sense_buf[12] == 0x3a))
1062 } while (retries--);
1067 static int usb_read_capacity(struct scsi_cmd *srb, struct us_data *ss)
1073 memset(&srb->cmd[0], 0, 12);
1074 srb->cmd[0] = SCSI_RD_CAPAC;
1075 srb->cmd[1] = srb->lun << 5;
1077 srb->cmdlen = ss->cmd12 ? 12 : 10;
1078 if (ss->transport(srb, ss) == USB_STOR_TRANSPORT_GOOD)
1085 static int usb_read_10(struct scsi_cmd *srb, struct us_data *ss,
1086 unsigned long start, unsigned short blocks)
1088 memset(&srb->cmd[0], 0, 12);
1089 srb->cmd[0] = SCSI_READ10;
1090 srb->cmd[1] = srb->lun << 5;
1091 srb->cmd[2] = ((unsigned char) (start >> 24)) & 0xff;
1092 srb->cmd[3] = ((unsigned char) (start >> 16)) & 0xff;
1093 srb->cmd[4] = ((unsigned char) (start >> 8)) & 0xff;
1094 srb->cmd[5] = ((unsigned char) (start)) & 0xff;
1095 srb->cmd[7] = ((unsigned char) (blocks >> 8)) & 0xff;
1096 srb->cmd[8] = (unsigned char) blocks & 0xff;
1097 srb->cmdlen = ss->cmd12 ? 12 : 10;
1098 debug("read10: start %lx blocks %x\n", start, blocks);
1099 return ss->transport(srb, ss);
1102 static int usb_write_10(struct scsi_cmd *srb, struct us_data *ss,
1103 unsigned long start, unsigned short blocks)
1105 memset(&srb->cmd[0], 0, 12);
1106 srb->cmd[0] = SCSI_WRITE10;
1107 srb->cmd[1] = srb->lun << 5;
1108 srb->cmd[2] = ((unsigned char) (start >> 24)) & 0xff;
1109 srb->cmd[3] = ((unsigned char) (start >> 16)) & 0xff;
1110 srb->cmd[4] = ((unsigned char) (start >> 8)) & 0xff;
1111 srb->cmd[5] = ((unsigned char) (start)) & 0xff;
1112 srb->cmd[7] = ((unsigned char) (blocks >> 8)) & 0xff;
1113 srb->cmd[8] = (unsigned char) blocks & 0xff;
1114 srb->cmdlen = ss->cmd12 ? 12 : 10;
1115 debug("write10: start %lx blocks %x\n", start, blocks);
1116 return ss->transport(srb, ss);
1120 #ifdef CONFIG_USB_BIN_FIXUP
1122 * Some USB storage devices queried for SCSI identification data respond with
1123 * binary strings, which if output to the console freeze the terminal. The
1124 * workaround is to modify the vendor and product strings read from such
1125 * device with proper values (as reported by 'usb info').
1127 * Vendor and product length limits are taken from the definition of
1128 * struct blk_desc in include/part.h.
1130 static void usb_bin_fixup(struct usb_device_descriptor descriptor,
1131 unsigned char vendor[],
1132 unsigned char product[]) {
1133 const unsigned char max_vendor_len = 40;
1134 const unsigned char max_product_len = 20;
1135 if (descriptor.idVendor == 0x0424 && descriptor.idProduct == 0x223a) {
1136 strncpy((char *)vendor, "SMSC", max_vendor_len);
1137 strncpy((char *)product, "Flash Media Cntrller",
1141 #endif /* CONFIG_USB_BIN_FIXUP */
1143 #if CONFIG_IS_ENABLED(BLK)
1144 static unsigned long usb_stor_read(struct udevice *dev, lbaint_t blknr,
1145 lbaint_t blkcnt, void *buffer)
1147 static unsigned long usb_stor_read(struct blk_desc *block_dev, lbaint_t blknr,
1148 lbaint_t blkcnt, void *buffer)
1151 lbaint_t start, blks;
1153 unsigned short smallblks;
1154 struct usb_device *udev;
1157 struct scsi_cmd *srb = &usb_ccb;
1158 #if CONFIG_IS_ENABLED(BLK)
1159 struct blk_desc *block_dev;
1165 #if CONFIG_IS_ENABLED(BLK)
1166 block_dev = dev_get_uclass_plat(dev);
1167 udev = dev_get_parent_priv(dev_get_parent(dev));
1168 debug("\nusb_read: udev %d\n", block_dev->devnum);
1170 debug("\nusb_read: udev %d\n", block_dev->devnum);
1171 udev = usb_dev_desc[block_dev->devnum].priv;
1173 debug("%s: No device\n", __func__);
1177 ss = (struct us_data *)udev->privptr;
1179 usb_disable_asynch(1); /* asynch transfer not allowed */
1180 usb_lock_async(udev, 1);
1181 srb->lun = block_dev->lun;
1182 buf_addr = (uintptr_t)buffer;
1186 debug("\nusb_read: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
1187 block_dev->devnum, start, blks, buf_addr);
1190 /* XXX need some comment here */
1192 srb->pdata = (unsigned char *)buf_addr;
1193 if (blks > ss->max_xfer_blk)
1194 smallblks = ss->max_xfer_blk;
1196 smallblks = (unsigned short) blks;
1198 if (smallblks == ss->max_xfer_blk)
1199 usb_show_progress();
1200 srb->datalen = block_dev->blksz * smallblks;
1201 srb->pdata = (unsigned char *)buf_addr;
1202 if (usb_read_10(srb, ss, start, smallblks)) {
1203 debug("Read ERROR\n");
1204 ss->flags &= ~USB_READY;
1205 usb_request_sense(srb, ss);
1213 buf_addr += srb->datalen;
1214 } while (blks != 0);
1216 debug("usb_read: end startblk " LBAF ", blccnt %x buffer %lx\n",
1217 start, smallblks, buf_addr);
1219 usb_lock_async(udev, 0);
1220 usb_disable_asynch(0); /* asynch transfer allowed */
1221 if (blkcnt >= ss->max_xfer_blk)
1226 #if CONFIG_IS_ENABLED(BLK)
1227 static unsigned long usb_stor_write(struct udevice *dev, lbaint_t blknr,
1228 lbaint_t blkcnt, const void *buffer)
1230 static unsigned long usb_stor_write(struct blk_desc *block_dev, lbaint_t blknr,
1231 lbaint_t blkcnt, const void *buffer)
1234 lbaint_t start, blks;
1236 unsigned short smallblks;
1237 struct usb_device *udev;
1240 struct scsi_cmd *srb = &usb_ccb;
1241 #if CONFIG_IS_ENABLED(BLK)
1242 struct blk_desc *block_dev;
1249 #if CONFIG_IS_ENABLED(BLK)
1250 block_dev = dev_get_uclass_plat(dev);
1251 udev = dev_get_parent_priv(dev_get_parent(dev));
1252 debug("\nusb_read: udev %d\n", block_dev->devnum);
1254 debug("\nusb_read: udev %d\n", block_dev->devnum);
1255 udev = usb_dev_desc[block_dev->devnum].priv;
1257 debug("%s: No device\n", __func__);
1261 ss = (struct us_data *)udev->privptr;
1263 usb_disable_asynch(1); /* asynch transfer not allowed */
1264 usb_lock_async(udev, 1);
1266 srb->lun = block_dev->lun;
1267 buf_addr = (uintptr_t)buffer;
1271 debug("\nusb_write: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
1272 block_dev->devnum, start, blks, buf_addr);
1275 /* If write fails retry for max retry count else
1276 * return with number of blocks written successfully.
1279 srb->pdata = (unsigned char *)buf_addr;
1280 if (blks > ss->max_xfer_blk)
1281 smallblks = ss->max_xfer_blk;
1283 smallblks = (unsigned short) blks;
1285 if (smallblks == ss->max_xfer_blk)
1286 usb_show_progress();
1287 srb->datalen = block_dev->blksz * smallblks;
1288 srb->pdata = (unsigned char *)buf_addr;
1289 if (usb_write_10(srb, ss, start, smallblks)) {
1290 debug("Write ERROR\n");
1291 ss->flags &= ~USB_READY;
1292 usb_request_sense(srb, ss);
1300 buf_addr += srb->datalen;
1301 } while (blks != 0);
1303 debug("usb_write: end startblk " LBAF ", blccnt %x buffer %lx\n",
1304 start, smallblks, buf_addr);
1306 usb_lock_async(udev, 0);
1307 usb_disable_asynch(0); /* asynch transfer allowed */
1308 if (blkcnt >= ss->max_xfer_blk)
1314 /* Probe to see if a new device is actually a Storage device */
1315 int usb_storage_probe(struct usb_device *dev, unsigned int ifnum,
1318 struct usb_interface *iface;
1320 struct usb_endpoint_descriptor *ep_desc;
1321 unsigned int flags = 0;
1323 /* let's examine the device now */
1324 iface = &dev->config.if_desc[ifnum];
1326 if (dev->descriptor.bDeviceClass != 0 ||
1327 iface->desc.bInterfaceClass != USB_CLASS_MASS_STORAGE ||
1328 iface->desc.bInterfaceSubClass < US_SC_MIN ||
1329 iface->desc.bInterfaceSubClass > US_SC_MAX) {
1330 debug("Not mass storage\n");
1331 /* if it's not a mass storage, we go no further */
1335 memset(ss, 0, sizeof(struct us_data));
1337 /* At this point, we know we've got a live one */
1338 debug("\n\nUSB Mass Storage device detected\n");
1340 /* Initialize the us_data structure with some useful info */
1344 ss->attention_done = 0;
1345 ss->subclass = iface->desc.bInterfaceSubClass;
1346 ss->protocol = iface->desc.bInterfaceProtocol;
1348 /* set the handler pointers based on the protocol */
1349 debug("Transport: ");
1350 switch (ss->protocol) {
1352 debug("Control/Bulk\n");
1353 ss->transport = usb_stor_CB_transport;
1354 ss->transport_reset = usb_stor_CB_reset;
1358 debug("Control/Bulk/Interrupt\n");
1359 ss->transport = usb_stor_CB_transport;
1360 ss->transport_reset = usb_stor_CB_reset;
1363 debug("Bulk/Bulk/Bulk\n");
1364 ss->transport = usb_stor_BBB_transport;
1365 ss->transport_reset = usb_stor_BBB_reset;
1368 printf("USB Storage Transport unknown / not yet implemented\n");
1374 * We are expecting a minimum of 2 endpoints - in and out (bulk).
1375 * An optional interrupt is OK (necessary for CBI protocol).
1376 * We will ignore any others.
1378 for (i = 0; i < iface->desc.bNumEndpoints; i++) {
1379 ep_desc = &iface->ep_desc[i];
1380 /* is it an BULK endpoint? */
1381 if ((ep_desc->bmAttributes &
1382 USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_BULK) {
1383 if (ep_desc->bEndpointAddress & USB_DIR_IN)
1384 ss->ep_in = ep_desc->bEndpointAddress &
1385 USB_ENDPOINT_NUMBER_MASK;
1388 ep_desc->bEndpointAddress &
1389 USB_ENDPOINT_NUMBER_MASK;
1392 /* is it an interrupt endpoint? */
1393 if ((ep_desc->bmAttributes &
1394 USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_INT) {
1395 ss->ep_int = ep_desc->bEndpointAddress &
1396 USB_ENDPOINT_NUMBER_MASK;
1397 ss->irqinterval = ep_desc->bInterval;
1400 debug("Endpoints In %d Out %d Int %d\n",
1401 ss->ep_in, ss->ep_out, ss->ep_int);
1403 /* Do some basic sanity checks, and bail if we find a problem */
1404 if (usb_set_interface(dev, iface->desc.bInterfaceNumber, 0) ||
1405 !ss->ep_in || !ss->ep_out ||
1406 (ss->protocol == US_PR_CBI && ss->ep_int == 0)) {
1407 debug("Problems with device\n");
1410 /* set class specific stuff */
1411 /* We only handle certain protocols. Currently, these are
1413 * The SFF8070 accepts the requests used in u-boot
1415 if (ss->subclass != US_SC_UFI && ss->subclass != US_SC_SCSI &&
1416 ss->subclass != US_SC_8070) {
1417 printf("Sorry, protocol %d not yet supported.\n", ss->subclass);
1421 /* UFI uses 12-byte commands (like RBC, unlike SCSI) */
1422 if (ss->subclass == US_SC_UFI)
1426 /* we had found an interrupt endpoint, prepare irq pipe
1427 * set up the IRQ pipe and handler
1429 ss->irqinterval = (ss->irqinterval > 0) ? ss->irqinterval : 255;
1430 ss->irqpipe = usb_rcvintpipe(ss->pusb_dev, ss->ep_int);
1431 ss->irqmaxp = usb_maxpacket(dev, ss->irqpipe);
1432 dev->irq_handle = usb_stor_irq;
1435 /* Set the maximum transfer size per host controller setting */
1436 usb_stor_set_max_xfer_blk(dev, ss);
1438 dev->privptr = (void *)ss;
1442 int usb_stor_get_info(struct usb_device *dev, struct us_data *ss,
1443 struct blk_desc *dev_desc)
1445 unsigned char perq, modi;
1446 ALLOC_CACHE_ALIGN_BUFFER(u32, cap, 2);
1447 ALLOC_CACHE_ALIGN_BUFFER(u8, usb_stor_buf, 36);
1448 u32 capacity, blksz;
1449 struct scsi_cmd *pccb = &usb_ccb;
1451 pccb->pdata = usb_stor_buf;
1453 dev_desc->target = dev->devnum;
1454 pccb->lun = dev_desc->lun;
1455 debug(" address %d\n", dev_desc->target);
1457 if (usb_inquiry(pccb, ss)) {
1458 debug("%s: usb_inquiry() failed\n", __func__);
1462 perq = usb_stor_buf[0];
1463 modi = usb_stor_buf[1];
1466 * Skip unknown devices (0x1f) and enclosure service devices (0x0d),
1467 * they would not respond to test_unit_ready .
1469 if (((perq & 0x1f) == 0x1f) || ((perq & 0x1f) == 0x0d)) {
1470 debug("%s: unknown/unsupported device\n", __func__);
1473 if ((modi&0x80) == 0x80) {
1474 /* drive is removable */
1475 dev_desc->removable = 1;
1477 memcpy(dev_desc->vendor, (const void *)&usb_stor_buf[8], 8);
1478 memcpy(dev_desc->product, (const void *)&usb_stor_buf[16], 16);
1479 memcpy(dev_desc->revision, (const void *)&usb_stor_buf[32], 4);
1480 dev_desc->vendor[8] = 0;
1481 dev_desc->product[16] = 0;
1482 dev_desc->revision[4] = 0;
1483 #ifdef CONFIG_USB_BIN_FIXUP
1484 usb_bin_fixup(dev->descriptor, (uchar *)dev_desc->vendor,
1485 (uchar *)dev_desc->product);
1486 #endif /* CONFIG_USB_BIN_FIXUP */
1487 debug("ISO Vers %X, Response Data %X\n", usb_stor_buf[2],
1489 if (usb_test_unit_ready(pccb, ss)) {
1490 printf("Device NOT ready\n"
1491 " Request Sense returned %02X %02X %02X\n",
1492 pccb->sense_buf[2], pccb->sense_buf[12],
1493 pccb->sense_buf[13]);
1494 if (dev_desc->removable == 1)
1495 dev_desc->type = perq;
1498 pccb->pdata = (unsigned char *)cap;
1499 memset(pccb->pdata, 0, 8);
1500 if (usb_read_capacity(pccb, ss) != 0) {
1501 printf("READ_CAP ERROR\n");
1502 ss->flags &= ~USB_READY;
1506 debug("Read Capacity returns: 0x%08x, 0x%08x\n", cap[0], cap[1]);
1508 if (cap[0] > (0x200000 * 10)) /* greater than 10 GByte */
1511 cap[0] = cpu_to_be32(cap[0]);
1512 cap[1] = cpu_to_be32(cap[1]);
1515 capacity = be32_to_cpu(cap[0]) + 1;
1516 blksz = be32_to_cpu(cap[1]);
1518 debug("Capacity = 0x%08x, blocksz = 0x%08x\n", capacity, blksz);
1519 dev_desc->lba = capacity;
1520 dev_desc->blksz = blksz;
1521 dev_desc->log2blksz = LOG2(dev_desc->blksz);
1522 dev_desc->type = perq;
1523 debug(" address %d\n", dev_desc->target);
1528 #if CONFIG_IS_ENABLED(DM_USB)
1530 static int usb_mass_storage_probe(struct udevice *dev)
1532 struct usb_device *udev = dev_get_parent_priv(dev);
1535 usb_disable_asynch(1); /* asynch transfer not allowed */
1536 ret = usb_stor_probe_device(udev);
1537 usb_disable_asynch(0); /* asynch transfer allowed */
1542 static const struct udevice_id usb_mass_storage_ids[] = {
1543 { .compatible = "usb-mass-storage" },
1547 U_BOOT_DRIVER(usb_mass_storage) = {
1548 .name = "usb_mass_storage",
1549 .id = UCLASS_MASS_STORAGE,
1550 .of_match = usb_mass_storage_ids,
1551 .probe = usb_mass_storage_probe,
1552 #if CONFIG_IS_ENABLED(BLK)
1553 .plat_auto = sizeof(struct us_data),
1557 UCLASS_DRIVER(usb_mass_storage) = {
1558 .id = UCLASS_MASS_STORAGE,
1559 .name = "usb_mass_storage",
1562 static const struct usb_device_id mass_storage_id_table[] = {
1564 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1565 .bInterfaceClass = USB_CLASS_MASS_STORAGE
1567 { } /* Terminating entry */
1570 U_BOOT_USB_DEVICE(usb_mass_storage, mass_storage_id_table);
1573 #if CONFIG_IS_ENABLED(BLK)
1574 static const struct blk_ops usb_storage_ops = {
1575 .read = usb_stor_read,
1576 .write = usb_stor_write,
1579 U_BOOT_DRIVER(usb_storage_blk) = {
1580 .name = "usb_storage_blk",
1582 .ops = &usb_storage_ops,
1585 U_BOOT_LEGACY_BLK(usb) = {
1586 .uclass_idname = "usb",
1587 .uclass_id = UCLASS_USB,
1588 .max_devs = USB_MAX_STOR_DEV,
1589 .desc = usb_dev_desc,