1 // SPDX-License-Identifier: GPL-2.0+
3 * Most of this source has been derived from the Linux USB
5 * (c) 1999-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
6 * (c) 2000 David L. Brown, Jr. (usb-storage@davidb.org)
7 * (c) 1999 Michael Gee (michael@linuxspecific.com)
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
17 * Gary Jennejohn, DENX Software Engineering <garyj@denx.de>
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>
52 #undef BBB_COMDAT_TRACE
53 #undef BBB_XPORT_TRACE
56 /* direction table -- this indicates the direction of the data
57 * transfer for each command code -- a 1 indicates input
59 static const unsigned char us_direction[256/8] = {
60 0x28, 0x81, 0x14, 0x14, 0x20, 0x01, 0x90, 0x77,
61 0x0C, 0x20, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,
62 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01,
63 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
65 #define US_DIRECTION(x) ((us_direction[x>>3] >> (x & 7)) & 1)
67 static struct scsi_cmd usb_ccb __aligned(ARCH_DMA_MINALIGN);
70 static int usb_max_devs; /* number of highest available usb device */
72 #if !CONFIG_IS_ENABLED(BLK)
73 static struct blk_desc usb_dev_desc[USB_MAX_STOR_DEV];
77 typedef int (*trans_cmnd)(struct scsi_cmd *cb, struct us_data *data);
78 typedef int (*trans_reset)(struct us_data *data);
81 struct usb_device *pusb_dev; /* this usb_device */
83 unsigned int flags; /* from filter initially */
84 # define USB_READY (1 << 0)
85 unsigned char ifnum; /* interface number */
86 unsigned char ep_in; /* in endpoint */
87 unsigned char ep_out; /* out ....... */
88 unsigned char ep_int; /* interrupt . */
89 unsigned char subclass; /* as in overview */
90 unsigned char protocol; /* .............. */
91 unsigned char attention_done; /* force attn on first cmd */
92 unsigned short ip_data; /* interrupt data */
93 int action; /* what to do */
94 int ip_wanted; /* needed */
95 int *irq_handle; /* for USB int requests */
96 unsigned int irqpipe; /* pipe for release_irq */
97 unsigned char irqmaxp; /* max packed for irq Pipe */
98 unsigned char irqinterval; /* Intervall for IRQ Pipe */
99 struct scsi_cmd *srb; /* current srb */
100 trans_reset transport_reset; /* reset routine */
101 trans_cmnd transport; /* transport routine */
102 unsigned short max_xfer_blk; /* maximum transfer blocks */
105 #if !CONFIG_IS_ENABLED(BLK)
106 static struct us_data usb_stor[USB_MAX_STOR_DEV];
109 #define USB_STOR_TRANSPORT_GOOD 0
110 #define USB_STOR_TRANSPORT_FAILED -1
111 #define USB_STOR_TRANSPORT_ERROR -2
113 int usb_stor_get_info(struct usb_device *dev, struct us_data *us,
114 struct blk_desc *dev_desc);
115 int usb_storage_probe(struct usb_device *dev, unsigned int ifnum,
117 #if CONFIG_IS_ENABLED(BLK)
118 static unsigned long usb_stor_read(struct udevice *dev, lbaint_t blknr,
119 lbaint_t blkcnt, void *buffer);
120 static unsigned long usb_stor_write(struct udevice *dev, lbaint_t blknr,
121 lbaint_t blkcnt, const void *buffer);
123 static unsigned long usb_stor_read(struct blk_desc *block_dev, lbaint_t blknr,
124 lbaint_t blkcnt, void *buffer);
125 static unsigned long usb_stor_write(struct blk_desc *block_dev, lbaint_t blknr,
126 lbaint_t blkcnt, const void *buffer);
128 void uhci_show_temp_int_td(void);
130 static void usb_show_progress(void)
135 /*******************************************************************************
136 * show info on storage devices; 'usb start/init' must be invoked earlier
137 * as we only retrieve structures populated during devices initialization
139 int usb_stor_info(void)
142 #if CONFIG_IS_ENABLED(BLK)
145 for (blk_first_device(IF_TYPE_USB, &dev);
147 blk_next_device(&dev)) {
148 struct blk_desc *desc = dev_get_uclass_platdata(dev);
150 printf(" Device %d: ", desc->devnum);
157 if (usb_max_devs > 0) {
158 for (i = 0; i < usb_max_devs; i++) {
159 printf(" Device %d: ", i);
160 dev_print(&usb_dev_desc[i]);
166 printf("No storage devices, perhaps not 'usb start'ed..?\n");
173 static unsigned int usb_get_max_lun(struct us_data *us)
176 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, result, 1);
177 len = usb_control_msg(us->pusb_dev,
178 usb_rcvctrlpipe(us->pusb_dev, 0),
180 USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
182 result, sizeof(char),
183 USB_CNTL_TIMEOUT * 5);
184 debug("Get Max LUN -> len = %i, result = %i\n", len, (int) *result);
185 return (len > 0) ? *result : 0;
188 static int usb_stor_probe_device(struct usb_device *udev)
192 #if CONFIG_IS_ENABLED(BLK)
193 struct us_data *data;
199 return -ENOENT; /* no more devices available */
202 debug("\n\nProbing for storage\n");
203 #if CONFIG_IS_ENABLED(BLK)
205 * We store the us_data in the mass storage device's platdata. It
206 * is shared by all LUNs (block devices) attached to this mass storage
209 data = dev_get_platdata(udev->dev);
210 if (!usb_storage_probe(udev, 0, data))
212 max_lun = usb_get_max_lun(data);
213 for (lun = 0; lun <= max_lun; lun++) {
214 struct blk_desc *blkdev;
218 snprintf(str, sizeof(str), "lun%d", lun);
219 ret = blk_create_devicef(udev->dev, "usb_storage_blk", str,
220 IF_TYPE_USB, usb_max_devs, 512, 0,
223 debug("Cannot bind driver\n");
227 blkdev = dev_get_uclass_platdata(dev);
228 blkdev->target = 0xff;
231 ret = usb_stor_get_info(udev, data, blkdev);
234 debug("%s: Found device %p\n", __func__, udev);
236 debug("usb_stor_get_info: Invalid device\n");
237 ret = device_unbind(dev);
243 /* We don't have space to even probe if we hit the maximum */
244 if (usb_max_devs == USB_MAX_STOR_DEV) {
245 printf("max USB Storage Device reached: %d stopping\n",
250 if (!usb_storage_probe(udev, 0, &usb_stor[usb_max_devs]))
254 * OK, it's a storage device. Iterate over its LUNs and populate
257 start = usb_max_devs;
259 max_lun = usb_get_max_lun(&usb_stor[usb_max_devs]);
260 for (lun = 0; lun <= max_lun && usb_max_devs < USB_MAX_STOR_DEV;
262 struct blk_desc *blkdev;
264 blkdev = &usb_dev_desc[usb_max_devs];
265 memset(blkdev, '\0', sizeof(struct blk_desc));
266 blkdev->if_type = IF_TYPE_USB;
267 blkdev->devnum = usb_max_devs;
268 blkdev->part_type = PART_TYPE_UNKNOWN;
269 blkdev->target = 0xff;
270 blkdev->type = DEV_TYPE_UNKNOWN;
271 blkdev->block_read = usb_stor_read;
272 blkdev->block_write = usb_stor_write;
276 if (usb_stor_get_info(udev, &usb_stor[start],
277 &usb_dev_desc[usb_max_devs]) == 1) {
278 debug("partype: %d\n", blkdev->part_type);
280 debug("partype: %d\n", blkdev->part_type);
282 debug("%s: Found device %p\n", __func__, udev);
290 void usb_stor_reset(void)
295 /*******************************************************************************
296 * scan the usb and reports device info
297 * to the user if mode = 1
298 * returns current device or -1 if no
300 int usb_stor_scan(int mode)
303 printf(" scanning usb for storage devices... ");
305 #if !CONFIG_IS_ENABLED(DM_USB)
308 usb_disable_asynch(1); /* asynch transfer not allowed */
311 for (i = 0; i < USB_MAX_DEVICE; i++) {
312 struct usb_device *dev;
314 dev = usb_get_dev_index(i); /* get device */
316 if (usb_stor_probe_device(dev))
320 usb_disable_asynch(0); /* asynch transfer allowed */
322 printf("%d Storage Device(s) found\n", usb_max_devs);
323 if (usb_max_devs > 0)
328 static int usb_stor_irq(struct usb_device *dev)
331 us = (struct us_data *)dev->privptr;
341 static void usb_show_srb(struct scsi_cmd *pccb)
344 printf("SRB: len %d datalen 0x%lX\n ", pccb->cmdlen, pccb->datalen);
345 for (i = 0; i < 12; i++)
346 printf("%02X ", pccb->cmd[i]);
350 static void display_int_status(unsigned long tmp)
352 printf("Status: %s %s %s %s %s %s %s\n",
353 (tmp & USB_ST_ACTIVE) ? "Active" : "",
354 (tmp & USB_ST_STALLED) ? "Stalled" : "",
355 (tmp & USB_ST_BUF_ERR) ? "Buffer Error" : "",
356 (tmp & USB_ST_BABBLE_DET) ? "Babble Det" : "",
357 (tmp & USB_ST_NAK_REC) ? "NAKed" : "",
358 (tmp & USB_ST_CRC_ERR) ? "CRC Error" : "",
359 (tmp & USB_ST_BIT_ERR) ? "Bitstuff Error" : "");
362 /***********************************************************************
363 * Data transfer routines
364 ***********************************************************************/
366 static int us_one_transfer(struct us_data *us, int pipe, char *buf, int length)
375 /* determine the maximum packet size for these transfers */
376 max_size = usb_maxpacket(us->pusb_dev, pipe) * 16;
378 /* while we have data left to transfer */
381 /* calculate how long this will be -- maximum or a remainder */
382 this_xfer = length > max_size ? max_size : length;
385 /* setup the retry counter */
388 /* set up the transfer loop */
390 /* transfer the data */
391 debug("Bulk xfer 0x%lx(%d) try #%d\n",
392 (ulong)map_to_sysmem(buf), this_xfer,
394 result = usb_bulk_msg(us->pusb_dev, pipe, buf,
396 USB_CNTL_TIMEOUT * 5);
397 debug("bulk_msg returned %d xferred %d/%d\n",
398 result, partial, this_xfer);
399 if (us->pusb_dev->status != 0) {
400 /* if we stall, we need to clear it before
404 display_int_status(us->pusb_dev->status);
406 if (us->pusb_dev->status & USB_ST_STALLED) {
407 debug("stalled ->clearing endpoint" \
408 "halt for pipe 0x%x\n", pipe);
409 stat = us->pusb_dev->status;
410 usb_clear_halt(us->pusb_dev, pipe);
411 us->pusb_dev->status = stat;
412 if (this_xfer == partial) {
413 debug("bulk transferred" \
416 us->pusb_dev->status);
422 if (us->pusb_dev->status & USB_ST_NAK_REC) {
423 debug("Device NAKed bulk_msg\n");
426 debug("bulk transferred with error");
427 if (this_xfer == partial) {
428 debug(" %ld, but data ok\n",
429 us->pusb_dev->status);
432 /* if our try counter reaches 0, bail out */
433 debug(" %ld, data %d\n",
434 us->pusb_dev->status, partial);
438 /* update to show what data was transferred */
439 this_xfer -= partial;
441 /* continue until this transfer is done */
445 /* if we get here, we're done and successful */
449 static int usb_stor_BBB_reset(struct us_data *us)
455 * Reset recovery (5.3.4 in Universal Serial Bus Mass Storage Class)
457 * For Reset Recovery the host shall issue in the following order:
458 * a) a Bulk-Only Mass Storage Reset
459 * b) a Clear Feature HALT to the Bulk-In endpoint
460 * c) a Clear Feature HALT to the Bulk-Out endpoint
462 * This is done in 3 steps.
464 * If the reset doesn't succeed, the device should be port reset.
466 * This comment stolen from FreeBSD's /sys/dev/usb/umass.c.
468 debug("BBB_reset\n");
469 result = usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0),
471 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
472 0, us->ifnum, NULL, 0, USB_CNTL_TIMEOUT * 5);
474 if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) {
475 debug("RESET:stall\n");
479 /* long wait for reset */
481 debug("BBB_reset result %d: status %lX reset\n",
482 result, us->pusb_dev->status);
483 pipe = usb_rcvbulkpipe(us->pusb_dev, us->ep_in);
484 result = usb_clear_halt(us->pusb_dev, pipe);
485 /* long wait for reset */
487 debug("BBB_reset result %d: status %lX clearing IN endpoint\n",
488 result, us->pusb_dev->status);
489 /* long wait for reset */
490 pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
491 result = usb_clear_halt(us->pusb_dev, pipe);
493 debug("BBB_reset result %d: status %lX clearing OUT endpoint\n",
494 result, us->pusb_dev->status);
495 debug("BBB_reset done\n");
499 /* FIXME: this reset function doesn't really reset the port, and it
500 * should. Actually it should probably do what it's doing here, and
501 * reset the port physically
503 static int usb_stor_CB_reset(struct us_data *us)
505 unsigned char cmd[12];
509 memset(cmd, 0xff, sizeof(cmd));
510 cmd[0] = SCSI_SEND_DIAG;
512 result = usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0),
514 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
515 0, us->ifnum, cmd, sizeof(cmd),
516 USB_CNTL_TIMEOUT * 5);
518 /* long wait for reset */
520 debug("CB_reset result %d: status %lX clearing endpoint halt\n",
521 result, us->pusb_dev->status);
522 usb_clear_halt(us->pusb_dev, usb_rcvbulkpipe(us->pusb_dev, us->ep_in));
523 usb_clear_halt(us->pusb_dev, usb_rcvbulkpipe(us->pusb_dev, us->ep_out));
525 debug("CB_reset done\n");
530 * Set up the command for a BBB device. Note that the actual SCSI
531 * command is copied into cbw.CBWCDB.
533 static int usb_stor_BBB_comdat(struct scsi_cmd *srb, struct us_data *us)
539 ALLOC_CACHE_ALIGN_BUFFER(struct umass_bbb_cbw, cbw, 1);
541 dir_in = US_DIRECTION(srb->cmd[0]);
543 #ifdef BBB_COMDAT_TRACE
544 printf("dir %d lun %d cmdlen %d cmd %p datalen %lu pdata %p\n",
545 dir_in, srb->lun, srb->cmdlen, srb->cmd, srb->datalen,
548 for (result = 0; result < srb->cmdlen; result++)
549 printf("cmd[%d] %#x ", result, srb->cmd[result]);
554 if (!(srb->cmdlen <= CBWCDBLENGTH)) {
555 debug("usb_stor_BBB_comdat:cmdlen too large\n");
559 /* always OUT to the ep */
560 pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
562 cbw->dCBWSignature = cpu_to_le32(CBWSIGNATURE);
563 cbw->dCBWTag = cpu_to_le32(CBWTag++);
564 cbw->dCBWDataTransferLength = cpu_to_le32(srb->datalen);
565 cbw->bCBWFlags = (dir_in ? CBWFLAGS_IN : CBWFLAGS_OUT);
566 cbw->bCBWLUN = srb->lun;
567 cbw->bCDBLength = srb->cmdlen;
568 /* copy the command data into the CBW command data buffer */
571 memcpy(cbw->CBWCDB, srb->cmd, srb->cmdlen);
572 result = usb_bulk_msg(us->pusb_dev, pipe, cbw, UMASS_BBB_CBW_SIZE,
573 &actlen, USB_CNTL_TIMEOUT * 5);
575 debug("usb_stor_BBB_comdat:usb_bulk_msg error\n");
579 /* FIXME: we also need a CBI_command which sets up the completion
580 * interrupt, and waits for it
582 static int usb_stor_CB_comdat(struct scsi_cmd *srb, struct us_data *us)
587 unsigned long status;
590 dir_in = US_DIRECTION(srb->cmd[0]);
593 pipe = usb_rcvbulkpipe(us->pusb_dev, us->ep_in);
595 pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
598 debug("CBI gets a command: Try %d\n", 5 - retry);
602 /* let's send the command via the control pipe */
603 result = usb_control_msg(us->pusb_dev,
604 usb_sndctrlpipe(us->pusb_dev , 0),
606 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
608 srb->cmd, srb->cmdlen,
609 USB_CNTL_TIMEOUT * 5);
610 debug("CB_transport: control msg returned %d, status %lX\n",
611 result, us->pusb_dev->status);
612 /* check the return code for the command */
614 if (us->pusb_dev->status & USB_ST_STALLED) {
615 status = us->pusb_dev->status;
616 debug(" stall during command found," \
618 usb_clear_halt(us->pusb_dev,
619 usb_sndctrlpipe(us->pusb_dev, 0));
620 us->pusb_dev->status = status;
622 debug(" error during command %02X" \
623 " Stat = %lX\n", srb->cmd[0],
624 us->pusb_dev->status);
627 /* transfer the data payload for this command, if one exists*/
629 debug("CB_transport: control msg returned %d," \
630 " direction is %s to go 0x%lx\n", result,
631 dir_in ? "IN" : "OUT", srb->datalen);
633 result = us_one_transfer(us, pipe, (char *)srb->pdata,
635 debug("CBI attempted to transfer data," \
636 " result is %d status %lX, len %d\n",
637 result, us->pusb_dev->status,
638 us->pusb_dev->act_len);
639 if (!(us->pusb_dev->status & USB_ST_NAK_REC))
641 } /* if (srb->datalen) */
651 static int usb_stor_CBI_get_status(struct scsi_cmd *srb, struct us_data *us)
656 usb_int_msg(us->pusb_dev, us->irqpipe,
657 (void *)&us->ip_data, us->irqmaxp, us->irqinterval, false);
660 if (us->ip_wanted == 0)
665 printf(" Did not get interrupt on CBI\n");
667 return USB_STOR_TRANSPORT_ERROR;
669 debug("Got interrupt data 0x%x, transferred %d status 0x%lX\n",
670 us->ip_data, us->pusb_dev->irq_act_len,
671 us->pusb_dev->irq_status);
672 /* UFI gives us ASC and ASCQ, like a request sense */
673 if (us->subclass == US_SC_UFI) {
674 if (srb->cmd[0] == SCSI_REQ_SENSE ||
675 srb->cmd[0] == SCSI_INQUIRY)
676 return USB_STOR_TRANSPORT_GOOD; /* Good */
677 else if (us->ip_data)
678 return USB_STOR_TRANSPORT_FAILED;
680 return USB_STOR_TRANSPORT_GOOD;
682 /* otherwise, we interpret the data normally */
683 switch (us->ip_data) {
685 return USB_STOR_TRANSPORT_GOOD;
687 return USB_STOR_TRANSPORT_FAILED;
689 return USB_STOR_TRANSPORT_ERROR;
691 return USB_STOR_TRANSPORT_ERROR;
694 #define USB_TRANSPORT_UNKNOWN_RETRY 5
695 #define USB_TRANSPORT_NOT_READY_RETRY 10
697 /* clear a stall on an endpoint - special for BBB devices */
698 static int usb_stor_BBB_clear_endpt_stall(struct us_data *us, __u8 endpt)
700 /* ENDPOINT_HALT = 0, so set value to 0 */
701 return usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0),
702 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0,
703 endpt, NULL, 0, USB_CNTL_TIMEOUT * 5);
706 static int usb_stor_BBB_transport(struct scsi_cmd *srb, struct us_data *us)
710 int actlen, data_actlen;
711 unsigned int pipe, pipein, pipeout;
712 ALLOC_CACHE_ALIGN_BUFFER(struct umass_bbb_csw, csw, 1);
713 #ifdef BBB_XPORT_TRACE
718 dir_in = US_DIRECTION(srb->cmd[0]);
721 debug("COMMAND phase\n");
722 result = usb_stor_BBB_comdat(srb, us);
724 debug("failed to send CBW status %ld\n",
725 us->pusb_dev->status);
726 usb_stor_BBB_reset(us);
727 return USB_STOR_TRANSPORT_FAILED;
729 if (!(us->flags & USB_READY))
731 pipein = usb_rcvbulkpipe(us->pusb_dev, us->ep_in);
732 pipeout = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
733 /* DATA phase + error handling */
735 /* no data, go immediately to the STATUS phase */
736 if (srb->datalen == 0)
738 debug("DATA phase\n");
744 result = usb_bulk_msg(us->pusb_dev, pipe, srb->pdata, srb->datalen,
745 &data_actlen, USB_CNTL_TIMEOUT * 5);
746 /* special handling of STALL in DATA phase */
747 if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) {
748 debug("DATA:stall\n");
749 /* clear the STALL on the endpoint */
750 result = usb_stor_BBB_clear_endpt_stall(us,
751 dir_in ? us->ep_in : us->ep_out);
753 /* continue on to STATUS phase */
757 debug("usb_bulk_msg error status %ld\n",
758 us->pusb_dev->status);
759 usb_stor_BBB_reset(us);
760 return USB_STOR_TRANSPORT_FAILED;
762 #ifdef BBB_XPORT_TRACE
763 for (index = 0; index < data_actlen; index++)
764 printf("pdata[%d] %#x ", index, srb->pdata[index]);
767 /* STATUS phase + error handling */
771 debug("STATUS phase\n");
772 result = usb_bulk_msg(us->pusb_dev, pipein, csw, UMASS_BBB_CSW_SIZE,
773 &actlen, USB_CNTL_TIMEOUT*5);
775 /* special handling of STALL in STATUS phase */
776 if ((result < 0) && (retry < 1) &&
777 (us->pusb_dev->status & USB_ST_STALLED)) {
778 debug("STATUS:stall\n");
779 /* clear the STALL on the endpoint */
780 result = usb_stor_BBB_clear_endpt_stall(us, us->ep_in);
781 if (result >= 0 && (retry++ < 1))
786 debug("usb_bulk_msg error status %ld\n",
787 us->pusb_dev->status);
788 usb_stor_BBB_reset(us);
789 return USB_STOR_TRANSPORT_FAILED;
791 #ifdef BBB_XPORT_TRACE
792 ptr = (unsigned char *)csw;
793 for (index = 0; index < UMASS_BBB_CSW_SIZE; index++)
794 printf("ptr[%d] %#x ", index, ptr[index]);
797 /* misuse pipe to get the residue */
798 pipe = le32_to_cpu(csw->dCSWDataResidue);
799 if (pipe == 0 && srb->datalen != 0 && srb->datalen - data_actlen != 0)
800 pipe = srb->datalen - data_actlen;
801 if (CSWSIGNATURE != le32_to_cpu(csw->dCSWSignature)) {
802 debug("!CSWSIGNATURE\n");
803 usb_stor_BBB_reset(us);
804 return USB_STOR_TRANSPORT_FAILED;
805 } else if ((CBWTag - 1) != le32_to_cpu(csw->dCSWTag)) {
807 usb_stor_BBB_reset(us);
808 return USB_STOR_TRANSPORT_FAILED;
809 } else if (csw->bCSWStatus > CSWSTATUS_PHASE) {
811 usb_stor_BBB_reset(us);
812 return USB_STOR_TRANSPORT_FAILED;
813 } else if (csw->bCSWStatus == CSWSTATUS_PHASE) {
815 usb_stor_BBB_reset(us);
816 return USB_STOR_TRANSPORT_FAILED;
817 } else if (data_actlen > srb->datalen) {
818 debug("transferred %dB instead of %ldB\n",
819 data_actlen, srb->datalen);
820 return USB_STOR_TRANSPORT_FAILED;
821 } else if (csw->bCSWStatus == CSWSTATUS_FAILED) {
823 return USB_STOR_TRANSPORT_FAILED;
829 static int usb_stor_CB_transport(struct scsi_cmd *srb, struct us_data *us)
832 struct scsi_cmd *psrb;
833 struct scsi_cmd reqsrb;
837 status = USB_STOR_TRANSPORT_GOOD;
840 /* issue the command */
842 result = usb_stor_CB_comdat(srb, us);
843 debug("command / Data returned %d, status %lX\n",
844 result, us->pusb_dev->status);
845 /* if this is an CBI Protocol, get IRQ */
846 if (us->protocol == US_PR_CBI) {
847 status = usb_stor_CBI_get_status(srb, us);
848 /* if the status is error, report it */
849 if (status == USB_STOR_TRANSPORT_ERROR) {
850 debug(" USB CBI Command Error\n");
853 srb->sense_buf[12] = (unsigned char)(us->ip_data >> 8);
854 srb->sense_buf[13] = (unsigned char)(us->ip_data & 0xff);
856 /* if the status is good, report it */
857 if (status == USB_STOR_TRANSPORT_GOOD) {
858 debug(" USB CBI Command Good\n");
863 /* do we have to issue an auto request? */
864 /* HERE we have to check the result */
865 if ((result < 0) && !(us->pusb_dev->status & USB_ST_STALLED)) {
866 debug("ERROR %lX\n", us->pusb_dev->status);
867 us->transport_reset(us);
868 return USB_STOR_TRANSPORT_ERROR;
870 if ((us->protocol == US_PR_CBI) &&
871 ((srb->cmd[0] == SCSI_REQ_SENSE) ||
872 (srb->cmd[0] == SCSI_INQUIRY))) {
873 /* do not issue an autorequest after request sense */
874 debug("No auto request and good\n");
875 return USB_STOR_TRANSPORT_GOOD;
877 /* issue an request_sense */
878 memset(&psrb->cmd[0], 0, 12);
879 psrb->cmd[0] = SCSI_REQ_SENSE;
880 psrb->cmd[1] = srb->lun << 5;
883 psrb->pdata = &srb->sense_buf[0];
885 /* issue the command */
886 result = usb_stor_CB_comdat(psrb, us);
887 debug("auto request returned %d\n", result);
888 /* if this is an CBI Protocol, get IRQ */
889 if (us->protocol == US_PR_CBI)
890 status = usb_stor_CBI_get_status(psrb, us);
892 if ((result < 0) && !(us->pusb_dev->status & USB_ST_STALLED)) {
893 debug(" AUTO REQUEST ERROR %ld\n",
894 us->pusb_dev->status);
895 return USB_STOR_TRANSPORT_ERROR;
897 debug("autorequest returned 0x%02X 0x%02X 0x%02X 0x%02X\n",
898 srb->sense_buf[0], srb->sense_buf[2],
899 srb->sense_buf[12], srb->sense_buf[13]);
900 /* Check the auto request result */
901 if ((srb->sense_buf[2] == 0) &&
902 (srb->sense_buf[12] == 0) &&
903 (srb->sense_buf[13] == 0)) {
905 return USB_STOR_TRANSPORT_GOOD;
908 /* Check the auto request result */
909 switch (srb->sense_buf[2]) {
911 /* Recovered Error */
912 return USB_STOR_TRANSPORT_GOOD;
916 if (notready++ > USB_TRANSPORT_NOT_READY_RETRY) {
917 printf("cmd 0x%02X returned 0x%02X 0x%02X 0x%02X"
918 " 0x%02X (NOT READY)\n", srb->cmd[0],
919 srb->sense_buf[0], srb->sense_buf[2],
920 srb->sense_buf[12], srb->sense_buf[13]);
921 return USB_STOR_TRANSPORT_FAILED;
928 if (retry++ > USB_TRANSPORT_UNKNOWN_RETRY) {
929 printf("cmd 0x%02X returned 0x%02X 0x%02X 0x%02X"
930 " 0x%02X\n", srb->cmd[0], srb->sense_buf[0],
931 srb->sense_buf[2], srb->sense_buf[12],
933 return USB_STOR_TRANSPORT_FAILED;
938 return USB_STOR_TRANSPORT_FAILED;
941 static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
945 * Limit the total size of a transfer to 120 KB.
947 * Some devices are known to choke with anything larger. It seems like
948 * the problem stems from the fact that original IDE controllers had
949 * only an 8-bit register to hold the number of sectors in one transfer
950 * and even those couldn't handle a full 256 sectors.
952 * Because we want to make sure we interoperate with as many devices as
953 * possible, we will maintain a 240 sector transfer size limit for USB
954 * Mass Storage devices.
956 * Tests show that other operating have similar limits with Microsoft
957 * Windows 7 limiting transfers to 128 sectors for both USB2 and USB3
958 * and Apple Mac OS X 10.11 limiting transfers to 256 sectors for USB2
959 * and 2048 for USB3 devices.
961 unsigned short blk = 240;
963 #if CONFIG_IS_ENABLED(DM_USB)
967 ret = usb_get_max_xfer_size(udev, (size_t *)&size);
968 if ((ret >= 0) && (size < blk * 512))
972 us->max_xfer_blk = blk;
975 static int usb_inquiry(struct scsi_cmd *srb, struct us_data *ss)
980 memset(&srb->cmd[0], 0, 12);
981 srb->cmd[0] = SCSI_INQUIRY;
982 srb->cmd[1] = srb->lun << 5;
986 i = ss->transport(srb, ss);
987 debug("inquiry returns %d\n", i);
993 printf("error in inquiry\n");
999 static int usb_request_sense(struct scsi_cmd *srb, struct us_data *ss)
1003 ptr = (char *)srb->pdata;
1004 memset(&srb->cmd[0], 0, 12);
1005 srb->cmd[0] = SCSI_REQ_SENSE;
1006 srb->cmd[1] = srb->lun << 5;
1009 srb->pdata = &srb->sense_buf[0];
1011 ss->transport(srb, ss);
1012 debug("Request Sense returned %02X %02X %02X\n",
1013 srb->sense_buf[2], srb->sense_buf[12],
1014 srb->sense_buf[13]);
1015 srb->pdata = (uchar *)ptr;
1019 static int usb_test_unit_ready(struct scsi_cmd *srb, struct us_data *ss)
1024 memset(&srb->cmd[0], 0, 12);
1025 srb->cmd[0] = SCSI_TST_U_RDY;
1026 srb->cmd[1] = srb->lun << 5;
1029 if (ss->transport(srb, ss) == USB_STOR_TRANSPORT_GOOD) {
1030 ss->flags |= USB_READY;
1033 usb_request_sense(srb, ss);
1035 * Check the Key Code Qualifier, if it matches
1036 * "Not Ready - medium not present"
1037 * (the sense Key equals 0x2 and the ASC is 0x3a)
1038 * return immediately as the medium being absent won't change
1039 * unless there is a user action.
1041 if ((srb->sense_buf[2] == 0x02) &&
1042 (srb->sense_buf[12] == 0x3a))
1045 } while (retries--);
1050 static int usb_read_capacity(struct scsi_cmd *srb, struct us_data *ss)
1056 memset(&srb->cmd[0], 0, 12);
1057 srb->cmd[0] = SCSI_RD_CAPAC;
1058 srb->cmd[1] = srb->lun << 5;
1061 if (ss->transport(srb, ss) == USB_STOR_TRANSPORT_GOOD)
1068 static int usb_read_10(struct scsi_cmd *srb, struct us_data *ss,
1069 unsigned long start, unsigned short blocks)
1071 memset(&srb->cmd[0], 0, 12);
1072 srb->cmd[0] = SCSI_READ10;
1073 srb->cmd[1] = srb->lun << 5;
1074 srb->cmd[2] = ((unsigned char) (start >> 24)) & 0xff;
1075 srb->cmd[3] = ((unsigned char) (start >> 16)) & 0xff;
1076 srb->cmd[4] = ((unsigned char) (start >> 8)) & 0xff;
1077 srb->cmd[5] = ((unsigned char) (start)) & 0xff;
1078 srb->cmd[7] = ((unsigned char) (blocks >> 8)) & 0xff;
1079 srb->cmd[8] = (unsigned char) blocks & 0xff;
1081 debug("read10: start %lx blocks %x\n", start, blocks);
1082 return ss->transport(srb, ss);
1085 static int usb_write_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_WRITE10;
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;
1098 debug("write10: start %lx blocks %x\n", start, blocks);
1099 return ss->transport(srb, ss);
1103 #ifdef CONFIG_USB_BIN_FIXUP
1105 * Some USB storage devices queried for SCSI identification data respond with
1106 * binary strings, which if output to the console freeze the terminal. The
1107 * workaround is to modify the vendor and product strings read from such
1108 * device with proper values (as reported by 'usb info').
1110 * Vendor and product length limits are taken from the definition of
1111 * struct blk_desc in include/part.h.
1113 static void usb_bin_fixup(struct usb_device_descriptor descriptor,
1114 unsigned char vendor[],
1115 unsigned char product[]) {
1116 const unsigned char max_vendor_len = 40;
1117 const unsigned char max_product_len = 20;
1118 if (descriptor.idVendor == 0x0424 && descriptor.idProduct == 0x223a) {
1119 strncpy((char *)vendor, "SMSC", max_vendor_len);
1120 strncpy((char *)product, "Flash Media Cntrller",
1124 #endif /* CONFIG_USB_BIN_FIXUP */
1126 #if CONFIG_IS_ENABLED(BLK)
1127 static unsigned long usb_stor_read(struct udevice *dev, lbaint_t blknr,
1128 lbaint_t blkcnt, void *buffer)
1130 static unsigned long usb_stor_read(struct blk_desc *block_dev, lbaint_t blknr,
1131 lbaint_t blkcnt, void *buffer)
1134 lbaint_t start, blks;
1136 unsigned short smallblks;
1137 struct usb_device *udev;
1140 struct scsi_cmd *srb = &usb_ccb;
1141 #if CONFIG_IS_ENABLED(BLK)
1142 struct blk_desc *block_dev;
1148 #if CONFIG_IS_ENABLED(BLK)
1149 block_dev = dev_get_uclass_platdata(dev);
1150 udev = dev_get_parent_priv(dev_get_parent(dev));
1151 debug("\nusb_read: udev %d\n", block_dev->devnum);
1153 debug("\nusb_read: udev %d\n", block_dev->devnum);
1154 udev = usb_dev_desc[block_dev->devnum].priv;
1156 debug("%s: No device\n", __func__);
1160 ss = (struct us_data *)udev->privptr;
1162 usb_disable_asynch(1); /* asynch transfer not allowed */
1163 usb_lock_async(udev, 1);
1164 srb->lun = block_dev->lun;
1165 buf_addr = (uintptr_t)buffer;
1169 debug("\nusb_read: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
1170 block_dev->devnum, start, blks, buf_addr);
1173 /* XXX need some comment here */
1175 srb->pdata = (unsigned char *)buf_addr;
1176 if (blks > ss->max_xfer_blk)
1177 smallblks = ss->max_xfer_blk;
1179 smallblks = (unsigned short) blks;
1181 if (smallblks == ss->max_xfer_blk)
1182 usb_show_progress();
1183 srb->datalen = block_dev->blksz * smallblks;
1184 srb->pdata = (unsigned char *)buf_addr;
1185 if (usb_read_10(srb, ss, start, smallblks)) {
1186 debug("Read ERROR\n");
1187 ss->flags &= ~USB_READY;
1188 usb_request_sense(srb, ss);
1196 buf_addr += srb->datalen;
1197 } while (blks != 0);
1199 debug("usb_read: end startblk " LBAF ", blccnt %x buffer %lx\n",
1200 start, smallblks, buf_addr);
1202 usb_lock_async(udev, 0);
1203 usb_disable_asynch(0); /* asynch transfer allowed */
1204 if (blkcnt >= ss->max_xfer_blk)
1209 #if CONFIG_IS_ENABLED(BLK)
1210 static unsigned long usb_stor_write(struct udevice *dev, lbaint_t blknr,
1211 lbaint_t blkcnt, const void *buffer)
1213 static unsigned long usb_stor_write(struct blk_desc *block_dev, lbaint_t blknr,
1214 lbaint_t blkcnt, const void *buffer)
1217 lbaint_t start, blks;
1219 unsigned short smallblks;
1220 struct usb_device *udev;
1223 struct scsi_cmd *srb = &usb_ccb;
1224 #if CONFIG_IS_ENABLED(BLK)
1225 struct blk_desc *block_dev;
1232 #if CONFIG_IS_ENABLED(BLK)
1233 block_dev = dev_get_uclass_platdata(dev);
1234 udev = dev_get_parent_priv(dev_get_parent(dev));
1235 debug("\nusb_read: udev %d\n", block_dev->devnum);
1237 debug("\nusb_read: udev %d\n", block_dev->devnum);
1238 udev = usb_dev_desc[block_dev->devnum].priv;
1240 debug("%s: No device\n", __func__);
1244 ss = (struct us_data *)udev->privptr;
1246 usb_disable_asynch(1); /* asynch transfer not allowed */
1247 usb_lock_async(udev, 1);
1249 srb->lun = block_dev->lun;
1250 buf_addr = (uintptr_t)buffer;
1254 debug("\nusb_write: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
1255 block_dev->devnum, start, blks, buf_addr);
1258 /* If write fails retry for max retry count else
1259 * return with number of blocks written successfully.
1262 srb->pdata = (unsigned char *)buf_addr;
1263 if (blks > ss->max_xfer_blk)
1264 smallblks = ss->max_xfer_blk;
1266 smallblks = (unsigned short) blks;
1268 if (smallblks == ss->max_xfer_blk)
1269 usb_show_progress();
1270 srb->datalen = block_dev->blksz * smallblks;
1271 srb->pdata = (unsigned char *)buf_addr;
1272 if (usb_write_10(srb, ss, start, smallblks)) {
1273 debug("Write ERROR\n");
1274 ss->flags &= ~USB_READY;
1275 usb_request_sense(srb, ss);
1283 buf_addr += srb->datalen;
1284 } while (blks != 0);
1286 debug("usb_write: end startblk " LBAF ", blccnt %x buffer %lx\n",
1287 start, smallblks, buf_addr);
1289 usb_lock_async(udev, 0);
1290 usb_disable_asynch(0); /* asynch transfer allowed */
1291 if (blkcnt >= ss->max_xfer_blk)
1297 /* Probe to see if a new device is actually a Storage device */
1298 int usb_storage_probe(struct usb_device *dev, unsigned int ifnum,
1301 struct usb_interface *iface;
1303 struct usb_endpoint_descriptor *ep_desc;
1304 unsigned int flags = 0;
1306 /* let's examine the device now */
1307 iface = &dev->config.if_desc[ifnum];
1309 if (dev->descriptor.bDeviceClass != 0 ||
1310 iface->desc.bInterfaceClass != USB_CLASS_MASS_STORAGE ||
1311 iface->desc.bInterfaceSubClass < US_SC_MIN ||
1312 iface->desc.bInterfaceSubClass > US_SC_MAX) {
1313 debug("Not mass storage\n");
1314 /* if it's not a mass storage, we go no further */
1318 memset(ss, 0, sizeof(struct us_data));
1320 /* At this point, we know we've got a live one */
1321 debug("\n\nUSB Mass Storage device detected\n");
1323 /* Initialize the us_data structure with some useful info */
1327 ss->attention_done = 0;
1328 ss->subclass = iface->desc.bInterfaceSubClass;
1329 ss->protocol = iface->desc.bInterfaceProtocol;
1331 /* set the handler pointers based on the protocol */
1332 debug("Transport: ");
1333 switch (ss->protocol) {
1335 debug("Control/Bulk\n");
1336 ss->transport = usb_stor_CB_transport;
1337 ss->transport_reset = usb_stor_CB_reset;
1341 debug("Control/Bulk/Interrupt\n");
1342 ss->transport = usb_stor_CB_transport;
1343 ss->transport_reset = usb_stor_CB_reset;
1346 debug("Bulk/Bulk/Bulk\n");
1347 ss->transport = usb_stor_BBB_transport;
1348 ss->transport_reset = usb_stor_BBB_reset;
1351 printf("USB Storage Transport unknown / not yet implemented\n");
1357 * We are expecting a minimum of 2 endpoints - in and out (bulk).
1358 * An optional interrupt is OK (necessary for CBI protocol).
1359 * We will ignore any others.
1361 for (i = 0; i < iface->desc.bNumEndpoints; i++) {
1362 ep_desc = &iface->ep_desc[i];
1363 /* is it an BULK endpoint? */
1364 if ((ep_desc->bmAttributes &
1365 USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_BULK) {
1366 if (ep_desc->bEndpointAddress & USB_DIR_IN)
1367 ss->ep_in = ep_desc->bEndpointAddress &
1368 USB_ENDPOINT_NUMBER_MASK;
1371 ep_desc->bEndpointAddress &
1372 USB_ENDPOINT_NUMBER_MASK;
1375 /* is it an interrupt endpoint? */
1376 if ((ep_desc->bmAttributes &
1377 USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_INT) {
1378 ss->ep_int = ep_desc->bEndpointAddress &
1379 USB_ENDPOINT_NUMBER_MASK;
1380 ss->irqinterval = ep_desc->bInterval;
1383 debug("Endpoints In %d Out %d Int %d\n",
1384 ss->ep_in, ss->ep_out, ss->ep_int);
1386 /* Do some basic sanity checks, and bail if we find a problem */
1387 if (usb_set_interface(dev, iface->desc.bInterfaceNumber, 0) ||
1388 !ss->ep_in || !ss->ep_out ||
1389 (ss->protocol == US_PR_CBI && ss->ep_int == 0)) {
1390 debug("Problems with device\n");
1393 /* set class specific stuff */
1394 /* We only handle certain protocols. Currently, these are
1396 * The SFF8070 accepts the requests used in u-boot
1398 if (ss->subclass != US_SC_UFI && ss->subclass != US_SC_SCSI &&
1399 ss->subclass != US_SC_8070) {
1400 printf("Sorry, protocol %d not yet supported.\n", ss->subclass);
1404 /* we had found an interrupt endpoint, prepare irq pipe
1405 * set up the IRQ pipe and handler
1407 ss->irqinterval = (ss->irqinterval > 0) ? ss->irqinterval : 255;
1408 ss->irqpipe = usb_rcvintpipe(ss->pusb_dev, ss->ep_int);
1409 ss->irqmaxp = usb_maxpacket(dev, ss->irqpipe);
1410 dev->irq_handle = usb_stor_irq;
1413 /* Set the maximum transfer size per host controller setting */
1414 usb_stor_set_max_xfer_blk(dev, ss);
1416 dev->privptr = (void *)ss;
1420 int usb_stor_get_info(struct usb_device *dev, struct us_data *ss,
1421 struct blk_desc *dev_desc)
1423 unsigned char perq, modi;
1424 ALLOC_CACHE_ALIGN_BUFFER(u32, cap, 2);
1425 ALLOC_CACHE_ALIGN_BUFFER(u8, usb_stor_buf, 36);
1426 u32 capacity, blksz;
1427 struct scsi_cmd *pccb = &usb_ccb;
1429 pccb->pdata = usb_stor_buf;
1431 dev_desc->target = dev->devnum;
1432 pccb->lun = dev_desc->lun;
1433 debug(" address %d\n", dev_desc->target);
1435 if (usb_inquiry(pccb, ss)) {
1436 debug("%s: usb_inquiry() failed\n", __func__);
1440 perq = usb_stor_buf[0];
1441 modi = usb_stor_buf[1];
1444 * Skip unknown devices (0x1f) and enclosure service devices (0x0d),
1445 * they would not respond to test_unit_ready .
1447 if (((perq & 0x1f) == 0x1f) || ((perq & 0x1f) == 0x0d)) {
1448 debug("%s: unknown/unsupported device\n", __func__);
1451 if ((modi&0x80) == 0x80) {
1452 /* drive is removable */
1453 dev_desc->removable = 1;
1455 memcpy(dev_desc->vendor, (const void *)&usb_stor_buf[8], 8);
1456 memcpy(dev_desc->product, (const void *)&usb_stor_buf[16], 16);
1457 memcpy(dev_desc->revision, (const void *)&usb_stor_buf[32], 4);
1458 dev_desc->vendor[8] = 0;
1459 dev_desc->product[16] = 0;
1460 dev_desc->revision[4] = 0;
1461 #ifdef CONFIG_USB_BIN_FIXUP
1462 usb_bin_fixup(dev->descriptor, (uchar *)dev_desc->vendor,
1463 (uchar *)dev_desc->product);
1464 #endif /* CONFIG_USB_BIN_FIXUP */
1465 debug("ISO Vers %X, Response Data %X\n", usb_stor_buf[2],
1467 if (usb_test_unit_ready(pccb, ss)) {
1468 printf("Device NOT ready\n"
1469 " Request Sense returned %02X %02X %02X\n",
1470 pccb->sense_buf[2], pccb->sense_buf[12],
1471 pccb->sense_buf[13]);
1472 if (dev_desc->removable == 1)
1473 dev_desc->type = perq;
1476 pccb->pdata = (unsigned char *)cap;
1477 memset(pccb->pdata, 0, 8);
1478 if (usb_read_capacity(pccb, ss) != 0) {
1479 printf("READ_CAP ERROR\n");
1480 ss->flags &= ~USB_READY;
1484 debug("Read Capacity returns: 0x%08x, 0x%08x\n", cap[0], cap[1]);
1486 if (cap[0] > (0x200000 * 10)) /* greater than 10 GByte */
1489 cap[0] = cpu_to_be32(cap[0]);
1490 cap[1] = cpu_to_be32(cap[1]);
1493 capacity = be32_to_cpu(cap[0]) + 1;
1494 blksz = be32_to_cpu(cap[1]);
1496 debug("Capacity = 0x%08x, blocksz = 0x%08x\n", capacity, blksz);
1497 dev_desc->lba = capacity;
1498 dev_desc->blksz = blksz;
1499 dev_desc->log2blksz = LOG2(dev_desc->blksz);
1500 dev_desc->type = perq;
1501 debug(" address %d\n", dev_desc->target);
1506 #if CONFIG_IS_ENABLED(DM_USB)
1508 static int usb_mass_storage_probe(struct udevice *dev)
1510 struct usb_device *udev = dev_get_parent_priv(dev);
1513 usb_disable_asynch(1); /* asynch transfer not allowed */
1514 ret = usb_stor_probe_device(udev);
1515 usb_disable_asynch(0); /* asynch transfer allowed */
1520 static const struct udevice_id usb_mass_storage_ids[] = {
1521 { .compatible = "usb-mass-storage" },
1525 U_BOOT_DRIVER(usb_mass_storage) = {
1526 .name = "usb_mass_storage",
1527 .id = UCLASS_MASS_STORAGE,
1528 .of_match = usb_mass_storage_ids,
1529 .probe = usb_mass_storage_probe,
1530 #if CONFIG_IS_ENABLED(BLK)
1531 .platdata_auto_alloc_size = sizeof(struct us_data),
1535 UCLASS_DRIVER(usb_mass_storage) = {
1536 .id = UCLASS_MASS_STORAGE,
1537 .name = "usb_mass_storage",
1540 static const struct usb_device_id mass_storage_id_table[] = {
1542 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1543 .bInterfaceClass = USB_CLASS_MASS_STORAGE
1545 { } /* Terminating entry */
1548 U_BOOT_USB_DEVICE(usb_mass_storage, mass_storage_id_table);
1551 #if CONFIG_IS_ENABLED(BLK)
1552 static const struct blk_ops usb_storage_ops = {
1553 .read = usb_stor_read,
1554 .write = usb_stor_write,
1557 U_BOOT_DRIVER(usb_storage_blk) = {
1558 .name = "usb_storage_blk",
1560 .ops = &usb_storage_ops,
1563 U_BOOT_LEGACY_BLK(usb) = {
1564 .if_typename = "usb",
1565 .if_type = IF_TYPE_USB,
1566 .max_devs = USB_MAX_STOR_DEV,
1567 .desc = usb_dev_desc,