GNU Linux-libre 4.9.290-gnu1
[releases.git] / drivers / scsi / vmw_pvscsi.c
1 /*
2  * Linux driver for VMware's para-virtualized SCSI HBA.
3  *
4  * Copyright (C) 2008-2014, VMware, Inc. All Rights Reserved.
5  *
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  *
20  * Maintained by: Jim Gill <jgill@vmware.com>
21  *
22  */
23
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/interrupt.h>
27 #include <linux/slab.h>
28 #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>
35 #include <scsi/scsi_tcq.h>
36
37 #include "vmw_pvscsi.h"
38
39 #define PVSCSI_LINUX_DRIVER_DESC "VMware PVSCSI driver"
40
41 MODULE_DESCRIPTION(PVSCSI_LINUX_DRIVER_DESC);
42 MODULE_AUTHOR("VMware, Inc.");
43 MODULE_LICENSE("GPL");
44 MODULE_VERSION(PVSCSI_DRIVER_VERSION_STRING);
45
46 #define PVSCSI_DEFAULT_NUM_PAGES_PER_RING       8
47 #define PVSCSI_DEFAULT_NUM_PAGES_MSG_RING       1
48 #define PVSCSI_DEFAULT_QUEUE_DEPTH              254
49 #define SGL_SIZE                                PAGE_SIZE
50
51 struct pvscsi_sg_list {
52         struct PVSCSISGElement sge[PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT];
53 };
54
55 struct 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;
66         struct completion       *abort_cmp;
67 };
68
69 struct pvscsi_adapter {
70         char                            *mmioBase;
71         unsigned int                    irq;
72         u8                              rev;
73         bool                            use_msi;
74         bool                            use_msix;
75         bool                            use_msg;
76         bool                            use_req_threshold;
77
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 */
108 static int pvscsi_ring_pages;
109 static int pvscsi_msg_ring_pages = PVSCSI_DEFAULT_NUM_PAGES_MSG_RING;
110 static int pvscsi_cmd_per_lun    = PVSCSI_DEFAULT_QUEUE_DEPTH;
111 static bool pvscsi_disable_msi;
112 static bool pvscsi_disable_msix;
113 static bool pvscsi_use_msg       = true;
114 static bool pvscsi_use_req_threshold = true;
115
116 #define PVSCSI_RW (S_IRUSR | S_IWUSR)
117
118 module_param_named(ring_pages, pvscsi_ring_pages, int, PVSCSI_RW);
119 MODULE_PARM_DESC(ring_pages, "Number of pages per req/cmp ring - (default="
120                  __stringify(PVSCSI_DEFAULT_NUM_PAGES_PER_RING)
121                  "[up to 16 targets],"
122                  __stringify(PVSCSI_SETUP_RINGS_MAX_NUM_PAGES)
123                  "[for 16+ targets])");
124
125 module_param_named(msg_ring_pages, pvscsi_msg_ring_pages, int, PVSCSI_RW);
126 MODULE_PARM_DESC(msg_ring_pages, "Number of pages for the msg ring - (default="
127                  __stringify(PVSCSI_DEFAULT_NUM_PAGES_MSG_RING) ")");
128
129 module_param_named(cmd_per_lun, pvscsi_cmd_per_lun, int, PVSCSI_RW);
130 MODULE_PARM_DESC(cmd_per_lun, "Maximum commands per lun - (default="
131                  __stringify(PVSCSI_DEFAULT_QUEUE_DEPTH) ")");
132
133 module_param_named(disable_msi, pvscsi_disable_msi, bool, PVSCSI_RW);
134 MODULE_PARM_DESC(disable_msi, "Disable MSI use in driver - (default=0)");
135
136 module_param_named(disable_msix, pvscsi_disable_msix, bool, PVSCSI_RW);
137 MODULE_PARM_DESC(disable_msix, "Disable MSI-X use in driver - (default=0)");
138
139 module_param_named(use_msg, pvscsi_use_msg, bool, PVSCSI_RW);
140 MODULE_PARM_DESC(use_msg, "Use msg ring when available - (default=1)");
141
142 module_param_named(use_req_threshold, pvscsi_use_req_threshold,
143                    bool, PVSCSI_RW);
144 MODULE_PARM_DESC(use_req_threshold, "Use driver-based request coalescing if configured - (default=1)");
145
146 static const struct pci_device_id pvscsi_pci_tbl[] = {
147         { PCI_VDEVICE(VMWARE, PCI_DEVICE_ID_VMWARE_PVSCSI) },
148         { 0 }
149 };
150
151 MODULE_DEVICE_TABLE(pci, pvscsi_pci_tbl);
152
153 static struct device *
154 pvscsi_dev(const struct pvscsi_adapter *adapter)
155 {
156         return &(adapter->dev->dev);
157 }
158
159 static struct pvscsi_ctx *
160 pvscsi_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
172 static struct pvscsi_ctx *
173 pvscsi_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
187 static void pvscsi_release_context(struct pvscsi_adapter *adapter,
188                                    struct pvscsi_ctx *ctx)
189 {
190         ctx->cmd = NULL;
191         ctx->abort_cmp = NULL;
192         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  */
200 static 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
206 static struct pvscsi_ctx *
207 pvscsi_get_context(const struct pvscsi_adapter *adapter, u64 context)
208 {
209         return &adapter->cmd_map[context - 1];
210 }
211
212 static void pvscsi_reg_write(const struct pvscsi_adapter *adapter,
213                              u32 offset, u32 val)
214 {
215         writel(val, adapter->mmioBase + offset);
216 }
217
218 static u32 pvscsi_reg_read(const struct pvscsi_adapter *adapter, u32 offset)
219 {
220         return readl(adapter->mmioBase + offset);
221 }
222
223 static u32 pvscsi_read_intr_status(const struct pvscsi_adapter *adapter)
224 {
225         return pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_INTR_STATUS);
226 }
227
228 static 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
234 static 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
245 static void pvscsi_mask_intr(const struct pvscsi_adapter *adapter)
246 {
247         pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_INTR_MASK, 0);
248 }
249
250 static 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
263 static 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
274 static 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
279 static 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
284 static 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
292 static void pvscsi_kick_io(const struct pvscsi_adapter *adapter,
293                            unsigned char op)
294 {
295         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 {
302                 pvscsi_process_request_ring(adapter);
303         }
304 }
305
306 static 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
313 static void ll_bus_reset(const struct pvscsi_adapter *adapter)
314 {
315         dev_dbg(pvscsi_dev(adapter), "Resetting bus on %p\n", adapter);
316
317         pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_RESET_BUS, NULL, 0);
318 }
319
320 static void ll_device_reset(const struct pvscsi_adapter *adapter, u32 target)
321 {
322         struct PVSCSICmdDescResetDevice cmd = { 0 };
323
324         dev_dbg(pvscsi_dev(adapter), "Resetting device: target=%u\n", target);
325
326         cmd.target = target;
327
328         pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_RESET_DEVICE,
329                               &cmd, sizeof(cmd));
330 }
331
332 static 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  */
352 static int pvscsi_map_buffers(struct pvscsi_adapter *adapter,
353                               struct pvscsi_ctx *ctx, struct scsi_cmnd *cmd,
354                               struct PVSCSIRingReqDesc *e)
355 {
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)
363                 return 0;
364
365         sg = scsi_sglist(cmd);
366         count = scsi_sg_count(cmd);
367         if (count != 0) {
368                 int segs = scsi_dma_map(cmd);
369
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) {
375                         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);
380                         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                         }
387                         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);
397                 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                 }
402                 e->dataAddr = ctx->dataPA;
403         }
404
405         return 0;
406 }
407
408 static 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
436 static int pvscsi_allocate_rings(struct pvscsi_adapter *adapter)
437 {
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
480 static 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
526 static int pvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth)
527 {
528         if (!sdev->tagged_supported)
529                 qdepth = 1;
530         return scsi_change_queue_depth(sdev, qdepth);
531 }
532
533 /*
534  * Pull a completion descriptor off and pass the completion back
535  * to the SCSI mid layer.
536  */
537 static void pvscsi_complete_request(struct pvscsi_adapter *adapter,
538                                     const struct PVSCSIRingCmpDesc *e)
539 {
540         struct pvscsi_ctx *ctx;
541         struct scsi_cmnd *cmd;
542         struct completion *abort_cmp;
543         u32 btstat = e->hostStatus;
544         u32 sdstat = e->scsiStatus;
545
546         ctx = pvscsi_get_context(adapter, e->context);
547         cmd = ctx->cmd;
548         abort_cmp = ctx->abort_cmp;
549         pvscsi_unmap_buffers(adapter, ctx);
550         pvscsi_release_context(adapter, ctx);
551         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         }
561
562         cmd->result = 0;
563         if (sdstat != SAM_STAT_GOOD &&
564             (btstat == BTSTAT_SUCCESS ||
565              btstat == BTSTAT_LINKED_COMMAND_COMPLETED ||
566              btstat == BTSTAT_LINKED_COMMAND_COMPLETED_WITH_FLAG)) {
567                 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                 }
575         } else
576                 switch (btstat) {
577                 case BTSTAT_SUCCESS:
578                 case BTSTAT_LINKED_COMMAND_COMPLETED:
579                 case BTSTAT_LINKED_COMMAND_COMPLETED_WITH_FLAG:
580                         /*
581                          * Commands like INQUIRY may transfer less data than
582                          * requested by the initiator via bufflen. Set residual
583                          * count to make upper layer aware of the actual amount
584                          * of data returned.
585                          */
586                         scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen);
587                         cmd->result = (DID_OK << 16);
588                         break;
589
590                 case BTSTAT_DATARUN:
591                 case BTSTAT_DATA_UNDERRUN:
592                         /* Report residual data in underruns */
593                         scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen);
594                         cmd->result = (DID_ERROR << 16);
595                         break;
596
597                 case BTSTAT_SELTIMEO:
598                         /* Our emulation returns this for non-connected devs */
599                         cmd->result = (DID_BAD_TARGET << 16);
600                         break;
601
602                 case BTSTAT_LUNMISMATCH:
603                 case BTSTAT_TAGREJECT:
604                 case BTSTAT_BADMSG:
605                         cmd->result = (DRIVER_INVALID << 24);
606                         /* fall through */
607
608                 case BTSTAT_HAHARDWARE:
609                 case BTSTAT_INVPHASE:
610                 case BTSTAT_HATIMEOUT:
611                 case BTSTAT_NORESPONSE:
612                 case BTSTAT_DISCONNECT:
613                 case BTSTAT_HASOFTWARE:
614                 case BTSTAT_BUSFREE:
615                 case BTSTAT_SENSFAILED:
616                         cmd->result |= (DID_ERROR << 16);
617                         break;
618
619                 case BTSTAT_SENTRST:
620                 case BTSTAT_RECVRST:
621                 case BTSTAT_BUSRESET:
622                         cmd->result = (DID_RESET << 16);
623                         break;
624
625                 case BTSTAT_ABORTQUEUE:
626                         cmd->result = (DID_ABORT << 16);
627                         break;
628
629                 case BTSTAT_SCSIPARITY:
630                         cmd->result = (DID_PARITY << 16);
631                         break;
632
633                 default:
634                         cmd->result = (DID_ERROR << 16);
635                         scmd_printk(KERN_DEBUG, cmd,
636                                     "Unknown completion status: 0x%x\n",
637                                     btstat);
638         }
639
640         dev_dbg(&cmd->device->sdev_gendev,
641                 "cmd=%p %x ctx=%p result=0x%x status=0x%x,%x\n",
642                 cmd, cmd->cmnd[0], ctx, cmd->result, btstat, sdstat);
643
644         cmd->scsi_done(cmd);
645 }
646
647 /*
648  * barrier usage : Since the PVSCSI device is emulated, there could be cases
649  * where we may want to serialize some accesses between the driver and the
650  * emulation layer. We use compiler barriers instead of the more expensive
651  * memory barriers because PVSCSI is only supported on X86 which has strong
652  * memory access ordering.
653  */
654 static void pvscsi_process_completion_ring(struct pvscsi_adapter *adapter)
655 {
656         struct PVSCSIRingsState *s = adapter->rings_state;
657         struct PVSCSIRingCmpDesc *ring = adapter->cmp_ring;
658         u32 cmp_entries = s->cmpNumEntriesLog2;
659
660         while (s->cmpConsIdx != s->cmpProdIdx) {
661                 struct PVSCSIRingCmpDesc *e = ring + (s->cmpConsIdx &
662                                                       MASK(cmp_entries));
663                 /*
664                  * This barrier() ensures that *e is not dereferenced while
665                  * the device emulation still writes data into the slot.
666                  * Since the device emulation advances s->cmpProdIdx only after
667                  * updating the slot we want to check it first.
668                  */
669                 barrier();
670                 pvscsi_complete_request(adapter, e);
671                 /*
672                  * This barrier() ensures that compiler doesn't reorder write
673                  * to s->cmpConsIdx before the read of (*e) inside
674                  * pvscsi_complete_request. Otherwise, device emulation may
675                  * overwrite *e before we had a chance to read it.
676                  */
677                 barrier();
678                 s->cmpConsIdx++;
679         }
680 }
681
682 /*
683  * Translate a Linux SCSI request into a request ring entry.
684  */
685 static int pvscsi_queue_ring(struct pvscsi_adapter *adapter,
686                              struct pvscsi_ctx *ctx, struct scsi_cmnd *cmd)
687 {
688         struct PVSCSIRingsState *s;
689         struct PVSCSIRingReqDesc *e;
690         struct scsi_device *sdev;
691         u32 req_entries;
692
693         s = adapter->rings_state;
694         sdev = cmd->device;
695         req_entries = s->reqNumEntriesLog2;
696
697         /*
698          * If this condition holds, we might have room on the request ring, but
699          * we might not have room on the completion ring for the response.
700          * However, we have already ruled out this possibility - we would not
701          * have successfully allocated a context if it were true, since we only
702          * have one context per request entry.  Check for it anyway, since it
703          * would be a serious bug.
704          */
705         if (s->reqProdIdx - s->cmpConsIdx >= 1 << req_entries) {
706                 scmd_printk(KERN_ERR, cmd, "vmw_pvscsi: "
707                             "ring full: reqProdIdx=%d cmpConsIdx=%d\n",
708                             s->reqProdIdx, s->cmpConsIdx);
709                 return -1;
710         }
711
712         e = adapter->req_ring + (s->reqProdIdx & MASK(req_entries));
713
714         e->bus    = sdev->channel;
715         e->target = sdev->id;
716         memset(e->lun, 0, sizeof(e->lun));
717         e->lun[1] = sdev->lun;
718
719         if (cmd->sense_buffer) {
720                 ctx->sensePA = pci_map_single(adapter->dev, cmd->sense_buffer,
721                                               SCSI_SENSE_BUFFERSIZE,
722                                               PCI_DMA_FROMDEVICE);
723                 if (pci_dma_mapping_error(adapter->dev, ctx->sensePA)) {
724                         scmd_printk(KERN_ERR, cmd,
725                                     "vmw_pvscsi: Failed to map sense buffer for DMA.\n");
726                         ctx->sensePA = 0;
727                         return -ENOMEM;
728                 }
729                 e->senseAddr = ctx->sensePA;
730                 e->senseLen = SCSI_SENSE_BUFFERSIZE;
731         } else {
732                 e->senseLen  = 0;
733                 e->senseAddr = 0;
734         }
735         e->cdbLen   = cmd->cmd_len;
736         e->vcpuHint = smp_processor_id();
737         memcpy(e->cdb, cmd->cmnd, e->cdbLen);
738
739         e->tag = SIMPLE_QUEUE_TAG;
740
741         if (cmd->sc_data_direction == DMA_FROM_DEVICE)
742                 e->flags = PVSCSI_FLAG_CMD_DIR_TOHOST;
743         else if (cmd->sc_data_direction == DMA_TO_DEVICE)
744                 e->flags = PVSCSI_FLAG_CMD_DIR_TODEVICE;
745         else if (cmd->sc_data_direction == DMA_NONE)
746                 e->flags = PVSCSI_FLAG_CMD_DIR_NONE;
747         else
748                 e->flags = 0;
749
750         if (pvscsi_map_buffers(adapter, ctx, cmd, e) != 0) {
751                 if (cmd->sense_buffer) {
752                         pci_unmap_single(adapter->dev, ctx->sensePA,
753                                          SCSI_SENSE_BUFFERSIZE,
754                                          PCI_DMA_FROMDEVICE);
755                         ctx->sensePA = 0;
756                 }
757                 return -ENOMEM;
758         }
759
760         e->context = pvscsi_map_context(adapter, ctx);
761
762         barrier();
763
764         s->reqProdIdx++;
765
766         return 0;
767 }
768
769 static int pvscsi_queue_lck(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
770 {
771         struct Scsi_Host *host = cmd->device->host;
772         struct pvscsi_adapter *adapter = shost_priv(host);
773         struct pvscsi_ctx *ctx;
774         unsigned long flags;
775         unsigned char op;
776
777         spin_lock_irqsave(&adapter->hw_lock, flags);
778
779         ctx = pvscsi_acquire_context(adapter, cmd);
780         if (!ctx || pvscsi_queue_ring(adapter, ctx, cmd) != 0) {
781                 if (ctx)
782                         pvscsi_release_context(adapter, ctx);
783                 spin_unlock_irqrestore(&adapter->hw_lock, flags);
784                 return SCSI_MLQUEUE_HOST_BUSY;
785         }
786
787         cmd->scsi_done = done;
788         op = cmd->cmnd[0];
789
790         dev_dbg(&cmd->device->sdev_gendev,
791                 "queued cmd %p, ctx %p, op=%x\n", cmd, ctx, op);
792
793         spin_unlock_irqrestore(&adapter->hw_lock, flags);
794
795         pvscsi_kick_io(adapter, op);
796
797         return 0;
798 }
799
800 static DEF_SCSI_QCMD(pvscsi_queue)
801
802 static int pvscsi_abort(struct scsi_cmnd *cmd)
803 {
804         struct pvscsi_adapter *adapter = shost_priv(cmd->device->host);
805         struct pvscsi_ctx *ctx;
806         unsigned long flags;
807         int result = SUCCESS;
808         DECLARE_COMPLETION_ONSTACK(abort_cmp);
809         int done;
810
811         scmd_printk(KERN_DEBUG, cmd, "task abort on host %u, %p\n",
812                     adapter->host->host_no, cmd);
813
814         spin_lock_irqsave(&adapter->hw_lock, flags);
815
816         /*
817          * Poll the completion ring first - we might be trying to abort
818          * a command that is waiting to be dispatched in the completion ring.
819          */
820         pvscsi_process_completion_ring(adapter);
821
822         /*
823          * If there is no context for the command, it either already succeeded
824          * or else was never properly issued.  Not our problem.
825          */
826         ctx = pvscsi_find_context(adapter, cmd);
827         if (!ctx) {
828                 scmd_printk(KERN_DEBUG, cmd, "Failed to abort cmd %p\n", cmd);
829                 goto out;
830         }
831
832         /*
833          * Mark that the command has been requested to be aborted and issue
834          * the abort.
835          */
836         ctx->abort_cmp = &abort_cmp;
837
838         pvscsi_abort_cmd(adapter, ctx);
839         spin_unlock_irqrestore(&adapter->hw_lock, flags);
840         /* Wait for 2 secs for the completion. */
841         done = wait_for_completion_timeout(&abort_cmp, msecs_to_jiffies(2000));
842         spin_lock_irqsave(&adapter->hw_lock, flags);
843
844         if (!done) {
845                 /*
846                  * Failed to abort the command, unmark the fact that it
847                  * was requested to be aborted.
848                  */
849                 ctx->abort_cmp = NULL;
850                 result = FAILED;
851                 scmd_printk(KERN_DEBUG, cmd,
852                             "Failed to get completion for aborted cmd %p\n",
853                             cmd);
854                 goto out;
855         }
856
857         /*
858          * Successfully aborted the command.
859          */
860         cmd->result = (DID_ABORT << 16);
861         cmd->scsi_done(cmd);
862
863 out:
864         spin_unlock_irqrestore(&adapter->hw_lock, flags);
865         return result;
866 }
867
868 /*
869  * Abort all outstanding requests.  This is only safe to use if the completion
870  * ring will never be walked again or the device has been reset, because it
871  * destroys the 1-1 mapping between context field passed to emulation and our
872  * request structure.
873  */
874 static void pvscsi_reset_all(struct pvscsi_adapter *adapter)
875 {
876         unsigned i;
877
878         for (i = 0; i < adapter->req_depth; i++) {
879                 struct pvscsi_ctx *ctx = &adapter->cmd_map[i];
880                 struct scsi_cmnd *cmd = ctx->cmd;
881                 if (cmd) {
882                         scmd_printk(KERN_ERR, cmd,
883                                     "Forced reset on cmd %p\n", cmd);
884                         pvscsi_unmap_buffers(adapter, ctx);
885                         pvscsi_release_context(adapter, ctx);
886                         cmd->result = (DID_RESET << 16);
887                         cmd->scsi_done(cmd);
888                 }
889         }
890 }
891
892 static int pvscsi_host_reset(struct scsi_cmnd *cmd)
893 {
894         struct Scsi_Host *host = cmd->device->host;
895         struct pvscsi_adapter *adapter = shost_priv(host);
896         unsigned long flags;
897         bool use_msg;
898
899         scmd_printk(KERN_INFO, cmd, "SCSI Host reset\n");
900
901         spin_lock_irqsave(&adapter->hw_lock, flags);
902
903         use_msg = adapter->use_msg;
904
905         if (use_msg) {
906                 adapter->use_msg = 0;
907                 spin_unlock_irqrestore(&adapter->hw_lock, flags);
908
909                 /*
910                  * Now that we know that the ISR won't add more work on the
911                  * workqueue we can safely flush any outstanding work.
912                  */
913                 flush_workqueue(adapter->workqueue);
914                 spin_lock_irqsave(&adapter->hw_lock, flags);
915         }
916
917         /*
918          * We're going to tear down the entire ring structure and set it back
919          * up, so stalling new requests until all completions are flushed and
920          * the rings are back in place.
921          */
922
923         pvscsi_process_request_ring(adapter);
924
925         ll_adapter_reset(adapter);
926
927         /*
928          * Now process any completions.  Note we do this AFTER adapter reset,
929          * which is strange, but stops races where completions get posted
930          * between processing the ring and issuing the reset.  The backend will
931          * not touch the ring memory after reset, so the immediately pre-reset
932          * completion ring state is still valid.
933          */
934         pvscsi_process_completion_ring(adapter);
935
936         pvscsi_reset_all(adapter);
937         adapter->use_msg = use_msg;
938         pvscsi_setup_all_rings(adapter);
939         pvscsi_unmask_intr(adapter);
940
941         spin_unlock_irqrestore(&adapter->hw_lock, flags);
942
943         return SUCCESS;
944 }
945
946 static int pvscsi_bus_reset(struct scsi_cmnd *cmd)
947 {
948         struct Scsi_Host *host = cmd->device->host;
949         struct pvscsi_adapter *adapter = shost_priv(host);
950         unsigned long flags;
951
952         scmd_printk(KERN_INFO, cmd, "SCSI Bus reset\n");
953
954         /*
955          * We don't want to queue new requests for this bus after
956          * flushing all pending requests to emulation, since new
957          * requests could then sneak in during this bus reset phase,
958          * so take the lock now.
959          */
960         spin_lock_irqsave(&adapter->hw_lock, flags);
961
962         pvscsi_process_request_ring(adapter);
963         ll_bus_reset(adapter);
964         pvscsi_process_completion_ring(adapter);
965
966         spin_unlock_irqrestore(&adapter->hw_lock, flags);
967
968         return SUCCESS;
969 }
970
971 static int pvscsi_device_reset(struct scsi_cmnd *cmd)
972 {
973         struct Scsi_Host *host = cmd->device->host;
974         struct pvscsi_adapter *adapter = shost_priv(host);
975         unsigned long flags;
976
977         scmd_printk(KERN_INFO, cmd, "SCSI device reset on scsi%u:%u\n",
978                     host->host_no, cmd->device->id);
979
980         /*
981          * We don't want to queue new requests for this device after flushing
982          * all pending requests to emulation, since new requests could then
983          * sneak in during this device reset phase, so take the lock now.
984          */
985         spin_lock_irqsave(&adapter->hw_lock, flags);
986
987         pvscsi_process_request_ring(adapter);
988         ll_device_reset(adapter, cmd->device->id);
989         pvscsi_process_completion_ring(adapter);
990
991         spin_unlock_irqrestore(&adapter->hw_lock, flags);
992
993         return SUCCESS;
994 }
995
996 static struct scsi_host_template pvscsi_template;
997
998 static const char *pvscsi_info(struct Scsi_Host *host)
999 {
1000         struct pvscsi_adapter *adapter = shost_priv(host);
1001         static char buf[256];
1002
1003         sprintf(buf, "VMware PVSCSI storage adapter rev %d, req/cmp/msg rings: "
1004                 "%u/%u/%u pages, cmd_per_lun=%u", adapter->rev,
1005                 adapter->req_pages, adapter->cmp_pages, adapter->msg_pages,
1006                 pvscsi_template.cmd_per_lun);
1007
1008         return buf;
1009 }
1010
1011 static struct scsi_host_template pvscsi_template = {
1012         .module                         = THIS_MODULE,
1013         .name                           = "VMware PVSCSI Host Adapter",
1014         .proc_name                      = "vmw_pvscsi",
1015         .info                           = pvscsi_info,
1016         .queuecommand                   = pvscsi_queue,
1017         .this_id                        = -1,
1018         .sg_tablesize                   = PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT,
1019         .dma_boundary                   = UINT_MAX,
1020         .max_sectors                    = 0xffff,
1021         .use_clustering                 = ENABLE_CLUSTERING,
1022         .change_queue_depth             = pvscsi_change_queue_depth,
1023         .eh_abort_handler               = pvscsi_abort,
1024         .eh_device_reset_handler        = pvscsi_device_reset,
1025         .eh_bus_reset_handler           = pvscsi_bus_reset,
1026         .eh_host_reset_handler          = pvscsi_host_reset,
1027 };
1028
1029 static void pvscsi_process_msg(const struct pvscsi_adapter *adapter,
1030                                const struct PVSCSIRingMsgDesc *e)
1031 {
1032         struct PVSCSIRingsState *s = adapter->rings_state;
1033         struct Scsi_Host *host = adapter->host;
1034         struct scsi_device *sdev;
1035
1036         printk(KERN_INFO "vmw_pvscsi: msg type: 0x%x - MSG RING: %u/%u (%u) \n",
1037                e->type, s->msgProdIdx, s->msgConsIdx, s->msgNumEntriesLog2);
1038
1039         BUILD_BUG_ON(PVSCSI_MSG_LAST != 2);
1040
1041         if (e->type == PVSCSI_MSG_DEV_ADDED) {
1042                 struct PVSCSIMsgDescDevStatusChanged *desc;
1043                 desc = (struct PVSCSIMsgDescDevStatusChanged *)e;
1044
1045                 printk(KERN_INFO
1046                        "vmw_pvscsi: msg: device added at scsi%u:%u:%u\n",
1047                        desc->bus, desc->target, desc->lun[1]);
1048
1049                 if (!scsi_host_get(host))
1050                         return;
1051
1052                 sdev = scsi_device_lookup(host, desc->bus, desc->target,
1053                                           desc->lun[1]);
1054                 if (sdev) {
1055                         printk(KERN_INFO "vmw_pvscsi: device already exists\n");
1056                         scsi_device_put(sdev);
1057                 } else
1058                         scsi_add_device(adapter->host, desc->bus,
1059                                         desc->target, desc->lun[1]);
1060
1061                 scsi_host_put(host);
1062         } else if (e->type == PVSCSI_MSG_DEV_REMOVED) {
1063                 struct PVSCSIMsgDescDevStatusChanged *desc;
1064                 desc = (struct PVSCSIMsgDescDevStatusChanged *)e;
1065
1066                 printk(KERN_INFO
1067                        "vmw_pvscsi: msg: device removed at scsi%u:%u:%u\n",
1068                        desc->bus, desc->target, desc->lun[1]);
1069
1070                 if (!scsi_host_get(host))
1071                         return;
1072
1073                 sdev = scsi_device_lookup(host, desc->bus, desc->target,
1074                                           desc->lun[1]);
1075                 if (sdev) {
1076                         scsi_remove_device(sdev);
1077                         scsi_device_put(sdev);
1078                 } else
1079                         printk(KERN_INFO
1080                                "vmw_pvscsi: failed to lookup scsi%u:%u:%u\n",
1081                                desc->bus, desc->target, desc->lun[1]);
1082
1083                 scsi_host_put(host);
1084         }
1085 }
1086
1087 static int pvscsi_msg_pending(const struct pvscsi_adapter *adapter)
1088 {
1089         struct PVSCSIRingsState *s = adapter->rings_state;
1090
1091         return s->msgProdIdx != s->msgConsIdx;
1092 }
1093
1094 static void pvscsi_process_msg_ring(const struct pvscsi_adapter *adapter)
1095 {
1096         struct PVSCSIRingsState *s = adapter->rings_state;
1097         struct PVSCSIRingMsgDesc *ring = adapter->msg_ring;
1098         u32 msg_entries = s->msgNumEntriesLog2;
1099
1100         while (pvscsi_msg_pending(adapter)) {
1101                 struct PVSCSIRingMsgDesc *e = ring + (s->msgConsIdx &
1102                                                       MASK(msg_entries));
1103
1104                 barrier();
1105                 pvscsi_process_msg(adapter, e);
1106                 barrier();
1107                 s->msgConsIdx++;
1108         }
1109 }
1110
1111 static void pvscsi_msg_workqueue_handler(struct work_struct *data)
1112 {
1113         struct pvscsi_adapter *adapter;
1114
1115         adapter = container_of(data, struct pvscsi_adapter, work);
1116
1117         pvscsi_process_msg_ring(adapter);
1118 }
1119
1120 static int pvscsi_setup_msg_workqueue(struct pvscsi_adapter *adapter)
1121 {
1122         char name[32];
1123
1124         if (!pvscsi_use_msg)
1125                 return 0;
1126
1127         pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_COMMAND,
1128                          PVSCSI_CMD_SETUP_MSG_RING);
1129
1130         if (pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_COMMAND_STATUS) == -1)
1131                 return 0;
1132
1133         snprintf(name, sizeof(name),
1134                  "vmw_pvscsi_wq_%u", adapter->host->host_no);
1135
1136         adapter->workqueue = create_singlethread_workqueue(name);
1137         if (!adapter->workqueue) {
1138                 printk(KERN_ERR "vmw_pvscsi: failed to create work queue\n");
1139                 return 0;
1140         }
1141         INIT_WORK(&adapter->work, pvscsi_msg_workqueue_handler);
1142
1143         return 1;
1144 }
1145
1146 static bool pvscsi_setup_req_threshold(struct pvscsi_adapter *adapter,
1147                                       bool enable)
1148 {
1149         u32 val;
1150
1151         if (!pvscsi_use_req_threshold)
1152                 return false;
1153
1154         pvscsi_reg_write(adapter, PVSCSI_REG_OFFSET_COMMAND,
1155                          PVSCSI_CMD_SETUP_REQCALLTHRESHOLD);
1156         val = pvscsi_reg_read(adapter, PVSCSI_REG_OFFSET_COMMAND_STATUS);
1157         if (val == -1) {
1158                 printk(KERN_INFO "vmw_pvscsi: device does not support req_threshold\n");
1159                 return false;
1160         } else {
1161                 struct PVSCSICmdDescSetupReqCall cmd_msg = { 0 };
1162                 cmd_msg.enable = enable;
1163                 printk(KERN_INFO
1164                        "vmw_pvscsi: %sabling reqCallThreshold\n",
1165                         enable ? "en" : "dis");
1166                 pvscsi_write_cmd_desc(adapter,
1167                                       PVSCSI_CMD_SETUP_REQCALLTHRESHOLD,
1168                                       &cmd_msg, sizeof(cmd_msg));
1169                 return pvscsi_reg_read(adapter,
1170                                        PVSCSI_REG_OFFSET_COMMAND_STATUS) != 0;
1171         }
1172 }
1173
1174 static irqreturn_t pvscsi_isr(int irq, void *devp)
1175 {
1176         struct pvscsi_adapter *adapter = devp;
1177         int handled;
1178
1179         if (adapter->use_msi || adapter->use_msix)
1180                 handled = true;
1181         else {
1182                 u32 val = pvscsi_read_intr_status(adapter);
1183                 handled = (val & PVSCSI_INTR_ALL_SUPPORTED) != 0;
1184                 if (handled)
1185                         pvscsi_write_intr_status(devp, val);
1186         }
1187
1188         if (handled) {
1189                 unsigned long flags;
1190
1191                 spin_lock_irqsave(&adapter->hw_lock, flags);
1192
1193                 pvscsi_process_completion_ring(adapter);
1194                 if (adapter->use_msg && pvscsi_msg_pending(adapter))
1195                         queue_work(adapter->workqueue, &adapter->work);
1196
1197                 spin_unlock_irqrestore(&adapter->hw_lock, flags);
1198         }
1199
1200         return IRQ_RETVAL(handled);
1201 }
1202
1203 static void pvscsi_free_sgls(const struct pvscsi_adapter *adapter)
1204 {
1205         struct pvscsi_ctx *ctx = adapter->cmd_map;
1206         unsigned i;
1207
1208         for (i = 0; i < adapter->req_depth; ++i, ++ctx)
1209                 free_pages((unsigned long)ctx->sgl, get_order(SGL_SIZE));
1210 }
1211
1212 static int pvscsi_setup_msix(const struct pvscsi_adapter *adapter,
1213                              unsigned int *irq)
1214 {
1215         struct msix_entry entry = { 0, PVSCSI_VECTOR_COMPLETION };
1216         int ret;
1217
1218         ret = pci_enable_msix_exact(adapter->dev, &entry, 1);
1219         if (ret)
1220                 return ret;
1221
1222         *irq = entry.vector;
1223
1224         return 0;
1225 }
1226
1227 static void pvscsi_shutdown_intr(struct pvscsi_adapter *adapter)
1228 {
1229         if (adapter->irq) {
1230                 free_irq(adapter->irq, adapter);
1231                 adapter->irq = 0;
1232         }
1233         if (adapter->use_msi) {
1234                 pci_disable_msi(adapter->dev);
1235                 adapter->use_msi = 0;
1236         } else if (adapter->use_msix) {
1237                 pci_disable_msix(adapter->dev);
1238                 adapter->use_msix = 0;
1239         }
1240 }
1241
1242 static void pvscsi_release_resources(struct pvscsi_adapter *adapter)
1243 {
1244         if (adapter->workqueue)
1245                 destroy_workqueue(adapter->workqueue);
1246
1247         if (adapter->mmioBase)
1248                 pci_iounmap(adapter->dev, adapter->mmioBase);
1249
1250         pci_release_regions(adapter->dev);
1251
1252         if (adapter->cmd_map) {
1253                 pvscsi_free_sgls(adapter);
1254                 kfree(adapter->cmd_map);
1255         }
1256
1257         if (adapter->rings_state)
1258                 pci_free_consistent(adapter->dev, PAGE_SIZE,
1259                                     adapter->rings_state, adapter->ringStatePA);
1260
1261         if (adapter->req_ring)
1262                 pci_free_consistent(adapter->dev,
1263                                     adapter->req_pages * PAGE_SIZE,
1264                                     adapter->req_ring, adapter->reqRingPA);
1265
1266         if (adapter->cmp_ring)
1267                 pci_free_consistent(adapter->dev,
1268                                     adapter->cmp_pages * PAGE_SIZE,
1269                                     adapter->cmp_ring, adapter->cmpRingPA);
1270
1271         if (adapter->msg_ring)
1272                 pci_free_consistent(adapter->dev,
1273                                     adapter->msg_pages * PAGE_SIZE,
1274                                     adapter->msg_ring, adapter->msgRingPA);
1275 }
1276
1277 /*
1278  * Allocate scatter gather lists.
1279  *
1280  * These are statically allocated.  Trying to be clever was not worth it.
1281  *
1282  * Dynamic allocation can fail, and we can't go deep into the memory
1283  * allocator, since we're a SCSI driver, and trying too hard to allocate
1284  * memory might generate disk I/O.  We also don't want to fail disk I/O
1285  * in that case because we can't get an allocation - the I/O could be
1286  * trying to swap out data to free memory.  Since that is pathological,
1287  * just use a statically allocated scatter list.
1288  *
1289  */
1290 static int pvscsi_allocate_sg(struct pvscsi_adapter *adapter)
1291 {
1292         struct pvscsi_ctx *ctx;
1293         int i;
1294
1295         ctx = adapter->cmd_map;
1296         BUILD_BUG_ON(sizeof(struct pvscsi_sg_list) > SGL_SIZE);
1297
1298         for (i = 0; i < adapter->req_depth; ++i, ++ctx) {
1299                 ctx->sgl = (void *)__get_free_pages(GFP_KERNEL,
1300                                                     get_order(SGL_SIZE));
1301                 ctx->sglPA = 0;
1302                 BUG_ON(!IS_ALIGNED(((unsigned long)ctx->sgl), PAGE_SIZE));
1303                 if (!ctx->sgl) {
1304                         for (; i >= 0; --i, --ctx) {
1305                                 free_pages((unsigned long)ctx->sgl,
1306                                            get_order(SGL_SIZE));
1307                                 ctx->sgl = NULL;
1308                         }
1309                         return -ENOMEM;
1310                 }
1311         }
1312
1313         return 0;
1314 }
1315
1316 /*
1317  * Query the device, fetch the config info and return the
1318  * maximum number of targets on the adapter. In case of
1319  * failure due to any reason return default i.e. 16.
1320  */
1321 static u32 pvscsi_get_max_targets(struct pvscsi_adapter *adapter)
1322 {
1323         struct PVSCSICmdDescConfigCmd cmd;
1324         struct PVSCSIConfigPageHeader *header;
1325         struct device *dev;
1326         dma_addr_t configPagePA;
1327         void *config_page;
1328         u32 numPhys = 16;
1329
1330         dev = pvscsi_dev(adapter);
1331         config_page = pci_alloc_consistent(adapter->dev, PAGE_SIZE,
1332                                            &configPagePA);
1333         if (!config_page) {
1334                 dev_warn(dev, "vmw_pvscsi: failed to allocate memory for config page\n");
1335                 goto exit;
1336         }
1337         BUG_ON(configPagePA & ~PAGE_MASK);
1338
1339         /* Fetch config info from the device. */
1340         cmd.configPageAddress = ((u64)PVSCSI_CONFIG_CONTROLLER_ADDRESS) << 32;
1341         cmd.configPageNum = PVSCSI_CONFIG_PAGE_CONTROLLER;
1342         cmd.cmpAddr = configPagePA;
1343         cmd._pad = 0;
1344
1345         /*
1346          * Mark the completion page header with error values. If the device
1347          * completes the command successfully, it sets the status values to
1348          * indicate success.
1349          */
1350         header = config_page;
1351         memset(header, 0, sizeof *header);
1352         header->hostStatus = BTSTAT_INVPARAM;
1353         header->scsiStatus = SDSTAT_CHECK;
1354
1355         pvscsi_write_cmd_desc(adapter, PVSCSI_CMD_CONFIG, &cmd, sizeof cmd);
1356
1357         if (header->hostStatus == BTSTAT_SUCCESS &&
1358             header->scsiStatus == SDSTAT_GOOD) {
1359                 struct PVSCSIConfigPageController *config;
1360
1361                 config = config_page;
1362                 numPhys = config->numPhys;
1363         } else
1364                 dev_warn(dev, "vmw_pvscsi: PVSCSI_CMD_CONFIG failed. hostStatus = 0x%x, scsiStatus = 0x%x\n",
1365                          header->hostStatus, header->scsiStatus);
1366         pci_free_consistent(adapter->dev, PAGE_SIZE, config_page, configPagePA);
1367 exit:
1368         return numPhys;
1369 }
1370
1371 static int pvscsi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1372 {
1373         struct pvscsi_adapter *adapter;
1374         struct pvscsi_adapter adapter_temp;
1375         struct Scsi_Host *host = NULL;
1376         unsigned int i;
1377         unsigned long flags = 0;
1378         int error;
1379         u32 max_id;
1380
1381         error = -ENODEV;
1382
1383         if (pci_enable_device(pdev))
1384                 return error;
1385
1386         if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) == 0 &&
1387             pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)) == 0) {
1388                 printk(KERN_INFO "vmw_pvscsi: using 64bit dma\n");
1389         } else if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) == 0 &&
1390                    pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)) == 0) {
1391                 printk(KERN_INFO "vmw_pvscsi: using 32bit dma\n");
1392         } else {
1393                 printk(KERN_ERR "vmw_pvscsi: failed to set DMA mask\n");
1394                 goto out_disable_device;
1395         }
1396
1397         /*
1398          * Let's use a temp pvscsi_adapter struct until we find the number of
1399          * targets on the adapter, after that we will switch to the real
1400          * allocated struct.
1401          */
1402         adapter = &adapter_temp;
1403         memset(adapter, 0, sizeof(*adapter));
1404         adapter->dev  = pdev;
1405         adapter->rev = pdev->revision;
1406
1407         if (pci_request_regions(pdev, "vmw_pvscsi")) {
1408                 printk(KERN_ERR "vmw_pvscsi: pci memory selection failed\n");
1409                 goto out_disable_device;
1410         }
1411
1412         for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1413                 if ((pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE_IO))
1414                         continue;
1415
1416                 if (pci_resource_len(pdev, i) < PVSCSI_MEM_SPACE_SIZE)
1417                         continue;
1418
1419                 break;
1420         }
1421
1422         if (i == DEVICE_COUNT_RESOURCE) {
1423                 printk(KERN_ERR
1424                        "vmw_pvscsi: adapter has no suitable MMIO region\n");
1425                 goto out_release_resources_and_disable;
1426         }
1427
1428         adapter->mmioBase = pci_iomap(pdev, i, PVSCSI_MEM_SPACE_SIZE);
1429
1430         if (!adapter->mmioBase) {
1431                 printk(KERN_ERR
1432                        "vmw_pvscsi: can't iomap for BAR %d memsize %lu\n",
1433                        i, PVSCSI_MEM_SPACE_SIZE);
1434                 goto out_release_resources_and_disable;
1435         }
1436
1437         pci_set_master(pdev);
1438
1439         /*
1440          * Ask the device for max number of targets before deciding the
1441          * default pvscsi_ring_pages value.
1442          */
1443         max_id = pvscsi_get_max_targets(adapter);
1444         printk(KERN_INFO "vmw_pvscsi: max_id: %u\n", max_id);
1445
1446         if (pvscsi_ring_pages == 0)
1447                 /*
1448                  * Set the right default value. Up to 16 it is 8, above it is
1449                  * max.
1450                  */
1451                 pvscsi_ring_pages = (max_id > 16) ?
1452                         PVSCSI_SETUP_RINGS_MAX_NUM_PAGES :
1453                         PVSCSI_DEFAULT_NUM_PAGES_PER_RING;
1454         printk(KERN_INFO
1455                "vmw_pvscsi: setting ring_pages to %d\n",
1456                pvscsi_ring_pages);
1457
1458         pvscsi_template.can_queue =
1459                 min(PVSCSI_MAX_NUM_PAGES_REQ_RING, pvscsi_ring_pages) *
1460                 PVSCSI_MAX_NUM_REQ_ENTRIES_PER_PAGE;
1461         pvscsi_template.cmd_per_lun =
1462                 min(pvscsi_template.can_queue, pvscsi_cmd_per_lun);
1463         host = scsi_host_alloc(&pvscsi_template, sizeof(struct pvscsi_adapter));
1464         if (!host) {
1465                 printk(KERN_ERR "vmw_pvscsi: failed to allocate host\n");
1466                 goto out_release_resources_and_disable;
1467         }
1468
1469         /*
1470          * Let's use the real pvscsi_adapter struct here onwards.
1471          */
1472         adapter = shost_priv(host);
1473         memset(adapter, 0, sizeof(*adapter));
1474         adapter->dev  = pdev;
1475         adapter->host = host;
1476         /*
1477          * Copy back what we already have to the allocated adapter struct.
1478          */
1479         adapter->rev = adapter_temp.rev;
1480         adapter->mmioBase = adapter_temp.mmioBase;
1481
1482         spin_lock_init(&adapter->hw_lock);
1483         host->max_channel = 0;
1484         host->max_lun     = 1;
1485         host->max_cmd_len = 16;
1486         host->max_id      = max_id;
1487
1488         pci_set_drvdata(pdev, host);
1489
1490         ll_adapter_reset(adapter);
1491
1492         adapter->use_msg = pvscsi_setup_msg_workqueue(adapter);
1493
1494         error = pvscsi_allocate_rings(adapter);
1495         if (error) {
1496                 printk(KERN_ERR "vmw_pvscsi: unable to allocate ring memory\n");
1497                 goto out_release_resources;
1498         }
1499
1500         /*
1501          * From this point on we should reset the adapter if anything goes
1502          * wrong.
1503          */
1504         pvscsi_setup_all_rings(adapter);
1505
1506         adapter->cmd_map = kcalloc(adapter->req_depth,
1507                                    sizeof(struct pvscsi_ctx), GFP_KERNEL);
1508         if (!adapter->cmd_map) {
1509                 printk(KERN_ERR "vmw_pvscsi: failed to allocate memory.\n");
1510                 error = -ENOMEM;
1511                 goto out_reset_adapter;
1512         }
1513
1514         INIT_LIST_HEAD(&adapter->cmd_pool);
1515         for (i = 0; i < adapter->req_depth; i++) {
1516                 struct pvscsi_ctx *ctx = adapter->cmd_map + i;
1517                 list_add(&ctx->list, &adapter->cmd_pool);
1518         }
1519
1520         error = pvscsi_allocate_sg(adapter);
1521         if (error) {
1522                 printk(KERN_ERR "vmw_pvscsi: unable to allocate s/g table\n");
1523                 goto out_reset_adapter;
1524         }
1525
1526         if (!pvscsi_disable_msix &&
1527             pvscsi_setup_msix(adapter, &adapter->irq) == 0) {
1528                 printk(KERN_INFO "vmw_pvscsi: using MSI-X\n");
1529                 adapter->use_msix = 1;
1530         } else if (!pvscsi_disable_msi && pci_enable_msi(pdev) == 0) {
1531                 printk(KERN_INFO "vmw_pvscsi: using MSI\n");
1532                 adapter->use_msi = 1;
1533                 adapter->irq = pdev->irq;
1534         } else {
1535                 printk(KERN_INFO "vmw_pvscsi: using INTx\n");
1536                 adapter->irq = pdev->irq;
1537                 flags = IRQF_SHARED;
1538         }
1539
1540         adapter->use_req_threshold = pvscsi_setup_req_threshold(adapter, true);
1541         printk(KERN_DEBUG "vmw_pvscsi: driver-based request coalescing %sabled\n",
1542                adapter->use_req_threshold ? "en" : "dis");
1543
1544         error = request_irq(adapter->irq, pvscsi_isr, flags,
1545                             "vmw_pvscsi", adapter);
1546         if (error) {
1547                 printk(KERN_ERR
1548                        "vmw_pvscsi: unable to request IRQ: %d\n", error);
1549                 adapter->irq = 0;
1550                 goto out_reset_adapter;
1551         }
1552
1553         error = scsi_add_host(host, &pdev->dev);
1554         if (error) {
1555                 printk(KERN_ERR
1556                        "vmw_pvscsi: scsi_add_host failed: %d\n", error);
1557                 goto out_reset_adapter;
1558         }
1559
1560         dev_info(&pdev->dev, "VMware PVSCSI rev %d host #%u\n",
1561                  adapter->rev, host->host_no);
1562
1563         pvscsi_unmask_intr(adapter);
1564
1565         scsi_scan_host(host);
1566
1567         return 0;
1568
1569 out_reset_adapter:
1570         ll_adapter_reset(adapter);
1571 out_release_resources:
1572         pvscsi_shutdown_intr(adapter);
1573         pvscsi_release_resources(adapter);
1574         scsi_host_put(host);
1575 out_disable_device:
1576         pci_disable_device(pdev);
1577
1578         return error;
1579
1580 out_release_resources_and_disable:
1581         pvscsi_shutdown_intr(adapter);
1582         pvscsi_release_resources(adapter);
1583         goto out_disable_device;
1584 }
1585
1586 static void __pvscsi_shutdown(struct pvscsi_adapter *adapter)
1587 {
1588         pvscsi_mask_intr(adapter);
1589
1590         if (adapter->workqueue)
1591                 flush_workqueue(adapter->workqueue);
1592
1593         pvscsi_shutdown_intr(adapter);
1594
1595         pvscsi_process_request_ring(adapter);
1596         pvscsi_process_completion_ring(adapter);
1597         ll_adapter_reset(adapter);
1598 }
1599
1600 static void pvscsi_shutdown(struct pci_dev *dev)
1601 {
1602         struct Scsi_Host *host = pci_get_drvdata(dev);
1603         struct pvscsi_adapter *adapter = shost_priv(host);
1604
1605         __pvscsi_shutdown(adapter);
1606 }
1607
1608 static void pvscsi_remove(struct pci_dev *pdev)
1609 {
1610         struct Scsi_Host *host = pci_get_drvdata(pdev);
1611         struct pvscsi_adapter *adapter = shost_priv(host);
1612
1613         scsi_remove_host(host);
1614
1615         __pvscsi_shutdown(adapter);
1616         pvscsi_release_resources(adapter);
1617
1618         scsi_host_put(host);
1619
1620         pci_disable_device(pdev);
1621 }
1622
1623 static struct pci_driver pvscsi_pci_driver = {
1624         .name           = "vmw_pvscsi",
1625         .id_table       = pvscsi_pci_tbl,
1626         .probe          = pvscsi_probe,
1627         .remove         = pvscsi_remove,
1628         .shutdown       = pvscsi_shutdown,
1629 };
1630
1631 static int __init pvscsi_init(void)
1632 {
1633         pr_info("%s - version %s\n",
1634                 PVSCSI_LINUX_DRIVER_DESC, PVSCSI_DRIVER_VERSION_STRING);
1635         return pci_register_driver(&pvscsi_pci_driver);
1636 }
1637
1638 static void __exit pvscsi_exit(void)
1639 {
1640         pci_unregister_driver(&pvscsi_pci_driver);
1641 }
1642
1643 module_init(pvscsi_init);
1644 module_exit(pvscsi_exit);