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 * -- 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 * -- special case some senses, e.g. 3a/0 -> no media present, reduce retries
15 * -- verify the 13 conditions and do bulk resets
16 * -- kill last_pipe and simply do two-state clearing on both pipes
17 * -- verify protocol (bulk) from USB descriptors (maybe...)
19 * -- move top_sense and work_bcs into separate allocations (if they survive)
20 * for cache purists and esoteric architectures.
21 * -- Allocate structure for LUN 0 before the first ub_sync_tur, avoid NULL. ?
22 * -- prune comments, they are too volumnous
23 * -- Exterminate P3 printks
25 * -- Redo "benh's retries", perhaps have spin-up code to handle them. V:D=?
26 * -- CLEAR, CLR2STS, CLRRS seem to be ripe for refactoring.
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/usb.h>
31 #include <linux/usb_usual.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 * This many LUNs per USB device.
111 * Every one of them takes a host, see UB_MAX_HOSTS.
113 #define UB_MAX_LUNS 9
118 #define UB_PARTS_PER_LUN 8
120 #define UB_MAX_CDB_SIZE 16 /* Corresponds to Bulk */
122 #define UB_SENSE_SIZE 18
127 /* command block wrapper */
128 struct bulk_cb_wrap {
129 __le32 Signature; /* contains 'USBC' */
130 u32 Tag; /* unique per command id */
131 __le32 DataTransferLength; /* size of data */
132 u8 Flags; /* direction in bit 0 */
134 u8 Length; /* of of the CDB */
135 u8 CDB[UB_MAX_CDB_SIZE]; /* max command */
138 #define US_BULK_CB_WRAP_LEN 31
139 #define US_BULK_CB_SIGN 0x43425355 /*spells out USBC */
140 #define US_BULK_FLAG_IN 1
141 #define US_BULK_FLAG_OUT 0
143 /* command status wrapper */
144 struct bulk_cs_wrap {
145 __le32 Signature; /* should = 'USBS' */
146 u32 Tag; /* same as original command */
147 __le32 Residue; /* amount not transferred */
148 u8 Status; /* see below */
151 #define US_BULK_CS_WRAP_LEN 13
152 #define US_BULK_CS_SIGN 0x53425355 /* spells out 'USBS' */
153 #define US_BULK_STAT_OK 0
154 #define US_BULK_STAT_FAIL 1
155 #define US_BULK_STAT_PHASE 2
157 /* bulk-only class specific requests */
158 #define US_BULK_RESET_REQUEST 0xff
159 #define US_BULK_GET_MAX_LUN 0xfe
165 #define UB_MAX_REQ_SG 9 /* cdrecord requires 32KB and maybe a header */
166 #define UB_MAX_SECTORS 64
169 * A second is more than enough for a 32K transfer (UB_MAX_SECTORS)
170 * even if a webcam hogs the bus, but some devices need time to spin up.
172 #define UB_URB_TIMEOUT (HZ*2)
173 #define UB_DATA_TIMEOUT (HZ*5) /* ZIP does spin-ups in the data phase */
174 #define UB_STAT_TIMEOUT (HZ*5) /* Same spinups and eject for a dataless cmd. */
175 #define UB_CTRL_TIMEOUT (HZ/2) /* 500ms ought to be enough to clear a stall */
178 * An instance of a SCSI command in transit.
180 #define UB_DIR_NONE 0
181 #define UB_DIR_READ 1
182 #define UB_DIR_ILLEGAL2 2
183 #define UB_DIR_WRITE 3
185 #define UB_DIR_CHAR(c) (((c)==UB_DIR_WRITE)? 'w': \
186 (((c)==UB_DIR_READ)? 'r': 'n'))
188 enum ub_scsi_cmd_state {
189 UB_CMDST_INIT, /* Initial state */
190 UB_CMDST_CMD, /* Command submitted */
191 UB_CMDST_DATA, /* Data phase */
192 UB_CMDST_CLR2STS, /* Clearing before requesting status */
193 UB_CMDST_STAT, /* Status phase */
194 UB_CMDST_CLEAR, /* Clearing a stall (halt, actually) */
195 UB_CMDST_CLRRS, /* Clearing before retrying status */
196 UB_CMDST_SENSE, /* Sending Request Sense */
197 UB_CMDST_DONE /* Final state */
200 static char *ub_scsi_cmd_stname[] = {
213 unsigned char cdb[UB_MAX_CDB_SIZE];
214 unsigned char cdb_len;
216 unsigned char dir; /* 0 - none, 1 - read, 3 - write. */
217 unsigned char trace_index;
218 enum ub_scsi_cmd_state state;
220 struct ub_scsi_cmd *next;
222 int error; /* Return code - valid upon done */
223 unsigned int act_len; /* Return size */
224 unsigned char key, asc, ascq; /* May be valid if error==-EIO */
226 int stat_count; /* Retries getting status. */
228 unsigned int len; /* Requested length */
229 unsigned int current_sg;
230 unsigned int nsg; /* sgv[nsg] */
231 struct scatterlist sgv[UB_MAX_REQ_SG];
234 void (*done)(struct ub_dev *, struct ub_scsi_cmd *);
240 unsigned int current_try;
241 unsigned int nsg; /* sgv[nsg] */
242 struct scatterlist sgv[UB_MAX_REQ_SG];
248 unsigned long nsec; /* Linux size - 512 byte sectors */
249 unsigned int bsize; /* Linux hardsect_size */
250 unsigned int bshift; /* Shift between 512 and hard sects */
254 * The SCSI command tracing structure.
257 #define SCMD_ST_HIST_SZ 8
258 #define SCMD_TRACE_SZ 63 /* Less than 4KB of 61-byte lines */
260 struct ub_scsi_cmd_trace {
263 unsigned int req_size, act_size;
266 unsigned char key, asc, ascq;
267 char st_hst[SCMD_ST_HIST_SZ];
270 struct ub_scsi_trace {
272 struct ub_scsi_cmd_trace vec[SCMD_TRACE_SZ];
276 * This is a direct take-off from linux/include/completion.h
277 * The difference is that I do not wait on this thing, just poll.
278 * When I want to wait (ub_probe), I just use the stock completion.
280 * Note that INIT_COMPLETION takes no lock. It is correct. But why
281 * in the bloody hell that thing takes struct instead of pointer to struct
282 * is quite beyond me. I just copied it from the stock completion.
284 struct ub_completion {
289 static inline void ub_init_completion(struct ub_completion *x)
292 spin_lock_init(&x->lock);
295 #define UB_INIT_COMPLETION(x) ((x).done = 0)
297 static void ub_complete(struct ub_completion *x)
301 spin_lock_irqsave(&x->lock, flags);
303 spin_unlock_irqrestore(&x->lock, flags);
306 static int ub_is_completed(struct ub_completion *x)
311 spin_lock_irqsave(&x->lock, flags);
313 spin_unlock_irqrestore(&x->lock, flags);
319 struct ub_scsi_cmd_queue {
321 struct ub_scsi_cmd *head, *tail;
325 * The block device instance (one per LUN).
329 struct list_head link;
330 struct gendisk *disk;
331 int id; /* Host index */
332 int num; /* LUN number */
335 int changed; /* Media was changed */
338 int first_open; /* Kludge. See ub_bd_open. */
340 struct ub_request urq;
342 /* Use Ingo's mempool if or when we have more than one command. */
344 * Currently we never need more than one command for the whole device.
345 * However, giving every LUN a command is a cheap and automatic way
346 * to enforce fairness between them.
349 struct ub_scsi_cmd cmdv[1];
351 struct ub_capacity capacity;
355 * The USB device instance.
359 atomic_t poison; /* The USB device is disconnected */
360 int openc; /* protected by ub_lock! */
361 /* kref is too implicit for our taste */
362 int reset; /* Reset is running */
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 struct work_struct reset_work;
391 wait_queue_head_t reset_wait;
394 struct ub_scsi_trace tr;
399 static void ub_cleanup(struct ub_dev *sc);
400 static int ub_request_fn_1(struct ub_lun *lun, struct request *rq);
401 static void ub_cmd_build_block(struct ub_dev *sc, struct ub_lun *lun,
402 struct ub_scsi_cmd *cmd, struct ub_request *urq);
403 static void ub_cmd_build_packet(struct ub_dev *sc, struct ub_lun *lun,
404 struct ub_scsi_cmd *cmd, struct ub_request *urq);
405 static void ub_rw_cmd_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
406 static void ub_end_rq(struct request *rq, int uptodate);
407 static int ub_rw_cmd_retry(struct ub_dev *sc, struct ub_lun *lun,
408 struct ub_request *urq, struct ub_scsi_cmd *cmd);
409 static int ub_submit_scsi(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
410 static void ub_urb_complete(struct urb *urb, struct pt_regs *pt);
411 static void ub_scsi_action(unsigned long _dev);
412 static void ub_scsi_dispatch(struct ub_dev *sc);
413 static void ub_scsi_urb_compl(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
414 static void ub_data_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
415 static void ub_state_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd, int rc);
416 static int __ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
417 static void ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
418 static void ub_state_stat_counted(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
419 static void ub_state_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
420 static int ub_submit_clear_stall(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
422 static void ub_top_sense_done(struct ub_dev *sc, struct ub_scsi_cmd *scmd);
423 static void ub_reset_enter(struct ub_dev *sc);
424 static void ub_reset_task(void *arg);
425 static int ub_sync_tur(struct ub_dev *sc, struct ub_lun *lun);
426 static int ub_sync_read_cap(struct ub_dev *sc, struct ub_lun *lun,
427 struct ub_capacity *ret);
428 static int ub_probe_lun(struct ub_dev *sc, int lnum);
432 #ifdef CONFIG_USB_LIBUSUAL
434 #define ub_usb_ids storage_usb_ids
437 static struct usb_device_id ub_usb_ids[] = {
438 { USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE, US_SC_SCSI, US_PR_BULK) },
442 MODULE_DEVICE_TABLE(usb, ub_usb_ids);
443 #endif /* CONFIG_USB_LIBUSUAL */
446 * Find me a way to identify "next free minor" for add_disk(),
447 * and the array disappears the next day. However, the number of
448 * hosts has something to do with the naming and /proc/partitions.
449 * This has to be thought out in detail before changing.
450 * If UB_MAX_HOST was 1000, we'd use a bitmap. Or a better data structure.
452 #define UB_MAX_HOSTS 26
453 static char ub_hostv[UB_MAX_HOSTS];
455 static DEFINE_SPINLOCK(ub_lock); /* Locks globals and ->openc */
458 * The SCSI command tracing procedures.
461 static void ub_cmdtr_new(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
464 struct ub_scsi_cmd_trace *t;
466 if ((n = sc->tr.cur + 1) == SCMD_TRACE_SZ) n = 0;
469 memset(t, 0, sizeof(struct ub_scsi_cmd_trace));
473 t->req_size = cmd->len;
474 t->st_hst[0] = cmd->state;
477 cmd->trace_index = n;
480 static void ub_cmdtr_state(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 if ((n = t->hcur + 1) == SCMD_ST_HIST_SZ) n = 0;
488 t->st_hst[n] = cmd->state;
493 static void ub_cmdtr_act_len(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
495 struct ub_scsi_cmd_trace *t;
497 t = &sc->tr.vec[cmd->trace_index];
498 if (t->tag == cmd->tag)
499 t->act_size = cmd->act_len;
502 static void ub_cmdtr_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
503 unsigned char *sense)
505 struct ub_scsi_cmd_trace *t;
507 t = &sc->tr.vec[cmd->trace_index];
508 if (t->tag == cmd->tag) {
509 t->key = sense[2] & 0x0F;
515 static ssize_t ub_diag_show(struct device *dev, struct device_attribute *attr,
518 struct usb_interface *intf;
526 struct ub_scsi_cmd_trace *t;
528 intf = to_usb_interface(dev);
529 sc = usb_get_intfdata(intf);
534 spin_lock_irqsave(&sc->lock, flags);
536 cnt += sprintf(page + cnt,
537 "poison %d reset %d\n",
538 atomic_read(&sc->poison), sc->reset);
539 cnt += sprintf(page + cnt,
541 sc->cmd_queue.qlen, sc->cmd_queue.qmax);
542 cnt += sprintf(page + cnt,
543 "sg %d %d %d %d %d .. %d\n",
551 list_for_each (p, &sc->luns) {
552 lun = list_entry(p, struct ub_lun, link);
553 cnt += sprintf(page + cnt,
554 "lun %u changed %d removable %d readonly %d\n",
555 lun->num, lun->changed, lun->removable, lun->readonly);
558 if ((nc = sc->tr.cur + 1) == SCMD_TRACE_SZ) nc = 0;
559 for (j = 0; j < SCMD_TRACE_SZ; j++) {
562 cnt += sprintf(page + cnt, "%08x %02x", t->tag, t->op);
563 if (t->op == REQUEST_SENSE) {
564 cnt += sprintf(page + cnt, " [sense %x %02x %02x]",
565 t->key, t->asc, t->ascq);
567 cnt += sprintf(page + cnt, " %c", UB_DIR_CHAR(t->dir));
568 cnt += sprintf(page + cnt, " [%5d %5d]",
569 t->req_size, t->act_size);
571 if ((nh = t->hcur + 1) == SCMD_ST_HIST_SZ) nh = 0;
572 for (i = 0; i < SCMD_ST_HIST_SZ; i++) {
573 cnt += sprintf(page + cnt, " %s",
574 ub_scsi_cmd_stname[(int)t->st_hst[nh]]);
575 if (++nh == SCMD_ST_HIST_SZ) nh = 0;
577 cnt += sprintf(page + cnt, "\n");
579 if (++nc == SCMD_TRACE_SZ) nc = 0;
582 spin_unlock_irqrestore(&sc->lock, flags);
586 static DEVICE_ATTR(diag, S_IRUGO, ub_diag_show, NULL); /* N.B. World readable */
591 * This also stores the host for indexing by minor, which is somewhat dirty.
593 static int ub_id_get(void)
598 spin_lock_irqsave(&ub_lock, flags);
599 for (i = 0; i < UB_MAX_HOSTS; i++) {
600 if (ub_hostv[i] == 0) {
602 spin_unlock_irqrestore(&ub_lock, flags);
606 spin_unlock_irqrestore(&ub_lock, flags);
610 static void ub_id_put(int id)
614 if (id < 0 || id >= UB_MAX_HOSTS) {
615 printk(KERN_ERR DRV_NAME ": bad host ID %d\n", id);
619 spin_lock_irqsave(&ub_lock, flags);
620 if (ub_hostv[id] == 0) {
621 spin_unlock_irqrestore(&ub_lock, flags);
622 printk(KERN_ERR DRV_NAME ": freeing free host ID %d\n", id);
626 spin_unlock_irqrestore(&ub_lock, flags);
630 * Downcount for deallocation. This rides on two assumptions:
631 * - once something is poisoned, its refcount cannot grow
632 * - opens cannot happen at this time (del_gendisk was done)
633 * If the above is true, we can drop the lock, which we need for
634 * blk_cleanup_queue(): the silly thing may attempt to sleep.
635 * [Actually, it never needs to sleep for us, but it calls might_sleep()]
637 static void ub_put(struct ub_dev *sc)
641 spin_lock_irqsave(&ub_lock, flags);
643 if (sc->openc == 0 && atomic_read(&sc->poison)) {
644 spin_unlock_irqrestore(&ub_lock, flags);
647 spin_unlock_irqrestore(&ub_lock, flags);
652 * Final cleanup and deallocation.
654 static void ub_cleanup(struct ub_dev *sc)
660 while (!list_empty(&sc->luns)) {
662 lun = list_entry(p, struct ub_lun, link);
665 /* I don't think queue can be NULL. But... Stolen from sx8.c */
666 if ((q = lun->disk->queue) != NULL)
667 blk_cleanup_queue(q);
669 * If we zero disk->private_data BEFORE put_disk, we have
670 * to check for NULL all over the place in open, release,
671 * check_media and revalidate, because the block level
672 * semaphore is well inside the put_disk.
673 * But we cannot zero after the call, because *disk is gone.
674 * The sd.c is blatantly racy in this area.
676 /* disk->private_data = NULL; */
688 * The "command allocator".
690 static struct ub_scsi_cmd *ub_get_cmd(struct ub_lun *lun)
692 struct ub_scsi_cmd *ret;
701 static void ub_put_cmd(struct ub_lun *lun, struct ub_scsi_cmd *cmd)
703 if (cmd != &lun->cmdv[0]) {
704 printk(KERN_WARNING "%s: releasing a foreign cmd %p\n",
709 printk(KERN_WARNING "%s: releasing a free cmd\n", lun->name);
718 static void ub_cmdq_add(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 void ub_cmdq_insert(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
736 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
738 if (t->qlen++ == 0) {
746 if (t->qlen > t->qmax)
750 static struct ub_scsi_cmd *ub_cmdq_pop(struct ub_dev *sc)
752 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
753 struct ub_scsi_cmd *cmd;
765 #define ub_cmdq_peek(sc) ((sc)->cmd_queue.head)
768 * The request function is our main entry point
771 static void ub_request_fn(request_queue_t *q)
773 struct ub_lun *lun = q->queuedata;
776 while ((rq = elv_next_request(q)) != NULL) {
777 if (ub_request_fn_1(lun, rq) != 0) {
784 static int ub_request_fn_1(struct ub_lun *lun, struct request *rq)
786 struct ub_dev *sc = lun->udev;
787 struct ub_scsi_cmd *cmd;
788 struct ub_request *urq;
791 if (atomic_read(&sc->poison) || lun->changed) {
792 blkdev_dequeue_request(rq);
797 if (lun->urq.rq != NULL)
799 if ((cmd = ub_get_cmd(lun)) == NULL)
801 memset(cmd, 0, sizeof(struct ub_scsi_cmd));
803 blkdev_dequeue_request(rq);
806 memset(urq, 0, sizeof(struct ub_request));
810 * get scatterlist from block layer
812 n_elem = blk_rq_map_sg(lun->disk->queue, rq, &urq->sgv[0]);
814 printk(KERN_INFO "%s: failed request map (%d)\n",
815 lun->name, n_elem); /* P3 */
818 if (n_elem > UB_MAX_REQ_SG) { /* Paranoia */
819 printk(KERN_WARNING "%s: request with %d segments\n",
824 sc->sg_stat[n_elem < 5 ? n_elem : 5]++;
826 if (blk_pc_request(rq)) {
827 ub_cmd_build_packet(sc, lun, cmd, urq);
829 ub_cmd_build_block(sc, lun, cmd, urq);
831 cmd->state = UB_CMDST_INIT;
833 cmd->done = ub_rw_cmd_done;
836 cmd->tag = sc->tagcnt++;
837 if (ub_submit_scsi(sc, cmd) != 0)
843 ub_put_cmd(lun, cmd);
848 static void ub_cmd_build_block(struct ub_dev *sc, struct ub_lun *lun,
849 struct ub_scsi_cmd *cmd, struct ub_request *urq)
851 struct request *rq = urq->rq;
852 unsigned int block, nblks;
854 if (rq_data_dir(rq) == WRITE)
855 cmd->dir = UB_DIR_WRITE;
857 cmd->dir = UB_DIR_READ;
860 memcpy(cmd->sgv, urq->sgv, sizeof(struct scatterlist) * cmd->nsg);
865 * The call to blk_queue_hardsect_size() guarantees that request
866 * is aligned, but it is given in terms of 512 byte units, always.
868 block = rq->sector >> lun->capacity.bshift;
869 nblks = rq->nr_sectors >> lun->capacity.bshift;
871 cmd->cdb[0] = (cmd->dir == UB_DIR_READ)? READ_10: WRITE_10;
872 /* 10-byte uses 4 bytes of LBA: 2147483648KB, 2097152MB, 2048GB */
873 cmd->cdb[2] = block >> 24;
874 cmd->cdb[3] = block >> 16;
875 cmd->cdb[4] = block >> 8;
877 cmd->cdb[7] = nblks >> 8;
881 cmd->len = rq->nr_sectors * 512;
884 static void ub_cmd_build_packet(struct ub_dev *sc, struct ub_lun *lun,
885 struct ub_scsi_cmd *cmd, struct ub_request *urq)
887 struct request *rq = urq->rq;
889 if (rq->data_len == 0) {
890 cmd->dir = UB_DIR_NONE;
892 if (rq_data_dir(rq) == WRITE)
893 cmd->dir = UB_DIR_WRITE;
895 cmd->dir = UB_DIR_READ;
899 memcpy(cmd->sgv, urq->sgv, sizeof(struct scatterlist) * cmd->nsg);
901 memcpy(&cmd->cdb, rq->cmd, rq->cmd_len);
902 cmd->cdb_len = rq->cmd_len;
904 cmd->len = rq->data_len;
907 static void ub_rw_cmd_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
909 struct ub_lun *lun = cmd->lun;
910 struct ub_request *urq = cmd->back;
916 if (cmd->error == 0) {
919 if (blk_pc_request(rq)) {
920 if (cmd->act_len >= rq->data_len)
923 rq->data_len -= cmd->act_len;
928 if (blk_pc_request(rq)) {
929 /* UB_SENSE_SIZE is smaller than SCSI_SENSE_BUFFERSIZE */
930 memcpy(rq->sense, sc->top_sense, UB_SENSE_SIZE);
931 rq->sense_len = UB_SENSE_SIZE;
932 if (sc->top_sense[0] != 0)
933 rq->errors = SAM_STAT_CHECK_CONDITION;
935 rq->errors = DID_ERROR << 16;
937 if (cmd->error == -EIO) {
938 if (ub_rw_cmd_retry(sc, lun, urq, cmd) == 0)
946 ub_put_cmd(lun, cmd);
947 ub_end_rq(rq, uptodate);
948 blk_start_queue(lun->disk->queue);
951 static void ub_end_rq(struct request *rq, int uptodate)
953 end_that_request_first(rq, uptodate, rq->hard_nr_sectors);
954 end_that_request_last(rq, uptodate);
957 static int ub_rw_cmd_retry(struct ub_dev *sc, struct ub_lun *lun,
958 struct ub_request *urq, struct ub_scsi_cmd *cmd)
961 if (atomic_read(&sc->poison))
966 if (urq->current_try >= 3)
969 /* P3 */ printk("%s: dir %c len/act %d/%d "
970 "[sense %x %02x %02x] retry %d\n",
971 sc->name, UB_DIR_CHAR(cmd->dir), cmd->len, cmd->act_len,
972 cmd->key, cmd->asc, cmd->ascq, urq->current_try);
974 memset(cmd, 0, sizeof(struct ub_scsi_cmd));
975 ub_cmd_build_block(sc, lun, cmd, urq);
977 cmd->state = UB_CMDST_INIT;
979 cmd->done = ub_rw_cmd_done;
982 cmd->tag = sc->tagcnt++;
985 return ub_submit_scsi(sc, cmd);
987 ub_cmdq_add(sc, cmd);
993 * Submit a regular SCSI operation (not an auto-sense).
995 * The Iron Law of Good Submit Routine is:
996 * Zero return - callback is done, Nonzero return - callback is not done.
999 * Host is assumed locked.
1001 * XXX We only support Bulk for the moment.
1003 static int ub_submit_scsi(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1006 if (cmd->state != UB_CMDST_INIT ||
1007 (cmd->dir != UB_DIR_NONE && cmd->len == 0)) {
1011 ub_cmdq_add(sc, cmd);
1013 * We can call ub_scsi_dispatch(sc) right away here, but it's a little
1014 * safer to jump to a tasklet, in case upper layers do something silly.
1016 tasklet_schedule(&sc->tasklet);
1021 * Submit the first URB for the queued command.
1022 * This function does not deal with queueing in any way.
1024 static int ub_scsi_cmd_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1026 struct bulk_cb_wrap *bcb;
1029 bcb = &sc->work_bcb;
1032 * ``If the allocation length is eighteen or greater, and a device
1033 * server returns less than eithteen bytes of data, the application
1034 * client should assume that the bytes not transferred would have been
1035 * zeroes had the device server returned those bytes.''
1037 * We zero sense for all commands so that when a packet request
1038 * fails it does not return a stale sense.
1040 memset(&sc->top_sense, 0, UB_SENSE_SIZE);
1042 /* set up the command wrapper */
1043 bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1044 bcb->Tag = cmd->tag; /* Endianness is not important */
1045 bcb->DataTransferLength = cpu_to_le32(cmd->len);
1046 bcb->Flags = (cmd->dir == UB_DIR_READ) ? 0x80 : 0;
1047 bcb->Lun = (cmd->lun != NULL) ? cmd->lun->num : 0;
1048 bcb->Length = cmd->cdb_len;
1050 /* copy the command payload */
1051 memcpy(bcb->CDB, cmd->cdb, UB_MAX_CDB_SIZE);
1053 UB_INIT_COMPLETION(sc->work_done);
1055 sc->last_pipe = sc->send_bulk_pipe;
1056 usb_fill_bulk_urb(&sc->work_urb, sc->dev, sc->send_bulk_pipe,
1057 bcb, US_BULK_CB_WRAP_LEN, ub_urb_complete, sc);
1059 /* Fill what we shouldn't be filling, because usb-storage did so. */
1060 sc->work_urb.actual_length = 0;
1061 sc->work_urb.error_count = 0;
1062 sc->work_urb.status = 0;
1064 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1065 /* XXX Clear stalls */
1066 ub_complete(&sc->work_done);
1070 sc->work_timer.expires = jiffies + UB_URB_TIMEOUT;
1071 add_timer(&sc->work_timer);
1073 cmd->state = UB_CMDST_CMD;
1074 ub_cmdtr_state(sc, cmd);
1081 static void ub_urb_timeout(unsigned long arg)
1083 struct ub_dev *sc = (struct ub_dev *) arg;
1084 unsigned long flags;
1086 spin_lock_irqsave(&sc->lock, flags);
1087 usb_unlink_urb(&sc->work_urb);
1088 spin_unlock_irqrestore(&sc->lock, flags);
1092 * Completion routine for the work URB.
1094 * This can be called directly from usb_submit_urb (while we have
1095 * the sc->lock taken) and from an interrupt (while we do NOT have
1096 * the sc->lock taken). Therefore, bounce this off to a tasklet.
1098 static void ub_urb_complete(struct urb *urb, struct pt_regs *pt)
1100 struct ub_dev *sc = urb->context;
1102 ub_complete(&sc->work_done);
1103 tasklet_schedule(&sc->tasklet);
1106 static void ub_scsi_action(unsigned long _dev)
1108 struct ub_dev *sc = (struct ub_dev *) _dev;
1109 unsigned long flags;
1111 spin_lock_irqsave(&sc->lock, flags);
1112 del_timer(&sc->work_timer);
1113 ub_scsi_dispatch(sc);
1114 spin_unlock_irqrestore(&sc->lock, flags);
1117 static void ub_scsi_dispatch(struct ub_dev *sc)
1119 struct ub_scsi_cmd *cmd;
1122 while (!sc->reset && (cmd = ub_cmdq_peek(sc)) != NULL) {
1123 if (cmd->state == UB_CMDST_DONE) {
1125 (*cmd->done)(sc, cmd);
1126 } else if (cmd->state == UB_CMDST_INIT) {
1127 ub_cmdtr_new(sc, cmd);
1128 if ((rc = ub_scsi_cmd_start(sc, cmd)) == 0)
1131 cmd->state = UB_CMDST_DONE;
1132 ub_cmdtr_state(sc, cmd);
1134 if (!ub_is_completed(&sc->work_done))
1136 ub_scsi_urb_compl(sc, cmd);
1141 static void ub_scsi_urb_compl(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1143 struct urb *urb = &sc->work_urb;
1144 struct bulk_cs_wrap *bcs;
1148 if (atomic_read(&sc->poison)) {
1149 ub_state_done(sc, cmd, -ENODEV);
1153 if (cmd->state == UB_CMDST_CLEAR) {
1154 if (urb->status == -EPIPE) {
1156 * STALL while clearning STALL.
1157 * The control pipe clears itself - nothing to do.
1159 printk(KERN_NOTICE "%s: stall on control pipe\n",
1165 * We ignore the result for the halt clear.
1168 /* reset the endpoint toggle */
1169 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1170 usb_pipeout(sc->last_pipe), 0);
1172 ub_state_sense(sc, cmd);
1174 } else if (cmd->state == UB_CMDST_CLR2STS) {
1175 if (urb->status == -EPIPE) {
1176 printk(KERN_NOTICE "%s: stall on control pipe\n",
1182 * We ignore the result for the halt clear.
1185 /* reset the endpoint toggle */
1186 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1187 usb_pipeout(sc->last_pipe), 0);
1189 ub_state_stat(sc, cmd);
1191 } else if (cmd->state == UB_CMDST_CLRRS) {
1192 if (urb->status == -EPIPE) {
1193 printk(KERN_NOTICE "%s: stall on control pipe\n",
1199 * We ignore the result for the halt clear.
1202 /* reset the endpoint toggle */
1203 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1204 usb_pipeout(sc->last_pipe), 0);
1206 ub_state_stat_counted(sc, cmd);
1208 } else if (cmd->state == UB_CMDST_CMD) {
1209 switch (urb->status) {
1215 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1217 printk(KERN_NOTICE "%s: "
1218 "unable to submit clear (%d)\n",
1221 * This is typically ENOMEM or some other such shit.
1222 * Retrying is pointless. Just do Bad End on it...
1224 ub_state_done(sc, cmd, rc);
1227 cmd->state = UB_CMDST_CLEAR;
1228 ub_cmdtr_state(sc, cmd);
1230 case -ESHUTDOWN: /* unplug */
1231 case -EILSEQ: /* unplug timeout on uhci */
1232 ub_state_done(sc, cmd, -ENODEV);
1237 if (urb->actual_length != US_BULK_CB_WRAP_LEN) {
1241 if (cmd->dir == UB_DIR_NONE || cmd->nsg < 1) {
1242 ub_state_stat(sc, cmd);
1246 // udelay(125); // usb-storage has this
1247 ub_data_start(sc, cmd);
1249 } else if (cmd->state == UB_CMDST_DATA) {
1250 if (urb->status == -EPIPE) {
1251 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1253 printk(KERN_NOTICE "%s: "
1254 "unable to submit clear (%d)\n",
1256 ub_state_done(sc, cmd, rc);
1259 cmd->state = UB_CMDST_CLR2STS;
1260 ub_cmdtr_state(sc, cmd);
1263 if (urb->status == -EOVERFLOW) {
1265 * A babble? Failure, but we must transfer CSW now.
1267 cmd->error = -EOVERFLOW; /* A cheap trick... */
1268 ub_state_stat(sc, cmd);
1272 if (cmd->dir == UB_DIR_WRITE) {
1274 * Do not continue writes in case of a failure.
1275 * Doing so would cause sectors to be mixed up,
1276 * which is worse than sectors lost.
1278 * We must try to read the CSW, or many devices
1281 len = urb->actual_length;
1282 if (urb->status != 0 ||
1283 len != cmd->sgv[cmd->current_sg].length) {
1284 cmd->act_len += len;
1285 ub_cmdtr_act_len(sc, cmd);
1288 ub_state_stat(sc, cmd);
1294 * If an error occurs on read, we record it, and
1295 * continue to fetch data in order to avoid bubble.
1297 * As a small shortcut, we stop if we detect that
1298 * a CSW mixed into data.
1300 if (urb->status != 0)
1303 len = urb->actual_length;
1304 if (urb->status != 0 ||
1305 len != cmd->sgv[cmd->current_sg].length) {
1306 if ((len & 0x1FF) == US_BULK_CS_WRAP_LEN)
1311 cmd->act_len += urb->actual_length;
1312 ub_cmdtr_act_len(sc, cmd);
1314 if (++cmd->current_sg < cmd->nsg) {
1315 ub_data_start(sc, cmd);
1318 ub_state_stat(sc, cmd);
1320 } else if (cmd->state == UB_CMDST_STAT) {
1321 if (urb->status == -EPIPE) {
1322 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1324 printk(KERN_NOTICE "%s: "
1325 "unable to submit clear (%d)\n",
1327 ub_state_done(sc, cmd, rc);
1332 * Having a stall when getting CSW is an error, so
1333 * make sure uppper levels are not oblivious to it.
1335 cmd->error = -EIO; /* A cheap trick... */
1337 cmd->state = UB_CMDST_CLRRS;
1338 ub_cmdtr_state(sc, cmd);
1342 /* Catch everything, including -EOVERFLOW and other nasties. */
1343 if (urb->status != 0)
1346 if (urb->actual_length == 0) {
1347 ub_state_stat_counted(sc, cmd);
1352 * Check the returned Bulk protocol status.
1353 * The status block has to be validated first.
1356 bcs = &sc->work_bcs;
1358 if (sc->signature == cpu_to_le32(0)) {
1360 * This is the first reply, so do not perform the check.
1361 * Instead, remember the signature the device uses
1362 * for future checks. But do not allow a nul.
1364 sc->signature = bcs->Signature;
1365 if (sc->signature == cpu_to_le32(0)) {
1366 ub_state_stat_counted(sc, cmd);
1370 if (bcs->Signature != sc->signature) {
1371 ub_state_stat_counted(sc, cmd);
1376 if (bcs->Tag != cmd->tag) {
1378 * This usually happens when we disagree with the
1379 * device's microcode about something. For instance,
1380 * a few of them throw this after timeouts. They buffer
1381 * commands and reply at commands we timed out before.
1382 * Without flushing these replies we loop forever.
1384 ub_state_stat_counted(sc, cmd);
1388 len = le32_to_cpu(bcs->Residue);
1389 if (len != cmd->len - cmd->act_len) {
1391 * It is all right to transfer less, the caller has
1392 * to check. But it's not all right if the device
1393 * counts disagree with our counts.
1395 /* P3 */ printk("%s: resid %d len %d act %d\n",
1396 sc->name, len, cmd->len, cmd->act_len);
1400 switch (bcs->Status) {
1401 case US_BULK_STAT_OK:
1403 case US_BULK_STAT_FAIL:
1404 ub_state_sense(sc, cmd);
1406 case US_BULK_STAT_PHASE:
1407 /* P3 */ printk("%s: status PHASE\n", sc->name);
1410 printk(KERN_INFO "%s: unknown CSW status 0x%x\n",
1411 sc->name, bcs->Status);
1412 ub_state_done(sc, cmd, -EINVAL);
1416 /* Not zeroing error to preserve a babble indicator */
1417 if (cmd->error != 0) {
1418 ub_state_sense(sc, cmd);
1421 cmd->state = UB_CMDST_DONE;
1422 ub_cmdtr_state(sc, cmd);
1424 (*cmd->done)(sc, cmd);
1426 } else if (cmd->state == UB_CMDST_SENSE) {
1427 ub_state_done(sc, cmd, -EIO);
1430 printk(KERN_WARNING "%s: "
1431 "wrong command state %d\n",
1432 sc->name, cmd->state);
1433 ub_state_done(sc, cmd, -EINVAL);
1438 Bad_End: /* Little Excel is dead */
1439 ub_state_done(sc, cmd, -EIO);
1443 * Factorization helper for the command state machine:
1444 * Initiate a data segment transfer.
1446 static void ub_data_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1448 struct scatterlist *sg = &cmd->sgv[cmd->current_sg];
1452 UB_INIT_COMPLETION(sc->work_done);
1454 if (cmd->dir == UB_DIR_READ)
1455 pipe = sc->recv_bulk_pipe;
1457 pipe = sc->send_bulk_pipe;
1458 sc->last_pipe = pipe;
1459 usb_fill_bulk_urb(&sc->work_urb, sc->dev, pipe,
1460 page_address(sg->page) + sg->offset, sg->length,
1461 ub_urb_complete, sc);
1462 sc->work_urb.actual_length = 0;
1463 sc->work_urb.error_count = 0;
1464 sc->work_urb.status = 0;
1466 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1467 /* XXX Clear stalls */
1468 ub_complete(&sc->work_done);
1469 ub_state_done(sc, cmd, rc);
1473 sc->work_timer.expires = jiffies + UB_DATA_TIMEOUT;
1474 add_timer(&sc->work_timer);
1476 cmd->state = UB_CMDST_DATA;
1477 ub_cmdtr_state(sc, cmd);
1481 * Factorization helper for the command state machine:
1482 * Finish the command.
1484 static void ub_state_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd, int rc)
1488 cmd->state = UB_CMDST_DONE;
1489 ub_cmdtr_state(sc, cmd);
1491 (*cmd->done)(sc, cmd);
1495 * Factorization helper for the command state machine:
1496 * Submit a CSW read.
1498 static int __ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1502 UB_INIT_COMPLETION(sc->work_done);
1504 sc->last_pipe = sc->recv_bulk_pipe;
1505 usb_fill_bulk_urb(&sc->work_urb, sc->dev, sc->recv_bulk_pipe,
1506 &sc->work_bcs, US_BULK_CS_WRAP_LEN, ub_urb_complete, sc);
1507 sc->work_urb.actual_length = 0;
1508 sc->work_urb.error_count = 0;
1509 sc->work_urb.status = 0;
1511 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1512 /* XXX Clear stalls */
1513 ub_complete(&sc->work_done);
1514 ub_state_done(sc, cmd, rc);
1518 sc->work_timer.expires = jiffies + UB_STAT_TIMEOUT;
1519 add_timer(&sc->work_timer);
1524 * Factorization helper for the command state machine:
1525 * Submit a CSW read and go to STAT state.
1527 static void ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1530 if (__ub_state_stat(sc, cmd) != 0)
1533 cmd->stat_count = 0;
1534 cmd->state = UB_CMDST_STAT;
1535 ub_cmdtr_state(sc, cmd);
1539 * Factorization helper for the command state machine:
1540 * Submit a CSW read and go to STAT state with counter (along [C] path).
1542 static void ub_state_stat_counted(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1545 if (++cmd->stat_count >= 4) {
1546 ub_state_sense(sc, cmd);
1550 if (__ub_state_stat(sc, cmd) != 0)
1553 cmd->state = UB_CMDST_STAT;
1554 ub_cmdtr_state(sc, cmd);
1558 * Factorization helper for the command state machine:
1559 * Submit a REQUEST SENSE and go to SENSE state.
1561 static void ub_state_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1563 struct ub_scsi_cmd *scmd;
1564 struct scatterlist *sg;
1567 if (cmd->cdb[0] == REQUEST_SENSE) {
1572 scmd = &sc->top_rqs_cmd;
1573 memset(scmd, 0, sizeof(struct ub_scsi_cmd));
1574 scmd->cdb[0] = REQUEST_SENSE;
1575 scmd->cdb[4] = UB_SENSE_SIZE;
1577 scmd->dir = UB_DIR_READ;
1578 scmd->state = UB_CMDST_INIT;
1581 sg->page = virt_to_page(sc->top_sense);
1582 sg->offset = (unsigned long)sc->top_sense & (PAGE_SIZE-1);
1583 sg->length = UB_SENSE_SIZE;
1584 scmd->len = UB_SENSE_SIZE;
1585 scmd->lun = cmd->lun;
1586 scmd->done = ub_top_sense_done;
1589 scmd->tag = sc->tagcnt++;
1591 cmd->state = UB_CMDST_SENSE;
1592 ub_cmdtr_state(sc, cmd);
1594 ub_cmdq_insert(sc, scmd);
1598 ub_state_done(sc, cmd, rc);
1602 * A helper for the command's state machine:
1603 * Submit a stall clear.
1605 static int ub_submit_clear_stall(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
1609 struct usb_ctrlrequest *cr;
1612 endp = usb_pipeendpoint(stalled_pipe);
1613 if (usb_pipein (stalled_pipe))
1617 cr->bRequestType = USB_RECIP_ENDPOINT;
1618 cr->bRequest = USB_REQ_CLEAR_FEATURE;
1619 cr->wValue = cpu_to_le16(USB_ENDPOINT_HALT);
1620 cr->wIndex = cpu_to_le16(endp);
1621 cr->wLength = cpu_to_le16(0);
1623 UB_INIT_COMPLETION(sc->work_done);
1625 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
1626 (unsigned char*) cr, NULL, 0, ub_urb_complete, sc);
1627 sc->work_urb.actual_length = 0;
1628 sc->work_urb.error_count = 0;
1629 sc->work_urb.status = 0;
1631 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1632 ub_complete(&sc->work_done);
1636 sc->work_timer.expires = jiffies + UB_CTRL_TIMEOUT;
1637 add_timer(&sc->work_timer);
1643 static void ub_top_sense_done(struct ub_dev *sc, struct ub_scsi_cmd *scmd)
1645 unsigned char *sense = sc->top_sense;
1646 struct ub_scsi_cmd *cmd;
1649 * Ignoring scmd->act_len, because the buffer was pre-zeroed.
1651 ub_cmdtr_sense(sc, scmd, sense);
1654 * Find the command which triggered the unit attention or a check,
1655 * save the sense into it, and advance its state machine.
1657 if ((cmd = ub_cmdq_peek(sc)) == NULL) {
1658 printk(KERN_WARNING "%s: sense done while idle\n", sc->name);
1661 if (cmd != scmd->back) {
1662 printk(KERN_WARNING "%s: "
1663 "sense done for wrong command 0x%x\n",
1664 sc->name, cmd->tag);
1667 if (cmd->state != UB_CMDST_SENSE) {
1668 printk(KERN_WARNING "%s: "
1669 "sense done with bad cmd state %d\n",
1670 sc->name, cmd->state);
1674 cmd->key = sense[2] & 0x0F;
1675 cmd->asc = sense[12];
1676 cmd->ascq = sense[13];
1678 ub_scsi_urb_compl(sc, cmd);
1685 static void ub_reset_enter(struct ub_dev *sc)
1689 /* This happens often on multi-LUN devices. */
1694 #if 0 /* Not needed because the disconnect waits for us. */
1695 unsigned long flags;
1696 spin_lock_irqsave(&ub_lock, flags);
1698 spin_unlock_irqrestore(&ub_lock, flags);
1701 #if 0 /* We let them stop themselves. */
1702 struct list_head *p;
1704 list_for_each(p, &sc->luns) {
1705 lun = list_entry(p, struct ub_lun, link);
1706 blk_stop_queue(lun->disk->queue);
1710 schedule_work(&sc->reset_work);
1713 static void ub_reset_task(void *arg)
1715 struct ub_dev *sc = arg;
1716 unsigned long flags;
1717 struct list_head *p;
1722 printk(KERN_WARNING "%s: Running reset unrequested\n",
1727 if (atomic_read(&sc->poison)) {
1728 printk(KERN_NOTICE "%s: Not resetting disconnected device\n",
1729 sc->name); /* P3 This floods. Remove soon. XXX */
1730 } else if (sc->dev->actconfig->desc.bNumInterfaces != 1) {
1731 printk(KERN_NOTICE "%s: Not resetting multi-interface device\n",
1732 sc->name); /* P3 This floods. Remove soon. XXX */
1734 if ((lkr = usb_lock_device_for_reset(sc->dev, sc->intf)) < 0) {
1736 "%s: usb_lock_device_for_reset failed (%d)\n",
1739 rc = usb_reset_device(sc->dev);
1741 printk(KERN_NOTICE "%s: "
1742 "usb_lock_device_for_reset failed (%d)\n",
1747 usb_unlock_device(sc->dev);
1752 * In theory, no commands can be running while reset is active,
1753 * so nobody can ask for another reset, and so we do not need any
1754 * queues of resets or anything. We do need a spinlock though,
1755 * to interact with block layer.
1757 spin_lock_irqsave(&sc->lock, flags);
1759 tasklet_schedule(&sc->tasklet);
1760 list_for_each(p, &sc->luns) {
1761 lun = list_entry(p, struct ub_lun, link);
1762 blk_start_queue(lun->disk->queue);
1764 wake_up(&sc->reset_wait);
1765 spin_unlock_irqrestore(&sc->lock, flags);
1769 * This is called from a process context.
1771 static void ub_revalidate(struct ub_dev *sc, struct ub_lun *lun)
1774 lun->readonly = 0; /* XXX Query this from the device */
1776 lun->capacity.nsec = 0;
1777 lun->capacity.bsize = 512;
1778 lun->capacity.bshift = 0;
1780 if (ub_sync_tur(sc, lun) != 0)
1781 return; /* Not ready */
1784 if (ub_sync_read_cap(sc, lun, &lun->capacity) != 0) {
1786 * The retry here means something is wrong, either with the
1787 * device, with the transport, or with our code.
1788 * We keep this because sd.c has retries for capacity.
1790 if (ub_sync_read_cap(sc, lun, &lun->capacity) != 0) {
1791 lun->capacity.nsec = 0;
1792 lun->capacity.bsize = 512;
1793 lun->capacity.bshift = 0;
1800 * This is mostly needed to keep refcounting, but also to support
1801 * media checks on removable media drives.
1803 static int ub_bd_open(struct inode *inode, struct file *filp)
1805 struct gendisk *disk = inode->i_bdev->bd_disk;
1808 unsigned long flags;
1811 if ((lun = disk->private_data) == NULL)
1815 spin_lock_irqsave(&ub_lock, flags);
1816 if (atomic_read(&sc->poison)) {
1817 spin_unlock_irqrestore(&ub_lock, flags);
1821 spin_unlock_irqrestore(&ub_lock, flags);
1824 * This is a workaround for a specific problem in our block layer.
1825 * In 2.6.9, register_disk duplicates the code from rescan_partitions.
1826 * However, if we do add_disk with a device which persistently reports
1827 * a changed media, add_disk calls register_disk, which does do_open,
1828 * which will call rescan_paritions for changed media. After that,
1829 * register_disk attempts to do it all again and causes double kobject
1830 * registration and a eventually an oops on module removal.
1832 * The bottom line is, Al Viro says that we should not allow
1833 * bdev->bd_invalidated to be set when doing add_disk no matter what.
1835 if (lun->first_open) {
1836 lun->first_open = 0;
1843 if (lun->removable || lun->readonly)
1844 check_disk_change(inode->i_bdev);
1847 * The sd.c considers ->media_present and ->changed not equivalent,
1848 * under some pretty murky conditions (a failure of READ CAPACITY).
1849 * We may need it one day.
1851 if (lun->removable && lun->changed && !(filp->f_flags & O_NDELAY)) {
1856 if (lun->readonly && (filp->f_mode & FMODE_WRITE)) {
1870 static int ub_bd_release(struct inode *inode, struct file *filp)
1872 struct gendisk *disk = inode->i_bdev->bd_disk;
1873 struct ub_lun *lun = disk->private_data;
1874 struct ub_dev *sc = lun->udev;
1881 * The ioctl interface.
1883 static int ub_bd_ioctl(struct inode *inode, struct file *filp,
1884 unsigned int cmd, unsigned long arg)
1886 struct gendisk *disk = inode->i_bdev->bd_disk;
1887 void __user *usermem = (void __user *) arg;
1889 return scsi_cmd_ioctl(filp, disk, cmd, usermem);
1893 * This is called once a new disk was seen by the block layer or by ub_probe().
1894 * The main onjective here is to discover the features of the media such as
1895 * the capacity, read-only status, etc. USB storage generally does not
1896 * need to be spun up, but if we needed it, this would be the place.
1898 * This call can sleep.
1900 * The return code is not used.
1902 static int ub_bd_revalidate(struct gendisk *disk)
1904 struct ub_lun *lun = disk->private_data;
1906 ub_revalidate(lun->udev, lun);
1908 /* XXX Support sector size switching like in sr.c */
1909 blk_queue_hardsect_size(disk->queue, lun->capacity.bsize);
1910 set_capacity(disk, lun->capacity.nsec);
1911 // set_disk_ro(sdkp->disk, lun->readonly);
1917 * The check is called by the block layer to verify if the media
1918 * is still available. It is supposed to be harmless, lightweight and
1919 * non-intrusive in case the media was not changed.
1921 * This call can sleep.
1923 * The return code is bool!
1925 static int ub_bd_media_changed(struct gendisk *disk)
1927 struct ub_lun *lun = disk->private_data;
1929 if (!lun->removable)
1933 * We clean checks always after every command, so this is not
1934 * as dangerous as it looks. If the TEST_UNIT_READY fails here,
1935 * the device is actually not ready with operator or software
1936 * intervention required. One dangerous item might be a drive which
1937 * spins itself down, and come the time to write dirty pages, this
1938 * will fail, then block layer discards the data. Since we never
1939 * spin drives up, such devices simply cannot be used with ub anyway.
1941 if (ub_sync_tur(lun->udev, lun) != 0) {
1946 return lun->changed;
1949 static struct block_device_operations ub_bd_fops = {
1950 .owner = THIS_MODULE,
1952 .release = ub_bd_release,
1953 .ioctl = ub_bd_ioctl,
1954 .media_changed = ub_bd_media_changed,
1955 .revalidate_disk = ub_bd_revalidate,
1959 * Common ->done routine for commands executed synchronously.
1961 static void ub_probe_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1963 struct completion *cop = cmd->back;
1968 * Test if the device has a check condition on it, synchronously.
1970 static int ub_sync_tur(struct ub_dev *sc, struct ub_lun *lun)
1972 struct ub_scsi_cmd *cmd;
1973 enum { ALLOC_SIZE = sizeof(struct ub_scsi_cmd) };
1974 unsigned long flags;
1975 struct completion compl;
1978 init_completion(&compl);
1981 if ((cmd = kmalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
1983 memset(cmd, 0, ALLOC_SIZE);
1985 cmd->cdb[0] = TEST_UNIT_READY;
1987 cmd->dir = UB_DIR_NONE;
1988 cmd->state = UB_CMDST_INIT;
1989 cmd->lun = lun; /* This may be NULL, but that's ok */
1990 cmd->done = ub_probe_done;
1993 spin_lock_irqsave(&sc->lock, flags);
1994 cmd->tag = sc->tagcnt++;
1996 rc = ub_submit_scsi(sc, cmd);
1997 spin_unlock_irqrestore(&sc->lock, flags);
2000 printk("ub: testing ready: submit error (%d)\n", rc); /* P3 */
2004 wait_for_completion(&compl);
2008 if (rc == -EIO && cmd->key != 0) /* Retries for benh's key */
2018 * Read the SCSI capacity synchronously (for probing).
2020 static int ub_sync_read_cap(struct ub_dev *sc, struct ub_lun *lun,
2021 struct ub_capacity *ret)
2023 struct ub_scsi_cmd *cmd;
2024 struct scatterlist *sg;
2026 enum { ALLOC_SIZE = sizeof(struct ub_scsi_cmd) + 8 };
2027 unsigned long flags;
2028 unsigned int bsize, shift;
2030 struct completion compl;
2033 init_completion(&compl);
2036 if ((cmd = kmalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
2038 memset(cmd, 0, ALLOC_SIZE);
2039 p = (char *)cmd + sizeof(struct ub_scsi_cmd);
2043 cmd->dir = UB_DIR_READ;
2044 cmd->state = UB_CMDST_INIT;
2047 sg->page = virt_to_page(p);
2048 sg->offset = (unsigned long)p & (PAGE_SIZE-1);
2052 cmd->done = ub_probe_done;
2055 spin_lock_irqsave(&sc->lock, flags);
2056 cmd->tag = sc->tagcnt++;
2058 rc = ub_submit_scsi(sc, cmd);
2059 spin_unlock_irqrestore(&sc->lock, flags);
2062 printk("ub: reading capacity: submit error (%d)\n", rc); /* P3 */
2066 wait_for_completion(&compl);
2068 if (cmd->error != 0) {
2069 printk("ub: reading capacity: error %d\n", cmd->error); /* P3 */
2073 if (cmd->act_len != 8) {
2074 printk("ub: reading capacity: size %d\n", cmd->act_len); /* P3 */
2079 /* sd.c special-cases sector size of 0 to mean 512. Needed? Safe? */
2080 nsec = be32_to_cpu(*(__be32 *)p) + 1;
2081 bsize = be32_to_cpu(*(__be32 *)(p + 4));
2083 case 512: shift = 0; break;
2084 case 1024: shift = 1; break;
2085 case 2048: shift = 2; break;
2086 case 4096: shift = 3; break;
2088 printk("ub: Bad sector size %u\n", bsize); /* P3 */
2094 ret->bshift = shift;
2095 ret->nsec = nsec << shift;
2108 static void ub_probe_urb_complete(struct urb *urb, struct pt_regs *pt)
2110 struct completion *cop = urb->context;
2114 static void ub_probe_timeout(unsigned long arg)
2116 struct completion *cop = (struct completion *) arg;
2121 * Get number of LUNs by the way of Bulk GetMaxLUN command.
2123 static int ub_sync_getmaxlun(struct ub_dev *sc)
2125 int ifnum = sc->intf->cur_altsetting->desc.bInterfaceNumber;
2127 enum { ALLOC_SIZE = 1 };
2128 struct usb_ctrlrequest *cr;
2129 struct completion compl;
2130 struct timer_list timer;
2134 init_completion(&compl);
2137 if ((p = kmalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
2142 cr->bRequestType = USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE;
2143 cr->bRequest = US_BULK_GET_MAX_LUN;
2144 cr->wValue = cpu_to_le16(0);
2145 cr->wIndex = cpu_to_le16(ifnum);
2146 cr->wLength = cpu_to_le16(1);
2148 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->recv_ctrl_pipe,
2149 (unsigned char*) cr, p, 1, ub_probe_urb_complete, &compl);
2150 sc->work_urb.actual_length = 0;
2151 sc->work_urb.error_count = 0;
2152 sc->work_urb.status = 0;
2154 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0) {
2156 printk("%s: Stall submitting GetMaxLUN, using 1 LUN\n",
2160 "%s: Unable to submit GetMaxLUN (%d)\n",
2167 timer.function = ub_probe_timeout;
2168 timer.data = (unsigned long) &compl;
2169 timer.expires = jiffies + UB_CTRL_TIMEOUT;
2172 wait_for_completion(&compl);
2174 del_timer_sync(&timer);
2175 usb_kill_urb(&sc->work_urb);
2177 if ((rc = sc->work_urb.status) < 0) {
2179 printk("%s: Stall at GetMaxLUN, using 1 LUN\n",
2183 "%s: Error at GetMaxLUN (%d)\n",
2189 if (sc->work_urb.actual_length != 1) {
2190 printk("%s: GetMaxLUN returned %d bytes\n", sc->name,
2191 sc->work_urb.actual_length); /* P3 */
2194 if ((nluns = *p) == 55) {
2197 /* GetMaxLUN returns the maximum LUN number */
2199 if (nluns > UB_MAX_LUNS)
2200 nluns = UB_MAX_LUNS;
2202 printk("%s: GetMaxLUN returned %d, using %d LUNs\n", sc->name,
2203 *p, nluns); /* P3 */
2217 * Clear initial stalls.
2219 static int ub_probe_clear_stall(struct ub_dev *sc, int stalled_pipe)
2222 struct usb_ctrlrequest *cr;
2223 struct completion compl;
2224 struct timer_list timer;
2227 init_completion(&compl);
2229 endp = usb_pipeendpoint(stalled_pipe);
2230 if (usb_pipein (stalled_pipe))
2234 cr->bRequestType = USB_RECIP_ENDPOINT;
2235 cr->bRequest = USB_REQ_CLEAR_FEATURE;
2236 cr->wValue = cpu_to_le16(USB_ENDPOINT_HALT);
2237 cr->wIndex = cpu_to_le16(endp);
2238 cr->wLength = cpu_to_le16(0);
2240 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
2241 (unsigned char*) cr, NULL, 0, ub_probe_urb_complete, &compl);
2242 sc->work_urb.actual_length = 0;
2243 sc->work_urb.error_count = 0;
2244 sc->work_urb.status = 0;
2246 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0) {
2248 "%s: Unable to submit a probe clear (%d)\n", sc->name, rc);
2253 timer.function = ub_probe_timeout;
2254 timer.data = (unsigned long) &compl;
2255 timer.expires = jiffies + UB_CTRL_TIMEOUT;
2258 wait_for_completion(&compl);
2260 del_timer_sync(&timer);
2261 usb_kill_urb(&sc->work_urb);
2263 /* reset the endpoint toggle */
2264 usb_settoggle(sc->dev, endp, usb_pipeout(sc->last_pipe), 0);
2270 * Get the pipe settings.
2272 static int ub_get_pipes(struct ub_dev *sc, struct usb_device *dev,
2273 struct usb_interface *intf)
2275 struct usb_host_interface *altsetting = intf->cur_altsetting;
2276 struct usb_endpoint_descriptor *ep_in = NULL;
2277 struct usb_endpoint_descriptor *ep_out = NULL;
2278 struct usb_endpoint_descriptor *ep;
2282 * Find the endpoints we need.
2283 * We are expecting a minimum of 2 endpoints - in and out (bulk).
2284 * We will ignore any others.
2286 for (i = 0; i < altsetting->desc.bNumEndpoints; i++) {
2287 ep = &altsetting->endpoint[i].desc;
2289 /* Is it a BULK endpoint? */
2290 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
2291 == USB_ENDPOINT_XFER_BULK) {
2292 /* BULK in or out? */
2293 if (ep->bEndpointAddress & USB_DIR_IN)
2300 if (ep_in == NULL || ep_out == NULL) {
2301 printk(KERN_NOTICE "%s: failed endpoint check\n",
2306 /* Calculate and store the pipe values */
2307 sc->send_ctrl_pipe = usb_sndctrlpipe(dev, 0);
2308 sc->recv_ctrl_pipe = usb_rcvctrlpipe(dev, 0);
2309 sc->send_bulk_pipe = usb_sndbulkpipe(dev,
2310 ep_out->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
2311 sc->recv_bulk_pipe = usb_rcvbulkpipe(dev,
2312 ep_in->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
2318 * Probing is done in the process context, which allows us to cheat
2319 * and not to build a state machine for the discovery.
2321 static int ub_probe(struct usb_interface *intf,
2322 const struct usb_device_id *dev_id)
2329 if (usb_usual_check_type(dev_id, USB_US_TYPE_UB))
2333 if ((sc = kmalloc(sizeof(struct ub_dev), GFP_KERNEL)) == NULL)
2335 memset(sc, 0, sizeof(struct ub_dev));
2336 spin_lock_init(&sc->lock);
2337 INIT_LIST_HEAD(&sc->luns);
2338 usb_init_urb(&sc->work_urb);
2339 tasklet_init(&sc->tasklet, ub_scsi_action, (unsigned long)sc);
2340 atomic_set(&sc->poison, 0);
2341 INIT_WORK(&sc->reset_work, ub_reset_task, sc);
2342 init_waitqueue_head(&sc->reset_wait);
2344 init_timer(&sc->work_timer);
2345 sc->work_timer.data = (unsigned long) sc;
2346 sc->work_timer.function = ub_urb_timeout;
2348 ub_init_completion(&sc->work_done);
2349 sc->work_done.done = 1; /* A little yuk, but oh well... */
2351 sc->dev = interface_to_usbdev(intf);
2353 // sc->ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
2354 usb_set_intfdata(intf, sc);
2355 usb_get_dev(sc->dev);
2356 // usb_get_intf(sc->intf); /* Do we need this? */
2358 snprintf(sc->name, 12, DRV_NAME "(%d.%d)",
2359 sc->dev->bus->busnum, sc->dev->devnum);
2361 /* XXX Verify that we can handle the device (from descriptors) */
2363 if (ub_get_pipes(sc, sc->dev, intf) != 0)
2366 if (device_create_file(&sc->intf->dev, &dev_attr_diag) != 0)
2370 * At this point, all USB initialization is done, do upper layer.
2371 * We really hate halfway initialized structures, so from the
2372 * invariants perspective, this ub_dev is fully constructed at
2377 * This is needed to clear toggles. It is a problem only if we do
2378 * `rmmod ub && modprobe ub` without disconnects, but we like that.
2380 #if 0 /* iPod Mini fails if we do this (big white iPod works) */
2381 ub_probe_clear_stall(sc, sc->recv_bulk_pipe);
2382 ub_probe_clear_stall(sc, sc->send_bulk_pipe);
2386 * The way this is used by the startup code is a little specific.
2387 * A SCSI check causes a USB stall. Our common case code sees it
2388 * and clears the check, after which the device is ready for use.
2389 * But if a check was not present, any command other than
2390 * TEST_UNIT_READY ends with a lockup (including REQUEST_SENSE).
2392 * If we neglect to clear the SCSI check, the first real command fails
2393 * (which is the capacity readout). We clear that and retry, but why
2394 * causing spurious retries for no reason.
2396 * Revalidation may start with its own TEST_UNIT_READY, but that one
2397 * has to succeed, so we clear checks with an additional one here.
2398 * In any case it's not our business how revaliadation is implemented.
2400 for (i = 0; i < 3; i++) { /* Retries for benh's key */
2401 if ((rc = ub_sync_tur(sc, NULL)) <= 0) break;
2402 if (rc != 0x6) break;
2407 for (i = 0; i < 3; i++) {
2408 if ((rc = ub_sync_getmaxlun(sc)) < 0) {
2410 * This segment is taken from usb-storage. They say
2411 * that ZIP-100 needs this, but my own ZIP-100 works
2412 * fine without this.
2413 * Still, it does not seem to hurt anything.
2416 ub_probe_clear_stall(sc, sc->recv_bulk_pipe);
2417 ub_probe_clear_stall(sc, sc->send_bulk_pipe);
2428 for (i = 0; i < nluns; i++) {
2429 ub_probe_lun(sc, i);
2433 /* device_remove_file(&sc->intf->dev, &dev_attr_diag); */
2436 usb_set_intfdata(intf, NULL);
2437 // usb_put_intf(sc->intf);
2438 usb_put_dev(sc->dev);
2444 static int ub_probe_lun(struct ub_dev *sc, int lnum)
2448 struct gendisk *disk;
2452 if ((lun = kmalloc(sizeof(struct ub_lun), GFP_KERNEL)) == NULL)
2454 memset(lun, 0, sizeof(struct ub_lun));
2458 if ((lun->id = ub_id_get()) == -1)
2462 list_add(&lun->link, &sc->luns);
2464 snprintf(lun->name, 16, DRV_NAME "%c(%d.%d.%d)",
2465 lun->id + 'a', sc->dev->bus->busnum, sc->dev->devnum, lun->num);
2467 lun->removable = 1; /* XXX Query this from the device */
2468 lun->changed = 1; /* ub_revalidate clears only */
2469 lun->first_open = 1;
2470 ub_revalidate(sc, lun);
2473 if ((disk = alloc_disk(UB_PARTS_PER_LUN)) == NULL)
2477 sprintf(disk->disk_name, DRV_NAME "%c", lun->id + 'a');
2478 sprintf(disk->devfs_name, DEVFS_NAME "/%c", lun->id + 'a');
2479 disk->major = UB_MAJOR;
2480 disk->first_minor = lun->id * UB_PARTS_PER_LUN;
2481 disk->fops = &ub_bd_fops;
2482 disk->private_data = lun;
2483 disk->driverfs_dev = &sc->intf->dev;
2486 if ((q = blk_init_queue(ub_request_fn, &sc->lock)) == NULL)
2491 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
2492 blk_queue_max_hw_segments(q, UB_MAX_REQ_SG);
2493 blk_queue_max_phys_segments(q, UB_MAX_REQ_SG);
2494 blk_queue_segment_boundary(q, 0xffffffff); /* Dubious. */
2495 blk_queue_max_sectors(q, UB_MAX_SECTORS);
2496 blk_queue_hardsect_size(q, lun->capacity.bsize);
2500 set_capacity(disk, lun->capacity.nsec);
2502 disk->flags |= GENHD_FL_REMOVABLE;
2511 list_del(&lun->link);
2519 static void ub_disconnect(struct usb_interface *intf)
2521 struct ub_dev *sc = usb_get_intfdata(intf);
2522 struct list_head *p;
2524 struct gendisk *disk;
2525 unsigned long flags;
2528 * Prevent ub_bd_release from pulling the rug from under us.
2529 * XXX This is starting to look like a kref.
2530 * XXX Why not to take this ref at probe time?
2532 spin_lock_irqsave(&ub_lock, flags);
2534 spin_unlock_irqrestore(&ub_lock, flags);
2537 * Fence stall clearnings, operations triggered by unlinkings and so on.
2538 * We do not attempt to unlink any URBs, because we do not trust the
2539 * unlink paths in HC drivers. Also, we get -84 upon disconnect anyway.
2541 atomic_set(&sc->poison, 1);
2544 * Wait for reset to end, if any.
2546 wait_event(sc->reset_wait, !sc->reset);
2549 * Blow away queued commands.
2551 * Actually, this never works, because before we get here
2552 * the HCD terminates outstanding URB(s). It causes our
2553 * SCSI command queue to advance, commands fail to submit,
2554 * and the whole queue drains. So, we just use this code to
2557 spin_lock_irqsave(&sc->lock, flags);
2559 struct ub_scsi_cmd *cmd;
2561 while ((cmd = ub_cmdq_peek(sc)) != NULL) {
2562 cmd->error = -ENOTCONN;
2563 cmd->state = UB_CMDST_DONE;
2564 ub_cmdtr_state(sc, cmd);
2566 (*cmd->done)(sc, cmd);
2570 printk(KERN_WARNING "%s: "
2571 "%d was queued after shutdown\n", sc->name, cnt);
2574 spin_unlock_irqrestore(&sc->lock, flags);
2577 * Unregister the upper layer.
2579 list_for_each (p, &sc->luns) {
2580 lun = list_entry(p, struct ub_lun, link);
2582 if (disk->flags & GENHD_FL_UP)
2585 * I wish I could do:
2586 * set_bit(QUEUE_FLAG_DEAD, &q->queue_flags);
2587 * As it is, we rely on our internal poisoning and let
2588 * the upper levels to spin furiously failing all the I/O.
2593 * Taking a lock on a structure which is about to be freed
2594 * is very nonsensual. Here it is largely a way to do a debug freeze,
2595 * and a bracket which shows where the nonsensual code segment ends.
2597 * Testing for -EINPROGRESS is always a bug, so we are bending
2598 * the rules a little.
2600 spin_lock_irqsave(&sc->lock, flags);
2601 if (sc->work_urb.status == -EINPROGRESS) { /* janitors: ignore */
2602 printk(KERN_WARNING "%s: "
2603 "URB is active after disconnect\n", sc->name);
2605 spin_unlock_irqrestore(&sc->lock, flags);
2608 * There is virtually no chance that other CPU runs times so long
2609 * after ub_urb_complete should have called del_timer, but only if HCD
2610 * didn't forget to deliver a callback on unlink.
2612 del_timer_sync(&sc->work_timer);
2615 * At this point there must be no commands coming from anyone
2616 * and no URBs left in transit.
2619 device_remove_file(&sc->intf->dev, &dev_attr_diag);
2620 usb_set_intfdata(intf, NULL);
2621 // usb_put_intf(sc->intf);
2623 usb_put_dev(sc->dev);
2629 static struct usb_driver ub_driver = {
2632 .disconnect = ub_disconnect,
2633 .id_table = ub_usb_ids,
2636 static int __init ub_init(void)
2640 if ((rc = register_blkdev(UB_MAJOR, DRV_NAME)) != 0)
2642 devfs_mk_dir(DEVFS_NAME);
2644 if ((rc = usb_register(&ub_driver)) != 0)
2647 usb_usual_set_present(USB_US_TYPE_UB);
2651 devfs_remove(DEVFS_NAME);
2652 unregister_blkdev(UB_MAJOR, DRV_NAME);
2657 static void __exit ub_exit(void)
2659 usb_deregister(&ub_driver);
2661 devfs_remove(DEVFS_NAME);
2662 unregister_blkdev(UB_MAJOR, DRV_NAME);
2663 usb_usual_clear_present(USB_US_TYPE_UB);
2666 module_init(ub_init);
2667 module_exit(ub_exit);
2669 MODULE_LICENSE("GPL");