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 <scsi/scsi.h>
37 * The command state machine is the key model for understanding of this driver.
39 * The general rule is that all transitions are done towards the bottom
40 * of the diagram, thus preventing any loops.
42 * An exception to that is how the STAT state is handled. A counter allows it
43 * to be re-entered along the path marked with [C].
49 * ub_scsi_cmd_start fails ->--------------------------------------\
56 * was -EPIPE -->-------------------------------->! CLEAR ! !
59 * was error -->------------------------------------- ! --------->\
61 * /--<-- cmd->dir == NONE ? ! !
68 * ! was -EPIPE -->--------------->! CLR2STS ! ! !
71 * ! ! was error -->---- ! --------->\
72 * ! was error -->--------------------- ! ------------- ! --------->\
75 * \--->+--------+ ! ! !
76 * ! STAT !<--------------------------/ ! !
79 * [C] was -EPIPE -->-----------\ ! !
81 * +<---- len == 0 ! ! !
83 * ! was error -->--------------------------------------!---------->\
85 * +<---- bad CSW ! ! !
86 * +<---- bad tag ! ! !
92 * \------- ! --------------------[C]--------\ ! !
94 * cmd->error---\ +--------+ ! !
95 * ! +--------------->! SENSE !<----------/ !
96 * STAT_FAIL----/ +--------+ !
99 * \--------------------------------\--------------------->! DONE !
104 * This many LUNs per USB device.
105 * Every one of them takes a host, see UB_MAX_HOSTS.
107 #define UB_MAX_LUNS 9
112 #define UB_PARTS_PER_LUN 8
114 #define UB_MAX_CDB_SIZE 16 /* Corresponds to Bulk */
116 #define UB_SENSE_SIZE 18
121 /* command block wrapper */
122 struct bulk_cb_wrap {
123 __le32 Signature; /* contains 'USBC' */
124 u32 Tag; /* unique per command id */
125 __le32 DataTransferLength; /* size of data */
126 u8 Flags; /* direction in bit 0 */
128 u8 Length; /* of of the CDB */
129 u8 CDB[UB_MAX_CDB_SIZE]; /* max command */
132 #define US_BULK_CB_WRAP_LEN 31
133 #define US_BULK_CB_SIGN 0x43425355 /*spells out USBC */
134 #define US_BULK_FLAG_IN 1
135 #define US_BULK_FLAG_OUT 0
137 /* command status wrapper */
138 struct bulk_cs_wrap {
139 __le32 Signature; /* should = 'USBS' */
140 u32 Tag; /* same as original command */
141 __le32 Residue; /* amount not transferred */
142 u8 Status; /* see below */
145 #define US_BULK_CS_WRAP_LEN 13
146 #define US_BULK_CS_SIGN 0x53425355 /* spells out 'USBS' */
147 #define US_BULK_STAT_OK 0
148 #define US_BULK_STAT_FAIL 1
149 #define US_BULK_STAT_PHASE 2
151 /* bulk-only class specific requests */
152 #define US_BULK_RESET_REQUEST 0xff
153 #define US_BULK_GET_MAX_LUN 0xfe
159 #define UB_MAX_REQ_SG 9 /* cdrecord requires 32KB and maybe a header */
160 #define UB_MAX_SECTORS 64
163 * A second is more than enough for a 32K transfer (UB_MAX_SECTORS)
164 * even if a webcam hogs the bus, but some devices need time to spin up.
166 #define UB_URB_TIMEOUT (HZ*2)
167 #define UB_DATA_TIMEOUT (HZ*5) /* ZIP does spin-ups in the data phase */
168 #define UB_STAT_TIMEOUT (HZ*5) /* Same spinups and eject for a dataless cmd. */
169 #define UB_CTRL_TIMEOUT (HZ/2) /* 500ms ought to be enough to clear a stall */
172 * An instance of a SCSI command in transit.
174 #define UB_DIR_NONE 0
175 #define UB_DIR_READ 1
176 #define UB_DIR_ILLEGAL2 2
177 #define UB_DIR_WRITE 3
179 #define UB_DIR_CHAR(c) (((c)==UB_DIR_WRITE)? 'w': \
180 (((c)==UB_DIR_READ)? 'r': 'n'))
182 enum ub_scsi_cmd_state {
183 UB_CMDST_INIT, /* Initial state */
184 UB_CMDST_CMD, /* Command submitted */
185 UB_CMDST_DATA, /* Data phase */
186 UB_CMDST_CLR2STS, /* Clearing before requesting status */
187 UB_CMDST_STAT, /* Status phase */
188 UB_CMDST_CLEAR, /* Clearing a stall (halt, actually) */
189 UB_CMDST_CLRRS, /* Clearing before retrying status */
190 UB_CMDST_SENSE, /* Sending Request Sense */
191 UB_CMDST_DONE /* Final state */
195 unsigned char cdb[UB_MAX_CDB_SIZE];
196 unsigned char cdb_len;
198 unsigned char dir; /* 0 - none, 1 - read, 3 - write. */
199 enum ub_scsi_cmd_state state;
201 struct ub_scsi_cmd *next;
203 int error; /* Return code - valid upon done */
204 unsigned int act_len; /* Return size */
205 unsigned char key, asc, ascq; /* May be valid if error==-EIO */
207 int stat_count; /* Retries getting status. */
208 unsigned int timeo; /* jiffies until rq->timeout changes */
210 unsigned int len; /* Requested length */
211 unsigned int current_sg;
212 unsigned int nsg; /* sgv[nsg] */
213 struct scatterlist sgv[UB_MAX_REQ_SG];
216 void (*done)(struct ub_dev *, struct ub_scsi_cmd *);
222 unsigned int current_try;
223 unsigned int nsg; /* sgv[nsg] */
224 struct scatterlist sgv[UB_MAX_REQ_SG];
230 unsigned long nsec; /* Linux size - 512 byte sectors */
231 unsigned int bsize; /* Linux hardsect_size */
232 unsigned int bshift; /* Shift between 512 and hard sects */
236 * This is a direct take-off from linux/include/completion.h
237 * The difference is that I do not wait on this thing, just poll.
238 * When I want to wait (ub_probe), I just use the stock completion.
240 * Note that INIT_COMPLETION takes no lock. It is correct. But why
241 * in the bloody hell that thing takes struct instead of pointer to struct
242 * is quite beyond me. I just copied it from the stock completion.
244 struct ub_completion {
249 static inline void ub_init_completion(struct ub_completion *x)
252 spin_lock_init(&x->lock);
255 #define UB_INIT_COMPLETION(x) ((x).done = 0)
257 static void ub_complete(struct ub_completion *x)
261 spin_lock_irqsave(&x->lock, flags);
263 spin_unlock_irqrestore(&x->lock, flags);
266 static int ub_is_completed(struct ub_completion *x)
271 spin_lock_irqsave(&x->lock, flags);
273 spin_unlock_irqrestore(&x->lock, flags);
279 struct ub_scsi_cmd_queue {
281 struct ub_scsi_cmd *head, *tail;
285 * The block device instance (one per LUN).
289 struct list_head link;
290 struct gendisk *disk;
291 int id; /* Host index */
292 int num; /* LUN number */
295 int changed; /* Media was changed */
299 struct ub_request urq;
301 /* Use Ingo's mempool if or when we have more than one command. */
303 * Currently we never need more than one command for the whole device.
304 * However, giving every LUN a command is a cheap and automatic way
305 * to enforce fairness between them.
308 struct ub_scsi_cmd cmdv[1];
310 struct ub_capacity capacity;
314 * The USB device instance.
318 atomic_t poison; /* The USB device is disconnected */
319 int openc; /* protected by ub_lock! */
320 /* kref is too implicit for our taste */
321 int reset; /* Reset is running */
324 struct usb_device *dev;
325 struct usb_interface *intf;
327 struct list_head luns;
329 unsigned int send_bulk_pipe; /* cached pipe values */
330 unsigned int recv_bulk_pipe;
331 unsigned int send_ctrl_pipe;
332 unsigned int recv_ctrl_pipe;
334 struct tasklet_struct tasklet;
336 struct ub_scsi_cmd_queue cmd_queue;
337 struct ub_scsi_cmd top_rqs_cmd; /* REQUEST SENSE */
338 unsigned char top_sense[UB_SENSE_SIZE];
340 struct ub_completion work_done;
342 struct timer_list work_timer;
343 int last_pipe; /* What might need clearing */
344 __le32 signature; /* Learned signature */
345 struct bulk_cb_wrap work_bcb;
346 struct bulk_cs_wrap work_bcs;
347 struct usb_ctrlrequest work_cr;
349 struct work_struct reset_work;
350 wait_queue_head_t reset_wait;
357 static void ub_cleanup(struct ub_dev *sc);
358 static int ub_request_fn_1(struct ub_lun *lun, struct request *rq);
359 static void ub_cmd_build_block(struct ub_dev *sc, struct ub_lun *lun,
360 struct ub_scsi_cmd *cmd, struct ub_request *urq);
361 static void ub_cmd_build_packet(struct ub_dev *sc, struct ub_lun *lun,
362 struct ub_scsi_cmd *cmd, struct ub_request *urq);
363 static void ub_rw_cmd_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
364 static void ub_end_rq(struct request *rq, unsigned int status,
365 unsigned int cmd_len);
366 static int ub_rw_cmd_retry(struct ub_dev *sc, struct ub_lun *lun,
367 struct ub_request *urq, struct ub_scsi_cmd *cmd);
368 static int ub_submit_scsi(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
369 static void ub_urb_complete(struct urb *urb);
370 static void ub_scsi_action(unsigned long _dev);
371 static void ub_scsi_dispatch(struct ub_dev *sc);
372 static void ub_scsi_urb_compl(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
373 static void ub_data_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
374 static void ub_state_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd, int rc);
375 static int __ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
376 static void ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
377 static void ub_state_stat_counted(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
378 static void ub_state_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
379 static int ub_submit_clear_stall(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
381 static void ub_top_sense_done(struct ub_dev *sc, struct ub_scsi_cmd *scmd);
382 static void ub_reset_enter(struct ub_dev *sc, int try);
383 static void ub_reset_task(struct work_struct *work);
384 static int ub_sync_tur(struct ub_dev *sc, struct ub_lun *lun);
385 static int ub_sync_read_cap(struct ub_dev *sc, struct ub_lun *lun,
386 struct ub_capacity *ret);
387 static int ub_sync_reset(struct ub_dev *sc);
388 static int ub_probe_clear_stall(struct ub_dev *sc, int stalled_pipe);
389 static int ub_probe_lun(struct ub_dev *sc, int lnum);
393 #ifdef CONFIG_USB_LIBUSUAL
395 #define ub_usb_ids storage_usb_ids
398 static struct usb_device_id ub_usb_ids[] = {
399 { USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE, US_SC_SCSI, US_PR_BULK) },
403 MODULE_DEVICE_TABLE(usb, ub_usb_ids);
404 #endif /* CONFIG_USB_LIBUSUAL */
407 * Find me a way to identify "next free minor" for add_disk(),
408 * and the array disappears the next day. However, the number of
409 * hosts has something to do with the naming and /proc/partitions.
410 * This has to be thought out in detail before changing.
411 * If UB_MAX_HOST was 1000, we'd use a bitmap. Or a better data structure.
413 #define UB_MAX_HOSTS 26
414 static char ub_hostv[UB_MAX_HOSTS];
416 #define UB_QLOCK_NUM 5
417 static spinlock_t ub_qlockv[UB_QLOCK_NUM];
418 static int ub_qlock_next = 0;
420 static DEFINE_SPINLOCK(ub_lock); /* Locks globals and ->openc */
425 * This also stores the host for indexing by minor, which is somewhat dirty.
427 static int ub_id_get(void)
432 spin_lock_irqsave(&ub_lock, flags);
433 for (i = 0; i < UB_MAX_HOSTS; i++) {
434 if (ub_hostv[i] == 0) {
436 spin_unlock_irqrestore(&ub_lock, flags);
440 spin_unlock_irqrestore(&ub_lock, flags);
444 static void ub_id_put(int id)
448 if (id < 0 || id >= UB_MAX_HOSTS) {
449 printk(KERN_ERR DRV_NAME ": bad host ID %d\n", id);
453 spin_lock_irqsave(&ub_lock, flags);
454 if (ub_hostv[id] == 0) {
455 spin_unlock_irqrestore(&ub_lock, flags);
456 printk(KERN_ERR DRV_NAME ": freeing free host ID %d\n", id);
460 spin_unlock_irqrestore(&ub_lock, flags);
464 * This is necessitated by the fact that blk_cleanup_queue does not
465 * necesserily destroy the queue. Instead, it may merely decrease q->refcnt.
466 * Since our blk_init_queue() passes a spinlock common with ub_dev,
467 * we have life time issues when ub_cleanup frees ub_dev.
469 static spinlock_t *ub_next_lock(void)
474 spin_lock_irqsave(&ub_lock, flags);
475 ret = &ub_qlockv[ub_qlock_next];
476 ub_qlock_next = (ub_qlock_next + 1) % UB_QLOCK_NUM;
477 spin_unlock_irqrestore(&ub_lock, flags);
482 * Downcount for deallocation. This rides on two assumptions:
483 * - once something is poisoned, its refcount cannot grow
484 * - opens cannot happen at this time (del_gendisk was done)
485 * If the above is true, we can drop the lock, which we need for
486 * blk_cleanup_queue(): the silly thing may attempt to sleep.
487 * [Actually, it never needs to sleep for us, but it calls might_sleep()]
489 static void ub_put(struct ub_dev *sc)
493 spin_lock_irqsave(&ub_lock, flags);
495 if (sc->openc == 0 && atomic_read(&sc->poison)) {
496 spin_unlock_irqrestore(&ub_lock, flags);
499 spin_unlock_irqrestore(&ub_lock, flags);
504 * Final cleanup and deallocation.
506 static void ub_cleanup(struct ub_dev *sc)
510 struct request_queue *q;
512 while (!list_empty(&sc->luns)) {
514 lun = list_entry(p, struct ub_lun, link);
517 /* I don't think queue can be NULL. But... Stolen from sx8.c */
518 if ((q = lun->disk->queue) != NULL)
519 blk_cleanup_queue(q);
521 * If we zero disk->private_data BEFORE put_disk, we have
522 * to check for NULL all over the place in open, release,
523 * check_media and revalidate, because the block level
524 * semaphore is well inside the put_disk.
525 * But we cannot zero after the call, because *disk is gone.
526 * The sd.c is blatantly racy in this area.
528 /* disk->private_data = NULL; */
536 usb_set_intfdata(sc->intf, NULL);
537 usb_put_intf(sc->intf);
538 usb_put_dev(sc->dev);
543 * The "command allocator".
545 static struct ub_scsi_cmd *ub_get_cmd(struct ub_lun *lun)
547 struct ub_scsi_cmd *ret;
556 static void ub_put_cmd(struct ub_lun *lun, struct ub_scsi_cmd *cmd)
558 if (cmd != &lun->cmdv[0]) {
559 printk(KERN_WARNING "%s: releasing a foreign cmd %p\n",
564 printk(KERN_WARNING "%s: releasing a free cmd\n", lun->name);
573 static void ub_cmdq_add(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
575 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
577 if (t->qlen++ == 0) {
585 if (t->qlen > t->qmax)
589 static void ub_cmdq_insert(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
591 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
593 if (t->qlen++ == 0) {
601 if (t->qlen > t->qmax)
605 static struct ub_scsi_cmd *ub_cmdq_pop(struct ub_dev *sc)
607 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
608 struct ub_scsi_cmd *cmd;
620 #define ub_cmdq_peek(sc) ((sc)->cmd_queue.head)
623 * The request function is our main entry point
626 static void ub_request_fn(struct request_queue *q)
628 struct ub_lun *lun = q->queuedata;
631 while ((rq = elv_next_request(q)) != NULL) {
632 if (ub_request_fn_1(lun, rq) != 0) {
639 static int ub_request_fn_1(struct ub_lun *lun, struct request *rq)
641 struct ub_dev *sc = lun->udev;
642 struct ub_scsi_cmd *cmd;
643 struct ub_request *urq;
646 if (atomic_read(&sc->poison)) {
647 blkdev_dequeue_request(rq);
648 ub_end_rq(rq, DID_NO_CONNECT << 16, blk_rq_bytes(rq));
652 if (lun->changed && !blk_pc_request(rq)) {
653 blkdev_dequeue_request(rq);
654 ub_end_rq(rq, SAM_STAT_CHECK_CONDITION, blk_rq_bytes(rq));
658 if (lun->urq.rq != NULL)
660 if ((cmd = ub_get_cmd(lun)) == NULL)
662 memset(cmd, 0, sizeof(struct ub_scsi_cmd));
664 blkdev_dequeue_request(rq);
667 memset(urq, 0, sizeof(struct ub_request));
671 * get scatterlist from block layer
673 sg_init_table(&urq->sgv[0], UB_MAX_REQ_SG);
674 n_elem = blk_rq_map_sg(lun->disk->queue, rq, &urq->sgv[0]);
676 /* Impossible, because blk_rq_map_sg should not hit ENOMEM. */
677 printk(KERN_INFO "%s: failed request map (%d)\n",
681 if (n_elem > UB_MAX_REQ_SG) { /* Paranoia */
682 printk(KERN_WARNING "%s: request with %d segments\n",
687 sc->sg_stat[n_elem < 5 ? n_elem : 5]++;
689 if (blk_pc_request(rq)) {
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, blk_rq_bytes(rq));
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_hardsect_size() guarantees that request
729 * is aligned, but it is given in terms of 512 byte units, always.
731 block = rq->sector >> lun->capacity.bshift;
732 nblks = rq->nr_sectors >> 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 = rq->nr_sectors * 512;
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 (rq->data_len == 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 = rq->data_len;
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;
782 unsigned int cmd_len;
786 if (cmd->error == 0) {
787 if (blk_pc_request(rq)) {
788 if (cmd->act_len >= rq->data_len)
791 rq->data_len -= cmd->act_len;
794 if (cmd->act_len != cmd->len) {
795 scsi_status = SAM_STAT_CHECK_CONDITION;
801 if (blk_pc_request(rq)) {
802 /* UB_SENSE_SIZE is smaller than SCSI_SENSE_BUFFERSIZE */
803 memcpy(rq->sense, sc->top_sense, UB_SENSE_SIZE);
804 rq->sense_len = UB_SENSE_SIZE;
805 if (sc->top_sense[0] != 0)
806 scsi_status = SAM_STAT_CHECK_CONDITION;
808 scsi_status = DID_ERROR << 16;
810 if (cmd->error == -EIO &&
812 cmd->key == MEDIUM_ERROR ||
813 cmd->key == UNIT_ATTENTION)) {
814 if (ub_rw_cmd_retry(sc, lun, urq, cmd) == 0)
817 scsi_status = SAM_STAT_CHECK_CONDITION;
824 ub_put_cmd(lun, cmd);
825 ub_end_rq(rq, scsi_status, cmd_len);
826 blk_start_queue(lun->disk->queue);
829 static void ub_end_rq(struct request *rq, unsigned int scsi_status,
830 unsigned int cmd_len)
835 if (scsi_status == 0) {
839 rq->errors = scsi_status;
841 rqlen = blk_rq_bytes(rq); /* Oddly enough, this is the residue. */
842 if (__blk_end_request(rq, error, cmd_len)) {
843 printk(KERN_WARNING DRV_NAME
844 ": __blk_end_request blew, %s-cmd total %u rqlen %ld\n",
845 blk_pc_request(rq)? "pc": "fs", cmd_len, rqlen);
849 static int ub_rw_cmd_retry(struct ub_dev *sc, struct ub_lun *lun,
850 struct ub_request *urq, struct ub_scsi_cmd *cmd)
853 if (atomic_read(&sc->poison))
856 ub_reset_enter(sc, urq->current_try);
858 if (urq->current_try >= 3)
862 /* Remove this if anyone complains of flooding. */
863 printk(KERN_DEBUG "%s: dir %c len/act %d/%d "
864 "[sense %x %02x %02x] retry %d\n",
865 sc->name, UB_DIR_CHAR(cmd->dir), cmd->len, cmd->act_len,
866 cmd->key, cmd->asc, cmd->ascq, urq->current_try);
868 memset(cmd, 0, sizeof(struct ub_scsi_cmd));
869 ub_cmd_build_block(sc, lun, cmd, urq);
871 cmd->state = UB_CMDST_INIT;
873 cmd->done = ub_rw_cmd_done;
876 cmd->tag = sc->tagcnt++;
879 return ub_submit_scsi(sc, cmd);
881 ub_cmdq_add(sc, cmd);
887 * Submit a regular SCSI operation (not an auto-sense).
889 * The Iron Law of Good Submit Routine is:
890 * Zero return - callback is done, Nonzero return - callback is not done.
893 * Host is assumed locked.
895 static int ub_submit_scsi(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
898 if (cmd->state != UB_CMDST_INIT ||
899 (cmd->dir != UB_DIR_NONE && cmd->len == 0)) {
903 ub_cmdq_add(sc, cmd);
905 * We can call ub_scsi_dispatch(sc) right away here, but it's a little
906 * safer to jump to a tasklet, in case upper layers do something silly.
908 tasklet_schedule(&sc->tasklet);
913 * Submit the first URB for the queued command.
914 * This function does not deal with queueing in any way.
916 static int ub_scsi_cmd_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
918 struct bulk_cb_wrap *bcb;
924 * ``If the allocation length is eighteen or greater, and a device
925 * server returns less than eithteen bytes of data, the application
926 * client should assume that the bytes not transferred would have been
927 * zeroes had the device server returned those bytes.''
929 * We zero sense for all commands so that when a packet request
930 * fails it does not return a stale sense.
932 memset(&sc->top_sense, 0, UB_SENSE_SIZE);
934 /* set up the command wrapper */
935 bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
936 bcb->Tag = cmd->tag; /* Endianness is not important */
937 bcb->DataTransferLength = cpu_to_le32(cmd->len);
938 bcb->Flags = (cmd->dir == UB_DIR_READ) ? 0x80 : 0;
939 bcb->Lun = (cmd->lun != NULL) ? cmd->lun->num : 0;
940 bcb->Length = cmd->cdb_len;
942 /* copy the command payload */
943 memcpy(bcb->CDB, cmd->cdb, UB_MAX_CDB_SIZE);
945 UB_INIT_COMPLETION(sc->work_done);
947 sc->last_pipe = sc->send_bulk_pipe;
948 usb_fill_bulk_urb(&sc->work_urb, sc->dev, sc->send_bulk_pipe,
949 bcb, US_BULK_CB_WRAP_LEN, ub_urb_complete, sc);
951 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
952 /* XXX Clear stalls */
953 ub_complete(&sc->work_done);
957 sc->work_timer.expires = jiffies + UB_URB_TIMEOUT;
958 add_timer(&sc->work_timer);
960 cmd->state = UB_CMDST_CMD;
967 static void ub_urb_timeout(unsigned long arg)
969 struct ub_dev *sc = (struct ub_dev *) arg;
972 spin_lock_irqsave(sc->lock, flags);
973 if (!ub_is_completed(&sc->work_done))
974 usb_unlink_urb(&sc->work_urb);
975 spin_unlock_irqrestore(sc->lock, flags);
979 * Completion routine for the work URB.
981 * This can be called directly from usb_submit_urb (while we have
982 * the sc->lock taken) and from an interrupt (while we do NOT have
983 * the sc->lock taken). Therefore, bounce this off to a tasklet.
985 static void ub_urb_complete(struct urb *urb)
987 struct ub_dev *sc = urb->context;
989 ub_complete(&sc->work_done);
990 tasklet_schedule(&sc->tasklet);
993 static void ub_scsi_action(unsigned long _dev)
995 struct ub_dev *sc = (struct ub_dev *) _dev;
998 spin_lock_irqsave(sc->lock, flags);
999 ub_scsi_dispatch(sc);
1000 spin_unlock_irqrestore(sc->lock, flags);
1003 static void ub_scsi_dispatch(struct ub_dev *sc)
1005 struct ub_scsi_cmd *cmd;
1008 while (!sc->reset && (cmd = ub_cmdq_peek(sc)) != NULL) {
1009 if (cmd->state == UB_CMDST_DONE) {
1011 (*cmd->done)(sc, cmd);
1012 } else if (cmd->state == UB_CMDST_INIT) {
1013 if ((rc = ub_scsi_cmd_start(sc, cmd)) == 0)
1016 cmd->state = UB_CMDST_DONE;
1018 if (!ub_is_completed(&sc->work_done))
1020 del_timer(&sc->work_timer);
1021 ub_scsi_urb_compl(sc, cmd);
1026 static void ub_scsi_urb_compl(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1028 struct urb *urb = &sc->work_urb;
1029 struct bulk_cs_wrap *bcs;
1033 if (atomic_read(&sc->poison)) {
1034 ub_state_done(sc, cmd, -ENODEV);
1038 if (cmd->state == UB_CMDST_CLEAR) {
1039 if (urb->status == -EPIPE) {
1041 * STALL while clearning STALL.
1042 * The control pipe clears itself - nothing to do.
1044 printk(KERN_NOTICE "%s: stall on control pipe\n",
1050 * We ignore the result for the halt clear.
1053 /* reset the endpoint toggle */
1054 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1055 usb_pipeout(sc->last_pipe), 0);
1057 ub_state_sense(sc, cmd);
1059 } else if (cmd->state == UB_CMDST_CLR2STS) {
1060 if (urb->status == -EPIPE) {
1061 printk(KERN_NOTICE "%s: stall on control pipe\n",
1067 * We ignore the result for the halt clear.
1070 /* reset the endpoint toggle */
1071 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1072 usb_pipeout(sc->last_pipe), 0);
1074 ub_state_stat(sc, cmd);
1076 } else if (cmd->state == UB_CMDST_CLRRS) {
1077 if (urb->status == -EPIPE) {
1078 printk(KERN_NOTICE "%s: stall on control pipe\n",
1084 * We ignore the result for the halt clear.
1087 /* reset the endpoint toggle */
1088 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1089 usb_pipeout(sc->last_pipe), 0);
1091 ub_state_stat_counted(sc, cmd);
1093 } else if (cmd->state == UB_CMDST_CMD) {
1094 switch (urb->status) {
1100 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1102 printk(KERN_NOTICE "%s: "
1103 "unable to submit clear (%d)\n",
1106 * This is typically ENOMEM or some other such shit.
1107 * Retrying is pointless. Just do Bad End on it...
1109 ub_state_done(sc, cmd, rc);
1112 cmd->state = UB_CMDST_CLEAR;
1114 case -ESHUTDOWN: /* unplug */
1115 case -EILSEQ: /* unplug timeout on uhci */
1116 ub_state_done(sc, cmd, -ENODEV);
1121 if (urb->actual_length != US_BULK_CB_WRAP_LEN) {
1125 if (cmd->dir == UB_DIR_NONE || cmd->nsg < 1) {
1126 ub_state_stat(sc, cmd);
1130 // udelay(125); // usb-storage has this
1131 ub_data_start(sc, cmd);
1133 } else if (cmd->state == UB_CMDST_DATA) {
1134 if (urb->status == -EPIPE) {
1135 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1137 printk(KERN_NOTICE "%s: "
1138 "unable to submit clear (%d)\n",
1140 ub_state_done(sc, cmd, rc);
1143 cmd->state = UB_CMDST_CLR2STS;
1146 if (urb->status == -EOVERFLOW) {
1148 * A babble? Failure, but we must transfer CSW now.
1150 cmd->error = -EOVERFLOW; /* A cheap trick... */
1151 ub_state_stat(sc, cmd);
1155 if (cmd->dir == UB_DIR_WRITE) {
1157 * Do not continue writes in case of a failure.
1158 * Doing so would cause sectors to be mixed up,
1159 * which is worse than sectors lost.
1161 * We must try to read the CSW, or many devices
1164 len = urb->actual_length;
1165 if (urb->status != 0 ||
1166 len != cmd->sgv[cmd->current_sg].length) {
1167 cmd->act_len += len;
1170 ub_state_stat(sc, cmd);
1176 * If an error occurs on read, we record it, and
1177 * continue to fetch data in order to avoid bubble.
1179 * As a small shortcut, we stop if we detect that
1180 * a CSW mixed into data.
1182 if (urb->status != 0)
1185 len = urb->actual_length;
1186 if (urb->status != 0 ||
1187 len != cmd->sgv[cmd->current_sg].length) {
1188 if ((len & 0x1FF) == US_BULK_CS_WRAP_LEN)
1193 cmd->act_len += urb->actual_length;
1195 if (++cmd->current_sg < cmd->nsg) {
1196 ub_data_start(sc, cmd);
1199 ub_state_stat(sc, cmd);
1201 } else if (cmd->state == UB_CMDST_STAT) {
1202 if (urb->status == -EPIPE) {
1203 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1205 printk(KERN_NOTICE "%s: "
1206 "unable to submit clear (%d)\n",
1208 ub_state_done(sc, cmd, rc);
1213 * Having a stall when getting CSW is an error, so
1214 * make sure uppper levels are not oblivious to it.
1216 cmd->error = -EIO; /* A cheap trick... */
1218 cmd->state = UB_CMDST_CLRRS;
1222 /* Catch everything, including -EOVERFLOW and other nasties. */
1223 if (urb->status != 0)
1226 if (urb->actual_length == 0) {
1227 ub_state_stat_counted(sc, cmd);
1232 * Check the returned Bulk protocol status.
1233 * The status block has to be validated first.
1236 bcs = &sc->work_bcs;
1238 if (sc->signature == cpu_to_le32(0)) {
1240 * This is the first reply, so do not perform the check.
1241 * Instead, remember the signature the device uses
1242 * for future checks. But do not allow a nul.
1244 sc->signature = bcs->Signature;
1245 if (sc->signature == cpu_to_le32(0)) {
1246 ub_state_stat_counted(sc, cmd);
1250 if (bcs->Signature != sc->signature) {
1251 ub_state_stat_counted(sc, cmd);
1256 if (bcs->Tag != cmd->tag) {
1258 * This usually happens when we disagree with the
1259 * device's microcode about something. For instance,
1260 * a few of them throw this after timeouts. They buffer
1261 * commands and reply at commands we timed out before.
1262 * Without flushing these replies we loop forever.
1264 ub_state_stat_counted(sc, cmd);
1268 len = le32_to_cpu(bcs->Residue);
1269 if (len != cmd->len - cmd->act_len) {
1271 * It is all right to transfer less, the caller has
1272 * to check. But it's not all right if the device
1273 * counts disagree with our counts.
1278 switch (bcs->Status) {
1279 case US_BULK_STAT_OK:
1281 case US_BULK_STAT_FAIL:
1282 ub_state_sense(sc, cmd);
1284 case US_BULK_STAT_PHASE:
1287 printk(KERN_INFO "%s: unknown CSW status 0x%x\n",
1288 sc->name, bcs->Status);
1289 ub_state_done(sc, cmd, -EINVAL);
1293 /* Not zeroing error to preserve a babble indicator */
1294 if (cmd->error != 0) {
1295 ub_state_sense(sc, cmd);
1298 cmd->state = UB_CMDST_DONE;
1300 (*cmd->done)(sc, cmd);
1302 } else if (cmd->state == UB_CMDST_SENSE) {
1303 ub_state_done(sc, cmd, -EIO);
1306 printk(KERN_WARNING "%s: "
1307 "wrong command state %d\n",
1308 sc->name, cmd->state);
1309 ub_state_done(sc, cmd, -EINVAL);
1314 Bad_End: /* Little Excel is dead */
1315 ub_state_done(sc, cmd, -EIO);
1319 * Factorization helper for the command state machine:
1320 * Initiate a data segment transfer.
1322 static void ub_data_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1324 struct scatterlist *sg = &cmd->sgv[cmd->current_sg];
1328 UB_INIT_COMPLETION(sc->work_done);
1330 if (cmd->dir == UB_DIR_READ)
1331 pipe = sc->recv_bulk_pipe;
1333 pipe = sc->send_bulk_pipe;
1334 sc->last_pipe = pipe;
1335 usb_fill_bulk_urb(&sc->work_urb, sc->dev, pipe, sg_virt(sg),
1336 sg->length, ub_urb_complete, sc);
1338 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1339 /* XXX Clear stalls */
1340 ub_complete(&sc->work_done);
1341 ub_state_done(sc, cmd, rc);
1346 sc->work_timer.expires = jiffies + cmd->timeo;
1348 sc->work_timer.expires = jiffies + UB_DATA_TIMEOUT;
1349 add_timer(&sc->work_timer);
1351 cmd->state = UB_CMDST_DATA;
1355 * Factorization helper for the command state machine:
1356 * Finish the command.
1358 static void ub_state_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd, int rc)
1362 cmd->state = UB_CMDST_DONE;
1364 (*cmd->done)(sc, cmd);
1368 * Factorization helper for the command state machine:
1369 * Submit a CSW read.
1371 static int __ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1375 UB_INIT_COMPLETION(sc->work_done);
1377 sc->last_pipe = sc->recv_bulk_pipe;
1378 usb_fill_bulk_urb(&sc->work_urb, sc->dev, sc->recv_bulk_pipe,
1379 &sc->work_bcs, US_BULK_CS_WRAP_LEN, ub_urb_complete, sc);
1381 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1382 /* XXX Clear stalls */
1383 ub_complete(&sc->work_done);
1384 ub_state_done(sc, cmd, rc);
1389 sc->work_timer.expires = jiffies + cmd->timeo;
1391 sc->work_timer.expires = jiffies + UB_STAT_TIMEOUT;
1392 add_timer(&sc->work_timer);
1397 * Factorization helper for the command state machine:
1398 * Submit a CSW read and go to STAT state.
1400 static void ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1403 if (__ub_state_stat(sc, cmd) != 0)
1406 cmd->stat_count = 0;
1407 cmd->state = UB_CMDST_STAT;
1411 * Factorization helper for the command state machine:
1412 * Submit a CSW read and go to STAT state with counter (along [C] path).
1414 static void ub_state_stat_counted(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1417 if (++cmd->stat_count >= 4) {
1418 ub_state_sense(sc, cmd);
1422 if (__ub_state_stat(sc, cmd) != 0)
1425 cmd->state = UB_CMDST_STAT;
1429 * Factorization helper for the command state machine:
1430 * Submit a REQUEST SENSE and go to SENSE state.
1432 static void ub_state_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1434 struct ub_scsi_cmd *scmd;
1435 struct scatterlist *sg;
1438 if (cmd->cdb[0] == REQUEST_SENSE) {
1443 scmd = &sc->top_rqs_cmd;
1444 memset(scmd, 0, sizeof(struct ub_scsi_cmd));
1445 scmd->cdb[0] = REQUEST_SENSE;
1446 scmd->cdb[4] = UB_SENSE_SIZE;
1448 scmd->dir = UB_DIR_READ;
1449 scmd->state = UB_CMDST_INIT;
1452 sg_init_table(sg, UB_MAX_REQ_SG);
1453 sg_set_page(sg, virt_to_page(sc->top_sense), UB_SENSE_SIZE,
1454 (unsigned long)sc->top_sense & (PAGE_SIZE-1));
1455 scmd->len = UB_SENSE_SIZE;
1456 scmd->lun = cmd->lun;
1457 scmd->done = ub_top_sense_done;
1460 scmd->tag = sc->tagcnt++;
1462 cmd->state = UB_CMDST_SENSE;
1464 ub_cmdq_insert(sc, scmd);
1468 ub_state_done(sc, cmd, rc);
1472 * A helper for the command's state machine:
1473 * Submit a stall clear.
1475 static int ub_submit_clear_stall(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
1479 struct usb_ctrlrequest *cr;
1482 endp = usb_pipeendpoint(stalled_pipe);
1483 if (usb_pipein (stalled_pipe))
1487 cr->bRequestType = USB_RECIP_ENDPOINT;
1488 cr->bRequest = USB_REQ_CLEAR_FEATURE;
1489 cr->wValue = cpu_to_le16(USB_ENDPOINT_HALT);
1490 cr->wIndex = cpu_to_le16(endp);
1491 cr->wLength = cpu_to_le16(0);
1493 UB_INIT_COMPLETION(sc->work_done);
1495 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
1496 (unsigned char*) cr, NULL, 0, ub_urb_complete, sc);
1498 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1499 ub_complete(&sc->work_done);
1503 sc->work_timer.expires = jiffies + UB_CTRL_TIMEOUT;
1504 add_timer(&sc->work_timer);
1510 static void ub_top_sense_done(struct ub_dev *sc, struct ub_scsi_cmd *scmd)
1512 unsigned char *sense = sc->top_sense;
1513 struct ub_scsi_cmd *cmd;
1516 * Find the command which triggered the unit attention or a check,
1517 * save the sense into it, and advance its state machine.
1519 if ((cmd = ub_cmdq_peek(sc)) == NULL) {
1520 printk(KERN_WARNING "%s: sense done while idle\n", sc->name);
1523 if (cmd != scmd->back) {
1524 printk(KERN_WARNING "%s: "
1525 "sense done for wrong command 0x%x\n",
1526 sc->name, cmd->tag);
1529 if (cmd->state != UB_CMDST_SENSE) {
1530 printk(KERN_WARNING "%s: "
1531 "sense done with bad cmd state %d\n",
1532 sc->name, cmd->state);
1537 * Ignoring scmd->act_len, because the buffer was pre-zeroed.
1539 cmd->key = sense[2] & 0x0F;
1540 cmd->asc = sense[12];
1541 cmd->ascq = sense[13];
1543 ub_scsi_urb_compl(sc, cmd);
1548 * XXX Move usb_reset_device to khubd. Hogging kevent is not a good thing.
1549 * XXX Make usb_sync_reset asynchronous.
1552 static void ub_reset_enter(struct ub_dev *sc, int try)
1556 /* This happens often on multi-LUN devices. */
1559 sc->reset = try + 1;
1561 #if 0 /* Not needed because the disconnect waits for us. */
1562 unsigned long flags;
1563 spin_lock_irqsave(&ub_lock, flags);
1565 spin_unlock_irqrestore(&ub_lock, flags);
1568 #if 0 /* We let them stop themselves. */
1570 list_for_each_entry(lun, &sc->luns, link) {
1571 blk_stop_queue(lun->disk->queue);
1575 schedule_work(&sc->reset_work);
1578 static void ub_reset_task(struct work_struct *work)
1580 struct ub_dev *sc = container_of(work, struct ub_dev, reset_work);
1581 unsigned long flags;
1586 printk(KERN_WARNING "%s: Running reset unrequested\n",
1591 if (atomic_read(&sc->poison)) {
1593 } else if ((sc->reset & 1) == 0) {
1595 msleep(700); /* usb-storage sleeps 6s (!) */
1596 ub_probe_clear_stall(sc, sc->recv_bulk_pipe);
1597 ub_probe_clear_stall(sc, sc->send_bulk_pipe);
1598 } else if (sc->dev->actconfig->desc.bNumInterfaces != 1) {
1601 if ((lkr = usb_lock_device_for_reset(sc->dev, sc->intf)) < 0) {
1603 "%s: usb_lock_device_for_reset failed (%d)\n",
1606 rc = usb_reset_device(sc->dev);
1608 printk(KERN_NOTICE "%s: "
1609 "usb_lock_device_for_reset failed (%d)\n",
1614 usb_unlock_device(sc->dev);
1619 * In theory, no commands can be running while reset is active,
1620 * so nobody can ask for another reset, and so we do not need any
1621 * queues of resets or anything. We do need a spinlock though,
1622 * to interact with block layer.
1624 spin_lock_irqsave(sc->lock, flags);
1626 tasklet_schedule(&sc->tasklet);
1627 list_for_each_entry(lun, &sc->luns, link) {
1628 blk_start_queue(lun->disk->queue);
1630 wake_up(&sc->reset_wait);
1631 spin_unlock_irqrestore(sc->lock, flags);
1635 * This is called from a process context.
1637 static void ub_revalidate(struct ub_dev *sc, struct ub_lun *lun)
1640 lun->readonly = 0; /* XXX Query this from the device */
1642 lun->capacity.nsec = 0;
1643 lun->capacity.bsize = 512;
1644 lun->capacity.bshift = 0;
1646 if (ub_sync_tur(sc, lun) != 0)
1647 return; /* Not ready */
1650 if (ub_sync_read_cap(sc, lun, &lun->capacity) != 0) {
1652 * The retry here means something is wrong, either with the
1653 * device, with the transport, or with our code.
1654 * We keep this because sd.c has retries for capacity.
1656 if (ub_sync_read_cap(sc, lun, &lun->capacity) != 0) {
1657 lun->capacity.nsec = 0;
1658 lun->capacity.bsize = 512;
1659 lun->capacity.bshift = 0;
1666 * This is mostly needed to keep refcounting, but also to support
1667 * media checks on removable media drives.
1669 static int ub_bd_open(struct inode *inode, struct file *filp)
1671 struct gendisk *disk = inode->i_bdev->bd_disk;
1672 struct ub_lun *lun = disk->private_data;
1673 struct ub_dev *sc = lun->udev;
1674 unsigned long flags;
1677 spin_lock_irqsave(&ub_lock, flags);
1678 if (atomic_read(&sc->poison)) {
1679 spin_unlock_irqrestore(&ub_lock, flags);
1683 spin_unlock_irqrestore(&ub_lock, flags);
1685 if (lun->removable || lun->readonly)
1686 check_disk_change(inode->i_bdev);
1689 * The sd.c considers ->media_present and ->changed not equivalent,
1690 * under some pretty murky conditions (a failure of READ CAPACITY).
1691 * We may need it one day.
1693 if (lun->removable && lun->changed && !(filp->f_flags & O_NDELAY)) {
1698 if (lun->readonly && (filp->f_mode & FMODE_WRITE)) {
1712 static int ub_bd_release(struct inode *inode, struct file *filp)
1714 struct gendisk *disk = inode->i_bdev->bd_disk;
1715 struct ub_lun *lun = disk->private_data;
1716 struct ub_dev *sc = lun->udev;
1723 * The ioctl interface.
1725 static int ub_bd_ioctl(struct inode *inode, struct file *filp,
1726 unsigned int cmd, unsigned long arg)
1728 struct gendisk *disk = inode->i_bdev->bd_disk;
1729 void __user *usermem = (void __user *) arg;
1731 return scsi_cmd_ioctl(filp, disk->queue, disk, cmd, usermem);
1735 * This is called once a new disk was seen by the block layer or by ub_probe().
1736 * The main onjective here is to discover the features of the media such as
1737 * the capacity, read-only status, etc. USB storage generally does not
1738 * need to be spun up, but if we needed it, this would be the place.
1740 * This call can sleep.
1742 * The return code is not used.
1744 static int ub_bd_revalidate(struct gendisk *disk)
1746 struct ub_lun *lun = disk->private_data;
1748 ub_revalidate(lun->udev, lun);
1750 /* XXX Support sector size switching like in sr.c */
1751 blk_queue_hardsect_size(disk->queue, lun->capacity.bsize);
1752 set_capacity(disk, lun->capacity.nsec);
1753 // set_disk_ro(sdkp->disk, lun->readonly);
1759 * The check is called by the block layer to verify if the media
1760 * is still available. It is supposed to be harmless, lightweight and
1761 * non-intrusive in case the media was not changed.
1763 * This call can sleep.
1765 * The return code is bool!
1767 static int ub_bd_media_changed(struct gendisk *disk)
1769 struct ub_lun *lun = disk->private_data;
1771 if (!lun->removable)
1775 * We clean checks always after every command, so this is not
1776 * as dangerous as it looks. If the TEST_UNIT_READY fails here,
1777 * the device is actually not ready with operator or software
1778 * intervention required. One dangerous item might be a drive which
1779 * spins itself down, and come the time to write dirty pages, this
1780 * will fail, then block layer discards the data. Since we never
1781 * spin drives up, such devices simply cannot be used with ub anyway.
1783 if (ub_sync_tur(lun->udev, lun) != 0) {
1788 return lun->changed;
1791 static struct block_device_operations ub_bd_fops = {
1792 .owner = THIS_MODULE,
1794 .release = ub_bd_release,
1795 .ioctl = ub_bd_ioctl,
1796 .media_changed = ub_bd_media_changed,
1797 .revalidate_disk = ub_bd_revalidate,
1801 * Common ->done routine for commands executed synchronously.
1803 static void ub_probe_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1805 struct completion *cop = cmd->back;
1810 * Test if the device has a check condition on it, synchronously.
1812 static int ub_sync_tur(struct ub_dev *sc, struct ub_lun *lun)
1814 struct ub_scsi_cmd *cmd;
1815 enum { ALLOC_SIZE = sizeof(struct ub_scsi_cmd) };
1816 unsigned long flags;
1817 struct completion compl;
1820 init_completion(&compl);
1823 if ((cmd = kzalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
1826 cmd->cdb[0] = TEST_UNIT_READY;
1828 cmd->dir = UB_DIR_NONE;
1829 cmd->state = UB_CMDST_INIT;
1830 cmd->lun = lun; /* This may be NULL, but that's ok */
1831 cmd->done = ub_probe_done;
1834 spin_lock_irqsave(sc->lock, flags);
1835 cmd->tag = sc->tagcnt++;
1837 rc = ub_submit_scsi(sc, cmd);
1838 spin_unlock_irqrestore(sc->lock, flags);
1843 wait_for_completion(&compl);
1847 if (rc == -EIO && cmd->key != 0) /* Retries for benh's key */
1857 * Read the SCSI capacity synchronously (for probing).
1859 static int ub_sync_read_cap(struct ub_dev *sc, struct ub_lun *lun,
1860 struct ub_capacity *ret)
1862 struct ub_scsi_cmd *cmd;
1863 struct scatterlist *sg;
1865 enum { ALLOC_SIZE = sizeof(struct ub_scsi_cmd) + 8 };
1866 unsigned long flags;
1867 unsigned int bsize, shift;
1869 struct completion compl;
1872 init_completion(&compl);
1875 if ((cmd = kzalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
1877 p = (char *)cmd + sizeof(struct ub_scsi_cmd);
1881 cmd->dir = UB_DIR_READ;
1882 cmd->state = UB_CMDST_INIT;
1885 sg_init_table(sg, UB_MAX_REQ_SG);
1886 sg_set_page(sg, virt_to_page(p), 8, (unsigned long)p & (PAGE_SIZE-1));
1889 cmd->done = ub_probe_done;
1892 spin_lock_irqsave(sc->lock, flags);
1893 cmd->tag = sc->tagcnt++;
1895 rc = ub_submit_scsi(sc, cmd);
1896 spin_unlock_irqrestore(sc->lock, flags);
1901 wait_for_completion(&compl);
1903 if (cmd->error != 0) {
1907 if (cmd->act_len != 8) {
1912 /* sd.c special-cases sector size of 0 to mean 512. Needed? Safe? */
1913 nsec = be32_to_cpu(*(__be32 *)p) + 1;
1914 bsize = be32_to_cpu(*(__be32 *)(p + 4));
1916 case 512: shift = 0; break;
1917 case 1024: shift = 1; break;
1918 case 2048: shift = 2; break;
1919 case 4096: shift = 3; break;
1926 ret->bshift = shift;
1927 ret->nsec = nsec << shift;
1940 static void ub_probe_urb_complete(struct urb *urb)
1942 struct completion *cop = urb->context;
1946 static void ub_probe_timeout(unsigned long arg)
1948 struct completion *cop = (struct completion *) arg;
1953 * Reset with a Bulk reset.
1955 static int ub_sync_reset(struct ub_dev *sc)
1957 int ifnum = sc->intf->cur_altsetting->desc.bInterfaceNumber;
1958 struct usb_ctrlrequest *cr;
1959 struct completion compl;
1960 struct timer_list timer;
1963 init_completion(&compl);
1966 cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE;
1967 cr->bRequest = US_BULK_RESET_REQUEST;
1968 cr->wValue = cpu_to_le16(0);
1969 cr->wIndex = cpu_to_le16(ifnum);
1970 cr->wLength = cpu_to_le16(0);
1972 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
1973 (unsigned char*) cr, NULL, 0, ub_probe_urb_complete, &compl);
1975 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0) {
1977 "%s: Unable to submit a bulk reset (%d)\n", sc->name, rc);
1982 timer.function = ub_probe_timeout;
1983 timer.data = (unsigned long) &compl;
1984 timer.expires = jiffies + UB_CTRL_TIMEOUT;
1987 wait_for_completion(&compl);
1989 del_timer_sync(&timer);
1990 usb_kill_urb(&sc->work_urb);
1992 return sc->work_urb.status;
1996 * Get number of LUNs by the way of Bulk GetMaxLUN command.
1998 static int ub_sync_getmaxlun(struct ub_dev *sc)
2000 int ifnum = sc->intf->cur_altsetting->desc.bInterfaceNumber;
2002 enum { ALLOC_SIZE = 1 };
2003 struct usb_ctrlrequest *cr;
2004 struct completion compl;
2005 struct timer_list timer;
2009 init_completion(&compl);
2012 if ((p = kmalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
2017 cr->bRequestType = USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE;
2018 cr->bRequest = US_BULK_GET_MAX_LUN;
2019 cr->wValue = cpu_to_le16(0);
2020 cr->wIndex = cpu_to_le16(ifnum);
2021 cr->wLength = cpu_to_le16(1);
2023 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->recv_ctrl_pipe,
2024 (unsigned char*) cr, p, 1, ub_probe_urb_complete, &compl);
2026 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0)
2030 timer.function = ub_probe_timeout;
2031 timer.data = (unsigned long) &compl;
2032 timer.expires = jiffies + UB_CTRL_TIMEOUT;
2035 wait_for_completion(&compl);
2037 del_timer_sync(&timer);
2038 usb_kill_urb(&sc->work_urb);
2040 if ((rc = sc->work_urb.status) < 0)
2043 if (sc->work_urb.actual_length != 1) {
2046 if ((nluns = *p) == 55) {
2049 /* GetMaxLUN returns the maximum LUN number */
2051 if (nluns > UB_MAX_LUNS)
2052 nluns = UB_MAX_LUNS;
2067 * Clear initial stalls.
2069 static int ub_probe_clear_stall(struct ub_dev *sc, int stalled_pipe)
2072 struct usb_ctrlrequest *cr;
2073 struct completion compl;
2074 struct timer_list timer;
2077 init_completion(&compl);
2079 endp = usb_pipeendpoint(stalled_pipe);
2080 if (usb_pipein (stalled_pipe))
2084 cr->bRequestType = USB_RECIP_ENDPOINT;
2085 cr->bRequest = USB_REQ_CLEAR_FEATURE;
2086 cr->wValue = cpu_to_le16(USB_ENDPOINT_HALT);
2087 cr->wIndex = cpu_to_le16(endp);
2088 cr->wLength = cpu_to_le16(0);
2090 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
2091 (unsigned char*) cr, NULL, 0, ub_probe_urb_complete, &compl);
2093 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0) {
2095 "%s: Unable to submit a probe clear (%d)\n", sc->name, rc);
2100 timer.function = ub_probe_timeout;
2101 timer.data = (unsigned long) &compl;
2102 timer.expires = jiffies + UB_CTRL_TIMEOUT;
2105 wait_for_completion(&compl);
2107 del_timer_sync(&timer);
2108 usb_kill_urb(&sc->work_urb);
2110 /* reset the endpoint toggle */
2111 usb_settoggle(sc->dev, endp, usb_pipeout(sc->last_pipe), 0);
2117 * Get the pipe settings.
2119 static int ub_get_pipes(struct ub_dev *sc, struct usb_device *dev,
2120 struct usb_interface *intf)
2122 struct usb_host_interface *altsetting = intf->cur_altsetting;
2123 struct usb_endpoint_descriptor *ep_in = NULL;
2124 struct usb_endpoint_descriptor *ep_out = NULL;
2125 struct usb_endpoint_descriptor *ep;
2129 * Find the endpoints we need.
2130 * We are expecting a minimum of 2 endpoints - in and out (bulk).
2131 * We will ignore any others.
2133 for (i = 0; i < altsetting->desc.bNumEndpoints; i++) {
2134 ep = &altsetting->endpoint[i].desc;
2136 /* Is it a BULK endpoint? */
2137 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
2138 == USB_ENDPOINT_XFER_BULK) {
2139 /* BULK in or out? */
2140 if (ep->bEndpointAddress & USB_DIR_IN) {
2150 if (ep_in == NULL || ep_out == NULL) {
2151 printk(KERN_NOTICE "%s: failed endpoint check\n",
2156 /* Calculate and store the pipe values */
2157 sc->send_ctrl_pipe = usb_sndctrlpipe(dev, 0);
2158 sc->recv_ctrl_pipe = usb_rcvctrlpipe(dev, 0);
2159 sc->send_bulk_pipe = usb_sndbulkpipe(dev,
2160 ep_out->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
2161 sc->recv_bulk_pipe = usb_rcvbulkpipe(dev,
2162 ep_in->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
2168 * Probing is done in the process context, which allows us to cheat
2169 * and not to build a state machine for the discovery.
2171 static int ub_probe(struct usb_interface *intf,
2172 const struct usb_device_id *dev_id)
2179 if (usb_usual_check_type(dev_id, USB_US_TYPE_UB))
2183 if ((sc = kzalloc(sizeof(struct ub_dev), GFP_KERNEL)) == NULL)
2185 sc->lock = ub_next_lock();
2186 INIT_LIST_HEAD(&sc->luns);
2187 usb_init_urb(&sc->work_urb);
2188 tasklet_init(&sc->tasklet, ub_scsi_action, (unsigned long)sc);
2189 atomic_set(&sc->poison, 0);
2190 INIT_WORK(&sc->reset_work, ub_reset_task);
2191 init_waitqueue_head(&sc->reset_wait);
2193 init_timer(&sc->work_timer);
2194 sc->work_timer.data = (unsigned long) sc;
2195 sc->work_timer.function = ub_urb_timeout;
2197 ub_init_completion(&sc->work_done);
2198 sc->work_done.done = 1; /* A little yuk, but oh well... */
2200 sc->dev = interface_to_usbdev(intf);
2202 // sc->ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
2203 usb_set_intfdata(intf, sc);
2204 usb_get_dev(sc->dev);
2206 * Since we give the interface struct to the block level through
2207 * disk->driverfs_dev, we have to pin it. Otherwise, block_uevent
2208 * oopses on close after a disconnect (kernels 2.6.16 and up).
2210 usb_get_intf(sc->intf);
2212 snprintf(sc->name, 12, DRV_NAME "(%d.%d)",
2213 sc->dev->bus->busnum, sc->dev->devnum);
2215 /* XXX Verify that we can handle the device (from descriptors) */
2217 if (ub_get_pipes(sc, sc->dev, intf) != 0)
2221 * At this point, all USB initialization is done, do upper layer.
2222 * We really hate halfway initialized structures, so from the
2223 * invariants perspective, this ub_dev is fully constructed at
2228 * This is needed to clear toggles. It is a problem only if we do
2229 * `rmmod ub && modprobe ub` without disconnects, but we like that.
2231 #if 0 /* iPod Mini fails if we do this (big white iPod works) */
2232 ub_probe_clear_stall(sc, sc->recv_bulk_pipe);
2233 ub_probe_clear_stall(sc, sc->send_bulk_pipe);
2237 * The way this is used by the startup code is a little specific.
2238 * A SCSI check causes a USB stall. Our common case code sees it
2239 * and clears the check, after which the device is ready for use.
2240 * But if a check was not present, any command other than
2241 * TEST_UNIT_READY ends with a lockup (including REQUEST_SENSE).
2243 * If we neglect to clear the SCSI check, the first real command fails
2244 * (which is the capacity readout). We clear that and retry, but why
2245 * causing spurious retries for no reason.
2247 * Revalidation may start with its own TEST_UNIT_READY, but that one
2248 * has to succeed, so we clear checks with an additional one here.
2249 * In any case it's not our business how revaliadation is implemented.
2251 for (i = 0; i < 3; i++) { /* Retries for the schwag key from KS'04 */
2252 if ((rc = ub_sync_tur(sc, NULL)) <= 0) break;
2253 if (rc != 0x6) break;
2258 for (i = 0; i < 3; i++) {
2259 if ((rc = ub_sync_getmaxlun(sc)) < 0)
2268 for (i = 0; i < nluns; i++) {
2269 ub_probe_lun(sc, i);
2274 usb_set_intfdata(intf, NULL);
2275 usb_put_intf(sc->intf);
2276 usb_put_dev(sc->dev);
2282 static int ub_probe_lun(struct ub_dev *sc, int lnum)
2285 struct request_queue *q;
2286 struct gendisk *disk;
2290 if ((lun = kzalloc(sizeof(struct ub_lun), GFP_KERNEL)) == NULL)
2295 if ((lun->id = ub_id_get()) == -1)
2300 snprintf(lun->name, 16, DRV_NAME "%c(%d.%d.%d)",
2301 lun->id + 'a', sc->dev->bus->busnum, sc->dev->devnum, lun->num);
2303 lun->removable = 1; /* XXX Query this from the device */
2304 lun->changed = 1; /* ub_revalidate clears only */
2305 ub_revalidate(sc, lun);
2308 if ((disk = alloc_disk(UB_PARTS_PER_LUN)) == NULL)
2311 sprintf(disk->disk_name, DRV_NAME "%c", lun->id + 'a');
2312 disk->major = UB_MAJOR;
2313 disk->first_minor = lun->id * UB_PARTS_PER_LUN;
2314 disk->fops = &ub_bd_fops;
2315 disk->private_data = lun;
2316 disk->driverfs_dev = &sc->intf->dev;
2319 if ((q = blk_init_queue(ub_request_fn, sc->lock)) == NULL)
2324 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
2325 blk_queue_max_hw_segments(q, UB_MAX_REQ_SG);
2326 blk_queue_max_phys_segments(q, UB_MAX_REQ_SG);
2327 blk_queue_segment_boundary(q, 0xffffffff); /* Dubious. */
2328 blk_queue_max_sectors(q, UB_MAX_SECTORS);
2329 blk_queue_hardsect_size(q, lun->capacity.bsize);
2333 list_add(&lun->link, &sc->luns);
2335 set_capacity(disk, lun->capacity.nsec);
2337 disk->flags |= GENHD_FL_REMOVABLE;
2353 static void ub_disconnect(struct usb_interface *intf)
2355 struct ub_dev *sc = usb_get_intfdata(intf);
2357 unsigned long flags;
2360 * Prevent ub_bd_release from pulling the rug from under us.
2361 * XXX This is starting to look like a kref.
2362 * XXX Why not to take this ref at probe time?
2364 spin_lock_irqsave(&ub_lock, flags);
2366 spin_unlock_irqrestore(&ub_lock, flags);
2369 * Fence stall clearnings, operations triggered by unlinkings and so on.
2370 * We do not attempt to unlink any URBs, because we do not trust the
2371 * unlink paths in HC drivers. Also, we get -84 upon disconnect anyway.
2373 atomic_set(&sc->poison, 1);
2376 * Wait for reset to end, if any.
2378 wait_event(sc->reset_wait, !sc->reset);
2381 * Blow away queued commands.
2383 * Actually, this never works, because before we get here
2384 * the HCD terminates outstanding URB(s). It causes our
2385 * SCSI command queue to advance, commands fail to submit,
2386 * and the whole queue drains. So, we just use this code to
2389 spin_lock_irqsave(sc->lock, flags);
2391 struct ub_scsi_cmd *cmd;
2393 while ((cmd = ub_cmdq_peek(sc)) != NULL) {
2394 cmd->error = -ENOTCONN;
2395 cmd->state = UB_CMDST_DONE;
2397 (*cmd->done)(sc, cmd);
2401 printk(KERN_WARNING "%s: "
2402 "%d was queued after shutdown\n", sc->name, cnt);
2405 spin_unlock_irqrestore(sc->lock, flags);
2408 * Unregister the upper layer.
2410 list_for_each_entry(lun, &sc->luns, link) {
2411 del_gendisk(lun->disk);
2413 * I wish I could do:
2414 * queue_flag_set(QUEUE_FLAG_DEAD, q);
2415 * As it is, we rely on our internal poisoning and let
2416 * the upper levels to spin furiously failing all the I/O.
2421 * Testing for -EINPROGRESS is always a bug, so we are bending
2422 * the rules a little.
2424 spin_lock_irqsave(sc->lock, flags);
2425 if (sc->work_urb.status == -EINPROGRESS) { /* janitors: ignore */
2426 printk(KERN_WARNING "%s: "
2427 "URB is active after disconnect\n", sc->name);
2429 spin_unlock_irqrestore(sc->lock, flags);
2432 * There is virtually no chance that other CPU runs times so long
2433 * after ub_urb_complete should have called del_timer, but only if HCD
2434 * didn't forget to deliver a callback on unlink.
2436 del_timer_sync(&sc->work_timer);
2439 * At this point there must be no commands coming from anyone
2440 * and no URBs left in transit.
2446 static struct usb_driver ub_driver = {
2449 .disconnect = ub_disconnect,
2450 .id_table = ub_usb_ids,
2453 static int __init ub_init(void)
2458 for (i = 0; i < UB_QLOCK_NUM; i++)
2459 spin_lock_init(&ub_qlockv[i]);
2461 if ((rc = register_blkdev(UB_MAJOR, DRV_NAME)) != 0)
2464 if ((rc = usb_register(&ub_driver)) != 0)
2467 usb_usual_set_present(USB_US_TYPE_UB);
2471 unregister_blkdev(UB_MAJOR, DRV_NAME);
2476 static void __exit ub_exit(void)
2478 usb_deregister(&ub_driver);
2480 unregister_blkdev(UB_MAJOR, DRV_NAME);
2481 usb_usual_clear_present(USB_US_TYPE_UB);
2484 module_init(ub_init);
2485 module_exit(ub_exit);
2487 MODULE_LICENSE("GPL");