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 * -- Return sense now that rq allows it (we always auto-sense anyway).
12 * -- set readonly flag for CDs, set removable flag for CF readers
13 * -- do inquiry and verify we got a disk and not a tape (for LUN mismatch)
14 * -- verify the 13 conditions and do bulk resets
16 * -- move top_sense and work_bcs into separate allocations (if they survive)
17 * for cache purists and esoteric architectures.
18 * -- Allocate structure for LUN 0 before the first ub_sync_tur, avoid NULL. ?
19 * -- prune comments, they are too volumnous
21 * -- CLEAR, CLR2STS, CLRRS seem to be ripe for refactoring.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/usb.h>
26 #include <linux/usb_usual.h>
27 #include <linux/blkdev.h>
28 #include <linux/timer.h>
29 #include <linux/scatterlist.h>
30 #include <linux/slab.h>
31 #include <linux/mutex.h>
32 #include <scsi/scsi.h>
39 * The command state machine is the key model for understanding of this driver.
41 * The general rule is that all transitions are done towards the bottom
42 * of the diagram, thus preventing any loops.
44 * An exception to that is how the STAT state is handled. A counter allows it
45 * to be re-entered along the path marked with [C].
51 * ub_scsi_cmd_start fails ->--------------------------------------\
58 * was -EPIPE -->-------------------------------->! CLEAR ! !
61 * was error -->------------------------------------- ! --------->\
63 * /--<-- cmd->dir == NONE ? ! !
70 * ! was -EPIPE -->--------------->! CLR2STS ! ! !
73 * ! ! was error -->---- ! --------->\
74 * ! was error -->--------------------- ! ------------- ! --------->\
77 * \--->+--------+ ! ! !
78 * ! STAT !<--------------------------/ ! !
81 * [C] was -EPIPE -->-----------\ ! !
83 * +<---- len == 0 ! ! !
85 * ! was error -->--------------------------------------!---------->\
87 * +<---- bad CSW ! ! !
88 * +<---- bad tag ! ! !
94 * \------- ! --------------------[C]--------\ ! !
96 * cmd->error---\ +--------+ ! !
97 * ! +--------------->! SENSE !<----------/ !
98 * STAT_FAIL----/ +--------+ !
101 * \--------------------------------\--------------------->! DONE !
106 * This many LUNs per USB device.
107 * Every one of them takes a host, see UB_MAX_HOSTS.
109 #define UB_MAX_LUNS 9
114 #define UB_PARTS_PER_LUN 8
116 #define UB_MAX_CDB_SIZE 16 /* Corresponds to Bulk */
118 #define UB_SENSE_SIZE 18
123 /* command block wrapper */
124 struct bulk_cb_wrap
{
125 __le32 Signature
; /* contains 'USBC' */
126 u32 Tag
; /* unique per command id */
127 __le32 DataTransferLength
; /* size of data */
128 u8 Flags
; /* direction in bit 0 */
130 u8 Length
; /* of of the CDB */
131 u8 CDB
[UB_MAX_CDB_SIZE
]; /* max command */
134 #define US_BULK_CB_WRAP_LEN 31
135 #define US_BULK_CB_SIGN 0x43425355 /*spells out USBC */
136 #define US_BULK_FLAG_IN 1
137 #define US_BULK_FLAG_OUT 0
139 /* command status wrapper */
140 struct bulk_cs_wrap
{
141 __le32 Signature
; /* should = 'USBS' */
142 u32 Tag
; /* same as original command */
143 __le32 Residue
; /* amount not transferred */
144 u8 Status
; /* see below */
147 #define US_BULK_CS_WRAP_LEN 13
148 #define US_BULK_CS_SIGN 0x53425355 /* spells out 'USBS' */
149 #define US_BULK_STAT_OK 0
150 #define US_BULK_STAT_FAIL 1
151 #define US_BULK_STAT_PHASE 2
153 /* bulk-only class specific requests */
154 #define US_BULK_RESET_REQUEST 0xff
155 #define US_BULK_GET_MAX_LUN 0xfe
161 #define UB_MAX_REQ_SG 9 /* cdrecord requires 32KB and maybe a header */
162 #define UB_MAX_SECTORS 64
165 * A second is more than enough for a 32K transfer (UB_MAX_SECTORS)
166 * even if a webcam hogs the bus, but some devices need time to spin up.
168 #define UB_URB_TIMEOUT (HZ*2)
169 #define UB_DATA_TIMEOUT (HZ*5) /* ZIP does spin-ups in the data phase */
170 #define UB_STAT_TIMEOUT (HZ*5) /* Same spinups and eject for a dataless cmd. */
171 #define UB_CTRL_TIMEOUT (HZ/2) /* 500ms ought to be enough to clear a stall */
174 * An instance of a SCSI command in transit.
176 #define UB_DIR_NONE 0
177 #define UB_DIR_READ 1
178 #define UB_DIR_ILLEGAL2 2
179 #define UB_DIR_WRITE 3
181 #define UB_DIR_CHAR(c) (((c)==UB_DIR_WRITE)? 'w': \
182 (((c)==UB_DIR_READ)? 'r': 'n'))
184 enum ub_scsi_cmd_state
{
185 UB_CMDST_INIT
, /* Initial state */
186 UB_CMDST_CMD
, /* Command submitted */
187 UB_CMDST_DATA
, /* Data phase */
188 UB_CMDST_CLR2STS
, /* Clearing before requesting status */
189 UB_CMDST_STAT
, /* Status phase */
190 UB_CMDST_CLEAR
, /* Clearing a stall (halt, actually) */
191 UB_CMDST_CLRRS
, /* Clearing before retrying status */
192 UB_CMDST_SENSE
, /* Sending Request Sense */
193 UB_CMDST_DONE
/* Final state */
197 unsigned char cdb
[UB_MAX_CDB_SIZE
];
198 unsigned char cdb_len
;
200 unsigned char dir
; /* 0 - none, 1 - read, 3 - write. */
201 enum ub_scsi_cmd_state state
;
203 struct ub_scsi_cmd
*next
;
205 int error
; /* Return code - valid upon done */
206 unsigned int act_len
; /* Return size */
207 unsigned char key
, asc
, ascq
; /* May be valid if error==-EIO */
209 int stat_count
; /* Retries getting status. */
210 unsigned int timeo
; /* jiffies until rq->timeout changes */
212 unsigned int len
; /* Requested length */
213 unsigned int current_sg
;
214 unsigned int nsg
; /* sgv[nsg] */
215 struct scatterlist sgv
[UB_MAX_REQ_SG
];
218 void (*done
)(struct ub_dev
*, struct ub_scsi_cmd
*);
224 unsigned int current_try
;
225 unsigned int nsg
; /* sgv[nsg] */
226 struct scatterlist sgv
[UB_MAX_REQ_SG
];
232 unsigned long nsec
; /* Linux size - 512 byte sectors */
233 unsigned int bsize
; /* Linux hardsect_size */
234 unsigned int bshift
; /* Shift between 512 and hard sects */
238 * This is a direct take-off from linux/include/completion.h
239 * The difference is that I do not wait on this thing, just poll.
240 * When I want to wait (ub_probe), I just use the stock completion.
242 * Note that INIT_COMPLETION takes no lock. It is correct. But why
243 * in the bloody hell that thing takes struct instead of pointer to struct
244 * is quite beyond me. I just copied it from the stock completion.
246 struct ub_completion
{
251 static DEFINE_MUTEX(ub_mutex
);
252 static inline void ub_init_completion(struct ub_completion
*x
)
255 spin_lock_init(&x
->lock
);
258 #define UB_INIT_COMPLETION(x) ((x).done = 0)
260 static void ub_complete(struct ub_completion
*x
)
264 spin_lock_irqsave(&x
->lock
, flags
);
266 spin_unlock_irqrestore(&x
->lock
, flags
);
269 static int ub_is_completed(struct ub_completion
*x
)
274 spin_lock_irqsave(&x
->lock
, flags
);
276 spin_unlock_irqrestore(&x
->lock
, flags
);
282 struct ub_scsi_cmd_queue
{
284 struct ub_scsi_cmd
*head
, *tail
;
288 * The block device instance (one per LUN).
292 struct list_head link
;
293 struct gendisk
*disk
;
294 int id
; /* Host index */
295 int num
; /* LUN number */
298 int changed
; /* Media was changed */
302 struct ub_request urq
;
304 /* Use Ingo's mempool if or when we have more than one command. */
306 * Currently we never need more than one command for the whole device.
307 * However, giving every LUN a command is a cheap and automatic way
308 * to enforce fairness between them.
311 struct ub_scsi_cmd cmdv
[1];
313 struct ub_capacity capacity
;
317 * The USB device instance.
321 atomic_t poison
; /* The USB device is disconnected */
322 int openc
; /* protected by ub_lock! */
323 /* kref is too implicit for our taste */
324 int reset
; /* Reset is running */
328 struct usb_device
*dev
;
329 struct usb_interface
*intf
;
331 struct list_head luns
;
333 unsigned int send_bulk_pipe
; /* cached pipe values */
334 unsigned int recv_bulk_pipe
;
335 unsigned int send_ctrl_pipe
;
336 unsigned int recv_ctrl_pipe
;
338 struct tasklet_struct tasklet
;
340 struct ub_scsi_cmd_queue cmd_queue
;
341 struct ub_scsi_cmd top_rqs_cmd
; /* REQUEST SENSE */
342 unsigned char top_sense
[UB_SENSE_SIZE
];
344 struct ub_completion work_done
;
346 struct timer_list work_timer
;
347 int last_pipe
; /* What might need clearing */
348 __le32 signature
; /* Learned signature */
349 struct bulk_cb_wrap work_bcb
;
350 struct bulk_cs_wrap work_bcs
;
351 struct usb_ctrlrequest work_cr
;
353 struct work_struct reset_work
;
354 wait_queue_head_t reset_wait
;
359 static void ub_cleanup(struct ub_dev
*sc
);
360 static int ub_request_fn_1(struct ub_lun
*lun
, struct request
*rq
);
361 static void ub_cmd_build_block(struct ub_dev
*sc
, struct ub_lun
*lun
,
362 struct ub_scsi_cmd
*cmd
, struct ub_request
*urq
);
363 static void ub_cmd_build_packet(struct ub_dev
*sc
, struct ub_lun
*lun
,
364 struct ub_scsi_cmd
*cmd
, struct ub_request
*urq
);
365 static void ub_rw_cmd_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
366 static void ub_end_rq(struct request
*rq
, unsigned int status
);
367 static int ub_rw_cmd_retry(struct ub_dev
*sc
, struct ub_lun
*lun
,
368 struct ub_request
*urq
, struct ub_scsi_cmd
*cmd
);
369 static int ub_submit_scsi(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
370 static void ub_urb_complete(struct urb
*urb
);
371 static void ub_scsi_action(unsigned long _dev
);
372 static void ub_scsi_dispatch(struct ub_dev
*sc
);
373 static void ub_scsi_urb_compl(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
374 static void ub_data_start(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
375 static void ub_state_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
, int rc
);
376 static int __ub_state_stat(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
377 static void ub_state_stat(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
378 static void ub_state_stat_counted(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
379 static void ub_state_sense(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
);
380 static int ub_submit_clear_stall(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
,
382 static void ub_top_sense_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*scmd
);
383 static void ub_reset_enter(struct ub_dev
*sc
, int try);
384 static void ub_reset_task(struct work_struct
*work
);
385 static int ub_sync_tur(struct ub_dev
*sc
, struct ub_lun
*lun
);
386 static int ub_sync_read_cap(struct ub_dev
*sc
, struct ub_lun
*lun
,
387 struct ub_capacity
*ret
);
388 static int ub_sync_reset(struct ub_dev
*sc
);
389 static int ub_probe_clear_stall(struct ub_dev
*sc
, int stalled_pipe
);
390 static int ub_probe_lun(struct ub_dev
*sc
, int lnum
);
394 #ifdef CONFIG_USB_LIBUSUAL
396 #define ub_usb_ids usb_storage_usb_ids
399 static const struct usb_device_id ub_usb_ids
[] = {
400 { USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE
, USB_SC_SCSI
, USB_PR_BULK
) },
404 MODULE_DEVICE_TABLE(usb
, ub_usb_ids
);
405 #endif /* CONFIG_USB_LIBUSUAL */
408 * Find me a way to identify "next free minor" for add_disk(),
409 * and the array disappears the next day. However, the number of
410 * hosts has something to do with the naming and /proc/partitions.
411 * This has to be thought out in detail before changing.
412 * If UB_MAX_HOST was 1000, we'd use a bitmap. Or a better data structure.
414 #define UB_MAX_HOSTS 26
415 static char ub_hostv
[UB_MAX_HOSTS
];
417 #define UB_QLOCK_NUM 5
418 static spinlock_t ub_qlockv
[UB_QLOCK_NUM
];
419 static int ub_qlock_next
= 0;
421 static DEFINE_SPINLOCK(ub_lock
); /* Locks globals and ->openc */
426 * This also stores the host for indexing by minor, which is somewhat dirty.
428 static int ub_id_get(void)
433 spin_lock_irqsave(&ub_lock
, flags
);
434 for (i
= 0; i
< UB_MAX_HOSTS
; i
++) {
435 if (ub_hostv
[i
] == 0) {
437 spin_unlock_irqrestore(&ub_lock
, flags
);
441 spin_unlock_irqrestore(&ub_lock
, flags
);
445 static void ub_id_put(int id
)
449 if (id
< 0 || id
>= UB_MAX_HOSTS
) {
450 printk(KERN_ERR DRV_NAME
": bad host ID %d\n", id
);
454 spin_lock_irqsave(&ub_lock
, flags
);
455 if (ub_hostv
[id
] == 0) {
456 spin_unlock_irqrestore(&ub_lock
, flags
);
457 printk(KERN_ERR DRV_NAME
": freeing free host ID %d\n", id
);
461 spin_unlock_irqrestore(&ub_lock
, flags
);
465 * This is necessitated by the fact that blk_cleanup_queue does not
466 * necesserily destroy the queue. Instead, it may merely decrease q->refcnt.
467 * Since our blk_init_queue() passes a spinlock common with ub_dev,
468 * we have life time issues when ub_cleanup frees ub_dev.
470 static spinlock_t
*ub_next_lock(void)
475 spin_lock_irqsave(&ub_lock
, flags
);
476 ret
= &ub_qlockv
[ub_qlock_next
];
477 ub_qlock_next
= (ub_qlock_next
+ 1) % UB_QLOCK_NUM
;
478 spin_unlock_irqrestore(&ub_lock
, flags
);
483 * Downcount for deallocation. This rides on two assumptions:
484 * - once something is poisoned, its refcount cannot grow
485 * - opens cannot happen at this time (del_gendisk was done)
486 * If the above is true, we can drop the lock, which we need for
487 * blk_cleanup_queue(): the silly thing may attempt to sleep.
488 * [Actually, it never needs to sleep for us, but it calls might_sleep()]
490 static void ub_put(struct ub_dev
*sc
)
494 spin_lock_irqsave(&ub_lock
, flags
);
496 if (sc
->openc
== 0 && atomic_read(&sc
->poison
)) {
497 spin_unlock_irqrestore(&ub_lock
, flags
);
500 spin_unlock_irqrestore(&ub_lock
, flags
);
505 * Final cleanup and deallocation.
507 static void ub_cleanup(struct ub_dev
*sc
)
511 struct request_queue
*q
;
513 while (!list_empty(&sc
->luns
)) {
515 lun
= list_entry(p
, struct ub_lun
, link
);
518 /* I don't think queue can be NULL. But... Stolen from sx8.c */
519 if ((q
= lun
->disk
->queue
) != NULL
)
520 blk_cleanup_queue(q
);
522 * If we zero disk->private_data BEFORE put_disk, we have
523 * to check for NULL all over the place in open, release,
524 * check_media and revalidate, because the block level
525 * semaphore is well inside the put_disk.
526 * But we cannot zero after the call, because *disk is gone.
527 * The sd.c is blatantly racy in this area.
529 /* disk->private_data = NULL; */
537 usb_set_intfdata(sc
->intf
, NULL
);
538 usb_put_intf(sc
->intf
);
539 usb_put_dev(sc
->dev
);
544 * The "command allocator".
546 static struct ub_scsi_cmd
*ub_get_cmd(struct ub_lun
*lun
)
548 struct ub_scsi_cmd
*ret
;
557 static void ub_put_cmd(struct ub_lun
*lun
, struct ub_scsi_cmd
*cmd
)
559 if (cmd
!= &lun
->cmdv
[0]) {
560 printk(KERN_WARNING
"%s: releasing a foreign cmd %p\n",
565 printk(KERN_WARNING
"%s: releasing a free cmd\n", lun
->name
);
574 static void ub_cmdq_add(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
576 struct ub_scsi_cmd_queue
*t
= &sc
->cmd_queue
;
578 if (t
->qlen
++ == 0) {
586 if (t
->qlen
> t
->qmax
)
590 static void ub_cmdq_insert(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
592 struct ub_scsi_cmd_queue
*t
= &sc
->cmd_queue
;
594 if (t
->qlen
++ == 0) {
602 if (t
->qlen
> t
->qmax
)
606 static struct ub_scsi_cmd
*ub_cmdq_pop(struct ub_dev
*sc
)
608 struct ub_scsi_cmd_queue
*t
= &sc
->cmd_queue
;
609 struct ub_scsi_cmd
*cmd
;
621 #define ub_cmdq_peek(sc) ((sc)->cmd_queue.head)
624 * The request function is our main entry point
627 static void ub_request_fn(struct request_queue
*q
)
629 struct ub_lun
*lun
= q
->queuedata
;
632 while ((rq
= blk_peek_request(q
)) != NULL
) {
633 if (ub_request_fn_1(lun
, rq
) != 0) {
640 static int ub_request_fn_1(struct ub_lun
*lun
, struct request
*rq
)
642 struct ub_dev
*sc
= lun
->udev
;
643 struct ub_scsi_cmd
*cmd
;
644 struct ub_request
*urq
;
647 if (atomic_read(&sc
->poison
)) {
648 blk_start_request(rq
);
649 ub_end_rq(rq
, DID_NO_CONNECT
<< 16);
653 if (lun
->changed
&& rq
->cmd_type
!= REQ_TYPE_BLOCK_PC
) {
654 blk_start_request(rq
);
655 ub_end_rq(rq
, SAM_STAT_CHECK_CONDITION
);
659 if (lun
->urq
.rq
!= NULL
)
661 if ((cmd
= ub_get_cmd(lun
)) == NULL
)
663 memset(cmd
, 0, sizeof(struct ub_scsi_cmd
));
665 blk_start_request(rq
);
668 memset(urq
, 0, sizeof(struct ub_request
));
672 * get scatterlist from block layer
674 sg_init_table(&urq
->sgv
[0], UB_MAX_REQ_SG
);
675 n_elem
= blk_rq_map_sg(lun
->disk
->queue
, rq
, &urq
->sgv
[0]);
677 /* Impossible, because blk_rq_map_sg should not hit ENOMEM. */
678 printk(KERN_INFO
"%s: failed request map (%d)\n",
682 if (n_elem
> UB_MAX_REQ_SG
) { /* Paranoia */
683 printk(KERN_WARNING
"%s: request with %d segments\n",
689 if (rq
->cmd_type
== REQ_TYPE_BLOCK_PC
) {
690 ub_cmd_build_packet(sc
, lun
, cmd
, urq
);
692 ub_cmd_build_block(sc
, lun
, cmd
, urq
);
694 cmd
->state
= UB_CMDST_INIT
;
696 cmd
->done
= ub_rw_cmd_done
;
699 cmd
->tag
= sc
->tagcnt
++;
700 if (ub_submit_scsi(sc
, cmd
) != 0)
706 ub_put_cmd(lun
, cmd
);
707 ub_end_rq(rq
, DID_ERROR
<< 16);
711 static void ub_cmd_build_block(struct ub_dev
*sc
, struct ub_lun
*lun
,
712 struct ub_scsi_cmd
*cmd
, struct ub_request
*urq
)
714 struct request
*rq
= urq
->rq
;
715 unsigned int block
, nblks
;
717 if (rq_data_dir(rq
) == WRITE
)
718 cmd
->dir
= UB_DIR_WRITE
;
720 cmd
->dir
= UB_DIR_READ
;
723 memcpy(cmd
->sgv
, urq
->sgv
, sizeof(struct scatterlist
) * cmd
->nsg
);
728 * The call to blk_queue_logical_block_size() guarantees that request
729 * is aligned, but it is given in terms of 512 byte units, always.
731 block
= blk_rq_pos(rq
) >> lun
->capacity
.bshift
;
732 nblks
= blk_rq_sectors(rq
) >> lun
->capacity
.bshift
;
734 cmd
->cdb
[0] = (cmd
->dir
== UB_DIR_READ
)? READ_10
: WRITE_10
;
735 /* 10-byte uses 4 bytes of LBA: 2147483648KB, 2097152MB, 2048GB */
736 cmd
->cdb
[2] = block
>> 24;
737 cmd
->cdb
[3] = block
>> 16;
738 cmd
->cdb
[4] = block
>> 8;
740 cmd
->cdb
[7] = nblks
>> 8;
744 cmd
->len
= blk_rq_bytes(rq
);
747 static void ub_cmd_build_packet(struct ub_dev
*sc
, struct ub_lun
*lun
,
748 struct ub_scsi_cmd
*cmd
, struct ub_request
*urq
)
750 struct request
*rq
= urq
->rq
;
752 if (blk_rq_bytes(rq
) == 0) {
753 cmd
->dir
= UB_DIR_NONE
;
755 if (rq_data_dir(rq
) == WRITE
)
756 cmd
->dir
= UB_DIR_WRITE
;
758 cmd
->dir
= UB_DIR_READ
;
762 memcpy(cmd
->sgv
, urq
->sgv
, sizeof(struct scatterlist
) * cmd
->nsg
);
764 memcpy(&cmd
->cdb
, rq
->cmd
, rq
->cmd_len
);
765 cmd
->cdb_len
= rq
->cmd_len
;
767 cmd
->len
= blk_rq_bytes(rq
);
770 * To reapply this to every URB is not as incorrect as it looks.
771 * In return, we avoid any complicated tracking calculations.
773 cmd
->timeo
= rq
->timeout
;
776 static void ub_rw_cmd_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
778 struct ub_lun
*lun
= cmd
->lun
;
779 struct ub_request
*urq
= cmd
->back
;
781 unsigned int scsi_status
;
785 if (cmd
->error
== 0) {
786 if (rq
->cmd_type
== REQ_TYPE_BLOCK_PC
) {
787 if (cmd
->act_len
>= rq
->resid_len
)
790 rq
->resid_len
-= cmd
->act_len
;
793 if (cmd
->act_len
!= cmd
->len
) {
794 scsi_status
= SAM_STAT_CHECK_CONDITION
;
800 if (rq
->cmd_type
== REQ_TYPE_BLOCK_PC
) {
801 /* UB_SENSE_SIZE is smaller than SCSI_SENSE_BUFFERSIZE */
802 memcpy(rq
->sense
, sc
->top_sense
, UB_SENSE_SIZE
);
803 rq
->sense_len
= UB_SENSE_SIZE
;
804 if (sc
->top_sense
[0] != 0)
805 scsi_status
= SAM_STAT_CHECK_CONDITION
;
807 scsi_status
= DID_ERROR
<< 16;
809 if (cmd
->error
== -EIO
&&
811 cmd
->key
== MEDIUM_ERROR
||
812 cmd
->key
== UNIT_ATTENTION
)) {
813 if (ub_rw_cmd_retry(sc
, lun
, urq
, cmd
) == 0)
816 scsi_status
= SAM_STAT_CHECK_CONDITION
;
822 ub_put_cmd(lun
, cmd
);
823 ub_end_rq(rq
, scsi_status
);
824 blk_start_queue(lun
->disk
->queue
);
827 static void ub_end_rq(struct request
*rq
, unsigned int scsi_status
)
831 if (scsi_status
== 0) {
835 rq
->errors
= scsi_status
;
837 __blk_end_request_all(rq
, error
);
840 static int ub_rw_cmd_retry(struct ub_dev
*sc
, struct ub_lun
*lun
,
841 struct ub_request
*urq
, struct ub_scsi_cmd
*cmd
)
844 if (atomic_read(&sc
->poison
))
847 ub_reset_enter(sc
, urq
->current_try
);
849 if (urq
->current_try
>= 3)
853 /* Remove this if anyone complains of flooding. */
854 printk(KERN_DEBUG
"%s: dir %c len/act %d/%d "
855 "[sense %x %02x %02x] retry %d\n",
856 sc
->name
, UB_DIR_CHAR(cmd
->dir
), cmd
->len
, cmd
->act_len
,
857 cmd
->key
, cmd
->asc
, cmd
->ascq
, urq
->current_try
);
859 memset(cmd
, 0, sizeof(struct ub_scsi_cmd
));
860 ub_cmd_build_block(sc
, lun
, cmd
, urq
);
862 cmd
->state
= UB_CMDST_INIT
;
864 cmd
->done
= ub_rw_cmd_done
;
867 cmd
->tag
= sc
->tagcnt
++;
870 return ub_submit_scsi(sc
, cmd
);
872 ub_cmdq_add(sc
, cmd
);
878 * Submit a regular SCSI operation (not an auto-sense).
880 * The Iron Law of Good Submit Routine is:
881 * Zero return - callback is done, Nonzero return - callback is not done.
884 * Host is assumed locked.
886 static int ub_submit_scsi(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
889 if (cmd
->state
!= UB_CMDST_INIT
||
890 (cmd
->dir
!= UB_DIR_NONE
&& cmd
->len
== 0)) {
894 ub_cmdq_add(sc
, cmd
);
896 * We can call ub_scsi_dispatch(sc) right away here, but it's a little
897 * safer to jump to a tasklet, in case upper layers do something silly.
899 tasklet_schedule(&sc
->tasklet
);
904 * Submit the first URB for the queued command.
905 * This function does not deal with queueing in any way.
907 static int ub_scsi_cmd_start(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
909 struct bulk_cb_wrap
*bcb
;
915 * ``If the allocation length is eighteen or greater, and a device
916 * server returns less than eithteen bytes of data, the application
917 * client should assume that the bytes not transferred would have been
918 * zeroes had the device server returned those bytes.''
920 * We zero sense for all commands so that when a packet request
921 * fails it does not return a stale sense.
923 memset(&sc
->top_sense
, 0, UB_SENSE_SIZE
);
925 /* set up the command wrapper */
926 bcb
->Signature
= cpu_to_le32(US_BULK_CB_SIGN
);
927 bcb
->Tag
= cmd
->tag
; /* Endianness is not important */
928 bcb
->DataTransferLength
= cpu_to_le32(cmd
->len
);
929 bcb
->Flags
= (cmd
->dir
== UB_DIR_READ
) ? 0x80 : 0;
930 bcb
->Lun
= (cmd
->lun
!= NULL
) ? cmd
->lun
->num
: 0;
931 bcb
->Length
= cmd
->cdb_len
;
933 /* copy the command payload */
934 memcpy(bcb
->CDB
, cmd
->cdb
, UB_MAX_CDB_SIZE
);
936 UB_INIT_COMPLETION(sc
->work_done
);
938 sc
->last_pipe
= sc
->send_bulk_pipe
;
939 usb_fill_bulk_urb(&sc
->work_urb
, sc
->dev
, sc
->send_bulk_pipe
,
940 bcb
, US_BULK_CB_WRAP_LEN
, ub_urb_complete
, sc
);
942 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_ATOMIC
)) != 0) {
943 /* XXX Clear stalls */
944 ub_complete(&sc
->work_done
);
948 sc
->work_timer
.expires
= jiffies
+ UB_URB_TIMEOUT
;
949 add_timer(&sc
->work_timer
);
951 cmd
->state
= UB_CMDST_CMD
;
958 static void ub_urb_timeout(unsigned long arg
)
960 struct ub_dev
*sc
= (struct ub_dev
*) arg
;
963 spin_lock_irqsave(sc
->lock
, flags
);
964 if (!ub_is_completed(&sc
->work_done
))
965 usb_unlink_urb(&sc
->work_urb
);
966 spin_unlock_irqrestore(sc
->lock
, flags
);
970 * Completion routine for the work URB.
972 * This can be called directly from usb_submit_urb (while we have
973 * the sc->lock taken) and from an interrupt (while we do NOT have
974 * the sc->lock taken). Therefore, bounce this off to a tasklet.
976 static void ub_urb_complete(struct urb
*urb
)
978 struct ub_dev
*sc
= urb
->context
;
980 ub_complete(&sc
->work_done
);
981 tasklet_schedule(&sc
->tasklet
);
984 static void ub_scsi_action(unsigned long _dev
)
986 struct ub_dev
*sc
= (struct ub_dev
*) _dev
;
989 spin_lock_irqsave(sc
->lock
, flags
);
990 ub_scsi_dispatch(sc
);
991 spin_unlock_irqrestore(sc
->lock
, flags
);
994 static void ub_scsi_dispatch(struct ub_dev
*sc
)
996 struct ub_scsi_cmd
*cmd
;
999 while (!sc
->reset
&& (cmd
= ub_cmdq_peek(sc
)) != NULL
) {
1000 if (cmd
->state
== UB_CMDST_DONE
) {
1002 (*cmd
->done
)(sc
, cmd
);
1003 } else if (cmd
->state
== UB_CMDST_INIT
) {
1004 if ((rc
= ub_scsi_cmd_start(sc
, cmd
)) == 0)
1007 cmd
->state
= UB_CMDST_DONE
;
1009 if (!ub_is_completed(&sc
->work_done
))
1011 del_timer(&sc
->work_timer
);
1012 ub_scsi_urb_compl(sc
, cmd
);
1017 static void ub_scsi_urb_compl(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1019 struct urb
*urb
= &sc
->work_urb
;
1020 struct bulk_cs_wrap
*bcs
;
1025 if (atomic_read(&sc
->poison
)) {
1026 ub_state_done(sc
, cmd
, -ENODEV
);
1030 endp
= usb_pipeendpoint(sc
->last_pipe
);
1031 if (usb_pipein(sc
->last_pipe
))
1034 if (cmd
->state
== UB_CMDST_CLEAR
) {
1035 if (urb
->status
== -EPIPE
) {
1037 * STALL while clearning STALL.
1038 * The control pipe clears itself - nothing to do.
1040 printk(KERN_NOTICE
"%s: stall on control pipe\n",
1046 * We ignore the result for the halt clear.
1049 usb_reset_endpoint(sc
->dev
, endp
);
1051 ub_state_sense(sc
, cmd
);
1053 } else if (cmd
->state
== UB_CMDST_CLR2STS
) {
1054 if (urb
->status
== -EPIPE
) {
1055 printk(KERN_NOTICE
"%s: stall on control pipe\n",
1061 * We ignore the result for the halt clear.
1064 usb_reset_endpoint(sc
->dev
, endp
);
1066 ub_state_stat(sc
, cmd
);
1068 } else if (cmd
->state
== UB_CMDST_CLRRS
) {
1069 if (urb
->status
== -EPIPE
) {
1070 printk(KERN_NOTICE
"%s: stall on control pipe\n",
1076 * We ignore the result for the halt clear.
1079 usb_reset_endpoint(sc
->dev
, endp
);
1081 ub_state_stat_counted(sc
, cmd
);
1083 } else if (cmd
->state
== UB_CMDST_CMD
) {
1084 switch (urb
->status
) {
1090 rc
= ub_submit_clear_stall(sc
, cmd
, sc
->last_pipe
);
1092 printk(KERN_NOTICE
"%s: "
1093 "unable to submit clear (%d)\n",
1096 * This is typically ENOMEM or some other such shit.
1097 * Retrying is pointless. Just do Bad End on it...
1099 ub_state_done(sc
, cmd
, rc
);
1102 cmd
->state
= UB_CMDST_CLEAR
;
1104 case -ESHUTDOWN
: /* unplug */
1105 case -EILSEQ
: /* unplug timeout on uhci */
1106 ub_state_done(sc
, cmd
, -ENODEV
);
1111 if (urb
->actual_length
!= US_BULK_CB_WRAP_LEN
) {
1115 if (cmd
->dir
== UB_DIR_NONE
|| cmd
->nsg
< 1) {
1116 ub_state_stat(sc
, cmd
);
1120 // udelay(125); // usb-storage has this
1121 ub_data_start(sc
, cmd
);
1123 } else if (cmd
->state
== UB_CMDST_DATA
) {
1124 if (urb
->status
== -EPIPE
) {
1125 rc
= ub_submit_clear_stall(sc
, cmd
, sc
->last_pipe
);
1127 printk(KERN_NOTICE
"%s: "
1128 "unable to submit clear (%d)\n",
1130 ub_state_done(sc
, cmd
, rc
);
1133 cmd
->state
= UB_CMDST_CLR2STS
;
1136 if (urb
->status
== -EOVERFLOW
) {
1138 * A babble? Failure, but we must transfer CSW now.
1140 cmd
->error
= -EOVERFLOW
; /* A cheap trick... */
1141 ub_state_stat(sc
, cmd
);
1145 if (cmd
->dir
== UB_DIR_WRITE
) {
1147 * Do not continue writes in case of a failure.
1148 * Doing so would cause sectors to be mixed up,
1149 * which is worse than sectors lost.
1151 * We must try to read the CSW, or many devices
1154 len
= urb
->actual_length
;
1155 if (urb
->status
!= 0 ||
1156 len
!= cmd
->sgv
[cmd
->current_sg
].length
) {
1157 cmd
->act_len
+= len
;
1160 ub_state_stat(sc
, cmd
);
1166 * If an error occurs on read, we record it, and
1167 * continue to fetch data in order to avoid bubble.
1169 * As a small shortcut, we stop if we detect that
1170 * a CSW mixed into data.
1172 if (urb
->status
!= 0)
1175 len
= urb
->actual_length
;
1176 if (urb
->status
!= 0 ||
1177 len
!= cmd
->sgv
[cmd
->current_sg
].length
) {
1178 if ((len
& 0x1FF) == US_BULK_CS_WRAP_LEN
)
1183 cmd
->act_len
+= urb
->actual_length
;
1185 if (++cmd
->current_sg
< cmd
->nsg
) {
1186 ub_data_start(sc
, cmd
);
1189 ub_state_stat(sc
, cmd
);
1191 } else if (cmd
->state
== UB_CMDST_STAT
) {
1192 if (urb
->status
== -EPIPE
) {
1193 rc
= ub_submit_clear_stall(sc
, cmd
, sc
->last_pipe
);
1195 printk(KERN_NOTICE
"%s: "
1196 "unable to submit clear (%d)\n",
1198 ub_state_done(sc
, cmd
, rc
);
1203 * Having a stall when getting CSW is an error, so
1204 * make sure uppper levels are not oblivious to it.
1206 cmd
->error
= -EIO
; /* A cheap trick... */
1208 cmd
->state
= UB_CMDST_CLRRS
;
1212 /* Catch everything, including -EOVERFLOW and other nasties. */
1213 if (urb
->status
!= 0)
1216 if (urb
->actual_length
== 0) {
1217 ub_state_stat_counted(sc
, cmd
);
1222 * Check the returned Bulk protocol status.
1223 * The status block has to be validated first.
1226 bcs
= &sc
->work_bcs
;
1228 if (sc
->signature
== cpu_to_le32(0)) {
1230 * This is the first reply, so do not perform the check.
1231 * Instead, remember the signature the device uses
1232 * for future checks. But do not allow a nul.
1234 sc
->signature
= bcs
->Signature
;
1235 if (sc
->signature
== cpu_to_le32(0)) {
1236 ub_state_stat_counted(sc
, cmd
);
1240 if (bcs
->Signature
!= sc
->signature
) {
1241 ub_state_stat_counted(sc
, cmd
);
1246 if (bcs
->Tag
!= cmd
->tag
) {
1248 * This usually happens when we disagree with the
1249 * device's microcode about something. For instance,
1250 * a few of them throw this after timeouts. They buffer
1251 * commands and reply at commands we timed out before.
1252 * Without flushing these replies we loop forever.
1254 ub_state_stat_counted(sc
, cmd
);
1258 if (!sc
->bad_resid
) {
1259 len
= le32_to_cpu(bcs
->Residue
);
1260 if (len
!= cmd
->len
- cmd
->act_len
) {
1262 * Only start ignoring if this cmd ended well.
1264 if (cmd
->len
== cmd
->act_len
) {
1265 printk(KERN_NOTICE
"%s: "
1266 "bad residual %d of %d, ignoring\n",
1267 sc
->name
, len
, cmd
->len
);
1273 switch (bcs
->Status
) {
1274 case US_BULK_STAT_OK
:
1276 case US_BULK_STAT_FAIL
:
1277 ub_state_sense(sc
, cmd
);
1279 case US_BULK_STAT_PHASE
:
1282 printk(KERN_INFO
"%s: unknown CSW status 0x%x\n",
1283 sc
->name
, bcs
->Status
);
1284 ub_state_done(sc
, cmd
, -EINVAL
);
1288 /* Not zeroing error to preserve a babble indicator */
1289 if (cmd
->error
!= 0) {
1290 ub_state_sense(sc
, cmd
);
1293 cmd
->state
= UB_CMDST_DONE
;
1295 (*cmd
->done
)(sc
, cmd
);
1297 } else if (cmd
->state
== UB_CMDST_SENSE
) {
1298 ub_state_done(sc
, cmd
, -EIO
);
1301 printk(KERN_WARNING
"%s: wrong command state %d\n",
1302 sc
->name
, cmd
->state
);
1303 ub_state_done(sc
, cmd
, -EINVAL
);
1308 Bad_End
: /* Little Excel is dead */
1309 ub_state_done(sc
, cmd
, -EIO
);
1313 * Factorization helper for the command state machine:
1314 * Initiate a data segment transfer.
1316 static void ub_data_start(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1318 struct scatterlist
*sg
= &cmd
->sgv
[cmd
->current_sg
];
1322 UB_INIT_COMPLETION(sc
->work_done
);
1324 if (cmd
->dir
== UB_DIR_READ
)
1325 pipe
= sc
->recv_bulk_pipe
;
1327 pipe
= sc
->send_bulk_pipe
;
1328 sc
->last_pipe
= pipe
;
1329 usb_fill_bulk_urb(&sc
->work_urb
, sc
->dev
, pipe
, sg_virt(sg
),
1330 sg
->length
, ub_urb_complete
, sc
);
1332 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_ATOMIC
)) != 0) {
1333 /* XXX Clear stalls */
1334 ub_complete(&sc
->work_done
);
1335 ub_state_done(sc
, cmd
, rc
);
1340 sc
->work_timer
.expires
= jiffies
+ cmd
->timeo
;
1342 sc
->work_timer
.expires
= jiffies
+ UB_DATA_TIMEOUT
;
1343 add_timer(&sc
->work_timer
);
1345 cmd
->state
= UB_CMDST_DATA
;
1349 * Factorization helper for the command state machine:
1350 * Finish the command.
1352 static void ub_state_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
, int rc
)
1356 cmd
->state
= UB_CMDST_DONE
;
1358 (*cmd
->done
)(sc
, cmd
);
1362 * Factorization helper for the command state machine:
1363 * Submit a CSW read.
1365 static int __ub_state_stat(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1369 UB_INIT_COMPLETION(sc
->work_done
);
1371 sc
->last_pipe
= sc
->recv_bulk_pipe
;
1372 usb_fill_bulk_urb(&sc
->work_urb
, sc
->dev
, sc
->recv_bulk_pipe
,
1373 &sc
->work_bcs
, US_BULK_CS_WRAP_LEN
, ub_urb_complete
, sc
);
1375 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_ATOMIC
)) != 0) {
1376 /* XXX Clear stalls */
1377 ub_complete(&sc
->work_done
);
1378 ub_state_done(sc
, cmd
, rc
);
1383 sc
->work_timer
.expires
= jiffies
+ cmd
->timeo
;
1385 sc
->work_timer
.expires
= jiffies
+ UB_STAT_TIMEOUT
;
1386 add_timer(&sc
->work_timer
);
1391 * Factorization helper for the command state machine:
1392 * Submit a CSW read and go to STAT state.
1394 static void ub_state_stat(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1397 if (__ub_state_stat(sc
, cmd
) != 0)
1400 cmd
->stat_count
= 0;
1401 cmd
->state
= UB_CMDST_STAT
;
1405 * Factorization helper for the command state machine:
1406 * Submit a CSW read and go to STAT state with counter (along [C] path).
1408 static void ub_state_stat_counted(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1411 if (++cmd
->stat_count
>= 4) {
1412 ub_state_sense(sc
, cmd
);
1416 if (__ub_state_stat(sc
, cmd
) != 0)
1419 cmd
->state
= UB_CMDST_STAT
;
1423 * Factorization helper for the command state machine:
1424 * Submit a REQUEST SENSE and go to SENSE state.
1426 static void ub_state_sense(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1428 struct ub_scsi_cmd
*scmd
;
1429 struct scatterlist
*sg
;
1432 if (cmd
->cdb
[0] == REQUEST_SENSE
) {
1437 scmd
= &sc
->top_rqs_cmd
;
1438 memset(scmd
, 0, sizeof(struct ub_scsi_cmd
));
1439 scmd
->cdb
[0] = REQUEST_SENSE
;
1440 scmd
->cdb
[4] = UB_SENSE_SIZE
;
1442 scmd
->dir
= UB_DIR_READ
;
1443 scmd
->state
= UB_CMDST_INIT
;
1446 sg_init_table(sg
, UB_MAX_REQ_SG
);
1447 sg_set_page(sg
, virt_to_page(sc
->top_sense
), UB_SENSE_SIZE
,
1448 (unsigned long)sc
->top_sense
& (PAGE_SIZE
-1));
1449 scmd
->len
= UB_SENSE_SIZE
;
1450 scmd
->lun
= cmd
->lun
;
1451 scmd
->done
= ub_top_sense_done
;
1454 scmd
->tag
= sc
->tagcnt
++;
1456 cmd
->state
= UB_CMDST_SENSE
;
1458 ub_cmdq_insert(sc
, scmd
);
1462 ub_state_done(sc
, cmd
, rc
);
1466 * A helper for the command's state machine:
1467 * Submit a stall clear.
1469 static int ub_submit_clear_stall(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
,
1473 struct usb_ctrlrequest
*cr
;
1476 endp
= usb_pipeendpoint(stalled_pipe
);
1477 if (usb_pipein (stalled_pipe
))
1481 cr
->bRequestType
= USB_RECIP_ENDPOINT
;
1482 cr
->bRequest
= USB_REQ_CLEAR_FEATURE
;
1483 cr
->wValue
= cpu_to_le16(USB_ENDPOINT_HALT
);
1484 cr
->wIndex
= cpu_to_le16(endp
);
1485 cr
->wLength
= cpu_to_le16(0);
1487 UB_INIT_COMPLETION(sc
->work_done
);
1489 usb_fill_control_urb(&sc
->work_urb
, sc
->dev
, sc
->send_ctrl_pipe
,
1490 (unsigned char*) cr
, NULL
, 0, ub_urb_complete
, sc
);
1492 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_ATOMIC
)) != 0) {
1493 ub_complete(&sc
->work_done
);
1497 sc
->work_timer
.expires
= jiffies
+ UB_CTRL_TIMEOUT
;
1498 add_timer(&sc
->work_timer
);
1504 static void ub_top_sense_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*scmd
)
1506 unsigned char *sense
= sc
->top_sense
;
1507 struct ub_scsi_cmd
*cmd
;
1510 * Find the command which triggered the unit attention or a check,
1511 * save the sense into it, and advance its state machine.
1513 if ((cmd
= ub_cmdq_peek(sc
)) == NULL
) {
1514 printk(KERN_WARNING
"%s: sense done while idle\n", sc
->name
);
1517 if (cmd
!= scmd
->back
) {
1518 printk(KERN_WARNING
"%s: "
1519 "sense done for wrong command 0x%x\n",
1520 sc
->name
, cmd
->tag
);
1523 if (cmd
->state
!= UB_CMDST_SENSE
) {
1524 printk(KERN_WARNING
"%s: sense done with bad cmd state %d\n",
1525 sc
->name
, cmd
->state
);
1530 * Ignoring scmd->act_len, because the buffer was pre-zeroed.
1532 cmd
->key
= sense
[2] & 0x0F;
1533 cmd
->asc
= sense
[12];
1534 cmd
->ascq
= sense
[13];
1536 ub_scsi_urb_compl(sc
, cmd
);
1543 static void ub_reset_enter(struct ub_dev
*sc
, int try)
1547 /* This happens often on multi-LUN devices. */
1550 sc
->reset
= try + 1;
1552 #if 0 /* Not needed because the disconnect waits for us. */
1553 unsigned long flags
;
1554 spin_lock_irqsave(&ub_lock
, flags
);
1556 spin_unlock_irqrestore(&ub_lock
, flags
);
1559 #if 0 /* We let them stop themselves. */
1561 list_for_each_entry(lun
, &sc
->luns
, link
) {
1562 blk_stop_queue(lun
->disk
->queue
);
1566 schedule_work(&sc
->reset_work
);
1569 static void ub_reset_task(struct work_struct
*work
)
1571 struct ub_dev
*sc
= container_of(work
, struct ub_dev
, reset_work
);
1572 unsigned long flags
;
1577 printk(KERN_WARNING
"%s: Running reset unrequested\n",
1582 if (atomic_read(&sc
->poison
)) {
1584 } else if ((sc
->reset
& 1) == 0) {
1586 msleep(700); /* usb-storage sleeps 6s (!) */
1587 ub_probe_clear_stall(sc
, sc
->recv_bulk_pipe
);
1588 ub_probe_clear_stall(sc
, sc
->send_bulk_pipe
);
1589 } else if (sc
->dev
->actconfig
->desc
.bNumInterfaces
!= 1) {
1592 rc
= usb_lock_device_for_reset(sc
->dev
, sc
->intf
);
1595 "%s: usb_lock_device_for_reset failed (%d)\n",
1598 rc
= usb_reset_device(sc
->dev
);
1600 printk(KERN_NOTICE
"%s: "
1601 "usb_lock_device_for_reset failed (%d)\n",
1604 usb_unlock_device(sc
->dev
);
1609 * In theory, no commands can be running while reset is active,
1610 * so nobody can ask for another reset, and so we do not need any
1611 * queues of resets or anything. We do need a spinlock though,
1612 * to interact with block layer.
1614 spin_lock_irqsave(sc
->lock
, flags
);
1616 tasklet_schedule(&sc
->tasklet
);
1617 list_for_each_entry(lun
, &sc
->luns
, link
) {
1618 blk_start_queue(lun
->disk
->queue
);
1620 wake_up(&sc
->reset_wait
);
1621 spin_unlock_irqrestore(sc
->lock
, flags
);
1625 * XXX Reset brackets are too much hassle to implement, so just stub them
1626 * in order to prevent forced unbinding (which deadlocks solid when our
1627 * ->disconnect method waits for the reset to complete and this kills keventd).
1629 * XXX Tell Alan to move usb_unlock_device inside of usb_reset_device,
1630 * or else the post_reset is invoked, and restats I/O on a locked device.
1632 static int ub_pre_reset(struct usb_interface
*iface
) {
1636 static int ub_post_reset(struct usb_interface
*iface
) {
1641 * This is called from a process context.
1643 static void ub_revalidate(struct ub_dev
*sc
, struct ub_lun
*lun
)
1646 lun
->readonly
= 0; /* XXX Query this from the device */
1648 lun
->capacity
.nsec
= 0;
1649 lun
->capacity
.bsize
= 512;
1650 lun
->capacity
.bshift
= 0;
1652 if (ub_sync_tur(sc
, lun
) != 0)
1653 return; /* Not ready */
1656 if (ub_sync_read_cap(sc
, lun
, &lun
->capacity
) != 0) {
1658 * The retry here means something is wrong, either with the
1659 * device, with the transport, or with our code.
1660 * We keep this because sd.c has retries for capacity.
1662 if (ub_sync_read_cap(sc
, lun
, &lun
->capacity
) != 0) {
1663 lun
->capacity
.nsec
= 0;
1664 lun
->capacity
.bsize
= 512;
1665 lun
->capacity
.bshift
= 0;
1672 * This is mostly needed to keep refcounting, but also to support
1673 * media checks on removable media drives.
1675 static int ub_bd_open(struct block_device
*bdev
, fmode_t mode
)
1677 struct ub_lun
*lun
= bdev
->bd_disk
->private_data
;
1678 struct ub_dev
*sc
= lun
->udev
;
1679 unsigned long flags
;
1682 spin_lock_irqsave(&ub_lock
, flags
);
1683 if (atomic_read(&sc
->poison
)) {
1684 spin_unlock_irqrestore(&ub_lock
, flags
);
1688 spin_unlock_irqrestore(&ub_lock
, flags
);
1690 if (lun
->removable
|| lun
->readonly
)
1691 check_disk_change(bdev
);
1694 * The sd.c considers ->media_present and ->changed not equivalent,
1695 * under some pretty murky conditions (a failure of READ CAPACITY).
1696 * We may need it one day.
1698 if (lun
->removable
&& lun
->changed
&& !(mode
& FMODE_NDELAY
)) {
1703 if (lun
->readonly
&& (mode
& FMODE_WRITE
)) {
1715 static int ub_bd_unlocked_open(struct block_device
*bdev
, fmode_t mode
)
1719 mutex_lock(&ub_mutex
);
1720 ret
= ub_bd_open(bdev
, mode
);
1721 mutex_unlock(&ub_mutex
);
1729 static int ub_bd_release(struct gendisk
*disk
, fmode_t mode
)
1731 struct ub_lun
*lun
= disk
->private_data
;
1732 struct ub_dev
*sc
= lun
->udev
;
1734 mutex_lock(&ub_mutex
);
1736 mutex_unlock(&ub_mutex
);
1742 * The ioctl interface.
1744 static int ub_bd_ioctl(struct block_device
*bdev
, fmode_t mode
,
1745 unsigned int cmd
, unsigned long arg
)
1747 struct gendisk
*disk
= bdev
->bd_disk
;
1748 void __user
*usermem
= (void __user
*) arg
;
1751 mutex_lock(&ub_mutex
);
1752 ret
= scsi_cmd_ioctl(disk
->queue
, disk
, mode
, cmd
, usermem
);
1753 mutex_unlock(&ub_mutex
);
1759 * This is called by check_disk_change if we reported a media change.
1760 * The main onjective here is to discover the features of the media such as
1761 * the capacity, read-only status, etc. USB storage generally does not
1762 * need to be spun up, but if we needed it, this would be the place.
1764 * This call can sleep.
1766 * The return code is not used.
1768 static int ub_bd_revalidate(struct gendisk
*disk
)
1770 struct ub_lun
*lun
= disk
->private_data
;
1772 ub_revalidate(lun
->udev
, lun
);
1774 /* XXX Support sector size switching like in sr.c */
1775 blk_queue_logical_block_size(disk
->queue
, lun
->capacity
.bsize
);
1776 set_capacity(disk
, lun
->capacity
.nsec
);
1777 // set_disk_ro(sdkp->disk, lun->readonly);
1783 * The check is called by the block layer to verify if the media
1784 * is still available. It is supposed to be harmless, lightweight and
1785 * non-intrusive in case the media was not changed.
1787 * This call can sleep.
1789 * The return code is bool!
1791 static unsigned int ub_bd_check_events(struct gendisk
*disk
,
1792 unsigned int clearing
)
1794 struct ub_lun
*lun
= disk
->private_data
;
1796 if (!lun
->removable
)
1800 * We clean checks always after every command, so this is not
1801 * as dangerous as it looks. If the TEST_UNIT_READY fails here,
1802 * the device is actually not ready with operator or software
1803 * intervention required. One dangerous item might be a drive which
1804 * spins itself down, and come the time to write dirty pages, this
1805 * will fail, then block layer discards the data. Since we never
1806 * spin drives up, such devices simply cannot be used with ub anyway.
1808 if (ub_sync_tur(lun
->udev
, lun
) != 0) {
1810 return DISK_EVENT_MEDIA_CHANGE
;
1813 return lun
->changed
? DISK_EVENT_MEDIA_CHANGE
: 0;
1816 static const struct block_device_operations ub_bd_fops
= {
1817 .owner
= THIS_MODULE
,
1818 .open
= ub_bd_unlocked_open
,
1819 .release
= ub_bd_release
,
1820 .ioctl
= ub_bd_ioctl
,
1821 .check_events
= ub_bd_check_events
,
1822 .revalidate_disk
= ub_bd_revalidate
,
1826 * Common ->done routine for commands executed synchronously.
1828 static void ub_probe_done(struct ub_dev
*sc
, struct ub_scsi_cmd
*cmd
)
1830 struct completion
*cop
= cmd
->back
;
1835 * Test if the device has a check condition on it, synchronously.
1837 static int ub_sync_tur(struct ub_dev
*sc
, struct ub_lun
*lun
)
1839 struct ub_scsi_cmd
*cmd
;
1840 enum { ALLOC_SIZE
= sizeof(struct ub_scsi_cmd
) };
1841 unsigned long flags
;
1842 struct completion
compl;
1845 init_completion(&compl);
1848 if ((cmd
= kzalloc(ALLOC_SIZE
, GFP_KERNEL
)) == NULL
)
1851 cmd
->cdb
[0] = TEST_UNIT_READY
;
1853 cmd
->dir
= UB_DIR_NONE
;
1854 cmd
->state
= UB_CMDST_INIT
;
1855 cmd
->lun
= lun
; /* This may be NULL, but that's ok */
1856 cmd
->done
= ub_probe_done
;
1859 spin_lock_irqsave(sc
->lock
, flags
);
1860 cmd
->tag
= sc
->tagcnt
++;
1862 rc
= ub_submit_scsi(sc
, cmd
);
1863 spin_unlock_irqrestore(sc
->lock
, flags
);
1868 wait_for_completion(&compl);
1872 if (rc
== -EIO
&& cmd
->key
!= 0) /* Retries for benh's key */
1882 * Read the SCSI capacity synchronously (for probing).
1884 static int ub_sync_read_cap(struct ub_dev
*sc
, struct ub_lun
*lun
,
1885 struct ub_capacity
*ret
)
1887 struct ub_scsi_cmd
*cmd
;
1888 struct scatterlist
*sg
;
1890 enum { ALLOC_SIZE
= sizeof(struct ub_scsi_cmd
) + 8 };
1891 unsigned long flags
;
1892 unsigned int bsize
, shift
;
1894 struct completion
compl;
1897 init_completion(&compl);
1900 if ((cmd
= kzalloc(ALLOC_SIZE
, GFP_KERNEL
)) == NULL
)
1902 p
= (char *)cmd
+ sizeof(struct ub_scsi_cmd
);
1906 cmd
->dir
= UB_DIR_READ
;
1907 cmd
->state
= UB_CMDST_INIT
;
1910 sg_init_table(sg
, UB_MAX_REQ_SG
);
1911 sg_set_page(sg
, virt_to_page(p
), 8, (unsigned long)p
& (PAGE_SIZE
-1));
1914 cmd
->done
= ub_probe_done
;
1917 spin_lock_irqsave(sc
->lock
, flags
);
1918 cmd
->tag
= sc
->tagcnt
++;
1920 rc
= ub_submit_scsi(sc
, cmd
);
1921 spin_unlock_irqrestore(sc
->lock
, flags
);
1926 wait_for_completion(&compl);
1928 if (cmd
->error
!= 0) {
1932 if (cmd
->act_len
!= 8) {
1937 /* sd.c special-cases sector size of 0 to mean 512. Needed? Safe? */
1938 nsec
= be32_to_cpu(*(__be32
*)p
) + 1;
1939 bsize
= be32_to_cpu(*(__be32
*)(p
+ 4));
1941 case 512: shift
= 0; break;
1942 case 1024: shift
= 1; break;
1943 case 2048: shift
= 2; break;
1944 case 4096: shift
= 3; break;
1951 ret
->bshift
= shift
;
1952 ret
->nsec
= nsec
<< shift
;
1965 static void ub_probe_urb_complete(struct urb
*urb
)
1967 struct completion
*cop
= urb
->context
;
1971 static void ub_probe_timeout(unsigned long arg
)
1973 struct completion
*cop
= (struct completion
*) arg
;
1978 * Reset with a Bulk reset.
1980 static int ub_sync_reset(struct ub_dev
*sc
)
1982 int ifnum
= sc
->intf
->cur_altsetting
->desc
.bInterfaceNumber
;
1983 struct usb_ctrlrequest
*cr
;
1984 struct completion
compl;
1985 struct timer_list timer
;
1988 init_completion(&compl);
1991 cr
->bRequestType
= USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
1992 cr
->bRequest
= US_BULK_RESET_REQUEST
;
1993 cr
->wValue
= cpu_to_le16(0);
1994 cr
->wIndex
= cpu_to_le16(ifnum
);
1995 cr
->wLength
= cpu_to_le16(0);
1997 usb_fill_control_urb(&sc
->work_urb
, sc
->dev
, sc
->send_ctrl_pipe
,
1998 (unsigned char*) cr
, NULL
, 0, ub_probe_urb_complete
, &compl);
2000 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_KERNEL
)) != 0) {
2002 "%s: Unable to submit a bulk reset (%d)\n", sc
->name
, rc
);
2007 timer
.function
= ub_probe_timeout
;
2008 timer
.data
= (unsigned long) &compl;
2009 timer
.expires
= jiffies
+ UB_CTRL_TIMEOUT
;
2012 wait_for_completion(&compl);
2014 del_timer_sync(&timer
);
2015 usb_kill_urb(&sc
->work_urb
);
2017 return sc
->work_urb
.status
;
2021 * Get number of LUNs by the way of Bulk GetMaxLUN command.
2023 static int ub_sync_getmaxlun(struct ub_dev
*sc
)
2025 int ifnum
= sc
->intf
->cur_altsetting
->desc
.bInterfaceNumber
;
2027 enum { ALLOC_SIZE
= 1 };
2028 struct usb_ctrlrequest
*cr
;
2029 struct completion
compl;
2030 struct timer_list timer
;
2034 init_completion(&compl);
2037 if ((p
= kmalloc(ALLOC_SIZE
, GFP_KERNEL
)) == NULL
)
2042 cr
->bRequestType
= USB_DIR_IN
| USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
2043 cr
->bRequest
= US_BULK_GET_MAX_LUN
;
2044 cr
->wValue
= cpu_to_le16(0);
2045 cr
->wIndex
= cpu_to_le16(ifnum
);
2046 cr
->wLength
= cpu_to_le16(1);
2048 usb_fill_control_urb(&sc
->work_urb
, sc
->dev
, sc
->recv_ctrl_pipe
,
2049 (unsigned char*) cr
, p
, 1, ub_probe_urb_complete
, &compl);
2051 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_KERNEL
)) != 0)
2055 timer
.function
= ub_probe_timeout
;
2056 timer
.data
= (unsigned long) &compl;
2057 timer
.expires
= jiffies
+ UB_CTRL_TIMEOUT
;
2060 wait_for_completion(&compl);
2062 del_timer_sync(&timer
);
2063 usb_kill_urb(&sc
->work_urb
);
2065 if ((rc
= sc
->work_urb
.status
) < 0)
2068 if (sc
->work_urb
.actual_length
!= 1) {
2071 if ((nluns
= *p
) == 55) {
2074 /* GetMaxLUN returns the maximum LUN number */
2076 if (nluns
> UB_MAX_LUNS
)
2077 nluns
= UB_MAX_LUNS
;
2092 * Clear initial stalls.
2094 static int ub_probe_clear_stall(struct ub_dev
*sc
, int stalled_pipe
)
2097 struct usb_ctrlrequest
*cr
;
2098 struct completion
compl;
2099 struct timer_list timer
;
2102 init_completion(&compl);
2104 endp
= usb_pipeendpoint(stalled_pipe
);
2105 if (usb_pipein (stalled_pipe
))
2109 cr
->bRequestType
= USB_RECIP_ENDPOINT
;
2110 cr
->bRequest
= USB_REQ_CLEAR_FEATURE
;
2111 cr
->wValue
= cpu_to_le16(USB_ENDPOINT_HALT
);
2112 cr
->wIndex
= cpu_to_le16(endp
);
2113 cr
->wLength
= cpu_to_le16(0);
2115 usb_fill_control_urb(&sc
->work_urb
, sc
->dev
, sc
->send_ctrl_pipe
,
2116 (unsigned char*) cr
, NULL
, 0, ub_probe_urb_complete
, &compl);
2118 if ((rc
= usb_submit_urb(&sc
->work_urb
, GFP_KERNEL
)) != 0) {
2120 "%s: Unable to submit a probe clear (%d)\n", sc
->name
, rc
);
2125 timer
.function
= ub_probe_timeout
;
2126 timer
.data
= (unsigned long) &compl;
2127 timer
.expires
= jiffies
+ UB_CTRL_TIMEOUT
;
2130 wait_for_completion(&compl);
2132 del_timer_sync(&timer
);
2133 usb_kill_urb(&sc
->work_urb
);
2135 usb_reset_endpoint(sc
->dev
, endp
);
2141 * Get the pipe settings.
2143 static int ub_get_pipes(struct ub_dev
*sc
, struct usb_device
*dev
,
2144 struct usb_interface
*intf
)
2146 struct usb_host_interface
*altsetting
= intf
->cur_altsetting
;
2147 struct usb_endpoint_descriptor
*ep_in
= NULL
;
2148 struct usb_endpoint_descriptor
*ep_out
= NULL
;
2149 struct usb_endpoint_descriptor
*ep
;
2153 * Find the endpoints we need.
2154 * We are expecting a minimum of 2 endpoints - in and out (bulk).
2155 * We will ignore any others.
2157 for (i
= 0; i
< altsetting
->desc
.bNumEndpoints
; i
++) {
2158 ep
= &altsetting
->endpoint
[i
].desc
;
2160 /* Is it a BULK endpoint? */
2161 if (usb_endpoint_xfer_bulk(ep
)) {
2162 /* BULK in or out? */
2163 if (usb_endpoint_dir_in(ep
)) {
2173 if (ep_in
== NULL
|| ep_out
== NULL
) {
2174 printk(KERN_NOTICE
"%s: failed endpoint check\n", sc
->name
);
2178 /* Calculate and store the pipe values */
2179 sc
->send_ctrl_pipe
= usb_sndctrlpipe(dev
, 0);
2180 sc
->recv_ctrl_pipe
= usb_rcvctrlpipe(dev
, 0);
2181 sc
->send_bulk_pipe
= usb_sndbulkpipe(dev
,
2182 usb_endpoint_num(ep_out
));
2183 sc
->recv_bulk_pipe
= usb_rcvbulkpipe(dev
,
2184 usb_endpoint_num(ep_in
));
2190 * Probing is done in the process context, which allows us to cheat
2191 * and not to build a state machine for the discovery.
2193 static int ub_probe(struct usb_interface
*intf
,
2194 const struct usb_device_id
*dev_id
)
2201 if (usb_usual_check_type(dev_id
, USB_US_TYPE_UB
))
2205 if ((sc
= kzalloc(sizeof(struct ub_dev
), GFP_KERNEL
)) == NULL
)
2207 sc
->lock
= ub_next_lock();
2208 INIT_LIST_HEAD(&sc
->luns
);
2209 usb_init_urb(&sc
->work_urb
);
2210 tasklet_init(&sc
->tasklet
, ub_scsi_action
, (unsigned long)sc
);
2211 atomic_set(&sc
->poison
, 0);
2212 INIT_WORK(&sc
->reset_work
, ub_reset_task
);
2213 init_waitqueue_head(&sc
->reset_wait
);
2215 init_timer(&sc
->work_timer
);
2216 sc
->work_timer
.data
= (unsigned long) sc
;
2217 sc
->work_timer
.function
= ub_urb_timeout
;
2219 ub_init_completion(&sc
->work_done
);
2220 sc
->work_done
.done
= 1; /* A little yuk, but oh well... */
2222 sc
->dev
= interface_to_usbdev(intf
);
2224 // sc->ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
2225 usb_set_intfdata(intf
, sc
);
2226 usb_get_dev(sc
->dev
);
2228 * Since we give the interface struct to the block level through
2229 * disk->driverfs_dev, we have to pin it. Otherwise, block_uevent
2230 * oopses on close after a disconnect (kernels 2.6.16 and up).
2232 usb_get_intf(sc
->intf
);
2234 snprintf(sc
->name
, 12, DRV_NAME
"(%d.%d)",
2235 sc
->dev
->bus
->busnum
, sc
->dev
->devnum
);
2237 /* XXX Verify that we can handle the device (from descriptors) */
2239 if (ub_get_pipes(sc
, sc
->dev
, intf
) != 0)
2243 * At this point, all USB initialization is done, do upper layer.
2244 * We really hate halfway initialized structures, so from the
2245 * invariants perspective, this ub_dev is fully constructed at
2250 * This is needed to clear toggles. It is a problem only if we do
2251 * `rmmod ub && modprobe ub` without disconnects, but we like that.
2253 #if 0 /* iPod Mini fails if we do this (big white iPod works) */
2254 ub_probe_clear_stall(sc
, sc
->recv_bulk_pipe
);
2255 ub_probe_clear_stall(sc
, sc
->send_bulk_pipe
);
2259 * The way this is used by the startup code is a little specific.
2260 * A SCSI check causes a USB stall. Our common case code sees it
2261 * and clears the check, after which the device is ready for use.
2262 * But if a check was not present, any command other than
2263 * TEST_UNIT_READY ends with a lockup (including REQUEST_SENSE).
2265 * If we neglect to clear the SCSI check, the first real command fails
2266 * (which is the capacity readout). We clear that and retry, but why
2267 * causing spurious retries for no reason.
2269 * Revalidation may start with its own TEST_UNIT_READY, but that one
2270 * has to succeed, so we clear checks with an additional one here.
2271 * In any case it's not our business how revaliadation is implemented.
2273 for (i
= 0; i
< 3; i
++) { /* Retries for the schwag key from KS'04 */
2274 if ((rc
= ub_sync_tur(sc
, NULL
)) <= 0) break;
2275 if (rc
!= 0x6) break;
2280 for (i
= 0; i
< 3; i
++) {
2281 if ((rc
= ub_sync_getmaxlun(sc
)) < 0)
2290 for (i
= 0; i
< nluns
; i
++) {
2291 ub_probe_lun(sc
, i
);
2296 usb_set_intfdata(intf
, NULL
);
2297 usb_put_intf(sc
->intf
);
2298 usb_put_dev(sc
->dev
);
2304 static int ub_probe_lun(struct ub_dev
*sc
, int lnum
)
2307 struct request_queue
*q
;
2308 struct gendisk
*disk
;
2312 if ((lun
= kzalloc(sizeof(struct ub_lun
), GFP_KERNEL
)) == NULL
)
2317 if ((lun
->id
= ub_id_get()) == -1)
2322 snprintf(lun
->name
, 16, DRV_NAME
"%c(%d.%d.%d)",
2323 lun
->id
+ 'a', sc
->dev
->bus
->busnum
, sc
->dev
->devnum
, lun
->num
);
2325 lun
->removable
= 1; /* XXX Query this from the device */
2326 lun
->changed
= 1; /* ub_revalidate clears only */
2327 ub_revalidate(sc
, lun
);
2330 if ((disk
= alloc_disk(UB_PARTS_PER_LUN
)) == NULL
)
2333 sprintf(disk
->disk_name
, DRV_NAME
"%c", lun
->id
+ 'a');
2334 disk
->major
= UB_MAJOR
;
2335 disk
->first_minor
= lun
->id
* UB_PARTS_PER_LUN
;
2336 disk
->fops
= &ub_bd_fops
;
2337 disk
->private_data
= lun
;
2338 disk
->driverfs_dev
= &sc
->intf
->dev
;
2341 if ((q
= blk_init_queue(ub_request_fn
, sc
->lock
)) == NULL
)
2346 blk_queue_bounce_limit(q
, BLK_BOUNCE_HIGH
);
2347 blk_queue_max_segments(q
, UB_MAX_REQ_SG
);
2348 blk_queue_segment_boundary(q
, 0xffffffff); /* Dubious. */
2349 blk_queue_max_hw_sectors(q
, UB_MAX_SECTORS
);
2350 blk_queue_logical_block_size(q
, lun
->capacity
.bsize
);
2354 list_add(&lun
->link
, &sc
->luns
);
2356 set_capacity(disk
, lun
->capacity
.nsec
);
2358 disk
->flags
|= GENHD_FL_REMOVABLE
;
2374 static void ub_disconnect(struct usb_interface
*intf
)
2376 struct ub_dev
*sc
= usb_get_intfdata(intf
);
2378 unsigned long flags
;
2381 * Prevent ub_bd_release from pulling the rug from under us.
2382 * XXX This is starting to look like a kref.
2383 * XXX Why not to take this ref at probe time?
2385 spin_lock_irqsave(&ub_lock
, flags
);
2387 spin_unlock_irqrestore(&ub_lock
, flags
);
2390 * Fence stall clearings, operations triggered by unlinkings and so on.
2391 * We do not attempt to unlink any URBs, because we do not trust the
2392 * unlink paths in HC drivers. Also, we get -84 upon disconnect anyway.
2394 atomic_set(&sc
->poison
, 1);
2397 * Wait for reset to end, if any.
2399 wait_event(sc
->reset_wait
, !sc
->reset
);
2402 * Blow away queued commands.
2404 * Actually, this never works, because before we get here
2405 * the HCD terminates outstanding URB(s). It causes our
2406 * SCSI command queue to advance, commands fail to submit,
2407 * and the whole queue drains. So, we just use this code to
2410 spin_lock_irqsave(sc
->lock
, flags
);
2412 struct ub_scsi_cmd
*cmd
;
2414 while ((cmd
= ub_cmdq_peek(sc
)) != NULL
) {
2415 cmd
->error
= -ENOTCONN
;
2416 cmd
->state
= UB_CMDST_DONE
;
2418 (*cmd
->done
)(sc
, cmd
);
2422 printk(KERN_WARNING
"%s: "
2423 "%d was queued after shutdown\n", sc
->name
, cnt
);
2426 spin_unlock_irqrestore(sc
->lock
, flags
);
2429 * Unregister the upper layer.
2431 list_for_each_entry(lun
, &sc
->luns
, link
) {
2432 del_gendisk(lun
->disk
);
2434 * I wish I could do:
2435 * queue_flag_set(QUEUE_FLAG_DEAD, q);
2436 * As it is, we rely on our internal poisoning and let
2437 * the upper levels to spin furiously failing all the I/O.
2442 * Testing for -EINPROGRESS is always a bug, so we are bending
2443 * the rules a little.
2445 spin_lock_irqsave(sc
->lock
, flags
);
2446 if (sc
->work_urb
.status
== -EINPROGRESS
) { /* janitors: ignore */
2447 printk(KERN_WARNING
"%s: "
2448 "URB is active after disconnect\n", sc
->name
);
2450 spin_unlock_irqrestore(sc
->lock
, flags
);
2453 * There is virtually no chance that other CPU runs a timeout so long
2454 * after ub_urb_complete should have called del_timer, but only if HCD
2455 * didn't forget to deliver a callback on unlink.
2457 del_timer_sync(&sc
->work_timer
);
2460 * At this point there must be no commands coming from anyone
2461 * and no URBs left in transit.
2467 static struct usb_driver ub_driver
= {
2470 .disconnect
= ub_disconnect
,
2471 .id_table
= ub_usb_ids
,
2472 .pre_reset
= ub_pre_reset
,
2473 .post_reset
= ub_post_reset
,
2476 static int __init
ub_init(void)
2481 for (i
= 0; i
< UB_QLOCK_NUM
; i
++)
2482 spin_lock_init(&ub_qlockv
[i
]);
2484 if ((rc
= register_blkdev(UB_MAJOR
, DRV_NAME
)) != 0)
2487 if ((rc
= usb_register(&ub_driver
)) != 0)
2490 usb_usual_set_present(USB_US_TYPE_UB
);
2494 unregister_blkdev(UB_MAJOR
, DRV_NAME
);
2499 static void __exit
ub_exit(void)
2501 usb_deregister(&ub_driver
);
2503 unregister_blkdev(UB_MAJOR
, DRV_NAME
);
2504 usb_usual_clear_present(USB_US_TYPE_UB
);
2507 module_init(ub_init
);
2508 module_exit(ub_exit
);
2510 MODULE_LICENSE("GPL");