743a239084607e21b9e298e032f629cd6c7f8e42
[oweals/u-boot.git] / common / usb_storage.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Most of this source has been derived from the Linux USB
4  * project:
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.
9  *
10  *
11  * Adapted for U-Boot:
12  *   (C) Copyright 2001 Denis Peter, MPL AG Switzerland
13  * Driver model conversion:
14  *   (C) Copyright 2015 Google, Inc
15  *
16  * For BBB support (C) Copyright 2003
17  * Gary Jennejohn, DENX Software Engineering <garyj@denx.de>
18  *
19  * BBB support based on /sys/dev/usb/umass.c from
20  * FreeBSD.
21  */
22
23 /* Note:
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.
27  */
28 /*
29  * New Note:
30  * Support for USB Mass Storage Devices (BBB) has been added. It has
31  * only been tested with USB memory sticks.
32  */
33
34
35 #include <common.h>
36 #include <blk.h>
37 #include <command.h>
38 #include <dm.h>
39 #include <errno.h>
40 #include <log.h>
41 #include <mapmem.h>
42 #include <memalign.h>
43 #include <asm/byteorder.h>
44 #include <asm/cache.h>
45 #include <asm/processor.h>
46 #include <dm/device-internal.h>
47 #include <dm/lists.h>
48
49 #include <part.h>
50 #include <usb.h>
51
52 #undef BBB_COMDAT_TRACE
53 #undef BBB_XPORT_TRACE
54
55 #include <scsi.h>
56 /* direction table -- this indicates the direction of the data
57  * transfer for each command code -- a 1 indicates input
58  */
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
64 };
65 #define US_DIRECTION(x) ((us_direction[x>>3] >> (x & 7)) & 1)
66
67 static struct scsi_cmd usb_ccb __aligned(ARCH_DMA_MINALIGN);
68 static __u32 CBWTag;
69
70 static int usb_max_devs; /* number of highest available usb device */
71
72 #if !CONFIG_IS_ENABLED(BLK)
73 static struct blk_desc usb_dev_desc[USB_MAX_STOR_DEV];
74 #endif
75
76 struct us_data;
77 typedef int (*trans_cmnd)(struct scsi_cmd *cb, struct us_data *data);
78 typedef int (*trans_reset)(struct us_data *data);
79
80 struct us_data {
81         struct usb_device *pusb_dev;     /* this usb_device */
82
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 */
103 };
104
105 #if !CONFIG_IS_ENABLED(BLK)
106 static struct us_data usb_stor[USB_MAX_STOR_DEV];
107 #endif
108
109 #define USB_STOR_TRANSPORT_GOOD    0
110 #define USB_STOR_TRANSPORT_FAILED -1
111 #define USB_STOR_TRANSPORT_ERROR  -2
112
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,
116                       struct us_data *ss);
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);
122 #else
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);
127 #endif
128 void uhci_show_temp_int_td(void);
129
130 static void usb_show_progress(void)
131 {
132         debug(".");
133 }
134
135 /*******************************************************************************
136  * show info on storage devices; 'usb start/init' must be invoked earlier
137  * as we only retrieve structures populated during devices initialization
138  */
139 int usb_stor_info(void)
140 {
141         int count = 0;
142 #if CONFIG_IS_ENABLED(BLK)
143         struct udevice *dev;
144
145         for (blk_first_device(IF_TYPE_USB, &dev);
146              dev;
147              blk_next_device(&dev)) {
148                 struct blk_desc *desc = dev_get_uclass_platdata(dev);
149
150                 printf("  Device %d: ", desc->devnum);
151                 dev_print(desc);
152                 count++;
153         }
154 #else
155         int i;
156
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]);
161                 }
162                 return 0;
163         }
164 #endif
165         if (!count) {
166                 printf("No storage devices, perhaps not 'usb start'ed..?\n");
167                 return 1;
168         }
169
170         return 0;
171 }
172
173 static unsigned int usb_get_max_lun(struct us_data *us)
174 {
175         int len;
176         ALLOC_CACHE_ALIGN_BUFFER(unsigned char, result, 1);
177         len = usb_control_msg(us->pusb_dev,
178                               usb_rcvctrlpipe(us->pusb_dev, 0),
179                               US_BBB_GET_MAX_LUN,
180                               USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
181                               0, us->ifnum,
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;
186 }
187
188 static int usb_stor_probe_device(struct usb_device *udev)
189 {
190         int lun, max_lun;
191
192 #if CONFIG_IS_ENABLED(BLK)
193         struct us_data *data;
194         int ret;
195 #else
196         int start;
197
198         if (udev == NULL)
199                 return -ENOENT; /* no more devices available */
200 #endif
201
202         debug("\n\nProbing for storage\n");
203 #if CONFIG_IS_ENABLED(BLK)
204         /*
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
207          * device.
208          */
209         data = dev_get_platdata(udev->dev);
210         if (!usb_storage_probe(udev, 0, data))
211                 return 0;
212         max_lun = usb_get_max_lun(data);
213         for (lun = 0; lun <= max_lun; lun++) {
214                 struct blk_desc *blkdev;
215                 struct udevice *dev;
216                 char str[10];
217
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,
221                                          &dev);
222                 if (ret) {
223                         debug("Cannot bind driver\n");
224                         return ret;
225                 }
226
227                 blkdev = dev_get_uclass_platdata(dev);
228                 blkdev->target = 0xff;
229                 blkdev->lun = lun;
230
231                 ret = usb_stor_get_info(udev, data, blkdev);
232                 if (ret == 1) {
233                         usb_max_devs++;
234                         debug("%s: Found device %p\n", __func__, udev);
235                 } else {
236                         debug("usb_stor_get_info: Invalid device\n");
237                         ret = device_unbind(dev);
238                         if (ret)
239                                 return ret;
240                 }
241         }
242 #else
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",
246                        usb_max_devs);
247                 return -ENOSPC;
248         }
249
250         if (!usb_storage_probe(udev, 0, &usb_stor[usb_max_devs]))
251                 return 0;
252
253         /*
254          * OK, it's a storage device.  Iterate over its LUNs and populate
255          * usb_dev_desc'
256          */
257         start = usb_max_devs;
258
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;
261              lun++) {
262                 struct blk_desc *blkdev;
263
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;
273                 blkdev->lun = lun;
274                 blkdev->priv = udev;
275
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);
279                         part_init(blkdev);
280                         debug("partype: %d\n", blkdev->part_type);
281                         usb_max_devs++;
282                         debug("%s: Found device %p\n", __func__, udev);
283                 }
284         }
285 #endif
286
287         return 0;
288 }
289
290 void usb_stor_reset(void)
291 {
292         usb_max_devs = 0;
293 }
294
295 /*******************************************************************************
296  * scan the usb and reports device info
297  * to the user if mode = 1
298  * returns current device or -1 if no
299  */
300 int usb_stor_scan(int mode)
301 {
302         if (mode == 1)
303                 printf("       scanning usb for storage devices... ");
304
305 #if !CONFIG_IS_ENABLED(DM_USB)
306         unsigned char i;
307
308         usb_disable_asynch(1); /* asynch transfer not allowed */
309
310         usb_stor_reset();
311         for (i = 0; i < USB_MAX_DEVICE; i++) {
312                 struct usb_device *dev;
313
314                 dev = usb_get_dev_index(i); /* get device */
315                 debug("i=%d\n", i);
316                 if (usb_stor_probe_device(dev))
317                         break;
318         } /* for */
319
320         usb_disable_asynch(0); /* asynch transfer allowed */
321 #endif
322         printf("%d Storage Device(s) found\n", usb_max_devs);
323         if (usb_max_devs > 0)
324                 return 0;
325         return -1;
326 }
327
328 static int usb_stor_irq(struct usb_device *dev)
329 {
330         struct us_data *us;
331         us = (struct us_data *)dev->privptr;
332
333         if (us->ip_wanted)
334                 us->ip_wanted = 0;
335         return 0;
336 }
337
338
339 #ifdef  DEBUG
340
341 static void usb_show_srb(struct scsi_cmd *pccb)
342 {
343         int i;
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]);
347         printf("\n");
348 }
349
350 static void display_int_status(unsigned long tmp)
351 {
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" : "");
360 }
361 #endif
362 /***********************************************************************
363  * Data transfer routines
364  ***********************************************************************/
365
366 static int us_one_transfer(struct us_data *us, int pipe, char *buf, int length)
367 {
368         int max_size;
369         int this_xfer;
370         int result;
371         int partial;
372         int maxtry;
373         int stat;
374
375         /* determine the maximum packet size for these transfers */
376         max_size = usb_maxpacket(us->pusb_dev, pipe) * 16;
377
378         /* while we have data left to transfer */
379         while (length) {
380
381                 /* calculate how long this will be -- maximum or a remainder */
382                 this_xfer = length > max_size ? max_size : length;
383                 length -= this_xfer;
384
385                 /* setup the retry counter */
386                 maxtry = 10;
387
388                 /* set up the transfer loop */
389                 do {
390                         /* transfer the data */
391                         debug("Bulk xfer 0x%lx(%d) try #%d\n",
392                               (ulong)map_to_sysmem(buf), this_xfer,
393                               11 - maxtry);
394                         result = usb_bulk_msg(us->pusb_dev, pipe, buf,
395                                               this_xfer, &partial,
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
401                                  * we go on
402                                  */
403 #ifdef DEBUG
404                                 display_int_status(us->pusb_dev->status);
405 #endif
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" \
414                                                       "with error %lX," \
415                                                       " but data ok\n",
416                                                       us->pusb_dev->status);
417                                                 return 0;
418                                         }
419                                         else
420                                                 return result;
421                                 }
422                                 if (us->pusb_dev->status & USB_ST_NAK_REC) {
423                                         debug("Device NAKed bulk_msg\n");
424                                         return result;
425                                 }
426                                 debug("bulk transferred with error");
427                                 if (this_xfer == partial) {
428                                         debug(" %ld, but data ok\n",
429                                               us->pusb_dev->status);
430                                         return 0;
431                                 }
432                                 /* if our try counter reaches 0, bail out */
433                                         debug(" %ld, data %d\n",
434                                               us->pusb_dev->status, partial);
435                                 if (!maxtry--)
436                                                 return result;
437                         }
438                         /* update to show what data was transferred */
439                         this_xfer -= partial;
440                         buf += partial;
441                         /* continue until this transfer is done */
442                 } while (this_xfer);
443         }
444
445         /* if we get here, we're done and successful */
446         return 0;
447 }
448
449 static int usb_stor_BBB_reset(struct us_data *us)
450 {
451         int result;
452         unsigned int pipe;
453
454         /*
455          * Reset recovery (5.3.4 in Universal Serial Bus Mass Storage Class)
456          *
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
461          *
462          * This is done in 3 steps.
463          *
464          * If the reset doesn't succeed, the device should be port reset.
465          *
466          * This comment stolen from FreeBSD's /sys/dev/usb/umass.c.
467          */
468         debug("BBB_reset\n");
469         result = usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0),
470                                  US_BBB_RESET,
471                                  USB_TYPE_CLASS | USB_RECIP_INTERFACE,
472                                  0, us->ifnum, NULL, 0, USB_CNTL_TIMEOUT * 5);
473
474         if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) {
475                 debug("RESET:stall\n");
476                 return -1;
477         }
478
479         /* long wait for reset */
480         mdelay(150);
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 */
486         mdelay(150);
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);
492         mdelay(150);
493         debug("BBB_reset result %d: status %lX clearing OUT endpoint\n",
494               result, us->pusb_dev->status);
495         debug("BBB_reset done\n");
496         return 0;
497 }
498
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
502  */
503 static int usb_stor_CB_reset(struct us_data *us)
504 {
505         unsigned char cmd[12];
506         int result;
507
508         debug("CB_reset\n");
509         memset(cmd, 0xff, sizeof(cmd));
510         cmd[0] = SCSI_SEND_DIAG;
511         cmd[1] = 4;
512         result = usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0),
513                                  US_CBI_ADSC,
514                                  USB_TYPE_CLASS | USB_RECIP_INTERFACE,
515                                  0, us->ifnum, cmd, sizeof(cmd),
516                                  USB_CNTL_TIMEOUT * 5);
517
518         /* long wait for reset */
519         mdelay(1500);
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));
524
525         debug("CB_reset done\n");
526         return 0;
527 }
528
529 /*
530  * Set up the command for a BBB device. Note that the actual SCSI
531  * command is copied into cbw.CBWCDB.
532  */
533 static int usb_stor_BBB_comdat(struct scsi_cmd *srb, struct us_data *us)
534 {
535         int result;
536         int actlen;
537         int dir_in;
538         unsigned int pipe;
539         ALLOC_CACHE_ALIGN_BUFFER(struct umass_bbb_cbw, cbw, 1);
540
541         dir_in = US_DIRECTION(srb->cmd[0]);
542
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,
546                 srb->pdata);
547         if (srb->cmdlen) {
548                 for (result = 0; result < srb->cmdlen; result++)
549                         printf("cmd[%d] %#x ", result, srb->cmd[result]);
550                 printf("\n");
551         }
552 #endif
553         /* sanity checks */
554         if (!(srb->cmdlen <= CBWCDBLENGTH)) {
555                 debug("usb_stor_BBB_comdat:cmdlen too large\n");
556                 return -1;
557         }
558
559         /* always OUT to the ep */
560         pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
561
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 */
569         /* DST SRC LEN!!! */
570
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);
574         if (result < 0)
575                 debug("usb_stor_BBB_comdat:usb_bulk_msg error\n");
576         return result;
577 }
578
579 /* FIXME: we also need a CBI_command which sets up the completion
580  * interrupt, and waits for it
581  */
582 static int usb_stor_CB_comdat(struct scsi_cmd *srb, struct us_data *us)
583 {
584         int result = 0;
585         int dir_in, retry;
586         unsigned int pipe;
587         unsigned long status;
588
589         retry = 5;
590         dir_in = US_DIRECTION(srb->cmd[0]);
591
592         if (dir_in)
593                 pipe = usb_rcvbulkpipe(us->pusb_dev, us->ep_in);
594         else
595                 pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out);
596
597         while (retry--) {
598                 debug("CBI gets a command: Try %d\n", 5 - retry);
599 #ifdef DEBUG
600                 usb_show_srb(srb);
601 #endif
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),
605                                          US_CBI_ADSC,
606                                          USB_TYPE_CLASS | USB_RECIP_INTERFACE,
607                                          0, us->ifnum,
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 */
613                 if (result < 0) {
614                         if (us->pusb_dev->status & USB_ST_STALLED) {
615                                 status = us->pusb_dev->status;
616                                 debug(" stall during command found," \
617                                       " clear pipe\n");
618                                 usb_clear_halt(us->pusb_dev,
619                                               usb_sndctrlpipe(us->pusb_dev, 0));
620                                 us->pusb_dev->status = status;
621                         }
622                         debug(" error during command %02X" \
623                               " Stat = %lX\n", srb->cmd[0],
624                               us->pusb_dev->status);
625                         return result;
626                 }
627                 /* transfer the data payload for this command, if one exists*/
628
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);
632                 if (srb->datalen) {
633                         result = us_one_transfer(us, pipe, (char *)srb->pdata,
634                                                  srb->datalen);
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))
640                                 break;
641                 } /* if (srb->datalen) */
642                 else
643                         break;
644         }
645         /* return result */
646
647         return result;
648 }
649
650
651 static int usb_stor_CBI_get_status(struct scsi_cmd *srb, struct us_data *us)
652 {
653         int timeout;
654
655         us->ip_wanted = 1;
656         usb_int_msg(us->pusb_dev, us->irqpipe,
657                     (void *)&us->ip_data, us->irqmaxp, us->irqinterval, false);
658         timeout = 1000;
659         while (timeout--) {
660                 if (us->ip_wanted == 0)
661                         break;
662                 mdelay(10);
663         }
664         if (us->ip_wanted) {
665                 printf("        Did not get interrupt on CBI\n");
666                 us->ip_wanted = 0;
667                 return USB_STOR_TRANSPORT_ERROR;
668         }
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;
679                 else
680                         return USB_STOR_TRANSPORT_GOOD;
681         }
682         /* otherwise, we interpret the data normally */
683         switch (us->ip_data) {
684         case 0x0001:
685                 return USB_STOR_TRANSPORT_GOOD;
686         case 0x0002:
687                 return USB_STOR_TRANSPORT_FAILED;
688         default:
689                 return USB_STOR_TRANSPORT_ERROR;
690         }                       /* switch */
691         return USB_STOR_TRANSPORT_ERROR;
692 }
693
694 #define USB_TRANSPORT_UNKNOWN_RETRY 5
695 #define USB_TRANSPORT_NOT_READY_RETRY 10
696
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)
699 {
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);
704 }
705
706 static int usb_stor_BBB_transport(struct scsi_cmd *srb, struct us_data *us)
707 {
708         int result, retry;
709         int dir_in;
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
714         unsigned char *ptr;
715         int index;
716 #endif
717
718         dir_in = US_DIRECTION(srb->cmd[0]);
719
720         /* COMMAND phase */
721         debug("COMMAND phase\n");
722         result = usb_stor_BBB_comdat(srb, us);
723         if (result < 0) {
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;
728         }
729         if (!(us->flags & USB_READY))
730                 mdelay(5);
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 */
734         data_actlen = 0;
735         /* no data, go immediately to the STATUS phase */
736         if (srb->datalen == 0)
737                 goto st;
738         debug("DATA phase\n");
739         if (dir_in)
740                 pipe = pipein;
741         else
742                 pipe = pipeout;
743
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);
752                 if (result >= 0)
753                         /* continue on to STATUS phase */
754                         goto st;
755         }
756         if (result < 0) {
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;
761         }
762 #ifdef BBB_XPORT_TRACE
763         for (index = 0; index < data_actlen; index++)
764                 printf("pdata[%d] %#x ", index, srb->pdata[index]);
765         printf("\n");
766 #endif
767         /* STATUS phase + error handling */
768 st:
769         retry = 0;
770 again:
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);
774
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))
782                         /* do a retry */
783                         goto again;
784         }
785         if (result < 0) {
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;
790         }
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]);
795         printf("\n");
796 #endif
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)) {
806                 debug("!Tag\n");
807                 usb_stor_BBB_reset(us);
808                 return USB_STOR_TRANSPORT_FAILED;
809         } else if (csw->bCSWStatus > CSWSTATUS_PHASE) {
810                 debug(">PHASE\n");
811                 usb_stor_BBB_reset(us);
812                 return USB_STOR_TRANSPORT_FAILED;
813         } else if (csw->bCSWStatus == CSWSTATUS_PHASE) {
814                 debug("=PHASE\n");
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) {
822                 debug("FAILED\n");
823                 return USB_STOR_TRANSPORT_FAILED;
824         }
825
826         return result;
827 }
828
829 static int usb_stor_CB_transport(struct scsi_cmd *srb, struct us_data *us)
830 {
831         int result, status;
832         struct scsi_cmd *psrb;
833         struct scsi_cmd reqsrb;
834         int retry, notready;
835
836         psrb = &reqsrb;
837         status = USB_STOR_TRANSPORT_GOOD;
838         retry = 0;
839         notready = 0;
840         /* issue the command */
841 do_retry:
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");
851                         return status;
852                 }
853                 srb->sense_buf[12] = (unsigned char)(us->ip_data >> 8);
854                 srb->sense_buf[13] = (unsigned char)(us->ip_data & 0xff);
855                 if (!us->ip_data) {
856                         /* if the status is good, report it */
857                         if (status == USB_STOR_TRANSPORT_GOOD) {
858                                 debug(" USB CBI Command Good\n");
859                                 return status;
860                         }
861                 }
862         }
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;
869         }
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;
876         }
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;
881         psrb->cmd[4] = 18;
882         psrb->datalen = 18;
883         psrb->pdata = &srb->sense_buf[0];
884         psrb->cmdlen = 12;
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);
891
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;
896         }
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)) {
904                 /* ok, no sense */
905                 return USB_STOR_TRANSPORT_GOOD;
906         }
907
908         /* Check the auto request result */
909         switch (srb->sense_buf[2]) {
910         case 0x01:
911                 /* Recovered Error */
912                 return USB_STOR_TRANSPORT_GOOD;
913                 break;
914         case 0x02:
915                 /* Not Ready */
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;
922                 } else {
923                         mdelay(100);
924                         goto do_retry;
925                 }
926                 break;
927         default:
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],
932                                 srb->sense_buf[13]);
933                         return USB_STOR_TRANSPORT_FAILED;
934                 } else
935                         goto do_retry;
936                 break;
937         }
938         return USB_STOR_TRANSPORT_FAILED;
939 }
940
941 static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
942                                       struct us_data *us)
943 {
944         /*
945          * Limit the total size of a transfer to 120 KB.
946          *
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.
951          *
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.
955          *
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.
960          */
961         unsigned short blk = 240;
962
963 #if CONFIG_IS_ENABLED(DM_USB)
964         size_t size;
965         int ret;
966
967         ret = usb_get_max_xfer_size(udev, (size_t *)&size);
968         if ((ret >= 0) && (size < blk * 512))
969                 blk = size / 512;
970 #endif
971
972         us->max_xfer_blk = blk;
973 }
974
975 static int usb_inquiry(struct scsi_cmd *srb, struct us_data *ss)
976 {
977         int retry, i;
978         retry = 5;
979         do {
980                 memset(&srb->cmd[0], 0, 12);
981                 srb->cmd[0] = SCSI_INQUIRY;
982                 srb->cmd[1] = srb->lun << 5;
983                 srb->cmd[4] = 36;
984                 srb->datalen = 36;
985                 srb->cmdlen = 12;
986                 i = ss->transport(srb, ss);
987                 debug("inquiry returns %d\n", i);
988                 if (i == 0)
989                         break;
990         } while (--retry);
991
992         if (!retry) {
993                 printf("error in inquiry\n");
994                 return -1;
995         }
996         return 0;
997 }
998
999 static int usb_request_sense(struct scsi_cmd *srb, struct us_data *ss)
1000 {
1001         char *ptr;
1002
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;
1007         srb->cmd[4] = 18;
1008         srb->datalen = 18;
1009         srb->pdata = &srb->sense_buf[0];
1010         srb->cmdlen = 12;
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;
1016         return 0;
1017 }
1018
1019 static int usb_test_unit_ready(struct scsi_cmd *srb, struct us_data *ss)
1020 {
1021         int retries = 10;
1022
1023         do {
1024                 memset(&srb->cmd[0], 0, 12);
1025                 srb->cmd[0] = SCSI_TST_U_RDY;
1026                 srb->cmd[1] = srb->lun << 5;
1027                 srb->datalen = 0;
1028                 srb->cmdlen = 12;
1029                 if (ss->transport(srb, ss) == USB_STOR_TRANSPORT_GOOD) {
1030                         ss->flags |= USB_READY;
1031                         return 0;
1032                 }
1033                 usb_request_sense(srb, ss);
1034                 /*
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.
1040                  */
1041                 if ((srb->sense_buf[2] == 0x02) &&
1042                     (srb->sense_buf[12] == 0x3a))
1043                         return -1;
1044                 mdelay(100);
1045         } while (retries--);
1046
1047         return -1;
1048 }
1049
1050 static int usb_read_capacity(struct scsi_cmd *srb, struct us_data *ss)
1051 {
1052         int retry;
1053         /* XXX retries */
1054         retry = 3;
1055         do {
1056                 memset(&srb->cmd[0], 0, 12);
1057                 srb->cmd[0] = SCSI_RD_CAPAC;
1058                 srb->cmd[1] = srb->lun << 5;
1059                 srb->datalen = 8;
1060                 srb->cmdlen = 12;
1061                 if (ss->transport(srb, ss) == USB_STOR_TRANSPORT_GOOD)
1062                         return 0;
1063         } while (retry--);
1064
1065         return -1;
1066 }
1067
1068 static int usb_read_10(struct scsi_cmd *srb, struct us_data *ss,
1069                        unsigned long start, unsigned short blocks)
1070 {
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;
1080         srb->cmdlen = 12;
1081         debug("read10: start %lx blocks %x\n", start, blocks);
1082         return ss->transport(srb, ss);
1083 }
1084
1085 static int usb_write_10(struct scsi_cmd *srb, struct us_data *ss,
1086                         unsigned long start, unsigned short blocks)
1087 {
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;
1097         srb->cmdlen = 12;
1098         debug("write10: start %lx blocks %x\n", start, blocks);
1099         return ss->transport(srb, ss);
1100 }
1101
1102
1103 #ifdef CONFIG_USB_BIN_FIXUP
1104 /*
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').
1109  *
1110  * Vendor and product length limits are taken from the definition of
1111  * struct blk_desc in include/part.h.
1112  */
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",
1121                         max_product_len);
1122         }
1123 }
1124 #endif /* CONFIG_USB_BIN_FIXUP */
1125
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)
1129 #else
1130 static unsigned long usb_stor_read(struct blk_desc *block_dev, lbaint_t blknr,
1131                                    lbaint_t blkcnt, void *buffer)
1132 #endif
1133 {
1134         lbaint_t start, blks;
1135         uintptr_t buf_addr;
1136         unsigned short smallblks;
1137         struct usb_device *udev;
1138         struct us_data *ss;
1139         int retry;
1140         struct scsi_cmd *srb = &usb_ccb;
1141 #if CONFIG_IS_ENABLED(BLK)
1142         struct blk_desc *block_dev;
1143 #endif
1144
1145         if (blkcnt == 0)
1146                 return 0;
1147         /* Setup  device */
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);
1152 #else
1153         debug("\nusb_read: udev %d\n", block_dev->devnum);
1154         udev = usb_dev_desc[block_dev->devnum].priv;
1155         if (!udev) {
1156                 debug("%s: No device\n", __func__);
1157                 return 0;
1158         }
1159 #endif
1160         ss = (struct us_data *)udev->privptr;
1161
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;
1166         start = blknr;
1167         blks = blkcnt;
1168
1169         debug("\nusb_read: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
1170               block_dev->devnum, start, blks, buf_addr);
1171
1172         do {
1173                 /* XXX need some comment here */
1174                 retry = 2;
1175                 srb->pdata = (unsigned char *)buf_addr;
1176                 if (blks > ss->max_xfer_blk)
1177                         smallblks = ss->max_xfer_blk;
1178                 else
1179                         smallblks = (unsigned short) blks;
1180 retry_it:
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);
1189                         if (retry--)
1190                                 goto retry_it;
1191                         blkcnt -= blks;
1192                         break;
1193                 }
1194                 start += smallblks;
1195                 blks -= smallblks;
1196                 buf_addr += srb->datalen;
1197         } while (blks != 0);
1198
1199         debug("usb_read: end startblk " LBAF ", blccnt %x buffer %lx\n",
1200               start, smallblks, buf_addr);
1201
1202         usb_lock_async(udev, 0);
1203         usb_disable_asynch(0); /* asynch transfer allowed */
1204         if (blkcnt >= ss->max_xfer_blk)
1205                 debug("\n");
1206         return blkcnt;
1207 }
1208
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)
1212 #else
1213 static unsigned long usb_stor_write(struct blk_desc *block_dev, lbaint_t blknr,
1214                                     lbaint_t blkcnt, const void *buffer)
1215 #endif
1216 {
1217         lbaint_t start, blks;
1218         uintptr_t buf_addr;
1219         unsigned short smallblks;
1220         struct usb_device *udev;
1221         struct us_data *ss;
1222         int retry;
1223         struct scsi_cmd *srb = &usb_ccb;
1224 #if CONFIG_IS_ENABLED(BLK)
1225         struct blk_desc *block_dev;
1226 #endif
1227
1228         if (blkcnt == 0)
1229                 return 0;
1230
1231         /* Setup  device */
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);
1236 #else
1237         debug("\nusb_read: udev %d\n", block_dev->devnum);
1238         udev = usb_dev_desc[block_dev->devnum].priv;
1239         if (!udev) {
1240                 debug("%s: No device\n", __func__);
1241                 return 0;
1242         }
1243 #endif
1244         ss = (struct us_data *)udev->privptr;
1245
1246         usb_disable_asynch(1); /* asynch transfer not allowed */
1247         usb_lock_async(udev, 1);
1248
1249         srb->lun = block_dev->lun;
1250         buf_addr = (uintptr_t)buffer;
1251         start = blknr;
1252         blks = blkcnt;
1253
1254         debug("\nusb_write: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
1255               block_dev->devnum, start, blks, buf_addr);
1256
1257         do {
1258                 /* If write fails retry for max retry count else
1259                  * return with number of blocks written successfully.
1260                  */
1261                 retry = 2;
1262                 srb->pdata = (unsigned char *)buf_addr;
1263                 if (blks > ss->max_xfer_blk)
1264                         smallblks = ss->max_xfer_blk;
1265                 else
1266                         smallblks = (unsigned short) blks;
1267 retry_it:
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);
1276                         if (retry--)
1277                                 goto retry_it;
1278                         blkcnt -= blks;
1279                         break;
1280                 }
1281                 start += smallblks;
1282                 blks -= smallblks;
1283                 buf_addr += srb->datalen;
1284         } while (blks != 0);
1285
1286         debug("usb_write: end startblk " LBAF ", blccnt %x buffer %lx\n",
1287               start, smallblks, buf_addr);
1288
1289         usb_lock_async(udev, 0);
1290         usb_disable_asynch(0); /* asynch transfer allowed */
1291         if (blkcnt >= ss->max_xfer_blk)
1292                 debug("\n");
1293         return blkcnt;
1294
1295 }
1296
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,
1299                       struct us_data *ss)
1300 {
1301         struct usb_interface *iface;
1302         int i;
1303         struct usb_endpoint_descriptor *ep_desc;
1304         unsigned int flags = 0;
1305
1306         /* let's examine the device now */
1307         iface = &dev->config.if_desc[ifnum];
1308
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 */
1315                 return 0;
1316         }
1317
1318         memset(ss, 0, sizeof(struct us_data));
1319
1320         /* At this point, we know we've got a live one */
1321         debug("\n\nUSB Mass Storage device detected\n");
1322
1323         /* Initialize the us_data structure with some useful info */
1324         ss->flags = flags;
1325         ss->ifnum = ifnum;
1326         ss->pusb_dev = dev;
1327         ss->attention_done = 0;
1328         ss->subclass = iface->desc.bInterfaceSubClass;
1329         ss->protocol = iface->desc.bInterfaceProtocol;
1330
1331         /* set the handler pointers based on the protocol */
1332         debug("Transport: ");
1333         switch (ss->protocol) {
1334         case US_PR_CB:
1335                 debug("Control/Bulk\n");
1336                 ss->transport = usb_stor_CB_transport;
1337                 ss->transport_reset = usb_stor_CB_reset;
1338                 break;
1339
1340         case US_PR_CBI:
1341                 debug("Control/Bulk/Interrupt\n");
1342                 ss->transport = usb_stor_CB_transport;
1343                 ss->transport_reset = usb_stor_CB_reset;
1344                 break;
1345         case US_PR_BULK:
1346                 debug("Bulk/Bulk/Bulk\n");
1347                 ss->transport = usb_stor_BBB_transport;
1348                 ss->transport_reset = usb_stor_BBB_reset;
1349                 break;
1350         default:
1351                 printf("USB Storage Transport unknown / not yet implemented\n");
1352                 return 0;
1353                 break;
1354         }
1355
1356         /*
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.
1360          */
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;
1369                         else
1370                                 ss->ep_out =
1371                                         ep_desc->bEndpointAddress &
1372                                         USB_ENDPOINT_NUMBER_MASK;
1373                 }
1374
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;
1381                 }
1382         }
1383         debug("Endpoints In %d Out %d Int %d\n",
1384               ss->ep_in, ss->ep_out, ss->ep_int);
1385
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");
1391                 return 0;
1392         }
1393         /* set class specific stuff */
1394         /* We only handle certain protocols.  Currently, these are
1395          * the only ones.
1396          * The SFF8070 accepts the requests used in u-boot
1397          */
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);
1401                 return 0;
1402         }
1403         if (ss->ep_int) {
1404                 /* we had found an interrupt endpoint, prepare irq pipe
1405                  * set up the IRQ pipe and handler
1406                  */
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;
1411         }
1412
1413         /* Set the maximum transfer size per host controller setting */
1414         usb_stor_set_max_xfer_blk(dev, ss);
1415
1416         dev->privptr = (void *)ss;
1417         return 1;
1418 }
1419
1420 int usb_stor_get_info(struct usb_device *dev, struct us_data *ss,
1421                       struct blk_desc *dev_desc)
1422 {
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;
1428
1429         pccb->pdata = usb_stor_buf;
1430
1431         dev_desc->target = dev->devnum;
1432         pccb->lun = dev_desc->lun;
1433         debug(" address %d\n", dev_desc->target);
1434
1435         if (usb_inquiry(pccb, ss)) {
1436                 debug("%s: usb_inquiry() failed\n", __func__);
1437                 return -1;
1438         }
1439
1440         perq = usb_stor_buf[0];
1441         modi = usb_stor_buf[1];
1442
1443         /*
1444          * Skip unknown devices (0x1f) and enclosure service devices (0x0d),
1445          * they would not respond to test_unit_ready .
1446          */
1447         if (((perq & 0x1f) == 0x1f) || ((perq & 0x1f) == 0x0d)) {
1448                 debug("%s: unknown/unsupported device\n", __func__);
1449                 return 0;
1450         }
1451         if ((modi&0x80) == 0x80) {
1452                 /* drive is removable */
1453                 dev_desc->removable = 1;
1454         }
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],
1466               usb_stor_buf[3]);
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;
1474                 return 0;
1475         }
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;
1481                 cap[0] = 2880;
1482                 cap[1] = 0x200;
1483         }
1484         debug("Read Capacity returns: 0x%08x, 0x%08x\n", cap[0], cap[1]);
1485 #if 0
1486         if (cap[0] > (0x200000 * 10)) /* greater than 10 GByte */
1487                 cap[0] >>= 16;
1488
1489         cap[0] = cpu_to_be32(cap[0]);
1490         cap[1] = cpu_to_be32(cap[1]);
1491 #endif
1492
1493         capacity = be32_to_cpu(cap[0]) + 1;
1494         blksz = be32_to_cpu(cap[1]);
1495
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);
1502
1503         return 1;
1504 }
1505
1506 #if CONFIG_IS_ENABLED(DM_USB)
1507
1508 static int usb_mass_storage_probe(struct udevice *dev)
1509 {
1510         struct usb_device *udev = dev_get_parent_priv(dev);
1511         int ret;
1512
1513         usb_disable_asynch(1); /* asynch transfer not allowed */
1514         ret = usb_stor_probe_device(udev);
1515         usb_disable_asynch(0); /* asynch transfer allowed */
1516
1517         return ret;
1518 }
1519
1520 static const struct udevice_id usb_mass_storage_ids[] = {
1521         { .compatible = "usb-mass-storage" },
1522         { }
1523 };
1524
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),
1532 #endif
1533 };
1534
1535 UCLASS_DRIVER(usb_mass_storage) = {
1536         .id             = UCLASS_MASS_STORAGE,
1537         .name           = "usb_mass_storage",
1538 };
1539
1540 static const struct usb_device_id mass_storage_id_table[] = {
1541         {
1542                 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1543                 .bInterfaceClass = USB_CLASS_MASS_STORAGE
1544         },
1545         { }             /* Terminating entry */
1546 };
1547
1548 U_BOOT_USB_DEVICE(usb_mass_storage, mass_storage_id_table);
1549 #endif
1550
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,
1555 };
1556
1557 U_BOOT_DRIVER(usb_storage_blk) = {
1558         .name           = "usb_storage_blk",
1559         .id             = UCLASS_BLK,
1560         .ops            = &usb_storage_ops,
1561 };
1562 #else
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,
1568 };
1569 #endif