blob: d5f9f4516d887f0e31cc94a2a35057c84651ddea [file] [log] [blame]
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001/*
2 * Virtio SCSI HBA driver
3 *
4 * Copyright IBM Corp. 2010
5 * Copyright Red Hat, Inc. 2011
6 *
7 * Authors:
8 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
9 * Paolo Bonzini <pbonzini@redhat.com>
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
13 *
14 */
15
16#include <linux/module.h>
17#include <linux/slab.h>
18#include <linux/mempool.h>
19#include <linux/virtio.h>
20#include <linux/virtio_ids.h>
21#include <linux/virtio_config.h>
22#include <linux/virtio_scsi.h>
23#include <scsi/scsi_host.h>
24#include <scsi/scsi_device.h>
25#include <scsi/scsi_cmnd.h>
26
27#define VIRTIO_SCSI_MEMPOOL_SZ 64
Cong Meng365a7152012-07-05 17:06:43 +080028#define VIRTIO_SCSI_EVENT_LEN 8
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010029
30/* Command queue element */
31struct virtio_scsi_cmd {
32 struct scsi_cmnd *sc;
33 struct completion *comp;
34 union {
35 struct virtio_scsi_cmd_req cmd;
36 struct virtio_scsi_ctrl_tmf_req tmf;
37 struct virtio_scsi_ctrl_an_req an;
38 } req;
39 union {
40 struct virtio_scsi_cmd_resp cmd;
41 struct virtio_scsi_ctrl_tmf_resp tmf;
42 struct virtio_scsi_ctrl_an_resp an;
43 struct virtio_scsi_event evt;
44 } resp;
45} ____cacheline_aligned_in_smp;
46
Cong Meng365a7152012-07-05 17:06:43 +080047struct virtio_scsi_event_node {
48 struct virtio_scsi *vscsi;
49 struct virtio_scsi_event event;
50 struct work_struct work;
51};
52
Paolo Bonzini139fe452012-06-13 16:56:32 +020053struct virtio_scsi_vq {
54 /* Protects vq */
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010055 spinlock_t vq_lock;
56
Paolo Bonzini139fe452012-06-13 16:56:32 +020057 struct virtqueue *vq;
58};
59
Paolo Bonzini2bd37f02012-06-13 16:56:34 +020060/* Per-target queue state */
61struct virtio_scsi_target_state {
62 /* Protects sg. Lock hierarchy is tgt_lock -> vq_lock. */
63 spinlock_t tgt_lock;
64
65 /* For sglist construction when adding commands to the virtqueue. */
66 struct scatterlist sg[];
67};
68
Paolo Bonzini139fe452012-06-13 16:56:32 +020069/* Driver instance state */
70struct virtio_scsi {
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010071 struct virtio_device *vdev;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +020072
Paolo Bonzini139fe452012-06-13 16:56:32 +020073 struct virtio_scsi_vq ctrl_vq;
74 struct virtio_scsi_vq event_vq;
75 struct virtio_scsi_vq req_vq;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010076
Cong Meng365a7152012-07-05 17:06:43 +080077 /* Get some buffers ready for event vq */
78 struct virtio_scsi_event_node event_list[VIRTIO_SCSI_EVENT_LEN];
79
Paolo Bonzini2bd37f02012-06-13 16:56:34 +020080 struct virtio_scsi_target_state *tgt[];
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010081};
82
83static struct kmem_cache *virtscsi_cmd_cache;
84static mempool_t *virtscsi_cmd_pool;
85
86static inline struct Scsi_Host *virtio_scsi_host(struct virtio_device *vdev)
87{
88 return vdev->priv;
89}
90
91static void virtscsi_compute_resid(struct scsi_cmnd *sc, u32 resid)
92{
93 if (!resid)
94 return;
95
96 if (!scsi_bidi_cmnd(sc)) {
97 scsi_set_resid(sc, resid);
98 return;
99 }
100
101 scsi_in(sc)->resid = min(resid, scsi_in(sc)->length);
102 scsi_out(sc)->resid = resid - scsi_in(sc)->resid;
103}
104
105/**
106 * virtscsi_complete_cmd - finish a scsi_cmd and invoke scsi_done
107 *
108 * Called with vq_lock held.
109 */
110static void virtscsi_complete_cmd(void *buf)
111{
112 struct virtio_scsi_cmd *cmd = buf;
113 struct scsi_cmnd *sc = cmd->sc;
114 struct virtio_scsi_cmd_resp *resp = &cmd->resp.cmd;
115
116 dev_dbg(&sc->device->sdev_gendev,
117 "cmd %p response %u status %#02x sense_len %u\n",
118 sc, resp->response, resp->status, resp->sense_len);
119
120 sc->result = resp->status;
121 virtscsi_compute_resid(sc, resp->resid);
122 switch (resp->response) {
123 case VIRTIO_SCSI_S_OK:
124 set_host_byte(sc, DID_OK);
125 break;
126 case VIRTIO_SCSI_S_OVERRUN:
127 set_host_byte(sc, DID_ERROR);
128 break;
129 case VIRTIO_SCSI_S_ABORTED:
130 set_host_byte(sc, DID_ABORT);
131 break;
132 case VIRTIO_SCSI_S_BAD_TARGET:
133 set_host_byte(sc, DID_BAD_TARGET);
134 break;
135 case VIRTIO_SCSI_S_RESET:
136 set_host_byte(sc, DID_RESET);
137 break;
138 case VIRTIO_SCSI_S_BUSY:
139 set_host_byte(sc, DID_BUS_BUSY);
140 break;
141 case VIRTIO_SCSI_S_TRANSPORT_FAILURE:
142 set_host_byte(sc, DID_TRANSPORT_DISRUPTED);
143 break;
144 case VIRTIO_SCSI_S_TARGET_FAILURE:
145 set_host_byte(sc, DID_TARGET_FAILURE);
146 break;
147 case VIRTIO_SCSI_S_NEXUS_FAILURE:
148 set_host_byte(sc, DID_NEXUS_FAILURE);
149 break;
150 default:
151 scmd_printk(KERN_WARNING, sc, "Unknown response %d",
152 resp->response);
153 /* fall through */
154 case VIRTIO_SCSI_S_FAILURE:
155 set_host_byte(sc, DID_ERROR);
156 break;
157 }
158
159 WARN_ON(resp->sense_len > VIRTIO_SCSI_SENSE_SIZE);
160 if (sc->sense_buffer) {
161 memcpy(sc->sense_buffer, resp->sense,
162 min_t(u32, resp->sense_len, VIRTIO_SCSI_SENSE_SIZE));
163 if (resp->sense_len)
164 set_driver_byte(sc, DRIVER_SENSE);
165 }
166
167 mempool_free(cmd, virtscsi_cmd_pool);
168 sc->scsi_done(sc);
169}
170
171static void virtscsi_vq_done(struct virtqueue *vq, void (*fn)(void *buf))
172{
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100173 void *buf;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100174 unsigned int len;
175
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100176 do {
177 virtqueue_disable_cb(vq);
178 while ((buf = virtqueue_get_buf(vq, &len)) != NULL)
179 fn(buf);
180 } while (!virtqueue_enable_cb(vq));
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100181}
182
183static void virtscsi_req_done(struct virtqueue *vq)
184{
Paolo Bonzini139fe452012-06-13 16:56:32 +0200185 struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
186 struct virtio_scsi *vscsi = shost_priv(sh);
187 unsigned long flags;
188
189 spin_lock_irqsave(&vscsi->req_vq.vq_lock, flags);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100190 virtscsi_vq_done(vq, virtscsi_complete_cmd);
Paolo Bonzini139fe452012-06-13 16:56:32 +0200191 spin_unlock_irqrestore(&vscsi->req_vq.vq_lock, flags);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100192};
193
194static void virtscsi_complete_free(void *buf)
195{
196 struct virtio_scsi_cmd *cmd = buf;
197
198 if (cmd->comp)
199 complete_all(cmd->comp);
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200200 else
201 mempool_free(cmd, virtscsi_cmd_pool);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100202}
203
204static void virtscsi_ctrl_done(struct virtqueue *vq)
205{
Paolo Bonzini139fe452012-06-13 16:56:32 +0200206 struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
207 struct virtio_scsi *vscsi = shost_priv(sh);
208 unsigned long flags;
209
210 spin_lock_irqsave(&vscsi->ctrl_vq.vq_lock, flags);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100211 virtscsi_vq_done(vq, virtscsi_complete_free);
Paolo Bonzini139fe452012-06-13 16:56:32 +0200212 spin_unlock_irqrestore(&vscsi->ctrl_vq.vq_lock, flags);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100213};
214
Cong Meng365a7152012-07-05 17:06:43 +0800215static int virtscsi_kick_event(struct virtio_scsi *vscsi,
216 struct virtio_scsi_event_node *event_node)
217{
Rusty Russell4614e512012-10-16 23:56:16 +1030218 int err;
Cong Meng365a7152012-07-05 17:06:43 +0800219 struct scatterlist sg;
220 unsigned long flags;
221
Richard W.M. Jones2e9c9df2012-10-02 17:25:46 +0200222 sg_init_one(&sg, &event_node->event, sizeof(struct virtio_scsi_event));
Cong Meng365a7152012-07-05 17:06:43 +0800223
224 spin_lock_irqsave(&vscsi->event_vq.vq_lock, flags);
225
Rusty Russell4614e512012-10-16 23:56:16 +1030226 err = virtqueue_add_buf(vscsi->event_vq.vq, &sg, 0, 1, event_node,
227 GFP_ATOMIC);
228 if (!err)
Cong Meng365a7152012-07-05 17:06:43 +0800229 virtqueue_kick(vscsi->event_vq.vq);
230
231 spin_unlock_irqrestore(&vscsi->event_vq.vq_lock, flags);
232
Rusty Russell4614e512012-10-16 23:56:16 +1030233 return err;
Cong Meng365a7152012-07-05 17:06:43 +0800234}
235
236static int virtscsi_kick_event_all(struct virtio_scsi *vscsi)
237{
238 int i;
239
240 for (i = 0; i < VIRTIO_SCSI_EVENT_LEN; i++) {
241 vscsi->event_list[i].vscsi = vscsi;
242 virtscsi_kick_event(vscsi, &vscsi->event_list[i]);
243 }
244
245 return 0;
246}
247
248static void virtscsi_cancel_event_work(struct virtio_scsi *vscsi)
249{
250 int i;
251
252 for (i = 0; i < VIRTIO_SCSI_EVENT_LEN; i++)
253 cancel_work_sync(&vscsi->event_list[i].work);
254}
255
256static void virtscsi_handle_transport_reset(struct virtio_scsi *vscsi,
257 struct virtio_scsi_event *event)
258{
259 struct scsi_device *sdev;
260 struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
261 unsigned int target = event->lun[1];
262 unsigned int lun = (event->lun[2] << 8) | event->lun[3];
263
264 switch (event->reason) {
265 case VIRTIO_SCSI_EVT_RESET_RESCAN:
266 scsi_add_device(shost, 0, target, lun);
267 break;
268 case VIRTIO_SCSI_EVT_RESET_REMOVED:
269 sdev = scsi_device_lookup(shost, 0, target, lun);
270 if (sdev) {
271 scsi_remove_device(sdev);
272 scsi_device_put(sdev);
273 } else {
274 pr_err("SCSI device %d 0 %d %d not found\n",
275 shost->host_no, target, lun);
276 }
277 break;
278 default:
279 pr_info("Unsupport virtio scsi event reason %x\n", event->reason);
280 }
281}
282
Paolo Bonzini865b58c2012-10-02 17:25:48 +0200283static void virtscsi_handle_param_change(struct virtio_scsi *vscsi,
284 struct virtio_scsi_event *event)
285{
286 struct scsi_device *sdev;
287 struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
288 unsigned int target = event->lun[1];
289 unsigned int lun = (event->lun[2] << 8) | event->lun[3];
290 u8 asc = event->reason & 255;
291 u8 ascq = event->reason >> 8;
292
293 sdev = scsi_device_lookup(shost, 0, target, lun);
294 if (!sdev) {
295 pr_err("SCSI device %d 0 %d %d not found\n",
296 shost->host_no, target, lun);
297 return;
298 }
299
300 /* Handle "Parameters changed", "Mode parameters changed", and
301 "Capacity data has changed". */
302 if (asc == 0x2a && (ascq == 0x00 || ascq == 0x01 || ascq == 0x09))
303 scsi_rescan_device(&sdev->sdev_gendev);
304
305 scsi_device_put(sdev);
306}
307
Cong Meng365a7152012-07-05 17:06:43 +0800308static void virtscsi_handle_event(struct work_struct *work)
309{
310 struct virtio_scsi_event_node *event_node =
311 container_of(work, struct virtio_scsi_event_node, work);
312 struct virtio_scsi *vscsi = event_node->vscsi;
313 struct virtio_scsi_event *event = &event_node->event;
314
315 if (event->event & VIRTIO_SCSI_T_EVENTS_MISSED) {
316 event->event &= ~VIRTIO_SCSI_T_EVENTS_MISSED;
317 scsi_scan_host(virtio_scsi_host(vscsi->vdev));
318 }
319
320 switch (event->event) {
321 case VIRTIO_SCSI_T_NO_EVENT:
322 break;
323 case VIRTIO_SCSI_T_TRANSPORT_RESET:
324 virtscsi_handle_transport_reset(vscsi, event);
325 break;
Paolo Bonzini865b58c2012-10-02 17:25:48 +0200326 case VIRTIO_SCSI_T_PARAM_CHANGE:
327 virtscsi_handle_param_change(vscsi, event);
328 break;
Cong Meng365a7152012-07-05 17:06:43 +0800329 default:
330 pr_err("Unsupport virtio scsi event %x\n", event->event);
331 }
332 virtscsi_kick_event(vscsi, event_node);
333}
334
335static void virtscsi_complete_event(void *buf)
336{
337 struct virtio_scsi_event_node *event_node = buf;
338
339 INIT_WORK(&event_node->work, virtscsi_handle_event);
340 schedule_work(&event_node->work);
341}
342
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100343static void virtscsi_event_done(struct virtqueue *vq)
344{
Paolo Bonzini139fe452012-06-13 16:56:32 +0200345 struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
346 struct virtio_scsi *vscsi = shost_priv(sh);
347 unsigned long flags;
348
349 spin_lock_irqsave(&vscsi->event_vq.vq_lock, flags);
Cong Meng365a7152012-07-05 17:06:43 +0800350 virtscsi_vq_done(vq, virtscsi_complete_event);
Paolo Bonzini139fe452012-06-13 16:56:32 +0200351 spin_unlock_irqrestore(&vscsi->event_vq.vq_lock, flags);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100352};
353
354static void virtscsi_map_sgl(struct scatterlist *sg, unsigned int *p_idx,
355 struct scsi_data_buffer *sdb)
356{
357 struct sg_table *table = &sdb->table;
358 struct scatterlist *sg_elem;
359 unsigned int idx = *p_idx;
360 int i;
361
362 for_each_sg(table->sgl, sg_elem, table->nents, i)
Wang Sen27e99ad2012-07-30 14:25:06 +0800363 sg[idx++] = *sg_elem;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100364
365 *p_idx = idx;
366}
367
368/**
369 * virtscsi_map_cmd - map a scsi_cmd to a virtqueue scatterlist
370 * @vscsi : virtio_scsi state
371 * @cmd : command structure
372 * @out_num : number of read-only elements
373 * @in_num : number of write-only elements
374 * @req_size : size of the request buffer
375 * @resp_size : size of the response buffer
376 *
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200377 * Called with tgt_lock held.
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100378 */
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200379static void virtscsi_map_cmd(struct virtio_scsi_target_state *tgt,
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100380 struct virtio_scsi_cmd *cmd,
381 unsigned *out_num, unsigned *in_num,
382 size_t req_size, size_t resp_size)
383{
384 struct scsi_cmnd *sc = cmd->sc;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200385 struct scatterlist *sg = tgt->sg;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100386 unsigned int idx = 0;
387
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100388 /* Request header. */
389 sg_set_buf(&sg[idx++], &cmd->req, req_size);
390
391 /* Data-out buffer. */
392 if (sc && sc->sc_data_direction != DMA_FROM_DEVICE)
393 virtscsi_map_sgl(sg, &idx, scsi_out(sc));
394
395 *out_num = idx;
396
397 /* Response header. */
398 sg_set_buf(&sg[idx++], &cmd->resp, resp_size);
399
400 /* Data-in buffer */
401 if (sc && sc->sc_data_direction != DMA_TO_DEVICE)
402 virtscsi_map_sgl(sg, &idx, scsi_in(sc));
403
404 *in_num = idx - *out_num;
405}
406
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200407static int virtscsi_kick_cmd(struct virtio_scsi_target_state *tgt,
408 struct virtio_scsi_vq *vq,
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100409 struct virtio_scsi_cmd *cmd,
410 size_t req_size, size_t resp_size, gfp_t gfp)
411{
412 unsigned int out_num, in_num;
413 unsigned long flags;
Rusty Russell4614e512012-10-16 23:56:16 +1030414 int err;
415 bool needs_kick = false;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100416
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200417 spin_lock_irqsave(&tgt->tgt_lock, flags);
418 virtscsi_map_cmd(tgt, cmd, &out_num, &in_num, req_size, resp_size);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100419
Paolo Bonzini139fe452012-06-13 16:56:32 +0200420 spin_lock(&vq->vq_lock);
Rusty Russell4614e512012-10-16 23:56:16 +1030421 err = virtqueue_add_buf(vq->vq, tgt->sg, out_num, in_num, cmd, gfp);
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200422 spin_unlock(&tgt->tgt_lock);
Rusty Russell4614e512012-10-16 23:56:16 +1030423 if (!err)
424 needs_kick = virtqueue_kick_prepare(vq->vq);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100425
Paolo Bonzinibce750b2012-06-13 16:56:33 +0200426 spin_unlock_irqrestore(&vq->vq_lock, flags);
Paolo Bonzini139fe452012-06-13 16:56:32 +0200427
Rusty Russell4614e512012-10-16 23:56:16 +1030428 if (needs_kick)
Paolo Bonzini139fe452012-06-13 16:56:32 +0200429 virtqueue_notify(vq->vq);
Rusty Russell4614e512012-10-16 23:56:16 +1030430 return err;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100431}
432
433static int virtscsi_queuecommand(struct Scsi_Host *sh, struct scsi_cmnd *sc)
434{
435 struct virtio_scsi *vscsi = shost_priv(sh);
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200436 struct virtio_scsi_target_state *tgt = vscsi->tgt[sc->device->id];
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100437 struct virtio_scsi_cmd *cmd;
438 int ret;
439
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200440 struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
441 BUG_ON(scsi_sg_count(sc) > shost->sg_tablesize);
442
443 /* TODO: check feature bit and fail if unsupported? */
444 BUG_ON(sc->sc_data_direction == DMA_BIDIRECTIONAL);
445
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100446 dev_dbg(&sc->device->sdev_gendev,
447 "cmd %p CDB: %#02x\n", sc, sc->cmnd[0]);
448
449 ret = SCSI_MLQUEUE_HOST_BUSY;
450 cmd = mempool_alloc(virtscsi_cmd_pool, GFP_ATOMIC);
451 if (!cmd)
452 goto out;
453
454 memset(cmd, 0, sizeof(*cmd));
455 cmd->sc = sc;
456 cmd->req.cmd = (struct virtio_scsi_cmd_req){
457 .lun[0] = 1,
458 .lun[1] = sc->device->id,
459 .lun[2] = (sc->device->lun >> 8) | 0x40,
460 .lun[3] = sc->device->lun & 0xff,
461 .tag = (unsigned long)sc,
462 .task_attr = VIRTIO_SCSI_S_SIMPLE,
463 .prio = 0,
464 .crn = 0,
465 };
466
467 BUG_ON(sc->cmd_len > VIRTIO_SCSI_CDB_SIZE);
468 memcpy(cmd->req.cmd.cdb, sc->cmnd, sc->cmd_len);
469
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200470 if (virtscsi_kick_cmd(tgt, &vscsi->req_vq, cmd,
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100471 sizeof cmd->req.cmd, sizeof cmd->resp.cmd,
Rusty Russell4614e512012-10-16 23:56:16 +1030472 GFP_ATOMIC) == 0)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100473 ret = 0;
474
475out:
476 return ret;
477}
478
479static int virtscsi_tmf(struct virtio_scsi *vscsi, struct virtio_scsi_cmd *cmd)
480{
481 DECLARE_COMPLETION_ONSTACK(comp);
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200482 struct virtio_scsi_target_state *tgt = vscsi->tgt[cmd->sc->device->id];
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200483 int ret = FAILED;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100484
485 cmd->comp = &comp;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200486 if (virtscsi_kick_cmd(tgt, &vscsi->ctrl_vq, cmd,
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200487 sizeof cmd->req.tmf, sizeof cmd->resp.tmf,
488 GFP_NOIO) < 0)
489 goto out;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100490
491 wait_for_completion(&comp);
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200492 if (cmd->resp.tmf.response == VIRTIO_SCSI_S_OK ||
493 cmd->resp.tmf.response == VIRTIO_SCSI_S_FUNCTION_SUCCEEDED)
494 ret = SUCCESS;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100495
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200496out:
497 mempool_free(cmd, virtscsi_cmd_pool);
498 return ret;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100499}
500
501static int virtscsi_device_reset(struct scsi_cmnd *sc)
502{
503 struct virtio_scsi *vscsi = shost_priv(sc->device->host);
504 struct virtio_scsi_cmd *cmd;
505
506 sdev_printk(KERN_INFO, sc->device, "device reset\n");
507 cmd = mempool_alloc(virtscsi_cmd_pool, GFP_NOIO);
508 if (!cmd)
509 return FAILED;
510
511 memset(cmd, 0, sizeof(*cmd));
512 cmd->sc = sc;
513 cmd->req.tmf = (struct virtio_scsi_ctrl_tmf_req){
514 .type = VIRTIO_SCSI_T_TMF,
515 .subtype = VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET,
516 .lun[0] = 1,
517 .lun[1] = sc->device->id,
518 .lun[2] = (sc->device->lun >> 8) | 0x40,
519 .lun[3] = sc->device->lun & 0xff,
520 };
521 return virtscsi_tmf(vscsi, cmd);
522}
523
524static int virtscsi_abort(struct scsi_cmnd *sc)
525{
526 struct virtio_scsi *vscsi = shost_priv(sc->device->host);
527 struct virtio_scsi_cmd *cmd;
528
529 scmd_printk(KERN_INFO, sc, "abort\n");
530 cmd = mempool_alloc(virtscsi_cmd_pool, GFP_NOIO);
531 if (!cmd)
532 return FAILED;
533
534 memset(cmd, 0, sizeof(*cmd));
535 cmd->sc = sc;
536 cmd->req.tmf = (struct virtio_scsi_ctrl_tmf_req){
537 .type = VIRTIO_SCSI_T_TMF,
538 .subtype = VIRTIO_SCSI_T_TMF_ABORT_TASK,
539 .lun[0] = 1,
540 .lun[1] = sc->device->id,
541 .lun[2] = (sc->device->lun >> 8) | 0x40,
542 .lun[3] = sc->device->lun & 0xff,
543 .tag = (unsigned long)sc,
544 };
545 return virtscsi_tmf(vscsi, cmd);
546}
547
548static struct scsi_host_template virtscsi_host_template = {
549 .module = THIS_MODULE,
550 .name = "Virtio SCSI HBA",
551 .proc_name = "virtio_scsi",
552 .queuecommand = virtscsi_queuecommand,
553 .this_id = -1,
554 .eh_abort_handler = virtscsi_abort,
555 .eh_device_reset_handler = virtscsi_device_reset,
556
557 .can_queue = 1024,
558 .dma_boundary = UINT_MAX,
559 .use_clustering = ENABLE_CLUSTERING,
560};
561
562#define virtscsi_config_get(vdev, fld) \
563 ({ \
564 typeof(((struct virtio_scsi_config *)0)->fld) __val; \
565 vdev->config->get(vdev, \
566 offsetof(struct virtio_scsi_config, fld), \
567 &__val, sizeof(__val)); \
568 __val; \
569 })
570
571#define virtscsi_config_set(vdev, fld, val) \
572 (void)({ \
573 typeof(((struct virtio_scsi_config *)0)->fld) __val = (val); \
574 vdev->config->set(vdev, \
575 offsetof(struct virtio_scsi_config, fld), \
576 &__val, sizeof(__val)); \
577 })
578
Paolo Bonzini139fe452012-06-13 16:56:32 +0200579static void virtscsi_init_vq(struct virtio_scsi_vq *virtscsi_vq,
580 struct virtqueue *vq)
581{
582 spin_lock_init(&virtscsi_vq->vq_lock);
583 virtscsi_vq->vq = vq;
584}
585
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200586static struct virtio_scsi_target_state *virtscsi_alloc_tgt(
587 struct virtio_device *vdev, int sg_elems)
588{
589 struct virtio_scsi_target_state *tgt;
590 gfp_t gfp_mask = GFP_KERNEL;
591
592 /* We need extra sg elements at head and tail. */
593 tgt = kmalloc(sizeof(*tgt) + sizeof(tgt->sg[0]) * (sg_elems + 2),
594 gfp_mask);
595
596 if (!tgt)
597 return NULL;
598
599 spin_lock_init(&tgt->tgt_lock);
600 sg_init_table(tgt->sg, sg_elems + 2);
601 return tgt;
602}
603
Nicholas Bellinger59057fb2012-07-11 21:22:16 +0000604static void virtscsi_scan(struct virtio_device *vdev)
605{
606 struct Scsi_Host *shost = (struct Scsi_Host *)vdev->priv;
607
608 scsi_scan_host(shost);
609}
610
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200611static void virtscsi_remove_vqs(struct virtio_device *vdev)
612{
613 struct Scsi_Host *sh = virtio_scsi_host(vdev);
614 struct virtio_scsi *vscsi = shost_priv(sh);
615 u32 i, num_targets;
616
617 /* Stop all the virtqueues. */
618 vdev->config->reset(vdev);
619
620 num_targets = sh->max_id;
621 for (i = 0; i < num_targets; i++) {
622 kfree(vscsi->tgt[i]);
623 vscsi->tgt[i] = NULL;
624 }
625
626 vdev->config->del_vqs(vdev);
627}
628
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100629static int virtscsi_init(struct virtio_device *vdev,
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200630 struct virtio_scsi *vscsi, int num_targets)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100631{
632 int err;
633 struct virtqueue *vqs[3];
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200634 u32 i, sg_elems;
635
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100636 vq_callback_t *callbacks[] = {
637 virtscsi_ctrl_done,
638 virtscsi_event_done,
639 virtscsi_req_done
640 };
641 const char *names[] = {
642 "control",
643 "event",
644 "request"
645 };
646
647 /* Discover virtqueues and write information to configuration. */
648 err = vdev->config->find_vqs(vdev, 3, vqs, callbacks, names);
649 if (err)
650 return err;
651
Paolo Bonzini139fe452012-06-13 16:56:32 +0200652 virtscsi_init_vq(&vscsi->ctrl_vq, vqs[0]);
653 virtscsi_init_vq(&vscsi->event_vq, vqs[1]);
654 virtscsi_init_vq(&vscsi->req_vq, vqs[2]);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100655
656 virtscsi_config_set(vdev, cdb_size, VIRTIO_SCSI_CDB_SIZE);
657 virtscsi_config_set(vdev, sense_size, VIRTIO_SCSI_SENSE_SIZE);
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200658
Cong Meng365a7152012-07-05 17:06:43 +0800659 if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
660 virtscsi_kick_event_all(vscsi);
661
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200662 /* We need to know how many segments before we allocate. */
663 sg_elems = virtscsi_config_get(vdev, seg_max) ?: 1;
664
665 for (i = 0; i < num_targets; i++) {
666 vscsi->tgt[i] = virtscsi_alloc_tgt(vdev, sg_elems);
667 if (!vscsi->tgt[i]) {
668 err = -ENOMEM;
669 goto out;
670 }
671 }
672 err = 0;
673
674out:
675 if (err)
676 virtscsi_remove_vqs(vdev);
677 return err;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100678}
679
680static int __devinit virtscsi_probe(struct virtio_device *vdev)
681{
682 struct Scsi_Host *shost;
683 struct virtio_scsi *vscsi;
684 int err;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200685 u32 sg_elems, num_targets;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100686 u32 cmd_per_lun;
687
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100688 /* Allocate memory and link the structs together. */
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200689 num_targets = virtscsi_config_get(vdev, max_target) + 1;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100690 shost = scsi_host_alloc(&virtscsi_host_template,
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200691 sizeof(*vscsi)
692 + num_targets * sizeof(struct virtio_scsi_target_state));
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100693
694 if (!shost)
695 return -ENOMEM;
696
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200697 sg_elems = virtscsi_config_get(vdev, seg_max) ?: 1;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100698 shost->sg_tablesize = sg_elems;
699 vscsi = shost_priv(shost);
700 vscsi->vdev = vdev;
701 vdev->priv = shost;
702
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200703 err = virtscsi_init(vdev, vscsi, num_targets);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100704 if (err)
705 goto virtscsi_init_failed;
706
707 cmd_per_lun = virtscsi_config_get(vdev, cmd_per_lun) ?: 1;
708 shost->cmd_per_lun = min_t(u32, cmd_per_lun, shost->can_queue);
709 shost->max_sectors = virtscsi_config_get(vdev, max_sectors) ?: 0xFFFF;
Paolo Bonzini9da5f5a2012-10-02 17:25:47 +0200710
711 /* LUNs > 256 are reported with format 1, so they go in the range
712 * 16640-32767.
713 */
714 shost->max_lun = virtscsi_config_get(vdev, max_lun) + 1 + 0x4000;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200715 shost->max_id = num_targets;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100716 shost->max_channel = 0;
717 shost->max_cmd_len = VIRTIO_SCSI_CDB_SIZE;
718 err = scsi_add_host(shost, &vdev->dev);
719 if (err)
720 goto scsi_add_host_failed;
Nicholas Bellinger59057fb2012-07-11 21:22:16 +0000721 /*
722 * scsi_scan_host() happens in virtscsi_scan() via virtio_driver->scan()
723 * after VIRTIO_CONFIG_S_DRIVER_OK has been set..
724 */
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100725 return 0;
726
727scsi_add_host_failed:
728 vdev->config->del_vqs(vdev);
729virtscsi_init_failed:
730 scsi_host_put(shost);
731 return err;
732}
733
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100734static void __devexit virtscsi_remove(struct virtio_device *vdev)
735{
736 struct Scsi_Host *shost = virtio_scsi_host(vdev);
Cong Meng365a7152012-07-05 17:06:43 +0800737 struct virtio_scsi *vscsi = shost_priv(shost);
738
739 if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
740 virtscsi_cancel_event_work(vscsi);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100741
742 scsi_remove_host(shost);
743
744 virtscsi_remove_vqs(vdev);
745 scsi_host_put(shost);
746}
747
748#ifdef CONFIG_PM
749static int virtscsi_freeze(struct virtio_device *vdev)
750{
751 virtscsi_remove_vqs(vdev);
752 return 0;
753}
754
755static int virtscsi_restore(struct virtio_device *vdev)
756{
757 struct Scsi_Host *sh = virtio_scsi_host(vdev);
758 struct virtio_scsi *vscsi = shost_priv(sh);
759
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200760 return virtscsi_init(vdev, vscsi, sh->max_id);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100761}
762#endif
763
764static struct virtio_device_id id_table[] = {
765 { VIRTIO_ID_SCSI, VIRTIO_DEV_ANY_ID },
766 { 0 },
767};
768
Cong Meng365a7152012-07-05 17:06:43 +0800769static unsigned int features[] = {
Paolo Bonzini865b58c2012-10-02 17:25:48 +0200770 VIRTIO_SCSI_F_HOTPLUG,
771 VIRTIO_SCSI_F_CHANGE,
Cong Meng365a7152012-07-05 17:06:43 +0800772};
773
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100774static struct virtio_driver virtio_scsi_driver = {
Cong Meng365a7152012-07-05 17:06:43 +0800775 .feature_table = features,
776 .feature_table_size = ARRAY_SIZE(features),
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100777 .driver.name = KBUILD_MODNAME,
778 .driver.owner = THIS_MODULE,
779 .id_table = id_table,
780 .probe = virtscsi_probe,
Nicholas Bellinger59057fb2012-07-11 21:22:16 +0000781 .scan = virtscsi_scan,
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100782#ifdef CONFIG_PM
783 .freeze = virtscsi_freeze,
784 .restore = virtscsi_restore,
785#endif
786 .remove = __devexit_p(virtscsi_remove),
787};
788
789static int __init init(void)
790{
791 int ret = -ENOMEM;
792
793 virtscsi_cmd_cache = KMEM_CACHE(virtio_scsi_cmd, 0);
794 if (!virtscsi_cmd_cache) {
795 printk(KERN_ERR "kmem_cache_create() for "
796 "virtscsi_cmd_cache failed\n");
797 goto error;
798 }
799
800
801 virtscsi_cmd_pool =
802 mempool_create_slab_pool(VIRTIO_SCSI_MEMPOOL_SZ,
803 virtscsi_cmd_cache);
804 if (!virtscsi_cmd_pool) {
805 printk(KERN_ERR "mempool_create() for"
806 "virtscsi_cmd_pool failed\n");
807 goto error;
808 }
809 ret = register_virtio_driver(&virtio_scsi_driver);
810 if (ret < 0)
811 goto error;
812
813 return 0;
814
815error:
816 if (virtscsi_cmd_pool) {
817 mempool_destroy(virtscsi_cmd_pool);
818 virtscsi_cmd_pool = NULL;
819 }
820 if (virtscsi_cmd_cache) {
821 kmem_cache_destroy(virtscsi_cmd_cache);
822 virtscsi_cmd_cache = NULL;
823 }
824 return ret;
825}
826
827static void __exit fini(void)
828{
829 unregister_virtio_driver(&virtio_scsi_driver);
830 mempool_destroy(virtscsi_cmd_pool);
831 kmem_cache_destroy(virtscsi_cmd_cache);
832}
833module_init(init);
834module_exit(fini);
835
836MODULE_DEVICE_TABLE(virtio, id_table);
837MODULE_DESCRIPTION("Virtio SCSI HBA driver");
838MODULE_LICENSE("GPL");