]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/block/ub.c
block: add dma alignment and padding support to blk_rq_map_kern
[net-next-2.6.git] / drivers / block / ub.c
CommitLineData
1da177e4
LT
1/*
2 * The low performance USB storage driver (ub).
3 *
4 * Copyright (c) 1999, 2000 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
5 * Copyright (C) 2004 Pete Zaitcev (zaitcev@yahoo.com)
6 *
7 * This work is a part of Linux kernel, is derived from it,
8 * and is not licensed separately. See file COPYING for details.
9 *
10 * TODO (sorted by decreasing priority)
ef45cb62 11 * -- Return sense now that rq allows it (we always auto-sense anyway).
1da177e4
LT
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)
1da177e4 14 * -- verify the 13 conditions and do bulk resets
ba6abf13 15 * -- highmem
1da177e4
LT
16 * -- move top_sense and work_bcs into separate allocations (if they survive)
17 * for cache purists and esoteric architectures.
ba6abf13 18 * -- Allocate structure for LUN 0 before the first ub_sync_tur, avoid NULL. ?
1da177e4 19 * -- prune comments, they are too volumnous
1da177e4 20 * -- Resove XXX's
1872bceb 21 * -- CLEAR, CLR2STS, CLRRS seem to be ripe for refactoring.
1da177e4
LT
22 */
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/usb.h>
a00828e9 26#include <linux/usb_usual.h>
1da177e4 27#include <linux/blkdev.h>
1da177e4 28#include <linux/timer.h>
45711f1a 29#include <linux/scatterlist.h>
1da177e4
LT
30#include <scsi/scsi.h>
31
32#define DRV_NAME "ub"
1da177e4
LT
33
34#define UB_MAJOR 180
35
1872bceb
PZ
36/*
37 * The command state machine is the key model for understanding of this driver.
38 *
39 * The general rule is that all transitions are done towards the bottom
40 * of the diagram, thus preventing any loops.
41 *
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].
44 *
45 * +--------+
46 * ! INIT !
47 * +--------+
48 * !
49 * ub_scsi_cmd_start fails ->--------------------------------------\
50 * ! !
51 * V !
52 * +--------+ !
53 * ! CMD ! !
54 * +--------+ !
55 * ! +--------+ !
56 * was -EPIPE -->-------------------------------->! CLEAR ! !
57 * ! +--------+ !
58 * ! ! !
59 * was error -->------------------------------------- ! --------->\
60 * ! ! !
61 * /--<-- cmd->dir == NONE ? ! !
62 * ! ! ! !
63 * ! V ! !
64 * ! +--------+ ! !
65 * ! ! DATA ! ! !
66 * ! +--------+ ! !
67 * ! ! +---------+ ! !
68 * ! was -EPIPE -->--------------->! CLR2STS ! ! !
69 * ! ! +---------+ ! !
70 * ! ! ! ! !
71 * ! ! was error -->---- ! --------->\
72 * ! was error -->--------------------- ! ------------- ! --------->\
73 * ! ! ! ! !
74 * ! V ! ! !
75 * \--->+--------+ ! ! !
76 * ! STAT !<--------------------------/ ! !
77 * /--->+--------+ ! !
78 * ! ! ! !
79 * [C] was -EPIPE -->-----------\ ! !
80 * ! ! ! ! !
81 * +<---- len == 0 ! ! !
82 * ! ! ! ! !
83 * ! was error -->--------------------------------------!---------->\
84 * ! ! ! ! !
85 * +<---- bad CSW ! ! !
86 * +<---- bad tag ! ! !
87 * ! ! V ! !
88 * ! ! +--------+ ! !
89 * ! ! ! CLRRS ! ! !
90 * ! ! +--------+ ! !
91 * ! ! ! ! !
92 * \------- ! --------------------[C]--------\ ! !
93 * ! ! ! !
94 * cmd->error---\ +--------+ ! !
95 * ! +--------------->! SENSE !<----------/ !
96 * STAT_FAIL----/ +--------+ !
97 * ! ! V
98 * ! V +--------+
99 * \--------------------------------\--------------------->! DONE !
100 * +--------+
101 */
102
1da177e4 103/*
f4800078
PZ
104 * This many LUNs per USB device.
105 * Every one of them takes a host, see UB_MAX_HOSTS.
1da177e4 106 */
9f793d2c 107#define UB_MAX_LUNS 9
f4800078
PZ
108
109/*
110 */
111
4fb729f5 112#define UB_PARTS_PER_LUN 8
1da177e4
LT
113
114#define UB_MAX_CDB_SIZE 16 /* Corresponds to Bulk */
115
116#define UB_SENSE_SIZE 18
117
118/*
119 */
120
121/* command block wrapper */
122struct 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 */
f4800078 127 u8 Lun; /* LUN */
1da177e4
LT
128 u8 Length; /* of of the CDB */
129 u8 CDB[UB_MAX_CDB_SIZE]; /* max command */
130};
131
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
136
137/* command status wrapper */
138struct 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 */
143};
144
145#define US_BULK_CS_WRAP_LEN 13
146#define US_BULK_CS_SIGN 0x53425355 /* spells out 'USBS' */
1da177e4
LT
147#define US_BULK_STAT_OK 0
148#define US_BULK_STAT_FAIL 1
149#define US_BULK_STAT_PHASE 2
150
151/* bulk-only class specific requests */
152#define US_BULK_RESET_REQUEST 0xff
153#define US_BULK_GET_MAX_LUN 0xfe
154
155/*
156 */
157struct ub_dev;
158
64bd8453 159#define UB_MAX_REQ_SG 9 /* cdrecord requires 32KB and maybe a header */
1da177e4
LT
160#define UB_MAX_SECTORS 64
161
162/*
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.
165 */
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 */
170
171/*
172 * An instance of a SCSI command in transit.
173 */
174#define UB_DIR_NONE 0
175#define UB_DIR_READ 1
176#define UB_DIR_ILLEGAL2 2
177#define UB_DIR_WRITE 3
178
179#define UB_DIR_CHAR(c) (((c)==UB_DIR_WRITE)? 'w': \
180 (((c)==UB_DIR_READ)? 'r': 'n'))
181
182enum 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) */
1872bceb 189 UB_CMDST_CLRRS, /* Clearing before retrying status */
1da177e4
LT
190 UB_CMDST_SENSE, /* Sending Request Sense */
191 UB_CMDST_DONE /* Final state */
192};
193
1da177e4
LT
194struct ub_scsi_cmd {
195 unsigned char cdb[UB_MAX_CDB_SIZE];
196 unsigned char cdb_len;
197
198 unsigned char dir; /* 0 - none, 1 - read, 3 - write. */
1da177e4
LT
199 enum ub_scsi_cmd_state state;
200 unsigned int tag;
201 struct ub_scsi_cmd *next;
202
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 */
206
207 int stat_count; /* Retries getting status. */
208
1da177e4 209 unsigned int len; /* Requested length */
a1cf96ef
PZ
210 unsigned int current_sg;
211 unsigned int nsg; /* sgv[nsg] */
212 struct scatterlist sgv[UB_MAX_REQ_SG];
1da177e4 213
f4800078 214 struct ub_lun *lun;
1da177e4
LT
215 void (*done)(struct ub_dev *, struct ub_scsi_cmd *);
216 void *back;
217};
218
2c26c9e6
PZ
219struct ub_request {
220 struct request *rq;
221 unsigned int current_try;
222 unsigned int nsg; /* sgv[nsg] */
223 struct scatterlist sgv[UB_MAX_REQ_SG];
224};
225
1da177e4
LT
226/*
227 */
228struct ub_capacity {
229 unsigned long nsec; /* Linux size - 512 byte sectors */
230 unsigned int bsize; /* Linux hardsect_size */
231 unsigned int bshift; /* Shift between 512 and hard sects */
232};
233
1da177e4
LT
234/*
235 * This is a direct take-off from linux/include/completion.h
236 * The difference is that I do not wait on this thing, just poll.
237 * When I want to wait (ub_probe), I just use the stock completion.
238 *
239 * Note that INIT_COMPLETION takes no lock. It is correct. But why
240 * in the bloody hell that thing takes struct instead of pointer to struct
241 * is quite beyond me. I just copied it from the stock completion.
242 */
243struct ub_completion {
244 unsigned int done;
245 spinlock_t lock;
246};
247
248static inline void ub_init_completion(struct ub_completion *x)
249{
250 x->done = 0;
251 spin_lock_init(&x->lock);
252}
253
254#define UB_INIT_COMPLETION(x) ((x).done = 0)
255
256static void ub_complete(struct ub_completion *x)
257{
258 unsigned long flags;
259
260 spin_lock_irqsave(&x->lock, flags);
261 x->done++;
262 spin_unlock_irqrestore(&x->lock, flags);
263}
264
265static int ub_is_completed(struct ub_completion *x)
266{
267 unsigned long flags;
268 int ret;
269
270 spin_lock_irqsave(&x->lock, flags);
271 ret = x->done;
272 spin_unlock_irqrestore(&x->lock, flags);
273 return ret;
274}
275
276/*
277 */
278struct ub_scsi_cmd_queue {
279 int qlen, qmax;
280 struct ub_scsi_cmd *head, *tail;
281};
282
283/*
f4800078
PZ
284 * The block device instance (one per LUN).
285 */
286struct ub_lun {
287 struct ub_dev *udev;
288 struct list_head link;
289 struct gendisk *disk;
290 int id; /* Host index */
291 int num; /* LUN number */
292 char name[16];
293
294 int changed; /* Media was changed */
295 int removable;
296 int readonly;
f4800078 297
2c26c9e6
PZ
298 struct ub_request urq;
299
f4800078
PZ
300 /* Use Ingo's mempool if or when we have more than one command. */
301 /*
302 * Currently we never need more than one command for the whole device.
303 * However, giving every LUN a command is a cheap and automatic way
304 * to enforce fairness between them.
305 */
306 int cmda[1];
307 struct ub_scsi_cmd cmdv[1];
308
309 struct ub_capacity capacity;
310};
311
312/*
313 * The USB device instance.
1da177e4
LT
314 */
315struct ub_dev {
65b4fe55 316 spinlock_t *lock;
1da177e4
LT
317 atomic_t poison; /* The USB device is disconnected */
318 int openc; /* protected by ub_lock! */
319 /* kref is too implicit for our taste */
2c26c9e6 320 int reset; /* Reset is running */
1da177e4 321 unsigned int tagcnt;
f4800078 322 char name[12];
1da177e4
LT
323 struct usb_device *dev;
324 struct usb_interface *intf;
325
f4800078 326 struct list_head luns;
1da177e4
LT
327
328 unsigned int send_bulk_pipe; /* cached pipe values */
329 unsigned int recv_bulk_pipe;
330 unsigned int send_ctrl_pipe;
331 unsigned int recv_ctrl_pipe;
332
333 struct tasklet_struct tasklet;
334
1da177e4
LT
335 struct ub_scsi_cmd_queue cmd_queue;
336 struct ub_scsi_cmd top_rqs_cmd; /* REQUEST SENSE */
337 unsigned char top_sense[UB_SENSE_SIZE];
338
339 struct ub_completion work_done;
340 struct urb work_urb;
341 struct timer_list work_timer;
342 int last_pipe; /* What might need clearing */
1872bceb 343 __le32 signature; /* Learned signature */
1da177e4
LT
344 struct bulk_cb_wrap work_bcb;
345 struct bulk_cs_wrap work_bcs;
346 struct usb_ctrlrequest work_cr;
347
2c26c9e6
PZ
348 struct work_struct reset_work;
349 wait_queue_head_t reset_wait;
350
64bd8453 351 int sg_stat[6];
1da177e4
LT
352};
353
354/*
355 */
356static void ub_cleanup(struct ub_dev *sc);
6c1eb8c1 357static int ub_request_fn_1(struct ub_lun *lun, struct request *rq);
2c26c9e6
PZ
358static void ub_cmd_build_block(struct ub_dev *sc, struct ub_lun *lun,
359 struct ub_scsi_cmd *cmd, struct ub_request *urq);
360static void ub_cmd_build_packet(struct ub_dev *sc, struct ub_lun *lun,
361 struct ub_scsi_cmd *cmd, struct ub_request *urq);
1da177e4 362static void ub_rw_cmd_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
ef45cb62
PZ
363static void ub_end_rq(struct request *rq, unsigned int status,
364 unsigned int cmd_len);
2c26c9e6
PZ
365static int ub_rw_cmd_retry(struct ub_dev *sc, struct ub_lun *lun,
366 struct ub_request *urq, struct ub_scsi_cmd *cmd);
1da177e4 367static int ub_submit_scsi(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
7d12e780 368static void ub_urb_complete(struct urb *urb);
1da177e4
LT
369static void ub_scsi_action(unsigned long _dev);
370static void ub_scsi_dispatch(struct ub_dev *sc);
371static void ub_scsi_urb_compl(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
a1cf96ef 372static void ub_data_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
1da177e4 373static void ub_state_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd, int rc);
1872bceb 374static int __ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
1da177e4 375static void ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
1872bceb 376static void ub_state_stat_counted(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
1da177e4
LT
377static void ub_state_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
378static int ub_submit_clear_stall(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
379 int stalled_pipe);
380static void ub_top_sense_done(struct ub_dev *sc, struct ub_scsi_cmd *scmd);
2c2e4a2e 381static void ub_reset_enter(struct ub_dev *sc, int try);
c4028958 382static void ub_reset_task(struct work_struct *work);
f4800078
PZ
383static int ub_sync_tur(struct ub_dev *sc, struct ub_lun *lun);
384static int ub_sync_read_cap(struct ub_dev *sc, struct ub_lun *lun,
385 struct ub_capacity *ret);
2c2e4a2e
PZ
386static int ub_sync_reset(struct ub_dev *sc);
387static int ub_probe_clear_stall(struct ub_dev *sc, int stalled_pipe);
f4800078 388static int ub_probe_lun(struct ub_dev *sc, int lnum);
1da177e4
LT
389
390/*
391 */
a00828e9
PZ
392#ifdef CONFIG_USB_LIBUSUAL
393
394#define ub_usb_ids storage_usb_ids
395#else
396
1da177e4 397static struct usb_device_id ub_usb_ids[] = {
1da177e4
LT
398 { USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE, US_SC_SCSI, US_PR_BULK) },
399 { }
400};
401
402MODULE_DEVICE_TABLE(usb, ub_usb_ids);
a00828e9 403#endif /* CONFIG_USB_LIBUSUAL */
1da177e4
LT
404
405/*
406 * Find me a way to identify "next free minor" for add_disk(),
407 * and the array disappears the next day. However, the number of
408 * hosts has something to do with the naming and /proc/partitions.
409 * This has to be thought out in detail before changing.
410 * If UB_MAX_HOST was 1000, we'd use a bitmap. Or a better data structure.
411 */
412#define UB_MAX_HOSTS 26
413static char ub_hostv[UB_MAX_HOSTS];
f4800078 414
65b4fe55
PZ
415#define UB_QLOCK_NUM 5
416static spinlock_t ub_qlockv[UB_QLOCK_NUM];
417static int ub_qlock_next = 0;
418
1da177e4
LT
419static DEFINE_SPINLOCK(ub_lock); /* Locks globals and ->openc */
420
1da177e4
LT
421/*
422 * The id allocator.
423 *
424 * This also stores the host for indexing by minor, which is somewhat dirty.
425 */
426static int ub_id_get(void)
427{
428 unsigned long flags;
429 int i;
430
431 spin_lock_irqsave(&ub_lock, flags);
432 for (i = 0; i < UB_MAX_HOSTS; i++) {
433 if (ub_hostv[i] == 0) {
434 ub_hostv[i] = 1;
435 spin_unlock_irqrestore(&ub_lock, flags);
436 return i;
437 }
438 }
439 spin_unlock_irqrestore(&ub_lock, flags);
440 return -1;
441}
442
443static void ub_id_put(int id)
444{
445 unsigned long flags;
446
447 if (id < 0 || id >= UB_MAX_HOSTS) {
448 printk(KERN_ERR DRV_NAME ": bad host ID %d\n", id);
449 return;
450 }
451
452 spin_lock_irqsave(&ub_lock, flags);
453 if (ub_hostv[id] == 0) {
454 spin_unlock_irqrestore(&ub_lock, flags);
455 printk(KERN_ERR DRV_NAME ": freeing free host ID %d\n", id);
456 return;
457 }
458 ub_hostv[id] = 0;
459 spin_unlock_irqrestore(&ub_lock, flags);
460}
461
65b4fe55
PZ
462/*
463 * This is necessitated by the fact that blk_cleanup_queue does not
464 * necesserily destroy the queue. Instead, it may merely decrease q->refcnt.
465 * Since our blk_init_queue() passes a spinlock common with ub_dev,
466 * we have life time issues when ub_cleanup frees ub_dev.
467 */
468static spinlock_t *ub_next_lock(void)
469{
470 unsigned long flags;
471 spinlock_t *ret;
472
473 spin_lock_irqsave(&ub_lock, flags);
474 ret = &ub_qlockv[ub_qlock_next];
475 ub_qlock_next = (ub_qlock_next + 1) % UB_QLOCK_NUM;
476 spin_unlock_irqrestore(&ub_lock, flags);
477 return ret;
478}
479
1da177e4
LT
480/*
481 * Downcount for deallocation. This rides on two assumptions:
482 * - once something is poisoned, its refcount cannot grow
483 * - opens cannot happen at this time (del_gendisk was done)
484 * If the above is true, we can drop the lock, which we need for
485 * blk_cleanup_queue(): the silly thing may attempt to sleep.
486 * [Actually, it never needs to sleep for us, but it calls might_sleep()]
487 */
488static void ub_put(struct ub_dev *sc)
489{
490 unsigned long flags;
491
492 spin_lock_irqsave(&ub_lock, flags);
493 --sc->openc;
494 if (sc->openc == 0 && atomic_read(&sc->poison)) {
495 spin_unlock_irqrestore(&ub_lock, flags);
496 ub_cleanup(sc);
497 } else {
498 spin_unlock_irqrestore(&ub_lock, flags);
499 }
500}
501
502/*
503 * Final cleanup and deallocation.
504 */
505static void ub_cleanup(struct ub_dev *sc)
506{
f4800078
PZ
507 struct list_head *p;
508 struct ub_lun *lun;
165125e1 509 struct request_queue *q;
1da177e4 510
f4800078
PZ
511 while (!list_empty(&sc->luns)) {
512 p = sc->luns.next;
513 lun = list_entry(p, struct ub_lun, link);
514 list_del(p);
1da177e4 515
f4800078
PZ
516 /* I don't think queue can be NULL. But... Stolen from sx8.c */
517 if ((q = lun->disk->queue) != NULL)
518 blk_cleanup_queue(q);
519 /*
520 * If we zero disk->private_data BEFORE put_disk, we have
521 * to check for NULL all over the place in open, release,
522 * check_media and revalidate, because the block level
523 * semaphore is well inside the put_disk.
524 * But we cannot zero after the call, because *disk is gone.
525 * The sd.c is blatantly racy in this area.
526 */
527 /* disk->private_data = NULL; */
528 put_disk(lun->disk);
529 lun->disk = NULL;
530
531 ub_id_put(lun->id);
532 kfree(lun);
533 }
1da177e4 534
77ef6c4d
PZ
535 usb_set_intfdata(sc->intf, NULL);
536 usb_put_intf(sc->intf);
537 usb_put_dev(sc->dev);
1da177e4
LT
538 kfree(sc);
539}
540
541/*
542 * The "command allocator".
543 */
f4800078 544static struct ub_scsi_cmd *ub_get_cmd(struct ub_lun *lun)
1da177e4
LT
545{
546 struct ub_scsi_cmd *ret;
547
f4800078 548 if (lun->cmda[0])
1da177e4 549 return NULL;
f4800078
PZ
550 ret = &lun->cmdv[0];
551 lun->cmda[0] = 1;
1da177e4
LT
552 return ret;
553}
554
f4800078 555static void ub_put_cmd(struct ub_lun *lun, struct ub_scsi_cmd *cmd)
1da177e4 556{
f4800078 557 if (cmd != &lun->cmdv[0]) {
1da177e4 558 printk(KERN_WARNING "%s: releasing a foreign cmd %p\n",
f4800078 559 lun->name, cmd);
1da177e4
LT
560 return;
561 }
f4800078
PZ
562 if (!lun->cmda[0]) {
563 printk(KERN_WARNING "%s: releasing a free cmd\n", lun->name);
1da177e4
LT
564 return;
565 }
f4800078 566 lun->cmda[0] = 0;
1da177e4
LT
567}
568
569/*
570 * The command queue.
571 */
572static void ub_cmdq_add(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
573{
574 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
575
576 if (t->qlen++ == 0) {
577 t->head = cmd;
578 t->tail = cmd;
579 } else {
580 t->tail->next = cmd;
581 t->tail = cmd;
582 }
583
584 if (t->qlen > t->qmax)
585 t->qmax = t->qlen;
586}
587
588static void ub_cmdq_insert(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
589{
590 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
591
592 if (t->qlen++ == 0) {
593 t->head = cmd;
594 t->tail = cmd;
595 } else {
596 cmd->next = t->head;
597 t->head = cmd;
598 }
599
600 if (t->qlen > t->qmax)
601 t->qmax = t->qlen;
602}
603
604static struct ub_scsi_cmd *ub_cmdq_pop(struct ub_dev *sc)
605{
606 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
607 struct ub_scsi_cmd *cmd;
608
609 if (t->qlen == 0)
610 return NULL;
611 if (--t->qlen == 0)
612 t->tail = NULL;
613 cmd = t->head;
614 t->head = cmd->next;
615 cmd->next = NULL;
616 return cmd;
617}
618
619#define ub_cmdq_peek(sc) ((sc)->cmd_queue.head)
620
621/*
622 * The request function is our main entry point
623 */
624
165125e1 625static void ub_request_fn(struct request_queue *q)
1da177e4 626{
f4800078 627 struct ub_lun *lun = q->queuedata;
1da177e4
LT
628 struct request *rq;
629
630 while ((rq = elv_next_request(q)) != NULL) {
6c1eb8c1 631 if (ub_request_fn_1(lun, rq) != 0) {
1da177e4
LT
632 blk_stop_queue(q);
633 break;
634 }
635 }
636}
637
6c1eb8c1 638static int ub_request_fn_1(struct ub_lun *lun, struct request *rq)
1da177e4 639{
f4800078 640 struct ub_dev *sc = lun->udev;
1da177e4 641 struct ub_scsi_cmd *cmd;
2c26c9e6
PZ
642 struct ub_request *urq;
643 int n_elem;
1da177e4 644
d1ad4ea3 645 if (atomic_read(&sc->poison)) {
1da177e4 646 blkdev_dequeue_request(rq);
ef45cb62 647 ub_end_rq(rq, DID_NO_CONNECT << 16, blk_rq_bytes(rq));
d1ad4ea3
PZ
648 return 0;
649 }
650
651 if (lun->changed && !blk_pc_request(rq)) {
652 blkdev_dequeue_request(rq);
ef45cb62 653 ub_end_rq(rq, SAM_STAT_CHECK_CONDITION, blk_rq_bytes(rq));
1da177e4
LT
654 return 0;
655 }
656
2c26c9e6
PZ
657 if (lun->urq.rq != NULL)
658 return -1;
f4800078 659 if ((cmd = ub_get_cmd(lun)) == NULL)
1da177e4
LT
660 return -1;
661 memset(cmd, 0, sizeof(struct ub_scsi_cmd));
662
663 blkdev_dequeue_request(rq);
2c26c9e6
PZ
664
665 urq = &lun->urq;
666 memset(urq, 0, sizeof(struct ub_request));
667 urq->rq = rq;
668
669 /*
670 * get scatterlist from block layer
671 */
541645be 672 sg_init_table(&urq->sgv[0], UB_MAX_REQ_SG);
2c26c9e6
PZ
673 n_elem = blk_rq_map_sg(lun->disk->queue, rq, &urq->sgv[0]);
674 if (n_elem < 0) {
b5600339 675 /* Impossible, because blk_rq_map_sg should not hit ENOMEM. */
2c26c9e6 676 printk(KERN_INFO "%s: failed request map (%d)\n",
b5600339 677 lun->name, n_elem);
2c26c9e6
PZ
678 goto drop;
679 }
680 if (n_elem > UB_MAX_REQ_SG) { /* Paranoia */
681 printk(KERN_WARNING "%s: request with %d segments\n",
682 lun->name, n_elem);
683 goto drop;
684 }
685 urq->nsg = n_elem;
686 sc->sg_stat[n_elem < 5 ? n_elem : 5]++;
687
1da177e4 688 if (blk_pc_request(rq)) {
2c26c9e6 689 ub_cmd_build_packet(sc, lun, cmd, urq);
1da177e4 690 } else {
2c26c9e6 691 ub_cmd_build_block(sc, lun, cmd, urq);
1da177e4 692 }
1da177e4 693 cmd->state = UB_CMDST_INIT;
f4800078 694 cmd->lun = lun;
1da177e4 695 cmd->done = ub_rw_cmd_done;
2c26c9e6 696 cmd->back = urq;
1da177e4
LT
697
698 cmd->tag = sc->tagcnt++;
2c26c9e6
PZ
699 if (ub_submit_scsi(sc, cmd) != 0)
700 goto drop;
701
702 return 0;
1da177e4 703
2c26c9e6
PZ
704drop:
705 ub_put_cmd(lun, cmd);
ef45cb62 706 ub_end_rq(rq, DID_ERROR << 16, blk_rq_bytes(rq));
1da177e4
LT
707 return 0;
708}
709
2c26c9e6
PZ
710static void ub_cmd_build_block(struct ub_dev *sc, struct ub_lun *lun,
711 struct ub_scsi_cmd *cmd, struct ub_request *urq)
1da177e4 712{
2c26c9e6 713 struct request *rq = urq->rq;
a1cf96ef 714 unsigned int block, nblks;
1da177e4
LT
715
716 if (rq_data_dir(rq) == WRITE)
2c26c9e6 717 cmd->dir = UB_DIR_WRITE;
1da177e4 718 else
2c26c9e6 719 cmd->dir = UB_DIR_READ;
1da177e4 720
2c26c9e6
PZ
721 cmd->nsg = urq->nsg;
722 memcpy(cmd->sgv, urq->sgv, sizeof(struct scatterlist) * cmd->nsg);
1da177e4
LT
723
724 /*
725 * build the command
726 *
727 * The call to blk_queue_hardsect_size() guarantees that request
728 * is aligned, but it is given in terms of 512 byte units, always.
729 */
a1cf96ef
PZ
730 block = rq->sector >> lun->capacity.bshift;
731 nblks = rq->nr_sectors >> lun->capacity.bshift;
ba6abf13 732
2c26c9e6 733 cmd->cdb[0] = (cmd->dir == UB_DIR_READ)? READ_10: WRITE_10;
1da177e4
LT
734 /* 10-byte uses 4 bytes of LBA: 2147483648KB, 2097152MB, 2048GB */
735 cmd->cdb[2] = block >> 24;
736 cmd->cdb[3] = block >> 16;
737 cmd->cdb[4] = block >> 8;
738 cmd->cdb[5] = block;
739 cmd->cdb[7] = nblks >> 8;
740 cmd->cdb[8] = nblks;
741 cmd->cdb_len = 10;
742
a1cf96ef 743 cmd->len = rq->nr_sectors * 512;
1da177e4
LT
744}
745
2c26c9e6
PZ
746static void ub_cmd_build_packet(struct ub_dev *sc, struct ub_lun *lun,
747 struct ub_scsi_cmd *cmd, struct ub_request *urq)
1da177e4 748{
2c26c9e6 749 struct request *rq = urq->rq;
1da177e4
LT
750
751 if (rq->data_len == 0) {
752 cmd->dir = UB_DIR_NONE;
753 } else {
754 if (rq_data_dir(rq) == WRITE)
755 cmd->dir = UB_DIR_WRITE;
756 else
757 cmd->dir = UB_DIR_READ;
758 }
a1cf96ef 759
2c26c9e6
PZ
760 cmd->nsg = urq->nsg;
761 memcpy(cmd->sgv, urq->sgv, sizeof(struct scatterlist) * cmd->nsg);
a1cf96ef
PZ
762
763 memcpy(&cmd->cdb, rq->cmd, rq->cmd_len);
764 cmd->cdb_len = rq->cmd_len;
765
1da177e4 766 cmd->len = rq->data_len;
1da177e4
LT
767}
768
769static void ub_rw_cmd_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
770{
f4800078 771 struct ub_lun *lun = cmd->lun;
2c26c9e6
PZ
772 struct ub_request *urq = cmd->back;
773 struct request *rq;
d1ad4ea3 774 unsigned int scsi_status;
ef45cb62 775 unsigned int cmd_len;
1da177e4 776
2c26c9e6
PZ
777 rq = urq->rq;
778
a1cf96ef 779 if (cmd->error == 0) {
a1cf96ef
PZ
780 if (blk_pc_request(rq)) {
781 if (cmd->act_len >= rq->data_len)
782 rq->data_len = 0;
783 else
784 rq->data_len -= cmd->act_len;
ef45cb62
PZ
785 scsi_status = 0;
786 } else {
787 if (cmd->act_len != cmd->len) {
788 if ((cmd->key == MEDIUM_ERROR ||
789 cmd->key == UNIT_ATTENTION) &&
790 ub_rw_cmd_retry(sc, lun, urq, cmd) == 0)
791 return;
792 scsi_status = SAM_STAT_CHECK_CONDITION;
793 } else {
794 scsi_status = 0;
795 }
ba6abf13 796 }
a1cf96ef 797 } else {
a1cf96ef
PZ
798 if (blk_pc_request(rq)) {
799 /* UB_SENSE_SIZE is smaller than SCSI_SENSE_BUFFERSIZE */
800 memcpy(rq->sense, sc->top_sense, UB_SENSE_SIZE);
801 rq->sense_len = UB_SENSE_SIZE;
802 if (sc->top_sense[0] != 0)
d1ad4ea3 803 scsi_status = SAM_STAT_CHECK_CONDITION;
a1cf96ef 804 else
d1ad4ea3 805 scsi_status = DID_ERROR << 16;
2c26c9e6
PZ
806 } else {
807 if (cmd->error == -EIO) {
808 if (ub_rw_cmd_retry(sc, lun, urq, cmd) == 0)
809 return;
810 }
d1ad4ea3 811 scsi_status = SAM_STAT_CHECK_CONDITION;
a1cf96ef
PZ
812 }
813 }
ba6abf13 814
2c26c9e6
PZ
815 urq->rq = NULL;
816
ef45cb62 817 cmd_len = cmd->len;
f4800078 818 ub_put_cmd(lun, cmd);
ef45cb62 819 ub_end_rq(rq, scsi_status, cmd_len);
ba6abf13 820 blk_start_queue(lun->disk->queue);
1da177e4
LT
821}
822
ef45cb62
PZ
823static void ub_end_rq(struct request *rq, unsigned int scsi_status,
824 unsigned int cmd_len)
1da177e4 825{
7d699baf 826 int error;
ef45cb62 827 long rqlen;
d1ad4ea3
PZ
828
829 if (scsi_status == 0) {
7d699baf 830 error = 0;
d1ad4ea3 831 } else {
7d699baf 832 error = -EIO;
d1ad4ea3
PZ
833 rq->errors = scsi_status;
834 }
ef45cb62
PZ
835 rqlen = blk_rq_bytes(rq); /* Oddly enough, this is the residue. */
836 if (__blk_end_request(rq, error, cmd_len)) {
837 printk(KERN_WARNING DRV_NAME
838 ": __blk_end_request blew, %s-cmd total %u rqlen %ld\n",
839 blk_pc_request(rq)? "pc": "fs", cmd_len, rqlen);
840 }
1da177e4
LT
841}
842
2c26c9e6
PZ
843static int ub_rw_cmd_retry(struct ub_dev *sc, struct ub_lun *lun,
844 struct ub_request *urq, struct ub_scsi_cmd *cmd)
845{
846
847 if (atomic_read(&sc->poison))
848 return -ENXIO;
849
2c2e4a2e 850 ub_reset_enter(sc, urq->current_try);
2c26c9e6
PZ
851
852 if (urq->current_try >= 3)
853 return -EIO;
854 urq->current_try++;
b5600339
PZ
855
856 /* Remove this if anyone complains of flooding. */
857 printk(KERN_DEBUG "%s: dir %c len/act %d/%d "
2c26c9e6
PZ
858 "[sense %x %02x %02x] retry %d\n",
859 sc->name, UB_DIR_CHAR(cmd->dir), cmd->len, cmd->act_len,
860 cmd->key, cmd->asc, cmd->ascq, urq->current_try);
861
862 memset(cmd, 0, sizeof(struct ub_scsi_cmd));
863 ub_cmd_build_block(sc, lun, cmd, urq);
864
865 cmd->state = UB_CMDST_INIT;
866 cmd->lun = lun;
867 cmd->done = ub_rw_cmd_done;
868 cmd->back = urq;
869
870 cmd->tag = sc->tagcnt++;
871
872#if 0 /* Wasteful */
873 return ub_submit_scsi(sc, cmd);
874#else
875 ub_cmdq_add(sc, cmd);
876 return 0;
877#endif
878}
879
1da177e4
LT
880/*
881 * Submit a regular SCSI operation (not an auto-sense).
882 *
883 * The Iron Law of Good Submit Routine is:
884 * Zero return - callback is done, Nonzero return - callback is not done.
885 * No exceptions.
886 *
887 * Host is assumed locked.
1da177e4
LT
888 */
889static int ub_submit_scsi(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
890{
891
892 if (cmd->state != UB_CMDST_INIT ||
893 (cmd->dir != UB_DIR_NONE && cmd->len == 0)) {
894 return -EINVAL;
895 }
896
897 ub_cmdq_add(sc, cmd);
898 /*
899 * We can call ub_scsi_dispatch(sc) right away here, but it's a little
900 * safer to jump to a tasklet, in case upper layers do something silly.
901 */
902 tasklet_schedule(&sc->tasklet);
903 return 0;
904}
905
906/*
907 * Submit the first URB for the queued command.
908 * This function does not deal with queueing in any way.
909 */
910static int ub_scsi_cmd_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
911{
912 struct bulk_cb_wrap *bcb;
913 int rc;
914
915 bcb = &sc->work_bcb;
916
917 /*
918 * ``If the allocation length is eighteen or greater, and a device
919 * server returns less than eithteen bytes of data, the application
920 * client should assume that the bytes not transferred would have been
921 * zeroes had the device server returned those bytes.''
922 *
923 * We zero sense for all commands so that when a packet request
924 * fails it does not return a stale sense.
925 */
926 memset(&sc->top_sense, 0, UB_SENSE_SIZE);
927
928 /* set up the command wrapper */
929 bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
930 bcb->Tag = cmd->tag; /* Endianness is not important */
931 bcb->DataTransferLength = cpu_to_le32(cmd->len);
932 bcb->Flags = (cmd->dir == UB_DIR_READ) ? 0x80 : 0;
f4800078 933 bcb->Lun = (cmd->lun != NULL) ? cmd->lun->num : 0;
1da177e4
LT
934 bcb->Length = cmd->cdb_len;
935
936 /* copy the command payload */
937 memcpy(bcb->CDB, cmd->cdb, UB_MAX_CDB_SIZE);
938
939 UB_INIT_COMPLETION(sc->work_done);
940
941 sc->last_pipe = sc->send_bulk_pipe;
942 usb_fill_bulk_urb(&sc->work_urb, sc->dev, sc->send_bulk_pipe,
943 bcb, US_BULK_CB_WRAP_LEN, ub_urb_complete, sc);
1da177e4 944
1da177e4
LT
945 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
946 /* XXX Clear stalls */
1da177e4
LT
947 ub_complete(&sc->work_done);
948 return rc;
949 }
950
951 sc->work_timer.expires = jiffies + UB_URB_TIMEOUT;
952 add_timer(&sc->work_timer);
953
954 cmd->state = UB_CMDST_CMD;
1da177e4
LT
955 return 0;
956}
957
958/*
959 * Timeout handler.
960 */
961static void ub_urb_timeout(unsigned long arg)
962{
963 struct ub_dev *sc = (struct ub_dev *) arg;
964 unsigned long flags;
965
65b4fe55 966 spin_lock_irqsave(sc->lock, flags);
b31f821c
PZ
967 if (!ub_is_completed(&sc->work_done))
968 usb_unlink_urb(&sc->work_urb);
65b4fe55 969 spin_unlock_irqrestore(sc->lock, flags);
1da177e4
LT
970}
971
972/*
973 * Completion routine for the work URB.
974 *
975 * This can be called directly from usb_submit_urb (while we have
976 * the sc->lock taken) and from an interrupt (while we do NOT have
977 * the sc->lock taken). Therefore, bounce this off to a tasklet.
978 */
7d12e780 979static void ub_urb_complete(struct urb *urb)
1da177e4
LT
980{
981 struct ub_dev *sc = urb->context;
982
983 ub_complete(&sc->work_done);
984 tasklet_schedule(&sc->tasklet);
985}
986
987static void ub_scsi_action(unsigned long _dev)
988{
989 struct ub_dev *sc = (struct ub_dev *) _dev;
990 unsigned long flags;
991
65b4fe55 992 spin_lock_irqsave(sc->lock, flags);
1da177e4 993 ub_scsi_dispatch(sc);
65b4fe55 994 spin_unlock_irqrestore(sc->lock, flags);
1da177e4
LT
995}
996
997static void ub_scsi_dispatch(struct ub_dev *sc)
998{
999 struct ub_scsi_cmd *cmd;
1000 int rc;
1001
2c26c9e6 1002 while (!sc->reset && (cmd = ub_cmdq_peek(sc)) != NULL) {
1da177e4
LT
1003 if (cmd->state == UB_CMDST_DONE) {
1004 ub_cmdq_pop(sc);
1005 (*cmd->done)(sc, cmd);
1006 } else if (cmd->state == UB_CMDST_INIT) {
1da177e4
LT
1007 if ((rc = ub_scsi_cmd_start(sc, cmd)) == 0)
1008 break;
1009 cmd->error = rc;
1010 cmd->state = UB_CMDST_DONE;
1da177e4
LT
1011 } else {
1012 if (!ub_is_completed(&sc->work_done))
1013 break;
b31f821c 1014 del_timer(&sc->work_timer);
1da177e4
LT
1015 ub_scsi_urb_compl(sc, cmd);
1016 }
1017 }
1018}
1019
1020static void ub_scsi_urb_compl(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1021{
1022 struct urb *urb = &sc->work_urb;
1023 struct bulk_cs_wrap *bcs;
2c26c9e6 1024 int len;
1da177e4
LT
1025 int rc;
1026
1027 if (atomic_read(&sc->poison)) {
2c26c9e6
PZ
1028 ub_state_done(sc, cmd, -ENODEV);
1029 return;
1da177e4
LT
1030 }
1031
1032 if (cmd->state == UB_CMDST_CLEAR) {
1033 if (urb->status == -EPIPE) {
1034 /*
1035 * STALL while clearning STALL.
1036 * The control pipe clears itself - nothing to do.
1da177e4 1037 */
f4800078
PZ
1038 printk(KERN_NOTICE "%s: stall on control pipe\n",
1039 sc->name);
1da177e4
LT
1040 goto Bad_End;
1041 }
1042
1043 /*
1044 * We ignore the result for the halt clear.
1045 */
1046
1047 /* reset the endpoint toggle */
1048 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1049 usb_pipeout(sc->last_pipe), 0);
1050
1051 ub_state_sense(sc, cmd);
1052
1053 } else if (cmd->state == UB_CMDST_CLR2STS) {
1054 if (urb->status == -EPIPE) {
f4800078
PZ
1055 printk(KERN_NOTICE "%s: stall on control pipe\n",
1056 sc->name);
1da177e4
LT
1057 goto Bad_End;
1058 }
1059
1060 /*
1061 * We ignore the result for the halt clear.
1062 */
1063
1064 /* reset the endpoint toggle */
1065 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1066 usb_pipeout(sc->last_pipe), 0);
1067
1068 ub_state_stat(sc, cmd);
1069
1872bceb
PZ
1070 } else if (cmd->state == UB_CMDST_CLRRS) {
1071 if (urb->status == -EPIPE) {
1872bceb
PZ
1072 printk(KERN_NOTICE "%s: stall on control pipe\n",
1073 sc->name);
1074 goto Bad_End;
1075 }
1076
1077 /*
1078 * We ignore the result for the halt clear.
1079 */
1080
1081 /* reset the endpoint toggle */
1082 usb_settoggle(sc->dev, usb_pipeendpoint(sc->last_pipe),
1083 usb_pipeout(sc->last_pipe), 0);
1084
1085 ub_state_stat_counted(sc, cmd);
1086
1da177e4 1087 } else if (cmd->state == UB_CMDST_CMD) {
2c26c9e6
PZ
1088 switch (urb->status) {
1089 case 0:
1090 break;
1091 case -EOVERFLOW:
1092 goto Bad_End;
1093 case -EPIPE:
1da177e4
LT
1094 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1095 if (rc != 0) {
1096 printk(KERN_NOTICE "%s: "
f4800078
PZ
1097 "unable to submit clear (%d)\n",
1098 sc->name, rc);
1da177e4
LT
1099 /*
1100 * This is typically ENOMEM or some other such shit.
1101 * Retrying is pointless. Just do Bad End on it...
1102 */
2c26c9e6
PZ
1103 ub_state_done(sc, cmd, rc);
1104 return;
1da177e4
LT
1105 }
1106 cmd->state = UB_CMDST_CLEAR;
1da177e4 1107 return;
2c26c9e6
PZ
1108 case -ESHUTDOWN: /* unplug */
1109 case -EILSEQ: /* unplug timeout on uhci */
1110 ub_state_done(sc, cmd, -ENODEV);
1111 return;
1112 default:
1da177e4
LT
1113 goto Bad_End;
1114 }
1115 if (urb->actual_length != US_BULK_CB_WRAP_LEN) {
1da177e4
LT
1116 goto Bad_End;
1117 }
1118
a1cf96ef 1119 if (cmd->dir == UB_DIR_NONE || cmd->nsg < 1) {
1da177e4
LT
1120 ub_state_stat(sc, cmd);
1121 return;
1122 }
1123
a1cf96ef
PZ
1124 // udelay(125); // usb-storage has this
1125 ub_data_start(sc, cmd);
1da177e4
LT
1126
1127 } else if (cmd->state == UB_CMDST_DATA) {
1128 if (urb->status == -EPIPE) {
1129 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1130 if (rc != 0) {
1131 printk(KERN_NOTICE "%s: "
f4800078
PZ
1132 "unable to submit clear (%d)\n",
1133 sc->name, rc);
2c26c9e6
PZ
1134 ub_state_done(sc, cmd, rc);
1135 return;
1da177e4
LT
1136 }
1137 cmd->state = UB_CMDST_CLR2STS;
1da177e4
LT
1138 return;
1139 }
1140 if (urb->status == -EOVERFLOW) {
1141 /*
1142 * A babble? Failure, but we must transfer CSW now.
1143 */
1144 cmd->error = -EOVERFLOW; /* A cheap trick... */
a1cf96ef
PZ
1145 ub_state_stat(sc, cmd);
1146 return;
1da177e4 1147 }
2c26c9e6
PZ
1148
1149 if (cmd->dir == UB_DIR_WRITE) {
1150 /*
1151 * Do not continue writes in case of a failure.
1152 * Doing so would cause sectors to be mixed up,
1153 * which is worse than sectors lost.
1154 *
1155 * We must try to read the CSW, or many devices
1156 * get confused.
1157 */
1158 len = urb->actual_length;
1159 if (urb->status != 0 ||
1160 len != cmd->sgv[cmd->current_sg].length) {
1161 cmd->act_len += len;
2c26c9e6
PZ
1162
1163 cmd->error = -EIO;
1164 ub_state_stat(sc, cmd);
1165 return;
1166 }
1167
1168 } else {
1169 /*
1170 * If an error occurs on read, we record it, and
1171 * continue to fetch data in order to avoid bubble.
1172 *
1173 * As a small shortcut, we stop if we detect that
1174 * a CSW mixed into data.
1175 */
1176 if (urb->status != 0)
1177 cmd->error = -EIO;
1178
1179 len = urb->actual_length;
1180 if (urb->status != 0 ||
1181 len != cmd->sgv[cmd->current_sg].length) {
1182 if ((len & 0x1FF) == US_BULK_CS_WRAP_LEN)
1183 goto Bad_End;
1184 }
1185 }
1da177e4 1186
a1cf96ef 1187 cmd->act_len += urb->actual_length;
1da177e4 1188
a1cf96ef
PZ
1189 if (++cmd->current_sg < cmd->nsg) {
1190 ub_data_start(sc, cmd);
1191 return;
1192 }
1da177e4
LT
1193 ub_state_stat(sc, cmd);
1194
1195 } else if (cmd->state == UB_CMDST_STAT) {
1196 if (urb->status == -EPIPE) {
1197 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1198 if (rc != 0) {
1199 printk(KERN_NOTICE "%s: "
f4800078
PZ
1200 "unable to submit clear (%d)\n",
1201 sc->name, rc);
2c26c9e6
PZ
1202 ub_state_done(sc, cmd, rc);
1203 return;
1da177e4 1204 }
1872bceb
PZ
1205
1206 /*
1207 * Having a stall when getting CSW is an error, so
1208 * make sure uppper levels are not oblivious to it.
1209 */
1210 cmd->error = -EIO; /* A cheap trick... */
1211
1212 cmd->state = UB_CMDST_CLRRS;
1da177e4
LT
1213 return;
1214 }
2c26c9e6
PZ
1215
1216 /* Catch everything, including -EOVERFLOW and other nasties. */
1da177e4
LT
1217 if (urb->status != 0)
1218 goto Bad_End;
1219
1220 if (urb->actual_length == 0) {
1872bceb 1221 ub_state_stat_counted(sc, cmd);
1da177e4
LT
1222 return;
1223 }
1224
1225 /*
1226 * Check the returned Bulk protocol status.
1872bceb 1227 * The status block has to be validated first.
1da177e4
LT
1228 */
1229
1230 bcs = &sc->work_bcs;
1872bceb
PZ
1231
1232 if (sc->signature == cpu_to_le32(0)) {
1da177e4 1233 /*
1872bceb
PZ
1234 * This is the first reply, so do not perform the check.
1235 * Instead, remember the signature the device uses
1236 * for future checks. But do not allow a nul.
1da177e4 1237 */
1872bceb
PZ
1238 sc->signature = bcs->Signature;
1239 if (sc->signature == cpu_to_le32(0)) {
1240 ub_state_stat_counted(sc, cmd);
1241 return;
1242 }
1243 } else {
1244 if (bcs->Signature != sc->signature) {
1245 ub_state_stat_counted(sc, cmd);
1246 return;
1247 }
1da177e4 1248 }
1da177e4
LT
1249
1250 if (bcs->Tag != cmd->tag) {
1251 /*
1252 * This usually happens when we disagree with the
1253 * device's microcode about something. For instance,
1254 * a few of them throw this after timeouts. They buffer
1255 * commands and reply at commands we timed out before.
1256 * Without flushing these replies we loop forever.
1257 */
1872bceb 1258 ub_state_stat_counted(sc, cmd);
1da177e4
LT
1259 return;
1260 }
1261
2c26c9e6
PZ
1262 len = le32_to_cpu(bcs->Residue);
1263 if (len != cmd->len - cmd->act_len) {
1872bceb
PZ
1264 /*
1265 * It is all right to transfer less, the caller has
1266 * to check. But it's not all right if the device
1267 * counts disagree with our counts.
1268 */
1872bceb
PZ
1269 goto Bad_End;
1270 }
1271
1da177e4
LT
1272 switch (bcs->Status) {
1273 case US_BULK_STAT_OK:
1274 break;
1275 case US_BULK_STAT_FAIL:
1276 ub_state_sense(sc, cmd);
1277 return;
1278 case US_BULK_STAT_PHASE:
1da177e4
LT
1279 goto Bad_End;
1280 default:
1281 printk(KERN_INFO "%s: unknown CSW status 0x%x\n",
1282 sc->name, bcs->Status);
2c26c9e6
PZ
1283 ub_state_done(sc, cmd, -EINVAL);
1284 return;
1da177e4
LT
1285 }
1286
1287 /* Not zeroing error to preserve a babble indicator */
1872bceb
PZ
1288 if (cmd->error != 0) {
1289 ub_state_sense(sc, cmd);
1290 return;
1291 }
1da177e4 1292 cmd->state = UB_CMDST_DONE;
1da177e4
LT
1293 ub_cmdq_pop(sc);
1294 (*cmd->done)(sc, cmd);
1295
1296 } else if (cmd->state == UB_CMDST_SENSE) {
1297 ub_state_done(sc, cmd, -EIO);
1298
1299 } else {
1300 printk(KERN_WARNING "%s: "
f4800078
PZ
1301 "wrong command state %d\n",
1302 sc->name, cmd->state);
2c26c9e6
PZ
1303 ub_state_done(sc, cmd, -EINVAL);
1304 return;
1da177e4
LT
1305 }
1306 return;
1307
1308Bad_End: /* Little Excel is dead */
1309 ub_state_done(sc, cmd, -EIO);
1310}
1311
a1cf96ef
PZ
1312/*
1313 * Factorization helper for the command state machine:
1314 * Initiate a data segment transfer.
1315 */
1316static void ub_data_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1317{
1318 struct scatterlist *sg = &cmd->sgv[cmd->current_sg];
1319 int pipe;
1320 int rc;
1321
1322 UB_INIT_COMPLETION(sc->work_done);
1323
1324 if (cmd->dir == UB_DIR_READ)
1325 pipe = sc->recv_bulk_pipe;
1326 else
1327 pipe = sc->send_bulk_pipe;
1328 sc->last_pipe = pipe;
45711f1a
JA
1329 usb_fill_bulk_urb(&sc->work_urb, sc->dev, pipe, sg_virt(sg),
1330 sg->length, ub_urb_complete, sc);
a1cf96ef
PZ
1331
1332 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1333 /* XXX Clear stalls */
a1cf96ef
PZ
1334 ub_complete(&sc->work_done);
1335 ub_state_done(sc, cmd, rc);
1336 return;
1337 }
1338
1339 sc->work_timer.expires = jiffies + UB_DATA_TIMEOUT;
1340 add_timer(&sc->work_timer);
1341
1342 cmd->state = UB_CMDST_DATA;
a1cf96ef
PZ
1343}
1344
1da177e4
LT
1345/*
1346 * Factorization helper for the command state machine:
1347 * Finish the command.
1348 */
1349static void ub_state_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd, int rc)
1350{
1351
1352 cmd->error = rc;
1353 cmd->state = UB_CMDST_DONE;
1da177e4
LT
1354 ub_cmdq_pop(sc);
1355 (*cmd->done)(sc, cmd);
1356}
1357
1358/*
1359 * Factorization helper for the command state machine:
1360 * Submit a CSW read.
1361 */
1872bceb 1362static int __ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1da177e4
LT
1363{
1364 int rc;
1365
1366 UB_INIT_COMPLETION(sc->work_done);
1367
1368 sc->last_pipe = sc->recv_bulk_pipe;
1369 usb_fill_bulk_urb(&sc->work_urb, sc->dev, sc->recv_bulk_pipe,
1370 &sc->work_bcs, US_BULK_CS_WRAP_LEN, ub_urb_complete, sc);
1da177e4
LT
1371
1372 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1373 /* XXX Clear stalls */
1da177e4
LT
1374 ub_complete(&sc->work_done);
1375 ub_state_done(sc, cmd, rc);
1872bceb 1376 return -1;
1da177e4
LT
1377 }
1378
1379 sc->work_timer.expires = jiffies + UB_STAT_TIMEOUT;
1380 add_timer(&sc->work_timer);
1872bceb 1381 return 0;
1da177e4
LT
1382}
1383
1384/*
1385 * Factorization helper for the command state machine:
1386 * Submit a CSW read and go to STAT state.
1387 */
1388static void ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1389{
1872bceb
PZ
1390
1391 if (__ub_state_stat(sc, cmd) != 0)
1392 return;
1da177e4
LT
1393
1394 cmd->stat_count = 0;
1395 cmd->state = UB_CMDST_STAT;
1872bceb
PZ
1396}
1397
1398/*
1399 * Factorization helper for the command state machine:
1400 * Submit a CSW read and go to STAT state with counter (along [C] path).
1401 */
1402static void ub_state_stat_counted(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1403{
1404
1405 if (++cmd->stat_count >= 4) {
1406 ub_state_sense(sc, cmd);
1407 return;
1408 }
1409
1410 if (__ub_state_stat(sc, cmd) != 0)
1411 return;
1412
1413 cmd->state = UB_CMDST_STAT;
1da177e4
LT
1414}
1415
1416/*
1417 * Factorization helper for the command state machine:
1418 * Submit a REQUEST SENSE and go to SENSE state.
1419 */
1420static void ub_state_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1421{
1422 struct ub_scsi_cmd *scmd;
a1cf96ef 1423 struct scatterlist *sg;
1da177e4
LT
1424 int rc;
1425
1426 if (cmd->cdb[0] == REQUEST_SENSE) {
1427 rc = -EPIPE;
1428 goto error;
1429 }
1430
1431 scmd = &sc->top_rqs_cmd;
a1cf96ef 1432 memset(scmd, 0, sizeof(struct ub_scsi_cmd));
1da177e4
LT
1433 scmd->cdb[0] = REQUEST_SENSE;
1434 scmd->cdb[4] = UB_SENSE_SIZE;
1435 scmd->cdb_len = 6;
1436 scmd->dir = UB_DIR_READ;
1437 scmd->state = UB_CMDST_INIT;
a1cf96ef
PZ
1438 scmd->nsg = 1;
1439 sg = &scmd->sgv[0];
4f33a9d9 1440 sg_init_table(sg, UB_MAX_REQ_SG);
642f1490
JA
1441 sg_set_page(sg, virt_to_page(sc->top_sense), UB_SENSE_SIZE,
1442 (unsigned long)sc->top_sense & (PAGE_SIZE-1));
1da177e4 1443 scmd->len = UB_SENSE_SIZE;
f4800078 1444 scmd->lun = cmd->lun;
1da177e4
LT
1445 scmd->done = ub_top_sense_done;
1446 scmd->back = cmd;
1447
1448 scmd->tag = sc->tagcnt++;
1449
1450 cmd->state = UB_CMDST_SENSE;
1da177e4
LT
1451
1452 ub_cmdq_insert(sc, scmd);
1453 return;
1454
1455error:
1456 ub_state_done(sc, cmd, rc);
1457}
1458
1459/*
1460 * A helper for the command's state machine:
1461 * Submit a stall clear.
1462 */
1463static int ub_submit_clear_stall(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
1464 int stalled_pipe)
1465{
1466 int endp;
1467 struct usb_ctrlrequest *cr;
1468 int rc;
1469
1470 endp = usb_pipeendpoint(stalled_pipe);
1471 if (usb_pipein (stalled_pipe))
1472 endp |= USB_DIR_IN;
1473
1474 cr = &sc->work_cr;
1475 cr->bRequestType = USB_RECIP_ENDPOINT;
1476 cr->bRequest = USB_REQ_CLEAR_FEATURE;
1477 cr->wValue = cpu_to_le16(USB_ENDPOINT_HALT);
1478 cr->wIndex = cpu_to_le16(endp);
1479 cr->wLength = cpu_to_le16(0);
1480
1481 UB_INIT_COMPLETION(sc->work_done);
1482
1483 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
1484 (unsigned char*) cr, NULL, 0, ub_urb_complete, sc);
1da177e4
LT
1485
1486 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1487 ub_complete(&sc->work_done);
1488 return rc;
1489 }
1490
1491 sc->work_timer.expires = jiffies + UB_CTRL_TIMEOUT;
1492 add_timer(&sc->work_timer);
1493 return 0;
1494}
1495
1496/*
1497 */
1498static void ub_top_sense_done(struct ub_dev *sc, struct ub_scsi_cmd *scmd)
1499{
a1cf96ef 1500 unsigned char *sense = sc->top_sense;
1da177e4
LT
1501 struct ub_scsi_cmd *cmd;
1502
1da177e4
LT
1503 /*
1504 * Find the command which triggered the unit attention or a check,
1505 * save the sense into it, and advance its state machine.
1506 */
1507 if ((cmd = ub_cmdq_peek(sc)) == NULL) {
1508 printk(KERN_WARNING "%s: sense done while idle\n", sc->name);
1509 return;
1510 }
1511 if (cmd != scmd->back) {
1512 printk(KERN_WARNING "%s: "
f4800078
PZ
1513 "sense done for wrong command 0x%x\n",
1514 sc->name, cmd->tag);
1da177e4
LT
1515 return;
1516 }
1517 if (cmd->state != UB_CMDST_SENSE) {
1518 printk(KERN_WARNING "%s: "
f4800078
PZ
1519 "sense done with bad cmd state %d\n",
1520 sc->name, cmd->state);
1da177e4
LT
1521 return;
1522 }
1523
952ba222
PZ
1524 /*
1525 * Ignoring scmd->act_len, because the buffer was pre-zeroed.
1526 */
1da177e4
LT
1527 cmd->key = sense[2] & 0x0F;
1528 cmd->asc = sense[12];
1529 cmd->ascq = sense[13];
1530
1531 ub_scsi_urb_compl(sc, cmd);
1532}
1533
2c26c9e6
PZ
1534/*
1535 * Reset management
2c2e4a2e
PZ
1536 * XXX Move usb_reset_device to khubd. Hogging kevent is not a good thing.
1537 * XXX Make usb_sync_reset asynchronous.
2c26c9e6
PZ
1538 */
1539
2c2e4a2e 1540static void ub_reset_enter(struct ub_dev *sc, int try)
2c26c9e6
PZ
1541{
1542
1543 if (sc->reset) {
1544 /* This happens often on multi-LUN devices. */
1545 return;
1546 }
2c2e4a2e 1547 sc->reset = try + 1;
2c26c9e6
PZ
1548
1549#if 0 /* Not needed because the disconnect waits for us. */
1550 unsigned long flags;
1551 spin_lock_irqsave(&ub_lock, flags);
1552 sc->openc++;
1553 spin_unlock_irqrestore(&ub_lock, flags);
1554#endif
1555
1556#if 0 /* We let them stop themselves. */
2c26c9e6 1557 struct ub_lun *lun;
a69228de 1558 list_for_each_entry(lun, &sc->luns, link) {
2c26c9e6
PZ
1559 blk_stop_queue(lun->disk->queue);
1560 }
1561#endif
1562
1563 schedule_work(&sc->reset_work);
1564}
1565
c4028958 1566static void ub_reset_task(struct work_struct *work)
2c26c9e6 1567{
c4028958 1568 struct ub_dev *sc = container_of(work, struct ub_dev, reset_work);
2c26c9e6 1569 unsigned long flags;
2c26c9e6
PZ
1570 struct ub_lun *lun;
1571 int lkr, rc;
1572
1573 if (!sc->reset) {
1574 printk(KERN_WARNING "%s: Running reset unrequested\n",
1575 sc->name);
1576 return;
1577 }
1578
1579 if (atomic_read(&sc->poison)) {
b5600339 1580 ;
2c2e4a2e
PZ
1581 } else if ((sc->reset & 1) == 0) {
1582 ub_sync_reset(sc);
1583 msleep(700); /* usb-storage sleeps 6s (!) */
1584 ub_probe_clear_stall(sc, sc->recv_bulk_pipe);
1585 ub_probe_clear_stall(sc, sc->send_bulk_pipe);
2c26c9e6 1586 } else if (sc->dev->actconfig->desc.bNumInterfaces != 1) {
b5600339 1587 ;
2c26c9e6
PZ
1588 } else {
1589 if ((lkr = usb_lock_device_for_reset(sc->dev, sc->intf)) < 0) {
1590 printk(KERN_NOTICE
1591 "%s: usb_lock_device_for_reset failed (%d)\n",
1592 sc->name, lkr);
1593 } else {
1594 rc = usb_reset_device(sc->dev);
1595 if (rc < 0) {
1596 printk(KERN_NOTICE "%s: "
1597 "usb_lock_device_for_reset failed (%d)\n",
1598 sc->name, rc);
1599 }
1600
1601 if (lkr)
1602 usb_unlock_device(sc->dev);
1603 }
1604 }
1605
1606 /*
1607 * In theory, no commands can be running while reset is active,
1608 * so nobody can ask for another reset, and so we do not need any
1609 * queues of resets or anything. We do need a spinlock though,
1610 * to interact with block layer.
1611 */
65b4fe55 1612 spin_lock_irqsave(sc->lock, flags);
2c26c9e6
PZ
1613 sc->reset = 0;
1614 tasklet_schedule(&sc->tasklet);
a69228de 1615 list_for_each_entry(lun, &sc->luns, link) {
2c26c9e6
PZ
1616 blk_start_queue(lun->disk->queue);
1617 }
1618 wake_up(&sc->reset_wait);
65b4fe55 1619 spin_unlock_irqrestore(sc->lock, flags);
2c26c9e6
PZ
1620}
1621
1da177e4
LT
1622/*
1623 * This is called from a process context.
1624 */
f4800078 1625static void ub_revalidate(struct ub_dev *sc, struct ub_lun *lun)
1da177e4
LT
1626{
1627
f4800078 1628 lun->readonly = 0; /* XXX Query this from the device */
1da177e4 1629
f4800078
PZ
1630 lun->capacity.nsec = 0;
1631 lun->capacity.bsize = 512;
1632 lun->capacity.bshift = 0;
1da177e4 1633
f4800078 1634 if (ub_sync_tur(sc, lun) != 0)
1da177e4 1635 return; /* Not ready */
f4800078 1636 lun->changed = 0;
1da177e4 1637
f4800078 1638 if (ub_sync_read_cap(sc, lun, &lun->capacity) != 0) {
1da177e4
LT
1639 /*
1640 * The retry here means something is wrong, either with the
1641 * device, with the transport, or with our code.
1642 * We keep this because sd.c has retries for capacity.
1643 */
f4800078
PZ
1644 if (ub_sync_read_cap(sc, lun, &lun->capacity) != 0) {
1645 lun->capacity.nsec = 0;
1646 lun->capacity.bsize = 512;
1647 lun->capacity.bshift = 0;
1da177e4
LT
1648 }
1649 }
1650}
1651
1652/*
1653 * The open funcion.
1654 * This is mostly needed to keep refcounting, but also to support
1655 * media checks on removable media drives.
1656 */
1657static int ub_bd_open(struct inode *inode, struct file *filp)
1658{
1659 struct gendisk *disk = inode->i_bdev->bd_disk;
41fea55e
PZ
1660 struct ub_lun *lun = disk->private_data;
1661 struct ub_dev *sc = lun->udev;
1da177e4
LT
1662 unsigned long flags;
1663 int rc;
1664
1da177e4
LT
1665 spin_lock_irqsave(&ub_lock, flags);
1666 if (atomic_read(&sc->poison)) {
1667 spin_unlock_irqrestore(&ub_lock, flags);
1668 return -ENXIO;
1669 }
1670 sc->openc++;
1671 spin_unlock_irqrestore(&ub_lock, flags);
1672
f4800078 1673 if (lun->removable || lun->readonly)
1da177e4
LT
1674 check_disk_change(inode->i_bdev);
1675
1676 /*
1677 * The sd.c considers ->media_present and ->changed not equivalent,
1678 * under some pretty murky conditions (a failure of READ CAPACITY).
1679 * We may need it one day.
1680 */
f4800078 1681 if (lun->removable && lun->changed && !(filp->f_flags & O_NDELAY)) {
1da177e4
LT
1682 rc = -ENOMEDIUM;
1683 goto err_open;
1684 }
1685
f4800078 1686 if (lun->readonly && (filp->f_mode & FMODE_WRITE)) {
1da177e4
LT
1687 rc = -EROFS;
1688 goto err_open;
1689 }
1690
1691 return 0;
1692
1693err_open:
1694 ub_put(sc);
1695 return rc;
1696}
1697
1698/*
1699 */
1700static int ub_bd_release(struct inode *inode, struct file *filp)
1701{
1702 struct gendisk *disk = inode->i_bdev->bd_disk;
f4800078
PZ
1703 struct ub_lun *lun = disk->private_data;
1704 struct ub_dev *sc = lun->udev;
1da177e4
LT
1705
1706 ub_put(sc);
1707 return 0;
1708}
1709
1710/*
1711 * The ioctl interface.
1712 */
1713static int ub_bd_ioctl(struct inode *inode, struct file *filp,
1714 unsigned int cmd, unsigned long arg)
1715{
1716 struct gendisk *disk = inode->i_bdev->bd_disk;
1717 void __user *usermem = (void __user *) arg;
1718
45e79a3a 1719 return scsi_cmd_ioctl(filp, disk->queue, disk, cmd, usermem);
1da177e4
LT
1720}
1721
1722/*
1723 * This is called once a new disk was seen by the block layer or by ub_probe().
1724 * The main onjective here is to discover the features of the media such as
1725 * the capacity, read-only status, etc. USB storage generally does not
1726 * need to be spun up, but if we needed it, this would be the place.
1727 *
1728 * This call can sleep.
1729 *
1730 * The return code is not used.
1731 */
1732static int ub_bd_revalidate(struct gendisk *disk)
1733{
f4800078
PZ
1734 struct ub_lun *lun = disk->private_data;
1735
1736 ub_revalidate(lun->udev, lun);
1da177e4
LT
1737
1738 /* XXX Support sector size switching like in sr.c */
f4800078
PZ
1739 blk_queue_hardsect_size(disk->queue, lun->capacity.bsize);
1740 set_capacity(disk, lun->capacity.nsec);
1741 // set_disk_ro(sdkp->disk, lun->readonly);
1da177e4
LT
1742
1743 return 0;
1744}
1745
1746/*
1747 * The check is called by the block layer to verify if the media
1748 * is still available. It is supposed to be harmless, lightweight and
1749 * non-intrusive in case the media was not changed.
1750 *
1751 * This call can sleep.
1752 *
1753 * The return code is bool!
1754 */
1755static int ub_bd_media_changed(struct gendisk *disk)
1756{
f4800078 1757 struct ub_lun *lun = disk->private_data;
1da177e4 1758
f4800078 1759 if (!lun->removable)
1da177e4
LT
1760 return 0;
1761
1762 /*
1763 * We clean checks always after every command, so this is not
1764 * as dangerous as it looks. If the TEST_UNIT_READY fails here,
1765 * the device is actually not ready with operator or software
1766 * intervention required. One dangerous item might be a drive which
1767 * spins itself down, and come the time to write dirty pages, this
1768 * will fail, then block layer discards the data. Since we never
1769 * spin drives up, such devices simply cannot be used with ub anyway.
1770 */
f4800078
PZ
1771 if (ub_sync_tur(lun->udev, lun) != 0) {
1772 lun->changed = 1;
1da177e4
LT
1773 return 1;
1774 }
1775
f4800078 1776 return lun->changed;
1da177e4
LT
1777}
1778
1779static struct block_device_operations ub_bd_fops = {
1780 .owner = THIS_MODULE,
1781 .open = ub_bd_open,
1782 .release = ub_bd_release,
1783 .ioctl = ub_bd_ioctl,
1784 .media_changed = ub_bd_media_changed,
1785 .revalidate_disk = ub_bd_revalidate,
1786};
1787
1788/*
1789 * Common ->done routine for commands executed synchronously.
1790 */
1791static void ub_probe_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1792{
1793 struct completion *cop = cmd->back;
1794 complete(cop);
1795}
1796
1797/*
1798 * Test if the device has a check condition on it, synchronously.
1799 */
f4800078 1800static int ub_sync_tur(struct ub_dev *sc, struct ub_lun *lun)
1da177e4
LT
1801{
1802 struct ub_scsi_cmd *cmd;
1803 enum { ALLOC_SIZE = sizeof(struct ub_scsi_cmd) };
1804 unsigned long flags;
1805 struct completion compl;
1806 int rc;
1807
1808 init_completion(&compl);
1809
1810 rc = -ENOMEM;
29da7937 1811 if ((cmd = kzalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
1da177e4 1812 goto err_alloc;
1da177e4
LT
1813
1814 cmd->cdb[0] = TEST_UNIT_READY;
1815 cmd->cdb_len = 6;
1816 cmd->dir = UB_DIR_NONE;
1817 cmd->state = UB_CMDST_INIT;
f4800078 1818 cmd->lun = lun; /* This may be NULL, but that's ok */
1da177e4
LT
1819 cmd->done = ub_probe_done;
1820 cmd->back = &compl;
1821
65b4fe55 1822 spin_lock_irqsave(sc->lock, flags);
1da177e4
LT
1823 cmd->tag = sc->tagcnt++;
1824
1825 rc = ub_submit_scsi(sc, cmd);
65b4fe55 1826 spin_unlock_irqrestore(sc->lock, flags);
1da177e4 1827
b5600339 1828 if (rc != 0)
1da177e4 1829 goto err_submit;
1da177e4
LT
1830
1831 wait_for_completion(&compl);
1832
1833 rc = cmd->error;
1834
1835 if (rc == -EIO && cmd->key != 0) /* Retries for benh's key */
1836 rc = cmd->key;
1837
1838err_submit:
1839 kfree(cmd);
1840err_alloc:
1841 return rc;
1842}
1843
1844/*
1845 * Read the SCSI capacity synchronously (for probing).
1846 */
f4800078
PZ
1847static int ub_sync_read_cap(struct ub_dev *sc, struct ub_lun *lun,
1848 struct ub_capacity *ret)
1da177e4
LT
1849{
1850 struct ub_scsi_cmd *cmd;
a1cf96ef 1851 struct scatterlist *sg;
1da177e4
LT
1852 char *p;
1853 enum { ALLOC_SIZE = sizeof(struct ub_scsi_cmd) + 8 };
1854 unsigned long flags;
1855 unsigned int bsize, shift;
1856 unsigned long nsec;
1857 struct completion compl;
1858 int rc;
1859
1860 init_completion(&compl);
1861
1862 rc = -ENOMEM;
29da7937 1863 if ((cmd = kzalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
1da177e4 1864 goto err_alloc;
1da177e4
LT
1865 p = (char *)cmd + sizeof(struct ub_scsi_cmd);
1866
1867 cmd->cdb[0] = 0x25;
1868 cmd->cdb_len = 10;
1869 cmd->dir = UB_DIR_READ;
1870 cmd->state = UB_CMDST_INIT;
a1cf96ef
PZ
1871 cmd->nsg = 1;
1872 sg = &cmd->sgv[0];
4f33a9d9 1873 sg_init_table(sg, UB_MAX_REQ_SG);
642f1490 1874 sg_set_page(sg, virt_to_page(p), 8, (unsigned long)p & (PAGE_SIZE-1));
1da177e4 1875 cmd->len = 8;
f4800078 1876 cmd->lun = lun;
1da177e4
LT
1877 cmd->done = ub_probe_done;
1878 cmd->back = &compl;
1879
65b4fe55 1880 spin_lock_irqsave(sc->lock, flags);
1da177e4
LT
1881 cmd->tag = sc->tagcnt++;
1882
1883 rc = ub_submit_scsi(sc, cmd);
65b4fe55 1884 spin_unlock_irqrestore(sc->lock, flags);
1da177e4 1885
b5600339 1886 if (rc != 0)
1da177e4 1887 goto err_submit;
1da177e4
LT
1888
1889 wait_for_completion(&compl);
1890
1891 if (cmd->error != 0) {
1da177e4
LT
1892 rc = -EIO;
1893 goto err_read;
1894 }
1895 if (cmd->act_len != 8) {
1da177e4
LT
1896 rc = -EIO;
1897 goto err_read;
1898 }
1899
1900 /* sd.c special-cases sector size of 0 to mean 512. Needed? Safe? */
1901 nsec = be32_to_cpu(*(__be32 *)p) + 1;
1902 bsize = be32_to_cpu(*(__be32 *)(p + 4));
1903 switch (bsize) {
1904 case 512: shift = 0; break;
1905 case 1024: shift = 1; break;
1906 case 2048: shift = 2; break;
1907 case 4096: shift = 3; break;
1908 default:
1da177e4
LT
1909 rc = -EDOM;
1910 goto err_inv_bsize;
1911 }
1912
1913 ret->bsize = bsize;
1914 ret->bshift = shift;
1915 ret->nsec = nsec << shift;
1916 rc = 0;
1917
1918err_inv_bsize:
1919err_read:
1920err_submit:
1921 kfree(cmd);
1922err_alloc:
1923 return rc;
1924}
1925
1926/*
1927 */
7d12e780 1928static void ub_probe_urb_complete(struct urb *urb)
1da177e4
LT
1929{
1930 struct completion *cop = urb->context;
1931 complete(cop);
1932}
1933
1934static void ub_probe_timeout(unsigned long arg)
1935{
1936 struct completion *cop = (struct completion *) arg;
1937 complete(cop);
1938}
1939
2c2e4a2e
PZ
1940/*
1941 * Reset with a Bulk reset.
1942 */
1943static int ub_sync_reset(struct ub_dev *sc)
1944{
1945 int ifnum = sc->intf->cur_altsetting->desc.bInterfaceNumber;
1946 struct usb_ctrlrequest *cr;
1947 struct completion compl;
1948 struct timer_list timer;
1949 int rc;
1950
1951 init_completion(&compl);
1952
1953 cr = &sc->work_cr;
1954 cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE;
1955 cr->bRequest = US_BULK_RESET_REQUEST;
1956 cr->wValue = cpu_to_le16(0);
1957 cr->wIndex = cpu_to_le16(ifnum);
1958 cr->wLength = cpu_to_le16(0);
1959
1960 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
1961 (unsigned char*) cr, NULL, 0, ub_probe_urb_complete, &compl);
2c2e4a2e
PZ
1962
1963 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0) {
1964 printk(KERN_WARNING
1965 "%s: Unable to submit a bulk reset (%d)\n", sc->name, rc);
1966 return rc;
1967 }
1968
1969 init_timer(&timer);
1970 timer.function = ub_probe_timeout;
1971 timer.data = (unsigned long) &compl;
1972 timer.expires = jiffies + UB_CTRL_TIMEOUT;
1973 add_timer(&timer);
1974
1975 wait_for_completion(&compl);
1976
1977 del_timer_sync(&timer);
1978 usb_kill_urb(&sc->work_urb);
1979
1980 return sc->work_urb.status;
1981}
1982
f4800078
PZ
1983/*
1984 * Get number of LUNs by the way of Bulk GetMaxLUN command.
1985 */
1986static int ub_sync_getmaxlun(struct ub_dev *sc)
1987{
1988 int ifnum = sc->intf->cur_altsetting->desc.bInterfaceNumber;
1989 unsigned char *p;
1990 enum { ALLOC_SIZE = 1 };
1991 struct usb_ctrlrequest *cr;
1992 struct completion compl;
1993 struct timer_list timer;
1994 int nluns;
1995 int rc;
1996
1997 init_completion(&compl);
1998
1999 rc = -ENOMEM;
2000 if ((p = kmalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
2001 goto err_alloc;
2002 *p = 55;
2003
2004 cr = &sc->work_cr;
2005 cr->bRequestType = USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE;
2006 cr->bRequest = US_BULK_GET_MAX_LUN;
2007 cr->wValue = cpu_to_le16(0);
2008 cr->wIndex = cpu_to_le16(ifnum);
2009 cr->wLength = cpu_to_le16(1);
2010
2011 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->recv_ctrl_pipe,
2012 (unsigned char*) cr, p, 1, ub_probe_urb_complete, &compl);
f4800078 2013
b5600339 2014 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0)
f4800078 2015 goto err_submit;
f4800078
PZ
2016
2017 init_timer(&timer);
2018 timer.function = ub_probe_timeout;
2019 timer.data = (unsigned long) &compl;
2020 timer.expires = jiffies + UB_CTRL_TIMEOUT;
2021 add_timer(&timer);
2022
2023 wait_for_completion(&compl);
2024
2025 del_timer_sync(&timer);
2026 usb_kill_urb(&sc->work_urb);
2027
b5600339 2028 if ((rc = sc->work_urb.status) < 0)
64bd8453 2029 goto err_io;
64bd8453 2030
f4800078 2031 if (sc->work_urb.actual_length != 1) {
f4800078
PZ
2032 nluns = 0;
2033 } else {
2034 if ((nluns = *p) == 55) {
2035 nluns = 0;
2036 } else {
2037 /* GetMaxLUN returns the maximum LUN number */
2038 nluns += 1;
2039 if (nluns > UB_MAX_LUNS)
2040 nluns = UB_MAX_LUNS;
2041 }
f4800078
PZ
2042 }
2043
2044 kfree(p);
2045 return nluns;
2046
64bd8453 2047err_io:
f4800078
PZ
2048err_submit:
2049 kfree(p);
2050err_alloc:
2051 return rc;
2052}
2053
1da177e4
LT
2054/*
2055 * Clear initial stalls.
2056 */
2057static int ub_probe_clear_stall(struct ub_dev *sc, int stalled_pipe)
2058{
2059 int endp;
2060 struct usb_ctrlrequest *cr;
2061 struct completion compl;
2062 struct timer_list timer;
2063 int rc;
2064
2065 init_completion(&compl);
2066
2067 endp = usb_pipeendpoint(stalled_pipe);
2068 if (usb_pipein (stalled_pipe))
2069 endp |= USB_DIR_IN;
2070
2071 cr = &sc->work_cr;
2072 cr->bRequestType = USB_RECIP_ENDPOINT;
2073 cr->bRequest = USB_REQ_CLEAR_FEATURE;
2074 cr->wValue = cpu_to_le16(USB_ENDPOINT_HALT);
2075 cr->wIndex = cpu_to_le16(endp);
2076 cr->wLength = cpu_to_le16(0);
2077
2078 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
2079 (unsigned char*) cr, NULL, 0, ub_probe_urb_complete, &compl);
1da177e4
LT
2080
2081 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0) {
2082 printk(KERN_WARNING
2083 "%s: Unable to submit a probe clear (%d)\n", sc->name, rc);
2084 return rc;
2085 }
2086
2087 init_timer(&timer);
2088 timer.function = ub_probe_timeout;
2089 timer.data = (unsigned long) &compl;
2090 timer.expires = jiffies + UB_CTRL_TIMEOUT;
2091 add_timer(&timer);
2092
2093 wait_for_completion(&compl);
2094
2095 del_timer_sync(&timer);
2096 usb_kill_urb(&sc->work_urb);
2097
2098 /* reset the endpoint toggle */
2099 usb_settoggle(sc->dev, endp, usb_pipeout(sc->last_pipe), 0);
2100
2101 return 0;
2102}
2103
2104/*
2105 * Get the pipe settings.
2106 */
2107static int ub_get_pipes(struct ub_dev *sc, struct usb_device *dev,
2108 struct usb_interface *intf)
2109{
2110 struct usb_host_interface *altsetting = intf->cur_altsetting;
2111 struct usb_endpoint_descriptor *ep_in = NULL;
2112 struct usb_endpoint_descriptor *ep_out = NULL;
2113 struct usb_endpoint_descriptor *ep;
2114 int i;
2115
2116 /*
2117 * Find the endpoints we need.
2118 * We are expecting a minimum of 2 endpoints - in and out (bulk).
2119 * We will ignore any others.
2120 */
2121 for (i = 0; i < altsetting->desc.bNumEndpoints; i++) {
2122 ep = &altsetting->endpoint[i].desc;
2123
2124 /* Is it a BULK endpoint? */
2125 if ((ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
2126 == USB_ENDPOINT_XFER_BULK) {
2127 /* BULK in or out? */
643616e6
PZ
2128 if (ep->bEndpointAddress & USB_DIR_IN) {
2129 if (ep_in == NULL)
2130 ep_in = ep;
2131 } else {
2132 if (ep_out == NULL)
2133 ep_out = ep;
2134 }
1da177e4
LT
2135 }
2136 }
2137
2138 if (ep_in == NULL || ep_out == NULL) {
f4800078
PZ
2139 printk(KERN_NOTICE "%s: failed endpoint check\n",
2140 sc->name);
2c26c9e6 2141 return -ENODEV;
1da177e4
LT
2142 }
2143
2144 /* Calculate and store the pipe values */
2145 sc->send_ctrl_pipe = usb_sndctrlpipe(dev, 0);
2146 sc->recv_ctrl_pipe = usb_rcvctrlpipe(dev, 0);
2147 sc->send_bulk_pipe = usb_sndbulkpipe(dev,
2148 ep_out->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
2149 sc->recv_bulk_pipe = usb_rcvbulkpipe(dev,
2150 ep_in->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
2151
2152 return 0;
2153}
2154
2155/*
2156 * Probing is done in the process context, which allows us to cheat
2157 * and not to build a state machine for the discovery.
2158 */
2159static int ub_probe(struct usb_interface *intf,
2160 const struct usb_device_id *dev_id)
2161{
2162 struct ub_dev *sc;
f4800078 2163 int nluns;
1da177e4
LT
2164 int rc;
2165 int i;
2166
a00828e9
PZ
2167 if (usb_usual_check_type(dev_id, USB_US_TYPE_UB))
2168 return -ENXIO;
2169
1da177e4 2170 rc = -ENOMEM;
29da7937 2171 if ((sc = kzalloc(sizeof(struct ub_dev), GFP_KERNEL)) == NULL)
1da177e4 2172 goto err_core;
65b4fe55 2173 sc->lock = ub_next_lock();
f4800078 2174 INIT_LIST_HEAD(&sc->luns);
1da177e4
LT
2175 usb_init_urb(&sc->work_urb);
2176 tasklet_init(&sc->tasklet, ub_scsi_action, (unsigned long)sc);
2177 atomic_set(&sc->poison, 0);
c4028958 2178 INIT_WORK(&sc->reset_work, ub_reset_task);
2c26c9e6 2179 init_waitqueue_head(&sc->reset_wait);
1da177e4
LT
2180
2181 init_timer(&sc->work_timer);
2182 sc->work_timer.data = (unsigned long) sc;
2183 sc->work_timer.function = ub_urb_timeout;
2184
2185 ub_init_completion(&sc->work_done);
2186 sc->work_done.done = 1; /* A little yuk, but oh well... */
2187
1da177e4
LT
2188 sc->dev = interface_to_usbdev(intf);
2189 sc->intf = intf;
2190 // sc->ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
1da177e4
LT
2191 usb_set_intfdata(intf, sc);
2192 usb_get_dev(sc->dev);
77ef6c4d
PZ
2193 /*
2194 * Since we give the interface struct to the block level through
2195 * disk->driverfs_dev, we have to pin it. Otherwise, block_uevent
2196 * oopses on close after a disconnect (kernels 2.6.16 and up).
2197 */
2198 usb_get_intf(sc->intf);
1da177e4 2199
f4800078
PZ
2200 snprintf(sc->name, 12, DRV_NAME "(%d.%d)",
2201 sc->dev->bus->busnum, sc->dev->devnum);
2202
1da177e4
LT
2203 /* XXX Verify that we can handle the device (from descriptors) */
2204
2c26c9e6
PZ
2205 if (ub_get_pipes(sc, sc->dev, intf) != 0)
2206 goto err_dev_desc;
1da177e4 2207
1da177e4
LT
2208 /*
2209 * At this point, all USB initialization is done, do upper layer.
2210 * We really hate halfway initialized structures, so from the
2211 * invariants perspective, this ub_dev is fully constructed at
2212 * this point.
2213 */
2214
2215 /*
2216 * This is needed to clear toggles. It is a problem only if we do
2217 * `rmmod ub && modprobe ub` without disconnects, but we like that.
2218 */
c6c88834 2219#if 0 /* iPod Mini fails if we do this (big white iPod works) */
1da177e4
LT
2220 ub_probe_clear_stall(sc, sc->recv_bulk_pipe);
2221 ub_probe_clear_stall(sc, sc->send_bulk_pipe);
c6c88834 2222#endif
1da177e4
LT
2223
2224 /*
2225 * The way this is used by the startup code is a little specific.
2226 * A SCSI check causes a USB stall. Our common case code sees it
2227 * and clears the check, after which the device is ready for use.
2228 * But if a check was not present, any command other than
2229 * TEST_UNIT_READY ends with a lockup (including REQUEST_SENSE).
2230 *
2231 * If we neglect to clear the SCSI check, the first real command fails
2232 * (which is the capacity readout). We clear that and retry, but why
2233 * causing spurious retries for no reason.
2234 *
2235 * Revalidation may start with its own TEST_UNIT_READY, but that one
2236 * has to succeed, so we clear checks with an additional one here.
2237 * In any case it's not our business how revaliadation is implemented.
2238 */
b5600339 2239 for (i = 0; i < 3; i++) { /* Retries for the schwag key from KS'04 */
f4800078 2240 if ((rc = ub_sync_tur(sc, NULL)) <= 0) break;
1da177e4
LT
2241 if (rc != 0x6) break;
2242 msleep(10);
2243 }
2244
f4800078
PZ
2245 nluns = 1;
2246 for (i = 0; i < 3; i++) {
11a223ae 2247 if ((rc = ub_sync_getmaxlun(sc)) < 0)
f4800078 2248 break;
f4800078
PZ
2249 if (rc != 0) {
2250 nluns = rc;
2251 break;
2252 }
9f793d2c 2253 msleep(100);
f4800078 2254 }
1da177e4 2255
f4800078
PZ
2256 for (i = 0; i < nluns; i++) {
2257 ub_probe_lun(sc, i);
2258 }
2259 return 0;
2260
2c26c9e6 2261err_dev_desc:
f4800078 2262 usb_set_intfdata(intf, NULL);
77ef6c4d 2263 usb_put_intf(sc->intf);
f4800078
PZ
2264 usb_put_dev(sc->dev);
2265 kfree(sc);
2266err_core:
2267 return rc;
2268}
2269
2270static int ub_probe_lun(struct ub_dev *sc, int lnum)
2271{
2272 struct ub_lun *lun;
165125e1 2273 struct request_queue *q;
f4800078
PZ
2274 struct gendisk *disk;
2275 int rc;
2276
2277 rc = -ENOMEM;
29da7937 2278 if ((lun = kzalloc(sizeof(struct ub_lun), GFP_KERNEL)) == NULL)
f4800078 2279 goto err_alloc;
f4800078
PZ
2280 lun->num = lnum;
2281
2282 rc = -ENOSR;
2283 if ((lun->id = ub_id_get()) == -1)
2284 goto err_id;
2285
2286 lun->udev = sc;
f4800078
PZ
2287
2288 snprintf(lun->name, 16, DRV_NAME "%c(%d.%d.%d)",
2289 lun->id + 'a', sc->dev->bus->busnum, sc->dev->devnum, lun->num);
2290
2291 lun->removable = 1; /* XXX Query this from the device */
2292 lun->changed = 1; /* ub_revalidate clears only */
f4800078 2293 ub_revalidate(sc, lun);
1da177e4 2294
1da177e4 2295 rc = -ENOMEM;
4fb729f5 2296 if ((disk = alloc_disk(UB_PARTS_PER_LUN)) == NULL)
1da177e4
LT
2297 goto err_diskalloc;
2298
f4800078 2299 sprintf(disk->disk_name, DRV_NAME "%c", lun->id + 'a');
1da177e4 2300 disk->major = UB_MAJOR;
4fb729f5 2301 disk->first_minor = lun->id * UB_PARTS_PER_LUN;
1da177e4 2302 disk->fops = &ub_bd_fops;
f4800078 2303 disk->private_data = lun;
64bd8453 2304 disk->driverfs_dev = &sc->intf->dev;
1da177e4
LT
2305
2306 rc = -ENOMEM;
65b4fe55 2307 if ((q = blk_init_queue(ub_request_fn, sc->lock)) == NULL)
1da177e4
LT
2308 goto err_blkqinit;
2309
2310 disk->queue = q;
2311
f4800078 2312 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
1da177e4
LT
2313 blk_queue_max_hw_segments(q, UB_MAX_REQ_SG);
2314 blk_queue_max_phys_segments(q, UB_MAX_REQ_SG);
f4800078 2315 blk_queue_segment_boundary(q, 0xffffffff); /* Dubious. */
1da177e4 2316 blk_queue_max_sectors(q, UB_MAX_SECTORS);
f4800078 2317 blk_queue_hardsect_size(q, lun->capacity.bsize);
1da177e4 2318
688e9fb1 2319 lun->disk = disk;
f4800078 2320 q->queuedata = lun;
688e9fb1 2321 list_add(&lun->link, &sc->luns);
1da177e4 2322
f4800078
PZ
2323 set_capacity(disk, lun->capacity.nsec);
2324 if (lun->removable)
1da177e4
LT
2325 disk->flags |= GENHD_FL_REMOVABLE;
2326
2327 add_disk(disk);
2328
2329 return 0;
2330
2331err_blkqinit:
2332 put_disk(disk);
2333err_diskalloc:
f4800078 2334 ub_id_put(lun->id);
1da177e4 2335err_id:
f4800078
PZ
2336 kfree(lun);
2337err_alloc:
1da177e4
LT
2338 return rc;
2339}
2340
2341static void ub_disconnect(struct usb_interface *intf)
2342{
2343 struct ub_dev *sc = usb_get_intfdata(intf);
f4800078 2344 struct ub_lun *lun;
1da177e4
LT
2345 unsigned long flags;
2346
2347 /*
2348 * Prevent ub_bd_release from pulling the rug from under us.
2349 * XXX This is starting to look like a kref.
2350 * XXX Why not to take this ref at probe time?
2351 */
2352 spin_lock_irqsave(&ub_lock, flags);
2353 sc->openc++;
2354 spin_unlock_irqrestore(&ub_lock, flags);
2355
2356 /*
2357 * Fence stall clearnings, operations triggered by unlinkings and so on.
2358 * We do not attempt to unlink any URBs, because we do not trust the
2359 * unlink paths in HC drivers. Also, we get -84 upon disconnect anyway.
2360 */
2361 atomic_set(&sc->poison, 1);
2362
2c26c9e6
PZ
2363 /*
2364 * Wait for reset to end, if any.
2365 */
2366 wait_event(sc->reset_wait, !sc->reset);
2367
1da177e4
LT
2368 /*
2369 * Blow away queued commands.
2370 *
2371 * Actually, this never works, because before we get here
2372 * the HCD terminates outstanding URB(s). It causes our
2373 * SCSI command queue to advance, commands fail to submit,
2374 * and the whole queue drains. So, we just use this code to
2375 * print warnings.
2376 */
65b4fe55 2377 spin_lock_irqsave(sc->lock, flags);
1da177e4
LT
2378 {
2379 struct ub_scsi_cmd *cmd;
2380 int cnt = 0;
2c26c9e6 2381 while ((cmd = ub_cmdq_peek(sc)) != NULL) {
1da177e4
LT
2382 cmd->error = -ENOTCONN;
2383 cmd->state = UB_CMDST_DONE;
1da177e4
LT
2384 ub_cmdq_pop(sc);
2385 (*cmd->done)(sc, cmd);
2386 cnt++;
2387 }
2388 if (cnt != 0) {
2389 printk(KERN_WARNING "%s: "
2390 "%d was queued after shutdown\n", sc->name, cnt);
2391 }
2392 }
65b4fe55 2393 spin_unlock_irqrestore(sc->lock, flags);
1da177e4
LT
2394
2395 /*
2396 * Unregister the upper layer.
2397 */
a69228de 2398 list_for_each_entry(lun, &sc->luns, link) {
688e9fb1 2399 del_gendisk(lun->disk);
f4800078
PZ
2400 /*
2401 * I wish I could do:
2402 * set_bit(QUEUE_FLAG_DEAD, &q->queue_flags);
2403 * As it is, we rely on our internal poisoning and let
2404 * the upper levels to spin furiously failing all the I/O.
2405 */
2406 }
1da177e4
LT
2407
2408 /*
1da177e4
LT
2409 * Testing for -EINPROGRESS is always a bug, so we are bending
2410 * the rules a little.
2411 */
65b4fe55 2412 spin_lock_irqsave(sc->lock, flags);
1da177e4
LT
2413 if (sc->work_urb.status == -EINPROGRESS) { /* janitors: ignore */
2414 printk(KERN_WARNING "%s: "
2415 "URB is active after disconnect\n", sc->name);
2416 }
65b4fe55 2417 spin_unlock_irqrestore(sc->lock, flags);
1da177e4
LT
2418
2419 /*
2420 * There is virtually no chance that other CPU runs times so long
2421 * after ub_urb_complete should have called del_timer, but only if HCD
2422 * didn't forget to deliver a callback on unlink.
2423 */
2424 del_timer_sync(&sc->work_timer);
2425
2426 /*
2427 * At this point there must be no commands coming from anyone
2428 * and no URBs left in transit.
2429 */
2430
1da177e4
LT
2431 ub_put(sc);
2432}
2433
2434static struct usb_driver ub_driver = {
1da177e4
LT
2435 .name = "ub",
2436 .probe = ub_probe,
2437 .disconnect = ub_disconnect,
2438 .id_table = ub_usb_ids,
2439};
2440
2441static int __init ub_init(void)
2442{
2443 int rc;
65b4fe55
PZ
2444 int i;
2445
2446 for (i = 0; i < UB_QLOCK_NUM; i++)
2447 spin_lock_init(&ub_qlockv[i]);
1da177e4 2448
1da177e4
LT
2449 if ((rc = register_blkdev(UB_MAJOR, DRV_NAME)) != 0)
2450 goto err_regblkdev;
1da177e4
LT
2451
2452 if ((rc = usb_register(&ub_driver)) != 0)
2453 goto err_register;
2454
a00828e9 2455 usb_usual_set_present(USB_US_TYPE_UB);
1da177e4
LT
2456 return 0;
2457
2458err_register:
1da177e4
LT
2459 unregister_blkdev(UB_MAJOR, DRV_NAME);
2460err_regblkdev:
2461 return rc;
2462}
2463
2464static void __exit ub_exit(void)
2465{
2466 usb_deregister(&ub_driver);
2467
1da177e4 2468 unregister_blkdev(UB_MAJOR, DRV_NAME);
a00828e9 2469 usb_usual_clear_present(USB_US_TYPE_UB);
1da177e4
LT
2470}
2471
2472module_init(ub_init);
2473module_exit(ub_exit);
2474
2475MODULE_LICENSE("GPL");