blob: df6fabcce4f78fbacbc01d18664979de8b359a04 [file] [log] [blame]
Alok Kataria851b1642009-10-13 14:51:05 -07001/*
2 * Linux driver for VMware's para-virtualized SCSI HBA.
3 *
Arvind Kumara2713cc2014-03-08 12:51:12 -08004 * Copyright (C) 2008-2014, VMware, Inc. All Rights Reserved.
Alok Kataria851b1642009-10-13 14:51:05 -07005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; version 2 of the License and no later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13 * NON INFRINGEMENT. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
Jim Gill29374ec2016-06-20 21:58:28 -040020 * Maintained by: Jim Gill <jgill@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070021 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Alok Kataria851b1642009-10-13 14:51:05 -070028#include <linux/workqueue.h>
29#include <linux/pci.h>
30
31#include <scsi/scsi.h>
32#include <scsi/scsi_host.h>
33#include <scsi/scsi_cmnd.h>
34#include <scsi/scsi_device.h>
Arvind Kumar02845562014-03-08 13:04:45 -080035#include <scsi/scsi_tcq.h>
Alok Kataria851b1642009-10-13 14:51:05 -070036
37#include "vmw_pvscsi.h"
38
39#define PVSCSI_LINUX_DRIVER_DESC "VMware PVSCSI driver"
40
41MODULE_DESCRIPTION(PVSCSI_LINUX_DRIVER_DESC);
42MODULE_AUTHOR("VMware, Inc.");
43MODULE_LICENSE("GPL");
44MODULE_VERSION(PVSCSI_DRIVER_VERSION_STRING);
45
46#define PVSCSI_DEFAULT_NUM_PAGES_PER_RING 8
47#define PVSCSI_DEFAULT_NUM_PAGES_MSG_RING 1
Arvind Kumar02845562014-03-08 13:04:45 -080048#define PVSCSI_DEFAULT_QUEUE_DEPTH 254
Alok Kataria851b1642009-10-13 14:51:05 -070049#define SGL_SIZE PAGE_SIZE
50
51struct pvscsi_sg_list {
52 struct PVSCSISGElement sge[PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT];
53};
54
55struct pvscsi_ctx {
56 /*
57 * The index of the context in cmd_map serves as the context ID for a
58 * 1-to-1 mapping completions back to requests.
59 */
60 struct scsi_cmnd *cmd;
61 struct pvscsi_sg_list *sgl;
62 struct list_head list;
63 dma_addr_t dataPA;
64 dma_addr_t sensePA;
65 dma_addr_t sglPA;
Arvind Kumara2713cc2014-03-08 12:51:12 -080066 struct completion *abort_cmp;
Alok Kataria851b1642009-10-13 14:51:05 -070067};
68
69struct pvscsi_adapter {
70 char *mmioBase;
71 unsigned int irq;
72 u8 rev;
73 bool use_msi;
74 bool use_msix;
75 bool use_msg;
Rishi Mehta2a815b52014-03-11 13:51:33 -070076 bool use_req_threshold;
Alok Kataria851b1642009-10-13 14:51:05 -070077
78 spinlock_t hw_lock;
79
80 struct workqueue_struct *workqueue;
81 struct work_struct work;
82
83 struct PVSCSIRingReqDesc *req_ring;
84 unsigned req_pages;
85 unsigned req_depth;
86 dma_addr_t reqRingPA;
87
88 struct PVSCSIRingCmpDesc *cmp_ring;
89 unsigned cmp_pages;
90 dma_addr_t cmpRingPA;
91
92 struct PVSCSIRingMsgDesc *msg_ring;
93 unsigned msg_pages;
94 dma_addr_t msgRingPA;
95
96 struct PVSCSIRingsState *rings_state;
97 dma_addr_t ringStatePA;
98
99 struct pci_dev *dev;
100 struct Scsi_Host *host;
101
102 struct list_head cmd_pool;
103 struct pvscsi_ctx *cmd_map;
104};
105
106
107/* Command line parameters */
Arvind Kumar02845562014-03-08 13:04:45 -0800108static int pvscsi_ring_pages;
Alok Kataria851b1642009-10-13 14:51:05 -0700109static int pvscsi_msg_ring_pages = PVSCSI_DEFAULT_NUM_PAGES_MSG_RING;
110static int pvscsi_cmd_per_lun = PVSCSI_DEFAULT_QUEUE_DEPTH;
111static bool pvscsi_disable_msi;
112static bool pvscsi_disable_msix;
113static bool pvscsi_use_msg = true;
Rishi Mehta2a815b52014-03-11 13:51:33 -0700114static bool pvscsi_use_req_threshold = true;
Alok Kataria851b1642009-10-13 14:51:05 -0700115
116#define PVSCSI_RW (S_IRUSR | S_IWUSR)
117
118module_param_named(ring_pages, pvscsi_ring_pages, int, PVSCSI_RW);
119MODULE_PARM_DESC(ring_pages, "Number of pages per req/cmp ring - (default="
Arvind Kumar02845562014-03-08 13:04:45 -0800120 __stringify(PVSCSI_DEFAULT_NUM_PAGES_PER_RING)
121 "[up to 16 targets],"
122 __stringify(PVSCSI_SETUP_RINGS_MAX_NUM_PAGES)
123 "[for 16+ targets])");
Alok Kataria851b1642009-10-13 14:51:05 -0700124
125module_param_named(msg_ring_pages, pvscsi_msg_ring_pages, int, PVSCSI_RW);
126MODULE_PARM_DESC(msg_ring_pages, "Number of pages for the msg ring - (default="
127 __stringify(PVSCSI_DEFAULT_NUM_PAGES_MSG_RING) ")");
128
129module_param_named(cmd_per_lun, pvscsi_cmd_per_lun, int, PVSCSI_RW);
130MODULE_PARM_DESC(cmd_per_lun, "Maximum commands per lun - (default="
Arvind Kumar02845562014-03-08 13:04:45 -0800131 __stringify(PVSCSI_DEFAULT_QUEUE_DEPTH) ")");
Alok Kataria851b1642009-10-13 14:51:05 -0700132
133module_param_named(disable_msi, pvscsi_disable_msi, bool, PVSCSI_RW);
134MODULE_PARM_DESC(disable_msi, "Disable MSI use in driver - (default=0)");
135
136module_param_named(disable_msix, pvscsi_disable_msix, bool, PVSCSI_RW);
137MODULE_PARM_DESC(disable_msix, "Disable MSI-X use in driver - (default=0)");
138
139module_param_named(use_msg, pvscsi_use_msg, bool, PVSCSI_RW);
140MODULE_PARM_DESC(use_msg, "Use msg ring when available - (default=1)");
141
Rishi Mehta2a815b52014-03-11 13:51:33 -0700142module_param_named(use_req_threshold, pvscsi_use_req_threshold,
143 bool, PVSCSI_RW);
144MODULE_PARM_DESC(use_req_threshold, "Use driver-based request coalescing if configured - (default=1)");
145
Alok Kataria851b1642009-10-13 14:51:05 -0700146static const struct pci_device_id pvscsi_pci_tbl[] = {
147 { PCI_VDEVICE(VMWARE, PCI_DEVICE_ID_VMWARE_PVSCSI) },
148 { 0 }
149};
150
151MODULE_DEVICE_TABLE(pci, pvscsi_pci_tbl);
152
153static struct device *
154pvscsi_dev(const struct pvscsi_adapter *adapter)
155{
156 return &(adapter->dev->dev);
157}
158
159static struct pvscsi_ctx *
160pvscsi_find_context(const struct pvscsi_adapter *adapter, struct scsi_cmnd *cmd)
161{
162 struct pvscsi_ctx *ctx, *end;
163
164 end = &adapter->cmd_map[adapter->req_depth];
165 for (ctx = adapter->cmd_map; ctx < end; ctx++)
166 if (ctx->cmd == cmd)
167 return ctx;
168
169 return NULL;
170}
171
172static struct pvscsi_ctx *
173pvscsi_acquire_context(struct pvscsi_adapter *adapter, struct scsi_cmnd *cmd)
174{
175 struct pvscsi_ctx *ctx;
176
177 if (list_empty(&adapter->cmd_pool))
178 return NULL;
179
180 ctx = list_first_entry(&adapter->cmd_pool, struct pvscsi_ctx, list);
181 ctx->cmd = cmd;
182 list_del(&ctx->list);
183
184 return ctx;
185}
186
187static void pvscsi_release_context(struct pvscsi_adapter *adapter,
188 struct pvscsi_ctx *ctx)
189{
190 ctx->cmd = NULL;
Arvind Kumara2713cc2014-03-08 12:51:12 -0800191 ctx->abort_cmp = NULL;
Alok Kataria851b1642009-10-13 14:51:05 -0700192 list_add(&ctx->list, &adapter->cmd_pool);
193}
194
195/*
196 * Map a pvscsi_ctx struct to a context ID field value; we map to a simple
197 * non-zero integer. ctx always points to an entry in cmd_map array, hence
198 * the return value is always >=1.
199 */
200static u64 pvscsi_map_context(const struct pvscsi_adapter *adapter,
201 const struct pvscsi_ctx *ctx)
202{
203 return ctx - adapter->cmd_map + 1;
204}
205
206static struct pvscsi_ctx *
207pvscsi_get_context(const struct pvscsi_adapter *adapter, u64 context)
208{
209 return &adapter->cmd_map[context - 1];
210}
211
212static void pvscsi_reg_write(const struct pvscsi_adapter *adapter,
213 u32 offset, u32 val)
214{
215 writel(val, adapter->mmioBase + offset);
216}
217
218static u32 pvscsi_reg_read(const struct pvscsi_adapter *adapter, u32 offset)
219{
220 return readl(adapter->mmioBase + offset);
221}
222
223static u32 pvscsi_read_intr_status(const struct pvscsi_adapter *adapter)
224{
225 return pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_INTR_STATUS);
226}
227
228static void pvscsi_write_intr_status(const struct pvscsi_adapter *adapter,
229 u32 val)
230{
231 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_INTR_STATUS, val);
232}
233
234static void pvscsi_unmask_intr(const struct pvscsi_adapter *adapter)
235{
236 u32 intr_bits;
237
238 intr_bits = PVSCSI_INTR_CMPL_MASK;
239 if (adapter->use_msg)
240 intr_bits |= PVSCSI_INTR_MSG_MASK;
241
242 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_INTR_MASK, intr_bits);
243}
244
245static void pvscsi_mask_intr(const struct pvscsi_adapter *adapter)
246{
247 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_INTR_MASK, 0);
248}
249
250static void pvscsi_write_cmd_desc(const struct pvscsi_adapter *adapter,
251 u32 cmd, const void *desc, size_t len)
252{
253 const u32 *ptr = desc;
254 size_t i;
255
256 len /= sizeof(*ptr);
257 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_COMMAND, cmd);
258 for (i = 0; i < len; i++)
259 pvscsi_reg_write(adapter,
260 PVSCSI_REG_OFFSET_COMMAND_DATA, ptr[i]);
261}
262
263static void pvscsi_abort_cmd(const struct pvscsi_adapter *adapter,
264 const struct pvscsi_ctx *ctx)
265{
266 struct PVSCSICmdDescAbortCmd cmd = { 0 };
267
268 cmd.target = ctx->cmd->device->id;
269 cmd.context = pvscsi_map_context(adapter, ctx);
270
271 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_ABORT_CMD, &cmd, sizeof(cmd));
272}
273
274static void pvscsi_kick_rw_io(const struct pvscsi_adapter *adapter)
275{
276 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_KICK_RW_IO, 0);
277}
278
279static void pvscsi_process_request_ring(const struct pvscsi_adapter *adapter)
280{
281 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_KICK_NON_RW_IO, 0);
282}
283
284static int scsi_is_rw(unsigned char op)
285{
286 return op == READ_6 || op == WRITE_6 ||
287 op == READ_10 || op == WRITE_10 ||
288 op == READ_12 || op == WRITE_12 ||
289 op == READ_16 || op == WRITE_16;
290}
291
292static void pvscsi_kick_io(const struct pvscsi_adapter *adapter,
293 unsigned char op)
294{
Rishi Mehta2a815b52014-03-11 13:51:33 -0700295 if (scsi_is_rw(op)) {
296 struct PVSCSIRingsState *s = adapter->rings_state;
297
298 if (!adapter->use_req_threshold ||
299 s->reqProdIdx - s->reqConsIdx >= s->reqCallThreshold)
300 pvscsi_kick_rw_io(adapter);
301 } else {
Alok Kataria851b1642009-10-13 14:51:05 -0700302 pvscsi_process_request_ring(adapter);
Rishi Mehta2a815b52014-03-11 13:51:33 -0700303 }
Alok Kataria851b1642009-10-13 14:51:05 -0700304}
305
306static void ll_adapter_reset(const struct pvscsi_adapter *adapter)
307{
308 dev_dbg(pvscsi_dev(adapter), "Adapter Reset on %p\n", adapter);
309
310 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_ADAPTER_RESET, NULL, 0);
311}
312
313static void ll_bus_reset(const struct pvscsi_adapter *adapter)
314{
Masanari Iida59e13d42012-04-25 00:24:16 +0900315 dev_dbg(pvscsi_dev(adapter), "Resetting bus on %p\n", adapter);
Alok Kataria851b1642009-10-13 14:51:05 -0700316
317 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_RESET_BUS, NULL, 0);
318}
319
320static void ll_device_reset(const struct pvscsi_adapter *adapter, u32 target)
321{
322 struct PVSCSICmdDescResetDevice cmd = { 0 };
323
Masanari Iida59e13d42012-04-25 00:24:16 +0900324 dev_dbg(pvscsi_dev(adapter), "Resetting device: target=%u\n", target);
Alok Kataria851b1642009-10-13 14:51:05 -0700325
326 cmd.target = target;
327
328 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_RESET_DEVICE,
329 &cmd, sizeof(cmd));
330}
331
332static void pvscsi_create_sg(struct pvscsi_ctx *ctx,
333 struct scatterlist *sg, unsigned count)
334{
335 unsigned i;
336 struct PVSCSISGElement *sge;
337
338 BUG_ON(count > PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT);
339
340 sge = &ctx->sgl->sge[0];
341 for (i = 0; i < count; i++, sg++) {
342 sge[i].addr = sg_dma_address(sg);
343 sge[i].length = sg_dma_len(sg);
344 sge[i].flags = 0;
345 }
346}
347
348/*
349 * Map all data buffers for a command into PCI space and
350 * setup the scatter/gather list if needed.
351 */
Josh Boyerc9658532015-12-03 08:27:59 -0500352static int pvscsi_map_buffers(struct pvscsi_adapter *adapter,
353 struct pvscsi_ctx *ctx, struct scsi_cmnd *cmd,
354 struct PVSCSIRingReqDesc *e)
Alok Kataria851b1642009-10-13 14:51:05 -0700355{
356 unsigned count;
357 unsigned bufflen = scsi_bufflen(cmd);
358 struct scatterlist *sg;
359
360 e->dataLen = bufflen;
361 e->dataAddr = 0;
362 if (bufflen == 0)
Josh Boyerc9658532015-12-03 08:27:59 -0500363 return 0;
Alok Kataria851b1642009-10-13 14:51:05 -0700364
365 sg = scsi_sglist(cmd);
366 count = scsi_sg_count(cmd);
367 if (count != 0) {
368 int segs = scsi_dma_map(cmd);
Josh Boyerc9658532015-12-03 08:27:59 -0500369
370 if (segs == -ENOMEM) {
371 scmd_printk(KERN_ERR, cmd,
372 "vmw_pvscsi: Failed to map cmd sglist for DMA.\n");
373 return -ENOMEM;
374 } else if (segs > 1) {
Alok Kataria851b1642009-10-13 14:51:05 -0700375 pvscsi_create_sg(ctx, sg, segs);
376
377 e->flags |= PVSCSI_FLAG_CMD_WITH_SG_LIST;
378 ctx->sglPA = pci_map_single(adapter->dev, ctx->sgl,
379 SGL_SIZE, PCI_DMA_TODEVICE);
Josh Boyerc9658532015-12-03 08:27:59 -0500380 if (pci_dma_mapping_error(adapter->dev, ctx->sglPA)) {
381 scmd_printk(KERN_ERR, cmd,
382 "vmw_pvscsi: Failed to map ctx sglist for DMA.\n");
383 scsi_dma_unmap(cmd);
384 ctx->sglPA = 0;
385 return -ENOMEM;
386 }
Alok Kataria851b1642009-10-13 14:51:05 -0700387 e->dataAddr = ctx->sglPA;
388 } else
389 e->dataAddr = sg_dma_address(sg);
390 } else {
391 /*
392 * In case there is no S/G list, scsi_sglist points
393 * directly to the buffer.
394 */
395 ctx->dataPA = pci_map_single(adapter->dev, sg, bufflen,
396 cmd->sc_data_direction);
Josh Boyerc9658532015-12-03 08:27:59 -0500397 if (pci_dma_mapping_error(adapter->dev, ctx->dataPA)) {
398 scmd_printk(KERN_ERR, cmd,
399 "vmw_pvscsi: Failed to map direct data buffer for DMA.\n");
400 return -ENOMEM;
401 }
Alok Kataria851b1642009-10-13 14:51:05 -0700402 e->dataAddr = ctx->dataPA;
403 }
Josh Boyerc9658532015-12-03 08:27:59 -0500404
405 return 0;
Alok Kataria851b1642009-10-13 14:51:05 -0700406}
407
408static void pvscsi_unmap_buffers(const struct pvscsi_adapter *adapter,
409 struct pvscsi_ctx *ctx)
410{
411 struct scsi_cmnd *cmd;
412 unsigned bufflen;
413
414 cmd = ctx->cmd;
415 bufflen = scsi_bufflen(cmd);
416
417 if (bufflen != 0) {
418 unsigned count = scsi_sg_count(cmd);
419
420 if (count != 0) {
421 scsi_dma_unmap(cmd);
422 if (ctx->sglPA) {
423 pci_unmap_single(adapter->dev, ctx->sglPA,
424 SGL_SIZE, PCI_DMA_TODEVICE);
425 ctx->sglPA = 0;
426 }
427 } else
428 pci_unmap_single(adapter->dev, ctx->dataPA, bufflen,
429 cmd->sc_data_direction);
430 }
431 if (cmd->sense_buffer)
432 pci_unmap_single(adapter->dev, ctx->sensePA,
433 SCSI_SENSE_BUFFERSIZE, PCI_DMA_FROMDEVICE);
434}
435
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800436static int pvscsi_allocate_rings(struct pvscsi_adapter *adapter)
Alok Kataria851b1642009-10-13 14:51:05 -0700437{
438 adapter->rings_state = pci_alloc_consistent(adapter->dev, PAGE_SIZE,
439 &adapter->ringStatePA);
440 if (!adapter->rings_state)
441 return -ENOMEM;
442
443 adapter->req_pages = min(PVSCSI_MAX_NUM_PAGES_REQ_RING,
444 pvscsi_ring_pages);
445 adapter->req_depth = adapter->req_pages
446 * PVSCSI_MAX_NUM_REQ_ENTRIES_PER_PAGE;
447 adapter->req_ring = pci_alloc_consistent(adapter->dev,
448 adapter->req_pages * PAGE_SIZE,
449 &adapter->reqRingPA);
450 if (!adapter->req_ring)
451 return -ENOMEM;
452
453 adapter->cmp_pages = min(PVSCSI_MAX_NUM_PAGES_CMP_RING,
454 pvscsi_ring_pages);
455 adapter->cmp_ring = pci_alloc_consistent(adapter->dev,
456 adapter->cmp_pages * PAGE_SIZE,
457 &adapter->cmpRingPA);
458 if (!adapter->cmp_ring)
459 return -ENOMEM;
460
461 BUG_ON(!IS_ALIGNED(adapter->ringStatePA, PAGE_SIZE));
462 BUG_ON(!IS_ALIGNED(adapter->reqRingPA, PAGE_SIZE));
463 BUG_ON(!IS_ALIGNED(adapter->cmpRingPA, PAGE_SIZE));
464
465 if (!adapter->use_msg)
466 return 0;
467
468 adapter->msg_pages = min(PVSCSI_MAX_NUM_PAGES_MSG_RING,
469 pvscsi_msg_ring_pages);
470 adapter->msg_ring = pci_alloc_consistent(adapter->dev,
471 adapter->msg_pages * PAGE_SIZE,
472 &adapter->msgRingPA);
473 if (!adapter->msg_ring)
474 return -ENOMEM;
475 BUG_ON(!IS_ALIGNED(adapter->msgRingPA, PAGE_SIZE));
476
477 return 0;
478}
479
480static void pvscsi_setup_all_rings(const struct pvscsi_adapter *adapter)
481{
482 struct PVSCSICmdDescSetupRings cmd = { 0 };
483 dma_addr_t base;
484 unsigned i;
485
486 cmd.ringsStatePPN = adapter->ringStatePA >> PAGE_SHIFT;
487 cmd.reqRingNumPages = adapter->req_pages;
488 cmd.cmpRingNumPages = adapter->cmp_pages;
489
490 base = adapter->reqRingPA;
491 for (i = 0; i < adapter->req_pages; i++) {
492 cmd.reqRingPPNs[i] = base >> PAGE_SHIFT;
493 base += PAGE_SIZE;
494 }
495
496 base = adapter->cmpRingPA;
497 for (i = 0; i < adapter->cmp_pages; i++) {
498 cmd.cmpRingPPNs[i] = base >> PAGE_SHIFT;
499 base += PAGE_SIZE;
500 }
501
502 memset(adapter->rings_state, 0, PAGE_SIZE);
503 memset(adapter->req_ring, 0, adapter->req_pages * PAGE_SIZE);
504 memset(adapter->cmp_ring, 0, adapter->cmp_pages * PAGE_SIZE);
505
506 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_SETUP_RINGS,
507 &cmd, sizeof(cmd));
508
509 if (adapter->use_msg) {
510 struct PVSCSICmdDescSetupMsgRing cmd_msg = { 0 };
511
512 cmd_msg.numPages = adapter->msg_pages;
513
514 base = adapter->msgRingPA;
515 for (i = 0; i < adapter->msg_pages; i++) {
516 cmd_msg.ringPPNs[i] = base >> PAGE_SHIFT;
517 base += PAGE_SIZE;
518 }
519 memset(adapter->msg_ring, 0, adapter->msg_pages * PAGE_SIZE);
520
521 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_SETUP_MSG_RING,
522 &cmd_msg, sizeof(cmd_msg));
523 }
524}
525
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100526static int pvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth)
Arvind Kumar02845562014-03-08 13:04:45 -0800527{
Arvind Kumar02845562014-03-08 13:04:45 -0800528 if (!sdev->tagged_supported)
Christoph Hellwig1e6f2412014-11-13 14:27:41 +0100529 qdepth = 1;
Christoph Hellwig39f79502014-11-13 15:14:43 +0100530 return scsi_change_queue_depth(sdev, qdepth);
Arvind Kumar02845562014-03-08 13:04:45 -0800531}
532
Alok Kataria851b1642009-10-13 14:51:05 -0700533/*
534 * Pull a completion descriptor off and pass the completion back
535 * to the SCSI mid layer.
536 */
537static void pvscsi_complete_request(struct pvscsi_adapter *adapter,
538 const struct PVSCSIRingCmpDesc *e)
539{
540 struct pvscsi_ctx *ctx;
541 struct scsi_cmnd *cmd;
Arvind Kumara2713cc2014-03-08 12:51:12 -0800542 struct completion *abort_cmp;
Alok Kataria851b1642009-10-13 14:51:05 -0700543 u32 btstat = e->hostStatus;
544 u32 sdstat = e->scsiStatus;
545
546 ctx = pvscsi_get_context(adapter, e->context);
547 cmd = ctx->cmd;
Arvind Kumara2713cc2014-03-08 12:51:12 -0800548 abort_cmp = ctx->abort_cmp;
Alok Kataria851b1642009-10-13 14:51:05 -0700549 pvscsi_unmap_buffers(adapter, ctx);
550 pvscsi_release_context(adapter, ctx);
Arvind Kumara2713cc2014-03-08 12:51:12 -0800551 if (abort_cmp) {
552 /*
553 * The command was requested to be aborted. Just signal that
554 * the request completed and swallow the actual cmd completion
555 * here. The abort handler will post a completion for this
556 * command indicating that it got successfully aborted.
557 */
558 complete(abort_cmp);
559 return;
560 }
Alok Kataria851b1642009-10-13 14:51:05 -0700561
Arvind Kumara2713cc2014-03-08 12:51:12 -0800562 cmd->result = 0;
Alok Kataria851b1642009-10-13 14:51:05 -0700563 if (sdstat != SAM_STAT_GOOD &&
564 (btstat == BTSTAT_SUCCESS ||
565 btstat == BTSTAT_LINKED_COMMAND_COMPLETED ||
566 btstat == BTSTAT_LINKED_COMMAND_COMPLETED_WITH_FLAG)) {
Jim Gillb88f17e2018-08-02 14:13:30 -0700567 if (sdstat == SAM_STAT_COMMAND_TERMINATED) {
568 cmd->result = (DID_RESET << 16);
569 } else {
570 cmd->result = (DID_OK << 16) | sdstat;
571 if (sdstat == SAM_STAT_CHECK_CONDITION &&
572 cmd->sense_buffer)
573 cmd->result |= (DRIVER_SENSE << 24);
574 }
Alok Kataria851b1642009-10-13 14:51:05 -0700575 } else
576 switch (btstat) {
577 case BTSTAT_SUCCESS:
578 case BTSTAT_LINKED_COMMAND_COMPLETED:
579 case BTSTAT_LINKED_COMMAND_COMPLETED_WITH_FLAG:
580 /* If everything went fine, let's move on.. */
581 cmd->result = (DID_OK << 16);
582 break;
583
584 case BTSTAT_DATARUN:
585 case BTSTAT_DATA_UNDERRUN:
586 /* Report residual data in underruns */
587 scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen);
588 cmd->result = (DID_ERROR << 16);
589 break;
590
591 case BTSTAT_SELTIMEO:
592 /* Our emulation returns this for non-connected devs */
593 cmd->result = (DID_BAD_TARGET << 16);
594 break;
595
596 case BTSTAT_LUNMISMATCH:
597 case BTSTAT_TAGREJECT:
598 case BTSTAT_BADMSG:
599 cmd->result = (DRIVER_INVALID << 24);
600 /* fall through */
601
602 case BTSTAT_HAHARDWARE:
603 case BTSTAT_INVPHASE:
604 case BTSTAT_HATIMEOUT:
605 case BTSTAT_NORESPONSE:
606 case BTSTAT_DISCONNECT:
607 case BTSTAT_HASOFTWARE:
608 case BTSTAT_BUSFREE:
609 case BTSTAT_SENSFAILED:
610 cmd->result |= (DID_ERROR << 16);
611 break;
612
613 case BTSTAT_SENTRST:
614 case BTSTAT_RECVRST:
615 case BTSTAT_BUSRESET:
616 cmd->result = (DID_RESET << 16);
617 break;
618
619 case BTSTAT_ABORTQUEUE:
620 cmd->result = (DID_ABORT << 16);
621 break;
622
623 case BTSTAT_SCSIPARITY:
624 cmd->result = (DID_PARITY << 16);
625 break;
626
627 default:
628 cmd->result = (DID_ERROR << 16);
629 scmd_printk(KERN_DEBUG, cmd,
630 "Unknown completion status: 0x%x\n",
631 btstat);
632 }
633
634 dev_dbg(&cmd->device->sdev_gendev,
635 "cmd=%p %x ctx=%p result=0x%x status=0x%x,%x\n",
636 cmd, cmd->cmnd[0], ctx, cmd->result, btstat, sdstat);
637
638 cmd->scsi_done(cmd);
639}
640
641/*
642 * barrier usage : Since the PVSCSI device is emulated, there could be cases
643 * where we may want to serialize some accesses between the driver and the
644 * emulation layer. We use compiler barriers instead of the more expensive
645 * memory barriers because PVSCSI is only supported on X86 which has strong
646 * memory access ordering.
647 */
648static void pvscsi_process_completion_ring(struct pvscsi_adapter *adapter)
649{
650 struct PVSCSIRingsState *s = adapter->rings_state;
651 struct PVSCSIRingCmpDesc *ring = adapter->cmp_ring;
652 u32 cmp_entries = s->cmpNumEntriesLog2;
653
654 while (s->cmpConsIdx != s->cmpProdIdx) {
655 struct PVSCSIRingCmpDesc *e = ring + (s->cmpConsIdx &
656 MASK(cmp_entries));
657 /*
658 * This barrier() ensures that *e is not dereferenced while
659 * the device emulation still writes data into the slot.
660 * Since the device emulation advances s->cmpProdIdx only after
661 * updating the slot we want to check it first.
662 */
663 barrier();
664 pvscsi_complete_request(adapter, e);
665 /*
666 * This barrier() ensures that compiler doesn't reorder write
667 * to s->cmpConsIdx before the read of (*e) inside
668 * pvscsi_complete_request. Otherwise, device emulation may
669 * overwrite *e before we had a chance to read it.
670 */
671 barrier();
672 s->cmpConsIdx++;
673 }
674}
675
676/*
677 * Translate a Linux SCSI request into a request ring entry.
678 */
679static int pvscsi_queue_ring(struct pvscsi_adapter *adapter,
680 struct pvscsi_ctx *ctx, struct scsi_cmnd *cmd)
681{
682 struct PVSCSIRingsState *s;
683 struct PVSCSIRingReqDesc *e;
684 struct scsi_device *sdev;
685 u32 req_entries;
686
687 s = adapter->rings_state;
688 sdev = cmd->device;
689 req_entries = s->reqNumEntriesLog2;
690
691 /*
692 * If this condition holds, we might have room on the request ring, but
693 * we might not have room on the completion ring for the response.
694 * However, we have already ruled out this possibility - we would not
695 * have successfully allocated a context if it were true, since we only
696 * have one context per request entry. Check for it anyway, since it
697 * would be a serious bug.
698 */
699 if (s->reqProdIdx - s->cmpConsIdx >= 1 << req_entries) {
700 scmd_printk(KERN_ERR, cmd, "vmw_pvscsi: "
701 "ring full: reqProdIdx=%d cmpConsIdx=%d\n",
702 s->reqProdIdx, s->cmpConsIdx);
703 return -1;
704 }
705
706 e = adapter->req_ring + (s->reqProdIdx & MASK(req_entries));
707
708 e->bus = sdev->channel;
709 e->target = sdev->id;
710 memset(e->lun, 0, sizeof(e->lun));
711 e->lun[1] = sdev->lun;
712
713 if (cmd->sense_buffer) {
714 ctx->sensePA = pci_map_single(adapter->dev, cmd->sense_buffer,
715 SCSI_SENSE_BUFFERSIZE,
716 PCI_DMA_FROMDEVICE);
Josh Boyerc9658532015-12-03 08:27:59 -0500717 if (pci_dma_mapping_error(adapter->dev, ctx->sensePA)) {
718 scmd_printk(KERN_ERR, cmd,
719 "vmw_pvscsi: Failed to map sense buffer for DMA.\n");
720 ctx->sensePA = 0;
721 return -ENOMEM;
722 }
Alok Kataria851b1642009-10-13 14:51:05 -0700723 e->senseAddr = ctx->sensePA;
724 e->senseLen = SCSI_SENSE_BUFFERSIZE;
725 } else {
726 e->senseLen = 0;
727 e->senseAddr = 0;
728 }
729 e->cdbLen = cmd->cmd_len;
730 e->vcpuHint = smp_processor_id();
731 memcpy(e->cdb, cmd->cmnd, e->cdbLen);
732
733 e->tag = SIMPLE_QUEUE_TAG;
Alok Kataria851b1642009-10-13 14:51:05 -0700734
735 if (cmd->sc_data_direction == DMA_FROM_DEVICE)
736 e->flags = PVSCSI_FLAG_CMD_DIR_TOHOST;
737 else if (cmd->sc_data_direction == DMA_TO_DEVICE)
738 e->flags = PVSCSI_FLAG_CMD_DIR_TODEVICE;
739 else if (cmd->sc_data_direction == DMA_NONE)
740 e->flags = PVSCSI_FLAG_CMD_DIR_NONE;
741 else
742 e->flags = 0;
743
Josh Boyerc9658532015-12-03 08:27:59 -0500744 if (pvscsi_map_buffers(adapter, ctx, cmd, e) != 0) {
745 if (cmd->sense_buffer) {
746 pci_unmap_single(adapter->dev, ctx->sensePA,
747 SCSI_SENSE_BUFFERSIZE,
748 PCI_DMA_FROMDEVICE);
749 ctx->sensePA = 0;
750 }
751 return -ENOMEM;
752 }
Alok Kataria851b1642009-10-13 14:51:05 -0700753
754 e->context = pvscsi_map_context(adapter, ctx);
755
756 barrier();
757
758 s->reqProdIdx++;
759
760 return 0;
761}
762
Jeff Garzikf2812332010-11-16 02:10:29 -0500763static int pvscsi_queue_lck(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Alok Kataria851b1642009-10-13 14:51:05 -0700764{
765 struct Scsi_Host *host = cmd->device->host;
766 struct pvscsi_adapter *adapter = shost_priv(host);
767 struct pvscsi_ctx *ctx;
768 unsigned long flags;
Jan Karaff2870b2019-06-19 09:05:41 +0200769 unsigned char op;
Alok Kataria851b1642009-10-13 14:51:05 -0700770
771 spin_lock_irqsave(&adapter->hw_lock, flags);
772
773 ctx = pvscsi_acquire_context(adapter, cmd);
774 if (!ctx || pvscsi_queue_ring(adapter, ctx, cmd) != 0) {
775 if (ctx)
776 pvscsi_release_context(adapter, ctx);
777 spin_unlock_irqrestore(&adapter->hw_lock, flags);
778 return SCSI_MLQUEUE_HOST_BUSY;
779 }
780
781 cmd->scsi_done = done;
Jan Karaff2870b2019-06-19 09:05:41 +0200782 op = cmd->cmnd[0];
Alok Kataria851b1642009-10-13 14:51:05 -0700783
784 dev_dbg(&cmd->device->sdev_gendev,
Jan Karaff2870b2019-06-19 09:05:41 +0200785 "queued cmd %p, ctx %p, op=%x\n", cmd, ctx, op);
Alok Kataria851b1642009-10-13 14:51:05 -0700786
787 spin_unlock_irqrestore(&adapter->hw_lock, flags);
788
Jan Karaff2870b2019-06-19 09:05:41 +0200789 pvscsi_kick_io(adapter, op);
Alok Kataria851b1642009-10-13 14:51:05 -0700790
791 return 0;
792}
793
Jeff Garzikf2812332010-11-16 02:10:29 -0500794static DEF_SCSI_QCMD(pvscsi_queue)
795
Alok Kataria851b1642009-10-13 14:51:05 -0700796static int pvscsi_abort(struct scsi_cmnd *cmd)
797{
798 struct pvscsi_adapter *adapter = shost_priv(cmd->device->host);
799 struct pvscsi_ctx *ctx;
800 unsigned long flags;
Arvind Kumara2713cc2014-03-08 12:51:12 -0800801 int result = SUCCESS;
802 DECLARE_COMPLETION_ONSTACK(abort_cmp);
David Jefferyaac173e2016-10-28 12:27:26 -0400803 int done;
Alok Kataria851b1642009-10-13 14:51:05 -0700804
805 scmd_printk(KERN_DEBUG, cmd, "task abort on host %u, %p\n",
806 adapter->host->host_no, cmd);
807
808 spin_lock_irqsave(&adapter->hw_lock, flags);
809
810 /*
811 * Poll the completion ring first - we might be trying to abort
812 * a command that is waiting to be dispatched in the completion ring.
813 */
814 pvscsi_process_completion_ring(adapter);
815
816 /*
817 * If there is no context for the command, it either already succeeded
818 * or else was never properly issued. Not our problem.
819 */
820 ctx = pvscsi_find_context(adapter, cmd);
821 if (!ctx) {
822 scmd_printk(KERN_DEBUG, cmd, "Failed to abort cmd %p\n", cmd);
823 goto out;
824 }
825
Arvind Kumara2713cc2014-03-08 12:51:12 -0800826 /*
827 * Mark that the command has been requested to be aborted and issue
828 * the abort.
829 */
830 ctx->abort_cmp = &abort_cmp;
Alok Kataria851b1642009-10-13 14:51:05 -0700831
Arvind Kumara2713cc2014-03-08 12:51:12 -0800832 pvscsi_abort_cmd(adapter, ctx);
833 spin_unlock_irqrestore(&adapter->hw_lock, flags);
834 /* Wait for 2 secs for the completion. */
David Jefferyaac173e2016-10-28 12:27:26 -0400835 done = wait_for_completion_timeout(&abort_cmp, msecs_to_jiffies(2000));
Arvind Kumara2713cc2014-03-08 12:51:12 -0800836 spin_lock_irqsave(&adapter->hw_lock, flags);
837
David Jefferyaac173e2016-10-28 12:27:26 -0400838 if (!done) {
Arvind Kumara2713cc2014-03-08 12:51:12 -0800839 /*
840 * Failed to abort the command, unmark the fact that it
841 * was requested to be aborted.
842 */
843 ctx->abort_cmp = NULL;
844 result = FAILED;
845 scmd_printk(KERN_DEBUG, cmd,
846 "Failed to get completion for aborted cmd %p\n",
847 cmd);
848 goto out;
849 }
850
851 /*
852 * Successfully aborted the command.
853 */
854 cmd->result = (DID_ABORT << 16);
855 cmd->scsi_done(cmd);
Alok Kataria851b1642009-10-13 14:51:05 -0700856
857out:
858 spin_unlock_irqrestore(&adapter->hw_lock, flags);
Arvind Kumara2713cc2014-03-08 12:51:12 -0800859 return result;
Alok Kataria851b1642009-10-13 14:51:05 -0700860}
861
862/*
863 * Abort all outstanding requests. This is only safe to use if the completion
864 * ring will never be walked again or the device has been reset, because it
865 * destroys the 1-1 mapping between context field passed to emulation and our
866 * request structure.
867 */
868static void pvscsi_reset_all(struct pvscsi_adapter *adapter)
869{
870 unsigned i;
871
872 for (i = 0; i < adapter->req_depth; i++) {
873 struct pvscsi_ctx *ctx = &adapter->cmd_map[i];
874 struct scsi_cmnd *cmd = ctx->cmd;
875 if (cmd) {
876 scmd_printk(KERN_ERR, cmd,
877 "Forced reset on cmd %p\n", cmd);
878 pvscsi_unmap_buffers(adapter, ctx);
879 pvscsi_release_context(adapter, ctx);
880 cmd->result = (DID_RESET << 16);
881 cmd->scsi_done(cmd);
882 }
883 }
884}
885
886static int pvscsi_host_reset(struct scsi_cmnd *cmd)
887{
888 struct Scsi_Host *host = cmd->device->host;
889 struct pvscsi_adapter *adapter = shost_priv(host);
890 unsigned long flags;
891 bool use_msg;
892
893 scmd_printk(KERN_INFO, cmd, "SCSI Host reset\n");
894
895 spin_lock_irqsave(&adapter->hw_lock, flags);
896
897 use_msg = adapter->use_msg;
898
899 if (use_msg) {
900 adapter->use_msg = 0;
901 spin_unlock_irqrestore(&adapter->hw_lock, flags);
902
903 /*
904 * Now that we know that the ISR won't add more work on the
905 * workqueue we can safely flush any outstanding work.
906 */
907 flush_workqueue(adapter->workqueue);
908 spin_lock_irqsave(&adapter->hw_lock, flags);
909 }
910
911 /*
912 * We're going to tear down the entire ring structure and set it back
913 * up, so stalling new requests until all completions are flushed and
914 * the rings are back in place.
915 */
916
917 pvscsi_process_request_ring(adapter);
918
919 ll_adapter_reset(adapter);
920
921 /*
922 * Now process any completions. Note we do this AFTER adapter reset,
923 * which is strange, but stops races where completions get posted
924 * between processing the ring and issuing the reset. The backend will
925 * not touch the ring memory after reset, so the immediately pre-reset
926 * completion ring state is still valid.
927 */
928 pvscsi_process_completion_ring(adapter);
929
930 pvscsi_reset_all(adapter);
931 adapter->use_msg = use_msg;
932 pvscsi_setup_all_rings(adapter);
933 pvscsi_unmask_intr(adapter);
934
935 spin_unlock_irqrestore(&adapter->hw_lock, flags);
936
937 return SUCCESS;
938}
939
940static int pvscsi_bus_reset(struct scsi_cmnd *cmd)
941{
942 struct Scsi_Host *host = cmd->device->host;
943 struct pvscsi_adapter *adapter = shost_priv(host);
944 unsigned long flags;
945
946 scmd_printk(KERN_INFO, cmd, "SCSI Bus reset\n");
947
948 /*
949 * We don't want to queue new requests for this bus after
950 * flushing all pending requests to emulation, since new
951 * requests could then sneak in during this bus reset phase,
952 * so take the lock now.
953 */
954 spin_lock_irqsave(&adapter->hw_lock, flags);
955
956 pvscsi_process_request_ring(adapter);
957 ll_bus_reset(adapter);
958 pvscsi_process_completion_ring(adapter);
959
960 spin_unlock_irqrestore(&adapter->hw_lock, flags);
961
962 return SUCCESS;
963}
964
965static int pvscsi_device_reset(struct scsi_cmnd *cmd)
966{
967 struct Scsi_Host *host = cmd->device->host;
968 struct pvscsi_adapter *adapter = shost_priv(host);
969 unsigned long flags;
970
971 scmd_printk(KERN_INFO, cmd, "SCSI device reset on scsi%u:%u\n",
972 host->host_no, cmd->device->id);
973
974 /*
975 * We don't want to queue new requests for this device after flushing
976 * all pending requests to emulation, since new requests could then
977 * sneak in during this device reset phase, so take the lock now.
978 */
979 spin_lock_irqsave(&adapter->hw_lock, flags);
980
981 pvscsi_process_request_ring(adapter);
982 ll_device_reset(adapter, cmd->device->id);
983 pvscsi_process_completion_ring(adapter);
984
985 spin_unlock_irqrestore(&adapter->hw_lock, flags);
986
987 return SUCCESS;
988}
989
990static struct scsi_host_template pvscsi_template;
991
992static const char *pvscsi_info(struct Scsi_Host *host)
993{
994 struct pvscsi_adapter *adapter = shost_priv(host);
995 static char buf[256];
996
997 sprintf(buf, "VMware PVSCSI storage adapter rev %d, req/cmp/msg rings: "
998 "%u/%u/%u pages, cmd_per_lun=%u", adapter->rev,
999 adapter->req_pages, adapter->cmp_pages, adapter->msg_pages,
1000 pvscsi_template.cmd_per_lun);
1001
1002 return buf;
1003}
1004
1005static struct scsi_host_template pvscsi_template = {
1006 .module = THIS_MODULE,
1007 .name = "VMware PVSCSI Host Adapter",
1008 .proc_name = "vmw_pvscsi",
1009 .info = pvscsi_info,
1010 .queuecommand = pvscsi_queue,
1011 .this_id = -1,
1012 .sg_tablesize = PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT,
1013 .dma_boundary = UINT_MAX,
1014 .max_sectors = 0xffff,
1015 .use_clustering = ENABLE_CLUSTERING,
Arvind Kumar02845562014-03-08 13:04:45 -08001016 .change_queue_depth = pvscsi_change_queue_depth,
Alok Kataria851b1642009-10-13 14:51:05 -07001017 .eh_abort_handler = pvscsi_abort,
1018 .eh_device_reset_handler = pvscsi_device_reset,
1019 .eh_bus_reset_handler = pvscsi_bus_reset,
1020 .eh_host_reset_handler = pvscsi_host_reset,
1021};
1022
1023static void pvscsi_process_msg(const struct pvscsi_adapter *adapter,
1024 const struct PVSCSIRingMsgDesc *e)
1025{
1026 struct PVSCSIRingsState *s = adapter->rings_state;
1027 struct Scsi_Host *host = adapter->host;
1028 struct scsi_device *sdev;
1029
1030 printk(KERN_INFO "vmw_pvscsi: msg type: 0x%x - MSG RING: %u/%u (%u) \n",
1031 e->type, s->msgProdIdx, s->msgConsIdx, s->msgNumEntriesLog2);
1032
1033 BUILD_BUG_ON(PVSCSI_MSG_LAST != 2);
1034
1035 if (e->type == PVSCSI_MSG_DEV_ADDED) {
1036 struct PVSCSIMsgDescDevStatusChanged *desc;
1037 desc = (struct PVSCSIMsgDescDevStatusChanged *)e;
1038
1039 printk(KERN_INFO
1040 "vmw_pvscsi: msg: device added at scsi%u:%u:%u\n",
1041 desc->bus, desc->target, desc->lun[1]);
1042
1043 if (!scsi_host_get(host))
1044 return;
1045
1046 sdev = scsi_device_lookup(host, desc->bus, desc->target,
1047 desc->lun[1]);
1048 if (sdev) {
1049 printk(KERN_INFO "vmw_pvscsi: device already exists\n");
1050 scsi_device_put(sdev);
1051 } else
1052 scsi_add_device(adapter->host, desc->bus,
1053 desc->target, desc->lun[1]);
1054
1055 scsi_host_put(host);
1056 } else if (e->type == PVSCSI_MSG_DEV_REMOVED) {
1057 struct PVSCSIMsgDescDevStatusChanged *desc;
1058 desc = (struct PVSCSIMsgDescDevStatusChanged *)e;
1059
1060 printk(KERN_INFO
1061 "vmw_pvscsi: msg: device removed at scsi%u:%u:%u\n",
1062 desc->bus, desc->target, desc->lun[1]);
1063
1064 if (!scsi_host_get(host))
1065 return;
1066
1067 sdev = scsi_device_lookup(host, desc->bus, desc->target,
1068 desc->lun[1]);
1069 if (sdev) {
1070 scsi_remove_device(sdev);
1071 scsi_device_put(sdev);
1072 } else
1073 printk(KERN_INFO
1074 "vmw_pvscsi: failed to lookup scsi%u:%u:%u\n",
1075 desc->bus, desc->target, desc->lun[1]);
1076
1077 scsi_host_put(host);
1078 }
1079}
1080
1081static int pvscsi_msg_pending(const struct pvscsi_adapter *adapter)
1082{
1083 struct PVSCSIRingsState *s = adapter->rings_state;
1084
1085 return s->msgProdIdx != s->msgConsIdx;
1086}
1087
1088static void pvscsi_process_msg_ring(const struct pvscsi_adapter *adapter)
1089{
1090 struct PVSCSIRingsState *s = adapter->rings_state;
1091 struct PVSCSIRingMsgDesc *ring = adapter->msg_ring;
1092 u32 msg_entries = s->msgNumEntriesLog2;
1093
1094 while (pvscsi_msg_pending(adapter)) {
1095 struct PVSCSIRingMsgDesc *e = ring + (s->msgConsIdx &
1096 MASK(msg_entries));
1097
1098 barrier();
1099 pvscsi_process_msg(adapter, e);
1100 barrier();
1101 s->msgConsIdx++;
1102 }
1103}
1104
1105static void pvscsi_msg_workqueue_handler(struct work_struct *data)
1106{
1107 struct pvscsi_adapter *adapter;
1108
1109 adapter = container_of(data, struct pvscsi_adapter, work);
1110
1111 pvscsi_process_msg_ring(adapter);
1112}
1113
1114static int pvscsi_setup_msg_workqueue(struct pvscsi_adapter *adapter)
1115{
1116 char name[32];
1117
1118 if (!pvscsi_use_msg)
1119 return 0;
1120
1121 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_COMMAND,
1122 PVSCSI_CMD_SETUP_MSG_RING);
1123
1124 if (pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_COMMAND_STATUS) == -1)
1125 return 0;
1126
1127 snprintf(name, sizeof(name),
1128 "vmw_pvscsi_wq_%u", adapter->host->host_no);
1129
1130 adapter->workqueue = create_singlethread_workqueue(name);
1131 if (!adapter->workqueue) {
1132 printk(KERN_ERR "vmw_pvscsi: failed to create work queue\n");
1133 return 0;
1134 }
1135 INIT_WORK(&adapter->work, pvscsi_msg_workqueue_handler);
1136
1137 return 1;
1138}
1139
Rishi Mehta2a815b52014-03-11 13:51:33 -07001140static bool pvscsi_setup_req_threshold(struct pvscsi_adapter *adapter,
1141 bool enable)
1142{
1143 u32 val;
1144
1145 if (!pvscsi_use_req_threshold)
1146 return false;
1147
1148 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_COMMAND,
1149 PVSCSI_CMD_SETUP_REQCALLTHRESHOLD);
1150 val = pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_COMMAND_STATUS);
1151 if (val == -1) {
1152 printk(KERN_INFO "vmw_pvscsi: device does not support req_threshold\n");
1153 return false;
1154 } else {
1155 struct PVSCSICmdDescSetupReqCall cmd_msg = { 0 };
1156 cmd_msg.enable = enable;
1157 printk(KERN_INFO
1158 "vmw_pvscsi: %sabling reqCallThreshold\n",
1159 enable ? "en" : "dis");
1160 pvscsi_write_cmd_desc(adapter,
1161 PVSCSI_CMD_SETUP_REQCALLTHRESHOLD,
1162 &cmd_msg, sizeof(cmd_msg));
1163 return pvscsi_reg_read(adapter,
1164 PVSCSI_REG_OFFSET_COMMAND_STATUS) != 0;
1165 }
1166}
1167
Alok Kataria851b1642009-10-13 14:51:05 -07001168static irqreturn_t pvscsi_isr(int irq, void *devp)
1169{
1170 struct pvscsi_adapter *adapter = devp;
1171 int handled;
1172
1173 if (adapter->use_msi || adapter->use_msix)
1174 handled = true;
1175 else {
1176 u32 val = pvscsi_read_intr_status(adapter);
1177 handled = (val & PVSCSI_INTR_ALL_SUPPORTED) != 0;
1178 if (handled)
1179 pvscsi_write_intr_status(devp, val);
1180 }
1181
1182 if (handled) {
1183 unsigned long flags;
1184
1185 spin_lock_irqsave(&adapter->hw_lock, flags);
1186
1187 pvscsi_process_completion_ring(adapter);
1188 if (adapter->use_msg && pvscsi_msg_pending(adapter))
1189 queue_work(adapter->workqueue, &adapter->work);
1190
1191 spin_unlock_irqrestore(&adapter->hw_lock, flags);
1192 }
1193
1194 return IRQ_RETVAL(handled);
1195}
1196
1197static void pvscsi_free_sgls(const struct pvscsi_adapter *adapter)
1198{
1199 struct pvscsi_ctx *ctx = adapter->cmd_map;
1200 unsigned i;
1201
1202 for (i = 0; i < adapter->req_depth; ++i, ++ctx)
1203 free_pages((unsigned long)ctx->sgl, get_order(SGL_SIZE));
1204}
1205
Dmitry Torokhovd0e2ddf2010-01-19 10:24:40 -08001206static int pvscsi_setup_msix(const struct pvscsi_adapter *adapter,
1207 unsigned int *irq)
Alok Kataria851b1642009-10-13 14:51:05 -07001208{
1209 struct msix_entry entry = { 0, PVSCSI_VECTOR_COMPLETION };
1210 int ret;
1211
Alexander Gordeevdb1924d2014-07-16 20:05:27 +02001212 ret = pci_enable_msix_exact(adapter->dev, &entry, 1);
Alok Kataria851b1642009-10-13 14:51:05 -07001213 if (ret)
1214 return ret;
1215
1216 *irq = entry.vector;
1217
1218 return 0;
1219}
1220
1221static void pvscsi_shutdown_intr(struct pvscsi_adapter *adapter)
1222{
1223 if (adapter->irq) {
1224 free_irq(adapter->irq, adapter);
1225 adapter->irq = 0;
1226 }
1227 if (adapter->use_msi) {
1228 pci_disable_msi(adapter->dev);
1229 adapter->use_msi = 0;
1230 } else if (adapter->use_msix) {
1231 pci_disable_msix(adapter->dev);
1232 adapter->use_msix = 0;
1233 }
1234}
1235
1236static void pvscsi_release_resources(struct pvscsi_adapter *adapter)
1237{
Alok Kataria851b1642009-10-13 14:51:05 -07001238 if (adapter->workqueue)
1239 destroy_workqueue(adapter->workqueue);
1240
1241 if (adapter->mmioBase)
1242 pci_iounmap(adapter->dev, adapter->mmioBase);
1243
1244 pci_release_regions(adapter->dev);
1245
1246 if (adapter->cmd_map) {
1247 pvscsi_free_sgls(adapter);
1248 kfree(adapter->cmd_map);
1249 }
1250
1251 if (adapter->rings_state)
1252 pci_free_consistent(adapter->dev, PAGE_SIZE,
1253 adapter->rings_state, adapter->ringStatePA);
1254
1255 if (adapter->req_ring)
1256 pci_free_consistent(adapter->dev,
1257 adapter->req_pages * PAGE_SIZE,
1258 adapter->req_ring, adapter->reqRingPA);
1259
1260 if (adapter->cmp_ring)
1261 pci_free_consistent(adapter->dev,
1262 adapter->cmp_pages * PAGE_SIZE,
1263 adapter->cmp_ring, adapter->cmpRingPA);
1264
1265 if (adapter->msg_ring)
1266 pci_free_consistent(adapter->dev,
1267 adapter->msg_pages * PAGE_SIZE,
1268 adapter->msg_ring, adapter->msgRingPA);
1269}
1270
1271/*
1272 * Allocate scatter gather lists.
1273 *
1274 * These are statically allocated. Trying to be clever was not worth it.
1275 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001276 * Dynamic allocation can fail, and we can't go deep into the memory
Alok Kataria851b1642009-10-13 14:51:05 -07001277 * allocator, since we're a SCSI driver, and trying too hard to allocate
1278 * memory might generate disk I/O. We also don't want to fail disk I/O
1279 * in that case because we can't get an allocation - the I/O could be
1280 * trying to swap out data to free memory. Since that is pathological,
1281 * just use a statically allocated scatter list.
1282 *
1283 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001284static int pvscsi_allocate_sg(struct pvscsi_adapter *adapter)
Alok Kataria851b1642009-10-13 14:51:05 -07001285{
1286 struct pvscsi_ctx *ctx;
1287 int i;
1288
1289 ctx = adapter->cmd_map;
1290 BUILD_BUG_ON(sizeof(struct pvscsi_sg_list) > SGL_SIZE);
1291
1292 for (i = 0; i < adapter->req_depth; ++i, ++ctx) {
1293 ctx->sgl = (void *)__get_free_pages(GFP_KERNEL,
1294 get_order(SGL_SIZE));
1295 ctx->sglPA = 0;
1296 BUG_ON(!IS_ALIGNED(((unsigned long)ctx->sgl), PAGE_SIZE));
1297 if (!ctx->sgl) {
1298 for (; i >= 0; --i, --ctx) {
1299 free_pages((unsigned long)ctx->sgl,
1300 get_order(SGL_SIZE));
1301 ctx->sgl = NULL;
1302 }
1303 return -ENOMEM;
1304 }
1305 }
1306
1307 return 0;
1308}
1309
Arvind Kumara9310732012-03-08 15:48:53 +05301310/*
1311 * Query the device, fetch the config info and return the
1312 * maximum number of targets on the adapter. In case of
1313 * failure due to any reason return default i.e. 16.
1314 */
1315static u32 pvscsi_get_max_targets(struct pvscsi_adapter *adapter)
1316{
1317 struct PVSCSICmdDescConfigCmd cmd;
1318 struct PVSCSIConfigPageHeader *header;
1319 struct device *dev;
1320 dma_addr_t configPagePA;
1321 void *config_page;
1322 u32 numPhys = 16;
1323
1324 dev = pvscsi_dev(adapter);
1325 config_page = pci_alloc_consistent(adapter->dev, PAGE_SIZE,
1326 &configPagePA);
1327 if (!config_page) {
1328 dev_warn(dev, "vmw_pvscsi: failed to allocate memory for config page\n");
1329 goto exit;
1330 }
1331 BUG_ON(configPagePA & ~PAGE_MASK);
1332
1333 /* Fetch config info from the device. */
1334 cmd.configPageAddress = ((u64)PVSCSI_CONFIG_CONTROLLER_ADDRESS) << 32;
1335 cmd.configPageNum = PVSCSI_CONFIG_PAGE_CONTROLLER;
1336 cmd.cmpAddr = configPagePA;
1337 cmd._pad = 0;
1338
1339 /*
1340 * Mark the completion page header with error values. If the device
1341 * completes the command successfully, it sets the status values to
1342 * indicate success.
1343 */
1344 header = config_page;
1345 memset(header, 0, sizeof *header);
1346 header->hostStatus = BTSTAT_INVPARAM;
1347 header->scsiStatus = SDSTAT_CHECK;
1348
1349 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_CONFIG, &cmd, sizeof cmd);
1350
1351 if (header->hostStatus == BTSTAT_SUCCESS &&
1352 header->scsiStatus == SDSTAT_GOOD) {
1353 struct PVSCSIConfigPageController *config;
1354
1355 config = config_page;
1356 numPhys = config->numPhys;
1357 } else
1358 dev_warn(dev, "vmw_pvscsi: PVSCSI_CMD_CONFIG failed. hostStatus = 0x%x, scsiStatus = 0x%x\n",
1359 header->hostStatus, header->scsiStatus);
1360 pci_free_consistent(adapter->dev, PAGE_SIZE, config_page, configPagePA);
1361exit:
1362 return numPhys;
1363}
1364
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001365static int pvscsi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Alok Kataria851b1642009-10-13 14:51:05 -07001366{
1367 struct pvscsi_adapter *adapter;
Arvind Kumar02845562014-03-08 13:04:45 -08001368 struct pvscsi_adapter adapter_temp;
1369 struct Scsi_Host *host = NULL;
Alok Kataria851b1642009-10-13 14:51:05 -07001370 unsigned int i;
1371 unsigned long flags = 0;
1372 int error;
Arvind Kumar02845562014-03-08 13:04:45 -08001373 u32 max_id;
Alok Kataria851b1642009-10-13 14:51:05 -07001374
1375 error = -ENODEV;
1376
1377 if (pci_enable_device(pdev))
1378 return error;
1379
1380 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) == 0 &&
1381 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)) == 0) {
1382 printk(KERN_INFO "vmw_pvscsi: using 64bit dma\n");
1383 } else if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) == 0 &&
1384 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)) == 0) {
1385 printk(KERN_INFO "vmw_pvscsi: using 32bit dma\n");
1386 } else {
1387 printk(KERN_ERR "vmw_pvscsi: failed to set DMA mask\n");
1388 goto out_disable_device;
1389 }
1390
Arvind Kumar02845562014-03-08 13:04:45 -08001391 /*
1392 * Let's use a temp pvscsi_adapter struct until we find the number of
1393 * targets on the adapter, after that we will switch to the real
1394 * allocated struct.
1395 */
1396 adapter = &adapter_temp;
Alok Kataria851b1642009-10-13 14:51:05 -07001397 memset(adapter, 0, sizeof(*adapter));
1398 adapter->dev = pdev;
Alok Kataria851b1642009-10-13 14:51:05 -07001399 adapter->rev = pdev->revision;
1400
1401 if (pci_request_regions(pdev, "vmw_pvscsi")) {
1402 printk(KERN_ERR "vmw_pvscsi: pci memory selection failed\n");
Arvind Kumar02845562014-03-08 13:04:45 -08001403 goto out_disable_device;
Alok Kataria851b1642009-10-13 14:51:05 -07001404 }
1405
1406 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1407 if ((pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE_IO))
1408 continue;
1409
1410 if (pci_resource_len(pdev, i) < PVSCSI_MEM_SPACE_SIZE)
1411 continue;
1412
1413 break;
1414 }
1415
1416 if (i == DEVICE_COUNT_RESOURCE) {
1417 printk(KERN_ERR
1418 "vmw_pvscsi: adapter has no suitable MMIO region\n");
Arvind Kumar02845562014-03-08 13:04:45 -08001419 goto out_release_resources_and_disable;
Alok Kataria851b1642009-10-13 14:51:05 -07001420 }
1421
1422 adapter->mmioBase = pci_iomap(pdev, i, PVSCSI_MEM_SPACE_SIZE);
1423
1424 if (!adapter->mmioBase) {
1425 printk(KERN_ERR
1426 "vmw_pvscsi: can't iomap for BAR %d memsize %lu\n",
1427 i, PVSCSI_MEM_SPACE_SIZE);
Arvind Kumar02845562014-03-08 13:04:45 -08001428 goto out_release_resources_and_disable;
Alok Kataria851b1642009-10-13 14:51:05 -07001429 }
1430
1431 pci_set_master(pdev);
Arvind Kumar02845562014-03-08 13:04:45 -08001432
1433 /*
1434 * Ask the device for max number of targets before deciding the
1435 * default pvscsi_ring_pages value.
1436 */
1437 max_id = pvscsi_get_max_targets(adapter);
1438 printk(KERN_INFO "vmw_pvscsi: max_id: %u\n", max_id);
1439
1440 if (pvscsi_ring_pages == 0)
1441 /*
1442 * Set the right default value. Up to 16 it is 8, above it is
1443 * max.
1444 */
1445 pvscsi_ring_pages = (max_id > 16) ?
1446 PVSCSI_SETUP_RINGS_MAX_NUM_PAGES :
1447 PVSCSI_DEFAULT_NUM_PAGES_PER_RING;
1448 printk(KERN_INFO
1449 "vmw_pvscsi: setting ring_pages to %d\n",
1450 pvscsi_ring_pages);
1451
1452 pvscsi_template.can_queue =
1453 min(PVSCSI_MAX_NUM_PAGES_REQ_RING, pvscsi_ring_pages) *
1454 PVSCSI_MAX_NUM_REQ_ENTRIES_PER_PAGE;
1455 pvscsi_template.cmd_per_lun =
1456 min(pvscsi_template.can_queue, pvscsi_cmd_per_lun);
1457 host = scsi_host_alloc(&pvscsi_template, sizeof(struct pvscsi_adapter));
1458 if (!host) {
1459 printk(KERN_ERR "vmw_pvscsi: failed to allocate host\n");
1460 goto out_release_resources_and_disable;
1461 }
1462
1463 /*
1464 * Let's use the real pvscsi_adapter struct here onwards.
1465 */
1466 adapter = shost_priv(host);
1467 memset(adapter, 0, sizeof(*adapter));
1468 adapter->dev = pdev;
1469 adapter->host = host;
1470 /*
1471 * Copy back what we already have to the allocated adapter struct.
1472 */
1473 adapter->rev = adapter_temp.rev;
1474 adapter->mmioBase = adapter_temp.mmioBase;
1475
1476 spin_lock_init(&adapter->hw_lock);
1477 host->max_channel = 0;
1478 host->max_lun = 1;
1479 host->max_cmd_len = 16;
1480 host->max_id = max_id;
1481
Alok Kataria851b1642009-10-13 14:51:05 -07001482 pci_set_drvdata(pdev, host);
1483
1484 ll_adapter_reset(adapter);
1485
1486 adapter->use_msg = pvscsi_setup_msg_workqueue(adapter);
1487
1488 error = pvscsi_allocate_rings(adapter);
1489 if (error) {
1490 printk(KERN_ERR "vmw_pvscsi: unable to allocate ring memory\n");
1491 goto out_release_resources;
1492 }
1493
1494 /*
Alok Kataria851b1642009-10-13 14:51:05 -07001495 * From this point on we should reset the adapter if anything goes
1496 * wrong.
1497 */
1498 pvscsi_setup_all_rings(adapter);
1499
1500 adapter->cmd_map = kcalloc(adapter->req_depth,
1501 sizeof(struct pvscsi_ctx), GFP_KERNEL);
1502 if (!adapter->cmd_map) {
1503 printk(KERN_ERR "vmw_pvscsi: failed to allocate memory.\n");
1504 error = -ENOMEM;
1505 goto out_reset_adapter;
1506 }
1507
1508 INIT_LIST_HEAD(&adapter->cmd_pool);
1509 for (i = 0; i < adapter->req_depth; i++) {
1510 struct pvscsi_ctx *ctx = adapter->cmd_map + i;
1511 list_add(&ctx->list, &adapter->cmd_pool);
1512 }
1513
1514 error = pvscsi_allocate_sg(adapter);
1515 if (error) {
1516 printk(KERN_ERR "vmw_pvscsi: unable to allocate s/g table\n");
1517 goto out_reset_adapter;
1518 }
1519
1520 if (!pvscsi_disable_msix &&
1521 pvscsi_setup_msix(adapter, &adapter->irq) == 0) {
1522 printk(KERN_INFO "vmw_pvscsi: using MSI-X\n");
1523 adapter->use_msix = 1;
1524 } else if (!pvscsi_disable_msi && pci_enable_msi(pdev) == 0) {
1525 printk(KERN_INFO "vmw_pvscsi: using MSI\n");
1526 adapter->use_msi = 1;
1527 adapter->irq = pdev->irq;
1528 } else {
1529 printk(KERN_INFO "vmw_pvscsi: using INTx\n");
1530 adapter->irq = pdev->irq;
1531 flags = IRQF_SHARED;
1532 }
1533
Rishi Mehta2a815b52014-03-11 13:51:33 -07001534 adapter->use_req_threshold = pvscsi_setup_req_threshold(adapter, true);
1535 printk(KERN_DEBUG "vmw_pvscsi: driver-based request coalescing %sabled\n",
1536 adapter->use_req_threshold ? "en" : "dis");
1537
Alok Kataria851b1642009-10-13 14:51:05 -07001538 error = request_irq(adapter->irq, pvscsi_isr, flags,
1539 "vmw_pvscsi", adapter);
1540 if (error) {
1541 printk(KERN_ERR
1542 "vmw_pvscsi: unable to request IRQ: %d\n", error);
1543 adapter->irq = 0;
1544 goto out_reset_adapter;
1545 }
1546
1547 error = scsi_add_host(host, &pdev->dev);
1548 if (error) {
1549 printk(KERN_ERR
1550 "vmw_pvscsi: scsi_add_host failed: %d\n", error);
1551 goto out_reset_adapter;
1552 }
1553
1554 dev_info(&pdev->dev, "VMware PVSCSI rev %d host #%u\n",
1555 adapter->rev, host->host_no);
1556
1557 pvscsi_unmask_intr(adapter);
1558
1559 scsi_scan_host(host);
1560
1561 return 0;
1562
1563out_reset_adapter:
1564 ll_adapter_reset(adapter);
1565out_release_resources:
Cathy Avery7f928ef2018-11-27 14:28:53 -05001566 pvscsi_shutdown_intr(adapter);
Alok Kataria851b1642009-10-13 14:51:05 -07001567 pvscsi_release_resources(adapter);
Alok Kataria851b1642009-10-13 14:51:05 -07001568 scsi_host_put(host);
1569out_disable_device:
Alok Kataria851b1642009-10-13 14:51:05 -07001570 pci_disable_device(pdev);
1571
1572 return error;
Arvind Kumar02845562014-03-08 13:04:45 -08001573
1574out_release_resources_and_disable:
Cathy Avery7f928ef2018-11-27 14:28:53 -05001575 pvscsi_shutdown_intr(adapter);
Arvind Kumar02845562014-03-08 13:04:45 -08001576 pvscsi_release_resources(adapter);
1577 goto out_disable_device;
Alok Kataria851b1642009-10-13 14:51:05 -07001578}
1579
1580static void __pvscsi_shutdown(struct pvscsi_adapter *adapter)
1581{
1582 pvscsi_mask_intr(adapter);
1583
1584 if (adapter->workqueue)
1585 flush_workqueue(adapter->workqueue);
1586
1587 pvscsi_shutdown_intr(adapter);
1588
1589 pvscsi_process_request_ring(adapter);
1590 pvscsi_process_completion_ring(adapter);
1591 ll_adapter_reset(adapter);
1592}
1593
1594static void pvscsi_shutdown(struct pci_dev *dev)
1595{
1596 struct Scsi_Host *host = pci_get_drvdata(dev);
1597 struct pvscsi_adapter *adapter = shost_priv(host);
1598
1599 __pvscsi_shutdown(adapter);
1600}
1601
1602static void pvscsi_remove(struct pci_dev *pdev)
1603{
1604 struct Scsi_Host *host = pci_get_drvdata(pdev);
1605 struct pvscsi_adapter *adapter = shost_priv(host);
1606
1607 scsi_remove_host(host);
1608
1609 __pvscsi_shutdown(adapter);
1610 pvscsi_release_resources(adapter);
1611
1612 scsi_host_put(host);
1613
Alok Kataria851b1642009-10-13 14:51:05 -07001614 pci_disable_device(pdev);
1615}
1616
1617static struct pci_driver pvscsi_pci_driver = {
1618 .name = "vmw_pvscsi",
1619 .id_table = pvscsi_pci_tbl,
1620 .probe = pvscsi_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001621 .remove = pvscsi_remove,
Alok Kataria851b1642009-10-13 14:51:05 -07001622 .shutdown = pvscsi_shutdown,
1623};
1624
1625static int __init pvscsi_init(void)
1626{
1627 pr_info("%s - version %s\n",
1628 PVSCSI_LINUX_DRIVER_DESC, PVSCSI_DRIVER_VERSION_STRING);
1629 return pci_register_driver(&pvscsi_pci_driver);
1630}
1631
1632static void __exit pvscsi_exit(void)
1633{
1634 pci_unregister_driver(&pvscsi_pci_driver);
1635}
1636
1637module_init(pvscsi_init);
1638module_exit(pvscsi_exit);