Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 2 | /* |
Wolfgang Denk | 6a3d6b0 | 2005-08-04 01:14:12 +0200 | [diff] [blame] | 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 |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 13 | * Driver model conversion: |
| 14 | * (C) Copyright 2015 Google, Inc |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 15 | * |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 16 | * For BBB support (C) Copyright 2003 |
Detlev Zundel | f1b3f2b | 2009-05-13 10:54:10 +0200 | [diff] [blame] | 17 | * Gary Jennejohn, DENX Software Engineering <garyj@denx.de> |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 18 | * |
Wolfgang Denk | 6a3d6b0 | 2005-08-04 01:14:12 +0200 | [diff] [blame] | 19 | * BBB support based on /sys/dev/usb/umass.c from |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 20 | * FreeBSD. |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 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 | */ |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 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. |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 32 | */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 33 | |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 34 | #include <blk.h> |
Simon Glass | e1917ef | 2022-04-24 23:31:23 -0600 | [diff] [blame] | 35 | #include <bootdev.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 36 | #include <command.h> |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 37 | #include <dm.h> |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 38 | #include <errno.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 39 | #include <log.h> |
Simon Glass | 332a9b6 | 2015-03-25 12:22:14 -0600 | [diff] [blame] | 40 | #include <mapmem.h> |
Simon Glass | 2dd337a | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 41 | #include <memalign.h> |
Christian Eggers | 4e0e8d0 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 42 | #include <asm/byteorder.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 43 | #include <asm/cache.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 44 | #include <asm/processor.h> |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 45 | #include <dm/device-internal.h> |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 46 | #include <dm/lists.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 47 | #include <linux/delay.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 48 | |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 49 | #include <part.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 50 | #include <usb.h> |
| 51 | |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 52 | #undef BBB_COMDAT_TRACE |
| 53 | #undef BBB_XPORT_TRACE |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 54 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 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 | */ |
Mike Frysinger | 165522b | 2010-10-20 07:16:04 -0400 | [diff] [blame] | 59 | static const unsigned char us_direction[256/8] = { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 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 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 67 | static struct scsi_cmd usb_ccb __aligned(ARCH_DMA_MINALIGN); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 68 | static __u32 CBWTag; |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 69 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 70 | static int usb_max_devs; /* number of highest available usb device */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 71 | |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 72 | #if !CONFIG_IS_ENABLED(BLK) |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 73 | static struct blk_desc usb_dev_desc[USB_MAX_STOR_DEV]; |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 74 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 75 | |
| 76 | struct us_data; |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 77 | typedef int (*trans_cmnd)(struct scsi_cmd *cb, struct us_data *data); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 78 | typedef int (*trans_reset)(struct us_data *data); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 79 | |
| 80 | struct us_data { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 81 | struct usb_device *pusb_dev; /* this usb_device */ |
| 82 | |
| 83 | unsigned int flags; /* from filter initially */ |
Benoît Thébaudeau | fbf909a | 2012-08-10 18:27:11 +0200 | [diff] [blame] | 84 | # define USB_READY (1 << 0) |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 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 */ |
Wolfgang Denk | 62fb2b4 | 2021-09-27 17:42:39 +0200 | [diff] [blame] | 96 | unsigned int irqpipe; /* pipe for release_irq */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 97 | unsigned char irqmaxp; /* max packed for irq Pipe */ |
| 98 | unsigned char irqinterval; /* Intervall for IRQ Pipe */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 99 | struct scsi_cmd *srb; /* current srb */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 100 | trans_reset transport_reset; /* reset routine */ |
| 101 | trans_cmnd transport; /* transport routine */ |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 102 | unsigned short max_xfer_blk; /* maximum transfer blocks */ |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 103 | bool cmd12; /* use 12-byte commands (RBC/UFI) */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 104 | }; |
| 105 | |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 106 | #if !CONFIG_IS_ENABLED(BLK) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 107 | static struct us_data usb_stor[USB_MAX_STOR_DEV]; |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 108 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 109 | |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 110 | #define USB_STOR_TRANSPORT_GOOD 0 |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 111 | #define USB_STOR_TRANSPORT_FAILED -1 |
| 112 | #define USB_STOR_TRANSPORT_ERROR -2 |
| 113 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 114 | int usb_stor_get_info(struct usb_device *dev, struct us_data *us, |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 115 | struct blk_desc *dev_desc); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 116 | int usb_storage_probe(struct usb_device *dev, unsigned int ifnum, |
| 117 | struct us_data *ss); |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 118 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 119 | static unsigned long usb_stor_read(struct udevice *dev, lbaint_t blknr, |
| 120 | lbaint_t blkcnt, void *buffer); |
| 121 | static unsigned long usb_stor_write(struct udevice *dev, lbaint_t blknr, |
| 122 | lbaint_t blkcnt, const void *buffer); |
| 123 | #else |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 124 | static unsigned long usb_stor_read(struct blk_desc *block_dev, lbaint_t blknr, |
Stephen Warren | e73f296 | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 125 | lbaint_t blkcnt, void *buffer); |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 126 | static unsigned long usb_stor_write(struct blk_desc *block_dev, lbaint_t blknr, |
Stephen Warren | e73f296 | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 127 | lbaint_t blkcnt, const void *buffer); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 128 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 129 | void uhci_show_temp_int_td(void); |
| 130 | |
Kim Phillips | b052b60 | 2012-10-29 13:34:32 +0000 | [diff] [blame] | 131 | static void usb_show_progress(void) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 132 | { |
Wolfgang Denk | 660e9a4 | 2010-07-19 11:36:59 +0200 | [diff] [blame] | 133 | debug("."); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 134 | } |
| 135 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 136 | /******************************************************************************* |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 137 | * show info on storage devices; 'usb start/init' must be invoked earlier |
| 138 | * as we only retrieve structures populated during devices initialization |
| 139 | */ |
Aras Vaichas | 7ede186 | 2008-03-25 12:09:07 +1100 | [diff] [blame] | 140 | int usb_stor_info(void) |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 141 | { |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 142 | int count = 0; |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 143 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 144 | struct udevice *dev; |
| 145 | |
Simon Glass | dbfa32c | 2022-08-11 19:34:59 -0600 | [diff] [blame] | 146 | for (blk_first_device(UCLASS_USB, &dev); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 147 | dev; |
| 148 | blk_next_device(&dev)) { |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 149 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 150 | |
| 151 | printf(" Device %d: ", desc->devnum); |
| 152 | dev_print(desc); |
| 153 | count++; |
| 154 | } |
| 155 | #else |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 156 | int i; |
| 157 | |
Aras Vaichas | 7ede186 | 2008-03-25 12:09:07 +1100 | [diff] [blame] | 158 | if (usb_max_devs > 0) { |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 159 | for (i = 0; i < usb_max_devs; i++) { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 160 | printf(" Device %d: ", i); |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 161 | dev_print(&usb_dev_desc[i]); |
| 162 | } |
Markus Klotzbuecher | 8e2a486 | 2008-03-26 18:26:43 +0100 | [diff] [blame] | 163 | return 0; |
Aras Vaichas | 7ede186 | 2008-03-25 12:09:07 +1100 | [diff] [blame] | 164 | } |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 165 | #endif |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 166 | if (!count) { |
| 167 | printf("No storage devices, perhaps not 'usb start'ed..?\n"); |
| 168 | return 1; |
| 169 | } |
| 170 | |
Simon Glass | 8c6c074 | 2016-03-16 07:45:44 -0600 | [diff] [blame] | 171 | return 0; |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 172 | } |
| 173 | |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 174 | static unsigned int usb_get_max_lun(struct us_data *us) |
| 175 | { |
| 176 | int len; |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 177 | ALLOC_CACHE_ALIGN_BUFFER(unsigned char, result, 1); |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 178 | len = usb_control_msg(us->pusb_dev, |
| 179 | usb_rcvctrlpipe(us->pusb_dev, 0), |
| 180 | US_BBB_GET_MAX_LUN, |
| 181 | USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN, |
| 182 | 0, us->ifnum, |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 183 | result, sizeof(char), |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 184 | USB_CNTL_TIMEOUT * 5); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 185 | debug("Get Max LUN -> len = %i, result = %i\n", len, (int) *result); |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 186 | return (len > 0) ? *result : 0; |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 187 | } |
| 188 | |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 189 | static int usb_stor_probe_device(struct usb_device *udev) |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 190 | { |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 191 | int lun, max_lun; |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 192 | |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 193 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 194 | struct us_data *data; |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 195 | int ret; |
| 196 | #else |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 197 | int start; |
| 198 | |
| 199 | if (udev == NULL) |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 200 | return -ENOENT; /* no more devices available */ |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 201 | #endif |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 202 | |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 203 | debug("\n\nProbing for storage\n"); |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 204 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 205 | /* |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 206 | * We store the us_data in the mass storage device's plat. It |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 207 | * is shared by all LUNs (block devices) attached to this mass storage |
| 208 | * device. |
| 209 | */ |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 210 | data = dev_get_plat(udev->dev); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 211 | if (!usb_storage_probe(udev, 0, data)) |
| 212 | return 0; |
| 213 | max_lun = usb_get_max_lun(data); |
| 214 | for (lun = 0; lun <= max_lun; lun++) { |
| 215 | struct blk_desc *blkdev; |
| 216 | struct udevice *dev; |
Simon Glass | 966b695 | 2016-05-01 11:36:29 -0600 | [diff] [blame] | 217 | char str[10]; |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 218 | |
Simon Glass | 966b695 | 2016-05-01 11:36:29 -0600 | [diff] [blame] | 219 | snprintf(str, sizeof(str), "lun%d", lun); |
| 220 | ret = blk_create_devicef(udev->dev, "usb_storage_blk", str, |
Bin Meng | 2294ecb | 2023-09-26 16:43:31 +0800 | [diff] [blame] | 221 | UCLASS_USB, usb_max_devs, |
| 222 | DEFAULT_BLKSZ, 0, &dev); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 223 | if (ret) { |
| 224 | debug("Cannot bind driver\n"); |
| 225 | return ret; |
| 226 | } |
| 227 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 228 | blkdev = dev_get_uclass_plat(dev); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 229 | blkdev->target = 0xff; |
| 230 | blkdev->lun = lun; |
| 231 | |
| 232 | ret = usb_stor_get_info(udev, data, blkdev); |
Bin Meng | cbc3da8 | 2018-10-15 02:21:07 -0700 | [diff] [blame] | 233 | if (ret == 1) { |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 234 | usb_max_devs++; |
| 235 | debug("%s: Found device %p\n", __func__, udev); |
| 236 | } else { |
| 237 | debug("usb_stor_get_info: Invalid device\n"); |
| 238 | ret = device_unbind(dev); |
| 239 | if (ret) |
| 240 | return ret; |
Janne Grunau | 96c2d11 | 2022-11-04 08:38:59 +0100 | [diff] [blame] | 241 | continue; |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 242 | } |
AKASHI Takahiro | f9c3cc8 | 2022-03-08 20:36:40 +0900 | [diff] [blame] | 243 | |
| 244 | ret = blk_probe_or_unbind(dev); |
| 245 | if (ret) |
| 246 | return ret; |
Simon Glass | e1917ef | 2022-04-24 23:31:23 -0600 | [diff] [blame] | 247 | |
Simon Glass | b1d581d | 2023-07-30 11:15:14 -0600 | [diff] [blame] | 248 | ret = bootdev_setup_for_sibling_blk(dev, "usb_bootdev"); |
Simon Glass | e1917ef | 2022-04-24 23:31:23 -0600 | [diff] [blame] | 249 | if (ret) { |
| 250 | int ret2; |
| 251 | |
| 252 | ret2 = device_unbind(dev); |
| 253 | if (ret2) |
| 254 | return log_msg_ret("bootdev", ret2); |
| 255 | return log_msg_ret("bootdev", ret); |
| 256 | } |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 257 | } |
| 258 | #else |
Simon Glass | 6d74d7c | 2016-02-29 15:25:53 -0700 | [diff] [blame] | 259 | /* We don't have space to even probe if we hit the maximum */ |
| 260 | if (usb_max_devs == USB_MAX_STOR_DEV) { |
| 261 | printf("max USB Storage Device reached: %d stopping\n", |
| 262 | usb_max_devs); |
| 263 | return -ENOSPC; |
| 264 | } |
| 265 | |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 266 | if (!usb_storage_probe(udev, 0, &usb_stor[usb_max_devs])) |
| 267 | return 0; |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 268 | |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 269 | /* |
| 270 | * OK, it's a storage device. Iterate over its LUNs and populate |
| 271 | * usb_dev_desc' |
| 272 | */ |
| 273 | start = usb_max_devs; |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 274 | |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 275 | max_lun = usb_get_max_lun(&usb_stor[usb_max_devs]); |
| 276 | for (lun = 0; lun <= max_lun && usb_max_devs < USB_MAX_STOR_DEV; |
| 277 | lun++) { |
| 278 | struct blk_desc *blkdev; |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 279 | |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 280 | blkdev = &usb_dev_desc[usb_max_devs]; |
| 281 | memset(blkdev, '\0', sizeof(struct blk_desc)); |
Simon Glass | fada3f9 | 2022-09-17 09:00:09 -0600 | [diff] [blame] | 282 | blkdev->uclass_id = UCLASS_USB; |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 283 | blkdev->devnum = usb_max_devs; |
| 284 | blkdev->part_type = PART_TYPE_UNKNOWN; |
| 285 | blkdev->target = 0xff; |
| 286 | blkdev->type = DEV_TYPE_UNKNOWN; |
| 287 | blkdev->block_read = usb_stor_read; |
| 288 | blkdev->block_write = usb_stor_write; |
| 289 | blkdev->lun = lun; |
| 290 | blkdev->priv = udev; |
| 291 | |
| 292 | if (usb_stor_get_info(udev, &usb_stor[start], |
| 293 | &usb_dev_desc[usb_max_devs]) == 1) { |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 294 | debug("partype: %d\n", blkdev->part_type); |
| 295 | part_init(blkdev); |
| 296 | debug("partype: %d\n", blkdev->part_type); |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 297 | usb_max_devs++; |
| 298 | debug("%s: Found device %p\n", __func__, udev); |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 299 | } |
| 300 | } |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 301 | #endif |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 302 | |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | void usb_stor_reset(void) |
| 307 | { |
| 308 | usb_max_devs = 0; |
| 309 | } |
| 310 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 311 | /******************************************************************************* |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 312 | * scan the usb and reports device info |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 313 | * to the user if mode = 1 |
| 314 | * returns current device or -1 if no |
| 315 | */ |
| 316 | int usb_stor_scan(int mode) |
| 317 | { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 318 | if (mode == 1) |
Lucas Stach | e6d3345 | 2012-09-26 00:14:36 +0200 | [diff] [blame] | 319 | printf(" scanning usb for storage devices... "); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 320 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 321 | #if !CONFIG_IS_ENABLED(DM_USB) |
Michal Simek | cd8f86f | 2016-12-21 09:35:08 +0100 | [diff] [blame] | 322 | unsigned char i; |
| 323 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 324 | usb_disable_asynch(1); /* asynch transfer not allowed */ |
| 325 | |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 326 | usb_stor_reset(); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 327 | for (i = 0; i < USB_MAX_DEVICE; i++) { |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 328 | struct usb_device *dev; |
| 329 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 330 | dev = usb_get_dev_index(i); /* get device */ |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 331 | debug("i=%d\n", i); |
Simon Glass | df7d34f | 2015-03-25 12:22:15 -0600 | [diff] [blame] | 332 | if (usb_stor_probe_device(dev)) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 333 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 334 | } /* for */ |
Wolfgang Denk | d06ce5d | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 335 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 336 | usb_disable_asynch(0); /* asynch transfer allowed */ |
Michal Simek | cd8f86f | 2016-12-21 09:35:08 +0100 | [diff] [blame] | 337 | #endif |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 338 | printf("%d Storage Device(s) found\n", usb_max_devs); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 339 | if (usb_max_devs > 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 340 | return 0; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 341 | return -1; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | static int usb_stor_irq(struct usb_device *dev) |
| 345 | { |
| 346 | struct us_data *us; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 347 | us = (struct us_data *)dev->privptr; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 348 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 349 | if (us->ip_wanted) |
| 350 | us->ip_wanted = 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 351 | return 0; |
| 352 | } |
| 353 | |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 354 | #ifdef DEBUG |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 355 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 356 | static void usb_show_srb(struct scsi_cmd *pccb) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 357 | { |
| 358 | int i; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 359 | printf("SRB: len %d datalen 0x%lX\n ", pccb->cmdlen, pccb->datalen); |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 360 | for (i = 0; i < pccb->cmdlen; i++) |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 361 | printf("%02X ", pccb->cmd[i]); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 362 | printf("\n"); |
| 363 | } |
| 364 | |
| 365 | static void display_int_status(unsigned long tmp) |
| 366 | { |
| 367 | printf("Status: %s %s %s %s %s %s %s\n", |
| 368 | (tmp & USB_ST_ACTIVE) ? "Active" : "", |
| 369 | (tmp & USB_ST_STALLED) ? "Stalled" : "", |
| 370 | (tmp & USB_ST_BUF_ERR) ? "Buffer Error" : "", |
| 371 | (tmp & USB_ST_BABBLE_DET) ? "Babble Det" : "", |
| 372 | (tmp & USB_ST_NAK_REC) ? "NAKed" : "", |
| 373 | (tmp & USB_ST_CRC_ERR) ? "CRC Error" : "", |
| 374 | (tmp & USB_ST_BIT_ERR) ? "Bitstuff Error" : ""); |
| 375 | } |
| 376 | #endif |
| 377 | /*********************************************************************** |
| 378 | * Data transfer routines |
| 379 | ***********************************************************************/ |
| 380 | |
| 381 | static int us_one_transfer(struct us_data *us, int pipe, char *buf, int length) |
| 382 | { |
| 383 | int max_size; |
| 384 | int this_xfer; |
| 385 | int result; |
| 386 | int partial; |
| 387 | int maxtry; |
| 388 | int stat; |
| 389 | |
| 390 | /* determine the maximum packet size for these transfers */ |
| 391 | max_size = usb_maxpacket(us->pusb_dev, pipe) * 16; |
| 392 | |
| 393 | /* while we have data left to transfer */ |
| 394 | while (length) { |
| 395 | |
| 396 | /* calculate how long this will be -- maximum or a remainder */ |
| 397 | this_xfer = length > max_size ? max_size : length; |
| 398 | length -= this_xfer; |
| 399 | |
| 400 | /* setup the retry counter */ |
| 401 | maxtry = 10; |
| 402 | |
| 403 | /* set up the transfer loop */ |
| 404 | do { |
| 405 | /* transfer the data */ |
Simon Glass | 332a9b6 | 2015-03-25 12:22:14 -0600 | [diff] [blame] | 406 | debug("Bulk xfer 0x%lx(%d) try #%d\n", |
| 407 | (ulong)map_to_sysmem(buf), this_xfer, |
| 408 | 11 - maxtry); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 409 | result = usb_bulk_msg(us->pusb_dev, pipe, buf, |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 410 | this_xfer, &partial, |
| 411 | USB_CNTL_TIMEOUT * 5); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 412 | debug("bulk_msg returned %d xferred %d/%d\n", |
| 413 | result, partial, this_xfer); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 414 | if (us->pusb_dev->status != 0) { |
| 415 | /* if we stall, we need to clear it before |
| 416 | * we go on |
| 417 | */ |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 418 | #ifdef DEBUG |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 419 | display_int_status(us->pusb_dev->status); |
| 420 | #endif |
| 421 | if (us->pusb_dev->status & USB_ST_STALLED) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 422 | debug("stalled ->clearing endpoint" \ |
| 423 | "halt for pipe 0x%x\n", pipe); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 424 | stat = us->pusb_dev->status; |
| 425 | usb_clear_halt(us->pusb_dev, pipe); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 426 | us->pusb_dev->status = stat; |
| 427 | if (this_xfer == partial) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 428 | debug("bulk transferred" \ |
| 429 | "with error %lX," \ |
| 430 | " but data ok\n", |
| 431 | us->pusb_dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 432 | return 0; |
| 433 | } |
| 434 | else |
| 435 | return result; |
| 436 | } |
| 437 | if (us->pusb_dev->status & USB_ST_NAK_REC) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 438 | debug("Device NAKed bulk_msg\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 439 | return result; |
| 440 | } |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 441 | debug("bulk transferred with error"); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 442 | if (this_xfer == partial) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 443 | debug(" %ld, but data ok\n", |
| 444 | us->pusb_dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 445 | return 0; |
| 446 | } |
| 447 | /* if our try counter reaches 0, bail out */ |
Michal Simek | cfd8a6e | 2020-12-01 14:02:58 +0100 | [diff] [blame] | 448 | debug(" %ld, data %d\n", |
| 449 | us->pusb_dev->status, partial); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 450 | if (!maxtry--) |
| 451 | return result; |
| 452 | } |
| 453 | /* update to show what data was transferred */ |
| 454 | this_xfer -= partial; |
| 455 | buf += partial; |
| 456 | /* continue until this transfer is done */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 457 | } while (this_xfer); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | /* if we get here, we're done and successful */ |
| 461 | return 0; |
| 462 | } |
| 463 | |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 464 | static int usb_stor_BBB_reset(struct us_data *us) |
| 465 | { |
| 466 | int result; |
| 467 | unsigned int pipe; |
| 468 | |
| 469 | /* |
| 470 | * Reset recovery (5.3.4 in Universal Serial Bus Mass Storage Class) |
| 471 | * |
| 472 | * For Reset Recovery the host shall issue in the following order: |
| 473 | * a) a Bulk-Only Mass Storage Reset |
| 474 | * b) a Clear Feature HALT to the Bulk-In endpoint |
| 475 | * c) a Clear Feature HALT to the Bulk-Out endpoint |
| 476 | * |
| 477 | * This is done in 3 steps. |
| 478 | * |
| 479 | * If the reset doesn't succeed, the device should be port reset. |
| 480 | * |
| 481 | * This comment stolen from FreeBSD's /sys/dev/usb/umass.c. |
| 482 | */ |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 483 | debug("BBB_reset\n"); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 484 | result = usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0), |
| 485 | US_BBB_RESET, |
| 486 | USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
Kim Phillips | b052b60 | 2012-10-29 13:34:32 +0000 | [diff] [blame] | 487 | 0, us->ifnum, NULL, 0, USB_CNTL_TIMEOUT * 5); |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 488 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 489 | if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 490 | debug("RESET:stall\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 491 | return -1; |
| 492 | } |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 493 | |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 494 | /* long wait for reset */ |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 495 | mdelay(150); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 496 | debug("BBB_reset result %d: status %lX reset\n", |
| 497 | result, us->pusb_dev->status); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 498 | pipe = usb_rcvbulkpipe(us->pusb_dev, us->ep_in); |
| 499 | result = usb_clear_halt(us->pusb_dev, pipe); |
| 500 | /* long wait for reset */ |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 501 | mdelay(150); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 502 | debug("BBB_reset result %d: status %lX clearing IN endpoint\n", |
| 503 | result, us->pusb_dev->status); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 504 | /* long wait for reset */ |
| 505 | pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out); |
| 506 | result = usb_clear_halt(us->pusb_dev, pipe); |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 507 | mdelay(150); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 508 | debug("BBB_reset result %d: status %lX clearing OUT endpoint\n", |
| 509 | result, us->pusb_dev->status); |
| 510 | debug("BBB_reset done\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 511 | return 0; |
| 512 | } |
| 513 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 514 | /* FIXME: this reset function doesn't really reset the port, and it |
| 515 | * should. Actually it should probably do what it's doing here, and |
| 516 | * reset the port physically |
| 517 | */ |
| 518 | static int usb_stor_CB_reset(struct us_data *us) |
| 519 | { |
| 520 | unsigned char cmd[12]; |
| 521 | int result; |
| 522 | |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 523 | debug("CB_reset\n"); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 524 | memset(cmd, 0xff, sizeof(cmd)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 525 | cmd[0] = SCSI_SEND_DIAG; |
| 526 | cmd[1] = 4; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 527 | result = usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0), |
| 528 | US_CBI_ADSC, |
| 529 | USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 530 | 0, us->ifnum, cmd, sizeof(cmd), |
| 531 | USB_CNTL_TIMEOUT * 5); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 532 | |
| 533 | /* long wait for reset */ |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 534 | mdelay(1500); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 535 | debug("CB_reset result %d: status %lX clearing endpoint halt\n", |
| 536 | result, us->pusb_dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 537 | usb_clear_halt(us->pusb_dev, usb_rcvbulkpipe(us->pusb_dev, us->ep_in)); |
| 538 | usb_clear_halt(us->pusb_dev, usb_rcvbulkpipe(us->pusb_dev, us->ep_out)); |
| 539 | |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 540 | debug("CB_reset done\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 541 | return 0; |
| 542 | } |
| 543 | |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 544 | /* |
| 545 | * Set up the command for a BBB device. Note that the actual SCSI |
| 546 | * command is copied into cbw.CBWCDB. |
| 547 | */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 548 | static int usb_stor_BBB_comdat(struct scsi_cmd *srb, struct us_data *us) |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 549 | { |
| 550 | int result; |
| 551 | int actlen; |
| 552 | int dir_in; |
| 553 | unsigned int pipe; |
Simon Glass | 6f41465 | 2015-03-25 12:22:11 -0600 | [diff] [blame] | 554 | ALLOC_CACHE_ALIGN_BUFFER(struct umass_bbb_cbw, cbw, 1); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 555 | |
| 556 | dir_in = US_DIRECTION(srb->cmd[0]); |
| 557 | |
| 558 | #ifdef BBB_COMDAT_TRACE |
Vivek Gautam | 23cbd29 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 559 | printf("dir %d lun %d cmdlen %d cmd %p datalen %lu pdata %p\n", |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 560 | dir_in, srb->lun, srb->cmdlen, srb->cmd, srb->datalen, |
| 561 | srb->pdata); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 562 | if (srb->cmdlen) { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 563 | for (result = 0; result < srb->cmdlen; result++) |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 564 | printf("cmd[%d] %#x ", result, srb->cmd[result]); |
| 565 | printf("\n"); |
| 566 | } |
| 567 | #endif |
| 568 | /* sanity checks */ |
| 569 | if (!(srb->cmdlen <= CBWCDBLENGTH)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 570 | debug("usb_stor_BBB_comdat:cmdlen too large\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 571 | return -1; |
| 572 | } |
| 573 | |
| 574 | /* always OUT to the ep */ |
| 575 | pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out); |
| 576 | |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 577 | cbw->dCBWSignature = cpu_to_le32(CBWSIGNATURE); |
| 578 | cbw->dCBWTag = cpu_to_le32(CBWTag++); |
| 579 | cbw->dCBWDataTransferLength = cpu_to_le32(srb->datalen); |
| 580 | cbw->bCBWFlags = (dir_in ? CBWFLAGS_IN : CBWFLAGS_OUT); |
| 581 | cbw->bCBWLUN = srb->lun; |
| 582 | cbw->bCDBLength = srb->cmdlen; |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 583 | /* copy the command data into the CBW command data buffer */ |
| 584 | /* DST SRC LEN!!! */ |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 585 | |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 586 | memcpy(cbw->CBWCDB, srb->cmd, srb->cmdlen); |
| 587 | result = usb_bulk_msg(us->pusb_dev, pipe, cbw, UMASS_BBB_CBW_SIZE, |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 588 | &actlen, USB_CNTL_TIMEOUT * 5); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 589 | if (result < 0) |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 590 | debug("usb_stor_BBB_comdat:usb_bulk_msg error\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 591 | return result; |
| 592 | } |
| 593 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 594 | /* FIXME: we also need a CBI_command which sets up the completion |
| 595 | * interrupt, and waits for it |
| 596 | */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 597 | static int usb_stor_CB_comdat(struct scsi_cmd *srb, struct us_data *us) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 598 | { |
Wolfgang Denk | 7fb5266 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 599 | int result = 0; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 600 | int dir_in, retry; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 601 | unsigned int pipe; |
| 602 | unsigned long status; |
| 603 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 604 | retry = 5; |
| 605 | dir_in = US_DIRECTION(srb->cmd[0]); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 606 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 607 | if (dir_in) |
| 608 | pipe = usb_rcvbulkpipe(us->pusb_dev, us->ep_in); |
| 609 | else |
| 610 | pipe = usb_sndbulkpipe(us->pusb_dev, us->ep_out); |
| 611 | |
| 612 | while (retry--) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 613 | debug("CBI gets a command: Try %d\n", 5 - retry); |
| 614 | #ifdef DEBUG |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 615 | usb_show_srb(srb); |
| 616 | #endif |
| 617 | /* let's send the command via the control pipe */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 618 | result = usb_control_msg(us->pusb_dev, |
| 619 | usb_sndctrlpipe(us->pusb_dev , 0), |
| 620 | US_CBI_ADSC, |
| 621 | USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 622 | 0, us->ifnum, |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 623 | srb->cmd, srb->cmdlen, |
| 624 | USB_CNTL_TIMEOUT * 5); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 625 | debug("CB_transport: control msg returned %d, status %lX\n", |
| 626 | result, us->pusb_dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 627 | /* check the return code for the command */ |
| 628 | if (result < 0) { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 629 | if (us->pusb_dev->status & USB_ST_STALLED) { |
| 630 | status = us->pusb_dev->status; |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 631 | debug(" stall during command found," \ |
| 632 | " clear pipe\n"); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 633 | usb_clear_halt(us->pusb_dev, |
| 634 | usb_sndctrlpipe(us->pusb_dev, 0)); |
| 635 | us->pusb_dev->status = status; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 636 | } |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 637 | debug(" error during command %02X" \ |
| 638 | " Stat = %lX\n", srb->cmd[0], |
| 639 | us->pusb_dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 640 | return result; |
| 641 | } |
| 642 | /* transfer the data payload for this command, if one exists*/ |
| 643 | |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 644 | debug("CB_transport: control msg returned %d," \ |
| 645 | " direction is %s to go 0x%lx\n", result, |
| 646 | dir_in ? "IN" : "OUT", srb->datalen); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 647 | if (srb->datalen) { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 648 | result = us_one_transfer(us, pipe, (char *)srb->pdata, |
| 649 | srb->datalen); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 650 | debug("CBI attempted to transfer data," \ |
| 651 | " result is %d status %lX, len %d\n", |
| 652 | result, us->pusb_dev->status, |
| 653 | us->pusb_dev->act_len); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 654 | if (!(us->pusb_dev->status & USB_ST_NAK_REC)) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 655 | break; |
| 656 | } /* if (srb->datalen) */ |
| 657 | else |
| 658 | break; |
| 659 | } |
| 660 | /* return result */ |
| 661 | |
| 662 | return result; |
| 663 | } |
| 664 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 665 | static int usb_stor_CBI_get_status(struct scsi_cmd *srb, struct us_data *us) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 666 | { |
| 667 | int timeout; |
| 668 | |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 669 | us->ip_wanted = 1; |
Michal Suchanek | 0089d21 | 2019-08-18 10:55:26 +0200 | [diff] [blame] | 670 | usb_int_msg(us->pusb_dev, us->irqpipe, |
Michal Suchanek | 1c95b9f | 2019-08-18 10:55:27 +0200 | [diff] [blame] | 671 | (void *)&us->ip_data, us->irqmaxp, us->irqinterval, false); |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 672 | timeout = 1000; |
| 673 | while (timeout--) { |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 674 | if (us->ip_wanted == 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 675 | break; |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 676 | mdelay(10); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 677 | } |
| 678 | if (us->ip_wanted) { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 679 | printf(" Did not get interrupt on CBI\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 680 | us->ip_wanted = 0; |
| 681 | return USB_STOR_TRANSPORT_ERROR; |
| 682 | } |
Vagrant Cascadian | 53d41e6 | 2016-03-15 12:16:39 -0700 | [diff] [blame] | 683 | debug("Got interrupt data 0x%x, transferred %d status 0x%lX\n", |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 684 | us->ip_data, us->pusb_dev->irq_act_len, |
| 685 | us->pusb_dev->irq_status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 686 | /* UFI gives us ASC and ASCQ, like a request sense */ |
| 687 | if (us->subclass == US_SC_UFI) { |
| 688 | if (srb->cmd[0] == SCSI_REQ_SENSE || |
| 689 | srb->cmd[0] == SCSI_INQUIRY) |
| 690 | return USB_STOR_TRANSPORT_GOOD; /* Good */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 691 | else if (us->ip_data) |
| 692 | return USB_STOR_TRANSPORT_FAILED; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 693 | else |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 694 | return USB_STOR_TRANSPORT_GOOD; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 695 | } |
| 696 | /* otherwise, we interpret the data normally */ |
| 697 | switch (us->ip_data) { |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 698 | case 0x0001: |
| 699 | return USB_STOR_TRANSPORT_GOOD; |
| 700 | case 0x0002: |
| 701 | return USB_STOR_TRANSPORT_FAILED; |
| 702 | default: |
| 703 | return USB_STOR_TRANSPORT_ERROR; |
| 704 | } /* switch */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 705 | return USB_STOR_TRANSPORT_ERROR; |
| 706 | } |
| 707 | |
| 708 | #define USB_TRANSPORT_UNKNOWN_RETRY 5 |
| 709 | #define USB_TRANSPORT_NOT_READY_RETRY 10 |
| 710 | |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 711 | /* clear a stall on an endpoint - special for BBB devices */ |
Kim Phillips | b052b60 | 2012-10-29 13:34:32 +0000 | [diff] [blame] | 712 | static int usb_stor_BBB_clear_endpt_stall(struct us_data *us, __u8 endpt) |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 713 | { |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 714 | /* ENDPOINT_HALT = 0, so set value to 0 */ |
Masahiro Yamada | 9b70df5 | 2016-09-06 22:17:35 +0900 | [diff] [blame] | 715 | return usb_control_msg(us->pusb_dev, usb_sndctrlpipe(us->pusb_dev, 0), |
| 716 | USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0, |
| 717 | endpt, NULL, 0, USB_CNTL_TIMEOUT * 5); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 718 | } |
| 719 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 720 | static int usb_stor_BBB_transport(struct scsi_cmd *srb, struct us_data *us) |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 721 | { |
| 722 | int result, retry; |
| 723 | int dir_in; |
| 724 | int actlen, data_actlen; |
| 725 | unsigned int pipe, pipein, pipeout; |
Simon Glass | 6f41465 | 2015-03-25 12:22:11 -0600 | [diff] [blame] | 726 | ALLOC_CACHE_ALIGN_BUFFER(struct umass_bbb_csw, csw, 1); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 727 | #ifdef BBB_XPORT_TRACE |
| 728 | unsigned char *ptr; |
| 729 | int index; |
| 730 | #endif |
| 731 | |
| 732 | dir_in = US_DIRECTION(srb->cmd[0]); |
| 733 | |
| 734 | /* COMMAND phase */ |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 735 | debug("COMMAND phase\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 736 | result = usb_stor_BBB_comdat(srb, us); |
| 737 | if (result < 0) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 738 | debug("failed to send CBW status %ld\n", |
| 739 | us->pusb_dev->status); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 740 | usb_stor_BBB_reset(us); |
| 741 | return USB_STOR_TRANSPORT_FAILED; |
| 742 | } |
Benoît Thébaudeau | fbf909a | 2012-08-10 18:27:11 +0200 | [diff] [blame] | 743 | if (!(us->flags & USB_READY)) |
| 744 | mdelay(5); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 745 | pipein = usb_rcvbulkpipe(us->pusb_dev, us->ep_in); |
| 746 | pipeout = usb_sndbulkpipe(us->pusb_dev, us->ep_out); |
| 747 | /* DATA phase + error handling */ |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 748 | data_actlen = 0; |
| 749 | /* no data, go immediately to the STATUS phase */ |
| 750 | if (srb->datalen == 0) |
| 751 | goto st; |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 752 | debug("DATA phase\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 753 | if (dir_in) |
| 754 | pipe = pipein; |
| 755 | else |
| 756 | pipe = pipeout; |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 757 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 758 | result = usb_bulk_msg(us->pusb_dev, pipe, srb->pdata, srb->datalen, |
| 759 | &data_actlen, USB_CNTL_TIMEOUT * 5); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 760 | /* special handling of STALL in DATA phase */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 761 | if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 762 | debug("DATA:stall\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 763 | /* clear the STALL on the endpoint */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 764 | result = usb_stor_BBB_clear_endpt_stall(us, |
| 765 | dir_in ? us->ep_in : us->ep_out); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 766 | if (result >= 0) |
| 767 | /* continue on to STATUS phase */ |
| 768 | goto st; |
| 769 | } |
| 770 | if (result < 0) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 771 | debug("usb_bulk_msg error status %ld\n", |
| 772 | us->pusb_dev->status); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 773 | usb_stor_BBB_reset(us); |
| 774 | return USB_STOR_TRANSPORT_FAILED; |
| 775 | } |
| 776 | #ifdef BBB_XPORT_TRACE |
| 777 | for (index = 0; index < data_actlen; index++) |
| 778 | printf("pdata[%d] %#x ", index, srb->pdata[index]); |
| 779 | printf("\n"); |
| 780 | #endif |
| 781 | /* STATUS phase + error handling */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 782 | st: |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 783 | retry = 0; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 784 | again: |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 785 | debug("STATUS phase\n"); |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 786 | result = usb_bulk_msg(us->pusb_dev, pipein, csw, UMASS_BBB_CSW_SIZE, |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 787 | &actlen, USB_CNTL_TIMEOUT*5); |
| 788 | |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 789 | /* special handling of STALL in STATUS phase */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 790 | if ((result < 0) && (retry < 1) && |
| 791 | (us->pusb_dev->status & USB_ST_STALLED)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 792 | debug("STATUS:stall\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 793 | /* clear the STALL on the endpoint */ |
| 794 | result = usb_stor_BBB_clear_endpt_stall(us, us->ep_in); |
| 795 | if (result >= 0 && (retry++ < 1)) |
| 796 | /* do a retry */ |
| 797 | goto again; |
| 798 | } |
| 799 | if (result < 0) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 800 | debug("usb_bulk_msg error status %ld\n", |
| 801 | us->pusb_dev->status); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 802 | usb_stor_BBB_reset(us); |
| 803 | return USB_STOR_TRANSPORT_FAILED; |
| 804 | } |
| 805 | #ifdef BBB_XPORT_TRACE |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 806 | ptr = (unsigned char *)csw; |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 807 | for (index = 0; index < UMASS_BBB_CSW_SIZE; index++) |
| 808 | printf("ptr[%d] %#x ", index, ptr[index]); |
| 809 | printf("\n"); |
| 810 | #endif |
| 811 | /* misuse pipe to get the residue */ |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 812 | pipe = le32_to_cpu(csw->dCSWDataResidue); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 813 | if (pipe == 0 && srb->datalen != 0 && srb->datalen - data_actlen != 0) |
| 814 | pipe = srb->datalen - data_actlen; |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 815 | if (CSWSIGNATURE != le32_to_cpu(csw->dCSWSignature)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 816 | debug("!CSWSIGNATURE\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 817 | usb_stor_BBB_reset(us); |
| 818 | return USB_STOR_TRANSPORT_FAILED; |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 819 | } else if ((CBWTag - 1) != le32_to_cpu(csw->dCSWTag)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 820 | debug("!Tag\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 821 | usb_stor_BBB_reset(us); |
| 822 | return USB_STOR_TRANSPORT_FAILED; |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 823 | } else if (csw->bCSWStatus > CSWSTATUS_PHASE) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 824 | debug(">PHASE\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 825 | usb_stor_BBB_reset(us); |
| 826 | return USB_STOR_TRANSPORT_FAILED; |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 827 | } else if (csw->bCSWStatus == CSWSTATUS_PHASE) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 828 | debug("=PHASE\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 829 | usb_stor_BBB_reset(us); |
| 830 | return USB_STOR_TRANSPORT_FAILED; |
| 831 | } else if (data_actlen > srb->datalen) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 832 | debug("transferred %dB instead of %ldB\n", |
| 833 | data_actlen, srb->datalen); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 834 | return USB_STOR_TRANSPORT_FAILED; |
Puneet Saxena | 6c9bb60 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 835 | } else if (csw->bCSWStatus == CSWSTATUS_FAILED) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 836 | debug("FAILED\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 837 | return USB_STOR_TRANSPORT_FAILED; |
| 838 | } |
| 839 | |
| 840 | return result; |
| 841 | } |
| 842 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 843 | static int usb_stor_CB_transport(struct scsi_cmd *srb, struct us_data *us) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 844 | { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 845 | int result, status; |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 846 | struct scsi_cmd *psrb; |
| 847 | struct scsi_cmd reqsrb; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 848 | int retry, notready; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 849 | |
Wolfgang Denk | dc770c7 | 2008-07-14 15:19:07 +0200 | [diff] [blame] | 850 | psrb = &reqsrb; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 851 | status = USB_STOR_TRANSPORT_GOOD; |
| 852 | retry = 0; |
| 853 | notready = 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 854 | /* issue the command */ |
| 855 | do_retry: |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 856 | result = usb_stor_CB_comdat(srb, us); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 857 | debug("command / Data returned %d, status %lX\n", |
| 858 | result, us->pusb_dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 859 | /* if this is an CBI Protocol, get IRQ */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 860 | if (us->protocol == US_PR_CBI) { |
| 861 | status = usb_stor_CBI_get_status(srb, us); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 862 | /* if the status is error, report it */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 863 | if (status == USB_STOR_TRANSPORT_ERROR) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 864 | debug(" USB CBI Command Error\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 865 | return status; |
| 866 | } |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 867 | srb->sense_buf[12] = (unsigned char)(us->ip_data >> 8); |
| 868 | srb->sense_buf[13] = (unsigned char)(us->ip_data & 0xff); |
| 869 | if (!us->ip_data) { |
| 870 | /* if the status is good, report it */ |
| 871 | if (status == USB_STOR_TRANSPORT_GOOD) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 872 | debug(" USB CBI Command Good\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 873 | return status; |
| 874 | } |
| 875 | } |
| 876 | } |
| 877 | /* do we have to issue an auto request? */ |
| 878 | /* HERE we have to check the result */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 879 | if ((result < 0) && !(us->pusb_dev->status & USB_ST_STALLED)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 880 | debug("ERROR %lX\n", us->pusb_dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 881 | us->transport_reset(us); |
| 882 | return USB_STOR_TRANSPORT_ERROR; |
| 883 | } |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 884 | if ((us->protocol == US_PR_CBI) && |
| 885 | ((srb->cmd[0] == SCSI_REQ_SENSE) || |
| 886 | (srb->cmd[0] == SCSI_INQUIRY))) { |
| 887 | /* do not issue an autorequest after request sense */ |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 888 | debug("No auto request and good\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 889 | return USB_STOR_TRANSPORT_GOOD; |
| 890 | } |
| 891 | /* issue an request_sense */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 892 | memset(&psrb->cmd[0], 0, 12); |
| 893 | psrb->cmd[0] = SCSI_REQ_SENSE; |
| 894 | psrb->cmd[1] = srb->lun << 5; |
| 895 | psrb->cmd[4] = 18; |
| 896 | psrb->datalen = 18; |
Wolfgang Denk | dc770c7 | 2008-07-14 15:19:07 +0200 | [diff] [blame] | 897 | psrb->pdata = &srb->sense_buf[0]; |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 898 | psrb->cmdlen = us->cmd12 ? 12 : 6; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 899 | /* issue the command */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 900 | result = usb_stor_CB_comdat(psrb, us); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 901 | debug("auto request returned %d\n", result); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 902 | /* if this is an CBI Protocol, get IRQ */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 903 | if (us->protocol == US_PR_CBI) |
| 904 | status = usb_stor_CBI_get_status(psrb, us); |
| 905 | |
| 906 | if ((result < 0) && !(us->pusb_dev->status & USB_ST_STALLED)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 907 | debug(" AUTO REQUEST ERROR %ld\n", |
| 908 | us->pusb_dev->status); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 909 | return USB_STOR_TRANSPORT_ERROR; |
| 910 | } |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 911 | debug("autorequest returned 0x%02X 0x%02X 0x%02X 0x%02X\n", |
| 912 | srb->sense_buf[0], srb->sense_buf[2], |
| 913 | srb->sense_buf[12], srb->sense_buf[13]); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 914 | /* Check the auto request result */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 915 | if ((srb->sense_buf[2] == 0) && |
| 916 | (srb->sense_buf[12] == 0) && |
| 917 | (srb->sense_buf[13] == 0)) { |
| 918 | /* ok, no sense */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 919 | return USB_STOR_TRANSPORT_GOOD; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 920 | } |
| 921 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 922 | /* Check the auto request result */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 923 | switch (srb->sense_buf[2]) { |
| 924 | case 0x01: |
| 925 | /* Recovered Error */ |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 926 | return USB_STOR_TRANSPORT_GOOD; |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 927 | break; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 928 | case 0x02: |
| 929 | /* Not Ready */ |
| 930 | if (notready++ > USB_TRANSPORT_NOT_READY_RETRY) { |
| 931 | printf("cmd 0x%02X returned 0x%02X 0x%02X 0x%02X" |
| 932 | " 0x%02X (NOT READY)\n", srb->cmd[0], |
| 933 | srb->sense_buf[0], srb->sense_buf[2], |
| 934 | srb->sense_buf[12], srb->sense_buf[13]); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 935 | return USB_STOR_TRANSPORT_FAILED; |
| 936 | } else { |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 937 | mdelay(100); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 938 | goto do_retry; |
| 939 | } |
| 940 | break; |
| 941 | default: |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 942 | if (retry++ > USB_TRANSPORT_UNKNOWN_RETRY) { |
| 943 | printf("cmd 0x%02X returned 0x%02X 0x%02X 0x%02X" |
| 944 | " 0x%02X\n", srb->cmd[0], srb->sense_buf[0], |
| 945 | srb->sense_buf[2], srb->sense_buf[12], |
| 946 | srb->sense_buf[13]); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 947 | return USB_STOR_TRANSPORT_FAILED; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 948 | } else |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 949 | goto do_retry; |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 950 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 951 | } |
| 952 | return USB_STOR_TRANSPORT_FAILED; |
| 953 | } |
| 954 | |
Bin Meng | 9f44711 | 2017-09-07 06:13:21 -0700 | [diff] [blame] | 955 | static void usb_stor_set_max_xfer_blk(struct usb_device *udev, |
| 956 | struct us_data *us) |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 957 | { |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 958 | /* |
Marek Vasut | cc93ffd | 2019-09-16 00:16:25 +0200 | [diff] [blame] | 959 | * Limit the total size of a transfer to 120 KB. |
| 960 | * |
| 961 | * Some devices are known to choke with anything larger. It seems like |
| 962 | * the problem stems from the fact that original IDE controllers had |
| 963 | * only an 8-bit register to hold the number of sectors in one transfer |
| 964 | * and even those couldn't handle a full 256 sectors. |
| 965 | * |
| 966 | * Because we want to make sure we interoperate with as many devices as |
| 967 | * possible, we will maintain a 240 sector transfer size limit for USB |
| 968 | * Mass Storage devices. |
| 969 | * |
| 970 | * Tests show that other operating have similar limits with Microsoft |
| 971 | * Windows 7 limiting transfers to 128 sectors for both USB2 and USB3 |
| 972 | * and Apple Mac OS X 10.11 limiting transfers to 256 sectors for USB2 |
| 973 | * and 2048 for USB3 devices. |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 974 | */ |
Marek Vasut | cc93ffd | 2019-09-16 00:16:25 +0200 | [diff] [blame] | 975 | unsigned short blk = 240; |
| 976 | |
| 977 | #if CONFIG_IS_ENABLED(DM_USB) |
| 978 | size_t size; |
| 979 | int ret; |
| 980 | |
Bin Meng | 9f44711 | 2017-09-07 06:13:21 -0700 | [diff] [blame] | 981 | ret = usb_get_max_xfer_size(udev, (size_t *)&size); |
Marek Vasut | cc93ffd | 2019-09-16 00:16:25 +0200 | [diff] [blame] | 982 | if ((ret >= 0) && (size < blk * 512)) |
Bin Meng | 9f44711 | 2017-09-07 06:13:21 -0700 | [diff] [blame] | 983 | blk = size / 512; |
Bin Meng | 9f44711 | 2017-09-07 06:13:21 -0700 | [diff] [blame] | 984 | #endif |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 985 | |
| 986 | us->max_xfer_blk = blk; |
| 987 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 988 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 989 | static int usb_inquiry(struct scsi_cmd *srb, struct us_data *ss) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 990 | { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 991 | int retry, i; |
| 992 | retry = 5; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 993 | do { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 994 | memset(&srb->cmd[0], 0, 12); |
| 995 | srb->cmd[0] = SCSI_INQUIRY; |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 996 | srb->cmd[1] = srb->lun << 5; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 997 | srb->cmd[4] = 36; |
| 998 | srb->datalen = 36; |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 999 | srb->cmdlen = ss->cmd12 ? 12 : 6; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1000 | i = ss->transport(srb, ss); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1001 | debug("inquiry returns %d\n", i); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1002 | if (i == 0) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1003 | break; |
Kim B. Heino | 3d42b8a | 2010-03-12 10:07:00 +0200 | [diff] [blame] | 1004 | } while (--retry); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 1005 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1006 | if (!retry) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1007 | printf("error in inquiry\n"); |
| 1008 | return -1; |
| 1009 | } |
| 1010 | return 0; |
| 1011 | } |
| 1012 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 1013 | static int usb_request_sense(struct scsi_cmd *srb, struct us_data *ss) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1014 | { |
| 1015 | char *ptr; |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1016 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1017 | ptr = (char *)srb->pdata; |
| 1018 | memset(&srb->cmd[0], 0, 12); |
| 1019 | srb->cmd[0] = SCSI_REQ_SENSE; |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 1020 | srb->cmd[1] = srb->lun << 5; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1021 | srb->cmd[4] = 18; |
| 1022 | srb->datalen = 18; |
Wolfgang Denk | dc770c7 | 2008-07-14 15:19:07 +0200 | [diff] [blame] | 1023 | srb->pdata = &srb->sense_buf[0]; |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 1024 | srb->cmdlen = ss->cmd12 ? 12 : 6; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1025 | ss->transport(srb, ss); |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1026 | debug("Request Sense returned %02X %02X %02X\n", |
| 1027 | srb->sense_buf[2], srb->sense_buf[12], |
| 1028 | srb->sense_buf[13]); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1029 | srb->pdata = (uchar *)ptr; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1030 | return 0; |
| 1031 | } |
| 1032 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 1033 | static int usb_test_unit_ready(struct scsi_cmd *srb, struct us_data *ss) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1034 | { |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1035 | int retries = 10; |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 1036 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1037 | do { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1038 | memset(&srb->cmd[0], 0, 12); |
| 1039 | srb->cmd[0] = SCSI_TST_U_RDY; |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 1040 | srb->cmd[1] = srb->lun << 5; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1041 | srb->datalen = 0; |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 1042 | srb->cmdlen = ss->cmd12 ? 12 : 6; |
Benoît Thébaudeau | fbf909a | 2012-08-10 18:27:11 +0200 | [diff] [blame] | 1043 | if (ss->transport(srb, ss) == USB_STOR_TRANSPORT_GOOD) { |
| 1044 | ss->flags |= USB_READY; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1045 | return 0; |
Benoît Thébaudeau | fbf909a | 2012-08-10 18:27:11 +0200 | [diff] [blame] | 1046 | } |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1047 | usb_request_sense(srb, ss); |
Vincent Palatin | 976b323 | 2012-12-12 17:55:29 -0800 | [diff] [blame] | 1048 | /* |
| 1049 | * Check the Key Code Qualifier, if it matches |
| 1050 | * "Not Ready - medium not present" |
| 1051 | * (the sense Key equals 0x2 and the ASC is 0x3a) |
| 1052 | * return immediately as the medium being absent won't change |
| 1053 | * unless there is a user action. |
| 1054 | */ |
| 1055 | if ((srb->sense_buf[2] == 0x02) && |
| 1056 | (srb->sense_buf[12] == 0x3a)) |
| 1057 | return -1; |
Mike Frysinger | 60ce19a | 2012-03-05 13:47:00 +0000 | [diff] [blame] | 1058 | mdelay(100); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1059 | } while (retries--); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 1060 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1061 | return -1; |
| 1062 | } |
| 1063 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 1064 | static int usb_read_capacity(struct scsi_cmd *srb, struct us_data *ss) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1065 | { |
| 1066 | int retry; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1067 | /* XXX retries */ |
| 1068 | retry = 3; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1069 | do { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1070 | memset(&srb->cmd[0], 0, 12); |
| 1071 | srb->cmd[0] = SCSI_RD_CAPAC; |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 1072 | srb->cmd[1] = srb->lun << 5; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1073 | srb->datalen = 8; |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 1074 | srb->cmdlen = ss->cmd12 ? 12 : 10; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1075 | if (ss->transport(srb, ss) == USB_STOR_TRANSPORT_GOOD) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1076 | return 0; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1077 | } while (retry--); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 1078 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1079 | return -1; |
| 1080 | } |
| 1081 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 1082 | static int usb_read_10(struct scsi_cmd *srb, struct us_data *ss, |
| 1083 | unsigned long start, unsigned short blocks) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1084 | { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1085 | memset(&srb->cmd[0], 0, 12); |
| 1086 | srb->cmd[0] = SCSI_READ10; |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 1087 | srb->cmd[1] = srb->lun << 5; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1088 | srb->cmd[2] = ((unsigned char) (start >> 24)) & 0xff; |
| 1089 | srb->cmd[3] = ((unsigned char) (start >> 16)) & 0xff; |
| 1090 | srb->cmd[4] = ((unsigned char) (start >> 8)) & 0xff; |
| 1091 | srb->cmd[5] = ((unsigned char) (start)) & 0xff; |
| 1092 | srb->cmd[7] = ((unsigned char) (blocks >> 8)) & 0xff; |
| 1093 | srb->cmd[8] = (unsigned char) blocks & 0xff; |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 1094 | srb->cmdlen = ss->cmd12 ? 12 : 10; |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1095 | debug("read10: start %lx blocks %x\n", start, blocks); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1096 | return ss->transport(srb, ss); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1097 | } |
| 1098 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 1099 | static int usb_write_10(struct scsi_cmd *srb, struct us_data *ss, |
| 1100 | unsigned long start, unsigned short blocks) |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1101 | { |
| 1102 | memset(&srb->cmd[0], 0, 12); |
| 1103 | srb->cmd[0] = SCSI_WRITE10; |
Ludovic Courtès | 134396c | 2010-10-05 22:04:26 +0200 | [diff] [blame] | 1104 | srb->cmd[1] = srb->lun << 5; |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1105 | srb->cmd[2] = ((unsigned char) (start >> 24)) & 0xff; |
| 1106 | srb->cmd[3] = ((unsigned char) (start >> 16)) & 0xff; |
| 1107 | srb->cmd[4] = ((unsigned char) (start >> 8)) & 0xff; |
| 1108 | srb->cmd[5] = ((unsigned char) (start)) & 0xff; |
| 1109 | srb->cmd[7] = ((unsigned char) (blocks >> 8)) & 0xff; |
| 1110 | srb->cmd[8] = (unsigned char) blocks & 0xff; |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 1111 | srb->cmdlen = ss->cmd12 ? 12 : 10; |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1112 | debug("write10: start %lx blocks %x\n", start, blocks); |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1113 | return ss->transport(srb, ss); |
| 1114 | } |
| 1115 | |
Bartlomiej Sieka | 9d47ad4 | 2006-08-22 10:38:18 +0200 | [diff] [blame] | 1116 | #ifdef CONFIG_USB_BIN_FIXUP |
| 1117 | /* |
| 1118 | * Some USB storage devices queried for SCSI identification data respond with |
| 1119 | * binary strings, which if output to the console freeze the terminal. The |
| 1120 | * workaround is to modify the vendor and product strings read from such |
| 1121 | * device with proper values (as reported by 'usb info'). |
| 1122 | * |
| 1123 | * Vendor and product length limits are taken from the definition of |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 1124 | * struct blk_desc in include/part.h. |
Bartlomiej Sieka | 9d47ad4 | 2006-08-22 10:38:18 +0200 | [diff] [blame] | 1125 | */ |
| 1126 | static void usb_bin_fixup(struct usb_device_descriptor descriptor, |
| 1127 | unsigned char vendor[], |
| 1128 | unsigned char product[]) { |
| 1129 | const unsigned char max_vendor_len = 40; |
| 1130 | const unsigned char max_product_len = 20; |
| 1131 | if (descriptor.idVendor == 0x0424 && descriptor.idProduct == 0x223a) { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1132 | strncpy((char *)vendor, "SMSC", max_vendor_len); |
| 1133 | strncpy((char *)product, "Flash Media Cntrller", |
| 1134 | max_product_len); |
Bartlomiej Sieka | 9d47ad4 | 2006-08-22 10:38:18 +0200 | [diff] [blame] | 1135 | } |
| 1136 | } |
| 1137 | #endif /* CONFIG_USB_BIN_FIXUP */ |
| 1138 | |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 1139 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1140 | static unsigned long usb_stor_read(struct udevice *dev, lbaint_t blknr, |
| 1141 | lbaint_t blkcnt, void *buffer) |
| 1142 | #else |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 1143 | static unsigned long usb_stor_read(struct blk_desc *block_dev, lbaint_t blknr, |
Stephen Warren | e73f296 | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 1144 | lbaint_t blkcnt, void *buffer) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1145 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1146 | { |
Gabe Black | 7d07768 | 2012-10-12 14:26:07 +0000 | [diff] [blame] | 1147 | lbaint_t start, blks; |
| 1148 | uintptr_t buf_addr; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1149 | unsigned short smallblks; |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1150 | struct usb_device *udev; |
Kyle Moffett | 6540db0 | 2011-12-21 07:08:12 +0000 | [diff] [blame] | 1151 | struct us_data *ss; |
Simon Glass | 5c3c91c | 2015-03-25 12:22:13 -0600 | [diff] [blame] | 1152 | int retry; |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 1153 | struct scsi_cmd *srb = &usb_ccb; |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 1154 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1155 | struct blk_desc *block_dev; |
| 1156 | #endif |
wdenk | 0e2874cb | 2004-03-02 14:05:39 +0000 | [diff] [blame] | 1157 | |
| 1158 | if (blkcnt == 0) |
| 1159 | return 0; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1160 | /* Setup device */ |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 1161 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 1162 | block_dev = dev_get_uclass_plat(dev); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1163 | udev = dev_get_parent_priv(dev_get_parent(dev)); |
| 1164 | debug("\nusb_read: udev %d\n", block_dev->devnum); |
| 1165 | #else |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1166 | debug("\nusb_read: udev %d\n", block_dev->devnum); |
| 1167 | udev = usb_dev_desc[block_dev->devnum].priv; |
| 1168 | if (!udev) { |
Simon Glass | 5c3c91c | 2015-03-25 12:22:13 -0600 | [diff] [blame] | 1169 | debug("%s: No device\n", __func__); |
| 1170 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1171 | } |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1172 | #endif |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1173 | ss = (struct us_data *)udev->privptr; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1174 | |
| 1175 | usb_disable_asynch(1); /* asynch transfer not allowed */ |
Marek Vasut | 118a903 | 2020-04-06 14:29:44 +0200 | [diff] [blame] | 1176 | usb_lock_async(udev, 1); |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1177 | srb->lun = block_dev->lun; |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1178 | buf_addr = (uintptr_t)buffer; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1179 | start = blknr; |
| 1180 | blks = blkcnt; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1181 | |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1182 | debug("\nusb_read: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n", |
| 1183 | block_dev->devnum, start, blks, buf_addr); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1184 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1185 | do { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1186 | /* XXX need some comment here */ |
| 1187 | retry = 2; |
| 1188 | srb->pdata = (unsigned char *)buf_addr; |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 1189 | if (blks > ss->max_xfer_blk) |
| 1190 | smallblks = ss->max_xfer_blk; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1191 | else |
| 1192 | smallblks = (unsigned short) blks; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1193 | retry_it: |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 1194 | if (smallblks == ss->max_xfer_blk) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1195 | usb_show_progress(); |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1196 | srb->datalen = block_dev->blksz * smallblks; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1197 | srb->pdata = (unsigned char *)buf_addr; |
Kyle Moffett | 6540db0 | 2011-12-21 07:08:12 +0000 | [diff] [blame] | 1198 | if (usb_read_10(srb, ss, start, smallblks)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1199 | debug("Read ERROR\n"); |
Marek Vasut | 765e91a | 2019-10-05 19:18:38 +0200 | [diff] [blame] | 1200 | ss->flags &= ~USB_READY; |
Kyle Moffett | 6540db0 | 2011-12-21 07:08:12 +0000 | [diff] [blame] | 1201 | usb_request_sense(srb, ss); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1202 | if (retry--) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1203 | goto retry_it; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1204 | blkcnt -= blks; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1205 | break; |
| 1206 | } |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1207 | start += smallblks; |
| 1208 | blks -= smallblks; |
| 1209 | buf_addr += srb->datalen; |
| 1210 | } while (blks != 0); |
| 1211 | |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1212 | debug("usb_read: end startblk " LBAF ", blccnt %x buffer %lx\n", |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1213 | start, smallblks, buf_addr); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1214 | |
Marek Vasut | 118a903 | 2020-04-06 14:29:44 +0200 | [diff] [blame] | 1215 | usb_lock_async(udev, 0); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1216 | usb_disable_asynch(0); /* asynch transfer allowed */ |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 1217 | if (blkcnt >= ss->max_xfer_blk) |
Wolfgang Denk | 660e9a4 | 2010-07-19 11:36:59 +0200 | [diff] [blame] | 1218 | debug("\n"); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1219 | return blkcnt; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1220 | } |
| 1221 | |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 1222 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1223 | static unsigned long usb_stor_write(struct udevice *dev, lbaint_t blknr, |
| 1224 | lbaint_t blkcnt, const void *buffer) |
| 1225 | #else |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 1226 | static unsigned long usb_stor_write(struct blk_desc *block_dev, lbaint_t blknr, |
Stephen Warren | e73f296 | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 1227 | lbaint_t blkcnt, const void *buffer) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1228 | #endif |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1229 | { |
Gabe Black | 7d07768 | 2012-10-12 14:26:07 +0000 | [diff] [blame] | 1230 | lbaint_t start, blks; |
| 1231 | uintptr_t buf_addr; |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1232 | unsigned short smallblks; |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1233 | struct usb_device *udev; |
Kyle Moffett | 6540db0 | 2011-12-21 07:08:12 +0000 | [diff] [blame] | 1234 | struct us_data *ss; |
Simon Glass | 5c3c91c | 2015-03-25 12:22:13 -0600 | [diff] [blame] | 1235 | int retry; |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 1236 | struct scsi_cmd *srb = &usb_ccb; |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 1237 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1238 | struct blk_desc *block_dev; |
| 1239 | #endif |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1240 | |
| 1241 | if (blkcnt == 0) |
| 1242 | return 0; |
| 1243 | |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1244 | /* Setup device */ |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 1245 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 1246 | block_dev = dev_get_uclass_plat(dev); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1247 | udev = dev_get_parent_priv(dev_get_parent(dev)); |
| 1248 | debug("\nusb_read: udev %d\n", block_dev->devnum); |
| 1249 | #else |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1250 | debug("\nusb_read: udev %d\n", block_dev->devnum); |
| 1251 | udev = usb_dev_desc[block_dev->devnum].priv; |
| 1252 | if (!udev) { |
| 1253 | debug("%s: No device\n", __func__); |
Simon Glass | 5c3c91c | 2015-03-25 12:22:13 -0600 | [diff] [blame] | 1254 | return 0; |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1255 | } |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1256 | #endif |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1257 | ss = (struct us_data *)udev->privptr; |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1258 | |
| 1259 | usb_disable_asynch(1); /* asynch transfer not allowed */ |
Marek Vasut | 118a903 | 2020-04-06 14:29:44 +0200 | [diff] [blame] | 1260 | usb_lock_async(udev, 1); |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1261 | |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1262 | srb->lun = block_dev->lun; |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1263 | buf_addr = (uintptr_t)buffer; |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1264 | start = blknr; |
| 1265 | blks = blkcnt; |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1266 | |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1267 | debug("\nusb_write: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n", |
| 1268 | block_dev->devnum, start, blks, buf_addr); |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1269 | |
| 1270 | do { |
| 1271 | /* If write fails retry for max retry count else |
| 1272 | * return with number of blocks written successfully. |
| 1273 | */ |
| 1274 | retry = 2; |
| 1275 | srb->pdata = (unsigned char *)buf_addr; |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 1276 | if (blks > ss->max_xfer_blk) |
| 1277 | smallblks = ss->max_xfer_blk; |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1278 | else |
| 1279 | smallblks = (unsigned short) blks; |
| 1280 | retry_it: |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 1281 | if (smallblks == ss->max_xfer_blk) |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1282 | usb_show_progress(); |
Simon Glass | 99e598e | 2016-02-29 15:25:54 -0700 | [diff] [blame] | 1283 | srb->datalen = block_dev->blksz * smallblks; |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1284 | srb->pdata = (unsigned char *)buf_addr; |
Kyle Moffett | 6540db0 | 2011-12-21 07:08:12 +0000 | [diff] [blame] | 1285 | if (usb_write_10(srb, ss, start, smallblks)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1286 | debug("Write ERROR\n"); |
Marek Vasut | 765e91a | 2019-10-05 19:18:38 +0200 | [diff] [blame] | 1287 | ss->flags &= ~USB_READY; |
Kyle Moffett | 6540db0 | 2011-12-21 07:08:12 +0000 | [diff] [blame] | 1288 | usb_request_sense(srb, ss); |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1289 | if (retry--) |
| 1290 | goto retry_it; |
| 1291 | blkcnt -= blks; |
| 1292 | break; |
| 1293 | } |
| 1294 | start += smallblks; |
| 1295 | blks -= smallblks; |
| 1296 | buf_addr += srb->datalen; |
| 1297 | } while (blks != 0); |
| 1298 | |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1299 | debug("usb_write: end startblk " LBAF ", blccnt %x buffer %lx\n", |
| 1300 | start, smallblks, buf_addr); |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1301 | |
Marek Vasut | 118a903 | 2020-04-06 14:29:44 +0200 | [diff] [blame] | 1302 | usb_lock_async(udev, 0); |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1303 | usb_disable_asynch(0); /* asynch transfer allowed */ |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 1304 | if (blkcnt >= ss->max_xfer_blk) |
Wolfgang Denk | 660e9a4 | 2010-07-19 11:36:59 +0200 | [diff] [blame] | 1305 | debug("\n"); |
Mahavir Jain | d43a0b8 | 2009-11-03 12:22:10 +0530 | [diff] [blame] | 1306 | return blkcnt; |
| 1307 | |
| 1308 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1309 | |
| 1310 | /* Probe to see if a new device is actually a Storage device */ |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1311 | int usb_storage_probe(struct usb_device *dev, unsigned int ifnum, |
| 1312 | struct us_data *ss) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1313 | { |
Tom Rix | 83b9e1d | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1314 | struct usb_interface *iface; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1315 | int i; |
Vivek Gautam | 23cbd29 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 1316 | struct usb_endpoint_descriptor *ep_desc; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1317 | unsigned int flags = 0; |
| 1318 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1319 | /* let's examine the device now */ |
| 1320 | iface = &dev->config.if_desc[ifnum]; |
| 1321 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1322 | if (dev->descriptor.bDeviceClass != 0 || |
Tom Rix | 83b9e1d | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1323 | iface->desc.bInterfaceClass != USB_CLASS_MASS_STORAGE || |
| 1324 | iface->desc.bInterfaceSubClass < US_SC_MIN || |
| 1325 | iface->desc.bInterfaceSubClass > US_SC_MAX) { |
Simon Glass | 78330d6 | 2015-03-25 12:22:12 -0600 | [diff] [blame] | 1326 | debug("Not mass storage\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1327 | /* if it's not a mass storage, we go no further */ |
| 1328 | return 0; |
| 1329 | } |
| 1330 | |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1331 | memset(ss, 0, sizeof(struct us_data)); |
| 1332 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1333 | /* At this point, we know we've got a live one */ |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1334 | debug("\n\nUSB Mass Storage device detected\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1335 | |
| 1336 | /* Initialize the us_data structure with some useful info */ |
| 1337 | ss->flags = flags; |
| 1338 | ss->ifnum = ifnum; |
| 1339 | ss->pusb_dev = dev; |
| 1340 | ss->attention_done = 0; |
Tom Rini | d83b89d | 2015-10-11 07:26:27 -0400 | [diff] [blame] | 1341 | ss->subclass = iface->desc.bInterfaceSubClass; |
| 1342 | ss->protocol = iface->desc.bInterfaceProtocol; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1343 | |
| 1344 | /* set the handler pointers based on the protocol */ |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1345 | debug("Transport: "); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1346 | switch (ss->protocol) { |
| 1347 | case US_PR_CB: |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1348 | debug("Control/Bulk\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1349 | ss->transport = usb_stor_CB_transport; |
| 1350 | ss->transport_reset = usb_stor_CB_reset; |
| 1351 | break; |
| 1352 | |
| 1353 | case US_PR_CBI: |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1354 | debug("Control/Bulk/Interrupt\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1355 | ss->transport = usb_stor_CB_transport; |
| 1356 | ss->transport_reset = usb_stor_CB_reset; |
| 1357 | break; |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 1358 | case US_PR_BULK: |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1359 | debug("Bulk/Bulk/Bulk\n"); |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 1360 | ss->transport = usb_stor_BBB_transport; |
| 1361 | ss->transport_reset = usb_stor_BBB_reset; |
| 1362 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1363 | default: |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1364 | printf("USB Storage Transport unknown / not yet implemented\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1365 | return 0; |
| 1366 | break; |
| 1367 | } |
| 1368 | |
| 1369 | /* |
| 1370 | * We are expecting a minimum of 2 endpoints - in and out (bulk). |
| 1371 | * An optional interrupt is OK (necessary for CBI protocol). |
| 1372 | * We will ignore any others. |
| 1373 | */ |
Tom Rix | 83b9e1d | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1374 | for (i = 0; i < iface->desc.bNumEndpoints; i++) { |
Vivek Gautam | 23cbd29 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 1375 | ep_desc = &iface->ep_desc[i]; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1376 | /* is it an BULK endpoint? */ |
Vivek Gautam | 23cbd29 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 1377 | if ((ep_desc->bmAttributes & |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1378 | USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_BULK) { |
Vivek Gautam | 23cbd29 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 1379 | if (ep_desc->bEndpointAddress & USB_DIR_IN) |
| 1380 | ss->ep_in = ep_desc->bEndpointAddress & |
| 1381 | USB_ENDPOINT_NUMBER_MASK; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1382 | else |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1383 | ss->ep_out = |
Vivek Gautam | 23cbd29 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 1384 | ep_desc->bEndpointAddress & |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1385 | USB_ENDPOINT_NUMBER_MASK; |
| 1386 | } |
| 1387 | |
| 1388 | /* is it an interrupt endpoint? */ |
Vivek Gautam | 23cbd29 | 2013-04-12 16:34:34 +0530 | [diff] [blame] | 1389 | if ((ep_desc->bmAttributes & |
| 1390 | USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_INT) { |
| 1391 | ss->ep_int = ep_desc->bEndpointAddress & |
| 1392 | USB_ENDPOINT_NUMBER_MASK; |
| 1393 | ss->irqinterval = ep_desc->bInterval; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1394 | } |
| 1395 | } |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1396 | debug("Endpoints In %d Out %d Int %d\n", |
| 1397 | ss->ep_in, ss->ep_out, ss->ep_int); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1398 | |
| 1399 | /* Do some basic sanity checks, and bail if we find a problem */ |
Tom Rix | 83b9e1d | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 1400 | if (usb_set_interface(dev, iface->desc.bInterfaceNumber, 0) || |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1401 | !ss->ep_in || !ss->ep_out || |
| 1402 | (ss->protocol == US_PR_CBI && ss->ep_int == 0)) { |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1403 | debug("Problems with device\n"); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1404 | return 0; |
| 1405 | } |
| 1406 | /* set class specific stuff */ |
wdenk | de887eb | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 1407 | /* We only handle certain protocols. Currently, these are |
| 1408 | * the only ones. |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1409 | * The SFF8070 accepts the requests used in u-boot |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1410 | */ |
wdenk | 5f49575 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1411 | if (ss->subclass != US_SC_UFI && ss->subclass != US_SC_SCSI && |
| 1412 | ss->subclass != US_SC_8070) { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1413 | printf("Sorry, protocol %d not yet supported.\n", ss->subclass); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1414 | return 0; |
| 1415 | } |
Hector Martin | 7b3d10d | 2023-10-29 16:23:30 +0900 | [diff] [blame] | 1416 | |
| 1417 | /* UFI uses 12-byte commands (like RBC, unlike SCSI) */ |
| 1418 | if (ss->subclass == US_SC_UFI) |
| 1419 | ss->cmd12 = true; |
| 1420 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1421 | if (ss->ep_int) { |
| 1422 | /* we had found an interrupt endpoint, prepare irq pipe |
| 1423 | * set up the IRQ pipe and handler |
| 1424 | */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1425 | ss->irqinterval = (ss->irqinterval > 0) ? ss->irqinterval : 255; |
| 1426 | ss->irqpipe = usb_rcvintpipe(ss->pusb_dev, ss->ep_int); |
| 1427 | ss->irqmaxp = usb_maxpacket(dev, ss->irqpipe); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1428 | dev->irq_handle = usb_stor_irq; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1429 | } |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 1430 | |
| 1431 | /* Set the maximum transfer size per host controller setting */ |
Bin Meng | 9f44711 | 2017-09-07 06:13:21 -0700 | [diff] [blame] | 1432 | usb_stor_set_max_xfer_blk(dev, ss); |
Bin Meng | f6e373e | 2017-09-07 06:13:20 -0700 | [diff] [blame] | 1433 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1434 | dev->privptr = (void *)ss; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1435 | return 1; |
| 1436 | } |
| 1437 | |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1438 | int usb_stor_get_info(struct usb_device *dev, struct us_data *ss, |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 1439 | struct blk_desc *dev_desc) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1440 | { |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1441 | unsigned char perq, modi; |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1442 | ALLOC_CACHE_ALIGN_BUFFER(u32, cap, 2); |
| 1443 | ALLOC_CACHE_ALIGN_BUFFER(u8, usb_stor_buf, 36); |
| 1444 | u32 capacity, blksz; |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 1445 | struct scsi_cmd *pccb = &usb_ccb; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1446 | |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1447 | pccb->pdata = usb_stor_buf; |
| 1448 | |
| 1449 | dev_desc->target = dev->devnum; |
| 1450 | pccb->lun = dev_desc->lun; |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1451 | debug(" address %d\n", dev_desc->target); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1452 | |
Simon Glass | 78330d6 | 2015-03-25 12:22:12 -0600 | [diff] [blame] | 1453 | if (usb_inquiry(pccb, ss)) { |
| 1454 | debug("%s: usb_inquiry() failed\n", __func__); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1455 | return -1; |
Simon Glass | 78330d6 | 2015-03-25 12:22:12 -0600 | [diff] [blame] | 1456 | } |
Wolfgang Denk | d06ce5d | 2005-08-02 17:06:17 +0200 | [diff] [blame] | 1457 | |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1458 | perq = usb_stor_buf[0]; |
| 1459 | modi = usb_stor_buf[1]; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1460 | |
Soeren Moch | e482800 | 2014-11-08 07:02:14 +0100 | [diff] [blame] | 1461 | /* |
| 1462 | * Skip unknown devices (0x1f) and enclosure service devices (0x0d), |
| 1463 | * they would not respond to test_unit_ready . |
| 1464 | */ |
| 1465 | if (((perq & 0x1f) == 0x1f) || ((perq & 0x1f) == 0x0d)) { |
Simon Glass | 78330d6 | 2015-03-25 12:22:12 -0600 | [diff] [blame] | 1466 | debug("%s: unknown/unsupported device\n", __func__); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1467 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1468 | } |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1469 | if ((modi&0x80) == 0x80) { |
| 1470 | /* drive is removable */ |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1471 | dev_desc->removable = 1; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1472 | } |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1473 | memcpy(dev_desc->vendor, (const void *)&usb_stor_buf[8], 8); |
| 1474 | memcpy(dev_desc->product, (const void *)&usb_stor_buf[16], 16); |
| 1475 | memcpy(dev_desc->revision, (const void *)&usb_stor_buf[32], 4); |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1476 | dev_desc->vendor[8] = 0; |
| 1477 | dev_desc->product[16] = 0; |
| 1478 | dev_desc->revision[4] = 0; |
Bartlomiej Sieka | 9d47ad4 | 2006-08-22 10:38:18 +0200 | [diff] [blame] | 1479 | #ifdef CONFIG_USB_BIN_FIXUP |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1480 | usb_bin_fixup(dev->descriptor, (uchar *)dev_desc->vendor, |
| 1481 | (uchar *)dev_desc->product); |
Bartlomiej Sieka | 9d47ad4 | 2006-08-22 10:38:18 +0200 | [diff] [blame] | 1482 | #endif /* CONFIG_USB_BIN_FIXUP */ |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1483 | debug("ISO Vers %X, Response Data %X\n", usb_stor_buf[2], |
| 1484 | usb_stor_buf[3]); |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1485 | if (usb_test_unit_ready(pccb, ss)) { |
| 1486 | printf("Device NOT ready\n" |
| 1487 | " Request Sense returned %02X %02X %02X\n", |
| 1488 | pccb->sense_buf[2], pccb->sense_buf[12], |
| 1489 | pccb->sense_buf[13]); |
Troy Kisky | 17e4526 | 2017-04-10 18:23:11 -0700 | [diff] [blame] | 1490 | if (dev_desc->removable == 1) |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1491 | dev_desc->type = perq; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1492 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1493 | } |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1494 | pccb->pdata = (unsigned char *)cap; |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1495 | memset(pccb->pdata, 0, 8); |
| 1496 | if (usb_read_capacity(pccb, ss) != 0) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1497 | printf("READ_CAP ERROR\n"); |
Marek Vasut | 765e91a | 2019-10-05 19:18:38 +0200 | [diff] [blame] | 1498 | ss->flags &= ~USB_READY; |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1499 | cap[0] = 2880; |
| 1500 | cap[1] = 0x200; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1501 | } |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1502 | debug("Read Capacity returns: 0x%08x, 0x%08x\n", cap[0], cap[1]); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1503 | #if 0 |
Michael Trimarchi | 956a435 | 2008-12-10 15:52:06 +0100 | [diff] [blame] | 1504 | if (cap[0] > (0x200000 * 10)) /* greater than 10 GByte */ |
| 1505 | cap[0] >>= 16; |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1506 | |
Christian Eggers | 4e0e8d0 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 1507 | cap[0] = cpu_to_be32(cap[0]); |
| 1508 | cap[1] = cpu_to_be32(cap[1]); |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1509 | #endif |
| 1510 | |
| 1511 | capacity = be32_to_cpu(cap[0]) + 1; |
| 1512 | blksz = be32_to_cpu(cap[1]); |
Christian Eggers | 4e0e8d0 | 2008-05-21 22:12:00 +0200 | [diff] [blame] | 1513 | |
Sergey Temerkhanov | 57236d5 | 2015-04-01 17:18:46 +0300 | [diff] [blame] | 1514 | debug("Capacity = 0x%08x, blocksz = 0x%08x\n", capacity, blksz); |
| 1515 | dev_desc->lba = capacity; |
| 1516 | dev_desc->blksz = blksz; |
Egbert Eich | 2eec2ab | 2013-04-09 21:11:56 +0000 | [diff] [blame] | 1517 | dev_desc->log2blksz = LOG2(dev_desc->blksz); |
Wolfgang Denk | c7a4f7d | 2005-07-21 11:57:57 +0200 | [diff] [blame] | 1518 | dev_desc->type = perq; |
Vivek Gautam | f94c95d | 2013-04-12 16:34:33 +0530 | [diff] [blame] | 1519 | debug(" address %d\n", dev_desc->target); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1520 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1521 | return 1; |
| 1522 | } |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 1523 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 1524 | #if CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 1525 | |
| 1526 | static int usb_mass_storage_probe(struct udevice *dev) |
| 1527 | { |
Simon Glass | de44acf | 2015-09-28 23:32:01 -0600 | [diff] [blame] | 1528 | struct usb_device *udev = dev_get_parent_priv(dev); |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 1529 | int ret; |
| 1530 | |
| 1531 | usb_disable_asynch(1); /* asynch transfer not allowed */ |
| 1532 | ret = usb_stor_probe_device(udev); |
| 1533 | usb_disable_asynch(0); /* asynch transfer allowed */ |
| 1534 | |
| 1535 | return ret; |
| 1536 | } |
| 1537 | |
| 1538 | static const struct udevice_id usb_mass_storage_ids[] = { |
| 1539 | { .compatible = "usb-mass-storage" }, |
| 1540 | { } |
| 1541 | }; |
| 1542 | |
| 1543 | U_BOOT_DRIVER(usb_mass_storage) = { |
| 1544 | .name = "usb_mass_storage", |
| 1545 | .id = UCLASS_MASS_STORAGE, |
| 1546 | .of_match = usb_mass_storage_ids, |
| 1547 | .probe = usb_mass_storage_probe, |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 1548 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 1549 | .plat_auto = sizeof(struct us_data), |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1550 | #endif |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 1551 | }; |
| 1552 | |
| 1553 | UCLASS_DRIVER(usb_mass_storage) = { |
| 1554 | .id = UCLASS_MASS_STORAGE, |
| 1555 | .name = "usb_mass_storage", |
| 1556 | }; |
| 1557 | |
| 1558 | static const struct usb_device_id mass_storage_id_table[] = { |
| 1559 | { |
| 1560 | .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS, |
| 1561 | .bInterfaceClass = USB_CLASS_MASS_STORAGE |
| 1562 | }, |
| 1563 | { } /* Terminating entry */ |
| 1564 | }; |
| 1565 | |
Simon Glass | 46952fb | 2015-07-06 16:47:51 -0600 | [diff] [blame] | 1566 | U_BOOT_USB_DEVICE(usb_mass_storage, mass_storage_id_table); |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1567 | #endif |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 1568 | |
Sven Schwermer | c58ff20 | 2018-11-21 08:43:57 +0100 | [diff] [blame] | 1569 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01f5be9 | 2016-02-29 15:25:58 -0700 | [diff] [blame] | 1570 | static const struct blk_ops usb_storage_ops = { |
| 1571 | .read = usb_stor_read, |
| 1572 | .write = usb_stor_write, |
| 1573 | }; |
| 1574 | |
| 1575 | U_BOOT_DRIVER(usb_storage_blk) = { |
| 1576 | .name = "usb_storage_blk", |
| 1577 | .id = UCLASS_BLK, |
| 1578 | .ops = &usb_storage_ops, |
| 1579 | }; |
Simon Glass | d317141 | 2016-05-01 11:36:06 -0600 | [diff] [blame] | 1580 | #else |
| 1581 | U_BOOT_LEGACY_BLK(usb) = { |
Simon Glass | fada3f9 | 2022-09-17 09:00:09 -0600 | [diff] [blame] | 1582 | .uclass_idname = "usb", |
| 1583 | .uclass_id = UCLASS_USB, |
Simon Glass | d317141 | 2016-05-01 11:36:06 -0600 | [diff] [blame] | 1584 | .max_devs = USB_MAX_STOR_DEV, |
| 1585 | .desc = usb_dev_desc, |
| 1586 | }; |
Simon Glass | ac9774e | 2015-03-25 12:22:16 -0600 | [diff] [blame] | 1587 | #endif |