2 * Linux driver for VMware's para-virtualized SCSI HBA.
4 * Copyright (C) 2008-2014, VMware, Inc. All Rights Reserved.
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.
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
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.
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/interrupt.h>
25 #include <linux/slab.h>
26 #include <linux/workqueue.h>
27 #include <linux/pci.h>
29 #include <scsi/scsi.h>
30 #include <scsi/scsi_host.h>
31 #include <scsi/scsi_cmnd.h>
32 #include <scsi/scsi_device.h>
33 #include <scsi/scsi_tcq.h>
35 #include "vmw_pvscsi.h"
37 #define PVSCSI_LINUX_DRIVER_DESC "VMware PVSCSI driver"
39 MODULE_DESCRIPTION(PVSCSI_LINUX_DRIVER_DESC);
40 MODULE_AUTHOR("VMware, Inc.");
41 MODULE_LICENSE("GPL");
42 MODULE_VERSION(PVSCSI_DRIVER_VERSION_STRING);
44 #define PVSCSI_DEFAULT_NUM_PAGES_PER_RING 8
45 #define PVSCSI_DEFAULT_NUM_PAGES_MSG_RING 1
46 #define PVSCSI_DEFAULT_QUEUE_DEPTH 254
47 #define SGL_SIZE PAGE_SIZE
49 struct pvscsi_sg_list {
50 struct PVSCSISGElement sge[PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT];
55 * The index of the context in cmd_map serves as the context ID for a
56 * 1-to-1 mapping completions back to requests.
58 struct scsi_cmnd *cmd;
59 struct pvscsi_sg_list *sgl;
60 struct list_head list;
64 struct completion *abort_cmp;
67 struct pvscsi_adapter {
71 bool use_req_threshold;
75 struct workqueue_struct *workqueue;
76 struct work_struct work;
78 struct PVSCSIRingReqDesc *req_ring;
83 struct PVSCSIRingCmpDesc *cmp_ring;
87 struct PVSCSIRingMsgDesc *msg_ring;
91 struct PVSCSIRingsState *rings_state;
92 dma_addr_t ringStatePA;
95 struct Scsi_Host *host;
97 struct list_head cmd_pool;
98 struct pvscsi_ctx *cmd_map;
102 /* Command line parameters */
103 static int pvscsi_ring_pages;
104 static int pvscsi_msg_ring_pages = PVSCSI_DEFAULT_NUM_PAGES_MSG_RING;
105 static int pvscsi_cmd_per_lun = PVSCSI_DEFAULT_QUEUE_DEPTH;
106 static bool pvscsi_disable_msi;
107 static bool pvscsi_disable_msix;
108 static bool pvscsi_use_msg = true;
109 static bool pvscsi_use_req_threshold = true;
111 #define PVSCSI_RW (S_IRUSR | S_IWUSR)
113 module_param_named(ring_pages, pvscsi_ring_pages, int, PVSCSI_RW);
114 MODULE_PARM_DESC(ring_pages, "Number of pages per req/cmp ring - (default="
115 __stringify(PVSCSI_DEFAULT_NUM_PAGES_PER_RING)
116 "[up to 16 targets],"
117 __stringify(PVSCSI_SETUP_RINGS_MAX_NUM_PAGES)
118 "[for 16+ targets])");
120 module_param_named(msg_ring_pages, pvscsi_msg_ring_pages, int, PVSCSI_RW);
121 MODULE_PARM_DESC(msg_ring_pages, "Number of pages for the msg ring - (default="
122 __stringify(PVSCSI_DEFAULT_NUM_PAGES_MSG_RING) ")");
124 module_param_named(cmd_per_lun, pvscsi_cmd_per_lun, int, PVSCSI_RW);
125 MODULE_PARM_DESC(cmd_per_lun, "Maximum commands per lun - (default="
126 __stringify(PVSCSI_DEFAULT_QUEUE_DEPTH) ")");
128 module_param_named(disable_msi, pvscsi_disable_msi, bool, PVSCSI_RW);
129 MODULE_PARM_DESC(disable_msi, "Disable MSI use in driver - (default=0)");
131 module_param_named(disable_msix, pvscsi_disable_msix, bool, PVSCSI_RW);
132 MODULE_PARM_DESC(disable_msix, "Disable MSI-X use in driver - (default=0)");
134 module_param_named(use_msg, pvscsi_use_msg, bool, PVSCSI_RW);
135 MODULE_PARM_DESC(use_msg, "Use msg ring when available - (default=1)");
137 module_param_named(use_req_threshold, pvscsi_use_req_threshold,
139 MODULE_PARM_DESC(use_req_threshold, "Use driver-based request coalescing if configured - (default=1)");
141 static const struct pci_device_id pvscsi_pci_tbl[] = {
142 { PCI_VDEVICE(VMWARE, PCI_DEVICE_ID_VMWARE_PVSCSI) },
146 MODULE_DEVICE_TABLE(pci, pvscsi_pci_tbl);
148 static struct device *
149 pvscsi_dev(const struct pvscsi_adapter *adapter)
151 return &(adapter->dev->dev);
154 static struct pvscsi_ctx *
155 pvscsi_find_context(const struct pvscsi_adapter *adapter, struct scsi_cmnd *cmd)
157 struct pvscsi_ctx *ctx, *end;
159 end = &adapter->cmd_map[adapter->req_depth];
160 for (ctx = adapter->cmd_map; ctx < end; ctx++)
167 static struct pvscsi_ctx *
168 pvscsi_acquire_context(struct pvscsi_adapter *adapter, struct scsi_cmnd *cmd)
170 struct pvscsi_ctx *ctx;
172 if (list_empty(&adapter->cmd_pool))
175 ctx = list_first_entry(&adapter->cmd_pool, struct pvscsi_ctx, list);
177 list_del(&ctx->list);
182 static void pvscsi_release_context(struct pvscsi_adapter *adapter,
183 struct pvscsi_ctx *ctx)
186 ctx->abort_cmp = NULL;
187 list_add(&ctx->list, &adapter->cmd_pool);
191 * Map a pvscsi_ctx struct to a context ID field value; we map to a simple
192 * non-zero integer. ctx always points to an entry in cmd_map array, hence
193 * the return value is always >=1.
195 static u64 pvscsi_map_context(const struct pvscsi_adapter *adapter,
196 const struct pvscsi_ctx *ctx)
198 return ctx - adapter->cmd_map + 1;
201 static struct pvscsi_ctx *
202 pvscsi_get_context(const struct pvscsi_adapter *adapter, u64 context)
204 return &adapter->cmd_map[context - 1];
207 static void pvscsi_reg_write(const struct pvscsi_adapter *adapter,
210 writel(val, adapter->mmioBase + offset);
213 static u32 pvscsi_reg_read(const struct pvscsi_adapter *adapter, u32 offset)
215 return readl(adapter->mmioBase + offset);
218 static u32 pvscsi_read_intr_status(const struct pvscsi_adapter *adapter)
220 return pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_INTR_STATUS);
223 static void pvscsi_write_intr_status(const struct pvscsi_adapter *adapter,
226 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_INTR_STATUS, val);
229 static void pvscsi_unmask_intr(const struct pvscsi_adapter *adapter)
233 intr_bits = PVSCSI_INTR_CMPL_MASK;
234 if (adapter->use_msg)
235 intr_bits |= PVSCSI_INTR_MSG_MASK;
237 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_INTR_MASK, intr_bits);
240 static void pvscsi_mask_intr(const struct pvscsi_adapter *adapter)
242 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_INTR_MASK, 0);
245 static void pvscsi_write_cmd_desc(const struct pvscsi_adapter *adapter,
246 u32 cmd, const void *desc, size_t len)
248 const u32 *ptr = desc;
252 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_COMMAND, cmd);
253 for (i = 0; i < len; i++)
254 pvscsi_reg_write(adapter,
255 PVSCSI_REG_OFFSET_COMMAND_DATA, ptr[i]);
258 static void pvscsi_abort_cmd(const struct pvscsi_adapter *adapter,
259 const struct pvscsi_ctx *ctx)
261 struct PVSCSICmdDescAbortCmd cmd = { 0 };
263 cmd.target = ctx->cmd->device->id;
264 cmd.context = pvscsi_map_context(adapter, ctx);
266 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_ABORT_CMD, &cmd, sizeof(cmd));
269 static void pvscsi_kick_rw_io(const struct pvscsi_adapter *adapter)
271 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_KICK_RW_IO, 0);
274 static void pvscsi_process_request_ring(const struct pvscsi_adapter *adapter)
276 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_KICK_NON_RW_IO, 0);
279 static int scsi_is_rw(unsigned char op)
281 return op == READ_6 || op == WRITE_6 ||
282 op == READ_10 || op == WRITE_10 ||
283 op == READ_12 || op == WRITE_12 ||
284 op == READ_16 || op == WRITE_16;
287 static void pvscsi_kick_io(const struct pvscsi_adapter *adapter,
290 if (scsi_is_rw(op)) {
291 struct PVSCSIRingsState *s = adapter->rings_state;
293 if (!adapter->use_req_threshold ||
294 s->reqProdIdx - s->reqConsIdx >= s->reqCallThreshold)
295 pvscsi_kick_rw_io(adapter);
297 pvscsi_process_request_ring(adapter);
301 static void ll_adapter_reset(const struct pvscsi_adapter *adapter)
303 dev_dbg(pvscsi_dev(adapter), "Adapter Reset on %p\n", adapter);
305 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_ADAPTER_RESET, NULL, 0);
308 static void ll_bus_reset(const struct pvscsi_adapter *adapter)
310 dev_dbg(pvscsi_dev(adapter), "Resetting bus on %p\n", adapter);
312 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_RESET_BUS, NULL, 0);
315 static void ll_device_reset(const struct pvscsi_adapter *adapter, u32 target)
317 struct PVSCSICmdDescResetDevice cmd = { 0 };
319 dev_dbg(pvscsi_dev(adapter), "Resetting device: target=%u\n", target);
323 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_RESET_DEVICE,
327 static void pvscsi_create_sg(struct pvscsi_ctx *ctx,
328 struct scatterlist *sg, unsigned count)
331 struct PVSCSISGElement *sge;
333 BUG_ON(count > PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT);
335 sge = &ctx->sgl->sge[0];
336 for (i = 0; i < count; i++, sg = sg_next(sg)) {
337 sge[i].addr = sg_dma_address(sg);
338 sge[i].length = sg_dma_len(sg);
344 * Map all data buffers for a command into PCI space and
345 * setup the scatter/gather list if needed.
347 static int pvscsi_map_buffers(struct pvscsi_adapter *adapter,
348 struct pvscsi_ctx *ctx, struct scsi_cmnd *cmd,
349 struct PVSCSIRingReqDesc *e)
352 unsigned bufflen = scsi_bufflen(cmd);
353 struct scatterlist *sg;
355 e->dataLen = bufflen;
360 sg = scsi_sglist(cmd);
361 count = scsi_sg_count(cmd);
363 int segs = scsi_dma_map(cmd);
365 if (segs == -ENOMEM) {
366 scmd_printk(KERN_DEBUG, cmd,
367 "vmw_pvscsi: Failed to map cmd sglist for DMA.\n");
369 } else if (segs > 1) {
370 pvscsi_create_sg(ctx, sg, segs);
372 e->flags |= PVSCSI_FLAG_CMD_WITH_SG_LIST;
373 ctx->sglPA = dma_map_single(&adapter->dev->dev,
374 ctx->sgl, SGL_SIZE, DMA_TO_DEVICE);
375 if (dma_mapping_error(&adapter->dev->dev, ctx->sglPA)) {
376 scmd_printk(KERN_ERR, cmd,
377 "vmw_pvscsi: Failed to map ctx sglist for DMA.\n");
382 e->dataAddr = ctx->sglPA;
384 e->dataAddr = sg_dma_address(sg);
387 * In case there is no S/G list, scsi_sglist points
388 * directly to the buffer.
390 ctx->dataPA = dma_map_single(&adapter->dev->dev, sg, bufflen,
391 cmd->sc_data_direction);
392 if (dma_mapping_error(&adapter->dev->dev, ctx->dataPA)) {
393 scmd_printk(KERN_DEBUG, cmd,
394 "vmw_pvscsi: Failed to map direct data buffer for DMA.\n");
397 e->dataAddr = ctx->dataPA;
404 * The device incorrectly doesn't clear the first byte of the sense
405 * buffer in some cases. We have to do it ourselves.
406 * Otherwise we run into trouble when SWIOTLB is forced.
408 static void pvscsi_patch_sense(struct scsi_cmnd *cmd)
410 if (cmd->sense_buffer)
411 cmd->sense_buffer[0] = 0;
414 static void pvscsi_unmap_buffers(const struct pvscsi_adapter *adapter,
415 struct pvscsi_ctx *ctx)
417 struct scsi_cmnd *cmd;
421 bufflen = scsi_bufflen(cmd);
424 unsigned count = scsi_sg_count(cmd);
429 dma_unmap_single(&adapter->dev->dev, ctx->sglPA,
430 SGL_SIZE, DMA_TO_DEVICE);
434 dma_unmap_single(&adapter->dev->dev, ctx->dataPA,
435 bufflen, cmd->sc_data_direction);
437 if (cmd->sense_buffer)
438 dma_unmap_single(&adapter->dev->dev, ctx->sensePA,
439 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
442 static int pvscsi_allocate_rings(struct pvscsi_adapter *adapter)
444 adapter->rings_state = dma_alloc_coherent(&adapter->dev->dev, PAGE_SIZE,
445 &adapter->ringStatePA, GFP_KERNEL);
446 if (!adapter->rings_state)
449 adapter->req_pages = min(PVSCSI_MAX_NUM_PAGES_REQ_RING,
451 adapter->req_depth = adapter->req_pages
452 * PVSCSI_MAX_NUM_REQ_ENTRIES_PER_PAGE;
453 adapter->req_ring = dma_alloc_coherent(&adapter->dev->dev,
454 adapter->req_pages * PAGE_SIZE, &adapter->reqRingPA,
456 if (!adapter->req_ring)
459 adapter->cmp_pages = min(PVSCSI_MAX_NUM_PAGES_CMP_RING,
461 adapter->cmp_ring = dma_alloc_coherent(&adapter->dev->dev,
462 adapter->cmp_pages * PAGE_SIZE, &adapter->cmpRingPA,
464 if (!adapter->cmp_ring)
467 BUG_ON(!IS_ALIGNED(adapter->ringStatePA, PAGE_SIZE));
468 BUG_ON(!IS_ALIGNED(adapter->reqRingPA, PAGE_SIZE));
469 BUG_ON(!IS_ALIGNED(adapter->cmpRingPA, PAGE_SIZE));
471 if (!adapter->use_msg)
474 adapter->msg_pages = min(PVSCSI_MAX_NUM_PAGES_MSG_RING,
475 pvscsi_msg_ring_pages);
476 adapter->msg_ring = dma_alloc_coherent(&adapter->dev->dev,
477 adapter->msg_pages * PAGE_SIZE, &adapter->msgRingPA,
479 if (!adapter->msg_ring)
481 BUG_ON(!IS_ALIGNED(adapter->msgRingPA, PAGE_SIZE));
486 static void pvscsi_setup_all_rings(const struct pvscsi_adapter *adapter)
488 struct PVSCSICmdDescSetupRings cmd = { 0 };
492 cmd.ringsStatePPN = adapter->ringStatePA >> PAGE_SHIFT;
493 cmd.reqRingNumPages = adapter->req_pages;
494 cmd.cmpRingNumPages = adapter->cmp_pages;
496 base = adapter->reqRingPA;
497 for (i = 0; i < adapter->req_pages; i++) {
498 cmd.reqRingPPNs[i] = base >> PAGE_SHIFT;
502 base = adapter->cmpRingPA;
503 for (i = 0; i < adapter->cmp_pages; i++) {
504 cmd.cmpRingPPNs[i] = base >> PAGE_SHIFT;
508 memset(adapter->rings_state, 0, PAGE_SIZE);
509 memset(adapter->req_ring, 0, adapter->req_pages * PAGE_SIZE);
510 memset(adapter->cmp_ring, 0, adapter->cmp_pages * PAGE_SIZE);
512 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_SETUP_RINGS,
515 if (adapter->use_msg) {
516 struct PVSCSICmdDescSetupMsgRing cmd_msg = { 0 };
518 cmd_msg.numPages = adapter->msg_pages;
520 base = adapter->msgRingPA;
521 for (i = 0; i < adapter->msg_pages; i++) {
522 cmd_msg.ringPPNs[i] = base >> PAGE_SHIFT;
525 memset(adapter->msg_ring, 0, adapter->msg_pages * PAGE_SIZE);
527 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_SETUP_MSG_RING,
528 &cmd_msg, sizeof(cmd_msg));
532 static int pvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth)
534 if (!sdev->tagged_supported)
536 return scsi_change_queue_depth(sdev, qdepth);
540 * Pull a completion descriptor off and pass the completion back
541 * to the SCSI mid layer.
543 static void pvscsi_complete_request(struct pvscsi_adapter *adapter,
544 const struct PVSCSIRingCmpDesc *e)
546 struct pvscsi_ctx *ctx;
547 struct scsi_cmnd *cmd;
548 struct completion *abort_cmp;
549 u32 btstat = e->hostStatus;
550 u32 sdstat = e->scsiStatus;
552 ctx = pvscsi_get_context(adapter, e->context);
554 abort_cmp = ctx->abort_cmp;
555 pvscsi_unmap_buffers(adapter, ctx);
556 if (sdstat != SAM_STAT_CHECK_CONDITION)
557 pvscsi_patch_sense(cmd);
558 pvscsi_release_context(adapter, ctx);
561 * The command was requested to be aborted. Just signal that
562 * the request completed and swallow the actual cmd completion
563 * here. The abort handler will post a completion for this
564 * command indicating that it got successfully aborted.
571 if (sdstat != SAM_STAT_GOOD &&
572 (btstat == BTSTAT_SUCCESS ||
573 btstat == BTSTAT_LINKED_COMMAND_COMPLETED ||
574 btstat == BTSTAT_LINKED_COMMAND_COMPLETED_WITH_FLAG)) {
575 if (sdstat == SAM_STAT_COMMAND_TERMINATED) {
576 cmd->result = (DID_RESET << 16);
578 cmd->result = (DID_OK << 16) | sdstat;
583 case BTSTAT_LINKED_COMMAND_COMPLETED:
584 case BTSTAT_LINKED_COMMAND_COMPLETED_WITH_FLAG:
586 * Commands like INQUIRY may transfer less data than
587 * requested by the initiator via bufflen. Set residual
588 * count to make upper layer aware of the actual amount
591 scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen);
592 cmd->result = (DID_OK << 16);
596 case BTSTAT_DATA_UNDERRUN:
597 /* Report residual data in underruns */
598 scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen);
599 cmd->result = (DID_ERROR << 16);
602 case BTSTAT_SELTIMEO:
603 /* Our emulation returns this for non-connected devs */
604 cmd->result = (DID_BAD_TARGET << 16);
607 case BTSTAT_LUNMISMATCH:
608 case BTSTAT_TAGREJECT:
610 case BTSTAT_HAHARDWARE:
611 case BTSTAT_INVPHASE:
612 case BTSTAT_HATIMEOUT:
613 case BTSTAT_NORESPONSE:
614 case BTSTAT_DISCONNECT:
615 case BTSTAT_HASOFTWARE:
617 case BTSTAT_SENSFAILED:
618 cmd->result |= (DID_ERROR << 16);
623 case BTSTAT_BUSRESET:
624 cmd->result = (DID_RESET << 16);
627 case BTSTAT_ABORTQUEUE:
628 cmd->result = (DID_BUS_BUSY << 16);
631 case BTSTAT_SCSIPARITY:
632 cmd->result = (DID_PARITY << 16);
636 cmd->result = (DID_ERROR << 16);
637 scmd_printk(KERN_DEBUG, cmd,
638 "Unknown completion status: 0x%x\n",
642 dev_dbg(&cmd->device->sdev_gendev,
643 "cmd=%p %x ctx=%p result=0x%x status=0x%x,%x\n",
644 cmd, cmd->cmnd[0], ctx, cmd->result, btstat, sdstat);
650 * barrier usage : Since the PVSCSI device is emulated, there could be cases
651 * where we may want to serialize some accesses between the driver and the
652 * emulation layer. We use compiler barriers instead of the more expensive
653 * memory barriers because PVSCSI is only supported on X86 which has strong
654 * memory access ordering.
656 static void pvscsi_process_completion_ring(struct pvscsi_adapter *adapter)
658 struct PVSCSIRingsState *s = adapter->rings_state;
659 struct PVSCSIRingCmpDesc *ring = adapter->cmp_ring;
660 u32 cmp_entries = s->cmpNumEntriesLog2;
662 while (s->cmpConsIdx != s->cmpProdIdx) {
663 struct PVSCSIRingCmpDesc *e = ring + (s->cmpConsIdx &
666 * This barrier() ensures that *e is not dereferenced while
667 * the device emulation still writes data into the slot.
668 * Since the device emulation advances s->cmpProdIdx only after
669 * updating the slot we want to check it first.
672 pvscsi_complete_request(adapter, e);
674 * This barrier() ensures that compiler doesn't reorder write
675 * to s->cmpConsIdx before the read of (*e) inside
676 * pvscsi_complete_request. Otherwise, device emulation may
677 * overwrite *e before we had a chance to read it.
685 * Translate a Linux SCSI request into a request ring entry.
687 static int pvscsi_queue_ring(struct pvscsi_adapter *adapter,
688 struct pvscsi_ctx *ctx, struct scsi_cmnd *cmd)
690 struct PVSCSIRingsState *s;
691 struct PVSCSIRingReqDesc *e;
692 struct scsi_device *sdev;
695 s = adapter->rings_state;
697 req_entries = s->reqNumEntriesLog2;
700 * If this condition holds, we might have room on the request ring, but
701 * we might not have room on the completion ring for the response.
702 * However, we have already ruled out this possibility - we would not
703 * have successfully allocated a context if it were true, since we only
704 * have one context per request entry. Check for it anyway, since it
705 * would be a serious bug.
707 if (s->reqProdIdx - s->cmpConsIdx >= 1 << req_entries) {
708 scmd_printk(KERN_ERR, cmd, "vmw_pvscsi: "
709 "ring full: reqProdIdx=%d cmpConsIdx=%d\n",
710 s->reqProdIdx, s->cmpConsIdx);
714 e = adapter->req_ring + (s->reqProdIdx & MASK(req_entries));
716 e->bus = sdev->channel;
717 e->target = sdev->id;
718 memset(e->lun, 0, sizeof(e->lun));
719 e->lun[1] = sdev->lun;
721 if (cmd->sense_buffer) {
722 ctx->sensePA = dma_map_single(&adapter->dev->dev,
723 cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE,
725 if (dma_mapping_error(&adapter->dev->dev, ctx->sensePA)) {
726 scmd_printk(KERN_DEBUG, cmd,
727 "vmw_pvscsi: Failed to map sense buffer for DMA.\n");
731 e->senseAddr = ctx->sensePA;
732 e->senseLen = SCSI_SENSE_BUFFERSIZE;
737 e->cdbLen = cmd->cmd_len;
738 e->vcpuHint = smp_processor_id();
739 memcpy(e->cdb, cmd->cmnd, e->cdbLen);
741 e->tag = SIMPLE_QUEUE_TAG;
743 if (cmd->sc_data_direction == DMA_FROM_DEVICE)
744 e->flags = PVSCSI_FLAG_CMD_DIR_TOHOST;
745 else if (cmd->sc_data_direction == DMA_TO_DEVICE)
746 e->flags = PVSCSI_FLAG_CMD_DIR_TODEVICE;
747 else if (cmd->sc_data_direction == DMA_NONE)
748 e->flags = PVSCSI_FLAG_CMD_DIR_NONE;
752 if (pvscsi_map_buffers(adapter, ctx, cmd, e) != 0) {
753 if (cmd->sense_buffer) {
754 dma_unmap_single(&adapter->dev->dev, ctx->sensePA,
755 SCSI_SENSE_BUFFERSIZE,
762 e->context = pvscsi_map_context(adapter, ctx);
771 static int pvscsi_queue_lck(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
773 struct Scsi_Host *host = cmd->device->host;
774 struct pvscsi_adapter *adapter = shost_priv(host);
775 struct pvscsi_ctx *ctx;
779 spin_lock_irqsave(&adapter->hw_lock, flags);
781 ctx = pvscsi_acquire_context(adapter, cmd);
782 if (!ctx || pvscsi_queue_ring(adapter, ctx, cmd) != 0) {
784 pvscsi_release_context(adapter, ctx);
785 spin_unlock_irqrestore(&adapter->hw_lock, flags);
786 return SCSI_MLQUEUE_HOST_BUSY;
789 cmd->scsi_done = done;
792 dev_dbg(&cmd->device->sdev_gendev,
793 "queued cmd %p, ctx %p, op=%x\n", cmd, ctx, op);
795 spin_unlock_irqrestore(&adapter->hw_lock, flags);
797 pvscsi_kick_io(adapter, op);
802 static DEF_SCSI_QCMD(pvscsi_queue)
804 static int pvscsi_abort(struct scsi_cmnd *cmd)
806 struct pvscsi_adapter *adapter = shost_priv(cmd->device->host);
807 struct pvscsi_ctx *ctx;
809 int result = SUCCESS;
810 DECLARE_COMPLETION_ONSTACK(abort_cmp);
813 scmd_printk(KERN_DEBUG, cmd, "task abort on host %u, %p\n",
814 adapter->host->host_no, cmd);
816 spin_lock_irqsave(&adapter->hw_lock, flags);
819 * Poll the completion ring first - we might be trying to abort
820 * a command that is waiting to be dispatched in the completion ring.
822 pvscsi_process_completion_ring(adapter);
825 * If there is no context for the command, it either already succeeded
826 * or else was never properly issued. Not our problem.
828 ctx = pvscsi_find_context(adapter, cmd);
830 scmd_printk(KERN_DEBUG, cmd, "Failed to abort cmd %p\n", cmd);
835 * Mark that the command has been requested to be aborted and issue
838 ctx->abort_cmp = &abort_cmp;
840 pvscsi_abort_cmd(adapter, ctx);
841 spin_unlock_irqrestore(&adapter->hw_lock, flags);
842 /* Wait for 2 secs for the completion. */
843 done = wait_for_completion_timeout(&abort_cmp, msecs_to_jiffies(2000));
844 spin_lock_irqsave(&adapter->hw_lock, flags);
848 * Failed to abort the command, unmark the fact that it
849 * was requested to be aborted.
851 ctx->abort_cmp = NULL;
853 scmd_printk(KERN_DEBUG, cmd,
854 "Failed to get completion for aborted cmd %p\n",
860 * Successfully aborted the command.
862 cmd->result = (DID_ABORT << 16);
866 spin_unlock_irqrestore(&adapter->hw_lock, flags);
871 * Abort all outstanding requests. This is only safe to use if the completion
872 * ring will never be walked again or the device has been reset, because it
873 * destroys the 1-1 mapping between context field passed to emulation and our
876 static void pvscsi_reset_all(struct pvscsi_adapter *adapter)
880 for (i = 0; i < adapter->req_depth; i++) {
881 struct pvscsi_ctx *ctx = &adapter->cmd_map[i];
882 struct scsi_cmnd *cmd = ctx->cmd;
884 scmd_printk(KERN_ERR, cmd,
885 "Forced reset on cmd %p\n", cmd);
886 pvscsi_unmap_buffers(adapter, ctx);
887 pvscsi_patch_sense(cmd);
888 pvscsi_release_context(adapter, ctx);
889 cmd->result = (DID_RESET << 16);
895 static int pvscsi_host_reset(struct scsi_cmnd *cmd)
897 struct Scsi_Host *host = cmd->device->host;
898 struct pvscsi_adapter *adapter = shost_priv(host);
902 scmd_printk(KERN_INFO, cmd, "SCSI Host reset\n");
904 spin_lock_irqsave(&adapter->hw_lock, flags);
906 use_msg = adapter->use_msg;
909 adapter->use_msg = false;
910 spin_unlock_irqrestore(&adapter->hw_lock, flags);
913 * Now that we know that the ISR won't add more work on the
914 * workqueue we can safely flush any outstanding work.
916 flush_workqueue(adapter->workqueue);
917 spin_lock_irqsave(&adapter->hw_lock, flags);
921 * We're going to tear down the entire ring structure and set it back
922 * up, so stalling new requests until all completions are flushed and
923 * the rings are back in place.
926 pvscsi_process_request_ring(adapter);
928 ll_adapter_reset(adapter);
931 * Now process any completions. Note we do this AFTER adapter reset,
932 * which is strange, but stops races where completions get posted
933 * between processing the ring and issuing the reset. The backend will
934 * not touch the ring memory after reset, so the immediately pre-reset
935 * completion ring state is still valid.
937 pvscsi_process_completion_ring(adapter);
939 pvscsi_reset_all(adapter);
940 adapter->use_msg = use_msg;
941 pvscsi_setup_all_rings(adapter);
942 pvscsi_unmask_intr(adapter);
944 spin_unlock_irqrestore(&adapter->hw_lock, flags);
949 static int pvscsi_bus_reset(struct scsi_cmnd *cmd)
951 struct Scsi_Host *host = cmd->device->host;
952 struct pvscsi_adapter *adapter = shost_priv(host);
955 scmd_printk(KERN_INFO, cmd, "SCSI Bus reset\n");
958 * We don't want to queue new requests for this bus after
959 * flushing all pending requests to emulation, since new
960 * requests could then sneak in during this bus reset phase,
961 * so take the lock now.
963 spin_lock_irqsave(&adapter->hw_lock, flags);
965 pvscsi_process_request_ring(adapter);
966 ll_bus_reset(adapter);
967 pvscsi_process_completion_ring(adapter);
969 spin_unlock_irqrestore(&adapter->hw_lock, flags);
974 static int pvscsi_device_reset(struct scsi_cmnd *cmd)
976 struct Scsi_Host *host = cmd->device->host;
977 struct pvscsi_adapter *adapter = shost_priv(host);
980 scmd_printk(KERN_INFO, cmd, "SCSI device reset on scsi%u:%u\n",
981 host->host_no, cmd->device->id);
984 * We don't want to queue new requests for this device after flushing
985 * all pending requests to emulation, since new requests could then
986 * sneak in during this device reset phase, so take the lock now.
988 spin_lock_irqsave(&adapter->hw_lock, flags);
990 pvscsi_process_request_ring(adapter);
991 ll_device_reset(adapter, cmd->device->id);
992 pvscsi_process_completion_ring(adapter);
994 spin_unlock_irqrestore(&adapter->hw_lock, flags);
999 static struct scsi_host_template pvscsi_template;
1001 static const char *pvscsi_info(struct Scsi_Host *host)
1003 struct pvscsi_adapter *adapter = shost_priv(host);
1004 static char buf[256];
1006 sprintf(buf, "VMware PVSCSI storage adapter rev %d, req/cmp/msg rings: "
1007 "%u/%u/%u pages, cmd_per_lun=%u", adapter->rev,
1008 adapter->req_pages, adapter->cmp_pages, adapter->msg_pages,
1009 pvscsi_template.cmd_per_lun);
1014 static struct scsi_host_template pvscsi_template = {
1015 .module = THIS_MODULE,
1016 .name = "VMware PVSCSI Host Adapter",
1017 .proc_name = "vmw_pvscsi",
1018 .info = pvscsi_info,
1019 .queuecommand = pvscsi_queue,
1021 .sg_tablesize = PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT,
1022 .dma_boundary = UINT_MAX,
1023 .max_sectors = 0xffff,
1024 .change_queue_depth = pvscsi_change_queue_depth,
1025 .eh_abort_handler = pvscsi_abort,
1026 .eh_device_reset_handler = pvscsi_device_reset,
1027 .eh_bus_reset_handler = pvscsi_bus_reset,
1028 .eh_host_reset_handler = pvscsi_host_reset,
1031 static void pvscsi_process_msg(const struct pvscsi_adapter *adapter,
1032 const struct PVSCSIRingMsgDesc *e)
1034 struct PVSCSIRingsState *s = adapter->rings_state;
1035 struct Scsi_Host *host = adapter->host;
1036 struct scsi_device *sdev;
1038 printk(KERN_INFO "vmw_pvscsi: msg type: 0x%x - MSG RING: %u/%u (%u) \n",
1039 e->type, s->msgProdIdx, s->msgConsIdx, s->msgNumEntriesLog2);
1041 BUILD_BUG_ON(PVSCSI_MSG_LAST != 2);
1043 if (e->type == PVSCSI_MSG_DEV_ADDED) {
1044 struct PVSCSIMsgDescDevStatusChanged *desc;
1045 desc = (struct PVSCSIMsgDescDevStatusChanged *)e;
1048 "vmw_pvscsi: msg: device added at scsi%u:%u:%u\n",
1049 desc->bus, desc->target, desc->lun[1]);
1051 if (!scsi_host_get(host))
1054 sdev = scsi_device_lookup(host, desc->bus, desc->target,
1057 printk(KERN_INFO "vmw_pvscsi: device already exists\n");
1058 scsi_device_put(sdev);
1060 scsi_add_device(adapter->host, desc->bus,
1061 desc->target, desc->lun[1]);
1063 scsi_host_put(host);
1064 } else if (e->type == PVSCSI_MSG_DEV_REMOVED) {
1065 struct PVSCSIMsgDescDevStatusChanged *desc;
1066 desc = (struct PVSCSIMsgDescDevStatusChanged *)e;
1069 "vmw_pvscsi: msg: device removed at scsi%u:%u:%u\n",
1070 desc->bus, desc->target, desc->lun[1]);
1072 if (!scsi_host_get(host))
1075 sdev = scsi_device_lookup(host, desc->bus, desc->target,
1078 scsi_remove_device(sdev);
1079 scsi_device_put(sdev);
1082 "vmw_pvscsi: failed to lookup scsi%u:%u:%u\n",
1083 desc->bus, desc->target, desc->lun[1]);
1085 scsi_host_put(host);
1089 static int pvscsi_msg_pending(const struct pvscsi_adapter *adapter)
1091 struct PVSCSIRingsState *s = adapter->rings_state;
1093 return s->msgProdIdx != s->msgConsIdx;
1096 static void pvscsi_process_msg_ring(const struct pvscsi_adapter *adapter)
1098 struct PVSCSIRingsState *s = adapter->rings_state;
1099 struct PVSCSIRingMsgDesc *ring = adapter->msg_ring;
1100 u32 msg_entries = s->msgNumEntriesLog2;
1102 while (pvscsi_msg_pending(adapter)) {
1103 struct PVSCSIRingMsgDesc *e = ring + (s->msgConsIdx &
1107 pvscsi_process_msg(adapter, e);
1113 static void pvscsi_msg_workqueue_handler(struct work_struct *data)
1115 struct pvscsi_adapter *adapter;
1117 adapter = container_of(data, struct pvscsi_adapter, work);
1119 pvscsi_process_msg_ring(adapter);
1122 static int pvscsi_setup_msg_workqueue(struct pvscsi_adapter *adapter)
1126 if (!pvscsi_use_msg)
1129 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_COMMAND,
1130 PVSCSI_CMD_SETUP_MSG_RING);
1132 if (pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_COMMAND_STATUS) == -1)
1135 snprintf(name, sizeof(name),
1136 "vmw_pvscsi_wq_%u", adapter->host->host_no);
1138 adapter->workqueue = create_singlethread_workqueue(name);
1139 if (!adapter->workqueue) {
1140 printk(KERN_ERR "vmw_pvscsi: failed to create work queue\n");
1143 INIT_WORK(&adapter->work, pvscsi_msg_workqueue_handler);
1148 static bool pvscsi_setup_req_threshold(struct pvscsi_adapter *adapter,
1153 if (!pvscsi_use_req_threshold)
1156 pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_COMMAND,
1157 PVSCSI_CMD_SETUP_REQCALLTHRESHOLD);
1158 val = pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_COMMAND_STATUS);
1160 printk(KERN_INFO "vmw_pvscsi: device does not support req_threshold\n");
1163 struct PVSCSICmdDescSetupReqCall cmd_msg = { 0 };
1164 cmd_msg.enable = enable;
1166 "vmw_pvscsi: %sabling reqCallThreshold\n",
1167 enable ? "en" : "dis");
1168 pvscsi_write_cmd_desc(adapter,
1169 PVSCSI_CMD_SETUP_REQCALLTHRESHOLD,
1170 &cmd_msg, sizeof(cmd_msg));
1171 return pvscsi_reg_read(adapter,
1172 PVSCSI_REG_OFFSET_COMMAND_STATUS) != 0;
1176 static irqreturn_t pvscsi_isr(int irq, void *devp)
1178 struct pvscsi_adapter *adapter = devp;
1179 unsigned long flags;
1181 spin_lock_irqsave(&adapter->hw_lock, flags);
1182 pvscsi_process_completion_ring(adapter);
1183 if (adapter->use_msg && pvscsi_msg_pending(adapter))
1184 queue_work(adapter->workqueue, &adapter->work);
1185 spin_unlock_irqrestore(&adapter->hw_lock, flags);
1190 static irqreturn_t pvscsi_shared_isr(int irq, void *devp)
1192 struct pvscsi_adapter *adapter = devp;
1193 u32 val = pvscsi_read_intr_status(adapter);
1195 if (!(val & PVSCSI_INTR_ALL_SUPPORTED))
1197 pvscsi_write_intr_status(devp, val);
1198 return pvscsi_isr(irq, devp);
1201 static void pvscsi_free_sgls(const struct pvscsi_adapter *adapter)
1203 struct pvscsi_ctx *ctx = adapter->cmd_map;
1206 for (i = 0; i < adapter->req_depth; ++i, ++ctx)
1207 free_pages((unsigned long)ctx->sgl, get_order(SGL_SIZE));
1210 static void pvscsi_shutdown_intr(struct pvscsi_adapter *adapter)
1212 free_irq(pci_irq_vector(adapter->dev, 0), adapter);
1213 pci_free_irq_vectors(adapter->dev);
1216 static void pvscsi_release_resources(struct pvscsi_adapter *adapter)
1218 if (adapter->workqueue)
1219 destroy_workqueue(adapter->workqueue);
1221 if (adapter->mmioBase)
1222 pci_iounmap(adapter->dev, adapter->mmioBase);
1224 pci_release_regions(adapter->dev);
1226 if (adapter->cmd_map) {
1227 pvscsi_free_sgls(adapter);
1228 kfree(adapter->cmd_map);
1231 if (adapter->rings_state)
1232 dma_free_coherent(&adapter->dev->dev, PAGE_SIZE,
1233 adapter->rings_state, adapter->ringStatePA);
1235 if (adapter->req_ring)
1236 dma_free_coherent(&adapter->dev->dev,
1237 adapter->req_pages * PAGE_SIZE,
1238 adapter->req_ring, adapter->reqRingPA);
1240 if (adapter->cmp_ring)
1241 dma_free_coherent(&adapter->dev->dev,
1242 adapter->cmp_pages * PAGE_SIZE,
1243 adapter->cmp_ring, adapter->cmpRingPA);
1245 if (adapter->msg_ring)
1246 dma_free_coherent(&adapter->dev->dev,
1247 adapter->msg_pages * PAGE_SIZE,
1248 adapter->msg_ring, adapter->msgRingPA);
1252 * Allocate scatter gather lists.
1254 * These are statically allocated. Trying to be clever was not worth it.
1256 * Dynamic allocation can fail, and we can't go deep into the memory
1257 * allocator, since we're a SCSI driver, and trying too hard to allocate
1258 * memory might generate disk I/O. We also don't want to fail disk I/O
1259 * in that case because we can't get an allocation - the I/O could be
1260 * trying to swap out data to free memory. Since that is pathological,
1261 * just use a statically allocated scatter list.
1264 static int pvscsi_allocate_sg(struct pvscsi_adapter *adapter)
1266 struct pvscsi_ctx *ctx;
1269 ctx = adapter->cmd_map;
1270 BUILD_BUG_ON(sizeof(struct pvscsi_sg_list) > SGL_SIZE);
1272 for (i = 0; i < adapter->req_depth; ++i, ++ctx) {
1273 ctx->sgl = (void *)__get_free_pages(GFP_KERNEL,
1274 get_order(SGL_SIZE));
1276 BUG_ON(!IS_ALIGNED(((unsigned long)ctx->sgl), PAGE_SIZE));
1278 for (; i >= 0; --i, --ctx) {
1279 free_pages((unsigned long)ctx->sgl,
1280 get_order(SGL_SIZE));
1291 * Query the device, fetch the config info and return the
1292 * maximum number of targets on the adapter. In case of
1293 * failure due to any reason return default i.e. 16.
1295 static u32 pvscsi_get_max_targets(struct pvscsi_adapter *adapter)
1297 struct PVSCSICmdDescConfigCmd cmd;
1298 struct PVSCSIConfigPageHeader *header;
1300 dma_addr_t configPagePA;
1304 dev = pvscsi_dev(adapter);
1305 config_page = dma_alloc_coherent(&adapter->dev->dev, PAGE_SIZE,
1306 &configPagePA, GFP_KERNEL);
1308 dev_warn(dev, "vmw_pvscsi: failed to allocate memory for config page\n");
1311 BUG_ON(configPagePA & ~PAGE_MASK);
1313 /* Fetch config info from the device. */
1314 cmd.configPageAddress = ((u64)PVSCSI_CONFIG_CONTROLLER_ADDRESS) << 32;
1315 cmd.configPageNum = PVSCSI_CONFIG_PAGE_CONTROLLER;
1316 cmd.cmpAddr = configPagePA;
1320 * Mark the completion page header with error values. If the device
1321 * completes the command successfully, it sets the status values to
1324 header = config_page;
1325 memset(header, 0, sizeof *header);
1326 header->hostStatus = BTSTAT_INVPARAM;
1327 header->scsiStatus = SDSTAT_CHECK;
1329 pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_CONFIG, &cmd, sizeof cmd);
1331 if (header->hostStatus == BTSTAT_SUCCESS &&
1332 header->scsiStatus == SDSTAT_GOOD) {
1333 struct PVSCSIConfigPageController *config;
1335 config = config_page;
1336 numPhys = config->numPhys;
1338 dev_warn(dev, "vmw_pvscsi: PVSCSI_CMD_CONFIG failed. hostStatus = 0x%x, scsiStatus = 0x%x\n",
1339 header->hostStatus, header->scsiStatus);
1340 dma_free_coherent(&adapter->dev->dev, PAGE_SIZE, config_page,
1346 static int pvscsi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1348 unsigned int irq_flag = PCI_IRQ_MSIX | PCI_IRQ_MSI | PCI_IRQ_LEGACY;
1349 struct pvscsi_adapter *adapter;
1350 struct pvscsi_adapter adapter_temp;
1351 struct Scsi_Host *host = NULL;
1358 if (pci_enable_device(pdev))
1361 if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
1362 printk(KERN_INFO "vmw_pvscsi: using 64bit dma\n");
1363 } else if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32))) {
1364 printk(KERN_INFO "vmw_pvscsi: using 32bit dma\n");
1366 printk(KERN_ERR "vmw_pvscsi: failed to set DMA mask\n");
1367 goto out_disable_device;
1371 * Let's use a temp pvscsi_adapter struct until we find the number of
1372 * targets on the adapter, after that we will switch to the real
1375 adapter = &adapter_temp;
1376 memset(adapter, 0, sizeof(*adapter));
1377 adapter->dev = pdev;
1378 adapter->rev = pdev->revision;
1380 if (pci_request_regions(pdev, "vmw_pvscsi")) {
1381 printk(KERN_ERR "vmw_pvscsi: pci memory selection failed\n");
1382 goto out_disable_device;
1385 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1386 if ((pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE_IO))
1389 if (pci_resource_len(pdev, i) < PVSCSI_MEM_SPACE_SIZE)
1395 if (i == DEVICE_COUNT_RESOURCE) {
1397 "vmw_pvscsi: adapter has no suitable MMIO region\n");
1398 goto out_release_resources_and_disable;
1401 adapter->mmioBase = pci_iomap(pdev, i, PVSCSI_MEM_SPACE_SIZE);
1403 if (!adapter->mmioBase) {
1405 "vmw_pvscsi: can't iomap for BAR %d memsize %lu\n",
1406 i, PVSCSI_MEM_SPACE_SIZE);
1407 goto out_release_resources_and_disable;
1410 pci_set_master(pdev);
1413 * Ask the device for max number of targets before deciding the
1414 * default pvscsi_ring_pages value.
1416 max_id = pvscsi_get_max_targets(adapter);
1417 printk(KERN_INFO "vmw_pvscsi: max_id: %u\n", max_id);
1419 if (pvscsi_ring_pages == 0)
1421 * Set the right default value. Up to 16 it is 8, above it is
1424 pvscsi_ring_pages = (max_id > 16) ?
1425 PVSCSI_SETUP_RINGS_MAX_NUM_PAGES :
1426 PVSCSI_DEFAULT_NUM_PAGES_PER_RING;
1428 "vmw_pvscsi: setting ring_pages to %d\n",
1431 pvscsi_template.can_queue =
1432 min(PVSCSI_MAX_NUM_PAGES_REQ_RING, pvscsi_ring_pages) *
1433 PVSCSI_MAX_NUM_REQ_ENTRIES_PER_PAGE;
1434 pvscsi_template.cmd_per_lun =
1435 min(pvscsi_template.can_queue, pvscsi_cmd_per_lun);
1436 host = scsi_host_alloc(&pvscsi_template, sizeof(struct pvscsi_adapter));
1438 printk(KERN_ERR "vmw_pvscsi: failed to allocate host\n");
1439 goto out_release_resources_and_disable;
1443 * Let's use the real pvscsi_adapter struct here onwards.
1445 adapter = shost_priv(host);
1446 memset(adapter, 0, sizeof(*adapter));
1447 adapter->dev = pdev;
1448 adapter->host = host;
1450 * Copy back what we already have to the allocated adapter struct.
1452 adapter->rev = adapter_temp.rev;
1453 adapter->mmioBase = adapter_temp.mmioBase;
1455 spin_lock_init(&adapter->hw_lock);
1456 host->max_channel = 0;
1458 host->max_cmd_len = 16;
1459 host->max_id = max_id;
1461 pci_set_drvdata(pdev, host);
1463 ll_adapter_reset(adapter);
1465 adapter->use_msg = pvscsi_setup_msg_workqueue(adapter);
1467 error = pvscsi_allocate_rings(adapter);
1469 printk(KERN_ERR "vmw_pvscsi: unable to allocate ring memory\n");
1470 goto out_release_resources;
1474 * From this point on we should reset the adapter if anything goes
1477 pvscsi_setup_all_rings(adapter);
1479 adapter->cmd_map = kcalloc(adapter->req_depth,
1480 sizeof(struct pvscsi_ctx), GFP_KERNEL);
1481 if (!adapter->cmd_map) {
1482 printk(KERN_ERR "vmw_pvscsi: failed to allocate memory.\n");
1484 goto out_reset_adapter;
1487 INIT_LIST_HEAD(&adapter->cmd_pool);
1488 for (i = 0; i < adapter->req_depth; i++) {
1489 struct pvscsi_ctx *ctx = adapter->cmd_map + i;
1490 list_add(&ctx->list, &adapter->cmd_pool);
1493 error = pvscsi_allocate_sg(adapter);
1495 printk(KERN_ERR "vmw_pvscsi: unable to allocate s/g table\n");
1496 goto out_reset_adapter;
1499 if (pvscsi_disable_msix)
1500 irq_flag &= ~PCI_IRQ_MSIX;
1501 if (pvscsi_disable_msi)
1502 irq_flag &= ~PCI_IRQ_MSI;
1504 error = pci_alloc_irq_vectors(adapter->dev, 1, 1, irq_flag);
1506 goto out_reset_adapter;
1508 adapter->use_req_threshold = pvscsi_setup_req_threshold(adapter, true);
1509 printk(KERN_DEBUG "vmw_pvscsi: driver-based request coalescing %sabled\n",
1510 adapter->use_req_threshold ? "en" : "dis");
1512 if (adapter->dev->msix_enabled || adapter->dev->msi_enabled) {
1513 printk(KERN_INFO "vmw_pvscsi: using MSI%s\n",
1514 adapter->dev->msix_enabled ? "-X" : "");
1515 error = request_irq(pci_irq_vector(pdev, 0), pvscsi_isr,
1516 0, "vmw_pvscsi", adapter);
1518 printk(KERN_INFO "vmw_pvscsi: using INTx\n");
1519 error = request_irq(pci_irq_vector(pdev, 0), pvscsi_shared_isr,
1520 IRQF_SHARED, "vmw_pvscsi", adapter);
1525 "vmw_pvscsi: unable to request IRQ: %d\n", error);
1526 goto out_reset_adapter;
1529 error = scsi_add_host(host, &pdev->dev);
1532 "vmw_pvscsi: scsi_add_host failed: %d\n", error);
1533 goto out_reset_adapter;
1536 dev_info(&pdev->dev, "VMware PVSCSI rev %d host #%u\n",
1537 adapter->rev, host->host_no);
1539 pvscsi_unmask_intr(adapter);
1541 scsi_scan_host(host);
1546 ll_adapter_reset(adapter);
1547 out_release_resources:
1548 pvscsi_shutdown_intr(adapter);
1549 pvscsi_release_resources(adapter);
1550 scsi_host_put(host);
1552 pci_disable_device(pdev);
1556 out_release_resources_and_disable:
1557 pvscsi_shutdown_intr(adapter);
1558 pvscsi_release_resources(adapter);
1559 goto out_disable_device;
1562 static void __pvscsi_shutdown(struct pvscsi_adapter *adapter)
1564 pvscsi_mask_intr(adapter);
1566 if (adapter->workqueue)
1567 flush_workqueue(adapter->workqueue);
1569 pvscsi_shutdown_intr(adapter);
1571 pvscsi_process_request_ring(adapter);
1572 pvscsi_process_completion_ring(adapter);
1573 ll_adapter_reset(adapter);
1576 static void pvscsi_shutdown(struct pci_dev *dev)
1578 struct Scsi_Host *host = pci_get_drvdata(dev);
1579 struct pvscsi_adapter *adapter = shost_priv(host);
1581 __pvscsi_shutdown(adapter);
1584 static void pvscsi_remove(struct pci_dev *pdev)
1586 struct Scsi_Host *host = pci_get_drvdata(pdev);
1587 struct pvscsi_adapter *adapter = shost_priv(host);
1589 scsi_remove_host(host);
1591 __pvscsi_shutdown(adapter);
1592 pvscsi_release_resources(adapter);
1594 scsi_host_put(host);
1596 pci_disable_device(pdev);
1599 static struct pci_driver pvscsi_pci_driver = {
1600 .name = "vmw_pvscsi",
1601 .id_table = pvscsi_pci_tbl,
1602 .probe = pvscsi_probe,
1603 .remove = pvscsi_remove,
1604 .shutdown = pvscsi_shutdown,
1607 static int __init pvscsi_init(void)
1609 pr_info("%s - version %s\n",
1610 PVSCSI_LINUX_DRIVER_DESC, PVSCSI_DRIVER_VERSION_STRING);
1611 return pci_register_driver(&pvscsi_pci_driver);
1614 static void __exit pvscsi_exit(void)
1616 pci_unregister_driver(&pvscsi_pci_driver);
1619 module_init(pvscsi_init);
1620 module_exit(pvscsi_exit);