]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/usb/storage/scsiglue.c
[PATCH] usbcore: fixes for hub_port_resume
[mirror_ubuntu-jammy-kernel.git] / drivers / usb / storage / scsiglue.c
CommitLineData
1da177e4
LT
1/* Driver for USB Mass Storage compliant devices
2 * SCSI layer glue code
3 *
4 * $Id: scsiglue.c,v 1.26 2002/04/22 03:39:43 mdharm Exp $
5 *
6 * Current development and maintenance by:
7 * (c) 1999-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
8 *
9 * Developed with the assistance of:
10 * (c) 2000 David L. Brown, Jr. (usb-storage@davidb.org)
11 * (c) 2000 Stephen J. Gowdy (SGowdy@lbl.gov)
12 *
13 * Initial work by:
14 * (c) 1999 Michael Gee (michael@linuxspecific.com)
15 *
16 * This driver is based on the 'USB Mass Storage Class' document. This
17 * describes in detail the protocol used to communicate with such
18 * devices. Clearly, the designers had SCSI and ATAPI commands in
19 * mind when they created this document. The commands are all very
20 * similar to commands in the SCSI-II and ATAPI specifications.
21 *
22 * It is important to note that in a number of cases this class
23 * exhibits class-specific exemptions from the USB specification.
24 * Notably the usage of NAK, STALL and ACK differs from the norm, in
25 * that they are used to communicate wait, failed and OK on commands.
26 *
27 * Also, for certain devices, the interrupt endpoint is used to convey
28 * status of a command.
29 *
30 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
31 * information about this driver.
32 *
33 * This program is free software; you can redistribute it and/or modify it
34 * under the terms of the GNU General Public License as published by the
35 * Free Software Foundation; either version 2, or (at your option) any
36 * later version.
37 *
38 * This program is distributed in the hope that it will be useful, but
39 * WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41 * General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License along
44 * with this program; if not, write to the Free Software Foundation, Inc.,
45 * 675 Mass Ave, Cambridge, MA 02139, USA.
46 */
47
48#include <linux/slab.h>
49#include <linux/module.h>
4186ecf8 50#include <linux/mutex.h>
1da177e4
LT
51
52#include <scsi/scsi.h>
53#include <scsi/scsi_cmnd.h>
54#include <scsi/scsi_devinfo.h>
55#include <scsi/scsi_device.h>
56#include <scsi/scsi_eh.h>
57
58#include "usb.h"
59#include "scsiglue.h"
60#include "debug.h"
61#include "transport.h"
62#include "protocol.h"
63
64/***********************************************************************
65 * Host functions
66 ***********************************************************************/
67
68static const char* host_info(struct Scsi_Host *host)
69{
70 return "SCSI emulation for USB Mass Storage devices";
71}
72
73static int slave_alloc (struct scsi_device *sdev)
74{
75 /*
76 * Set the INQUIRY transfer length to 36. We don't use any of
77 * the extra data and many devices choke if asked for more or
78 * less than 36 bytes.
79 */
80 sdev->inquiry_len = 36;
81 return 0;
82}
83
84static int slave_configure(struct scsi_device *sdev)
85{
86 struct us_data *us = host_to_us(sdev->host);
87
88 /* Scatter-gather buffers (all but the last) must have a length
89 * divisible by the bulk maxpacket size. Otherwise a data packet
90 * would end up being short, causing a premature end to the data
91 * transfer. Since high-speed bulk pipes have a maxpacket size
92 * of 512, we'll use that as the scsi device queue's DMA alignment
93 * mask. Guaranteeing proper alignment of the first buffer will
94 * have the desired effect because, except at the beginning and
95 * the end, scatter-gather buffers follow page boundaries. */
96 blk_queue_dma_alignment(sdev->request_queue, (512 - 1));
97
98 /* Set the SCSI level to at least 2. We'll leave it at 3 if that's
99 * what is originally reported. We need this to avoid confusing
100 * the SCSI layer with devices that report 0 or 1, but need 10-byte
101 * commands (ala ATAPI devices behind certain bridges, or devices
102 * which simply have broken INQUIRY data).
103 *
104 * NOTE: This means /dev/sg programs (ala cdrecord) will get the
105 * actual information. This seems to be the preference for
106 * programs like that.
107 *
108 * NOTE: This also means that /proc/scsi/scsi and sysfs may report
109 * the actual value or the modified one, depending on where the
110 * data comes from.
111 */
112 if (sdev->scsi_level < SCSI_2)
28120be5 113 sdev->scsi_level = sdev->sdev_target->scsi_level = SCSI_2;
1da177e4
LT
114
115 /* According to the technical support people at Genesys Logic,
116 * devices using their chips have problems transferring more than
117 * 32 KB at a time. In practice people have found that 64 KB
118 * works okay and that's what Windows does. But we'll be
119 * conservative; people can always use the sysfs interface to
120 * increase max_sectors. */
121 if (le16_to_cpu(us->pusb_dev->descriptor.idVendor) == USB_VENDOR_ID_GENESYS &&
122 sdev->request_queue->max_sectors > 64)
123 blk_queue_max_sectors(sdev->request_queue, 64);
124
125 /* We can't put these settings in slave_alloc() because that gets
126 * called before the device type is known. Consequently these
127 * settings can't be overridden via the scsi devinfo mechanism. */
128 if (sdev->type == TYPE_DISK) {
129
130 /* Disk-type devices use MODE SENSE(6) if the protocol
131 * (SubClass) is Transparent SCSI, otherwise they use
132 * MODE SENSE(10). */
133 if (us->subclass != US_SC_SCSI)
134 sdev->use_10_for_ms = 1;
135
136 /* Many disks only accept MODE SENSE transfer lengths of
137 * 192 bytes (that's what Windows uses). */
138 sdev->use_192_bytes_for_3f = 1;
139
140 /* Some devices don't like MODE SENSE with page=0x3f,
141 * which is the command used for checking if a device
142 * is write-protected. Now that we tell the sd driver
143 * to do a 192-byte transfer with this command the
144 * majority of devices work fine, but a few still can't
145 * handle it. The sd driver will simply assume those
146 * devices are write-enabled. */
147 if (us->flags & US_FL_NO_WP_DETECT)
148 sdev->skip_ms_page_3f = 1;
149
150 /* A number of devices have problems with MODE SENSE for
151 * page x08, so we will skip it. */
152 sdev->skip_ms_page_8 = 1;
153
154 /* Some disks return the total number of blocks in response
155 * to READ CAPACITY rather than the highest block number.
156 * If this device makes that mistake, tell the sd driver. */
157 if (us->flags & US_FL_FIX_CAPACITY)
158 sdev->fix_capacity = 1;
86dbde9c 159
a4e62832
MD
160 /* Some devices report a SCSI revision level above 2 but are
161 * unable to handle the REPORT LUNS command (for which
162 * support is mandatory at level 3). Since we already have
163 * a Get-Max-LUN request, we won't lose much by setting the
164 * revision level down to 2. The only devices that would be
165 * affected are those with sparse LUNs. */
28120be5 166 sdev->scsi_level = sdev->sdev_target->scsi_level = SCSI_2;
a4e62832 167
86dbde9c
MD
168 /* USB-IDE bridges tend to report SK = 0x04 (Non-recoverable
169 * Hardware Error) when any low-level error occurs,
170 * recoverable or not. Setting this flag tells the SCSI
171 * midlayer to retry such commands, which frequently will
172 * succeed and fix the error. The worst this can lead to
173 * is an occasional series of retries that will all fail. */
174 sdev->retry_hwerror = 1;
175
1da177e4
LT
176 } else {
177
178 /* Non-disk-type devices don't need to blacklist any pages
179 * or to force 192-byte transfer lengths for MODE SENSE.
180 * But they do need to use MODE SENSE(10). */
181 sdev->use_10_for_ms = 1;
182 }
183
184 /* Some devices choke when they receive a PREVENT-ALLOW MEDIUM
185 * REMOVAL command, so suppress those commands. */
186 if (us->flags & US_FL_NOT_LOCKABLE)
187 sdev->lockable = 0;
188
189 /* this is to satisfy the compiler, tho I don't think the
190 * return code is ever checked anywhere. */
191 return 0;
192}
193
194/* queue a command */
195/* This is always called with scsi_lock(host) held */
196static int queuecommand(struct scsi_cmnd *srb,
197 void (*done)(struct scsi_cmnd *))
198{
199 struct us_data *us = host_to_us(srb->device->host);
200
201 US_DEBUGP("%s called\n", __FUNCTION__);
202
203 /* check for state-transition errors */
204 if (us->srb != NULL) {
205 printk(KERN_ERR USB_STORAGE "Error in %s: us->srb = %p\n",
206 __FUNCTION__, us->srb);
207 return SCSI_MLQUEUE_HOST_BUSY;
208 }
209
210 /* fail the command if we are disconnecting */
211 if (test_bit(US_FLIDX_DISCONNECTING, &us->flags)) {
212 US_DEBUGP("Fail command during disconnect\n");
213 srb->result = DID_NO_CONNECT << 16;
214 done(srb);
215 return 0;
216 }
217
218 /* enqueue the command and wake up the control thread */
219 srb->scsi_done = done;
220 us->srb = srb;
221 up(&(us->sema));
222
223 return 0;
224}
225
226/***********************************************************************
227 * Error handling functions
228 ***********************************************************************/
229
230/* Command timeout and abort */
1da177e4
LT
231static int command_abort(struct scsi_cmnd *srb)
232{
233 struct us_data *us = host_to_us(srb->device->host);
234
235 US_DEBUGP("%s called\n", __FUNCTION__);
236
226173ed
MD
237 /* us->srb together with the TIMED_OUT, RESETTING, and ABORTING
238 * bits are protected by the host lock. */
239 scsi_lock(us_to_host(us));
240
1da177e4
LT
241 /* Is this command still active? */
242 if (us->srb != srb) {
226173ed 243 scsi_unlock(us_to_host(us));
1da177e4
LT
244 US_DEBUGP ("-- nothing to abort\n");
245 return FAILED;
246 }
247
248 /* Set the TIMED_OUT bit. Also set the ABORTING bit, but only if
249 * a device reset isn't already in progress (to avoid interfering
226173ed
MD
250 * with the reset). Note that we must retain the host lock while
251 * calling usb_stor_stop_transport(); otherwise it might interfere
252 * with an auto-reset that begins as soon as we release the lock. */
1da177e4
LT
253 set_bit(US_FLIDX_TIMED_OUT, &us->flags);
254 if (!test_bit(US_FLIDX_RESETTING, &us->flags)) {
255 set_bit(US_FLIDX_ABORTING, &us->flags);
256 usb_stor_stop_transport(us);
257 }
226173ed 258 scsi_unlock(us_to_host(us));
1da177e4
LT
259
260 /* Wait for the aborted command to finish */
261 wait_for_completion(&us->notify);
1da177e4
LT
262 return SUCCESS;
263}
264
265/* This invokes the transport reset mechanism to reset the state of the
266 * device */
1da177e4
LT
267static int device_reset(struct scsi_cmnd *srb)
268{
269 struct us_data *us = host_to_us(srb->device->host);
270 int result;
271
272 US_DEBUGP("%s called\n", __FUNCTION__);
273
1da177e4 274 /* lock the device pointers and do the reset */
4186ecf8 275 mutex_lock(&(us->dev_mutex));
4d07ef76 276 result = us->transport_reset(us);
4186ecf8 277 mutex_unlock(&us->dev_mutex);
1da177e4 278
4d07ef76 279 return result < 0 ? FAILED : SUCCESS;
1da177e4
LT
280}
281
4d07ef76 282/* Simulate a SCSI bus reset by resetting the device's USB port. */
1da177e4
LT
283static int bus_reset(struct scsi_cmnd *srb)
284{
285 struct us_data *us = host_to_us(srb->device->host);
4d07ef76 286 int result;
1da177e4
LT
287
288 US_DEBUGP("%s called\n", __FUNCTION__);
4d07ef76 289 result = usb_stor_port_reset(us);
1da177e4
LT
290 return result < 0 ? FAILED : SUCCESS;
291}
292
293/* Report a driver-initiated device reset to the SCSI layer.
294 * Calling this for a SCSI-initiated reset is unnecessary but harmless.
295 * The caller must own the SCSI host lock. */
296void usb_stor_report_device_reset(struct us_data *us)
297{
298 int i;
299 struct Scsi_Host *host = us_to_host(us);
300
301 scsi_report_device_reset(host, 0, 0);
302 if (us->flags & US_FL_SCM_MULT_TARG) {
303 for (i = 1; i < host->max_id; ++i)
304 scsi_report_device_reset(host, 0, i);
305 }
306}
307
4d07ef76
MD
308/* Report a driver-initiated bus reset to the SCSI layer.
309 * Calling this for a SCSI-initiated reset is unnecessary but harmless.
310 * The caller must own the SCSI host lock. */
311void usb_stor_report_bus_reset(struct us_data *us)
312{
313 scsi_report_bus_reset(us_to_host(us), 0);
314}
315
1da177e4
LT
316/***********************************************************************
317 * /proc/scsi/ functions
318 ***********************************************************************/
319
320/* we use this macro to help us write into the buffer */
321#undef SPRINTF
322#define SPRINTF(args...) \
323 do { if (pos < buffer+length) pos += sprintf(pos, ## args); } while (0)
324
325static int proc_info (struct Scsi_Host *host, char *buffer,
326 char **start, off_t offset, int length, int inout)
327{
328 struct us_data *us = host_to_us(host);
329 char *pos = buffer;
330 const char *string;
331
332 /* if someone is sending us data, just throw it away */
333 if (inout)
334 return length;
335
336 /* print the controller name */
337 SPRINTF(" Host scsi%d: usb-storage\n", host->host_no);
338
339 /* print product, vendor, and serial number strings */
340 if (us->pusb_dev->manufacturer)
341 string = us->pusb_dev->manufacturer;
342 else if (us->unusual_dev->vendorName)
343 string = us->unusual_dev->vendorName;
344 else
345 string = "Unknown";
346 SPRINTF(" Vendor: %s\n", string);
347 if (us->pusb_dev->product)
348 string = us->pusb_dev->product;
349 else if (us->unusual_dev->productName)
350 string = us->unusual_dev->productName;
351 else
352 string = "Unknown";
353 SPRINTF(" Product: %s\n", string);
354 if (us->pusb_dev->serial)
355 string = us->pusb_dev->serial;
356 else
357 string = "None";
358 SPRINTF("Serial Number: %s\n", string);
359
360 /* show the protocol and transport */
361 SPRINTF(" Protocol: %s\n", us->protocol_name);
362 SPRINTF(" Transport: %s\n", us->transport_name);
363
364 /* show the device flags */
365 if (pos < buffer + length) {
366 pos += sprintf(pos, " Quirks:");
367
368#define US_FLAG(name, value) \
369 if (us->flags & value) pos += sprintf(pos, " " #name);
370US_DO_ALL_FLAGS
371#undef US_FLAG
372
373 *(pos++) = '\n';
374 }
375
376 /*
377 * Calculate start of next buffer, and return value.
378 */
379 *start = buffer + offset;
380
381 if ((pos - buffer) < offset)
382 return (0);
383 else if ((pos - buffer - offset) < length)
384 return (pos - buffer - offset);
385 else
386 return (length);
387}
388
389/***********************************************************************
390 * Sysfs interface
391 ***********************************************************************/
392
393/* Output routine for the sysfs max_sectors file */
060b8845 394static ssize_t show_max_sectors(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
395{
396 struct scsi_device *sdev = to_scsi_device(dev);
397
398 return sprintf(buf, "%u\n", sdev->request_queue->max_sectors);
399}
400
401/* Input routine for the sysfs max_sectors file */
060b8845 402static ssize_t store_max_sectors(struct device *dev, struct device_attribute *attr, const char *buf,
1da177e4
LT
403 size_t count)
404{
405 struct scsi_device *sdev = to_scsi_device(dev);
406 unsigned short ms;
407
408 if (sscanf(buf, "%hu", &ms) > 0 && ms <= SCSI_DEFAULT_MAX_SECTORS) {
409 blk_queue_max_sectors(sdev->request_queue, ms);
410 return strlen(buf);
411 }
412 return -EINVAL;
413}
414
415static DEVICE_ATTR(max_sectors, S_IRUGO | S_IWUSR, show_max_sectors,
416 store_max_sectors);
417
418static struct device_attribute *sysfs_device_attr_list[] = {
419 &dev_attr_max_sectors,
420 NULL,
421 };
422
423/*
424 * this defines our host template, with which we'll allocate hosts
425 */
426
427struct scsi_host_template usb_stor_host_template = {
428 /* basic userland interface stuff */
429 .name = "usb-storage",
430 .proc_name = "usb-storage",
431 .proc_info = proc_info,
432 .info = host_info,
433
434 /* command interface -- queued only */
435 .queuecommand = queuecommand,
436
437 /* error and abort handlers */
438 .eh_abort_handler = command_abort,
439 .eh_device_reset_handler = device_reset,
440 .eh_bus_reset_handler = bus_reset,
441
442 /* queue commands only, only one command per LUN */
443 .can_queue = 1,
444 .cmd_per_lun = 1,
445
446 /* unknown initiator id */
447 .this_id = -1,
448
449 .slave_alloc = slave_alloc,
450 .slave_configure = slave_configure,
451
452 /* lots of sg segments can be handled */
453 .sg_tablesize = SG_ALL,
454
455 /* limit the total size of a transfer to 120 KB */
456 .max_sectors = 240,
457
458 /* merge commands... this seems to help performance, but
459 * periodically someone should test to see which setting is more
460 * optimal.
461 */
462 .use_clustering = 1,
463
464 /* emulated HBA */
465 .emulated = 1,
466
467 /* we do our own delay after a device or bus reset */
468 .skip_settle_delay = 1,
469
470 /* sysfs device attributes */
471 .sdev_attrs = sysfs_device_attr_list,
472
473 /* module management */
474 .module = THIS_MODULE
475};
476
477/* To Report "Illegal Request: Invalid Field in CDB */
478unsigned char usb_stor_sense_invalidCDB[18] = {
479 [0] = 0x70, /* current error */
480 [2] = ILLEGAL_REQUEST, /* Illegal Request = 0x05 */
481 [7] = 0x0a, /* additional length */
482 [12] = 0x24 /* Invalid Field in CDB */
483};
484