This source file includes following definitions.
- host_info
- slave_alloc
- slave_configure
- target_alloc
- queuecommand_lck
- DEF_SCSI_QCMD
- device_reset
- bus_reset
- usb_stor_report_device_reset
- usb_stor_report_bus_reset
- write_info
- show_info
- max_sectors_show
- max_sectors_store
- usb_stor_host_template_init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 #include <linux/blkdev.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/module.h>
34 #include <linux/mutex.h>
35
36 #include <scsi/scsi.h>
37 #include <scsi/scsi_cmnd.h>
38 #include <scsi/scsi_devinfo.h>
39 #include <scsi/scsi_device.h>
40 #include <scsi/scsi_eh.h>
41
42 #include "usb.h"
43 #include <linux/usb/hcd.h>
44 #include "scsiglue.h"
45 #include "debug.h"
46 #include "transport.h"
47 #include "protocol.h"
48
49
50
51
52
53 #define VENDOR_ID_NOKIA 0x0421
54 #define VENDOR_ID_NIKON 0x04b0
55 #define VENDOR_ID_PENTAX 0x0a17
56 #define VENDOR_ID_MOTOROLA 0x22b8
57
58
59
60
61
62 static const char* host_info(struct Scsi_Host *host)
63 {
64 struct us_data *us = host_to_us(host);
65 return us->scsi_name;
66 }
67
68 static int slave_alloc (struct scsi_device *sdev)
69 {
70 struct us_data *us = host_to_us(sdev->host);
71
72
73
74
75
76
77 sdev->inquiry_len = 36;
78
79
80
81
82
83 blk_queue_update_dma_alignment(sdev->request_queue, (512 - 1));
84
85
86 if (us->protocol == USB_PR_BULK && us->max_lun > 0)
87 sdev->sdev_bflags |= BLIST_FORCELUN;
88
89 return 0;
90 }
91
92 static int slave_configure(struct scsi_device *sdev)
93 {
94 struct us_data *us = host_to_us(sdev->host);
95 struct device *dev = us->pusb_dev->bus->sysdev;
96
97
98
99
100
101
102 if (us->fflags & (US_FL_MAX_SECTORS_64 | US_FL_MAX_SECTORS_MIN)) {
103 unsigned int max_sectors = 64;
104
105 if (us->fflags & US_FL_MAX_SECTORS_MIN)
106 max_sectors = PAGE_SIZE >> 9;
107 if (queue_max_hw_sectors(sdev->request_queue) > max_sectors)
108 blk_queue_max_hw_sectors(sdev->request_queue,
109 max_sectors);
110 } else if (sdev->type == TYPE_TAPE) {
111
112
113
114
115
116 blk_queue_max_hw_sectors(sdev->request_queue, 0x7FFFFF);
117 } else if (us->pusb_dev->speed >= USB_SPEED_SUPER) {
118
119
120
121
122 blk_queue_max_hw_sectors(sdev->request_queue, 2048);
123 }
124
125
126
127
128
129 blk_queue_max_hw_sectors(sdev->request_queue,
130 min_t(size_t, queue_max_hw_sectors(sdev->request_queue),
131 dma_max_mapping_size(dev) >> SECTOR_SHIFT));
132
133
134
135
136
137
138 if (!hcd_uses_dma(bus_to_hcd(us->pusb_dev->bus)) ||
139 (bus_to_hcd(us->pusb_dev->bus)->localmem_pool != NULL))
140 blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_HIGH);
141
142
143
144
145
146
147 if (sdev->type == TYPE_DISK) {
148
149
150
151
152
153
154
155
156
157 switch (le16_to_cpu(us->pusb_dev->descriptor.idVendor)) {
158 case VENDOR_ID_NOKIA:
159 case VENDOR_ID_NIKON:
160 case VENDOR_ID_PENTAX:
161 case VENDOR_ID_MOTOROLA:
162 if (!(us->fflags & (US_FL_FIX_CAPACITY |
163 US_FL_CAPACITY_OK)))
164 us->fflags |= US_FL_CAPACITY_HEURISTICS;
165 break;
166 }
167
168
169
170
171
172
173 if (us->subclass != USB_SC_SCSI && us->subclass != USB_SC_CYP_ATACB)
174 sdev->use_10_for_ms = 1;
175
176
177
178
179
180 sdev->use_192_bytes_for_3f = 1;
181
182
183
184
185
186
187
188
189
190
191 if (us->fflags & US_FL_NO_WP_DETECT)
192 sdev->skip_ms_page_3f = 1;
193
194
195
196
197
198 sdev->skip_ms_page_8 = 1;
199
200
201
202
203
204 sdev->skip_vpd_pages = !sdev->try_vpd_pages;
205
206
207 sdev->no_report_opcodes = 1;
208
209
210 sdev->no_write_same = 1;
211
212
213
214
215
216
217 if (us->fflags & US_FL_FIX_CAPACITY)
218 sdev->fix_capacity = 1;
219
220
221
222
223
224
225 if (us->fflags & US_FL_CAPACITY_HEURISTICS)
226 sdev->guess_capacity = 1;
227
228
229 if (us->fflags & US_FL_NO_READ_CAPACITY_16)
230 sdev->no_read_capacity_16 = 1;
231
232
233
234
235
236
237
238 if (!(us->fflags & US_FL_NEEDS_CAP16))
239 sdev->try_rc_10_first = 1;
240
241
242
243
244
245 if (sdev->scsi_level > SCSI_SPC_2 &&
246 !(us->fflags & US_FL_BAD_SENSE))
247 us->fflags |= US_FL_SANE_SENSE;
248
249
250
251
252
253
254
255
256
257 sdev->retry_hwerror = 1;
258
259
260
261
262
263 sdev->allow_restart = 1;
264
265
266
267
268
269
270 sdev->last_sector_bug = 1;
271
272
273
274
275
276
277 if (!(us->fflags & (US_FL_FIX_CAPACITY | US_FL_CAPACITY_OK |
278 US_FL_SCM_MULT_TARG)) &&
279 us->protocol == USB_PR_BULK)
280 us->use_last_sector_hacks = 1;
281
282
283 if (us->fflags & US_FL_WRITE_CACHE)
284 sdev->wce_default_on = 1;
285
286
287 if (us->fflags & US_FL_BROKEN_FUA)
288 sdev->broken_fua = 1;
289
290
291 if (us->fflags & US_FL_ALWAYS_SYNC) {
292
293 sdev->skip_ms_page_8 = 1;
294 sdev->skip_ms_page_3f = 1;
295
296 sdev->wce_default_on = 1;
297 }
298 } else {
299
300
301
302
303
304
305 sdev->use_10_for_ms = 1;
306
307
308 if (us->fflags & US_FL_NO_READ_DISC_INFO)
309 sdev->no_read_disc_info = 1;
310 }
311
312
313
314
315
316
317
318
319 if ((us->protocol == USB_PR_CB || us->protocol == USB_PR_CBI) &&
320 sdev->scsi_level == SCSI_UNKNOWN)
321 us->max_lun = 0;
322
323
324
325
326
327 if (us->fflags & US_FL_NOT_LOCKABLE)
328 sdev->lockable = 0;
329
330
331
332
333
334 return 0;
335 }
336
337 static int target_alloc(struct scsi_target *starget)
338 {
339 struct us_data *us = host_to_us(dev_to_shost(starget->dev.parent));
340
341
342
343
344
345
346
347 starget->no_report_luns = 1;
348
349
350
351
352
353
354
355
356
357
358 if (us->subclass == USB_SC_UFI)
359 starget->pdt_1f_for_no_lun = 1;
360
361 return 0;
362 }
363
364
365
366 static int queuecommand_lck(struct scsi_cmnd *srb,
367 void (*done)(struct scsi_cmnd *))
368 {
369 struct us_data *us = host_to_us(srb->device->host);
370
371
372 if (us->srb != NULL) {
373 printk(KERN_ERR "usb-storage: Error in %s: us->srb = %p\n",
374 __func__, us->srb);
375 return SCSI_MLQUEUE_HOST_BUSY;
376 }
377
378
379 if (test_bit(US_FLIDX_DISCONNECTING, &us->dflags)) {
380 usb_stor_dbg(us, "Fail command during disconnect\n");
381 srb->result = DID_NO_CONNECT << 16;
382 done(srb);
383 return 0;
384 }
385
386 if ((us->fflags & US_FL_NO_ATA_1X) &&
387 (srb->cmnd[0] == ATA_12 || srb->cmnd[0] == ATA_16)) {
388 memcpy(srb->sense_buffer, usb_stor_sense_invalidCDB,
389 sizeof(usb_stor_sense_invalidCDB));
390 srb->result = SAM_STAT_CHECK_CONDITION;
391 done(srb);
392 return 0;
393 }
394
395
396 srb->scsi_done = done;
397 us->srb = srb;
398 complete(&us->cmnd_ready);
399
400 return 0;
401 }
402
403 static DEF_SCSI_QCMD(queuecommand)
404
405
406
407
408
409
410 static int command_abort(struct scsi_cmnd *srb)
411 {
412 struct us_data *us = host_to_us(srb->device->host);
413
414 usb_stor_dbg(us, "%s called\n", __func__);
415
416
417
418
419
420 scsi_lock(us_to_host(us));
421
422
423 if (us->srb != srb) {
424 scsi_unlock(us_to_host(us));
425 usb_stor_dbg(us, "-- nothing to abort\n");
426 return FAILED;
427 }
428
429
430
431
432
433
434
435
436 set_bit(US_FLIDX_TIMED_OUT, &us->dflags);
437 if (!test_bit(US_FLIDX_RESETTING, &us->dflags)) {
438 set_bit(US_FLIDX_ABORTING, &us->dflags);
439 usb_stor_stop_transport(us);
440 }
441 scsi_unlock(us_to_host(us));
442
443
444 wait_for_completion(&us->notify);
445 return SUCCESS;
446 }
447
448
449
450
451
452 static int device_reset(struct scsi_cmnd *srb)
453 {
454 struct us_data *us = host_to_us(srb->device->host);
455 int result;
456
457 usb_stor_dbg(us, "%s called\n", __func__);
458
459
460 mutex_lock(&(us->dev_mutex));
461 result = us->transport_reset(us);
462 mutex_unlock(&us->dev_mutex);
463
464 return result < 0 ? FAILED : SUCCESS;
465 }
466
467
468 static int bus_reset(struct scsi_cmnd *srb)
469 {
470 struct us_data *us = host_to_us(srb->device->host);
471 int result;
472
473 usb_stor_dbg(us, "%s called\n", __func__);
474
475 result = usb_stor_port_reset(us);
476 return result < 0 ? FAILED : SUCCESS;
477 }
478
479
480
481
482
483
484 void usb_stor_report_device_reset(struct us_data *us)
485 {
486 int i;
487 struct Scsi_Host *host = us_to_host(us);
488
489 scsi_report_device_reset(host, 0, 0);
490 if (us->fflags & US_FL_SCM_MULT_TARG) {
491 for (i = 1; i < host->max_id; ++i)
492 scsi_report_device_reset(host, 0, i);
493 }
494 }
495
496
497
498
499
500
501 void usb_stor_report_bus_reset(struct us_data *us)
502 {
503 struct Scsi_Host *host = us_to_host(us);
504
505 scsi_lock(host);
506 scsi_report_bus_reset(host, 0);
507 scsi_unlock(host);
508 }
509
510
511
512
513
514 static int write_info(struct Scsi_Host *host, char *buffer, int length)
515 {
516
517 return length;
518 }
519
520 static int show_info (struct seq_file *m, struct Scsi_Host *host)
521 {
522 struct us_data *us = host_to_us(host);
523 const char *string;
524
525
526 seq_printf(m, " Host scsi%d: usb-storage\n", host->host_no);
527
528
529 if (us->pusb_dev->manufacturer)
530 string = us->pusb_dev->manufacturer;
531 else if (us->unusual_dev->vendorName)
532 string = us->unusual_dev->vendorName;
533 else
534 string = "Unknown";
535 seq_printf(m, " Vendor: %s\n", string);
536 if (us->pusb_dev->product)
537 string = us->pusb_dev->product;
538 else if (us->unusual_dev->productName)
539 string = us->unusual_dev->productName;
540 else
541 string = "Unknown";
542 seq_printf(m, " Product: %s\n", string);
543 if (us->pusb_dev->serial)
544 string = us->pusb_dev->serial;
545 else
546 string = "None";
547 seq_printf(m, "Serial Number: %s\n", string);
548
549
550 seq_printf(m, " Protocol: %s\n", us->protocol_name);
551 seq_printf(m, " Transport: %s\n", us->transport_name);
552
553
554 seq_printf(m, " Quirks:");
555
556 #define US_FLAG(name, value) \
557 if (us->fflags & value) seq_printf(m, " " #name);
558 US_DO_ALL_FLAGS
559 #undef US_FLAG
560 seq_putc(m, '\n');
561 return 0;
562 }
563
564
565
566
567
568
569 static ssize_t max_sectors_show(struct device *dev, struct device_attribute *attr, char *buf)
570 {
571 struct scsi_device *sdev = to_scsi_device(dev);
572
573 return sprintf(buf, "%u\n", queue_max_hw_sectors(sdev->request_queue));
574 }
575
576
577 static ssize_t max_sectors_store(struct device *dev, struct device_attribute *attr, const char *buf,
578 size_t count)
579 {
580 struct scsi_device *sdev = to_scsi_device(dev);
581 unsigned short ms;
582
583 if (sscanf(buf, "%hu", &ms) > 0) {
584 blk_queue_max_hw_sectors(sdev->request_queue, ms);
585 return count;
586 }
587 return -EINVAL;
588 }
589 static DEVICE_ATTR_RW(max_sectors);
590
591 static struct device_attribute *sysfs_device_attr_list[] = {
592 &dev_attr_max_sectors,
593 NULL,
594 };
595
596
597
598
599
600 static const struct scsi_host_template usb_stor_host_template = {
601
602 .name = "usb-storage",
603 .proc_name = "usb-storage",
604 .show_info = show_info,
605 .write_info = write_info,
606 .info = host_info,
607
608
609 .queuecommand = queuecommand,
610
611
612 .eh_abort_handler = command_abort,
613 .eh_device_reset_handler = device_reset,
614 .eh_bus_reset_handler = bus_reset,
615
616
617 .can_queue = 1,
618
619
620 .this_id = -1,
621
622 .slave_alloc = slave_alloc,
623 .slave_configure = slave_configure,
624 .target_alloc = target_alloc,
625
626
627 .sg_tablesize = SG_MAX_SEGMENTS,
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647 .max_sectors = 240,
648
649
650 .emulated = 1,
651
652
653 .skip_settle_delay = 1,
654
655
656 .sdev_attrs = sysfs_device_attr_list,
657
658
659 .module = THIS_MODULE
660 };
661
662 void usb_stor_host_template_init(struct scsi_host_template *sht,
663 const char *name, struct module *owner)
664 {
665 *sht = usb_stor_host_template;
666 sht->name = name;
667 sht->proc_name = name;
668 sht->module = owner;
669 }
670 EXPORT_SYMBOL_GPL(usb_stor_host_template_init);
671
672
673 unsigned char usb_stor_sense_invalidCDB[18] = {
674 [0] = 0x70,
675 [2] = ILLEGAL_REQUEST,
676 [7] = 0x0a,
677 [12] = 0x24
678 };
679 EXPORT_SYMBOL_GPL(usb_stor_sense_invalidCDB);