2 * The low performance USB storage driver (ub).
4 * Copyright (c) 1999, 2000 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
5 * Copyright (C) 2004 Pete Zaitcev (zaitcev@yahoo.com)
7 * This work is a part of Linux kernel, is derived from it,
8 * and is not licensed separately. See file COPYING for details.
10 * TODO (sorted by decreasing priority)
11 * -- Kill first_open (Al Viro fixed the block layer now)
12 * -- Do resets with usb_device_reset (needs a thread context, use khubd)
13 * -- set readonly flag for CDs, set removable flag for CF readers
14 * -- do inquiry and verify we got a disk and not a tape (for LUN mismatch)
15 * -- special case some senses, e.g. 3a/0 -> no media present, reduce retries
16 * -- verify the 13 conditions and do bulk resets
17 * -- kill last_pipe and simply do two-state clearing on both pipes
18 * -- verify protocol (bulk) from USB descriptors (maybe...)
20 * -- move top_sense and work_bcs into separate allocations (if they survive)
21 * for cache purists and esoteric architectures.
22 * -- Allocate structure for LUN 0 before the first ub_sync_tur, avoid NULL. ?
23 * -- prune comments, they are too volumnous
24 * -- Exterminate P3 printks
26 * -- Redo "benh's retries", perhaps have spin-up code to handle them. V:D=?
27 * -- CLEAR, CLR2STS, CLRRS seem to be ripe for refactoring.
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/usb.h>
32 #include <linux/blkdev.h>
33 #include <linux/devfs_fs_kernel.h>
34 #include <linux/timer.h>
35 #include <scsi/scsi.h>
38 #define DEVFS_NAME DRV_NAME
43 * The command state machine is the key model for understanding of this driver.
45 * The general rule is that all transitions are done towards the bottom
46 * of the diagram, thus preventing any loops.
48 * An exception to that is how the STAT state is handled. A counter allows it
49 * to be re-entered along the path marked with [C].
55 * ub_scsi_cmd_start fails ->--------------------------------------\
62 * was -EPIPE -->-------------------------------->! CLEAR ! !
65 * was error -->------------------------------------- ! --------->\
67 * /--<-- cmd->dir == NONE ? ! !
74 * ! was -EPIPE -->--------------->! CLR2STS ! ! !
77 * ! ! was error -->---- ! --------->\
78 * ! was error -->--------------------- ! ------------- ! --------->\
81 * \--->+--------+ ! ! !
82 * ! STAT !<--------------------------/ ! !
85 * [C] was -EPIPE -->-----------\ ! !
87 * +<---- len == 0 ! ! !
89 * ! was error -->--------------------------------------!---------->\
91 * +<---- bad CSW ! ! !
92 * +<---- bad tag ! ! !
98 * \------- ! --------------------[C]--------\ ! !
100 * cmd->error---\ +--------+ ! !
101 * ! +--------------->! SENSE !<----------/ !
102 * STAT_FAIL----/ +--------+ !
105 * \--------------------------------\--------------------->! DONE !
110 * Definitions which have to be scattered once we understand the layout better.
113 /* Transport (despite PR in the name) */
114 #define US_PR_BULK 0x50 /* bulk only */
117 #define US_SC_SCSI 0x06 /* Transparent */
120 * This many LUNs per USB device.
121 * Every one of them takes a host, see UB_MAX_HOSTS.
123 #define UB_MAX_LUNS 9
128 #define UB_MINORS_PER_MAJOR 8
130 #define UB_MAX_CDB_SIZE 16 /* Corresponds to Bulk */
132 #define UB_SENSE_SIZE 18
137 /* command block wrapper */
138 struct bulk_cb_wrap
{
139 __le32 Signature
; /* contains 'USBC' */
140 u32 Tag
; /* unique per command id */
141 __le32 DataTransferLength
; /* size of data */
142 u8 Flags
; /* direction in bit 0 */
144 u8 Length
; /* of of the CDB */
145 u8 CDB
[UB_MAX_CDB_SIZE
]; /* max command */
148 #define US_BULK_CB_WRAP_LEN 31
149 #define US_BULK_CB_SIGN 0x43425355 /*spells out USBC */
150 #define US_BULK_FLAG_IN 1
151 #define US_BULK_FLAG_OUT 0
153 /* command status wrapper */
154 struct bulk_cs_wrap
{
155 __le32 Signature
; /* should = 'USBS' */
156 u32 Tag
; /* same as original command */
157 __le32 Residue
; /* amount not transferred */
158 u8 Status
; /* see below */
161 #define US_BULK_CS_WRAP_LEN 13
162 #define US_BULK_CS_SIGN 0x53425355 /* spells out 'USBS' */
163 #define US_BULK_STAT_OK 0
164 #define US_BULK_STAT_FAIL 1
165 #define US_BULK_STAT_PHASE 2
167 /* bulk-only class specific requests */
168 #define US_BULK_RESET_REQUEST 0xff
169 #define US_BULK_GET_MAX_LUN 0xfe
175 #define UB_MAX_REQ_SG 4
176 #define UB_MAX_SECTORS 64
179 * A second is more than enough for a 32K transfer (UB_MAX_SECTORS)
180 * even if a webcam hogs the bus, but some devices need time to spin up.
182 #define UB_URB_TIMEOUT (HZ*2)
183 #define UB_DATA_TIMEOUT (HZ*5) /* ZIP does spin-ups in the data phase */
184 #define UB_STAT_TIMEOUT (HZ*5) /* Same spinups and eject for a dataless cmd. */
185 #define UB_CTRL_TIMEOUT (HZ/2) /* 500ms ought to be enough to clear a stall */
188 * An instance of a SCSI command in transit.
190 #define UB_DIR_NONE 0
191 #define UB_DIR_READ 1
192 #define UB_DIR_ILLEGAL2 2
193 #define UB_DIR_WRITE 3
195 #define UB_DIR_CHAR(c) (((c)==UB_DIR_WRITE)? 'w': \
196 (((c)==UB_DIR_READ)? 'r': 'n'))
198 enum ub_scsi_cmd_state
{
199 UB_CMDST_INIT
, /* Initial state */
200 UB_CMDST_CMD
, /* Command submitted */
201 UB_CMDST_DATA
, /* Data phase */
202 UB_CMDST_CLR2STS
, /* Clearing before requesting status */
203 UB_CMDST_STAT
, /* Status phase */
204 UB_CMDST_CLEAR
, /* Clearing a stall (halt, actually) */
205 UB_CMDST_CLRRS
, /* Clearing before retrying status */
206 UB_CMDST_SENSE
, /* Sending Request Sense */
207 UB_CMDST_DONE
/* Final state */
210 static char *ub_scsi_cmd_stname
[] = {
223 unsigned char cdb
[UB_MAX_CDB_SIZE
];
224 unsigned char cdb_len
;
226 unsigned char dir
; /* 0 - none, 1 - read, 3 - write. */
227 unsigned char trace_index
;
228 enum ub_scsi_cmd_state state
;
230 struct ub_scsi_cmd
*next
;
232 int error
; /* Return code - valid upon done */
233 unsigned int act_len
; /* Return size */
234 unsigned char key
, asc
, ascq
; /* May be valid if error==-EIO */
236 int stat_count
; /* Retries getting status. */
238 unsigned int len
; /* Requested length */
239 unsigned int current_sg
;
240 unsigned int nsg
; /* sgv[nsg] */
241 struct scatterlist sgv
[UB_MAX_REQ_SG
];
244 void (*done
)(struct ub_dev
*, struct ub_scsi_cmd
*);
251 unsigned long nsec
; /* Linux size - 512 byte sectors */
252 unsigned int bsize
; /* Linux hardsect_size */
253 unsigned int bshift
; /* Shift between 512 and hard sects */
257 * The SCSI command tracing structure.
260 #define SCMD_ST_HIST_SZ 8
261 #define SCMD_TRACE_SZ 63 /* Less than 4KB of 61-byte lines */
263 struct ub_scsi_cmd_trace
{
266 unsigned int req_size
, act_size
;
269 unsigned char key
, asc
, ascq
;
270 char st_hst
[SCMD_ST_HIST_SZ
];
273 struct ub_scsi_trace
{
275 struct ub_scsi_cmd_trace vec
[SCMD_TRACE_SZ
];
279 * This is a direct take-off from linux/include/completion.h
280 * The difference is that I do not wait on this thing, just poll.
281 * When I want to wait (ub_probe), I just use the stock completion.
283 * Note that INIT_COMPLETION takes no lock. It is correct. But why
284 * in the bloody hell that thing takes struct instead of pointer to struct
285 * is quite beyond me. I just copied it from the stock completion.
287 struct ub_completion
{
292 static inline void ub_init_completion(struct ub_completion
*x
)
295 spin_lock_init(&x
->lock
);
298 #define UB_INIT_COMPLETION(x) ((x).done = 0)
300 static void ub_complete(struct ub_completion
*x
)
304 spin_lock_irqsave(&x
->lock
, flags
);
306 spin_unlock_irqrestore(&x
->lock
, flags
);
309 static int ub_is_completed(struct ub_completion
*x
)
314 spin_lock_irqsave(&x
->lock
, flags
);
316 spin_unlock_irqrestore(&x
->lock
, flags
);
322 struct ub_scsi_cmd_queue
{
324 struct ub_scsi_cmd
*head
, *tail
;
328 * The block device instance (one per LUN).
332 struct list_head link
;
333 struct gendisk
*disk
;
334 int id
; /* Host index */
335 int num
; /* LUN number */
338 int changed
; /* Media was changed */
341 int first_open
; /* Kludge. See ub_bd_open. */
343 /* Use Ingo's mempool if or when we have more than one command. */
345 * Currently we never need more than one command for the whole device.
346 * However, giving every LUN a command is a cheap and automatic way
347 * to enforce fairness between them.
350 struct ub_scsi_cmd cmdv
[1];
352 struct ub_capacity capacity
;
356 * The USB device instance.
360 atomic_t poison
; /* The USB device is disconnected */
361 int openc
; /* protected by ub_lock! */
362 /* kref is too implicit for our taste */
365 struct usb_device
*dev
;
366 struct usb_interface
*intf
;
368 struct list_head luns
;
370 unsigned int send_bulk_pipe
; /* cached pipe values */
371 unsigned int recv_bulk_pipe
;
372 unsigned int send_ctrl_pipe
;
373 unsigned int recv_ctrl_pipe
;
375 struct tasklet_struct tasklet
;
377 struct ub_scsi_cmd_queue cmd_queue
;
378 struct ub_scsi_cmd top_rqs_cmd
; /* REQUEST SENSE */
379 unsigned char top_sense
[UB_SENSE_SIZE
];
381 struct ub_completion work_done
;
383 struct timer_list work_timer
;
384 int last_pipe
; /* What might need clearing */
385 __le32 signature
; /* Learned signature */
386 struct bulk_cb_wrap work_bcb
;
387 struct bulk_cs_wrap work_bcs
;
388 struct usb_ctrlrequest work_cr
;
390 int sg_stat
[UB_MAX_REQ_SG
+1];
391 struct ub_scsi_trace tr
;
396 static void ub_cleanup(struct ub_dev
*sc
);
397 static int ub_request_fn_1(struct ub_lun
*lun
, struct request
*rq
);
398 static int ub_cmd_build_block(struct ub_dev
*sc
, struct ub_lun
*lun
,
399 struct ub_scsi_cmd
*cmd
, struct request
*rq
);
400 static int ub_cmd_build_packet(struct ub_dev
*sc
, struct ub_lun
*lun
,
401 struct ub_scsi_cmd
*cmd
, struct request
*rq
);
402 static void ub_rw_cmd_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
403 static void ub_end_rq(struct request
*rq
, int uptodate
);
404 static int ub_submit_scsi(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
405 static void ub_urb_complete(struct urb
*urb
, struct pt_regs
*pt
);
406 static void ub_scsi_action(unsigned long _dev
);
407 static void ub_scsi_dispatch(struct ub_dev
*sc
);
408 static void ub_scsi_urb_compl(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
409 static void ub_data_start(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
410 static void ub_state_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
, int rc
);
411 static int __ub_state_stat(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
412 static void ub_state_stat(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
413 static void ub_state_stat_counted(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
414 static void ub_state_sense(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
415 static int ub_submit_clear_stall(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
,
417 static void ub_top_sense_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*scmd
);
418 static int ub_sync_tur(struct ub_dev
*sc
, struct ub_lun
*lun
);
419 static int ub_sync_read_cap(struct ub_dev
*sc
, struct ub_lun
*lun
,
420 struct ub_capacity
*ret
);
421 static int ub_probe_lun(struct ub_dev
*sc
, int lnum
);
425 static struct usb_device_id ub_usb_ids
[] = {
426 // { USB_DEVICE_VER(0x0781, 0x0002, 0x0009, 0x0009) }, /* SDDR-31 */
427 { USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE
, US_SC_SCSI
, US_PR_BULK
) },
431 MODULE_DEVICE_TABLE(usb
, ub_usb_ids
);
434 * Find me a way to identify "next free minor" for add_disk(),
435 * and the array disappears the next day. However, the number of
436 * hosts has something to do with the naming and /proc/partitions.
437 * This has to be thought out in detail before changing.
438 * If UB_MAX_HOST was 1000, we'd use a bitmap. Or a better data structure.
440 #define UB_MAX_HOSTS 26
441 static char ub_hostv
[UB_MAX_HOSTS
];
443 static DEFINE_SPINLOCK(ub_lock
); /* Locks globals and ->openc */
446 * The SCSI command tracing procedures.
449 static void ub_cmdtr_new(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
452 struct ub_scsi_cmd_trace
*t
;
454 if ((n
= sc
->tr
.cur
+ 1) == SCMD_TRACE_SZ
) n
= 0;
457 memset(t
, 0, sizeof(struct ub_scsi_cmd_trace
));
461 t
->req_size
= cmd
->len
;
462 t
->st_hst
[0] = cmd
->state
;
465 cmd
->trace_index
= n
;
468 static void ub_cmdtr_state(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
471 struct ub_scsi_cmd_trace
*t
;
473 t
= &sc
->tr
.vec
[cmd
->trace_index
];
474 if (t
->tag
== cmd
->tag
) {
475 if ((n
= t
->hcur
+ 1) == SCMD_ST_HIST_SZ
) n
= 0;
476 t
->st_hst
[n
] = cmd
->state
;
481 static void ub_cmdtr_act_len(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
483 struct ub_scsi_cmd_trace
*t
;
485 t
= &sc
->tr
.vec
[cmd
->trace_index
];
486 if (t
->tag
== cmd
->tag
)
487 t
->act_size
= cmd
->act_len
;
490 static void ub_cmdtr_sense(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
,
491 unsigned char *sense
)
493 struct ub_scsi_cmd_trace
*t
;
495 t
= &sc
->tr
.vec
[cmd
->trace_index
];
496 if (t
->tag
== cmd
->tag
) {
497 t
->key
= sense
[2] & 0x0F;
503 static ssize_t
ub_diag_show(struct device
*dev
, struct device_attribute
*attr
,
506 struct usb_interface
*intf
;
514 struct ub_scsi_cmd_trace
*t
;
516 intf
= to_usb_interface(dev
);
517 sc
= usb_get_intfdata(intf
);
522 spin_lock_irqsave(&sc
->lock
, flags
);
524 cnt
+= sprintf(page
+ cnt
,
526 sc
->cmd_queue
.qlen
, sc
->cmd_queue
.qmax
);
527 cnt
+= sprintf(page
+ cnt
,
528 "sg %d %d %d %d %d\n",
535 list_for_each (p
, &sc
->luns
) {
536 lun
= list_entry(p
, struct ub_lun
, link
);
537 cnt
+= sprintf(page
+ cnt
,
538 "lun %u changed %d removable %d readonly %d\n",
539 lun
->num
, lun
->changed
, lun
->removable
, lun
->readonly
);
542 if ((nc
= sc
->tr
.cur
+ 1) == SCMD_TRACE_SZ
) nc
= 0;
543 for (j
= 0; j
< SCMD_TRACE_SZ
; j
++) {
546 cnt
+= sprintf(page
+ cnt
, "%08x %02x", t
->tag
, t
->op
);
547 if (t
->op
== REQUEST_SENSE
) {
548 cnt
+= sprintf(page
+ cnt
, " [sense %x %02x %02x]",
549 t
->key
, t
->asc
, t
->ascq
);
551 cnt
+= sprintf(page
+ cnt
, " %c", UB_DIR_CHAR(t
->dir
));
552 cnt
+= sprintf(page
+ cnt
, " [%5d %5d]",
553 t
->req_size
, t
->act_size
);
555 if ((nh
= t
->hcur
+ 1) == SCMD_ST_HIST_SZ
) nh
= 0;
556 for (i
= 0; i
< SCMD_ST_HIST_SZ
; i
++) {
557 cnt
+= sprintf(page
+ cnt
, " %s",
558 ub_scsi_cmd_stname
[(int)t
->st_hst
[nh
]]);
559 if (++nh
== SCMD_ST_HIST_SZ
) nh
= 0;
561 cnt
+= sprintf(page
+ cnt
, "\n");
563 if (++nc
== SCMD_TRACE_SZ
) nc
= 0;
566 spin_unlock_irqrestore(&sc
->lock
, flags
);
570 static DEVICE_ATTR(diag
, S_IRUGO
, ub_diag_show
, NULL
); /* N.B. World readable */
575 * This also stores the host for indexing by minor, which is somewhat dirty.
577 static int ub_id_get(void)
582 spin_lock_irqsave(&ub_lock
, flags
);
583 for (i
= 0; i
< UB_MAX_HOSTS
; i
++) {
584 if (ub_hostv
[i
] == 0) {
586 spin_unlock_irqrestore(&ub_lock
, flags
);
590 spin_unlock_irqrestore(&ub_lock
, flags
);
594 static void ub_id_put(int id
)
598 if (id
< 0 || id
>= UB_MAX_HOSTS
) {
599 printk(KERN_ERR DRV_NAME
": bad host ID %d\n", id
);
603 spin_lock_irqsave(&ub_lock
, flags
);
604 if (ub_hostv
[id
] == 0) {
605 spin_unlock_irqrestore(&ub_lock
, flags
);
606 printk(KERN_ERR DRV_NAME
": freeing free host ID %d\n", id
);
610 spin_unlock_irqrestore(&ub_lock
, flags
);
614 * Downcount for deallocation. This rides on two assumptions:
615 * - once something is poisoned, its refcount cannot grow
616 * - opens cannot happen at this time (del_gendisk was done)
617 * If the above is true, we can drop the lock, which we need for
618 * blk_cleanup_queue(): the silly thing may attempt to sleep.
619 * [Actually, it never needs to sleep for us, but it calls might_sleep()]
621 static void ub_put(struct ub_dev
*sc
)
625 spin_lock_irqsave(&ub_lock
, flags
);
627 if (sc
->openc
== 0 && atomic_read(&sc
->poison
)) {
628 spin_unlock_irqrestore(&ub_lock
, flags
);
631 spin_unlock_irqrestore(&ub_lock
, flags
);
636 * Final cleanup and deallocation.
638 static void ub_cleanup(struct ub_dev
*sc
)
644 while (!list_empty(&sc
->luns
)) {
646 lun
= list_entry(p
, struct ub_lun
, link
);
649 /* I don't think queue can be NULL. But... Stolen from sx8.c */
650 if ((q
= lun
->disk
->queue
) != NULL
)
651 blk_cleanup_queue(q
);
653 * If we zero disk->private_data BEFORE put_disk, we have
654 * to check for NULL all over the place in open, release,
655 * check_media and revalidate, because the block level
656 * semaphore is well inside the put_disk.
657 * But we cannot zero after the call, because *disk is gone.
658 * The sd.c is blatantly racy in this area.
660 /* disk->private_data = NULL; */
672 * The "command allocator".
674 static struct ub_scsi_cmd
*ub_get_cmd(struct ub_lun
*lun
)
676 struct ub_scsi_cmd
*ret
;
685 static void ub_put_cmd(struct ub_lun
*lun
, struct ub_scsi_cmd
*cmd
)
687 if (cmd
!= &lun
->cmdv
[0]) {
688 printk(KERN_WARNING
"%s: releasing a foreign cmd %p\n",
693 printk(KERN_WARNING
"%s: releasing a free cmd\n", lun
->name
);
702 static void ub_cmdq_add(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
704 struct ub_scsi_cmd_queue
*t
= &sc
->cmd_queue
;
706 if (t
->qlen
++ == 0) {
714 if (t
->qlen
> t
->qmax
)
718 static void ub_cmdq_insert(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
720 struct ub_scsi_cmd_queue
*t
= &sc
->cmd_queue
;
722 if (t
->qlen
++ == 0) {
730 if (t
->qlen
> t
->qmax
)
734 static struct ub_scsi_cmd
*ub_cmdq_pop(struct ub_dev
*sc
)
736 struct ub_scsi_cmd_queue
*t
= &sc
->cmd_queue
;
737 struct ub_scsi_cmd
*cmd
;
749 #define ub_cmdq_peek(sc) ((sc)->cmd_queue.head)
752 * The request function is our main entry point
755 static void ub_request_fn(request_queue_t
*q
)
757 struct ub_lun
*lun
= q
->queuedata
;
760 while ((rq
= elv_next_request(q
)) != NULL
) {
761 if (ub_request_fn_1(lun
, rq
) != 0) {
768 static int ub_request_fn_1(struct ub_lun
*lun
, struct request
*rq
)
770 struct ub_dev
*sc
= lun
->udev
;
771 struct ub_scsi_cmd
*cmd
;
774 if (atomic_read(&sc
->poison
) || lun
->changed
) {
775 blkdev_dequeue_request(rq
);
780 if ((cmd
= ub_get_cmd(lun
)) == NULL
)
782 memset(cmd
, 0, sizeof(struct ub_scsi_cmd
));
784 blkdev_dequeue_request(rq
);
785 if (blk_pc_request(rq
)) {
786 rc
= ub_cmd_build_packet(sc
, lun
, cmd
, rq
);
788 rc
= ub_cmd_build_block(sc
, lun
, cmd
, rq
);
791 ub_put_cmd(lun
, cmd
);
795 cmd
->state
= UB_CMDST_INIT
;
797 cmd
->done
= ub_rw_cmd_done
;
800 cmd
->tag
= sc
->tagcnt
++;
801 if (ub_submit_scsi(sc
, cmd
) != 0) {
802 ub_put_cmd(lun
, cmd
);
810 static int ub_cmd_build_block(struct ub_dev
*sc
, struct ub_lun
*lun
,
811 struct ub_scsi_cmd
*cmd
, struct request
*rq
)
815 unsigned int block
, nblks
;
817 if (rq_data_dir(rq
) == WRITE
)
818 ub_dir
= UB_DIR_WRITE
;
820 ub_dir
= UB_DIR_READ
;
824 * get scatterlist from block layer
826 n_elem
= blk_rq_map_sg(lun
->disk
->queue
, rq
, &cmd
->sgv
[0]);
828 printk(KERN_INFO
"%s: failed request map (%d)\n",
829 sc
->name
, n_elem
); /* P3 */
830 return -1; /* request with no s/g entries? */
832 if (n_elem
> UB_MAX_REQ_SG
) { /* Paranoia */
833 printk(KERN_WARNING
"%s: request with %d segments\n",
838 sc
->sg_stat
[n_elem
]++;
843 * The call to blk_queue_hardsect_size() guarantees that request
844 * is aligned, but it is given in terms of 512 byte units, always.
846 block
= rq
->sector
>> lun
->capacity
.bshift
;
847 nblks
= rq
->nr_sectors
>> lun
->capacity
.bshift
;
849 cmd
->cdb
[0] = (ub_dir
== UB_DIR_READ
)? READ_10
: WRITE_10
;
850 /* 10-byte uses 4 bytes of LBA: 2147483648KB, 2097152MB, 2048GB */
851 cmd
->cdb
[2] = block
>> 24;
852 cmd
->cdb
[3] = block
>> 16;
853 cmd
->cdb
[4] = block
>> 8;
855 cmd
->cdb
[7] = nblks
>> 8;
859 cmd
->len
= rq
->nr_sectors
* 512;
864 static int ub_cmd_build_packet(struct ub_dev
*sc
, struct ub_lun
*lun
,
865 struct ub_scsi_cmd
*cmd
, struct request
*rq
)
869 if (rq
->data_len
== 0) {
870 cmd
->dir
= UB_DIR_NONE
;
872 if (rq_data_dir(rq
) == WRITE
)
873 cmd
->dir
= UB_DIR_WRITE
;
875 cmd
->dir
= UB_DIR_READ
;
880 * get scatterlist from block layer
882 n_elem
= blk_rq_map_sg(lun
->disk
->queue
, rq
, &cmd
->sgv
[0]);
884 printk(KERN_INFO
"%s: failed request map (%d)\n",
885 sc
->name
, n_elem
); /* P3 */
888 if (n_elem
> UB_MAX_REQ_SG
) { /* Paranoia */
889 printk(KERN_WARNING
"%s: request with %d segments\n",
894 sc
->sg_stat
[n_elem
]++;
896 memcpy(&cmd
->cdb
, rq
->cmd
, rq
->cmd_len
);
897 cmd
->cdb_len
= rq
->cmd_len
;
899 cmd
->len
= rq
->data_len
;
904 static void ub_rw_cmd_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
906 struct request
*rq
= cmd
->back
;
907 struct ub_lun
*lun
= cmd
->lun
;
910 if (cmd
->error
== 0) {
913 if (blk_pc_request(rq
)) {
914 if (cmd
->act_len
>= rq
->data_len
)
917 rq
->data_len
-= cmd
->act_len
;
922 if (blk_pc_request(rq
)) {
923 /* UB_SENSE_SIZE is smaller than SCSI_SENSE_BUFFERSIZE */
924 memcpy(rq
->sense
, sc
->top_sense
, UB_SENSE_SIZE
);
925 rq
->sense_len
= UB_SENSE_SIZE
;
926 if (sc
->top_sense
[0] != 0)
927 rq
->errors
= SAM_STAT_CHECK_CONDITION
;
929 rq
->errors
= DID_ERROR
<< 16;
933 ub_put_cmd(lun
, cmd
);
934 ub_end_rq(rq
, uptodate
);
935 blk_start_queue(lun
->disk
->queue
);
938 static void ub_end_rq(struct request
*rq
, int uptodate
)
942 rc
= end_that_request_first(rq
, uptodate
, rq
->hard_nr_sectors
);
944 end_that_request_last(rq
);
948 * Submit a regular SCSI operation (not an auto-sense).
950 * The Iron Law of Good Submit Routine is:
951 * Zero return - callback is done, Nonzero return - callback is not done.
954 * Host is assumed locked.
956 * XXX We only support Bulk for the moment.
958 static int ub_submit_scsi(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
961 if (cmd
->state
!= UB_CMDST_INIT
||
962 (cmd
->dir
!= UB_DIR_NONE
&& cmd
->len
== 0)) {
966 ub_cmdq_add(sc
, cmd
);
968 * We can call ub_scsi_dispatch(sc) right away here, but it's a little
969 * safer to jump to a tasklet, in case upper layers do something silly.
971 tasklet_schedule(&sc
->tasklet
);
976 * Submit the first URB for the queued command.
977 * This function does not deal with queueing in any way.
979 static int ub_scsi_cmd_start(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
981 struct bulk_cb_wrap
*bcb
;
987 * ``If the allocation length is eighteen or greater, and a device
988 * server returns less than eithteen bytes of data, the application
989 * client should assume that the bytes not transferred would have been
990 * zeroes had the device server returned those bytes.''
992 * We zero sense for all commands so that when a packet request
993 * fails it does not return a stale sense.
995 memset(&sc
->top_sense
, 0, UB_SENSE_SIZE
);
997 /* set up the command wrapper */
998 bcb
->Signature
= cpu_to_le32(US_BULK_CB_SIGN
);
999 bcb
->Tag
= cmd
->tag
; /* Endianness is not important */
1000 bcb
->DataTransferLength
= cpu_to_le32(cmd
->len
);
1001 bcb
->Flags
= (cmd
->dir
== UB_DIR_READ
) ? 0x80 : 0;
1002 bcb
->Lun
= (cmd
->lun
!= NULL
) ? cmd
->lun
->num
: 0;
1003 bcb
->Length
= cmd
->cdb_len
;
1005 /* copy the command payload */
1006 memcpy(bcb
->CDB
, cmd
->cdb
, UB_MAX_CDB_SIZE
);
1008 UB_INIT_COMPLETION(sc
->work_done
);
1010 sc
->last_pipe
= sc
->send_bulk_pipe
;
1011 usb_fill_bulk_urb(&sc
->work_urb
, sc
->dev
, sc
->send_bulk_pipe
,
1012 bcb
, US_BULK_CB_WRAP_LEN
, ub_urb_complete
, sc
);
1013 sc
->work_urb
.transfer_flags
= 0;
1015 /* Fill what we shouldn't be filling, because usb-storage did so. */
1016 sc
->work_urb
.actual_length
= 0;
1017 sc
->work_urb
.error_count
= 0;
1018 sc
->work_urb
.status
= 0;
1020 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_ATOMIC
)) != 0) {
1021 /* XXX Clear stalls */
1022 printk("ub: cmd #%d start failed (%d)\n", cmd
->tag
, rc
); /* P3 */
1023 ub_complete(&sc
->work_done
);
1027 sc
->work_timer
.expires
= jiffies
+ UB_URB_TIMEOUT
;
1028 add_timer(&sc
->work_timer
);
1030 cmd
->state
= UB_CMDST_CMD
;
1031 ub_cmdtr_state(sc
, cmd
);
1038 static void ub_urb_timeout(unsigned long arg
)
1040 struct ub_dev
*sc
= (struct ub_dev
*) arg
;
1041 unsigned long flags
;
1043 spin_lock_irqsave(&sc
->lock
, flags
);
1044 usb_unlink_urb(&sc
->work_urb
);
1045 spin_unlock_irqrestore(&sc
->lock
, flags
);
1049 * Completion routine for the work URB.
1051 * This can be called directly from usb_submit_urb (while we have
1052 * the sc->lock taken) and from an interrupt (while we do NOT have
1053 * the sc->lock taken). Therefore, bounce this off to a tasklet.
1055 static void ub_urb_complete(struct urb
*urb
, struct pt_regs
*pt
)
1057 struct ub_dev
*sc
= urb
->context
;
1059 ub_complete(&sc
->work_done
);
1060 tasklet_schedule(&sc
->tasklet
);
1063 static void ub_scsi_action(unsigned long _dev
)
1065 struct ub_dev
*sc
= (struct ub_dev
*) _dev
;
1066 unsigned long flags
;
1068 spin_lock_irqsave(&sc
->lock
, flags
);
1069 del_timer(&sc
->work_timer
);
1070 ub_scsi_dispatch(sc
);
1071 spin_unlock_irqrestore(&sc
->lock
, flags
);
1074 static void ub_scsi_dispatch(struct ub_dev
*sc
)
1076 struct ub_scsi_cmd
*cmd
;
1079 while ((cmd
= ub_cmdq_peek(sc
)) != NULL
) {
1080 if (cmd
->state
== UB_CMDST_DONE
) {
1082 (*cmd
->done
)(sc
, cmd
);
1083 } else if (cmd
->state
== UB_CMDST_INIT
) {
1084 ub_cmdtr_new(sc
, cmd
);
1085 if ((rc
= ub_scsi_cmd_start(sc
, cmd
)) == 0)
1088 cmd
->state
= UB_CMDST_DONE
;
1089 ub_cmdtr_state(sc
, cmd
);
1091 if (!ub_is_completed(&sc
->work_done
))
1093 ub_scsi_urb_compl(sc
, cmd
);
1098 static void ub_scsi_urb_compl(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1100 struct urb
*urb
= &sc
->work_urb
;
1101 struct bulk_cs_wrap
*bcs
;
1104 if (atomic_read(&sc
->poison
)) {
1105 /* A little too simplistic, I feel... */
1109 if (cmd
->state
== UB_CMDST_CLEAR
) {
1110 if (urb
->status
== -EPIPE
) {
1112 * STALL while clearning STALL.
1113 * The control pipe clears itself - nothing to do.
1114 * XXX Might try to reset the device here and retry.
1116 printk(KERN_NOTICE
"%s: stall on control pipe\n",
1122 * We ignore the result for the halt clear.
1125 /* reset the endpoint toggle */
1126 usb_settoggle(sc
->dev
, usb_pipeendpoint(sc
->last_pipe
),
1127 usb_pipeout(sc
->last_pipe
), 0);
1129 ub_state_sense(sc
, cmd
);
1131 } else if (cmd
->state
== UB_CMDST_CLR2STS
) {
1132 if (urb
->status
== -EPIPE
) {
1134 * STALL while clearning STALL.
1135 * The control pipe clears itself - nothing to do.
1136 * XXX Might try to reset the device here and retry.
1138 printk(KERN_NOTICE
"%s: stall on control pipe\n",
1144 * We ignore the result for the halt clear.
1147 /* reset the endpoint toggle */
1148 usb_settoggle(sc
->dev
, usb_pipeendpoint(sc
->last_pipe
),
1149 usb_pipeout(sc
->last_pipe
), 0);
1151 ub_state_stat(sc
, cmd
);
1153 } else if (cmd
->state
== UB_CMDST_CLRRS
) {
1154 if (urb
->status
== -EPIPE
) {
1156 * STALL while clearning STALL.
1157 * The control pipe clears itself - nothing to do.
1158 * XXX Might try to reset the device here and retry.
1160 printk(KERN_NOTICE
"%s: stall on control pipe\n",
1166 * We ignore the result for the halt clear.
1169 /* reset the endpoint toggle */
1170 usb_settoggle(sc
->dev
, usb_pipeendpoint(sc
->last_pipe
),
1171 usb_pipeout(sc
->last_pipe
), 0);
1173 ub_state_stat_counted(sc
, cmd
);
1175 } else if (cmd
->state
== UB_CMDST_CMD
) {
1176 if (urb
->status
== -EPIPE
) {
1177 rc
= ub_submit_clear_stall(sc
, cmd
, sc
->last_pipe
);
1179 printk(KERN_NOTICE
"%s: "
1180 "unable to submit clear (%d)\n",
1183 * This is typically ENOMEM or some other such shit.
1184 * Retrying is pointless. Just do Bad End on it...
1188 cmd
->state
= UB_CMDST_CLEAR
;
1189 ub_cmdtr_state(sc
, cmd
);
1192 if (urb
->status
!= 0) {
1193 printk("ub: cmd #%d cmd status (%d)\n", cmd
->tag
, urb
->status
); /* P3 */
1196 if (urb
->actual_length
!= US_BULK_CB_WRAP_LEN
) {
1197 printk("ub: cmd #%d xferred %d\n", cmd
->tag
, urb
->actual_length
); /* P3 */
1198 /* XXX Must do reset here to unconfuse the device */
1202 if (cmd
->dir
== UB_DIR_NONE
|| cmd
->nsg
< 1) {
1203 ub_state_stat(sc
, cmd
);
1207 // udelay(125); // usb-storage has this
1208 ub_data_start(sc
, cmd
);
1210 } else if (cmd
->state
== UB_CMDST_DATA
) {
1211 if (urb
->status
== -EPIPE
) {
1212 rc
= ub_submit_clear_stall(sc
, cmd
, sc
->last_pipe
);
1214 printk(KERN_NOTICE
"%s: "
1215 "unable to submit clear (%d)\n",
1218 * This is typically ENOMEM or some other such shit.
1219 * Retrying is pointless. Just do Bad End on it...
1223 cmd
->state
= UB_CMDST_CLR2STS
;
1224 ub_cmdtr_state(sc
, cmd
);
1227 if (urb
->status
== -EOVERFLOW
) {
1229 * A babble? Failure, but we must transfer CSW now.
1230 * XXX This is going to end in perpetual babble. Reset.
1232 cmd
->error
= -EOVERFLOW
; /* A cheap trick... */
1233 ub_state_stat(sc
, cmd
);
1236 if (urb
->status
!= 0)
1239 cmd
->act_len
+= urb
->actual_length
;
1240 ub_cmdtr_act_len(sc
, cmd
);
1242 if (++cmd
->current_sg
< cmd
->nsg
) {
1243 ub_data_start(sc
, cmd
);
1246 ub_state_stat(sc
, cmd
);
1248 } else if (cmd
->state
== UB_CMDST_STAT
) {
1249 if (urb
->status
== -EPIPE
) {
1250 rc
= ub_submit_clear_stall(sc
, cmd
, sc
->last_pipe
);
1252 printk(KERN_NOTICE
"%s: "
1253 "unable to submit clear (%d)\n",
1256 * This is typically ENOMEM or some other such shit.
1257 * Retrying is pointless. Just do Bad End on it...
1263 * Having a stall when getting CSW is an error, so
1264 * make sure uppper levels are not oblivious to it.
1266 cmd
->error
= -EIO
; /* A cheap trick... */
1268 cmd
->state
= UB_CMDST_CLRRS
;
1269 ub_cmdtr_state(sc
, cmd
);
1272 if (urb
->status
== -EOVERFLOW
) {
1274 * XXX We are screwed here. Retrying is pointless,
1275 * because the pipelined data will not get in until
1276 * we read with a big enough buffer. We must reset XXX.
1280 if (urb
->status
!= 0)
1283 if (urb
->actual_length
== 0) {
1284 ub_state_stat_counted(sc
, cmd
);
1289 * Check the returned Bulk protocol status.
1290 * The status block has to be validated first.
1293 bcs
= &sc
->work_bcs
;
1295 if (sc
->signature
== cpu_to_le32(0)) {
1297 * This is the first reply, so do not perform the check.
1298 * Instead, remember the signature the device uses
1299 * for future checks. But do not allow a nul.
1301 sc
->signature
= bcs
->Signature
;
1302 if (sc
->signature
== cpu_to_le32(0)) {
1303 ub_state_stat_counted(sc
, cmd
);
1307 if (bcs
->Signature
!= sc
->signature
) {
1308 ub_state_stat_counted(sc
, cmd
);
1313 if (bcs
->Tag
!= cmd
->tag
) {
1315 * This usually happens when we disagree with the
1316 * device's microcode about something. For instance,
1317 * a few of them throw this after timeouts. They buffer
1318 * commands and reply at commands we timed out before.
1319 * Without flushing these replies we loop forever.
1321 ub_state_stat_counted(sc
, cmd
);
1325 rc
= le32_to_cpu(bcs
->Residue
);
1326 if (rc
!= cmd
->len
- cmd
->act_len
) {
1328 * It is all right to transfer less, the caller has
1329 * to check. But it's not all right if the device
1330 * counts disagree with our counts.
1332 /* P3 */ printk("%s: resid %d len %d act %d\n",
1333 sc
->name
, rc
, cmd
->len
, cmd
->act_len
);
1337 switch (bcs
->Status
) {
1338 case US_BULK_STAT_OK
:
1340 case US_BULK_STAT_FAIL
:
1341 ub_state_sense(sc
, cmd
);
1343 case US_BULK_STAT_PHASE
:
1344 /* XXX We must reset the transport here */
1345 /* P3 */ printk("%s: status PHASE\n", sc
->name
);
1348 printk(KERN_INFO
"%s: unknown CSW status 0x%x\n",
1349 sc
->name
, bcs
->Status
);
1353 /* Not zeroing error to preserve a babble indicator */
1354 if (cmd
->error
!= 0) {
1355 ub_state_sense(sc
, cmd
);
1358 cmd
->state
= UB_CMDST_DONE
;
1359 ub_cmdtr_state(sc
, cmd
);
1361 (*cmd
->done
)(sc
, cmd
);
1363 } else if (cmd
->state
== UB_CMDST_SENSE
) {
1364 ub_state_done(sc
, cmd
, -EIO
);
1367 printk(KERN_WARNING
"%s: "
1368 "wrong command state %d\n",
1369 sc
->name
, cmd
->state
);
1374 Bad_End
: /* Little Excel is dead */
1375 ub_state_done(sc
, cmd
, -EIO
);
1379 * Factorization helper for the command state machine:
1380 * Initiate a data segment transfer.
1382 static void ub_data_start(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1384 struct scatterlist
*sg
= &cmd
->sgv
[cmd
->current_sg
];
1388 UB_INIT_COMPLETION(sc
->work_done
);
1390 if (cmd
->dir
== UB_DIR_READ
)
1391 pipe
= sc
->recv_bulk_pipe
;
1393 pipe
= sc
->send_bulk_pipe
;
1394 sc
->last_pipe
= pipe
;
1395 usb_fill_bulk_urb(&sc
->work_urb
, sc
->dev
, pipe
,
1396 page_address(sg
->page
) + sg
->offset
, sg
->length
,
1397 ub_urb_complete
, sc
);
1398 sc
->work_urb
.transfer_flags
= 0;
1399 sc
->work_urb
.actual_length
= 0;
1400 sc
->work_urb
.error_count
= 0;
1401 sc
->work_urb
.status
= 0;
1403 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_ATOMIC
)) != 0) {
1404 /* XXX Clear stalls */
1405 printk("ub: data #%d submit failed (%d)\n", cmd
->tag
, rc
); /* P3 */
1406 ub_complete(&sc
->work_done
);
1407 ub_state_done(sc
, cmd
, rc
);
1411 sc
->work_timer
.expires
= jiffies
+ UB_DATA_TIMEOUT
;
1412 add_timer(&sc
->work_timer
);
1414 cmd
->state
= UB_CMDST_DATA
;
1415 ub_cmdtr_state(sc
, cmd
);
1419 * Factorization helper for the command state machine:
1420 * Finish the command.
1422 static void ub_state_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
, int rc
)
1426 cmd
->state
= UB_CMDST_DONE
;
1427 ub_cmdtr_state(sc
, cmd
);
1429 (*cmd
->done
)(sc
, cmd
);
1433 * Factorization helper for the command state machine:
1434 * Submit a CSW read.
1436 static int __ub_state_stat(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1440 UB_INIT_COMPLETION(sc
->work_done
);
1442 sc
->last_pipe
= sc
->recv_bulk_pipe
;
1443 usb_fill_bulk_urb(&sc
->work_urb
, sc
->dev
, sc
->recv_bulk_pipe
,
1444 &sc
->work_bcs
, US_BULK_CS_WRAP_LEN
, ub_urb_complete
, sc
);
1445 sc
->work_urb
.transfer_flags
= 0;
1446 sc
->work_urb
.actual_length
= 0;
1447 sc
->work_urb
.error_count
= 0;
1448 sc
->work_urb
.status
= 0;
1450 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_ATOMIC
)) != 0) {
1451 /* XXX Clear stalls */
1452 ub_complete(&sc
->work_done
);
1453 ub_state_done(sc
, cmd
, rc
);
1457 sc
->work_timer
.expires
= jiffies
+ UB_STAT_TIMEOUT
;
1458 add_timer(&sc
->work_timer
);
1463 * Factorization helper for the command state machine:
1464 * Submit a CSW read and go to STAT state.
1466 static void ub_state_stat(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1469 if (__ub_state_stat(sc
, cmd
) != 0)
1472 cmd
->stat_count
= 0;
1473 cmd
->state
= UB_CMDST_STAT
;
1474 ub_cmdtr_state(sc
, cmd
);
1478 * Factorization helper for the command state machine:
1479 * Submit a CSW read and go to STAT state with counter (along [C] path).
1481 static void ub_state_stat_counted(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1484 if (++cmd
->stat_count
>= 4) {
1485 ub_state_sense(sc
, cmd
);
1489 if (__ub_state_stat(sc
, cmd
) != 0)
1492 cmd
->state
= UB_CMDST_STAT
;
1493 ub_cmdtr_state(sc
, cmd
);
1497 * Factorization helper for the command state machine:
1498 * Submit a REQUEST SENSE and go to SENSE state.
1500 static void ub_state_sense(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1502 struct ub_scsi_cmd
*scmd
;
1503 struct scatterlist
*sg
;
1506 if (cmd
->cdb
[0] == REQUEST_SENSE
) {
1511 scmd
= &sc
->top_rqs_cmd
;
1512 memset(scmd
, 0, sizeof(struct ub_scsi_cmd
));
1513 scmd
->cdb
[0] = REQUEST_SENSE
;
1514 scmd
->cdb
[4] = UB_SENSE_SIZE
;
1516 scmd
->dir
= UB_DIR_READ
;
1517 scmd
->state
= UB_CMDST_INIT
;
1520 sg
->page
= virt_to_page(sc
->top_sense
);
1521 sg
->offset
= (unsigned int)sc
->top_sense
& (PAGE_SIZE
-1);
1522 sg
->length
= UB_SENSE_SIZE
;
1523 scmd
->len
= UB_SENSE_SIZE
;
1524 scmd
->lun
= cmd
->lun
;
1525 scmd
->done
= ub_top_sense_done
;
1528 scmd
->tag
= sc
->tagcnt
++;
1530 cmd
->state
= UB_CMDST_SENSE
;
1531 ub_cmdtr_state(sc
, cmd
);
1533 ub_cmdq_insert(sc
, scmd
);
1537 ub_state_done(sc
, cmd
, rc
);
1541 * A helper for the command's state machine:
1542 * Submit a stall clear.
1544 static int ub_submit_clear_stall(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
,
1548 struct usb_ctrlrequest
*cr
;
1551 endp
= usb_pipeendpoint(stalled_pipe
);
1552 if (usb_pipein (stalled_pipe
))
1556 cr
->bRequestType
= USB_RECIP_ENDPOINT
;
1557 cr
->bRequest
= USB_REQ_CLEAR_FEATURE
;
1558 cr
->wValue
= cpu_to_le16(USB_ENDPOINT_HALT
);
1559 cr
->wIndex
= cpu_to_le16(endp
);
1560 cr
->wLength
= cpu_to_le16(0);
1562 UB_INIT_COMPLETION(sc
->work_done
);
1564 usb_fill_control_urb(&sc
->work_urb
, sc
->dev
, sc
->send_ctrl_pipe
,
1565 (unsigned char*) cr
, NULL
, 0, ub_urb_complete
, sc
);
1566 sc
->work_urb
.transfer_flags
= 0;
1567 sc
->work_urb
.actual_length
= 0;
1568 sc
->work_urb
.error_count
= 0;
1569 sc
->work_urb
.status
= 0;
1571 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_ATOMIC
)) != 0) {
1572 ub_complete(&sc
->work_done
);
1576 sc
->work_timer
.expires
= jiffies
+ UB_CTRL_TIMEOUT
;
1577 add_timer(&sc
->work_timer
);
1583 static void ub_top_sense_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*scmd
)
1585 unsigned char *sense
= sc
->top_sense
;
1586 struct ub_scsi_cmd
*cmd
;
1589 * Ignoring scmd->act_len, because the buffer was pre-zeroed.
1591 ub_cmdtr_sense(sc
, scmd
, sense
);
1594 * Find the command which triggered the unit attention or a check,
1595 * save the sense into it, and advance its state machine.
1597 if ((cmd
= ub_cmdq_peek(sc
)) == NULL
) {
1598 printk(KERN_WARNING
"%s: sense done while idle\n", sc
->name
);
1601 if (cmd
!= scmd
->back
) {
1602 printk(KERN_WARNING
"%s: "
1603 "sense done for wrong command 0x%x\n",
1604 sc
->name
, cmd
->tag
);
1607 if (cmd
->state
!= UB_CMDST_SENSE
) {
1608 printk(KERN_WARNING
"%s: "
1609 "sense done with bad cmd state %d\n",
1610 sc
->name
, cmd
->state
);
1614 cmd
->key
= sense
[2] & 0x0F;
1615 cmd
->asc
= sense
[12];
1616 cmd
->ascq
= sense
[13];
1618 ub_scsi_urb_compl(sc
, cmd
);
1622 * This is called from a process context.
1624 static void ub_revalidate(struct ub_dev
*sc
, struct ub_lun
*lun
)
1627 lun
->readonly
= 0; /* XXX Query this from the device */
1629 lun
->capacity
.nsec
= 0;
1630 lun
->capacity
.bsize
= 512;
1631 lun
->capacity
.bshift
= 0;
1633 if (ub_sync_tur(sc
, lun
) != 0)
1634 return; /* Not ready */
1637 if (ub_sync_read_cap(sc
, lun
, &lun
->capacity
) != 0) {
1639 * The retry here means something is wrong, either with the
1640 * device, with the transport, or with our code.
1641 * We keep this because sd.c has retries for capacity.
1643 if (ub_sync_read_cap(sc
, lun
, &lun
->capacity
) != 0) {
1644 lun
->capacity
.nsec
= 0;
1645 lun
->capacity
.bsize
= 512;
1646 lun
->capacity
.bshift
= 0;
1653 * This is mostly needed to keep refcounting, but also to support
1654 * media checks on removable media drives.
1656 static int ub_bd_open(struct inode
*inode
, struct file
*filp
)
1658 struct gendisk
*disk
= inode
->i_bdev
->bd_disk
;
1661 unsigned long flags
;
1664 if ((lun
= disk
->private_data
) == NULL
)
1668 spin_lock_irqsave(&ub_lock
, flags
);
1669 if (atomic_read(&sc
->poison
)) {
1670 spin_unlock_irqrestore(&ub_lock
, flags
);
1674 spin_unlock_irqrestore(&ub_lock
, flags
);
1677 * This is a workaround for a specific problem in our block layer.
1678 * In 2.6.9, register_disk duplicates the code from rescan_partitions.
1679 * However, if we do add_disk with a device which persistently reports
1680 * a changed media, add_disk calls register_disk, which does do_open,
1681 * which will call rescan_paritions for changed media. After that,
1682 * register_disk attempts to do it all again and causes double kobject
1683 * registration and a eventually an oops on module removal.
1685 * The bottom line is, Al Viro says that we should not allow
1686 * bdev->bd_invalidated to be set when doing add_disk no matter what.
1688 if (lun
->first_open
) {
1689 lun
->first_open
= 0;
1696 if (lun
->removable
|| lun
->readonly
)
1697 check_disk_change(inode
->i_bdev
);
1700 * The sd.c considers ->media_present and ->changed not equivalent,
1701 * under some pretty murky conditions (a failure of READ CAPACITY).
1702 * We may need it one day.
1704 if (lun
->removable
&& lun
->changed
&& !(filp
->f_flags
& O_NDELAY
)) {
1709 if (lun
->readonly
&& (filp
->f_mode
& FMODE_WRITE
)) {
1723 static int ub_bd_release(struct inode
*inode
, struct file
*filp
)
1725 struct gendisk
*disk
= inode
->i_bdev
->bd_disk
;
1726 struct ub_lun
*lun
= disk
->private_data
;
1727 struct ub_dev
*sc
= lun
->udev
;
1734 * The ioctl interface.
1736 static int ub_bd_ioctl(struct inode
*inode
, struct file
*filp
,
1737 unsigned int cmd
, unsigned long arg
)
1739 struct gendisk
*disk
= inode
->i_bdev
->bd_disk
;
1740 void __user
*usermem
= (void __user
*) arg
;
1742 return scsi_cmd_ioctl(filp
, disk
, cmd
, usermem
);
1746 * This is called once a new disk was seen by the block layer or by ub_probe().
1747 * The main onjective here is to discover the features of the media such as
1748 * the capacity, read-only status, etc. USB storage generally does not
1749 * need to be spun up, but if we needed it, this would be the place.
1751 * This call can sleep.
1753 * The return code is not used.
1755 static int ub_bd_revalidate(struct gendisk
*disk
)
1757 struct ub_lun
*lun
= disk
->private_data
;
1759 ub_revalidate(lun
->udev
, lun
);
1761 /* XXX Support sector size switching like in sr.c */
1762 blk_queue_hardsect_size(disk
->queue
, lun
->capacity
.bsize
);
1763 set_capacity(disk
, lun
->capacity
.nsec
);
1764 // set_disk_ro(sdkp->disk, lun->readonly);
1770 * The check is called by the block layer to verify if the media
1771 * is still available. It is supposed to be harmless, lightweight and
1772 * non-intrusive in case the media was not changed.
1774 * This call can sleep.
1776 * The return code is bool!
1778 static int ub_bd_media_changed(struct gendisk
*disk
)
1780 struct ub_lun
*lun
= disk
->private_data
;
1782 if (!lun
->removable
)
1786 * We clean checks always after every command, so this is not
1787 * as dangerous as it looks. If the TEST_UNIT_READY fails here,
1788 * the device is actually not ready with operator or software
1789 * intervention required. One dangerous item might be a drive which
1790 * spins itself down, and come the time to write dirty pages, this
1791 * will fail, then block layer discards the data. Since we never
1792 * spin drives up, such devices simply cannot be used with ub anyway.
1794 if (ub_sync_tur(lun
->udev
, lun
) != 0) {
1799 return lun
->changed
;
1802 static struct block_device_operations ub_bd_fops
= {
1803 .owner
= THIS_MODULE
,
1805 .release
= ub_bd_release
,
1806 .ioctl
= ub_bd_ioctl
,
1807 .media_changed
= ub_bd_media_changed
,
1808 .revalidate_disk
= ub_bd_revalidate
,
1812 * Common ->done routine for commands executed synchronously.
1814 static void ub_probe_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1816 struct completion
*cop
= cmd
->back
;
1821 * Test if the device has a check condition on it, synchronously.
1823 static int ub_sync_tur(struct ub_dev
*sc
, struct ub_lun
*lun
)
1825 struct ub_scsi_cmd
*cmd
;
1826 enum { ALLOC_SIZE
= sizeof(struct ub_scsi_cmd
) };
1827 unsigned long flags
;
1828 struct completion
compl;
1831 init_completion(&compl);
1834 if ((cmd
= kmalloc(ALLOC_SIZE
, GFP_KERNEL
)) == NULL
)
1836 memset(cmd
, 0, ALLOC_SIZE
);
1838 cmd
->cdb
[0] = TEST_UNIT_READY
;
1840 cmd
->dir
= UB_DIR_NONE
;
1841 cmd
->state
= UB_CMDST_INIT
;
1842 cmd
->lun
= lun
; /* This may be NULL, but that's ok */
1843 cmd
->done
= ub_probe_done
;
1846 spin_lock_irqsave(&sc
->lock
, flags
);
1847 cmd
->tag
= sc
->tagcnt
++;
1849 rc
= ub_submit_scsi(sc
, cmd
);
1850 spin_unlock_irqrestore(&sc
->lock
, flags
);
1853 printk("ub: testing ready: submit error (%d)\n", rc
); /* P3 */
1857 wait_for_completion(&compl);
1861 if (rc
== -EIO
&& cmd
->key
!= 0) /* Retries for benh's key */
1871 * Read the SCSI capacity synchronously (for probing).
1873 static int ub_sync_read_cap(struct ub_dev
*sc
, struct ub_lun
*lun
,
1874 struct ub_capacity
*ret
)
1876 struct ub_scsi_cmd
*cmd
;
1877 struct scatterlist
*sg
;
1879 enum { ALLOC_SIZE
= sizeof(struct ub_scsi_cmd
) + 8 };
1880 unsigned long flags
;
1881 unsigned int bsize
, shift
;
1883 struct completion
compl;
1886 init_completion(&compl);
1889 if ((cmd
= kmalloc(ALLOC_SIZE
, GFP_KERNEL
)) == NULL
)
1891 memset(cmd
, 0, ALLOC_SIZE
);
1892 p
= (char *)cmd
+ sizeof(struct ub_scsi_cmd
);
1896 cmd
->dir
= UB_DIR_READ
;
1897 cmd
->state
= UB_CMDST_INIT
;
1900 sg
->page
= virt_to_page(p
);
1901 sg
->offset
= (unsigned int)p
& (PAGE_SIZE
-1);
1905 cmd
->done
= ub_probe_done
;
1908 spin_lock_irqsave(&sc
->lock
, flags
);
1909 cmd
->tag
= sc
->tagcnt
++;
1911 rc
= ub_submit_scsi(sc
, cmd
);
1912 spin_unlock_irqrestore(&sc
->lock
, flags
);
1915 printk("ub: reading capacity: submit error (%d)\n", rc
); /* P3 */
1919 wait_for_completion(&compl);
1921 if (cmd
->error
!= 0) {
1922 printk("ub: reading capacity: error %d\n", cmd
->error
); /* P3 */
1926 if (cmd
->act_len
!= 8) {
1927 printk("ub: reading capacity: size %d\n", cmd
->act_len
); /* P3 */
1932 /* sd.c special-cases sector size of 0 to mean 512. Needed? Safe? */
1933 nsec
= be32_to_cpu(*(__be32
*)p
) + 1;
1934 bsize
= be32_to_cpu(*(__be32
*)(p
+ 4));
1936 case 512: shift
= 0; break;
1937 case 1024: shift
= 1; break;
1938 case 2048: shift
= 2; break;
1939 case 4096: shift
= 3; break;
1941 printk("ub: Bad sector size %u\n", bsize
); /* P3 */
1947 ret
->bshift
= shift
;
1948 ret
->nsec
= nsec
<< shift
;
1961 static void ub_probe_urb_complete(struct urb
*urb
, struct pt_regs
*pt
)
1963 struct completion
*cop
= urb
->context
;
1967 static void ub_probe_timeout(unsigned long arg
)
1969 struct completion
*cop
= (struct completion
*) arg
;
1974 * Get number of LUNs by the way of Bulk GetMaxLUN command.
1976 static int ub_sync_getmaxlun(struct ub_dev
*sc
)
1978 int ifnum
= sc
->intf
->cur_altsetting
->desc
.bInterfaceNumber
;
1980 enum { ALLOC_SIZE
= 1 };
1981 struct usb_ctrlrequest
*cr
;
1982 struct completion
compl;
1983 struct timer_list timer
;
1987 init_completion(&compl);
1990 if ((p
= kmalloc(ALLOC_SIZE
, GFP_KERNEL
)) == NULL
)
1995 cr
->bRequestType
= USB_DIR_IN
| USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
1996 cr
->bRequest
= US_BULK_GET_MAX_LUN
;
1997 cr
->wValue
= cpu_to_le16(0);
1998 cr
->wIndex
= cpu_to_le16(ifnum
);
1999 cr
->wLength
= cpu_to_le16(1);
2001 usb_fill_control_urb(&sc
->work_urb
, sc
->dev
, sc
->recv_ctrl_pipe
,
2002 (unsigned char*) cr
, p
, 1, ub_probe_urb_complete
, &compl);
2003 sc
->work_urb
.transfer_flags
= 0;
2004 sc
->work_urb
.actual_length
= 0;
2005 sc
->work_urb
.error_count
= 0;
2006 sc
->work_urb
.status
= 0;
2008 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_KERNEL
)) != 0) {
2010 printk("%s: Stall at GetMaxLUN, using 1 LUN\n",
2014 "%s: Unable to submit GetMaxLUN (%d)\n",
2021 timer
.function
= ub_probe_timeout
;
2022 timer
.data
= (unsigned long) &compl;
2023 timer
.expires
= jiffies
+ UB_CTRL_TIMEOUT
;
2026 wait_for_completion(&compl);
2028 del_timer_sync(&timer
);
2029 usb_kill_urb(&sc
->work_urb
);
2031 if (sc
->work_urb
.actual_length
!= 1) {
2032 printk("%s: GetMaxLUN returned %d bytes\n", sc
->name
,
2033 sc
->work_urb
.actual_length
); /* P3 */
2036 if ((nluns
= *p
) == 55) {
2039 /* GetMaxLUN returns the maximum LUN number */
2041 if (nluns
> UB_MAX_LUNS
)
2042 nluns
= UB_MAX_LUNS
;
2044 printk("%s: GetMaxLUN returned %d, using %d LUNs\n", sc
->name
,
2045 *p
, nluns
); /* P3 */
2058 * Clear initial stalls.
2060 static int ub_probe_clear_stall(struct ub_dev
*sc
, int stalled_pipe
)
2063 struct usb_ctrlrequest
*cr
;
2064 struct completion
compl;
2065 struct timer_list timer
;
2068 init_completion(&compl);
2070 endp
= usb_pipeendpoint(stalled_pipe
);
2071 if (usb_pipein (stalled_pipe
))
2075 cr
->bRequestType
= USB_RECIP_ENDPOINT
;
2076 cr
->bRequest
= USB_REQ_CLEAR_FEATURE
;
2077 cr
->wValue
= cpu_to_le16(USB_ENDPOINT_HALT
);
2078 cr
->wIndex
= cpu_to_le16(endp
);
2079 cr
->wLength
= cpu_to_le16(0);
2081 usb_fill_control_urb(&sc
->work_urb
, sc
->dev
, sc
->send_ctrl_pipe
,
2082 (unsigned char*) cr
, NULL
, 0, ub_probe_urb_complete
, &compl);
2083 sc
->work_urb
.transfer_flags
= 0;
2084 sc
->work_urb
.actual_length
= 0;
2085 sc
->work_urb
.error_count
= 0;
2086 sc
->work_urb
.status
= 0;
2088 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_KERNEL
)) != 0) {
2090 "%s: Unable to submit a probe clear (%d)\n", sc
->name
, rc
);
2095 timer
.function
= ub_probe_timeout
;
2096 timer
.data
= (unsigned long) &compl;
2097 timer
.expires
= jiffies
+ UB_CTRL_TIMEOUT
;
2100 wait_for_completion(&compl);
2102 del_timer_sync(&timer
);
2103 usb_kill_urb(&sc
->work_urb
);
2105 /* reset the endpoint toggle */
2106 usb_settoggle(sc
->dev
, endp
, usb_pipeout(sc
->last_pipe
), 0);
2112 * Get the pipe settings.
2114 static int ub_get_pipes(struct ub_dev
*sc
, struct usb_device
*dev
,
2115 struct usb_interface
*intf
)
2117 struct usb_host_interface
*altsetting
= intf
->cur_altsetting
;
2118 struct usb_endpoint_descriptor
*ep_in
= NULL
;
2119 struct usb_endpoint_descriptor
*ep_out
= NULL
;
2120 struct usb_endpoint_descriptor
*ep
;
2124 * Find the endpoints we need.
2125 * We are expecting a minimum of 2 endpoints - in and out (bulk).
2126 * We will ignore any others.
2128 for (i
= 0; i
< altsetting
->desc
.bNumEndpoints
; i
++) {
2129 ep
= &altsetting
->endpoint
[i
].desc
;
2131 /* Is it a BULK endpoint? */
2132 if ((ep
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
)
2133 == USB_ENDPOINT_XFER_BULK
) {
2134 /* BULK in or out? */
2135 if (ep
->bEndpointAddress
& USB_DIR_IN
)
2142 if (ep_in
== NULL
|| ep_out
== NULL
) {
2143 printk(KERN_NOTICE
"%s: failed endpoint check\n",
2148 /* Calculate and store the pipe values */
2149 sc
->send_ctrl_pipe
= usb_sndctrlpipe(dev
, 0);
2150 sc
->recv_ctrl_pipe
= usb_rcvctrlpipe(dev
, 0);
2151 sc
->send_bulk_pipe
= usb_sndbulkpipe(dev
,
2152 ep_out
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
);
2153 sc
->recv_bulk_pipe
= usb_rcvbulkpipe(dev
,
2154 ep_in
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
);
2160 * Probing is done in the process context, which allows us to cheat
2161 * and not to build a state machine for the discovery.
2163 static int ub_probe(struct usb_interface
*intf
,
2164 const struct usb_device_id
*dev_id
)
2172 if ((sc
= kmalloc(sizeof(struct ub_dev
), GFP_KERNEL
)) == NULL
)
2174 memset(sc
, 0, sizeof(struct ub_dev
));
2175 spin_lock_init(&sc
->lock
);
2176 INIT_LIST_HEAD(&sc
->luns
);
2177 usb_init_urb(&sc
->work_urb
);
2178 tasklet_init(&sc
->tasklet
, ub_scsi_action
, (unsigned long)sc
);
2179 atomic_set(&sc
->poison
, 0);
2181 init_timer(&sc
->work_timer
);
2182 sc
->work_timer
.data
= (unsigned long) sc
;
2183 sc
->work_timer
.function
= ub_urb_timeout
;
2185 ub_init_completion(&sc
->work_done
);
2186 sc
->work_done
.done
= 1; /* A little yuk, but oh well... */
2188 sc
->dev
= interface_to_usbdev(intf
);
2190 // sc->ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
2191 usb_set_intfdata(intf
, sc
);
2192 usb_get_dev(sc
->dev
);
2193 // usb_get_intf(sc->intf); /* Do we need this? */
2195 snprintf(sc
->name
, 12, DRV_NAME
"(%d.%d)",
2196 sc
->dev
->bus
->busnum
, sc
->dev
->devnum
);
2198 /* XXX Verify that we can handle the device (from descriptors) */
2200 ub_get_pipes(sc
, sc
->dev
, intf
);
2202 if (device_create_file(&sc
->intf
->dev
, &dev_attr_diag
) != 0)
2206 * At this point, all USB initialization is done, do upper layer.
2207 * We really hate halfway initialized structures, so from the
2208 * invariants perspective, this ub_dev is fully constructed at
2213 * This is needed to clear toggles. It is a problem only if we do
2214 * `rmmod ub && modprobe ub` without disconnects, but we like that.
2216 ub_probe_clear_stall(sc
, sc
->recv_bulk_pipe
);
2217 ub_probe_clear_stall(sc
, sc
->send_bulk_pipe
);
2220 * The way this is used by the startup code is a little specific.
2221 * A SCSI check causes a USB stall. Our common case code sees it
2222 * and clears the check, after which the device is ready for use.
2223 * But if a check was not present, any command other than
2224 * TEST_UNIT_READY ends with a lockup (including REQUEST_SENSE).
2226 * If we neglect to clear the SCSI check, the first real command fails
2227 * (which is the capacity readout). We clear that and retry, but why
2228 * causing spurious retries for no reason.
2230 * Revalidation may start with its own TEST_UNIT_READY, but that one
2231 * has to succeed, so we clear checks with an additional one here.
2232 * In any case it's not our business how revaliadation is implemented.
2234 for (i
= 0; i
< 3; i
++) { /* Retries for benh's key */
2235 if ((rc
= ub_sync_tur(sc
, NULL
)) <= 0) break;
2236 if (rc
!= 0x6) break;
2241 for (i
= 0; i
< 3; i
++) {
2242 if ((rc
= ub_sync_getmaxlun(sc
)) < 0) {
2244 * Some devices (i.e. Iomega Zip100) need this --
2245 * apparently the bulk pipes get STALLed when the
2246 * GetMaxLUN request is processed.
2247 * XXX I have a ZIP-100, verify it does this.
2250 ub_probe_clear_stall(sc
, sc
->recv_bulk_pipe
);
2251 ub_probe_clear_stall(sc
, sc
->send_bulk_pipe
);
2262 for (i
= 0; i
< nluns
; i
++) {
2263 ub_probe_lun(sc
, i
);
2267 /* device_remove_file(&sc->intf->dev, &dev_attr_diag); */
2269 usb_set_intfdata(intf
, NULL
);
2270 // usb_put_intf(sc->intf);
2271 usb_put_dev(sc
->dev
);
2277 static int ub_probe_lun(struct ub_dev
*sc
, int lnum
)
2281 struct gendisk
*disk
;
2285 if ((lun
= kmalloc(sizeof(struct ub_lun
), GFP_KERNEL
)) == NULL
)
2287 memset(lun
, 0, sizeof(struct ub_lun
));
2291 if ((lun
->id
= ub_id_get()) == -1)
2295 list_add(&lun
->link
, &sc
->luns
);
2297 snprintf(lun
->name
, 16, DRV_NAME
"%c(%d.%d.%d)",
2298 lun
->id
+ 'a', sc
->dev
->bus
->busnum
, sc
->dev
->devnum
, lun
->num
);
2300 lun
->removable
= 1; /* XXX Query this from the device */
2301 lun
->changed
= 1; /* ub_revalidate clears only */
2302 lun
->first_open
= 1;
2303 ub_revalidate(sc
, lun
);
2306 if ((disk
= alloc_disk(UB_MINORS_PER_MAJOR
)) == NULL
)
2310 sprintf(disk
->disk_name
, DRV_NAME
"%c", lun
->id
+ 'a');
2311 sprintf(disk
->devfs_name
, DEVFS_NAME
"/%c", lun
->id
+ 'a');
2312 disk
->major
= UB_MAJOR
;
2313 disk
->first_minor
= lun
->id
* UB_MINORS_PER_MAJOR
;
2314 disk
->fops
= &ub_bd_fops
;
2315 disk
->private_data
= lun
;
2316 disk
->driverfs_dev
= &sc
->intf
->dev
; /* XXX Many to one ok? */
2319 if ((q
= blk_init_queue(ub_request_fn
, &sc
->lock
)) == NULL
)
2324 blk_queue_bounce_limit(q
, BLK_BOUNCE_HIGH
);
2325 blk_queue_max_hw_segments(q
, UB_MAX_REQ_SG
);
2326 blk_queue_max_phys_segments(q
, UB_MAX_REQ_SG
);
2327 blk_queue_segment_boundary(q
, 0xffffffff); /* Dubious. */
2328 blk_queue_max_sectors(q
, UB_MAX_SECTORS
);
2329 blk_queue_hardsect_size(q
, lun
->capacity
.bsize
);
2333 set_capacity(disk
, lun
->capacity
.nsec
);
2335 disk
->flags
|= GENHD_FL_REMOVABLE
;
2344 list_del(&lun
->link
);
2352 static void ub_disconnect(struct usb_interface
*intf
)
2354 struct ub_dev
*sc
= usb_get_intfdata(intf
);
2355 struct list_head
*p
;
2357 struct gendisk
*disk
;
2358 unsigned long flags
;
2361 * Prevent ub_bd_release from pulling the rug from under us.
2362 * XXX This is starting to look like a kref.
2363 * XXX Why not to take this ref at probe time?
2365 spin_lock_irqsave(&ub_lock
, flags
);
2367 spin_unlock_irqrestore(&ub_lock
, flags
);
2370 * Fence stall clearnings, operations triggered by unlinkings and so on.
2371 * We do not attempt to unlink any URBs, because we do not trust the
2372 * unlink paths in HC drivers. Also, we get -84 upon disconnect anyway.
2374 atomic_set(&sc
->poison
, 1);
2377 * Blow away queued commands.
2379 * Actually, this never works, because before we get here
2380 * the HCD terminates outstanding URB(s). It causes our
2381 * SCSI command queue to advance, commands fail to submit,
2382 * and the whole queue drains. So, we just use this code to
2385 spin_lock_irqsave(&sc
->lock
, flags
);
2387 struct ub_scsi_cmd
*cmd
;
2389 while ((cmd
= ub_cmdq_pop(sc
)) != NULL
) {
2390 cmd
->error
= -ENOTCONN
;
2391 cmd
->state
= UB_CMDST_DONE
;
2392 ub_cmdtr_state(sc
, cmd
);
2394 (*cmd
->done
)(sc
, cmd
);
2398 printk(KERN_WARNING
"%s: "
2399 "%d was queued after shutdown\n", sc
->name
, cnt
);
2402 spin_unlock_irqrestore(&sc
->lock
, flags
);
2405 * Unregister the upper layer.
2407 list_for_each (p
, &sc
->luns
) {
2408 lun
= list_entry(p
, struct ub_lun
, link
);
2410 if (disk
->flags
& GENHD_FL_UP
)
2413 * I wish I could do:
2414 * set_bit(QUEUE_FLAG_DEAD, &q->queue_flags);
2415 * As it is, we rely on our internal poisoning and let
2416 * the upper levels to spin furiously failing all the I/O.
2421 * Taking a lock on a structure which is about to be freed
2422 * is very nonsensual. Here it is largely a way to do a debug freeze,
2423 * and a bracket which shows where the nonsensual code segment ends.
2425 * Testing for -EINPROGRESS is always a bug, so we are bending
2426 * the rules a little.
2428 spin_lock_irqsave(&sc
->lock
, flags
);
2429 if (sc
->work_urb
.status
== -EINPROGRESS
) { /* janitors: ignore */
2430 printk(KERN_WARNING
"%s: "
2431 "URB is active after disconnect\n", sc
->name
);
2433 spin_unlock_irqrestore(&sc
->lock
, flags
);
2436 * There is virtually no chance that other CPU runs times so long
2437 * after ub_urb_complete should have called del_timer, but only if HCD
2438 * didn't forget to deliver a callback on unlink.
2440 del_timer_sync(&sc
->work_timer
);
2443 * At this point there must be no commands coming from anyone
2444 * and no URBs left in transit.
2447 device_remove_file(&sc
->intf
->dev
, &dev_attr_diag
);
2448 usb_set_intfdata(intf
, NULL
);
2449 // usb_put_intf(sc->intf);
2451 usb_put_dev(sc
->dev
);
2457 static struct usb_driver ub_driver
= {
2458 .owner
= THIS_MODULE
,
2461 .disconnect
= ub_disconnect
,
2462 .id_table
= ub_usb_ids
,
2465 static int __init
ub_init(void)
2469 /* P3 */ printk("ub: sizeof ub_scsi_cmd %zu ub_dev %zu ub_lun %zu\n",
2470 sizeof(struct ub_scsi_cmd
), sizeof(struct ub_dev
), sizeof(struct ub_lun
));
2472 if ((rc
= register_blkdev(UB_MAJOR
, DRV_NAME
)) != 0)
2474 devfs_mk_dir(DEVFS_NAME
);
2476 if ((rc
= usb_register(&ub_driver
)) != 0)
2482 devfs_remove(DEVFS_NAME
);
2483 unregister_blkdev(UB_MAJOR
, DRV_NAME
);
2488 static void __exit
ub_exit(void)
2490 usb_deregister(&ub_driver
);
2492 devfs_remove(DEVFS_NAME
);
2493 unregister_blkdev(UB_MAJOR
, DRV_NAME
);
2496 module_init(ub_init
);
2497 module_exit(ub_exit
);
2499 MODULE_LICENSE("GPL");