blob: 0642ce387c757c0020084805bc54f1c66945a126 [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
Wanlong Gaoba06d1e2013-03-12 15:34:40 +103016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010018#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/mempool.h>
21#include <linux/virtio.h>
22#include <linux/virtio_ids.h>
23#include <linux/virtio_config.h>
24#include <linux/virtio_scsi.h>
Paolo Bonzini9141a4c2013-04-08 23:03:25 +093025#include <linux/cpu.h>
Nicholas Bellingere6dc7832014-02-22 18:23:33 -080026#include <linux/blkdev.h>
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010027#include <scsi/scsi_host.h>
28#include <scsi/scsi_device.h>
29#include <scsi/scsi_cmnd.h>
Venkatesh Srinivas761f1192014-07-06 16:39:27 +020030#include <scsi/scsi_tcq.h>
Ming Lei938ece72014-07-06 16:39:26 +020031#include <linux/seqlock.h>
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010032
33#define VIRTIO_SCSI_MEMPOOL_SZ 64
Cong Meng365a7152012-07-05 17:06:43 +080034#define VIRTIO_SCSI_EVENT_LEN 8
Paolo Bonzini9141a4c2013-04-08 23:03:25 +093035#define VIRTIO_SCSI_VQ_BASE 2
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010036
37/* Command queue element */
38struct virtio_scsi_cmd {
39 struct scsi_cmnd *sc;
40 struct completion *comp;
41 union {
42 struct virtio_scsi_cmd_req cmd;
Nicholas Bellingere6dc7832014-02-22 18:23:33 -080043 struct virtio_scsi_cmd_req_pi cmd_pi;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010044 struct virtio_scsi_ctrl_tmf_req tmf;
45 struct virtio_scsi_ctrl_an_req an;
46 } req;
47 union {
48 struct virtio_scsi_cmd_resp cmd;
49 struct virtio_scsi_ctrl_tmf_resp tmf;
50 struct virtio_scsi_ctrl_an_resp an;
51 struct virtio_scsi_event evt;
52 } resp;
53} ____cacheline_aligned_in_smp;
54
Cong Meng365a7152012-07-05 17:06:43 +080055struct virtio_scsi_event_node {
56 struct virtio_scsi *vscsi;
57 struct virtio_scsi_event event;
58 struct work_struct work;
59};
60
Paolo Bonzini139fe452012-06-13 16:56:32 +020061struct virtio_scsi_vq {
62 /* Protects vq */
Paolo Bonzini4fe74b12012-02-05 12:16:00 +010063 spinlock_t vq_lock;
64
Paolo Bonzini139fe452012-06-13 16:56:32 +020065 struct virtqueue *vq;
66};
67
Paolo Bonzini9141a4c2013-04-08 23:03:25 +093068/*
69 * Per-target queue state.
70 *
71 * This struct holds the data needed by the queue steering policy. When a
72 * target is sent multiple requests, we need to drive them to the same queue so
73 * that FIFO processing order is kept. However, if a target was idle, we can
74 * choose a queue arbitrarily. In this case the queue is chosen according to
75 * the current VCPU, so the driver expects the number of request queues to be
76 * equal to the number of VCPUs. This makes it easy and fast to select the
77 * queue, and also lets the driver optimize the IRQ affinity for the virtqueues
78 * (each virtqueue's affinity is set to the CPU that "owns" the queue).
79 *
Ming Lei938ece72014-07-06 16:39:26 +020080 * tgt_seq is held to serialize reading and writing req_vq.
Paolo Bonzini9141a4c2013-04-08 23:03:25 +093081 *
Ming Leif259d9b2014-05-08 15:23:45 +080082 * Decrements of reqs are never concurrent with writes of req_vq: before the
83 * decrement reqs will be != 0; after the decrement the virtqueue completion
84 * routine will not use the req_vq so it can be changed by a new request.
Ming Lei938ece72014-07-06 16:39:26 +020085 * Thus they can happen outside the tgt_seq, provided of course we make reqs
Paolo Bonzini9141a4c2013-04-08 23:03:25 +093086 * an atomic_t.
87 */
Paolo Bonzini2bd37f02012-06-13 16:56:34 +020088struct virtio_scsi_target_state {
Ming Lei938ece72014-07-06 16:39:26 +020089 seqcount_t tgt_seq;
Paolo Bonzini9141a4c2013-04-08 23:03:25 +093090
91 /* Count of outstanding requests. */
92 atomic_t reqs;
93
94 /* Currently active virtqueue for requests sent to this target. */
95 struct virtio_scsi_vq *req_vq;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +020096};
97
Paolo Bonzini139fe452012-06-13 16:56:32 +020098/* Driver instance state */
99struct virtio_scsi {
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100100 struct virtio_device *vdev;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200101
Cong Meng365a7152012-07-05 17:06:43 +0800102 /* Get some buffers ready for event vq */
103 struct virtio_scsi_event_node event_list[VIRTIO_SCSI_EVENT_LEN];
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930104
105 u32 num_queues;
106
107 /* If the affinity hint is set for virtqueues */
108 bool affinity_hint_set;
109
Wanlong Gao285e71e2013-04-08 23:05:49 +0930110 /* CPU hotplug notifier */
111 struct notifier_block nb;
112
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930113 struct virtio_scsi_vq ctrl_vq;
114 struct virtio_scsi_vq event_vq;
115 struct virtio_scsi_vq req_vqs[];
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100116};
117
118static struct kmem_cache *virtscsi_cmd_cache;
119static mempool_t *virtscsi_cmd_pool;
120
121static inline struct Scsi_Host *virtio_scsi_host(struct virtio_device *vdev)
122{
123 return vdev->priv;
124}
125
126static void virtscsi_compute_resid(struct scsi_cmnd *sc, u32 resid)
127{
128 if (!resid)
129 return;
130
131 if (!scsi_bidi_cmnd(sc)) {
132 scsi_set_resid(sc, resid);
133 return;
134 }
135
136 scsi_in(sc)->resid = min(resid, scsi_in(sc)->length);
137 scsi_out(sc)->resid = resid - scsi_in(sc)->resid;
138}
139
140/**
141 * virtscsi_complete_cmd - finish a scsi_cmd and invoke scsi_done
142 *
143 * Called with vq_lock held.
144 */
Paolo Bonzini7f82b3c2013-04-08 23:01:38 +0930145static void virtscsi_complete_cmd(struct virtio_scsi *vscsi, void *buf)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100146{
147 struct virtio_scsi_cmd *cmd = buf;
148 struct scsi_cmnd *sc = cmd->sc;
149 struct virtio_scsi_cmd_resp *resp = &cmd->resp.cmd;
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930150 struct virtio_scsi_target_state *tgt =
151 scsi_target(sc->device)->hostdata;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100152
153 dev_dbg(&sc->device->sdev_gendev,
154 "cmd %p response %u status %#02x sense_len %u\n",
155 sc, resp->response, resp->status, resp->sense_len);
156
157 sc->result = resp->status;
158 virtscsi_compute_resid(sc, resp->resid);
159 switch (resp->response) {
160 case VIRTIO_SCSI_S_OK:
161 set_host_byte(sc, DID_OK);
162 break;
163 case VIRTIO_SCSI_S_OVERRUN:
164 set_host_byte(sc, DID_ERROR);
165 break;
166 case VIRTIO_SCSI_S_ABORTED:
167 set_host_byte(sc, DID_ABORT);
168 break;
169 case VIRTIO_SCSI_S_BAD_TARGET:
170 set_host_byte(sc, DID_BAD_TARGET);
171 break;
172 case VIRTIO_SCSI_S_RESET:
173 set_host_byte(sc, DID_RESET);
174 break;
175 case VIRTIO_SCSI_S_BUSY:
176 set_host_byte(sc, DID_BUS_BUSY);
177 break;
178 case VIRTIO_SCSI_S_TRANSPORT_FAILURE:
179 set_host_byte(sc, DID_TRANSPORT_DISRUPTED);
180 break;
181 case VIRTIO_SCSI_S_TARGET_FAILURE:
182 set_host_byte(sc, DID_TARGET_FAILURE);
183 break;
184 case VIRTIO_SCSI_S_NEXUS_FAILURE:
185 set_host_byte(sc, DID_NEXUS_FAILURE);
186 break;
187 default:
188 scmd_printk(KERN_WARNING, sc, "Unknown response %d",
189 resp->response);
190 /* fall through */
191 case VIRTIO_SCSI_S_FAILURE:
192 set_host_byte(sc, DID_ERROR);
193 break;
194 }
195
196 WARN_ON(resp->sense_len > VIRTIO_SCSI_SENSE_SIZE);
197 if (sc->sense_buffer) {
198 memcpy(sc->sense_buffer, resp->sense,
199 min_t(u32, resp->sense_len, VIRTIO_SCSI_SENSE_SIZE));
200 if (resp->sense_len)
201 set_driver_byte(sc, DRIVER_SENSE);
202 }
203
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100204 sc->scsi_done(sc);
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930205
206 atomic_dec(&tgt->reqs);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100207}
208
Paolo Bonzini10f34f62013-04-08 23:02:07 +0930209static void virtscsi_vq_done(struct virtio_scsi *vscsi,
210 struct virtio_scsi_vq *virtscsi_vq,
Paolo Bonzini7f82b3c2013-04-08 23:01:38 +0930211 void (*fn)(struct virtio_scsi *vscsi, void *buf))
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100212{
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100213 void *buf;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100214 unsigned int len;
Paolo Bonzini10f34f62013-04-08 23:02:07 +0930215 unsigned long flags;
216 struct virtqueue *vq = virtscsi_vq->vq;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100217
Paolo Bonzini10f34f62013-04-08 23:02:07 +0930218 spin_lock_irqsave(&virtscsi_vq->vq_lock, flags);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100219 do {
220 virtqueue_disable_cb(vq);
221 while ((buf = virtqueue_get_buf(vq, &len)) != NULL)
Paolo Bonzini7f82b3c2013-04-08 23:01:38 +0930222 fn(vscsi, buf);
Heinz Graalfs2bf4fd32013-11-11 11:52:43 +1030223
224 if (unlikely(virtqueue_is_broken(vq)))
225 break;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100226 } while (!virtqueue_enable_cb(vq));
Paolo Bonzini10f34f62013-04-08 23:02:07 +0930227 spin_unlock_irqrestore(&virtscsi_vq->vq_lock, flags);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100228}
229
230static void virtscsi_req_done(struct virtqueue *vq)
231{
Paolo Bonzini139fe452012-06-13 16:56:32 +0200232 struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
233 struct virtio_scsi *vscsi = shost_priv(sh);
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930234 int index = vq->index - VIRTIO_SCSI_VQ_BASE;
235 struct virtio_scsi_vq *req_vq = &vscsi->req_vqs[index];
Paolo Bonzini139fe452012-06-13 16:56:32 +0200236
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930237 virtscsi_vq_done(vscsi, req_vq, virtscsi_complete_cmd);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100238};
239
Paolo Bonzini8faeb522014-06-04 13:34:58 +0200240static void virtscsi_poll_requests(struct virtio_scsi *vscsi)
241{
242 int i, num_vqs;
243
244 num_vqs = vscsi->num_queues;
245 for (i = 0; i < num_vqs; i++)
246 virtscsi_vq_done(vscsi, &vscsi->req_vqs[i],
247 virtscsi_complete_cmd);
248}
249
Paolo Bonzini7f82b3c2013-04-08 23:01:38 +0930250static void virtscsi_complete_free(struct virtio_scsi *vscsi, void *buf)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100251{
252 struct virtio_scsi_cmd *cmd = buf;
253
254 if (cmd->comp)
255 complete_all(cmd->comp);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100256}
257
258static void virtscsi_ctrl_done(struct virtqueue *vq)
259{
Paolo Bonzini139fe452012-06-13 16:56:32 +0200260 struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
261 struct virtio_scsi *vscsi = shost_priv(sh);
Paolo Bonzini139fe452012-06-13 16:56:32 +0200262
Paolo Bonzini10f34f62013-04-08 23:02:07 +0930263 virtscsi_vq_done(vscsi, &vscsi->ctrl_vq, virtscsi_complete_free);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100264};
265
Paolo Bonzinicdda0e52014-06-04 13:34:56 +0200266static void virtscsi_handle_event(struct work_struct *work);
267
Cong Meng365a7152012-07-05 17:06:43 +0800268static int virtscsi_kick_event(struct virtio_scsi *vscsi,
269 struct virtio_scsi_event_node *event_node)
270{
Rusty Russell4614e512012-10-16 23:56:16 +1030271 int err;
Cong Meng365a7152012-07-05 17:06:43 +0800272 struct scatterlist sg;
273 unsigned long flags;
274
Paolo Bonzinicdda0e52014-06-04 13:34:56 +0200275 INIT_WORK(&event_node->work, virtscsi_handle_event);
Richard W.M. Jones2e9c9df2012-10-02 17:25:46 +0200276 sg_init_one(&sg, &event_node->event, sizeof(struct virtio_scsi_event));
Cong Meng365a7152012-07-05 17:06:43 +0800277
278 spin_lock_irqsave(&vscsi->event_vq.vq_lock, flags);
279
Rusty Russellbf958292013-03-20 15:44:28 +1030280 err = virtqueue_add_inbuf(vscsi->event_vq.vq, &sg, 1, event_node,
281 GFP_ATOMIC);
Rusty Russell4614e512012-10-16 23:56:16 +1030282 if (!err)
Cong Meng365a7152012-07-05 17:06:43 +0800283 virtqueue_kick(vscsi->event_vq.vq);
284
285 spin_unlock_irqrestore(&vscsi->event_vq.vq_lock, flags);
286
Rusty Russell4614e512012-10-16 23:56:16 +1030287 return err;
Cong Meng365a7152012-07-05 17:06:43 +0800288}
289
290static int virtscsi_kick_event_all(struct virtio_scsi *vscsi)
291{
292 int i;
293
294 for (i = 0; i < VIRTIO_SCSI_EVENT_LEN; i++) {
295 vscsi->event_list[i].vscsi = vscsi;
296 virtscsi_kick_event(vscsi, &vscsi->event_list[i]);
297 }
298
299 return 0;
300}
301
302static void virtscsi_cancel_event_work(struct virtio_scsi *vscsi)
303{
304 int i;
305
306 for (i = 0; i < VIRTIO_SCSI_EVENT_LEN; i++)
307 cancel_work_sync(&vscsi->event_list[i].work);
308}
309
310static void virtscsi_handle_transport_reset(struct virtio_scsi *vscsi,
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930311 struct virtio_scsi_event *event)
Cong Meng365a7152012-07-05 17:06:43 +0800312{
313 struct scsi_device *sdev;
314 struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
315 unsigned int target = event->lun[1];
316 unsigned int lun = (event->lun[2] << 8) | event->lun[3];
317
318 switch (event->reason) {
319 case VIRTIO_SCSI_EVT_RESET_RESCAN:
320 scsi_add_device(shost, 0, target, lun);
321 break;
322 case VIRTIO_SCSI_EVT_RESET_REMOVED:
323 sdev = scsi_device_lookup(shost, 0, target, lun);
324 if (sdev) {
325 scsi_remove_device(sdev);
326 scsi_device_put(sdev);
327 } else {
328 pr_err("SCSI device %d 0 %d %d not found\n",
329 shost->host_no, target, lun);
330 }
331 break;
332 default:
333 pr_info("Unsupport virtio scsi event reason %x\n", event->reason);
334 }
335}
336
Paolo Bonzini865b58c2012-10-02 17:25:48 +0200337static void virtscsi_handle_param_change(struct virtio_scsi *vscsi,
338 struct virtio_scsi_event *event)
339{
340 struct scsi_device *sdev;
341 struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
342 unsigned int target = event->lun[1];
343 unsigned int lun = (event->lun[2] << 8) | event->lun[3];
344 u8 asc = event->reason & 255;
345 u8 ascq = event->reason >> 8;
346
347 sdev = scsi_device_lookup(shost, 0, target, lun);
348 if (!sdev) {
349 pr_err("SCSI device %d 0 %d %d not found\n",
350 shost->host_no, target, lun);
351 return;
352 }
353
354 /* Handle "Parameters changed", "Mode parameters changed", and
355 "Capacity data has changed". */
356 if (asc == 0x2a && (ascq == 0x00 || ascq == 0x01 || ascq == 0x09))
357 scsi_rescan_device(&sdev->sdev_gendev);
358
359 scsi_device_put(sdev);
360}
361
Cong Meng365a7152012-07-05 17:06:43 +0800362static void virtscsi_handle_event(struct work_struct *work)
363{
364 struct virtio_scsi_event_node *event_node =
365 container_of(work, struct virtio_scsi_event_node, work);
366 struct virtio_scsi *vscsi = event_node->vscsi;
367 struct virtio_scsi_event *event = &event_node->event;
368
369 if (event->event & VIRTIO_SCSI_T_EVENTS_MISSED) {
370 event->event &= ~VIRTIO_SCSI_T_EVENTS_MISSED;
371 scsi_scan_host(virtio_scsi_host(vscsi->vdev));
372 }
373
374 switch (event->event) {
375 case VIRTIO_SCSI_T_NO_EVENT:
376 break;
377 case VIRTIO_SCSI_T_TRANSPORT_RESET:
378 virtscsi_handle_transport_reset(vscsi, event);
379 break;
Paolo Bonzini865b58c2012-10-02 17:25:48 +0200380 case VIRTIO_SCSI_T_PARAM_CHANGE:
381 virtscsi_handle_param_change(vscsi, event);
382 break;
Cong Meng365a7152012-07-05 17:06:43 +0800383 default:
384 pr_err("Unsupport virtio scsi event %x\n", event->event);
385 }
386 virtscsi_kick_event(vscsi, event_node);
387}
388
Paolo Bonzini7f82b3c2013-04-08 23:01:38 +0930389static void virtscsi_complete_event(struct virtio_scsi *vscsi, void *buf)
Cong Meng365a7152012-07-05 17:06:43 +0800390{
391 struct virtio_scsi_event_node *event_node = buf;
392
Cong Meng365a7152012-07-05 17:06:43 +0800393 schedule_work(&event_node->work);
394}
395
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100396static void virtscsi_event_done(struct virtqueue *vq)
397{
Paolo Bonzini139fe452012-06-13 16:56:32 +0200398 struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
399 struct virtio_scsi *vscsi = shost_priv(sh);
Paolo Bonzini139fe452012-06-13 16:56:32 +0200400
Paolo Bonzini10f34f62013-04-08 23:02:07 +0930401 virtscsi_vq_done(vscsi, &vscsi->event_vq, virtscsi_complete_event);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100402};
403
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100404/**
Wanlong Gao682993b2013-03-20 15:44:28 +1030405 * virtscsi_add_cmd - add a virtio_scsi_cmd to a virtqueue
406 * @vq : the struct virtqueue we're talking about
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100407 * @cmd : command structure
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100408 * @req_size : size of the request buffer
409 * @resp_size : size of the response buffer
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100410 */
Wanlong Gao682993b2013-03-20 15:44:28 +1030411static int virtscsi_add_cmd(struct virtqueue *vq,
412 struct virtio_scsi_cmd *cmd,
Rusty Russellc77fba92014-05-21 11:25:04 +0930413 size_t req_size, size_t resp_size)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100414{
415 struct scsi_cmnd *sc = cmd->sc;
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800416 struct scatterlist *sgs[6], req, resp;
Wanlong Gao682993b2013-03-20 15:44:28 +1030417 struct sg_table *out, *in;
418 unsigned out_num = 0, in_num = 0;
419
420 out = in = NULL;
421
422 if (sc && sc->sc_data_direction != DMA_NONE) {
423 if (sc->sc_data_direction != DMA_FROM_DEVICE)
424 out = &scsi_out(sc)->table;
425 if (sc->sc_data_direction != DMA_TO_DEVICE)
426 in = &scsi_in(sc)->table;
427 }
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100428
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100429 /* Request header. */
Wanlong Gao682993b2013-03-20 15:44:28 +1030430 sg_init_one(&req, &cmd->req, req_size);
431 sgs[out_num++] = &req;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100432
433 /* Data-out buffer. */
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800434 if (out) {
435 /* Place WRITE protection SGLs before Data OUT payload */
436 if (scsi_prot_sg_count(sc))
437 sgs[out_num++] = scsi_prot_sglist(sc);
Wanlong Gao682993b2013-03-20 15:44:28 +1030438 sgs[out_num++] = out->sgl;
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800439 }
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100440
441 /* Response header. */
Wanlong Gao682993b2013-03-20 15:44:28 +1030442 sg_init_one(&resp, &cmd->resp, resp_size);
443 sgs[out_num + in_num++] = &resp;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100444
445 /* Data-in buffer */
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800446 if (in) {
447 /* Place READ protection SGLs before Data IN payload */
448 if (scsi_prot_sg_count(sc))
449 sgs[out_num + in_num++] = scsi_prot_sglist(sc);
Wanlong Gao682993b2013-03-20 15:44:28 +1030450 sgs[out_num + in_num++] = in->sgl;
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800451 }
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100452
Rusty Russellc77fba92014-05-21 11:25:04 +0930453 return virtqueue_add_sgs(vq, sgs, out_num, in_num, cmd, GFP_ATOMIC);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100454}
455
Wanlong Gao682993b2013-03-20 15:44:28 +1030456static int virtscsi_kick_cmd(struct virtio_scsi_vq *vq,
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100457 struct virtio_scsi_cmd *cmd,
Rusty Russellc77fba92014-05-21 11:25:04 +0930458 size_t req_size, size_t resp_size)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100459{
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100460 unsigned long flags;
Rusty Russell4614e512012-10-16 23:56:16 +1030461 int err;
462 bool needs_kick = false;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100463
Wanlong Gao682993b2013-03-20 15:44:28 +1030464 spin_lock_irqsave(&vq->vq_lock, flags);
Rusty Russellc77fba92014-05-21 11:25:04 +0930465 err = virtscsi_add_cmd(vq->vq, cmd, req_size, resp_size);
Rusty Russell4614e512012-10-16 23:56:16 +1030466 if (!err)
467 needs_kick = virtqueue_kick_prepare(vq->vq);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100468
Paolo Bonzinibce750b2012-06-13 16:56:33 +0200469 spin_unlock_irqrestore(&vq->vq_lock, flags);
Paolo Bonzini139fe452012-06-13 16:56:32 +0200470
Rusty Russell4614e512012-10-16 23:56:16 +1030471 if (needs_kick)
Paolo Bonzini139fe452012-06-13 16:56:32 +0200472 virtqueue_notify(vq->vq);
Rusty Russell4614e512012-10-16 23:56:16 +1030473 return err;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100474}
475
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800476static void virtio_scsi_init_hdr(struct virtio_scsi_cmd_req *cmd,
477 struct scsi_cmnd *sc)
478{
479 cmd->lun[0] = 1;
480 cmd->lun[1] = sc->device->id;
481 cmd->lun[2] = (sc->device->lun >> 8) | 0x40;
482 cmd->lun[3] = sc->device->lun & 0xff;
483 cmd->tag = (unsigned long)sc;
484 cmd->task_attr = VIRTIO_SCSI_S_SIMPLE;
485 cmd->prio = 0;
486 cmd->crn = 0;
487}
488
489static void virtio_scsi_init_hdr_pi(struct virtio_scsi_cmd_req_pi *cmd_pi,
490 struct scsi_cmnd *sc)
491{
492 struct request *rq = sc->request;
493 struct blk_integrity *bi;
494
495 virtio_scsi_init_hdr((struct virtio_scsi_cmd_req *)cmd_pi, sc);
496
497 if (!rq || !scsi_prot_sg_count(sc))
498 return;
499
500 bi = blk_get_integrity(rq->rq_disk);
501
502 if (sc->sc_data_direction == DMA_TO_DEVICE)
503 cmd_pi->pi_bytesout = blk_rq_sectors(rq) * bi->tuple_size;
504 else if (sc->sc_data_direction == DMA_FROM_DEVICE)
505 cmd_pi->pi_bytesin = blk_rq_sectors(rq) * bi->tuple_size;
506}
507
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930508static int virtscsi_queuecommand(struct virtio_scsi *vscsi,
509 struct virtio_scsi_vq *req_vq,
510 struct scsi_cmnd *sc)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100511{
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200512 struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
Christoph Hellwigb54197c2014-05-01 16:51:50 +0200513 struct virtio_scsi_cmd *cmd = scsi_cmd_priv(sc);
Linus Torvaldsed9ea4e2014-06-12 22:38:32 -0700514 int req_size;
Christoph Hellwigb54197c2014-05-01 16:51:50 +0200515
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200516 BUG_ON(scsi_sg_count(sc) > shost->sg_tablesize);
517
518 /* TODO: check feature bit and fail if unsupported? */
519 BUG_ON(sc->sc_data_direction == DMA_BIDIRECTIONAL);
520
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100521 dev_dbg(&sc->device->sdev_gendev,
522 "cmd %p CDB: %#02x\n", sc, sc->cmnd[0]);
523
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100524 memset(cmd, 0, sizeof(*cmd));
525 cmd->sc = sc;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100526
527 BUG_ON(sc->cmd_len > VIRTIO_SCSI_CDB_SIZE);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100528
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800529 if (virtio_has_feature(vscsi->vdev, VIRTIO_SCSI_F_T10_PI)) {
530 virtio_scsi_init_hdr_pi(&cmd->req.cmd_pi, sc);
531 memcpy(cmd->req.cmd_pi.cdb, sc->cmnd, sc->cmd_len);
532 req_size = sizeof(cmd->req.cmd_pi);
533 } else {
534 virtio_scsi_init_hdr(&cmd->req.cmd, sc);
535 memcpy(cmd->req.cmd.cdb, sc->cmnd, sc->cmd_len);
536 req_size = sizeof(cmd->req.cmd);
537 }
538
Linus Torvaldsed9ea4e2014-06-12 22:38:32 -0700539 if (virtscsi_kick_cmd(req_vq, cmd, req_size, sizeof(cmd->resp.cmd)) != 0)
Christoph Hellwigb54197c2014-05-01 16:51:50 +0200540 return SCSI_MLQUEUE_HOST_BUSY;
541 return 0;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100542}
543
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930544static int virtscsi_queuecommand_single(struct Scsi_Host *sh,
545 struct scsi_cmnd *sc)
546{
547 struct virtio_scsi *vscsi = shost_priv(sh);
548 struct virtio_scsi_target_state *tgt =
549 scsi_target(sc->device)->hostdata;
550
551 atomic_inc(&tgt->reqs);
552 return virtscsi_queuecommand(vscsi, &vscsi->req_vqs[0], sc);
553}
554
555static struct virtio_scsi_vq *virtscsi_pick_vq(struct virtio_scsi *vscsi,
556 struct virtio_scsi_target_state *tgt)
557{
558 struct virtio_scsi_vq *vq;
559 unsigned long flags;
560 u32 queue_num;
561
Ming Lei938ece72014-07-06 16:39:26 +0200562 local_irq_save(flags);
563 if (atomic_inc_return(&tgt->reqs) > 1) {
564 unsigned long seq;
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930565
Ming Lei938ece72014-07-06 16:39:26 +0200566 do {
567 seq = read_seqcount_begin(&tgt->tgt_seq);
568 vq = tgt->req_vq;
569 } while (read_seqcount_retry(&tgt->tgt_seq, seq));
570 } else {
571 /* no writes can be concurrent because of atomic_t */
572 write_seqcount_begin(&tgt->tgt_seq);
573
574 /* keep previous req_vq if a reader just arrived */
575 if (unlikely(atomic_read(&tgt->reqs) > 1)) {
576 vq = tgt->req_vq;
577 goto unlock;
578 }
579
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930580 queue_num = smp_processor_id();
581 while (unlikely(queue_num >= vscsi->num_queues))
582 queue_num -= vscsi->num_queues;
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930583 tgt->req_vq = vq = &vscsi->req_vqs[queue_num];
Ming Lei938ece72014-07-06 16:39:26 +0200584 unlock:
585 write_seqcount_end(&tgt->tgt_seq);
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930586 }
Ming Lei938ece72014-07-06 16:39:26 +0200587 local_irq_restore(flags);
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930588
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930589 return vq;
590}
591
592static int virtscsi_queuecommand_multi(struct Scsi_Host *sh,
593 struct scsi_cmnd *sc)
594{
595 struct virtio_scsi *vscsi = shost_priv(sh);
596 struct virtio_scsi_target_state *tgt =
597 scsi_target(sc->device)->hostdata;
598 struct virtio_scsi_vq *req_vq = virtscsi_pick_vq(vscsi, tgt);
599
600 return virtscsi_queuecommand(vscsi, req_vq, sc);
601}
602
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100603static int virtscsi_tmf(struct virtio_scsi *vscsi, struct virtio_scsi_cmd *cmd)
604{
605 DECLARE_COMPLETION_ONSTACK(comp);
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200606 int ret = FAILED;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100607
608 cmd->comp = &comp;
Wanlong Gao682993b2013-03-20 15:44:28 +1030609 if (virtscsi_kick_cmd(&vscsi->ctrl_vq, cmd,
Rusty Russellc77fba92014-05-21 11:25:04 +0930610 sizeof cmd->req.tmf, sizeof cmd->resp.tmf) < 0)
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200611 goto out;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100612
613 wait_for_completion(&comp);
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200614 if (cmd->resp.tmf.response == VIRTIO_SCSI_S_OK ||
615 cmd->resp.tmf.response == VIRTIO_SCSI_S_FUNCTION_SUCCEEDED)
616 ret = SUCCESS;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100617
Paolo Bonzini8faeb522014-06-04 13:34:58 +0200618 /*
619 * The spec guarantees that all requests related to the TMF have
620 * been completed, but the callback might not have run yet if
621 * we're using independent interrupts (e.g. MSI). Poll the
622 * virtqueues once.
623 *
624 * In the abort case, sc->scsi_done will do nothing, because
625 * the block layer must have detected a timeout and as a result
626 * REQ_ATOM_COMPLETE has been set.
627 */
628 virtscsi_poll_requests(vscsi);
629
Paolo Bonzinie4594bb2012-05-04 12:32:04 +0200630out:
631 mempool_free(cmd, virtscsi_cmd_pool);
632 return ret;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100633}
634
635static int virtscsi_device_reset(struct scsi_cmnd *sc)
636{
637 struct virtio_scsi *vscsi = shost_priv(sc->device->host);
638 struct virtio_scsi_cmd *cmd;
639
640 sdev_printk(KERN_INFO, sc->device, "device reset\n");
641 cmd = mempool_alloc(virtscsi_cmd_pool, GFP_NOIO);
642 if (!cmd)
643 return FAILED;
644
645 memset(cmd, 0, sizeof(*cmd));
646 cmd->sc = sc;
647 cmd->req.tmf = (struct virtio_scsi_ctrl_tmf_req){
648 .type = VIRTIO_SCSI_T_TMF,
649 .subtype = VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET,
650 .lun[0] = 1,
651 .lun[1] = sc->device->id,
652 .lun[2] = (sc->device->lun >> 8) | 0x40,
653 .lun[3] = sc->device->lun & 0xff,
654 };
655 return virtscsi_tmf(vscsi, cmd);
656}
657
Venkatesh Srinivas761f1192014-07-06 16:39:27 +0200658/**
659 * virtscsi_change_queue_depth() - Change a virtscsi target's queue depth
660 * @sdev: Virtscsi target whose queue depth to change
661 * @qdepth: New queue depth
662 * @reason: Reason for the queue depth change.
663 */
664static int virtscsi_change_queue_depth(struct scsi_device *sdev,
665 int qdepth,
666 int reason)
667{
668 struct Scsi_Host *shost = sdev->host;
669 int max_depth = shost->cmd_per_lun;
670
671 switch (reason) {
672 case SCSI_QDEPTH_QFULL: /* Drop qdepth in response to BUSY state */
673 scsi_track_queue_full(sdev, qdepth);
674 break;
675 case SCSI_QDEPTH_RAMP_UP: /* Raise qdepth after BUSY state resolved */
676 case SCSI_QDEPTH_DEFAULT: /* Manual change via sysfs */
677 scsi_adjust_queue_depth(sdev,
678 scsi_get_tag_type(sdev),
679 min(max_depth, qdepth));
680 break;
681 default:
682 return -EOPNOTSUPP;
683 }
684
685 return sdev->queue_depth;
686}
687
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100688static int virtscsi_abort(struct scsi_cmnd *sc)
689{
690 struct virtio_scsi *vscsi = shost_priv(sc->device->host);
691 struct virtio_scsi_cmd *cmd;
692
693 scmd_printk(KERN_INFO, sc, "abort\n");
694 cmd = mempool_alloc(virtscsi_cmd_pool, GFP_NOIO);
695 if (!cmd)
696 return FAILED;
697
698 memset(cmd, 0, sizeof(*cmd));
699 cmd->sc = sc;
700 cmd->req.tmf = (struct virtio_scsi_ctrl_tmf_req){
701 .type = VIRTIO_SCSI_T_TMF,
702 .subtype = VIRTIO_SCSI_T_TMF_ABORT_TASK,
703 .lun[0] = 1,
704 .lun[1] = sc->device->id,
705 .lun[2] = (sc->device->lun >> 8) | 0x40,
706 .lun[3] = sc->device->lun & 0xff,
707 .tag = (unsigned long)sc,
708 };
709 return virtscsi_tmf(vscsi, cmd);
710}
711
Wanlong Gao5c370192013-04-08 23:01:16 +0930712static int virtscsi_target_alloc(struct scsi_target *starget)
713{
Ming Lei938ece72014-07-06 16:39:26 +0200714 struct Scsi_Host *sh = dev_to_shost(starget->dev.parent);
715 struct virtio_scsi *vscsi = shost_priv(sh);
716
Wanlong Gao5c370192013-04-08 23:01:16 +0930717 struct virtio_scsi_target_state *tgt =
718 kmalloc(sizeof(*tgt), GFP_KERNEL);
719 if (!tgt)
720 return -ENOMEM;
721
Ming Lei938ece72014-07-06 16:39:26 +0200722 seqcount_init(&tgt->tgt_seq);
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930723 atomic_set(&tgt->reqs, 0);
Ming Lei938ece72014-07-06 16:39:26 +0200724 tgt->req_vq = &vscsi->req_vqs[0];
Wanlong Gao5c370192013-04-08 23:01:16 +0930725
726 starget->hostdata = tgt;
727 return 0;
728}
729
730static void virtscsi_target_destroy(struct scsi_target *starget)
731{
732 struct virtio_scsi_target_state *tgt = starget->hostdata;
733 kfree(tgt);
734}
735
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930736static struct scsi_host_template virtscsi_host_template_single = {
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100737 .module = THIS_MODULE,
738 .name = "Virtio SCSI HBA",
739 .proc_name = "virtio_scsi",
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100740 .this_id = -1,
Christoph Hellwigb54197c2014-05-01 16:51:50 +0200741 .cmd_size = sizeof(struct virtio_scsi_cmd),
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930742 .queuecommand = virtscsi_queuecommand_single,
Venkatesh Srinivas761f1192014-07-06 16:39:27 +0200743 .change_queue_depth = virtscsi_change_queue_depth,
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930744 .eh_abort_handler = virtscsi_abort,
745 .eh_device_reset_handler = virtscsi_device_reset,
746
747 .can_queue = 1024,
748 .dma_boundary = UINT_MAX,
749 .use_clustering = ENABLE_CLUSTERING,
750 .target_alloc = virtscsi_target_alloc,
751 .target_destroy = virtscsi_target_destroy,
752};
753
754static struct scsi_host_template virtscsi_host_template_multi = {
755 .module = THIS_MODULE,
756 .name = "Virtio SCSI HBA",
757 .proc_name = "virtio_scsi",
758 .this_id = -1,
Christoph Hellwigb54197c2014-05-01 16:51:50 +0200759 .cmd_size = sizeof(struct virtio_scsi_cmd),
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930760 .queuecommand = virtscsi_queuecommand_multi,
Venkatesh Srinivas761f1192014-07-06 16:39:27 +0200761 .change_queue_depth = virtscsi_change_queue_depth,
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100762 .eh_abort_handler = virtscsi_abort,
763 .eh_device_reset_handler = virtscsi_device_reset,
764
765 .can_queue = 1024,
766 .dma_boundary = UINT_MAX,
767 .use_clustering = ENABLE_CLUSTERING,
Wanlong Gao5c370192013-04-08 23:01:16 +0930768 .target_alloc = virtscsi_target_alloc,
769 .target_destroy = virtscsi_target_destroy,
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100770};
771
772#define virtscsi_config_get(vdev, fld) \
773 ({ \
774 typeof(((struct virtio_scsi_config *)0)->fld) __val; \
Rusty Russell855e0c52013-10-14 18:11:51 +1030775 virtio_cread(vdev, struct virtio_scsi_config, fld, &__val); \
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100776 __val; \
777 })
778
779#define virtscsi_config_set(vdev, fld, val) \
Rusty Russell855e0c52013-10-14 18:11:51 +1030780 do { \
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100781 typeof(((struct virtio_scsi_config *)0)->fld) __val = (val); \
Rusty Russell855e0c52013-10-14 18:11:51 +1030782 virtio_cwrite(vdev, struct virtio_scsi_config, fld, &__val); \
783 } while(0)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100784
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930785static void __virtscsi_set_affinity(struct virtio_scsi *vscsi, bool affinity)
786{
787 int i;
788 int cpu;
789
790 /* In multiqueue mode, when the number of cpu is equal
791 * to the number of request queues, we let the qeueues
792 * to be private to one cpu by setting the affinity hint
793 * to eliminate the contention.
794 */
795 if ((vscsi->num_queues == 1 ||
796 vscsi->num_queues != num_online_cpus()) && affinity) {
797 if (vscsi->affinity_hint_set)
798 affinity = false;
799 else
800 return;
801 }
802
803 if (affinity) {
804 i = 0;
805 for_each_online_cpu(cpu) {
806 virtqueue_set_affinity(vscsi->req_vqs[i].vq, cpu);
807 i++;
808 }
809
810 vscsi->affinity_hint_set = true;
811 } else {
Fam Zheng0c8482a2014-04-14 10:16:09 +0800812 for (i = 0; i < vscsi->num_queues; i++) {
813 if (!vscsi->req_vqs[i].vq)
814 continue;
815
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930816 virtqueue_set_affinity(vscsi->req_vqs[i].vq, -1);
Fam Zheng0c8482a2014-04-14 10:16:09 +0800817 }
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930818
819 vscsi->affinity_hint_set = false;
820 }
821}
822
823static void virtscsi_set_affinity(struct virtio_scsi *vscsi, bool affinity)
824{
825 get_online_cpus();
826 __virtscsi_set_affinity(vscsi, affinity);
827 put_online_cpus();
828}
829
Wanlong Gao285e71e2013-04-08 23:05:49 +0930830static int virtscsi_cpu_callback(struct notifier_block *nfb,
831 unsigned long action, void *hcpu)
832{
833 struct virtio_scsi *vscsi = container_of(nfb, struct virtio_scsi, nb);
834 switch(action) {
835 case CPU_ONLINE:
836 case CPU_ONLINE_FROZEN:
837 case CPU_DEAD:
838 case CPU_DEAD_FROZEN:
839 __virtscsi_set_affinity(vscsi, true);
840 break;
841 default:
842 break;
843 }
844 return NOTIFY_OK;
845}
846
Paolo Bonzini139fe452012-06-13 16:56:32 +0200847static void virtscsi_init_vq(struct virtio_scsi_vq *virtscsi_vq,
848 struct virtqueue *vq)
849{
850 spin_lock_init(&virtscsi_vq->vq_lock);
851 virtscsi_vq->vq = vq;
852}
853
Nicholas Bellinger59057fb2012-07-11 21:22:16 +0000854static void virtscsi_scan(struct virtio_device *vdev)
855{
Michael S. Tsirkincd679042014-10-15 10:22:31 +1030856 struct Scsi_Host *shost = virtio_scsi_host(vdev);
857 struct virtio_scsi *vscsi = shost_priv(shost);
858
859 if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
860 virtscsi_kick_event_all(vscsi);
Nicholas Bellinger59057fb2012-07-11 21:22:16 +0000861
862 scsi_scan_host(shost);
863}
864
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200865static void virtscsi_remove_vqs(struct virtio_device *vdev)
866{
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930867 struct Scsi_Host *sh = virtio_scsi_host(vdev);
868 struct virtio_scsi *vscsi = shost_priv(sh);
869
870 virtscsi_set_affinity(vscsi, false);
871
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200872 /* Stop all the virtqueues. */
873 vdev->config->reset(vdev);
874
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200875 vdev->config->del_vqs(vdev);
876}
877
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100878static int virtscsi_init(struct virtio_device *vdev,
Wanlong Gao5c370192013-04-08 23:01:16 +0930879 struct virtio_scsi *vscsi)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100880{
881 int err;
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930882 u32 i;
883 u32 num_vqs;
884 vq_callback_t **callbacks;
885 const char **names;
886 struct virtqueue **vqs;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200887
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930888 num_vqs = vscsi->num_queues + VIRTIO_SCSI_VQ_BASE;
889 vqs = kmalloc(num_vqs * sizeof(struct virtqueue *), GFP_KERNEL);
890 callbacks = kmalloc(num_vqs * sizeof(vq_callback_t *), GFP_KERNEL);
891 names = kmalloc(num_vqs * sizeof(char *), GFP_KERNEL);
892
893 if (!callbacks || !vqs || !names) {
894 err = -ENOMEM;
895 goto out;
896 }
897
898 callbacks[0] = virtscsi_ctrl_done;
899 callbacks[1] = virtscsi_event_done;
900 names[0] = "control";
901 names[1] = "event";
902 for (i = VIRTIO_SCSI_VQ_BASE; i < num_vqs; i++) {
903 callbacks[i] = virtscsi_req_done;
904 names[i] = "request";
905 }
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100906
907 /* Discover virtqueues and write information to configuration. */
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930908 err = vdev->config->find_vqs(vdev, num_vqs, vqs, callbacks, names);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100909 if (err)
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930910 goto out;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100911
Paolo Bonzini139fe452012-06-13 16:56:32 +0200912 virtscsi_init_vq(&vscsi->ctrl_vq, vqs[0]);
913 virtscsi_init_vq(&vscsi->event_vq, vqs[1]);
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930914 for (i = VIRTIO_SCSI_VQ_BASE; i < num_vqs; i++)
915 virtscsi_init_vq(&vscsi->req_vqs[i - VIRTIO_SCSI_VQ_BASE],
916 vqs[i]);
917
918 virtscsi_set_affinity(vscsi, true);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100919
920 virtscsi_config_set(vdev, cdb_size, VIRTIO_SCSI_CDB_SIZE);
921 virtscsi_config_set(vdev, sense_size, VIRTIO_SCSI_SENSE_SIZE);
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200922
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930923 err = 0;
924
925out:
926 kfree(names);
927 kfree(callbacks);
928 kfree(vqs);
929 if (err)
930 virtscsi_remove_vqs(vdev);
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200931 return err;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100932}
933
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800934static int virtscsi_probe(struct virtio_device *vdev)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100935{
936 struct Scsi_Host *shost;
937 struct virtio_scsi *vscsi;
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800938 int err, host_prot;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200939 u32 sg_elems, num_targets;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100940 u32 cmd_per_lun;
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930941 u32 num_queues;
942 struct scsi_host_template *hostt;
943
944 /* We need to know how many queues before we allocate. */
945 num_queues = virtscsi_config_get(vdev, num_queues) ? : 1;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100946
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200947 num_targets = virtscsi_config_get(vdev, max_target) + 1;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100948
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930949 if (num_queues == 1)
950 hostt = &virtscsi_host_template_single;
951 else
952 hostt = &virtscsi_host_template_multi;
953
954 shost = scsi_host_alloc(hostt,
955 sizeof(*vscsi) + sizeof(vscsi->req_vqs[0]) * num_queues);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100956 if (!shost)
957 return -ENOMEM;
958
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200959 sg_elems = virtscsi_config_get(vdev, seg_max) ?: 1;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100960 shost->sg_tablesize = sg_elems;
961 vscsi = shost_priv(shost);
962 vscsi->vdev = vdev;
Paolo Bonzini9141a4c2013-04-08 23:03:25 +0930963 vscsi->num_queues = num_queues;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100964 vdev->priv = shost;
965
Wanlong Gao5c370192013-04-08 23:01:16 +0930966 err = virtscsi_init(vdev, vscsi);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100967 if (err)
968 goto virtscsi_init_failed;
969
Wanlong Gao285e71e2013-04-08 23:05:49 +0930970 vscsi->nb.notifier_call = &virtscsi_cpu_callback;
971 err = register_hotcpu_notifier(&vscsi->nb);
972 if (err) {
973 pr_err("registering cpu notifier failed\n");
974 goto scsi_add_host_failed;
975 }
976
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100977 cmd_per_lun = virtscsi_config_get(vdev, cmd_per_lun) ?: 1;
978 shost->cmd_per_lun = min_t(u32, cmd_per_lun, shost->can_queue);
979 shost->max_sectors = virtscsi_config_get(vdev, max_sectors) ?: 0xFFFF;
Paolo Bonzini9da5f5a2012-10-02 17:25:47 +0200980
981 /* LUNs > 256 are reported with format 1, so they go in the range
982 * 16640-32767.
983 */
984 shost->max_lun = virtscsi_config_get(vdev, max_lun) + 1 + 0x4000;
Paolo Bonzini2bd37f02012-06-13 16:56:34 +0200985 shost->max_id = num_targets;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100986 shost->max_channel = 0;
987 shost->max_cmd_len = VIRTIO_SCSI_CDB_SIZE;
Nicholas Bellingere6dc7832014-02-22 18:23:33 -0800988
989 if (virtio_has_feature(vdev, VIRTIO_SCSI_F_T10_PI)) {
990 host_prot = SHOST_DIF_TYPE1_PROTECTION | SHOST_DIF_TYPE2_PROTECTION |
991 SHOST_DIF_TYPE3_PROTECTION | SHOST_DIX_TYPE1_PROTECTION |
992 SHOST_DIX_TYPE2_PROTECTION | SHOST_DIX_TYPE3_PROTECTION;
993
994 scsi_host_set_prot(shost, host_prot);
995 scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC);
996 }
997
Paolo Bonzini4fe74b12012-02-05 12:16:00 +0100998 err = scsi_add_host(shost, &vdev->dev);
999 if (err)
1000 goto scsi_add_host_failed;
Nicholas Bellinger59057fb2012-07-11 21:22:16 +00001001 /*
1002 * scsi_scan_host() happens in virtscsi_scan() via virtio_driver->scan()
1003 * after VIRTIO_CONFIG_S_DRIVER_OK has been set..
1004 */
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001005 return 0;
1006
1007scsi_add_host_failed:
1008 vdev->config->del_vqs(vdev);
1009virtscsi_init_failed:
1010 scsi_host_put(shost);
1011 return err;
1012}
1013
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001014static void virtscsi_remove(struct virtio_device *vdev)
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001015{
1016 struct Scsi_Host *shost = virtio_scsi_host(vdev);
Cong Meng365a7152012-07-05 17:06:43 +08001017 struct virtio_scsi *vscsi = shost_priv(shost);
1018
1019 if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
1020 virtscsi_cancel_event_work(vscsi);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001021
1022 scsi_remove_host(shost);
1023
Wanlong Gao285e71e2013-04-08 23:05:49 +09301024 unregister_hotcpu_notifier(&vscsi->nb);
1025
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001026 virtscsi_remove_vqs(vdev);
1027 scsi_host_put(shost);
1028}
1029
Aaron Lu89107002013-09-17 09:25:23 +09301030#ifdef CONFIG_PM_SLEEP
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001031static int virtscsi_freeze(struct virtio_device *vdev)
1032{
Asias Hef466f752014-01-16 10:18:48 +10301033 struct Scsi_Host *sh = virtio_scsi_host(vdev);
1034 struct virtio_scsi *vscsi = shost_priv(sh);
1035
1036 unregister_hotcpu_notifier(&vscsi->nb);
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001037 virtscsi_remove_vqs(vdev);
1038 return 0;
1039}
1040
1041static int virtscsi_restore(struct virtio_device *vdev)
1042{
1043 struct Scsi_Host *sh = virtio_scsi_host(vdev);
1044 struct virtio_scsi *vscsi = shost_priv(sh);
Asias Hef466f752014-01-16 10:18:48 +10301045 int err;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001046
Asias Hef466f752014-01-16 10:18:48 +10301047 err = virtscsi_init(vdev, vscsi);
1048 if (err)
1049 return err;
1050
1051 err = register_hotcpu_notifier(&vscsi->nb);
Michael S. Tsirkincd679042014-10-15 10:22:31 +10301052 if (err) {
Asias Hef466f752014-01-16 10:18:48 +10301053 vdev->config->del_vqs(vdev);
Michael S. Tsirkincd679042014-10-15 10:22:31 +10301054 return err;
1055 }
1056
1057 if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
1058 virtscsi_kick_event_all(vscsi);
Asias Hef466f752014-01-16 10:18:48 +10301059
1060 return err;
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001061}
1062#endif
1063
1064static struct virtio_device_id id_table[] = {
1065 { VIRTIO_ID_SCSI, VIRTIO_DEV_ANY_ID },
1066 { 0 },
1067};
1068
Cong Meng365a7152012-07-05 17:06:43 +08001069static unsigned int features[] = {
Paolo Bonzini865b58c2012-10-02 17:25:48 +02001070 VIRTIO_SCSI_F_HOTPLUG,
1071 VIRTIO_SCSI_F_CHANGE,
Nicholas Bellingere6dc7832014-02-22 18:23:33 -08001072 VIRTIO_SCSI_F_T10_PI,
Cong Meng365a7152012-07-05 17:06:43 +08001073};
1074
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001075static struct virtio_driver virtio_scsi_driver = {
Cong Meng365a7152012-07-05 17:06:43 +08001076 .feature_table = features,
1077 .feature_table_size = ARRAY_SIZE(features),
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001078 .driver.name = KBUILD_MODNAME,
1079 .driver.owner = THIS_MODULE,
1080 .id_table = id_table,
1081 .probe = virtscsi_probe,
Nicholas Bellinger59057fb2012-07-11 21:22:16 +00001082 .scan = virtscsi_scan,
Aaron Lu89107002013-09-17 09:25:23 +09301083#ifdef CONFIG_PM_SLEEP
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001084 .freeze = virtscsi_freeze,
1085 .restore = virtscsi_restore,
1086#endif
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001087 .remove = virtscsi_remove,
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001088};
1089
1090static int __init init(void)
1091{
1092 int ret = -ENOMEM;
1093
1094 virtscsi_cmd_cache = KMEM_CACHE(virtio_scsi_cmd, 0);
1095 if (!virtscsi_cmd_cache) {
Wanlong Gaoba06d1e2013-03-12 15:34:40 +10301096 pr_err("kmem_cache_create() for virtscsi_cmd_cache failed\n");
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001097 goto error;
1098 }
1099
1100
1101 virtscsi_cmd_pool =
1102 mempool_create_slab_pool(VIRTIO_SCSI_MEMPOOL_SZ,
1103 virtscsi_cmd_cache);
1104 if (!virtscsi_cmd_pool) {
Wanlong Gaoba06d1e2013-03-12 15:34:40 +10301105 pr_err("mempool_create() for virtscsi_cmd_pool failed\n");
Paolo Bonzini4fe74b12012-02-05 12:16:00 +01001106 goto error;
1107 }
1108 ret = register_virtio_driver(&virtio_scsi_driver);
1109 if (ret < 0)
1110 goto error;
1111
1112 return 0;
1113
1114error:
1115 if (virtscsi_cmd_pool) {
1116 mempool_destroy(virtscsi_cmd_pool);
1117 virtscsi_cmd_pool = NULL;
1118 }
1119 if (virtscsi_cmd_cache) {
1120 kmem_cache_destroy(virtscsi_cmd_cache);
1121 virtscsi_cmd_cache = NULL;
1122 }
1123 return ret;
1124}
1125
1126static void __exit fini(void)
1127{
1128 unregister_virtio_driver(&virtio_scsi_driver);
1129 mempool_destroy(virtscsi_cmd_pool);
1130 kmem_cache_destroy(virtscsi_cmd_cache);
1131}
1132module_init(init);
1133module_exit(fini);
1134
1135MODULE_DEVICE_TABLE(virtio, id_table);
1136MODULE_DESCRIPTION("Virtio SCSI HBA driver");
1137MODULE_LICENSE("GPL");