blob: 102ed52d0e0f8198e093ab5b9eb7a20d6efab694 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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)
Pete Zaitcevef45cb62008-04-08 17:41:51 -070011 * -- Return sense now that rq allows it (we always auto-sense anyway).
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * -- 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * -- verify the 13 conditions and do bulk resets
Pete Zaitcevba6abf12005-07-30 22:38:30 -070015 * -- highmem
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * -- move top_sense and work_bcs into separate allocations (if they survive)
17 * for cache purists and esoteric architectures.
Pete Zaitcevba6abf12005-07-30 22:38:30 -070018 * -- Allocate structure for LUN 0 before the first ub_sync_tur, avoid NULL. ?
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * -- prune comments, they are too volumnous
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * -- Resove XXX's
Pete Zaitcev1872bce2005-07-27 11:43:51 -070021 * -- CLEAR, CLR2STS, CLRRS seem to be ripe for refactoring.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/usb.h>
Pete Zaitceva00828e2005-10-22 20:15:09 -070026#include <linux/usb_usual.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/timer.h>
Jens Axboe45711f12007-10-22 21:19:53 +020029#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +020031#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <scsi/scsi.h>
33
34#define DRV_NAME "ub"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#define UB_MAJOR 180
37
38/*
Pete Zaitcev1872bce2005-07-27 11:43:51 -070039 * The command state machine is the key model for understanding of this driver.
40 *
41 * The general rule is that all transitions are done towards the bottom
42 * of the diagram, thus preventing any loops.
43 *
44 * An exception to that is how the STAT state is handled. A counter allows it
45 * to be re-entered along the path marked with [C].
46 *
47 * +--------+
48 * ! INIT !
49 * +--------+
50 * !
51 * ub_scsi_cmd_start fails ->--------------------------------------\
52 * ! !
53 * V !
54 * +--------+ !
55 * ! CMD ! !
56 * +--------+ !
57 * ! +--------+ !
58 * was -EPIPE -->-------------------------------->! CLEAR ! !
59 * ! +--------+ !
60 * ! ! !
61 * was error -->------------------------------------- ! --------->\
62 * ! ! !
63 * /--<-- cmd->dir == NONE ? ! !
64 * ! ! ! !
65 * ! V ! !
66 * ! +--------+ ! !
67 * ! ! DATA ! ! !
68 * ! +--------+ ! !
69 * ! ! +---------+ ! !
70 * ! was -EPIPE -->--------------->! CLR2STS ! ! !
71 * ! ! +---------+ ! !
72 * ! ! ! ! !
73 * ! ! was error -->---- ! --------->\
74 * ! was error -->--------------------- ! ------------- ! --------->\
75 * ! ! ! ! !
76 * ! V ! ! !
77 * \--->+--------+ ! ! !
78 * ! STAT !<--------------------------/ ! !
79 * /--->+--------+ ! !
80 * ! ! ! !
81 * [C] was -EPIPE -->-----------\ ! !
82 * ! ! ! ! !
83 * +<---- len == 0 ! ! !
84 * ! ! ! ! !
85 * ! was error -->--------------------------------------!---------->\
86 * ! ! ! ! !
87 * +<---- bad CSW ! ! !
88 * +<---- bad tag ! ! !
89 * ! ! V ! !
90 * ! ! +--------+ ! !
91 * ! ! ! CLRRS ! ! !
92 * ! ! +--------+ ! !
93 * ! ! ! ! !
94 * \------- ! --------------------[C]--------\ ! !
95 * ! ! ! !
96 * cmd->error---\ +--------+ ! !
97 * ! +--------------->! SENSE !<----------/ !
98 * STAT_FAIL----/ +--------+ !
99 * ! ! V
100 * ! V +--------+
101 * \--------------------------------\--------------------->! DONE !
102 * +--------+
103 */
104
105/*
Pete Zaitcevf4800072005-05-01 16:05:40 -0700106 * This many LUNs per USB device.
107 * Every one of them takes a host, see UB_MAX_HOSTS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
Pete Zaitcev9f793d22005-06-06 13:54:59 -0700109#define UB_MAX_LUNS 9
Pete Zaitcevf4800072005-05-01 16:05:40 -0700110
111/*
112 */
113
Pete Zaitcev4fb729f2005-12-17 02:34:12 -0800114#define UB_PARTS_PER_LUN 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116#define UB_MAX_CDB_SIZE 16 /* Corresponds to Bulk */
117
118#define UB_SENSE_SIZE 18
119
120/*
121 */
122
123/* command block wrapper */
124struct bulk_cb_wrap {
125 __le32 Signature; /* contains 'USBC' */
126 u32 Tag; /* unique per command id */
127 __le32 DataTransferLength; /* size of data */
128 u8 Flags; /* direction in bit 0 */
Pete Zaitcevf4800072005-05-01 16:05:40 -0700129 u8 Lun; /* LUN */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 u8 Length; /* of of the CDB */
131 u8 CDB[UB_MAX_CDB_SIZE]; /* max command */
132};
133
134#define US_BULK_CB_WRAP_LEN 31
135#define US_BULK_CB_SIGN 0x43425355 /*spells out USBC */
136#define US_BULK_FLAG_IN 1
137#define US_BULK_FLAG_OUT 0
138
139/* command status wrapper */
140struct bulk_cs_wrap {
141 __le32 Signature; /* should = 'USBS' */
142 u32 Tag; /* same as original command */
143 __le32 Residue; /* amount not transferred */
144 u8 Status; /* see below */
145};
146
147#define US_BULK_CS_WRAP_LEN 13
148#define US_BULK_CS_SIGN 0x53425355 /* spells out 'USBS' */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#define US_BULK_STAT_OK 0
150#define US_BULK_STAT_FAIL 1
151#define US_BULK_STAT_PHASE 2
152
153/* bulk-only class specific requests */
154#define US_BULK_RESET_REQUEST 0xff
155#define US_BULK_GET_MAX_LUN 0xfe
156
157/*
158 */
159struct ub_dev;
160
Pete Zaitcev64bd8452005-09-22 00:48:29 -0700161#define UB_MAX_REQ_SG 9 /* cdrecord requires 32KB and maybe a header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define UB_MAX_SECTORS 64
163
164/*
165 * A second is more than enough for a 32K transfer (UB_MAX_SECTORS)
166 * even if a webcam hogs the bus, but some devices need time to spin up.
167 */
168#define UB_URB_TIMEOUT (HZ*2)
169#define UB_DATA_TIMEOUT (HZ*5) /* ZIP does spin-ups in the data phase */
170#define UB_STAT_TIMEOUT (HZ*5) /* Same spinups and eject for a dataless cmd. */
171#define UB_CTRL_TIMEOUT (HZ/2) /* 500ms ought to be enough to clear a stall */
172
173/*
174 * An instance of a SCSI command in transit.
175 */
176#define UB_DIR_NONE 0
177#define UB_DIR_READ 1
178#define UB_DIR_ILLEGAL2 2
179#define UB_DIR_WRITE 3
180
181#define UB_DIR_CHAR(c) (((c)==UB_DIR_WRITE)? 'w': \
182 (((c)==UB_DIR_READ)? 'r': 'n'))
183
184enum ub_scsi_cmd_state {
185 UB_CMDST_INIT, /* Initial state */
186 UB_CMDST_CMD, /* Command submitted */
187 UB_CMDST_DATA, /* Data phase */
188 UB_CMDST_CLR2STS, /* Clearing before requesting status */
189 UB_CMDST_STAT, /* Status phase */
190 UB_CMDST_CLEAR, /* Clearing a stall (halt, actually) */
Pete Zaitcev1872bce2005-07-27 11:43:51 -0700191 UB_CMDST_CLRRS, /* Clearing before retrying status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 UB_CMDST_SENSE, /* Sending Request Sense */
193 UB_CMDST_DONE /* Final state */
194};
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196struct ub_scsi_cmd {
197 unsigned char cdb[UB_MAX_CDB_SIZE];
198 unsigned char cdb_len;
199
200 unsigned char dir; /* 0 - none, 1 - read, 3 - write. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 enum ub_scsi_cmd_state state;
202 unsigned int tag;
203 struct ub_scsi_cmd *next;
204
205 int error; /* Return code - valid upon done */
206 unsigned int act_len; /* Return size */
207 unsigned char key, asc, ascq; /* May be valid if error==-EIO */
208
209 int stat_count; /* Retries getting status. */
Pete Zaitcev2c51ae72008-04-19 14:32:18 -0700210 unsigned int timeo; /* jiffies until rq->timeout changes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 unsigned int len; /* Requested length */
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700213 unsigned int current_sg;
214 unsigned int nsg; /* sgv[nsg] */
215 struct scatterlist sgv[UB_MAX_REQ_SG];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Pete Zaitcevf4800072005-05-01 16:05:40 -0700217 struct ub_lun *lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 void (*done)(struct ub_dev *, struct ub_scsi_cmd *);
219 void *back;
220};
221
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800222struct ub_request {
223 struct request *rq;
224 unsigned int current_try;
225 unsigned int nsg; /* sgv[nsg] */
226 struct scatterlist sgv[UB_MAX_REQ_SG];
227};
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*
230 */
231struct ub_capacity {
232 unsigned long nsec; /* Linux size - 512 byte sectors */
233 unsigned int bsize; /* Linux hardsect_size */
234 unsigned int bshift; /* Shift between 512 and hard sects */
235};
236
237/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * This is a direct take-off from linux/include/completion.h
239 * The difference is that I do not wait on this thing, just poll.
240 * When I want to wait (ub_probe), I just use the stock completion.
241 *
242 * Note that INIT_COMPLETION takes no lock. It is correct. But why
243 * in the bloody hell that thing takes struct instead of pointer to struct
244 * is quite beyond me. I just copied it from the stock completion.
245 */
246struct ub_completion {
247 unsigned int done;
248 spinlock_t lock;
249};
250
251static inline void ub_init_completion(struct ub_completion *x)
252{
253 x->done = 0;
254 spin_lock_init(&x->lock);
255}
256
257#define UB_INIT_COMPLETION(x) ((x).done = 0)
258
259static void ub_complete(struct ub_completion *x)
260{
261 unsigned long flags;
262
263 spin_lock_irqsave(&x->lock, flags);
264 x->done++;
265 spin_unlock_irqrestore(&x->lock, flags);
266}
267
268static int ub_is_completed(struct ub_completion *x)
269{
270 unsigned long flags;
271 int ret;
272
273 spin_lock_irqsave(&x->lock, flags);
274 ret = x->done;
275 spin_unlock_irqrestore(&x->lock, flags);
276 return ret;
277}
278
279/*
280 */
281struct ub_scsi_cmd_queue {
282 int qlen, qmax;
283 struct ub_scsi_cmd *head, *tail;
284};
285
286/*
Pete Zaitcevf4800072005-05-01 16:05:40 -0700287 * The block device instance (one per LUN).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
Pete Zaitcevf4800072005-05-01 16:05:40 -0700289struct ub_lun {
290 struct ub_dev *udev;
291 struct list_head link;
292 struct gendisk *disk;
293 int id; /* Host index */
294 int num; /* LUN number */
295 char name[16];
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 int changed; /* Media was changed */
298 int removable;
299 int readonly;
Pete Zaitcevf4800072005-05-01 16:05:40 -0700300
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800301 struct ub_request urq;
302
Pete Zaitcevf4800072005-05-01 16:05:40 -0700303 /* Use Ingo's mempool if or when we have more than one command. */
304 /*
305 * Currently we never need more than one command for the whole device.
306 * However, giving every LUN a command is a cheap and automatic way
307 * to enforce fairness between them.
308 */
309 int cmda[1];
310 struct ub_scsi_cmd cmdv[1];
311
312 struct ub_capacity capacity;
313};
314
315/*
316 * The USB device instance.
317 */
318struct ub_dev {
Pete Zaitcev65b4fe52005-12-28 14:22:17 -0800319 spinlock_t *lock;
Pete Zaitcevf4800072005-05-01 16:05:40 -0700320 atomic_t poison; /* The USB device is disconnected */
321 int openc; /* protected by ub_lock! */
322 /* kref is too implicit for our taste */
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800323 int reset; /* Reset is running */
Pete Zaitcev0da13c82008-04-19 14:42:49 -0700324 int bad_resid;
Pete Zaitcevf4800072005-05-01 16:05:40 -0700325 unsigned int tagcnt;
326 char name[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct usb_device *dev;
328 struct usb_interface *intf;
329
Pete Zaitcevf4800072005-05-01 16:05:40 -0700330 struct list_head luns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 unsigned int send_bulk_pipe; /* cached pipe values */
333 unsigned int recv_bulk_pipe;
334 unsigned int send_ctrl_pipe;
335 unsigned int recv_ctrl_pipe;
336
337 struct tasklet_struct tasklet;
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 struct ub_scsi_cmd_queue cmd_queue;
340 struct ub_scsi_cmd top_rqs_cmd; /* REQUEST SENSE */
341 unsigned char top_sense[UB_SENSE_SIZE];
342
343 struct ub_completion work_done;
344 struct urb work_urb;
345 struct timer_list work_timer;
346 int last_pipe; /* What might need clearing */
Pete Zaitcev1872bce2005-07-27 11:43:51 -0700347 __le32 signature; /* Learned signature */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct bulk_cb_wrap work_bcb;
349 struct bulk_cs_wrap work_bcs;
350 struct usb_ctrlrequest work_cr;
351
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800352 struct work_struct reset_work;
353 wait_queue_head_t reset_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354};
355
356/*
357 */
358static void ub_cleanup(struct ub_dev *sc);
Pete Zaitcev6c1eb8c2005-07-30 22:51:52 -0700359static int ub_request_fn_1(struct ub_lun *lun, struct request *rq);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800360static void ub_cmd_build_block(struct ub_dev *sc, struct ub_lun *lun,
361 struct ub_scsi_cmd *cmd, struct ub_request *urq);
362static void ub_cmd_build_packet(struct ub_dev *sc, struct ub_lun *lun,
363 struct ub_scsi_cmd *cmd, struct ub_request *urq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364static void ub_rw_cmd_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
Tejun Heo37551002009-05-19 18:33:04 +0900365static void ub_end_rq(struct request *rq, unsigned int status);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800366static int ub_rw_cmd_retry(struct ub_dev *sc, struct ub_lun *lun,
367 struct ub_request *urq, struct ub_scsi_cmd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static int ub_submit_scsi(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
David Howells7d12e782006-10-05 14:55:46 +0100369static void ub_urb_complete(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370static void ub_scsi_action(unsigned long _dev);
371static void ub_scsi_dispatch(struct ub_dev *sc);
372static void ub_scsi_urb_compl(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700373static void ub_data_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static void ub_state_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd, int rc);
Pete Zaitcev1872bce2005-07-27 11:43:51 -0700375static int __ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376static void ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
Pete Zaitcev1872bce2005-07-27 11:43:51 -0700377static void ub_state_stat_counted(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static void ub_state_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd);
379static int ub_submit_clear_stall(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
380 int stalled_pipe);
381static void ub_top_sense_done(struct ub_dev *sc, struct ub_scsi_cmd *scmd);
Pete Zaitcev2c2e4a22006-01-05 00:26:30 -0800382static void ub_reset_enter(struct ub_dev *sc, int try);
David Howellsc4028952006-11-22 14:57:56 +0000383static void ub_reset_task(struct work_struct *work);
Pete Zaitcevf4800072005-05-01 16:05:40 -0700384static int ub_sync_tur(struct ub_dev *sc, struct ub_lun *lun);
385static int ub_sync_read_cap(struct ub_dev *sc, struct ub_lun *lun,
386 struct ub_capacity *ret);
Pete Zaitcev2c2e4a22006-01-05 00:26:30 -0800387static int ub_sync_reset(struct ub_dev *sc);
388static int ub_probe_clear_stall(struct ub_dev *sc, int stalled_pipe);
Pete Zaitcevf4800072005-05-01 16:05:40 -0700389static int ub_probe_lun(struct ub_dev *sc, int lnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391/*
392 */
Pete Zaitceva00828e2005-10-22 20:15:09 -0700393#ifdef CONFIG_USB_LIBUSUAL
394
Alan Sterne6e244b2009-02-12 14:47:44 -0500395#define ub_usb_ids usb_storage_usb_ids
Pete Zaitceva00828e2005-10-22 20:15:09 -0700396#else
397
Márton Németh577cdf02010-01-10 13:39:39 +0100398static const struct usb_device_id ub_usb_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 { USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE, US_SC_SCSI, US_PR_BULK) },
400 { }
401};
402
403MODULE_DEVICE_TABLE(usb, ub_usb_ids);
Pete Zaitceva00828e2005-10-22 20:15:09 -0700404#endif /* CONFIG_USB_LIBUSUAL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406/*
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.
412 */
413#define UB_MAX_HOSTS 26
414static char ub_hostv[UB_MAX_HOSTS];
Pete Zaitcevf4800072005-05-01 16:05:40 -0700415
Pete Zaitcev65b4fe52005-12-28 14:22:17 -0800416#define UB_QLOCK_NUM 5
417static spinlock_t ub_qlockv[UB_QLOCK_NUM];
418static int ub_qlock_next = 0;
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420static DEFINE_SPINLOCK(ub_lock); /* Locks globals and ->openc */
421
422/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * The id allocator.
424 *
425 * This also stores the host for indexing by minor, which is somewhat dirty.
426 */
427static int ub_id_get(void)
428{
429 unsigned long flags;
430 int i;
431
432 spin_lock_irqsave(&ub_lock, flags);
433 for (i = 0; i < UB_MAX_HOSTS; i++) {
434 if (ub_hostv[i] == 0) {
435 ub_hostv[i] = 1;
436 spin_unlock_irqrestore(&ub_lock, flags);
437 return i;
438 }
439 }
440 spin_unlock_irqrestore(&ub_lock, flags);
441 return -1;
442}
443
444static void ub_id_put(int id)
445{
446 unsigned long flags;
447
448 if (id < 0 || id >= UB_MAX_HOSTS) {
449 printk(KERN_ERR DRV_NAME ": bad host ID %d\n", id);
450 return;
451 }
452
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);
457 return;
458 }
459 ub_hostv[id] = 0;
460 spin_unlock_irqrestore(&ub_lock, flags);
461}
462
463/*
Pete Zaitcev65b4fe52005-12-28 14:22:17 -0800464 * 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.
468 */
469static spinlock_t *ub_next_lock(void)
470{
471 unsigned long flags;
472 spinlock_t *ret;
473
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);
478 return ret;
479}
480
481/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * 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()]
488 */
489static void ub_put(struct ub_dev *sc)
490{
491 unsigned long flags;
492
493 spin_lock_irqsave(&ub_lock, flags);
494 --sc->openc;
495 if (sc->openc == 0 && atomic_read(&sc->poison)) {
496 spin_unlock_irqrestore(&ub_lock, flags);
497 ub_cleanup(sc);
498 } else {
499 spin_unlock_irqrestore(&ub_lock, flags);
500 }
501}
502
503/*
504 * Final cleanup and deallocation.
505 */
506static void ub_cleanup(struct ub_dev *sc)
507{
Pete Zaitcevf4800072005-05-01 16:05:40 -0700508 struct list_head *p;
509 struct ub_lun *lun;
Jens Axboe165125e2007-07-24 09:28:11 +0200510 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Pete Zaitcevf4800072005-05-01 16:05:40 -0700512 while (!list_empty(&sc->luns)) {
513 p = sc->luns.next;
514 lun = list_entry(p, struct ub_lun, link);
515 list_del(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Pete Zaitcevf4800072005-05-01 16:05:40 -0700517 /* 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);
520 /*
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.
527 */
528 /* disk->private_data = NULL; */
529 put_disk(lun->disk);
530 lun->disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Pete Zaitcevf4800072005-05-01 16:05:40 -0700532 ub_id_put(lun->id);
533 kfree(lun);
534 }
535
Pete Zaitcev77ef6c42006-05-03 00:16:00 -0700536 usb_set_intfdata(sc->intf, NULL);
537 usb_put_intf(sc->intf);
538 usb_put_dev(sc->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 kfree(sc);
540}
541
542/*
543 * The "command allocator".
544 */
Pete Zaitcevf4800072005-05-01 16:05:40 -0700545static struct ub_scsi_cmd *ub_get_cmd(struct ub_lun *lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 struct ub_scsi_cmd *ret;
548
Pete Zaitcevf4800072005-05-01 16:05:40 -0700549 if (lun->cmda[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return NULL;
Pete Zaitcevf4800072005-05-01 16:05:40 -0700551 ret = &lun->cmdv[0];
552 lun->cmda[0] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return ret;
554}
555
Pete Zaitcevf4800072005-05-01 16:05:40 -0700556static void ub_put_cmd(struct ub_lun *lun, struct ub_scsi_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Pete Zaitcevf4800072005-05-01 16:05:40 -0700558 if (cmd != &lun->cmdv[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 printk(KERN_WARNING "%s: releasing a foreign cmd %p\n",
Pete Zaitcevf4800072005-05-01 16:05:40 -0700560 lun->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return;
562 }
Pete Zaitcevf4800072005-05-01 16:05:40 -0700563 if (!lun->cmda[0]) {
564 printk(KERN_WARNING "%s: releasing a free cmd\n", lun->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return;
566 }
Pete Zaitcevf4800072005-05-01 16:05:40 -0700567 lun->cmda[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570/*
571 * The command queue.
572 */
573static void ub_cmdq_add(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
574{
575 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
576
577 if (t->qlen++ == 0) {
578 t->head = cmd;
579 t->tail = cmd;
580 } else {
581 t->tail->next = cmd;
582 t->tail = cmd;
583 }
584
585 if (t->qlen > t->qmax)
586 t->qmax = t->qlen;
587}
588
589static void ub_cmdq_insert(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
590{
591 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
592
593 if (t->qlen++ == 0) {
594 t->head = cmd;
595 t->tail = cmd;
596 } else {
597 cmd->next = t->head;
598 t->head = cmd;
599 }
600
601 if (t->qlen > t->qmax)
602 t->qmax = t->qlen;
603}
604
605static struct ub_scsi_cmd *ub_cmdq_pop(struct ub_dev *sc)
606{
607 struct ub_scsi_cmd_queue *t = &sc->cmd_queue;
608 struct ub_scsi_cmd *cmd;
609
610 if (t->qlen == 0)
611 return NULL;
612 if (--t->qlen == 0)
613 t->tail = NULL;
614 cmd = t->head;
615 t->head = cmd->next;
616 cmd->next = NULL;
617 return cmd;
618}
619
620#define ub_cmdq_peek(sc) ((sc)->cmd_queue.head)
621
622/*
623 * The request function is our main entry point
624 */
625
Jens Axboe165125e2007-07-24 09:28:11 +0200626static void ub_request_fn(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Pete Zaitcevf4800072005-05-01 16:05:40 -0700628 struct ub_lun *lun = q->queuedata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 struct request *rq;
630
Tejun Heo9934c8c2009-05-08 11:54:16 +0900631 while ((rq = blk_peek_request(q)) != NULL) {
Pete Zaitcev6c1eb8c2005-07-30 22:51:52 -0700632 if (ub_request_fn_1(lun, rq) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 blk_stop_queue(q);
634 break;
635 }
636 }
637}
638
Pete Zaitcev6c1eb8c2005-07-30 22:51:52 -0700639static int ub_request_fn_1(struct ub_lun *lun, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Pete Zaitcevf4800072005-05-01 16:05:40 -0700641 struct ub_dev *sc = lun->udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 struct ub_scsi_cmd *cmd;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800643 struct ub_request *urq;
644 int n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700646 if (atomic_read(&sc->poison)) {
Tejun Heo9934c8c2009-05-08 11:54:16 +0900647 blk_start_request(rq);
Tejun Heo37551002009-05-19 18:33:04 +0900648 ub_end_rq(rq, DID_NO_CONNECT << 16);
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700649 return 0;
650 }
651
Christoph Hellwig4c4762d2010-06-19 17:26:47 +0200652 if (lun->changed && rq->cmd_type != REQ_TYPE_BLOCK_PC) {
Tejun Heo9934c8c2009-05-08 11:54:16 +0900653 blk_start_request(rq);
Tejun Heo37551002009-05-19 18:33:04 +0900654 ub_end_rq(rq, SAM_STAT_CHECK_CONDITION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656 }
657
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800658 if (lun->urq.rq != NULL)
659 return -1;
Pete Zaitcevf4800072005-05-01 16:05:40 -0700660 if ((cmd = ub_get_cmd(lun)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return -1;
662 memset(cmd, 0, sizeof(struct ub_scsi_cmd));
663
Tejun Heo9934c8c2009-05-08 11:54:16 +0900664 blk_start_request(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800666 urq = &lun->urq;
667 memset(urq, 0, sizeof(struct ub_request));
668 urq->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 /*
671 * get scatterlist from block layer
672 */
Pete Zaitcev541645b2008-02-09 00:10:17 -0800673 sg_init_table(&urq->sgv[0], UB_MAX_REQ_SG);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800674 n_elem = blk_rq_map_sg(lun->disk->queue, rq, &urq->sgv[0]);
675 if (n_elem < 0) {
Pete Zaitcevb5600332006-05-25 20:08:50 -0700676 /* Impossible, because blk_rq_map_sg should not hit ENOMEM. */
Pete Zaitcevba6abf12005-07-30 22:38:30 -0700677 printk(KERN_INFO "%s: failed request map (%d)\n",
Pete Zaitcevb5600332006-05-25 20:08:50 -0700678 lun->name, n_elem);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800679 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Pete Zaitcevba6abf12005-07-30 22:38:30 -0700681 if (n_elem > UB_MAX_REQ_SG) { /* Paranoia */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 printk(KERN_WARNING "%s: request with %d segments\n",
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800683 lun->name, n_elem);
684 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800686 urq->nsg = n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200688 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800689 ub_cmd_build_packet(sc, lun, cmd, urq);
690 } else {
691 ub_cmd_build_block(sc, lun, cmd, urq);
692 }
693 cmd->state = UB_CMDST_INIT;
694 cmd->lun = lun;
695 cmd->done = ub_rw_cmd_done;
696 cmd->back = urq;
697
698 cmd->tag = sc->tagcnt++;
699 if (ub_submit_scsi(sc, cmd) != 0)
700 goto drop;
701
702 return 0;
703
704drop:
705 ub_put_cmd(lun, cmd);
Tejun Heo37551002009-05-19 18:33:04 +0900706 ub_end_rq(rq, DID_ERROR << 16);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800707 return 0;
708}
709
710static void ub_cmd_build_block(struct ub_dev *sc, struct ub_lun *lun,
711 struct ub_scsi_cmd *cmd, struct ub_request *urq)
712{
713 struct request *rq = urq->rq;
714 unsigned int block, nblks;
715
716 if (rq_data_dir(rq) == WRITE)
717 cmd->dir = UB_DIR_WRITE;
718 else
719 cmd->dir = UB_DIR_READ;
720
721 cmd->nsg = urq->nsg;
722 memcpy(cmd->sgv, urq->sgv, sizeof(struct scatterlist) * cmd->nsg);
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /*
725 * build the command
726 *
Martin K. Petersene1defc42009-05-22 17:17:49 -0400727 * The call to blk_queue_logical_block_size() guarantees that request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 * is aligned, but it is given in terms of 512 byte units, always.
729 */
Tejun Heo83096eb2009-05-07 22:24:39 +0900730 block = blk_rq_pos(rq) >> lun->capacity.bshift;
731 nblks = blk_rq_sectors(rq) >> lun->capacity.bshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800733 cmd->cdb[0] = (cmd->dir == UB_DIR_READ)? READ_10: WRITE_10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 /* 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
Tejun Heo1011c1b2009-05-07 22:24:45 +0900743 cmd->len = blk_rq_bytes(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800746static void ub_cmd_build_packet(struct ub_dev *sc, struct ub_lun *lun,
747 struct ub_scsi_cmd *cmd, struct ub_request *urq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800749 struct request *rq = urq->rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Tejun Heob0790412009-05-07 22:24:42 +0900751 if (blk_rq_bytes(rq) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 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 }
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700759
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800760 cmd->nsg = urq->nsg;
761 memcpy(cmd->sgv, urq->sgv, sizeof(struct scatterlist) * cmd->nsg);
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700762
763 memcpy(&cmd->cdb, rq->cmd, rq->cmd_len);
764 cmd->cdb_len = rq->cmd_len;
765
Tejun Heob0790412009-05-07 22:24:42 +0900766 cmd->len = blk_rq_bytes(rq);
Pete Zaitcev2c51ae72008-04-19 14:32:18 -0700767
768 /*
769 * To reapply this to every URB is not as incorrect as it looks.
770 * In return, we avoid any complicated tracking calculations.
771 */
772 cmd->timeo = rq->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
775static void ub_rw_cmd_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
776{
Pete Zaitcevf4800072005-05-01 16:05:40 -0700777 struct ub_lun *lun = cmd->lun;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800778 struct ub_request *urq = cmd->back;
779 struct request *rq;
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700780 unsigned int scsi_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800782 rq = urq->rq;
783
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700784 if (cmd->error == 0) {
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200785 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Tejun Heo5f49f632009-05-19 18:33:05 +0900786 if (cmd->act_len >= rq->resid_len)
787 rq->resid_len = 0;
788 else
789 rq->resid_len -= cmd->act_len;
Pete Zaitcevef45cb62008-04-08 17:41:51 -0700790 scsi_status = 0;
791 } else {
792 if (cmd->act_len != cmd->len) {
Pete Zaitcevef45cb62008-04-08 17:41:51 -0700793 scsi_status = SAM_STAT_CHECK_CONDITION;
794 } else {
795 scsi_status = 0;
796 }
Pete Zaitcevba6abf12005-07-30 22:38:30 -0700797 }
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700798 } else {
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200799 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700800 /* UB_SENSE_SIZE is smaller than SCSI_SENSE_BUFFERSIZE */
801 memcpy(rq->sense, sc->top_sense, UB_SENSE_SIZE);
802 rq->sense_len = UB_SENSE_SIZE;
803 if (sc->top_sense[0] != 0)
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700804 scsi_status = SAM_STAT_CHECK_CONDITION;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700805 else
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700806 scsi_status = DID_ERROR << 16;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800807 } else {
Pete Zaitcev82fe26b2008-04-19 14:35:30 -0700808 if (cmd->error == -EIO &&
809 (cmd->key == 0 ||
810 cmd->key == MEDIUM_ERROR ||
811 cmd->key == UNIT_ATTENTION)) {
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800812 if (ub_rw_cmd_retry(sc, lun, urq, cmd) == 0)
813 return;
814 }
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700815 scsi_status = SAM_STAT_CHECK_CONDITION;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -0700816 }
817 }
Pete Zaitcevba6abf12005-07-30 22:38:30 -0700818
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800819 urq->rq = NULL;
820
Pete Zaitcevf4800072005-05-01 16:05:40 -0700821 ub_put_cmd(lun, cmd);
Tejun Heo37551002009-05-19 18:33:04 +0900822 ub_end_rq(rq, scsi_status);
Pete Zaitcevba6abf12005-07-30 22:38:30 -0700823 blk_start_queue(lun->disk->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Tejun Heo37551002009-05-19 18:33:04 +0900826static void ub_end_rq(struct request *rq, unsigned int scsi_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Kiyoshi Ueda7d699ba2007-12-11 17:46:47 -0500828 int error;
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700829
830 if (scsi_status == 0) {
Kiyoshi Ueda7d699ba2007-12-11 17:46:47 -0500831 error = 0;
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700832 } else {
Kiyoshi Ueda7d699ba2007-12-11 17:46:47 -0500833 error = -EIO;
Pete Zaitcevd1ad4ea2006-09-07 16:54:22 -0700834 rq->errors = scsi_status;
835 }
Tejun Heo37551002009-05-19 18:33:04 +0900836 __blk_end_request_all(rq, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800839static int ub_rw_cmd_retry(struct ub_dev *sc, struct ub_lun *lun,
840 struct ub_request *urq, struct ub_scsi_cmd *cmd)
841{
842
843 if (atomic_read(&sc->poison))
844 return -ENXIO;
845
Pete Zaitcev2c2e4a22006-01-05 00:26:30 -0800846 ub_reset_enter(sc, urq->current_try);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800847
848 if (urq->current_try >= 3)
849 return -EIO;
850 urq->current_try++;
Pete Zaitcevb5600332006-05-25 20:08:50 -0700851
852 /* Remove this if anyone complains of flooding. */
853 printk(KERN_DEBUG "%s: dir %c len/act %d/%d "
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800854 "[sense %x %02x %02x] retry %d\n",
855 sc->name, UB_DIR_CHAR(cmd->dir), cmd->len, cmd->act_len,
856 cmd->key, cmd->asc, cmd->ascq, urq->current_try);
857
858 memset(cmd, 0, sizeof(struct ub_scsi_cmd));
859 ub_cmd_build_block(sc, lun, cmd, urq);
860
861 cmd->state = UB_CMDST_INIT;
862 cmd->lun = lun;
863 cmd->done = ub_rw_cmd_done;
864 cmd->back = urq;
865
866 cmd->tag = sc->tagcnt++;
867
868#if 0 /* Wasteful */
869 return ub_submit_scsi(sc, cmd);
870#else
871 ub_cmdq_add(sc, cmd);
872 return 0;
873#endif
874}
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876/*
877 * Submit a regular SCSI operation (not an auto-sense).
878 *
879 * The Iron Law of Good Submit Routine is:
880 * Zero return - callback is done, Nonzero return - callback is not done.
881 * No exceptions.
882 *
883 * Host is assumed locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 */
885static int ub_submit_scsi(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
886{
887
888 if (cmd->state != UB_CMDST_INIT ||
889 (cmd->dir != UB_DIR_NONE && cmd->len == 0)) {
890 return -EINVAL;
891 }
892
893 ub_cmdq_add(sc, cmd);
894 /*
895 * We can call ub_scsi_dispatch(sc) right away here, but it's a little
896 * safer to jump to a tasklet, in case upper layers do something silly.
897 */
898 tasklet_schedule(&sc->tasklet);
899 return 0;
900}
901
902/*
903 * Submit the first URB for the queued command.
904 * This function does not deal with queueing in any way.
905 */
906static int ub_scsi_cmd_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
907{
908 struct bulk_cb_wrap *bcb;
909 int rc;
910
911 bcb = &sc->work_bcb;
912
913 /*
914 * ``If the allocation length is eighteen or greater, and a device
915 * server returns less than eithteen bytes of data, the application
916 * client should assume that the bytes not transferred would have been
917 * zeroes had the device server returned those bytes.''
918 *
919 * We zero sense for all commands so that when a packet request
920 * fails it does not return a stale sense.
921 */
922 memset(&sc->top_sense, 0, UB_SENSE_SIZE);
923
924 /* set up the command wrapper */
925 bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
926 bcb->Tag = cmd->tag; /* Endianness is not important */
927 bcb->DataTransferLength = cpu_to_le32(cmd->len);
928 bcb->Flags = (cmd->dir == UB_DIR_READ) ? 0x80 : 0;
Pete Zaitcevf4800072005-05-01 16:05:40 -0700929 bcb->Lun = (cmd->lun != NULL) ? cmd->lun->num : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 bcb->Length = cmd->cdb_len;
931
932 /* copy the command payload */
933 memcpy(bcb->CDB, cmd->cdb, UB_MAX_CDB_SIZE);
934
935 UB_INIT_COMPLETION(sc->work_done);
936
937 sc->last_pipe = sc->send_bulk_pipe;
938 usb_fill_bulk_urb(&sc->work_urb, sc->dev, sc->send_bulk_pipe,
939 bcb, US_BULK_CB_WRAP_LEN, ub_urb_complete, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
942 /* XXX Clear stalls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 ub_complete(&sc->work_done);
944 return rc;
945 }
946
947 sc->work_timer.expires = jiffies + UB_URB_TIMEOUT;
948 add_timer(&sc->work_timer);
949
950 cmd->state = UB_CMDST_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return 0;
952}
953
954/*
955 * Timeout handler.
956 */
957static void ub_urb_timeout(unsigned long arg)
958{
959 struct ub_dev *sc = (struct ub_dev *) arg;
960 unsigned long flags;
961
Pete Zaitcev65b4fe52005-12-28 14:22:17 -0800962 spin_lock_irqsave(sc->lock, flags);
Pete Zaitcevb31f8212006-01-05 00:14:02 -0800963 if (!ub_is_completed(&sc->work_done))
964 usb_unlink_urb(&sc->work_urb);
Pete Zaitcev65b4fe52005-12-28 14:22:17 -0800965 spin_unlock_irqrestore(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
968/*
969 * Completion routine for the work URB.
970 *
971 * This can be called directly from usb_submit_urb (while we have
972 * the sc->lock taken) and from an interrupt (while we do NOT have
973 * the sc->lock taken). Therefore, bounce this off to a tasklet.
974 */
David Howells7d12e782006-10-05 14:55:46 +0100975static void ub_urb_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 struct ub_dev *sc = urb->context;
978
979 ub_complete(&sc->work_done);
980 tasklet_schedule(&sc->tasklet);
981}
982
983static void ub_scsi_action(unsigned long _dev)
984{
985 struct ub_dev *sc = (struct ub_dev *) _dev;
986 unsigned long flags;
987
Pete Zaitcev65b4fe52005-12-28 14:22:17 -0800988 spin_lock_irqsave(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 ub_scsi_dispatch(sc);
Pete Zaitcev65b4fe52005-12-28 14:22:17 -0800990 spin_unlock_irqrestore(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
993static void ub_scsi_dispatch(struct ub_dev *sc)
994{
995 struct ub_scsi_cmd *cmd;
996 int rc;
997
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -0800998 while (!sc->reset && (cmd = ub_cmdq_peek(sc)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (cmd->state == UB_CMDST_DONE) {
1000 ub_cmdq_pop(sc);
1001 (*cmd->done)(sc, cmd);
1002 } else if (cmd->state == UB_CMDST_INIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if ((rc = ub_scsi_cmd_start(sc, cmd)) == 0)
1004 break;
1005 cmd->error = rc;
1006 cmd->state = UB_CMDST_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 } else {
1008 if (!ub_is_completed(&sc->work_done))
1009 break;
Pete Zaitcevb31f8212006-01-05 00:14:02 -08001010 del_timer(&sc->work_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 ub_scsi_urb_compl(sc, cmd);
1012 }
1013 }
1014}
1015
1016static void ub_scsi_urb_compl(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1017{
1018 struct urb *urb = &sc->work_urb;
1019 struct bulk_cs_wrap *bcs;
David Vrabel3444b262009-04-08 17:36:28 +00001020 int endp;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001021 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 int rc;
1023
1024 if (atomic_read(&sc->poison)) {
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001025 ub_state_done(sc, cmd, -ENODEV);
1026 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 }
1028
David Vrabel3444b262009-04-08 17:36:28 +00001029 endp = usb_pipeendpoint(sc->last_pipe);
1030 if (usb_pipein(sc->last_pipe))
1031 endp |= USB_DIR_IN;
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (cmd->state == UB_CMDST_CLEAR) {
1034 if (urb->status == -EPIPE) {
1035 /*
1036 * STALL while clearning STALL.
1037 * The control pipe clears itself - nothing to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
Pete Zaitcevf4800072005-05-01 16:05:40 -07001039 printk(KERN_NOTICE "%s: stall on control pipe\n",
1040 sc->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 goto Bad_End;
1042 }
1043
1044 /*
1045 * We ignore the result for the halt clear.
1046 */
1047
David Vrabel3444b262009-04-08 17:36:28 +00001048 usb_reset_endpoint(sc->dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 ub_state_sense(sc, cmd);
1051
1052 } else if (cmd->state == UB_CMDST_CLR2STS) {
1053 if (urb->status == -EPIPE) {
Pete Zaitcevf4800072005-05-01 16:05:40 -07001054 printk(KERN_NOTICE "%s: stall on control pipe\n",
1055 sc->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 goto Bad_End;
1057 }
1058
1059 /*
1060 * We ignore the result for the halt clear.
1061 */
1062
David Vrabel3444b262009-04-08 17:36:28 +00001063 usb_reset_endpoint(sc->dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 ub_state_stat(sc, cmd);
1066
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001067 } else if (cmd->state == UB_CMDST_CLRRS) {
1068 if (urb->status == -EPIPE) {
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001069 printk(KERN_NOTICE "%s: stall on control pipe\n",
1070 sc->name);
1071 goto Bad_End;
1072 }
1073
1074 /*
1075 * We ignore the result for the halt clear.
1076 */
1077
David Vrabel3444b262009-04-08 17:36:28 +00001078 usb_reset_endpoint(sc->dev, endp);
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001079
1080 ub_state_stat_counted(sc, cmd);
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 } else if (cmd->state == UB_CMDST_CMD) {
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001083 switch (urb->status) {
1084 case 0:
1085 break;
1086 case -EOVERFLOW:
1087 goto Bad_End;
1088 case -EPIPE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1090 if (rc != 0) {
1091 printk(KERN_NOTICE "%s: "
Pete Zaitcevf4800072005-05-01 16:05:40 -07001092 "unable to submit clear (%d)\n",
1093 sc->name, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 /*
1095 * This is typically ENOMEM or some other such shit.
1096 * Retrying is pointless. Just do Bad End on it...
1097 */
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001098 ub_state_done(sc, cmd, rc);
1099 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 cmd->state = UB_CMDST_CLEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001103 case -ESHUTDOWN: /* unplug */
1104 case -EILSEQ: /* unplug timeout on uhci */
1105 ub_state_done(sc, cmd, -ENODEV);
1106 return;
1107 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto Bad_End;
1109 }
1110 if (urb->actual_length != US_BULK_CB_WRAP_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 goto Bad_End;
1112 }
1113
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001114 if (cmd->dir == UB_DIR_NONE || cmd->nsg < 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 ub_state_stat(sc, cmd);
1116 return;
1117 }
1118
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001119 // udelay(125); // usb-storage has this
1120 ub_data_start(sc, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 } else if (cmd->state == UB_CMDST_DATA) {
1123 if (urb->status == -EPIPE) {
1124 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1125 if (rc != 0) {
1126 printk(KERN_NOTICE "%s: "
Pete Zaitcevf4800072005-05-01 16:05:40 -07001127 "unable to submit clear (%d)\n",
1128 sc->name, rc);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001129 ub_state_done(sc, cmd, rc);
1130 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132 cmd->state = UB_CMDST_CLR2STS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return;
1134 }
1135 if (urb->status == -EOVERFLOW) {
1136 /*
1137 * A babble? Failure, but we must transfer CSW now.
1138 */
1139 cmd->error = -EOVERFLOW; /* A cheap trick... */
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001140 ub_state_stat(sc, cmd);
1141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001143
1144 if (cmd->dir == UB_DIR_WRITE) {
1145 /*
1146 * Do not continue writes in case of a failure.
1147 * Doing so would cause sectors to be mixed up,
1148 * which is worse than sectors lost.
1149 *
1150 * We must try to read the CSW, or many devices
1151 * get confused.
1152 */
1153 len = urb->actual_length;
1154 if (urb->status != 0 ||
1155 len != cmd->sgv[cmd->current_sg].length) {
1156 cmd->act_len += len;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001157
1158 cmd->error = -EIO;
1159 ub_state_stat(sc, cmd);
1160 return;
1161 }
1162
1163 } else {
1164 /*
1165 * If an error occurs on read, we record it, and
1166 * continue to fetch data in order to avoid bubble.
1167 *
1168 * As a small shortcut, we stop if we detect that
1169 * a CSW mixed into data.
1170 */
1171 if (urb->status != 0)
1172 cmd->error = -EIO;
1173
1174 len = urb->actual_length;
1175 if (urb->status != 0 ||
1176 len != cmd->sgv[cmd->current_sg].length) {
1177 if ((len & 0x1FF) == US_BULK_CS_WRAP_LEN)
1178 goto Bad_End;
1179 }
1180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001182 cmd->act_len += urb->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001184 if (++cmd->current_sg < cmd->nsg) {
1185 ub_data_start(sc, cmd);
1186 return;
1187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 ub_state_stat(sc, cmd);
1189
1190 } else if (cmd->state == UB_CMDST_STAT) {
1191 if (urb->status == -EPIPE) {
1192 rc = ub_submit_clear_stall(sc, cmd, sc->last_pipe);
1193 if (rc != 0) {
1194 printk(KERN_NOTICE "%s: "
Pete Zaitcevf4800072005-05-01 16:05:40 -07001195 "unable to submit clear (%d)\n",
1196 sc->name, rc);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001197 ub_state_done(sc, cmd, rc);
1198 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001200
1201 /*
1202 * Having a stall when getting CSW is an error, so
1203 * make sure uppper levels are not oblivious to it.
1204 */
1205 cmd->error = -EIO; /* A cheap trick... */
1206
1207 cmd->state = UB_CMDST_CLRRS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return;
1209 }
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001210
1211 /* Catch everything, including -EOVERFLOW and other nasties. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (urb->status != 0)
1213 goto Bad_End;
1214
1215 if (urb->actual_length == 0) {
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001216 ub_state_stat_counted(sc, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return;
1218 }
1219
1220 /*
1221 * Check the returned Bulk protocol status.
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001222 * The status block has to be validated first.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
1224
1225 bcs = &sc->work_bcs;
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001226
1227 if (sc->signature == cpu_to_le32(0)) {
1228 /*
1229 * This is the first reply, so do not perform the check.
1230 * Instead, remember the signature the device uses
1231 * for future checks. But do not allow a nul.
1232 */
1233 sc->signature = bcs->Signature;
1234 if (sc->signature == cpu_to_le32(0)) {
1235 ub_state_stat_counted(sc, cmd);
1236 return;
1237 }
1238 } else {
1239 if (bcs->Signature != sc->signature) {
1240 ub_state_stat_counted(sc, cmd);
1241 return;
1242 }
1243 }
1244
1245 if (bcs->Tag != cmd->tag) {
1246 /*
1247 * This usually happens when we disagree with the
1248 * device's microcode about something. For instance,
1249 * a few of them throw this after timeouts. They buffer
1250 * commands and reply at commands we timed out before.
1251 * Without flushing these replies we loop forever.
1252 */
1253 ub_state_stat_counted(sc, cmd);
1254 return;
1255 }
1256
Pete Zaitcev0da13c82008-04-19 14:42:49 -07001257 if (!sc->bad_resid) {
1258 len = le32_to_cpu(bcs->Residue);
1259 if (len != cmd->len - cmd->act_len) {
1260 /*
1261 * Only start ignoring if this cmd ended well.
1262 */
1263 if (cmd->len == cmd->act_len) {
1264 printk(KERN_NOTICE "%s: "
1265 "bad residual %d of %d, ignoring\n",
1266 sc->name, len, cmd->len);
1267 sc->bad_resid = 1;
1268 }
1269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 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:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 goto Bad_End;
1280 default:
1281 printk(KERN_INFO "%s: unknown CSW status 0x%x\n",
1282 sc->name, bcs->Status);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001283 ub_state_done(sc, cmd, -EINVAL);
1284 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286
1287 /* Not zeroing error to preserve a babble indicator */
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001288 if (cmd->error != 0) {
1289 ub_state_sense(sc, cmd);
1290 return;
1291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 cmd->state = UB_CMDST_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 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 {
Pete Zaitcev9029b172008-04-19 14:45:24 -07001300 printk(KERN_WARNING "%s: wrong command state %d\n",
Pete Zaitcevf4800072005-05-01 16:05:40 -07001301 sc->name, cmd->state);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001302 ub_state_done(sc, cmd, -EINVAL);
1303 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305 return;
1306
1307Bad_End: /* Little Excel is dead */
1308 ub_state_done(sc, cmd, -EIO);
1309}
1310
1311/*
1312 * Factorization helper for the command state machine:
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001313 * Initiate a data segment transfer.
1314 */
1315static void ub_data_start(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1316{
1317 struct scatterlist *sg = &cmd->sgv[cmd->current_sg];
1318 int pipe;
1319 int rc;
1320
1321 UB_INIT_COMPLETION(sc->work_done);
1322
1323 if (cmd->dir == UB_DIR_READ)
1324 pipe = sc->recv_bulk_pipe;
1325 else
1326 pipe = sc->send_bulk_pipe;
1327 sc->last_pipe = pipe;
Jens Axboe45711f12007-10-22 21:19:53 +02001328 usb_fill_bulk_urb(&sc->work_urb, sc->dev, pipe, sg_virt(sg),
1329 sg->length, ub_urb_complete, sc);
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001330
1331 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1332 /* XXX Clear stalls */
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001333 ub_complete(&sc->work_done);
1334 ub_state_done(sc, cmd, rc);
1335 return;
1336 }
1337
Pete Zaitcev2c51ae72008-04-19 14:32:18 -07001338 if (cmd->timeo)
1339 sc->work_timer.expires = jiffies + cmd->timeo;
1340 else
1341 sc->work_timer.expires = jiffies + UB_DATA_TIMEOUT;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001342 add_timer(&sc->work_timer);
1343
1344 cmd->state = UB_CMDST_DATA;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001345}
1346
1347/*
1348 * Factorization helper for the command state machine:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 * Finish the command.
1350 */
1351static void ub_state_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd, int rc)
1352{
1353
1354 cmd->error = rc;
1355 cmd->state = UB_CMDST_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 ub_cmdq_pop(sc);
1357 (*cmd->done)(sc, cmd);
1358}
1359
1360/*
1361 * Factorization helper for the command state machine:
1362 * Submit a CSW read.
1363 */
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001364static int __ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 int rc;
1367
1368 UB_INIT_COMPLETION(sc->work_done);
1369
1370 sc->last_pipe = sc->recv_bulk_pipe;
1371 usb_fill_bulk_urb(&sc->work_urb, sc->dev, sc->recv_bulk_pipe,
1372 &sc->work_bcs, US_BULK_CS_WRAP_LEN, ub_urb_complete, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1375 /* XXX Clear stalls */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 ub_complete(&sc->work_done);
1377 ub_state_done(sc, cmd, rc);
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001378 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380
Pete Zaitcev2c51ae72008-04-19 14:32:18 -07001381 if (cmd->timeo)
1382 sc->work_timer.expires = jiffies + cmd->timeo;
1383 else
1384 sc->work_timer.expires = jiffies + UB_STAT_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 add_timer(&sc->work_timer);
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
1389/*
1390 * Factorization helper for the command state machine:
1391 * Submit a CSW read and go to STAT state.
1392 */
1393static void ub_state_stat(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1394{
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001395
1396 if (__ub_state_stat(sc, cmd) != 0)
1397 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 cmd->stat_count = 0;
1400 cmd->state = UB_CMDST_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
1403/*
1404 * Factorization helper for the command state machine:
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001405 * Submit a CSW read and go to STAT state with counter (along [C] path).
1406 */
1407static void ub_state_stat_counted(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1408{
1409
1410 if (++cmd->stat_count >= 4) {
1411 ub_state_sense(sc, cmd);
1412 return;
1413 }
1414
1415 if (__ub_state_stat(sc, cmd) != 0)
1416 return;
1417
1418 cmd->state = UB_CMDST_STAT;
Pete Zaitcev1872bce2005-07-27 11:43:51 -07001419}
1420
1421/*
1422 * Factorization helper for the command state machine:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 * Submit a REQUEST SENSE and go to SENSE state.
1424 */
1425static void ub_state_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1426{
1427 struct ub_scsi_cmd *scmd;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001428 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 int rc;
1430
1431 if (cmd->cdb[0] == REQUEST_SENSE) {
1432 rc = -EPIPE;
1433 goto error;
1434 }
1435
1436 scmd = &sc->top_rqs_cmd;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001437 memset(scmd, 0, sizeof(struct ub_scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 scmd->cdb[0] = REQUEST_SENSE;
1439 scmd->cdb[4] = UB_SENSE_SIZE;
1440 scmd->cdb_len = 6;
1441 scmd->dir = UB_DIR_READ;
1442 scmd->state = UB_CMDST_INIT;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001443 scmd->nsg = 1;
1444 sg = &scmd->sgv[0];
FUJITA Tomonori4f33a9d2007-10-25 09:17:03 +02001445 sg_init_table(sg, UB_MAX_REQ_SG);
Jens Axboe642f1492007-10-24 11:20:47 +02001446 sg_set_page(sg, virt_to_page(sc->top_sense), UB_SENSE_SIZE,
1447 (unsigned long)sc->top_sense & (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 scmd->len = UB_SENSE_SIZE;
Pete Zaitcevf4800072005-05-01 16:05:40 -07001449 scmd->lun = cmd->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 scmd->done = ub_top_sense_done;
1451 scmd->back = cmd;
1452
1453 scmd->tag = sc->tagcnt++;
1454
1455 cmd->state = UB_CMDST_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 ub_cmdq_insert(sc, scmd);
1458 return;
1459
1460error:
1461 ub_state_done(sc, cmd, rc);
1462}
1463
1464/*
1465 * A helper for the command's state machine:
1466 * Submit a stall clear.
1467 */
1468static int ub_submit_clear_stall(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
1469 int stalled_pipe)
1470{
1471 int endp;
1472 struct usb_ctrlrequest *cr;
1473 int rc;
1474
1475 endp = usb_pipeendpoint(stalled_pipe);
1476 if (usb_pipein (stalled_pipe))
1477 endp |= USB_DIR_IN;
1478
1479 cr = &sc->work_cr;
1480 cr->bRequestType = USB_RECIP_ENDPOINT;
1481 cr->bRequest = USB_REQ_CLEAR_FEATURE;
1482 cr->wValue = cpu_to_le16(USB_ENDPOINT_HALT);
1483 cr->wIndex = cpu_to_le16(endp);
1484 cr->wLength = cpu_to_le16(0);
1485
1486 UB_INIT_COMPLETION(sc->work_done);
1487
1488 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
1489 (unsigned char*) cr, NULL, 0, ub_urb_complete, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 if ((rc = usb_submit_urb(&sc->work_urb, GFP_ATOMIC)) != 0) {
1492 ub_complete(&sc->work_done);
1493 return rc;
1494 }
1495
1496 sc->work_timer.expires = jiffies + UB_CTRL_TIMEOUT;
1497 add_timer(&sc->work_timer);
1498 return 0;
1499}
1500
1501/*
1502 */
1503static void ub_top_sense_done(struct ub_dev *sc, struct ub_scsi_cmd *scmd)
1504{
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001505 unsigned char *sense = sc->top_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct ub_scsi_cmd *cmd;
1507
1508 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 * Find the command which triggered the unit attention or a check,
1510 * save the sense into it, and advance its state machine.
1511 */
1512 if ((cmd = ub_cmdq_peek(sc)) == NULL) {
1513 printk(KERN_WARNING "%s: sense done while idle\n", sc->name);
1514 return;
1515 }
1516 if (cmd != scmd->back) {
1517 printk(KERN_WARNING "%s: "
Pete Zaitcevf4800072005-05-01 16:05:40 -07001518 "sense done for wrong command 0x%x\n",
1519 sc->name, cmd->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return;
1521 }
1522 if (cmd->state != UB_CMDST_SENSE) {
Pete Zaitcev9029b172008-04-19 14:45:24 -07001523 printk(KERN_WARNING "%s: sense done with bad cmd state %d\n",
Pete Zaitcevf4800072005-05-01 16:05:40 -07001524 sc->name, cmd->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return;
1526 }
1527
Pete Zaitcev952ba222006-03-02 16:42:59 -08001528 /*
1529 * Ignoring scmd->act_len, because the buffer was pre-zeroed.
1530 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 cmd->key = sense[2] & 0x0F;
1532 cmd->asc = sense[12];
1533 cmd->ascq = sense[13];
1534
1535 ub_scsi_urb_compl(sc, cmd);
1536}
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538/*
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001539 * Reset management
1540 */
1541
Pete Zaitcev2c2e4a22006-01-05 00:26:30 -08001542static void ub_reset_enter(struct ub_dev *sc, int try)
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001543{
1544
1545 if (sc->reset) {
1546 /* This happens often on multi-LUN devices. */
1547 return;
1548 }
Pete Zaitcev2c2e4a22006-01-05 00:26:30 -08001549 sc->reset = try + 1;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001550
1551#if 0 /* Not needed because the disconnect waits for us. */
1552 unsigned long flags;
1553 spin_lock_irqsave(&ub_lock, flags);
1554 sc->openc++;
1555 spin_unlock_irqrestore(&ub_lock, flags);
1556#endif
1557
1558#if 0 /* We let them stop themselves. */
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001559 struct ub_lun *lun;
Matthias Kaehlckea69228d2007-07-09 12:03:07 -07001560 list_for_each_entry(lun, &sc->luns, link) {
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001561 blk_stop_queue(lun->disk->queue);
1562 }
1563#endif
1564
1565 schedule_work(&sc->reset_work);
1566}
1567
David Howellsc4028952006-11-22 14:57:56 +00001568static void ub_reset_task(struct work_struct *work)
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001569{
David Howellsc4028952006-11-22 14:57:56 +00001570 struct ub_dev *sc = container_of(work, struct ub_dev, reset_work);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001571 unsigned long flags;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001572 struct ub_lun *lun;
Alan Stern011b15d2008-11-04 11:29:27 -05001573 int rc;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001574
1575 if (!sc->reset) {
1576 printk(KERN_WARNING "%s: Running reset unrequested\n",
1577 sc->name);
1578 return;
1579 }
1580
1581 if (atomic_read(&sc->poison)) {
Pete Zaitcevb5600332006-05-25 20:08:50 -07001582 ;
Pete Zaitcev2c2e4a22006-01-05 00:26:30 -08001583 } else if ((sc->reset & 1) == 0) {
1584 ub_sync_reset(sc);
1585 msleep(700); /* usb-storage sleeps 6s (!) */
1586 ub_probe_clear_stall(sc, sc->recv_bulk_pipe);
1587 ub_probe_clear_stall(sc, sc->send_bulk_pipe);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001588 } else if (sc->dev->actconfig->desc.bNumInterfaces != 1) {
Pete Zaitcevb5600332006-05-25 20:08:50 -07001589 ;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001590 } else {
Alan Stern011b15d2008-11-04 11:29:27 -05001591 rc = usb_lock_device_for_reset(sc->dev, sc->intf);
1592 if (rc < 0) {
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001593 printk(KERN_NOTICE
1594 "%s: usb_lock_device_for_reset failed (%d)\n",
Alan Stern011b15d2008-11-04 11:29:27 -05001595 sc->name, rc);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001596 } else {
1597 rc = usb_reset_device(sc->dev);
1598 if (rc < 0) {
1599 printk(KERN_NOTICE "%s: "
1600 "usb_lock_device_for_reset failed (%d)\n",
1601 sc->name, rc);
1602 }
Alan Stern011b15d2008-11-04 11:29:27 -05001603 usb_unlock_device(sc->dev);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001604 }
1605 }
1606
1607 /*
1608 * In theory, no commands can be running while reset is active,
1609 * so nobody can ask for another reset, and so we do not need any
1610 * queues of resets or anything. We do need a spinlock though,
1611 * to interact with block layer.
1612 */
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08001613 spin_lock_irqsave(sc->lock, flags);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001614 sc->reset = 0;
1615 tasklet_schedule(&sc->tasklet);
Matthias Kaehlckea69228d2007-07-09 12:03:07 -07001616 list_for_each_entry(lun, &sc->luns, link) {
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001617 blk_start_queue(lun->disk->queue);
1618 }
1619 wake_up(&sc->reset_wait);
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08001620 spin_unlock_irqrestore(sc->lock, flags);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08001621}
1622
1623/*
Pete Zaitcevd73b7af2008-11-10 21:11:11 -07001624 * XXX Reset brackets are too much hassle to implement, so just stub them
1625 * in order to prevent forced unbinding (which deadlocks solid when our
1626 * ->disconnect method waits for the reset to complete and this kills keventd).
1627 *
1628 * XXX Tell Alan to move usb_unlock_device inside of usb_reset_device,
1629 * or else the post_reset is invoked, and restats I/O on a locked device.
1630 */
1631static int ub_pre_reset(struct usb_interface *iface) {
1632 return 0;
1633}
1634
1635static int ub_post_reset(struct usb_interface *iface) {
1636 return 0;
1637}
1638
1639/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 * This is called from a process context.
1641 */
Pete Zaitcevf4800072005-05-01 16:05:40 -07001642static void ub_revalidate(struct ub_dev *sc, struct ub_lun *lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643{
1644
Pete Zaitcevf4800072005-05-01 16:05:40 -07001645 lun->readonly = 0; /* XXX Query this from the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Pete Zaitcevf4800072005-05-01 16:05:40 -07001647 lun->capacity.nsec = 0;
1648 lun->capacity.bsize = 512;
1649 lun->capacity.bshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Pete Zaitcevf4800072005-05-01 16:05:40 -07001651 if (ub_sync_tur(sc, lun) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return; /* Not ready */
Pete Zaitcevf4800072005-05-01 16:05:40 -07001653 lun->changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Pete Zaitcevf4800072005-05-01 16:05:40 -07001655 if (ub_sync_read_cap(sc, lun, &lun->capacity) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /*
1657 * The retry here means something is wrong, either with the
1658 * device, with the transport, or with our code.
1659 * We keep this because sd.c has retries for capacity.
1660 */
Pete Zaitcevf4800072005-05-01 16:05:40 -07001661 if (ub_sync_read_cap(sc, lun, &lun->capacity) != 0) {
1662 lun->capacity.nsec = 0;
1663 lun->capacity.bsize = 512;
1664 lun->capacity.bshift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
1666 }
1667}
1668
1669/*
1670 * The open funcion.
1671 * This is mostly needed to keep refcounting, but also to support
1672 * media checks on removable media drives.
1673 */
Al Viro4099a962008-03-02 10:21:43 -05001674static int ub_bd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Al Viro4099a962008-03-02 10:21:43 -05001676 struct ub_lun *lun = bdev->bd_disk->private_data;
Pete Zaitcev41fea552006-04-28 20:45:49 -07001677 struct ub_dev *sc = lun->udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 unsigned long flags;
1679 int rc;
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 spin_lock_irqsave(&ub_lock, flags);
1682 if (atomic_read(&sc->poison)) {
1683 spin_unlock_irqrestore(&ub_lock, flags);
1684 return -ENXIO;
1685 }
1686 sc->openc++;
1687 spin_unlock_irqrestore(&ub_lock, flags);
1688
Pete Zaitcevf4800072005-05-01 16:05:40 -07001689 if (lun->removable || lun->readonly)
Al Viro4099a962008-03-02 10:21:43 -05001690 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692 /*
1693 * The sd.c considers ->media_present and ->changed not equivalent,
1694 * under some pretty murky conditions (a failure of READ CAPACITY).
1695 * We may need it one day.
1696 */
Al Viro4099a962008-03-02 10:21:43 -05001697 if (lun->removable && lun->changed && !(mode & FMODE_NDELAY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 rc = -ENOMEDIUM;
1699 goto err_open;
1700 }
1701
Al Viro4099a962008-03-02 10:21:43 -05001702 if (lun->readonly && (mode & FMODE_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 rc = -EROFS;
1704 goto err_open;
1705 }
1706
1707 return 0;
1708
1709err_open:
1710 ub_put(sc);
1711 return rc;
1712}
1713
1714/*
1715 */
Al Viro4099a962008-03-02 10:21:43 -05001716static int ub_bd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
Pete Zaitcevf4800072005-05-01 16:05:40 -07001718 struct ub_lun *lun = disk->private_data;
1719 struct ub_dev *sc = lun->udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 ub_put(sc);
1722 return 0;
1723}
1724
1725/*
1726 * The ioctl interface.
1727 */
Al Viro4099a962008-03-02 10:21:43 -05001728static int ub_bd_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 unsigned int cmd, unsigned long arg)
1730{
Al Viro4099a962008-03-02 10:21:43 -05001731 struct gendisk *disk = bdev->bd_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 void __user *usermem = (void __user *) arg;
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001733 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001735 lock_kernel();
1736 ret = scsi_cmd_ioctl(disk->queue, disk, mode, cmd, usermem);
1737 unlock_kernel();
1738
1739 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
1742/*
Pete Zaitcev9029b172008-04-19 14:45:24 -07001743 * This is called by check_disk_change if we reported a media change.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 * The main onjective here is to discover the features of the media such as
1745 * the capacity, read-only status, etc. USB storage generally does not
1746 * need to be spun up, but if we needed it, this would be the place.
1747 *
1748 * This call can sleep.
1749 *
1750 * The return code is not used.
1751 */
1752static int ub_bd_revalidate(struct gendisk *disk)
1753{
Pete Zaitcevf4800072005-05-01 16:05:40 -07001754 struct ub_lun *lun = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Pete Zaitcevf4800072005-05-01 16:05:40 -07001756 ub_revalidate(lun->udev, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 /* XXX Support sector size switching like in sr.c */
Martin K. Petersene1defc42009-05-22 17:17:49 -04001759 blk_queue_logical_block_size(disk->queue, lun->capacity.bsize);
Pete Zaitcevf4800072005-05-01 16:05:40 -07001760 set_capacity(disk, lun->capacity.nsec);
1761 // set_disk_ro(sdkp->disk, lun->readonly);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 return 0;
1764}
1765
1766/*
1767 * The check is called by the block layer to verify if the media
1768 * is still available. It is supposed to be harmless, lightweight and
1769 * non-intrusive in case the media was not changed.
1770 *
1771 * This call can sleep.
1772 *
1773 * The return code is bool!
1774 */
1775static int ub_bd_media_changed(struct gendisk *disk)
1776{
Pete Zaitcevf4800072005-05-01 16:05:40 -07001777 struct ub_lun *lun = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Pete Zaitcevf4800072005-05-01 16:05:40 -07001779 if (!lun->removable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 return 0;
1781
1782 /*
1783 * We clean checks always after every command, so this is not
1784 * as dangerous as it looks. If the TEST_UNIT_READY fails here,
1785 * the device is actually not ready with operator or software
1786 * intervention required. One dangerous item might be a drive which
1787 * spins itself down, and come the time to write dirty pages, this
1788 * will fail, then block layer discards the data. Since we never
1789 * spin drives up, such devices simply cannot be used with ub anyway.
1790 */
Pete Zaitcevf4800072005-05-01 16:05:40 -07001791 if (ub_sync_tur(lun->udev, lun) != 0) {
1792 lun->changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 return 1;
1794 }
1795
Pete Zaitcevf4800072005-05-01 16:05:40 -07001796 return lun->changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001799static const struct block_device_operations ub_bd_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 .owner = THIS_MODULE,
Al Viro4099a962008-03-02 10:21:43 -05001801 .open = ub_bd_open,
1802 .release = ub_bd_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001803 .ioctl = ub_bd_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 .media_changed = ub_bd_media_changed,
1805 .revalidate_disk = ub_bd_revalidate,
1806};
1807
1808/*
1809 * Common ->done routine for commands executed synchronously.
1810 */
1811static void ub_probe_done(struct ub_dev *sc, struct ub_scsi_cmd *cmd)
1812{
1813 struct completion *cop = cmd->back;
1814 complete(cop);
1815}
1816
1817/*
1818 * Test if the device has a check condition on it, synchronously.
1819 */
Pete Zaitcevf4800072005-05-01 16:05:40 -07001820static int ub_sync_tur(struct ub_dev *sc, struct ub_lun *lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
1822 struct ub_scsi_cmd *cmd;
1823 enum { ALLOC_SIZE = sizeof(struct ub_scsi_cmd) };
1824 unsigned long flags;
1825 struct completion compl;
1826 int rc;
1827
1828 init_completion(&compl);
1829
1830 rc = -ENOMEM;
Pete Zaitcev29da7932006-02-13 20:35:57 -08001831 if ((cmd = kzalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 cmd->cdb[0] = TEST_UNIT_READY;
1835 cmd->cdb_len = 6;
1836 cmd->dir = UB_DIR_NONE;
1837 cmd->state = UB_CMDST_INIT;
Pete Zaitcevf4800072005-05-01 16:05:40 -07001838 cmd->lun = lun; /* This may be NULL, but that's ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 cmd->done = ub_probe_done;
1840 cmd->back = &compl;
1841
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08001842 spin_lock_irqsave(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 cmd->tag = sc->tagcnt++;
1844
1845 rc = ub_submit_scsi(sc, cmd);
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08001846 spin_unlock_irqrestore(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Pete Zaitcevb5600332006-05-25 20:08:50 -07001848 if (rc != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 goto err_submit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 wait_for_completion(&compl);
1852
1853 rc = cmd->error;
1854
1855 if (rc == -EIO && cmd->key != 0) /* Retries for benh's key */
1856 rc = cmd->key;
1857
1858err_submit:
1859 kfree(cmd);
1860err_alloc:
1861 return rc;
1862}
1863
1864/*
1865 * Read the SCSI capacity synchronously (for probing).
1866 */
Pete Zaitcevf4800072005-05-01 16:05:40 -07001867static int ub_sync_read_cap(struct ub_dev *sc, struct ub_lun *lun,
1868 struct ub_capacity *ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
1870 struct ub_scsi_cmd *cmd;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001871 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 char *p;
1873 enum { ALLOC_SIZE = sizeof(struct ub_scsi_cmd) + 8 };
1874 unsigned long flags;
1875 unsigned int bsize, shift;
1876 unsigned long nsec;
1877 struct completion compl;
1878 int rc;
1879
1880 init_completion(&compl);
1881
1882 rc = -ENOMEM;
Pete Zaitcev29da7932006-02-13 20:35:57 -08001883 if ((cmd = kzalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 p = (char *)cmd + sizeof(struct ub_scsi_cmd);
1886
1887 cmd->cdb[0] = 0x25;
1888 cmd->cdb_len = 10;
1889 cmd->dir = UB_DIR_READ;
1890 cmd->state = UB_CMDST_INIT;
Pete Zaitceva1cf96e2005-08-14 21:16:03 -07001891 cmd->nsg = 1;
1892 sg = &cmd->sgv[0];
FUJITA Tomonori4f33a9d2007-10-25 09:17:03 +02001893 sg_init_table(sg, UB_MAX_REQ_SG);
Jens Axboe642f1492007-10-24 11:20:47 +02001894 sg_set_page(sg, virt_to_page(p), 8, (unsigned long)p & (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 cmd->len = 8;
Pete Zaitcevf4800072005-05-01 16:05:40 -07001896 cmd->lun = lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 cmd->done = ub_probe_done;
1898 cmd->back = &compl;
1899
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08001900 spin_lock_irqsave(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 cmd->tag = sc->tagcnt++;
1902
1903 rc = ub_submit_scsi(sc, cmd);
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08001904 spin_unlock_irqrestore(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Pete Zaitcevb5600332006-05-25 20:08:50 -07001906 if (rc != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 goto err_submit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 wait_for_completion(&compl);
1910
1911 if (cmd->error != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 rc = -EIO;
1913 goto err_read;
1914 }
1915 if (cmd->act_len != 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 rc = -EIO;
1917 goto err_read;
1918 }
1919
1920 /* sd.c special-cases sector size of 0 to mean 512. Needed? Safe? */
1921 nsec = be32_to_cpu(*(__be32 *)p) + 1;
1922 bsize = be32_to_cpu(*(__be32 *)(p + 4));
1923 switch (bsize) {
1924 case 512: shift = 0; break;
1925 case 1024: shift = 1; break;
1926 case 2048: shift = 2; break;
1927 case 4096: shift = 3; break;
1928 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 rc = -EDOM;
1930 goto err_inv_bsize;
1931 }
1932
1933 ret->bsize = bsize;
1934 ret->bshift = shift;
1935 ret->nsec = nsec << shift;
1936 rc = 0;
1937
1938err_inv_bsize:
1939err_read:
1940err_submit:
1941 kfree(cmd);
1942err_alloc:
1943 return rc;
1944}
1945
1946/*
1947 */
David Howells7d12e782006-10-05 14:55:46 +01001948static void ub_probe_urb_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
1950 struct completion *cop = urb->context;
1951 complete(cop);
1952}
1953
1954static void ub_probe_timeout(unsigned long arg)
1955{
1956 struct completion *cop = (struct completion *) arg;
1957 complete(cop);
1958}
1959
1960/*
Pete Zaitcev2c2e4a22006-01-05 00:26:30 -08001961 * Reset with a Bulk reset.
1962 */
1963static int ub_sync_reset(struct ub_dev *sc)
1964{
1965 int ifnum = sc->intf->cur_altsetting->desc.bInterfaceNumber;
1966 struct usb_ctrlrequest *cr;
1967 struct completion compl;
1968 struct timer_list timer;
1969 int rc;
1970
1971 init_completion(&compl);
1972
1973 cr = &sc->work_cr;
1974 cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE;
1975 cr->bRequest = US_BULK_RESET_REQUEST;
1976 cr->wValue = cpu_to_le16(0);
1977 cr->wIndex = cpu_to_le16(ifnum);
1978 cr->wLength = cpu_to_le16(0);
1979
1980 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
1981 (unsigned char*) cr, NULL, 0, ub_probe_urb_complete, &compl);
Pete Zaitcev2c2e4a22006-01-05 00:26:30 -08001982
1983 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0) {
1984 printk(KERN_WARNING
1985 "%s: Unable to submit a bulk reset (%d)\n", sc->name, rc);
1986 return rc;
1987 }
1988
1989 init_timer(&timer);
1990 timer.function = ub_probe_timeout;
1991 timer.data = (unsigned long) &compl;
1992 timer.expires = jiffies + UB_CTRL_TIMEOUT;
1993 add_timer(&timer);
1994
1995 wait_for_completion(&compl);
1996
1997 del_timer_sync(&timer);
1998 usb_kill_urb(&sc->work_urb);
1999
2000 return sc->work_urb.status;
2001}
2002
2003/*
Pete Zaitcevf4800072005-05-01 16:05:40 -07002004 * Get number of LUNs by the way of Bulk GetMaxLUN command.
2005 */
2006static int ub_sync_getmaxlun(struct ub_dev *sc)
2007{
2008 int ifnum = sc->intf->cur_altsetting->desc.bInterfaceNumber;
2009 unsigned char *p;
2010 enum { ALLOC_SIZE = 1 };
2011 struct usb_ctrlrequest *cr;
2012 struct completion compl;
2013 struct timer_list timer;
2014 int nluns;
2015 int rc;
2016
2017 init_completion(&compl);
2018
2019 rc = -ENOMEM;
2020 if ((p = kmalloc(ALLOC_SIZE, GFP_KERNEL)) == NULL)
2021 goto err_alloc;
2022 *p = 55;
2023
2024 cr = &sc->work_cr;
2025 cr->bRequestType = USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE;
2026 cr->bRequest = US_BULK_GET_MAX_LUN;
2027 cr->wValue = cpu_to_le16(0);
2028 cr->wIndex = cpu_to_le16(ifnum);
2029 cr->wLength = cpu_to_le16(1);
2030
2031 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->recv_ctrl_pipe,
2032 (unsigned char*) cr, p, 1, ub_probe_urb_complete, &compl);
Pete Zaitcevf4800072005-05-01 16:05:40 -07002033
Pete Zaitcevb5600332006-05-25 20:08:50 -07002034 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0)
Pete Zaitcevf4800072005-05-01 16:05:40 -07002035 goto err_submit;
Pete Zaitcevf4800072005-05-01 16:05:40 -07002036
2037 init_timer(&timer);
2038 timer.function = ub_probe_timeout;
2039 timer.data = (unsigned long) &compl;
2040 timer.expires = jiffies + UB_CTRL_TIMEOUT;
2041 add_timer(&timer);
2042
2043 wait_for_completion(&compl);
2044
2045 del_timer_sync(&timer);
2046 usb_kill_urb(&sc->work_urb);
2047
Pete Zaitcevb5600332006-05-25 20:08:50 -07002048 if ((rc = sc->work_urb.status) < 0)
Pete Zaitcev64bd8452005-09-22 00:48:29 -07002049 goto err_io;
Pete Zaitcev64bd8452005-09-22 00:48:29 -07002050
Pete Zaitcevf4800072005-05-01 16:05:40 -07002051 if (sc->work_urb.actual_length != 1) {
Pete Zaitcevf4800072005-05-01 16:05:40 -07002052 nluns = 0;
2053 } else {
2054 if ((nluns = *p) == 55) {
2055 nluns = 0;
2056 } else {
2057 /* GetMaxLUN returns the maximum LUN number */
2058 nluns += 1;
2059 if (nluns > UB_MAX_LUNS)
2060 nluns = UB_MAX_LUNS;
2061 }
Pete Zaitcevf4800072005-05-01 16:05:40 -07002062 }
2063
2064 kfree(p);
2065 return nluns;
2066
Pete Zaitcev64bd8452005-09-22 00:48:29 -07002067err_io:
Pete Zaitcevf4800072005-05-01 16:05:40 -07002068err_submit:
2069 kfree(p);
2070err_alloc:
2071 return rc;
2072}
2073
2074/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 * Clear initial stalls.
2076 */
2077static int ub_probe_clear_stall(struct ub_dev *sc, int stalled_pipe)
2078{
2079 int endp;
2080 struct usb_ctrlrequest *cr;
2081 struct completion compl;
2082 struct timer_list timer;
2083 int rc;
2084
2085 init_completion(&compl);
2086
2087 endp = usb_pipeendpoint(stalled_pipe);
2088 if (usb_pipein (stalled_pipe))
2089 endp |= USB_DIR_IN;
2090
2091 cr = &sc->work_cr;
2092 cr->bRequestType = USB_RECIP_ENDPOINT;
2093 cr->bRequest = USB_REQ_CLEAR_FEATURE;
2094 cr->wValue = cpu_to_le16(USB_ENDPOINT_HALT);
2095 cr->wIndex = cpu_to_le16(endp);
2096 cr->wLength = cpu_to_le16(0);
2097
2098 usb_fill_control_urb(&sc->work_urb, sc->dev, sc->send_ctrl_pipe,
2099 (unsigned char*) cr, NULL, 0, ub_probe_urb_complete, &compl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 if ((rc = usb_submit_urb(&sc->work_urb, GFP_KERNEL)) != 0) {
2102 printk(KERN_WARNING
2103 "%s: Unable to submit a probe clear (%d)\n", sc->name, rc);
2104 return rc;
2105 }
2106
2107 init_timer(&timer);
2108 timer.function = ub_probe_timeout;
2109 timer.data = (unsigned long) &compl;
2110 timer.expires = jiffies + UB_CTRL_TIMEOUT;
2111 add_timer(&timer);
2112
2113 wait_for_completion(&compl);
2114
2115 del_timer_sync(&timer);
2116 usb_kill_urb(&sc->work_urb);
2117
David Vrabel3444b262009-04-08 17:36:28 +00002118 usb_reset_endpoint(sc->dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120 return 0;
2121}
2122
2123/*
2124 * Get the pipe settings.
2125 */
2126static int ub_get_pipes(struct ub_dev *sc, struct usb_device *dev,
2127 struct usb_interface *intf)
2128{
2129 struct usb_host_interface *altsetting = intf->cur_altsetting;
2130 struct usb_endpoint_descriptor *ep_in = NULL;
2131 struct usb_endpoint_descriptor *ep_out = NULL;
2132 struct usb_endpoint_descriptor *ep;
2133 int i;
2134
2135 /*
2136 * Find the endpoints we need.
2137 * We are expecting a minimum of 2 endpoints - in and out (bulk).
2138 * We will ignore any others.
2139 */
2140 for (i = 0; i < altsetting->desc.bNumEndpoints; i++) {
2141 ep = &altsetting->endpoint[i].desc;
2142
2143 /* Is it a BULK endpoint? */
Julia Lawalldb5e6df2008-12-29 11:19:10 +01002144 if (usb_endpoint_xfer_bulk(ep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 /* BULK in or out? */
Julia Lawalldb5e6df2008-12-29 11:19:10 +01002146 if (usb_endpoint_dir_in(ep)) {
Pete Zaitcev643616e2007-03-08 19:56:23 -08002147 if (ep_in == NULL)
2148 ep_in = ep;
2149 } else {
2150 if (ep_out == NULL)
2151 ep_out = ep;
2152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 }
2154 }
2155
2156 if (ep_in == NULL || ep_out == NULL) {
Pete Zaitcev9029b172008-04-19 14:45:24 -07002157 printk(KERN_NOTICE "%s: failed endpoint check\n", sc->name);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08002158 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 }
2160
2161 /* Calculate and store the pipe values */
2162 sc->send_ctrl_pipe = usb_sndctrlpipe(dev, 0);
2163 sc->recv_ctrl_pipe = usb_rcvctrlpipe(dev, 0);
2164 sc->send_bulk_pipe = usb_sndbulkpipe(dev,
Julia Lawalldb5e6df2008-12-29 11:19:10 +01002165 usb_endpoint_num(ep_out));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 sc->recv_bulk_pipe = usb_rcvbulkpipe(dev,
Julia Lawalldb5e6df2008-12-29 11:19:10 +01002167 usb_endpoint_num(ep_in));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
2169 return 0;
2170}
2171
2172/*
2173 * Probing is done in the process context, which allows us to cheat
2174 * and not to build a state machine for the discovery.
2175 */
2176static int ub_probe(struct usb_interface *intf,
2177 const struct usb_device_id *dev_id)
2178{
2179 struct ub_dev *sc;
Pete Zaitcevf4800072005-05-01 16:05:40 -07002180 int nluns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 int rc;
2182 int i;
2183
Pete Zaitceva00828e2005-10-22 20:15:09 -07002184 if (usb_usual_check_type(dev_id, USB_US_TYPE_UB))
2185 return -ENXIO;
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 rc = -ENOMEM;
Pete Zaitcev29da7932006-02-13 20:35:57 -08002188 if ((sc = kzalloc(sizeof(struct ub_dev), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 goto err_core;
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08002190 sc->lock = ub_next_lock();
Pete Zaitcevf4800072005-05-01 16:05:40 -07002191 INIT_LIST_HEAD(&sc->luns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 usb_init_urb(&sc->work_urb);
2193 tasklet_init(&sc->tasklet, ub_scsi_action, (unsigned long)sc);
2194 atomic_set(&sc->poison, 0);
David Howellsc4028952006-11-22 14:57:56 +00002195 INIT_WORK(&sc->reset_work, ub_reset_task);
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08002196 init_waitqueue_head(&sc->reset_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 init_timer(&sc->work_timer);
2199 sc->work_timer.data = (unsigned long) sc;
2200 sc->work_timer.function = ub_urb_timeout;
2201
2202 ub_init_completion(&sc->work_done);
2203 sc->work_done.done = 1; /* A little yuk, but oh well... */
2204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 sc->dev = interface_to_usbdev(intf);
2206 sc->intf = intf;
2207 // sc->ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 usb_set_intfdata(intf, sc);
2209 usb_get_dev(sc->dev);
Pete Zaitcev77ef6c42006-05-03 00:16:00 -07002210 /*
2211 * Since we give the interface struct to the block level through
2212 * disk->driverfs_dev, we have to pin it. Otherwise, block_uevent
2213 * oopses on close after a disconnect (kernels 2.6.16 and up).
2214 */
2215 usb_get_intf(sc->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
Pete Zaitcevf4800072005-05-01 16:05:40 -07002217 snprintf(sc->name, 12, DRV_NAME "(%d.%d)",
2218 sc->dev->bus->busnum, sc->dev->devnum);
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 /* XXX Verify that we can handle the device (from descriptors) */
2221
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08002222 if (ub_get_pipes(sc, sc->dev, intf) != 0)
2223 goto err_dev_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 /*
2226 * At this point, all USB initialization is done, do upper layer.
2227 * We really hate halfway initialized structures, so from the
2228 * invariants perspective, this ub_dev is fully constructed at
2229 * this point.
2230 */
2231
2232 /*
2233 * This is needed to clear toggles. It is a problem only if we do
2234 * `rmmod ub && modprobe ub` without disconnects, but we like that.
2235 */
Pete Zaitcevc6c88832005-09-22 00:49:45 -07002236#if 0 /* iPod Mini fails if we do this (big white iPod works) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 ub_probe_clear_stall(sc, sc->recv_bulk_pipe);
2238 ub_probe_clear_stall(sc, sc->send_bulk_pipe);
Pete Zaitcevc6c88832005-09-22 00:49:45 -07002239#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 /*
2242 * The way this is used by the startup code is a little specific.
2243 * A SCSI check causes a USB stall. Our common case code sees it
2244 * and clears the check, after which the device is ready for use.
2245 * But if a check was not present, any command other than
2246 * TEST_UNIT_READY ends with a lockup (including REQUEST_SENSE).
2247 *
2248 * If we neglect to clear the SCSI check, the first real command fails
2249 * (which is the capacity readout). We clear that and retry, but why
2250 * causing spurious retries for no reason.
2251 *
2252 * Revalidation may start with its own TEST_UNIT_READY, but that one
2253 * has to succeed, so we clear checks with an additional one here.
2254 * In any case it's not our business how revaliadation is implemented.
2255 */
Pete Zaitcevb5600332006-05-25 20:08:50 -07002256 for (i = 0; i < 3; i++) { /* Retries for the schwag key from KS'04 */
Pete Zaitcevf4800072005-05-01 16:05:40 -07002257 if ((rc = ub_sync_tur(sc, NULL)) <= 0) break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 if (rc != 0x6) break;
2259 msleep(10);
2260 }
2261
Pete Zaitcevf4800072005-05-01 16:05:40 -07002262 nluns = 1;
2263 for (i = 0; i < 3; i++) {
Pete Zaitcev11a223a2006-03-02 16:53:00 -08002264 if ((rc = ub_sync_getmaxlun(sc)) < 0)
Pete Zaitcevf4800072005-05-01 16:05:40 -07002265 break;
Pete Zaitcevf4800072005-05-01 16:05:40 -07002266 if (rc != 0) {
2267 nluns = rc;
2268 break;
2269 }
Pete Zaitcev9f793d22005-06-06 13:54:59 -07002270 msleep(100);
Pete Zaitcevf4800072005-05-01 16:05:40 -07002271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Pete Zaitcevf4800072005-05-01 16:05:40 -07002273 for (i = 0; i < nluns; i++) {
2274 ub_probe_lun(sc, i);
2275 }
2276 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08002278err_dev_desc:
Pete Zaitcevf4800072005-05-01 16:05:40 -07002279 usb_set_intfdata(intf, NULL);
Pete Zaitcev77ef6c42006-05-03 00:16:00 -07002280 usb_put_intf(sc->intf);
Pete Zaitcevf4800072005-05-01 16:05:40 -07002281 usb_put_dev(sc->dev);
2282 kfree(sc);
2283err_core:
2284 return rc;
2285}
2286
2287static int ub_probe_lun(struct ub_dev *sc, int lnum)
2288{
2289 struct ub_lun *lun;
Jens Axboe165125e2007-07-24 09:28:11 +02002290 struct request_queue *q;
Pete Zaitcevf4800072005-05-01 16:05:40 -07002291 struct gendisk *disk;
2292 int rc;
2293
2294 rc = -ENOMEM;
Pete Zaitcev29da7932006-02-13 20:35:57 -08002295 if ((lun = kzalloc(sizeof(struct ub_lun), GFP_KERNEL)) == NULL)
Pete Zaitcevf4800072005-05-01 16:05:40 -07002296 goto err_alloc;
Pete Zaitcevf4800072005-05-01 16:05:40 -07002297 lun->num = lnum;
2298
2299 rc = -ENOSR;
2300 if ((lun->id = ub_id_get()) == -1)
2301 goto err_id;
2302
2303 lun->udev = sc;
Pete Zaitcevf4800072005-05-01 16:05:40 -07002304
2305 snprintf(lun->name, 16, DRV_NAME "%c(%d.%d.%d)",
2306 lun->id + 'a', sc->dev->bus->busnum, sc->dev->devnum, lun->num);
2307
2308 lun->removable = 1; /* XXX Query this from the device */
2309 lun->changed = 1; /* ub_revalidate clears only */
Pete Zaitcevf4800072005-05-01 16:05:40 -07002310 ub_revalidate(sc, lun);
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 rc = -ENOMEM;
Pete Zaitcev4fb729f2005-12-17 02:34:12 -08002313 if ((disk = alloc_disk(UB_PARTS_PER_LUN)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 goto err_diskalloc;
2315
Pete Zaitcevf4800072005-05-01 16:05:40 -07002316 sprintf(disk->disk_name, DRV_NAME "%c", lun->id + 'a');
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 disk->major = UB_MAJOR;
Pete Zaitcev4fb729f2005-12-17 02:34:12 -08002318 disk->first_minor = lun->id * UB_PARTS_PER_LUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 disk->fops = &ub_bd_fops;
Pete Zaitcevf4800072005-05-01 16:05:40 -07002320 disk->private_data = lun;
Pete Zaitcev64bd8452005-09-22 00:48:29 -07002321 disk->driverfs_dev = &sc->intf->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323 rc = -ENOMEM;
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08002324 if ((q = blk_init_queue(ub_request_fn, sc->lock)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 goto err_blkqinit;
2326
2327 disk->queue = q;
2328
Pete Zaitcevf4800072005-05-01 16:05:40 -07002329 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
Martin K. Petersen8a783622010-02-26 00:20:39 -05002330 blk_queue_max_segments(q, UB_MAX_REQ_SG);
Pete Zaitcevf4800072005-05-01 16:05:40 -07002331 blk_queue_segment_boundary(q, 0xffffffff); /* Dubious. */
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05002332 blk_queue_max_hw_sectors(q, UB_MAX_SECTORS);
Martin K. Petersene1defc42009-05-22 17:17:49 -04002333 blk_queue_logical_block_size(q, lun->capacity.bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Pete Zaitcev688e9fb2006-05-25 20:04:54 -07002335 lun->disk = disk;
Pete Zaitcevf4800072005-05-01 16:05:40 -07002336 q->queuedata = lun;
Pete Zaitcev688e9fb2006-05-25 20:04:54 -07002337 list_add(&lun->link, &sc->luns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Pete Zaitcevf4800072005-05-01 16:05:40 -07002339 set_capacity(disk, lun->capacity.nsec);
2340 if (lun->removable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 disk->flags |= GENHD_FL_REMOVABLE;
2342
2343 add_disk(disk);
2344
2345 return 0;
2346
2347err_blkqinit:
2348 put_disk(disk);
2349err_diskalloc:
Pete Zaitcevf4800072005-05-01 16:05:40 -07002350 ub_id_put(lun->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351err_id:
Pete Zaitcevf4800072005-05-01 16:05:40 -07002352 kfree(lun);
2353err_alloc:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 return rc;
2355}
2356
2357static void ub_disconnect(struct usb_interface *intf)
2358{
2359 struct ub_dev *sc = usb_get_intfdata(intf);
Pete Zaitcevf4800072005-05-01 16:05:40 -07002360 struct ub_lun *lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 unsigned long flags;
2362
2363 /*
2364 * Prevent ub_bd_release from pulling the rug from under us.
2365 * XXX This is starting to look like a kref.
2366 * XXX Why not to take this ref at probe time?
2367 */
2368 spin_lock_irqsave(&ub_lock, flags);
2369 sc->openc++;
2370 spin_unlock_irqrestore(&ub_lock, flags);
2371
2372 /*
Pete Zaitcev9029b172008-04-19 14:45:24 -07002373 * Fence stall clearings, operations triggered by unlinkings and so on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 * We do not attempt to unlink any URBs, because we do not trust the
2375 * unlink paths in HC drivers. Also, we get -84 upon disconnect anyway.
2376 */
2377 atomic_set(&sc->poison, 1);
2378
2379 /*
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08002380 * Wait for reset to end, if any.
2381 */
2382 wait_event(sc->reset_wait, !sc->reset);
2383
2384 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 * Blow away queued commands.
2386 *
2387 * Actually, this never works, because before we get here
2388 * the HCD terminates outstanding URB(s). It causes our
2389 * SCSI command queue to advance, commands fail to submit,
2390 * and the whole queue drains. So, we just use this code to
2391 * print warnings.
2392 */
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08002393 spin_lock_irqsave(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 {
2395 struct ub_scsi_cmd *cmd;
2396 int cnt = 0;
Pete Zaitcev2c26c9e2005-12-17 02:16:43 -08002397 while ((cmd = ub_cmdq_peek(sc)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 cmd->error = -ENOTCONN;
2399 cmd->state = UB_CMDST_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 ub_cmdq_pop(sc);
2401 (*cmd->done)(sc, cmd);
2402 cnt++;
2403 }
2404 if (cnt != 0) {
2405 printk(KERN_WARNING "%s: "
2406 "%d was queued after shutdown\n", sc->name, cnt);
2407 }
2408 }
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08002409 spin_unlock_irqrestore(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 /*
2412 * Unregister the upper layer.
2413 */
Matthias Kaehlckea69228d2007-07-09 12:03:07 -07002414 list_for_each_entry(lun, &sc->luns, link) {
Pete Zaitcev688e9fb2006-05-25 20:04:54 -07002415 del_gendisk(lun->disk);
Pete Zaitcevf4800072005-05-01 16:05:40 -07002416 /*
2417 * I wish I could do:
Nick Piggin75ad23b2008-04-29 14:48:33 +02002418 * queue_flag_set(QUEUE_FLAG_DEAD, q);
Pete Zaitcevf4800072005-05-01 16:05:40 -07002419 * As it is, we rely on our internal poisoning and let
2420 * the upper levels to spin furiously failing all the I/O.
2421 */
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 * Testing for -EINPROGRESS is always a bug, so we are bending
2426 * the rules a little.
2427 */
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08002428 spin_lock_irqsave(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (sc->work_urb.status == -EINPROGRESS) { /* janitors: ignore */
2430 printk(KERN_WARNING "%s: "
2431 "URB is active after disconnect\n", sc->name);
2432 }
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08002433 spin_unlock_irqrestore(sc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435 /*
Pete Zaitcev9029b172008-04-19 14:45:24 -07002436 * There is virtually no chance that other CPU runs a timeout so long
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 * after ub_urb_complete should have called del_timer, but only if HCD
2438 * didn't forget to deliver a callback on unlink.
2439 */
2440 del_timer_sync(&sc->work_timer);
2441
2442 /*
2443 * At this point there must be no commands coming from anyone
2444 * and no URBs left in transit.
2445 */
2446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 ub_put(sc);
2448}
2449
2450static struct usb_driver ub_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 .name = "ub",
2452 .probe = ub_probe,
2453 .disconnect = ub_disconnect,
2454 .id_table = ub_usb_ids,
Pete Zaitcevd73b7af2008-11-10 21:11:11 -07002455 .pre_reset = ub_pre_reset,
2456 .post_reset = ub_post_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457};
2458
2459static int __init ub_init(void)
2460{
2461 int rc;
Pete Zaitcev65b4fe52005-12-28 14:22:17 -08002462 int i;
2463
2464 for (i = 0; i < UB_QLOCK_NUM; i++)
2465 spin_lock_init(&ub_qlockv[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 if ((rc = register_blkdev(UB_MAJOR, DRV_NAME)) != 0)
2468 goto err_regblkdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 if ((rc = usb_register(&ub_driver)) != 0)
2471 goto err_register;
2472
Pete Zaitceva00828e2005-10-22 20:15:09 -07002473 usb_usual_set_present(USB_US_TYPE_UB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return 0;
2475
2476err_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 unregister_blkdev(UB_MAJOR, DRV_NAME);
2478err_regblkdev:
2479 return rc;
2480}
2481
2482static void __exit ub_exit(void)
2483{
2484 usb_deregister(&ub_driver);
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 unregister_blkdev(UB_MAJOR, DRV_NAME);
Pete Zaitceva00828e2005-10-22 20:15:09 -07002487 usb_usual_clear_present(USB_US_TYPE_UB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
2490module_init(ub_init);
2491module_exit(ub_exit);
2492
2493MODULE_LICENSE("GPL");