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