blob: a92653a18bd2465070351758a84ef300396cb9b7 [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
Scott Teel51c35132014-02-18 13:57:26 -06003 * Copyright 2000, 2014 Hewlett-Packard Development Company, L.P.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
12 * NON INFRINGEMENT. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/interrupt.h>
24#include <linux/types.h>
25#include <linux/pci.h>
Matthew Garrette5a44df2011-11-11 11:14:23 -050026#include <linux/pci-aspm.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080027#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/delay.h>
30#include <linux/fs.h>
31#include <linux/timer.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080032#include <linux/init.h>
33#include <linux/spinlock.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080034#include <linux/compat.h>
35#include <linux/blktrace_api.h>
36#include <linux/uaccess.h>
37#include <linux/io.h>
38#include <linux/dma-mapping.h>
39#include <linux/completion.h>
40#include <linux/moduleparam.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_cmnd.h>
43#include <scsi/scsi_device.h>
44#include <scsi/scsi_host.h>
Stephen M. Cameron667e23d2010-02-25 14:02:51 -060045#include <scsi/scsi_tcq.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080046#include <linux/cciss_ioctl.h>
47#include <linux/string.h>
48#include <linux/bitmap.h>
Arun Sharma600634972011-07-26 16:09:06 -070049#include <linux/atomic.h>
Stephen M. Camerona0c12412011-10-26 16:22:04 -050050#include <linux/jiffies.h>
Don Brace42a91642014-11-14 17:26:27 -060051#include <linux/percpu-defs.h>
Stephen M. Cameron094963d2014-05-29 10:53:18 -050052#include <linux/percpu.h>
Don Brace2b08b3e2015-01-23 16:41:09 -060053#include <asm/unaligned.h>
Stephen M. Cameron283b4a92014-02-18 13:55:33 -060054#include <asm/div64.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080055#include "hpsa_cmd.h"
56#include "hpsa.h"
57
58/* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */
Stephen M. Cameron9a993302014-03-13 17:13:06 -050059#define HPSA_DRIVER_VERSION "3.4.4-1"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080060#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -060061#define HPSA "hpsa"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080062
63/* How long to wait (in milliseconds) for board to go into simple mode */
64#define MAX_CONFIG_WAIT 30000
65#define MAX_IOCTL_CONFIG_WAIT 1000
66
67/*define how many times we will try a command because of bus resets */
68#define MAX_CMD_RETRIES 3
69
70/* Embedded module documentation macros - see modules.h */
71MODULE_AUTHOR("Hewlett-Packard Company");
72MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
73 HPSA_DRIVER_VERSION);
74MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
75MODULE_VERSION(HPSA_DRIVER_VERSION);
76MODULE_LICENSE("GPL");
77
78static int hpsa_allow_any;
79module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
80MODULE_PARM_DESC(hpsa_allow_any,
81 "Allow hpsa driver to access unknown HP Smart Array hardware");
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060082static int hpsa_simple_mode;
83module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
84MODULE_PARM_DESC(hpsa_simple_mode,
85 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080086
87/* define the PCI info for the cards we can control */
88static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080089 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
90 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
91 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
92 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
93 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -050094 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
95 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -060096 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -060097 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
98 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
99 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Mike Millerfe0c9612012-09-20 16:05:18 -0500104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Mike Millerfe0c9612012-09-20 16:05:18 -0500108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926},
109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928},
Mike Miller97b9f532013-09-04 15:05:55 -0500110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929},
111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD},
112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE},
113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF},
114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0},
115 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1},
116 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2},
117 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3},
118 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4},
119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6},
Mike Miller97b9f532013-09-04 15:05:55 -0500121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
122 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
123 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500124 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA},
125 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB},
126 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC},
127 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD},
128 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600129 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
130 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
131 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
132 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
133 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
Mike Miller7c03b872010-12-01 11:16:07 -0600134 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Stephen M. Cameron6798cc02010-06-16 13:51:20 -0500135 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800136 {0,}
137};
138
139MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
140
141/* board_id = Subsystem Device ID & Vendor ID
142 * product = Marketing Name for the board
143 * access = Address of the struct of function pointers
144 */
145static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800146 {0x3241103C, "Smart Array P212", &SA5_access},
147 {0x3243103C, "Smart Array P410", &SA5_access},
148 {0x3245103C, "Smart Array P410i", &SA5_access},
149 {0x3247103C, "Smart Array P411", &SA5_access},
150 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500151 {0x324A103C, "Smart Array P712m", &SA5_access},
152 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600153 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500154 {0x3350103C, "Smart Array P222", &SA5_access},
155 {0x3351103C, "Smart Array P420", &SA5_access},
156 {0x3352103C, "Smart Array P421", &SA5_access},
157 {0x3353103C, "Smart Array P822", &SA5_access},
158 {0x3354103C, "Smart Array P420i", &SA5_access},
159 {0x3355103C, "Smart Array P220i", &SA5_access},
160 {0x3356103C, "Smart Array P721m", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500161 {0x1921103C, "Smart Array P830i", &SA5_access},
162 {0x1922103C, "Smart Array P430", &SA5_access},
163 {0x1923103C, "Smart Array P431", &SA5_access},
164 {0x1924103C, "Smart Array P830", &SA5_access},
165 {0x1926103C, "Smart Array P731m", &SA5_access},
166 {0x1928103C, "Smart Array P230i", &SA5_access},
167 {0x1929103C, "Smart Array P530", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500168 {0x21BD103C, "Smart Array", &SA5_access},
169 {0x21BE103C, "Smart Array", &SA5_access},
170 {0x21BF103C, "Smart Array", &SA5_access},
171 {0x21C0103C, "Smart Array", &SA5_access},
172 {0x21C1103C, "Smart Array", &SA5_access},
173 {0x21C2103C, "Smart Array", &SA5_access},
174 {0x21C3103C, "Smart Array", &SA5_access},
175 {0x21C4103C, "Smart Array", &SA5_access},
176 {0x21C5103C, "Smart Array", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500177 {0x21C6103C, "Smart Array", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500178 {0x21C7103C, "Smart Array", &SA5_access},
179 {0x21C8103C, "Smart Array", &SA5_access},
180 {0x21C9103C, "Smart Array", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500181 {0x21CA103C, "Smart Array", &SA5_access},
182 {0x21CB103C, "Smart Array", &SA5_access},
183 {0x21CC103C, "Smart Array", &SA5_access},
184 {0x21CD103C, "Smart Array", &SA5_access},
185 {0x21CE103C, "Smart Array", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600186 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
187 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
188 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
189 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
190 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800191 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
192};
193
194static int number_of_controllers;
195
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500196static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
197static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Don Brace42a91642014-11-14 17:26:27 -0600198static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800199
200#ifdef CONFIG_COMPAT
Don Brace42a91642014-11-14 17:26:27 -0600201static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
202 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800203#endif
204
205static void cmd_free(struct ctlr_info *h, struct CommandList *c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800206static struct CommandList *cmd_alloc(struct ctlr_info *h);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600207static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600208 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800209 int cmd_type);
Robert Elliott2c143342015-01-23 16:42:48 -0600210static void hpsa_free_cmd_pool(struct ctlr_info *h);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600211#define VPD_PAGE (1 << 8)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800212
Jeff Garzikf2812332010-11-16 02:10:29 -0500213static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600214static void hpsa_scan_start(struct Scsi_Host *);
215static int hpsa_scan_finished(struct Scsi_Host *sh,
216 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600217static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800218
219static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500220static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800221static int hpsa_slave_alloc(struct scsi_device *sdev);
222static void hpsa_slave_destroy(struct scsi_device *sdev);
223
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800224static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800225static int check_for_unit_attention(struct ctlr_info *h,
226 struct CommandList *c);
227static void check_ioctl_unit_attention(struct ctlr_info *h,
228 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600229/* performant mode helper functions */
230static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600231 int nsgs, int min_blocks, u32 *bucket_map);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800232static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500233static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800234static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
235 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
236 u64 *cfg_offset);
237static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
238 unsigned long *memory_bar);
239static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
240static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
241 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500242static inline void finish_cmd(struct CommandList *c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -0600243static void hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600244#define BOARD_NOT_READY 0
245#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600246static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600247static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600248static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
249 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600250 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600251static void hpsa_command_resubmit_worker(struct work_struct *work);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800252
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800253static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
254{
255 unsigned long *priv = shost_priv(sdev->host);
256 return (struct ctlr_info *) *priv;
257}
258
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600259static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
260{
261 unsigned long *priv = shost_priv(sh);
262 return (struct ctlr_info *) *priv;
263}
264
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800265static int check_for_unit_attention(struct ctlr_info *h,
266 struct CommandList *c)
267{
268 if (c->err_info->SenseInfo[2] != UNIT_ATTENTION)
269 return 0;
270
271 switch (c->err_info->SenseInfo[12]) {
272 case STATE_CHANGED:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600273 dev_warn(&h->pdev->dev, HPSA "%d: a state change "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800274 "detected, command retried\n", h->ctlr);
275 break;
276 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600277 dev_warn(&h->pdev->dev,
278 HPSA "%d: LUN failure detected\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800279 break;
280 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600281 dev_warn(&h->pdev->dev,
282 HPSA "%d: report LUN data changed\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800283 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600284 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
285 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800286 */
287 break;
288 case POWER_OR_RESET:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600289 dev_warn(&h->pdev->dev, HPSA "%d: a power on "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800290 "or device reset detected\n", h->ctlr);
291 break;
292 case UNIT_ATTENTION_CLEARED:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600293 dev_warn(&h->pdev->dev, HPSA "%d: unit attention "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800294 "cleared by another initiator\n", h->ctlr);
295 break;
296 default:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600297 dev_warn(&h->pdev->dev, HPSA "%d: unknown "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800298 "unit attention detected\n", h->ctlr);
299 break;
300 }
301 return 1;
302}
303
Matt Bondurant852af202012-05-01 11:42:35 -0500304static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
305{
306 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
307 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
308 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
309 return 0;
310 dev_warn(&h->pdev->dev, HPSA "device busy");
311 return 1;
312}
313
Scott Teelda0697b2014-02-18 13:57:00 -0600314static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
315 struct device_attribute *attr,
316 const char *buf, size_t count)
317{
318 int status, len;
319 struct ctlr_info *h;
320 struct Scsi_Host *shost = class_to_shost(dev);
321 char tmpbuf[10];
322
323 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
324 return -EACCES;
325 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
326 strncpy(tmpbuf, buf, len);
327 tmpbuf[len] = '\0';
328 if (sscanf(tmpbuf, "%d", &status) != 1)
329 return -EINVAL;
330 h = shost_to_hba(shost);
331 h->acciopath_status = !!status;
332 dev_warn(&h->pdev->dev,
333 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
334 h->acciopath_status ? "enabled" : "disabled");
335 return count;
336}
337
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600338static ssize_t host_store_raid_offload_debug(struct device *dev,
339 struct device_attribute *attr,
340 const char *buf, size_t count)
341{
342 int debug_level, len;
343 struct ctlr_info *h;
344 struct Scsi_Host *shost = class_to_shost(dev);
345 char tmpbuf[10];
346
347 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
348 return -EACCES;
349 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
350 strncpy(tmpbuf, buf, len);
351 tmpbuf[len] = '\0';
352 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
353 return -EINVAL;
354 if (debug_level < 0)
355 debug_level = 0;
356 h = shost_to_hba(shost);
357 h->raid_offload_debug = debug_level;
358 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
359 h->raid_offload_debug);
360 return count;
361}
362
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800363static ssize_t host_store_rescan(struct device *dev,
364 struct device_attribute *attr,
365 const char *buf, size_t count)
366{
367 struct ctlr_info *h;
368 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600369 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600370 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800371 return count;
372}
373
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500374static ssize_t host_show_firmware_revision(struct device *dev,
375 struct device_attribute *attr, char *buf)
376{
377 struct ctlr_info *h;
378 struct Scsi_Host *shost = class_to_shost(dev);
379 unsigned char *fwrev;
380
381 h = shost_to_hba(shost);
382 if (!h->hba_inquiry_data)
383 return 0;
384 fwrev = &h->hba_inquiry_data[32];
385 return snprintf(buf, 20, "%c%c%c%c\n",
386 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
387}
388
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600389static ssize_t host_show_commands_outstanding(struct device *dev,
390 struct device_attribute *attr, char *buf)
391{
392 struct Scsi_Host *shost = class_to_shost(dev);
393 struct ctlr_info *h = shost_to_hba(shost);
394
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600395 return snprintf(buf, 20, "%d\n",
396 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600397}
398
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600399static ssize_t host_show_transport_mode(struct device *dev,
400 struct device_attribute *attr, char *buf)
401{
402 struct ctlr_info *h;
403 struct Scsi_Host *shost = class_to_shost(dev);
404
405 h = shost_to_hba(shost);
406 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600407 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600408 "performant" : "simple");
409}
410
Scott Teelda0697b2014-02-18 13:57:00 -0600411static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
412 struct device_attribute *attr, char *buf)
413{
414 struct ctlr_info *h;
415 struct Scsi_Host *shost = class_to_shost(dev);
416
417 h = shost_to_hba(shost);
418 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
419 (h->acciopath_status == 1) ? "enabled" : "disabled");
420}
421
Stephen M. Cameron46380782011-05-03 15:00:01 -0500422/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600423static u32 unresettable_controller[] = {
424 0x324a103C, /* Smart Array P712m */
425 0x324b103C, /* SmartArray P711m */
426 0x3223103C, /* Smart Array P800 */
427 0x3234103C, /* Smart Array P400 */
428 0x3235103C, /* Smart Array P400i */
429 0x3211103C, /* Smart Array E200i */
430 0x3212103C, /* Smart Array E200 */
431 0x3213103C, /* Smart Array E200i */
432 0x3214103C, /* Smart Array E200i */
433 0x3215103C, /* Smart Array E200i */
434 0x3237103C, /* Smart Array E500 */
435 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100436 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600437 0x409C0E11, /* Smart Array 6400 */
438 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100439 0x40700E11, /* Smart Array 5300 */
440 0x40820E11, /* Smart Array 532 */
441 0x40830E11, /* Smart Array 5312 */
442 0x409A0E11, /* Smart Array 641 */
443 0x409B0E11, /* Smart Array 642 */
444 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600445};
446
Stephen M. Cameron46380782011-05-03 15:00:01 -0500447/* List of controllers which cannot even be soft reset */
448static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100449 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100450 0x40700E11, /* Smart Array 5300 */
451 0x40820E11, /* Smart Array 532 */
452 0x40830E11, /* Smart Array 5312 */
453 0x409A0E11, /* Smart Array 641 */
454 0x409B0E11, /* Smart Array 642 */
455 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500456 /* Exclude 640x boards. These are two pci devices in one slot
457 * which share a battery backed cache module. One controls the
458 * cache, the other accesses the cache through the one that controls
459 * it. If we reset the one controlling the cache, the other will
460 * likely not be happy. Just forbid resetting this conjoined mess.
461 * The 640x isn't really supported by hpsa anyway.
462 */
463 0x409C0E11, /* Smart Array 6400 */
464 0x409D0E11, /* Smart Array 6400 EM */
465};
466
467static int ctlr_is_hard_resettable(u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600468{
469 int i;
470
471 for (i = 0; i < ARRAY_SIZE(unresettable_controller); i++)
Stephen M. Cameron46380782011-05-03 15:00:01 -0500472 if (unresettable_controller[i] == board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600473 return 0;
474 return 1;
475}
476
Stephen M. Cameron46380782011-05-03 15:00:01 -0500477static int ctlr_is_soft_resettable(u32 board_id)
478{
479 int i;
480
481 for (i = 0; i < ARRAY_SIZE(soft_unresettable_controller); i++)
482 if (soft_unresettable_controller[i] == board_id)
483 return 0;
484 return 1;
485}
486
487static int ctlr_is_resettable(u32 board_id)
488{
489 return ctlr_is_hard_resettable(board_id) ||
490 ctlr_is_soft_resettable(board_id);
491}
492
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600493static ssize_t host_show_resettable(struct device *dev,
494 struct device_attribute *attr, char *buf)
495{
496 struct ctlr_info *h;
497 struct Scsi_Host *shost = class_to_shost(dev);
498
499 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500500 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600501}
502
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800503static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
504{
505 return (scsi3addr[3] & 0xC0) == 0x40;
506}
507
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600508static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
509 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800510};
Scott Teel6b80b182014-02-18 13:56:55 -0600511#define HPSA_RAID_0 0
512#define HPSA_RAID_4 1
513#define HPSA_RAID_1 2 /* also used for RAID 10 */
514#define HPSA_RAID_5 3 /* also used for RAID 50 */
515#define HPSA_RAID_51 4
516#define HPSA_RAID_6 5 /* also used for RAID 60 */
517#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800518#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
519
520static ssize_t raid_level_show(struct device *dev,
521 struct device_attribute *attr, char *buf)
522{
523 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600524 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800525 struct ctlr_info *h;
526 struct scsi_device *sdev;
527 struct hpsa_scsi_dev_t *hdev;
528 unsigned long flags;
529
530 sdev = to_scsi_device(dev);
531 h = sdev_to_hba(sdev);
532 spin_lock_irqsave(&h->lock, flags);
533 hdev = sdev->hostdata;
534 if (!hdev) {
535 spin_unlock_irqrestore(&h->lock, flags);
536 return -ENODEV;
537 }
538
539 /* Is this even a logical drive? */
540 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
541 spin_unlock_irqrestore(&h->lock, flags);
542 l = snprintf(buf, PAGE_SIZE, "N/A\n");
543 return l;
544 }
545
546 rlevel = hdev->raid_level;
547 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600548 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800549 rlevel = RAID_UNKNOWN;
550 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
551 return l;
552}
553
554static ssize_t lunid_show(struct device *dev,
555 struct device_attribute *attr, char *buf)
556{
557 struct ctlr_info *h;
558 struct scsi_device *sdev;
559 struct hpsa_scsi_dev_t *hdev;
560 unsigned long flags;
561 unsigned char lunid[8];
562
563 sdev = to_scsi_device(dev);
564 h = sdev_to_hba(sdev);
565 spin_lock_irqsave(&h->lock, flags);
566 hdev = sdev->hostdata;
567 if (!hdev) {
568 spin_unlock_irqrestore(&h->lock, flags);
569 return -ENODEV;
570 }
571 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
572 spin_unlock_irqrestore(&h->lock, flags);
573 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
574 lunid[0], lunid[1], lunid[2], lunid[3],
575 lunid[4], lunid[5], lunid[6], lunid[7]);
576}
577
578static ssize_t unique_id_show(struct device *dev,
579 struct device_attribute *attr, char *buf)
580{
581 struct ctlr_info *h;
582 struct scsi_device *sdev;
583 struct hpsa_scsi_dev_t *hdev;
584 unsigned long flags;
585 unsigned char sn[16];
586
587 sdev = to_scsi_device(dev);
588 h = sdev_to_hba(sdev);
589 spin_lock_irqsave(&h->lock, flags);
590 hdev = sdev->hostdata;
591 if (!hdev) {
592 spin_unlock_irqrestore(&h->lock, flags);
593 return -ENODEV;
594 }
595 memcpy(sn, hdev->device_id, sizeof(sn));
596 spin_unlock_irqrestore(&h->lock, flags);
597 return snprintf(buf, 16 * 2 + 2,
598 "%02X%02X%02X%02X%02X%02X%02X%02X"
599 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
600 sn[0], sn[1], sn[2], sn[3],
601 sn[4], sn[5], sn[6], sn[7],
602 sn[8], sn[9], sn[10], sn[11],
603 sn[12], sn[13], sn[14], sn[15]);
604}
605
Scott Teelc1988682014-02-18 13:55:54 -0600606static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
607 struct device_attribute *attr, char *buf)
608{
609 struct ctlr_info *h;
610 struct scsi_device *sdev;
611 struct hpsa_scsi_dev_t *hdev;
612 unsigned long flags;
613 int offload_enabled;
614
615 sdev = to_scsi_device(dev);
616 h = sdev_to_hba(sdev);
617 spin_lock_irqsave(&h->lock, flags);
618 hdev = sdev->hostdata;
619 if (!hdev) {
620 spin_unlock_irqrestore(&h->lock, flags);
621 return -ENODEV;
622 }
623 offload_enabled = hdev->offload_enabled;
624 spin_unlock_irqrestore(&h->lock, flags);
625 return snprintf(buf, 20, "%d\n", offload_enabled);
626}
627
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600628static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
629static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
630static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
631static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600632static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
633 host_show_hp_ssd_smart_path_enabled, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600634static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
635 host_show_hp_ssd_smart_path_status,
636 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600637static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
638 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600639static DEVICE_ATTR(firmware_revision, S_IRUGO,
640 host_show_firmware_revision, NULL);
641static DEVICE_ATTR(commands_outstanding, S_IRUGO,
642 host_show_commands_outstanding, NULL);
643static DEVICE_ATTR(transport_mode, S_IRUGO,
644 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600645static DEVICE_ATTR(resettable, S_IRUGO,
646 host_show_resettable, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600647
648static struct device_attribute *hpsa_sdev_attrs[] = {
649 &dev_attr_raid_level,
650 &dev_attr_lunid,
651 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600652 &dev_attr_hp_ssd_smart_path_enabled,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600653 NULL,
654};
655
656static struct device_attribute *hpsa_shost_attrs[] = {
657 &dev_attr_rescan,
658 &dev_attr_firmware_revision,
659 &dev_attr_commands_outstanding,
660 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600661 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600662 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600663 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600664 NULL,
665};
666
667static struct scsi_host_template hpsa_driver_template = {
668 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600669 .name = HPSA,
670 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600671 .queuecommand = hpsa_scsi_queue_command,
672 .scan_start = hpsa_scan_start,
673 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600674 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600675 .this_id = -1,
676 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500677 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600678 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
679 .ioctl = hpsa_ioctl,
680 .slave_alloc = hpsa_slave_alloc,
681 .slave_destroy = hpsa_slave_destroy,
682#ifdef CONFIG_COMPAT
683 .compat_ioctl = hpsa_compat_ioctl,
684#endif
685 .sdev_attrs = hpsa_sdev_attrs,
686 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500687 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400688 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600689};
690
Matt Gates254f7962012-05-01 11:43:06 -0500691static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600692{
693 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500694 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600695
Matt Gatese1f7de02014-02-18 13:55:17 -0600696 if (h->transMethod & CFGTBL_Trans_io_accel1)
697 return h->access.command_completed(h, q);
698
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600699 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500700 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600701
Matt Gates254f7962012-05-01 11:43:06 -0500702 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
703 a = rq->head[rq->current_entry];
704 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600705 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600706 } else {
707 a = FIFO_EMPTY;
708 }
709 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500710 if (rq->current_entry == h->max_commands) {
711 rq->current_entry = 0;
712 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600713 }
714 return a;
715}
716
Scott Teelc3497752014-02-18 13:56:34 -0600717/*
718 * There are some special bits in the bus address of the
719 * command that we have to set for the controller to know
720 * how to process the command:
721 *
722 * Normal performant mode:
723 * bit 0: 1 means performant mode, 0 means simple mode.
724 * bits 1-3 = block fetch table entry
725 * bits 4-6 = command type (== 0)
726 *
727 * ioaccel1 mode:
728 * bit 0 = "performant mode" bit.
729 * bits 1-3 = block fetch table entry
730 * bits 4-6 = command type (== 110)
731 * (command type is needed because ioaccel1 mode
732 * commands are submitted through the same register as normal
733 * mode commands, so this is how the controller knows whether
734 * the command is normal mode or ioaccel1 mode.)
735 *
736 * ioaccel2 mode:
737 * bit 0 = "performant mode" bit.
738 * bits 1-4 = block fetch table entry (note extra bit)
739 * bits 4-6 = not needed, because ioaccel2 mode has
740 * a separate special register for submitting commands.
741 */
742
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600743/* set_performant_mode: Modify the tag for cciss performant
744 * set bit 0 for pull model, bits 3-1 for block fetch
745 * register number
746 */
747static void set_performant_mode(struct ctlr_info *h, struct CommandList *c)
748{
Matt Gates254f7962012-05-01 11:43:06 -0500749 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600750 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Hannes Reineckeeee0f032014-01-15 13:30:53 +0100751 if (likely(h->msix_vector > 0))
Matt Gates254f7962012-05-01 11:43:06 -0500752 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200753 raw_smp_processor_id() % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500754 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600755}
756
Scott Teelc3497752014-02-18 13:56:34 -0600757static void set_ioaccel1_performant_mode(struct ctlr_info *h,
758 struct CommandList *c)
759{
760 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
761
762 /* Tell the controller to post the reply to the queue for this
763 * processor. This seems to give the best I/O throughput.
764 */
765 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
766 /* Set the bits in the address sent down to include:
767 * - performant mode bit (bit 0)
768 * - pull count (bits 1-3)
769 * - command type (bits 4-6)
770 */
771 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
772 IOACCEL1_BUSADDR_CMDTYPE;
773}
774
775static void set_ioaccel2_performant_mode(struct ctlr_info *h,
776 struct CommandList *c)
777{
778 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
779
780 /* Tell the controller to post the reply to the queue for this
781 * processor. This seems to give the best I/O throughput.
782 */
783 cp->reply_queue = smp_processor_id() % h->nreply_queues;
784 /* Set the bits in the address sent down to include:
785 * - performant mode bit not used in ioaccel mode 2
786 * - pull count (bits 0-3)
787 * - command type isn't needed for ioaccel2
788 */
789 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
790}
791
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500792static int is_firmware_flash_cmd(u8 *cdb)
793{
794 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
795}
796
797/*
798 * During firmware flash, the heartbeat register may not update as frequently
799 * as it should. So we dial down lockup detection during firmware flash. and
800 * dial it back up when firmware flash completes.
801 */
802#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
803#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
804static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
805 struct CommandList *c)
806{
807 if (!is_firmware_flash_cmd(c->Request.CDB))
808 return;
809 atomic_inc(&h->firmware_flash_in_progress);
810 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
811}
812
813static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
814 struct CommandList *c)
815{
816 if (is_firmware_flash_cmd(c->Request.CDB) &&
817 atomic_dec_and_test(&h->firmware_flash_in_progress))
818 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
819}
820
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600821static void enqueue_cmd_and_start_io(struct ctlr_info *h,
822 struct CommandList *c)
823{
Stephen Cameronc05e8862015-01-23 16:44:40 -0600824 dial_down_lockup_detection_during_fw_flash(h, c);
825 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -0600826 switch (c->cmd_type) {
827 case CMD_IOACCEL1:
828 set_ioaccel1_performant_mode(h, c);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600829 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -0600830 break;
831 case CMD_IOACCEL2:
832 set_ioaccel2_performant_mode(h, c);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600833 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -0600834 break;
835 default:
836 set_performant_mode(h, c);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600837 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -0600838 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600839}
840
841static inline int is_hba_lunid(unsigned char scsi3addr[])
842{
843 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
844}
845
846static inline int is_scsi_rev_5(struct ctlr_info *h)
847{
848 if (!h->hba_inquiry_data)
849 return 0;
850 if ((h->hba_inquiry_data[2] & 0x07) == 5)
851 return 1;
852 return 0;
853}
854
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800855static int hpsa_find_target_lun(struct ctlr_info *h,
856 unsigned char scsi3addr[], int bus, int *target, int *lun)
857{
858 /* finds an unused bus, target, lun for a new physical device
859 * assumes h->devlock is held
860 */
861 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -0500862 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800863
Akinobu Mita263d9402012-01-21 00:15:27 +0900864 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800865
866 for (i = 0; i < h->ndevices; i++) {
867 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +0900868 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800869 }
870
Akinobu Mita263d9402012-01-21 00:15:27 +0900871 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
872 if (i < HPSA_MAX_DEVICES) {
873 /* *bus = 1; */
874 *target = i;
875 *lun = 0;
876 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800877 }
878 return !found;
879}
880
881/* Add an entry into h->dev[] array. */
882static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
883 struct hpsa_scsi_dev_t *device,
884 struct hpsa_scsi_dev_t *added[], int *nadded)
885{
886 /* assumes h->devlock is held */
887 int n = h->ndevices;
888 int i;
889 unsigned char addr1[8], addr2[8];
890 struct hpsa_scsi_dev_t *sd;
891
Scott Teelcfe5bad2011-10-26 16:21:07 -0500892 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800893 dev_err(&h->pdev->dev, "too many devices, some will be "
894 "inaccessible.\n");
895 return -1;
896 }
897
898 /* physical devices do not have lun or target assigned until now. */
899 if (device->lun != -1)
900 /* Logical device, lun is already assigned. */
901 goto lun_assigned;
902
903 /* If this device a non-zero lun of a multi-lun device
904 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -0600905 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800906 */
907 if (device->scsi3addr[4] == 0) {
908 /* This is not a non-zero lun of a multi-lun device */
909 if (hpsa_find_target_lun(h, device->scsi3addr,
910 device->bus, &device->target, &device->lun) != 0)
911 return -1;
912 goto lun_assigned;
913 }
914
915 /* This is a non-zero lun of a multi-lun device.
916 * Search through our list and find the device which
917 * has the same 8 byte LUN address, excepting byte 4.
918 * Assign the same bus and target for this new LUN.
919 * Use the logical unit number from the firmware.
920 */
921 memcpy(addr1, device->scsi3addr, 8);
922 addr1[4] = 0;
923 for (i = 0; i < n; i++) {
924 sd = h->dev[i];
925 memcpy(addr2, sd->scsi3addr, 8);
926 addr2[4] = 0;
927 /* differ only in byte 4? */
928 if (memcmp(addr1, addr2, 8) == 0) {
929 device->bus = sd->bus;
930 device->target = sd->target;
931 device->lun = device->scsi3addr[4];
932 break;
933 }
934 }
935 if (device->lun == -1) {
936 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
937 " suspect firmware bug or unsupported hardware "
938 "configuration.\n");
939 return -1;
940 }
941
942lun_assigned:
943
944 h->dev[n] = device;
945 h->ndevices++;
946 added[*nadded] = device;
947 (*nadded)++;
948
949 /* initially, (before registering with scsi layer) we don't
950 * know our hostno and we don't want to print anything first
951 * time anyway (the scsi layer's inquiries will show that info)
952 */
953 /* if (hostno != -1) */
954 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d added.\n",
955 scsi_device_type(device->devtype), hostno,
956 device->bus, device->target, device->lun);
957 return 0;
958}
959
Scott Teelbd9244f2012-01-19 14:01:30 -0600960/* Update an entry in h->dev[] array. */
961static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
962 int entry, struct hpsa_scsi_dev_t *new_entry)
963{
964 /* assumes h->devlock is held */
965 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
966
967 /* Raid level changed. */
968 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -0600969
Don Brace03383732015-01-23 16:43:30 -0600970 /* Raid offload parameters changed. Careful about the ordering. */
971 if (new_entry->offload_config && new_entry->offload_enabled) {
972 /*
973 * if drive is newly offload_enabled, we want to copy the
974 * raid map data first. If previously offload_enabled and
975 * offload_config were set, raid map data had better be
976 * the same as it was before. if raid map data is changed
977 * then it had better be the case that
978 * h->dev[entry]->offload_enabled is currently 0.
979 */
980 h->dev[entry]->raid_map = new_entry->raid_map;
981 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
982 wmb(); /* ensure raid map updated prior to ->offload_enabled */
983 }
Stephen M. Cameron250fb122014-02-18 13:55:38 -0600984 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -0600985 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -0600986 h->dev[entry]->offload_enabled = new_entry->offload_enabled;
987 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -0600988
Scott Teelbd9244f2012-01-19 14:01:30 -0600989 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d updated.\n",
990 scsi_device_type(new_entry->devtype), hostno, new_entry->bus,
991 new_entry->target, new_entry->lun);
992}
993
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -0600994/* Replace an entry from h->dev[] array. */
995static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
996 int entry, struct hpsa_scsi_dev_t *new_entry,
997 struct hpsa_scsi_dev_t *added[], int *nadded,
998 struct hpsa_scsi_dev_t *removed[], int *nremoved)
999{
1000 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001001 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001002 removed[*nremoved] = h->dev[entry];
1003 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001004
1005 /*
1006 * New physical devices won't have target/lun assigned yet
1007 * so we need to preserve the values in the slot we are replacing.
1008 */
1009 if (new_entry->target == -1) {
1010 new_entry->target = h->dev[entry]->target;
1011 new_entry->lun = h->dev[entry]->lun;
1012 }
1013
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001014 h->dev[entry] = new_entry;
1015 added[*nadded] = new_entry;
1016 (*nadded)++;
1017 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d changed.\n",
1018 scsi_device_type(new_entry->devtype), hostno, new_entry->bus,
1019 new_entry->target, new_entry->lun);
1020}
1021
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001022/* Remove an entry from h->dev[] array. */
1023static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1024 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1025{
1026 /* assumes h->devlock is held */
1027 int i;
1028 struct hpsa_scsi_dev_t *sd;
1029
Scott Teelcfe5bad2011-10-26 16:21:07 -05001030 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001031
1032 sd = h->dev[entry];
1033 removed[*nremoved] = h->dev[entry];
1034 (*nremoved)++;
1035
1036 for (i = entry; i < h->ndevices-1; i++)
1037 h->dev[i] = h->dev[i+1];
1038 h->ndevices--;
1039 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d removed.\n",
1040 scsi_device_type(sd->devtype), hostno, sd->bus, sd->target,
1041 sd->lun);
1042}
1043
1044#define SCSI3ADDR_EQ(a, b) ( \
1045 (a)[7] == (b)[7] && \
1046 (a)[6] == (b)[6] && \
1047 (a)[5] == (b)[5] && \
1048 (a)[4] == (b)[4] && \
1049 (a)[3] == (b)[3] && \
1050 (a)[2] == (b)[2] && \
1051 (a)[1] == (b)[1] && \
1052 (a)[0] == (b)[0])
1053
1054static void fixup_botched_add(struct ctlr_info *h,
1055 struct hpsa_scsi_dev_t *added)
1056{
1057 /* called when scsi_add_device fails in order to re-adjust
1058 * h->dev[] to match the mid layer's view.
1059 */
1060 unsigned long flags;
1061 int i, j;
1062
1063 spin_lock_irqsave(&h->lock, flags);
1064 for (i = 0; i < h->ndevices; i++) {
1065 if (h->dev[i] == added) {
1066 for (j = i; j < h->ndevices-1; j++)
1067 h->dev[j] = h->dev[j+1];
1068 h->ndevices--;
1069 break;
1070 }
1071 }
1072 spin_unlock_irqrestore(&h->lock, flags);
1073 kfree(added);
1074}
1075
1076static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1077 struct hpsa_scsi_dev_t *dev2)
1078{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001079 /* we compare everything except lun and target as these
1080 * are not yet assigned. Compare parts likely
1081 * to differ first
1082 */
1083 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1084 sizeof(dev1->scsi3addr)) != 0)
1085 return 0;
1086 if (memcmp(dev1->device_id, dev2->device_id,
1087 sizeof(dev1->device_id)) != 0)
1088 return 0;
1089 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1090 return 0;
1091 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1092 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001093 if (dev1->devtype != dev2->devtype)
1094 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001095 if (dev1->bus != dev2->bus)
1096 return 0;
1097 return 1;
1098}
1099
Scott Teelbd9244f2012-01-19 14:01:30 -06001100static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1101 struct hpsa_scsi_dev_t *dev2)
1102{
1103 /* Device attributes that can change, but don't mean
1104 * that the device is a different device, nor that the OS
1105 * needs to be told anything about the change.
1106 */
1107 if (dev1->raid_level != dev2->raid_level)
1108 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001109 if (dev1->offload_config != dev2->offload_config)
1110 return 1;
1111 if (dev1->offload_enabled != dev2->offload_enabled)
1112 return 1;
Don Brace03383732015-01-23 16:43:30 -06001113 if (dev1->queue_depth != dev2->queue_depth)
1114 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001115 return 0;
1116}
1117
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001118/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1119 * and return needle location in *index. If scsi3addr matches, but not
1120 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001121 * location in *index.
1122 * In the case of a minor device attribute change, such as RAID level, just
1123 * return DEVICE_UPDATED, along with the updated device's location in index.
1124 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001125 */
1126static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1127 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1128 int *index)
1129{
1130 int i;
1131#define DEVICE_NOT_FOUND 0
1132#define DEVICE_CHANGED 1
1133#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001134#define DEVICE_UPDATED 3
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001135 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001136 if (haystack[i] == NULL) /* previously removed. */
1137 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001138 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1139 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001140 if (device_is_the_same(needle, haystack[i])) {
1141 if (device_updated(needle, haystack[i]))
1142 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001143 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001144 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001145 /* Keep offline devices offline */
1146 if (needle->volume_offline)
1147 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001148 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001149 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001150 }
1151 }
1152 *index = -1;
1153 return DEVICE_NOT_FOUND;
1154}
1155
Stephen M. Cameron98465902014-02-21 16:25:00 -06001156static void hpsa_monitor_offline_device(struct ctlr_info *h,
1157 unsigned char scsi3addr[])
1158{
1159 struct offline_device_entry *device;
1160 unsigned long flags;
1161
1162 /* Check to see if device is already on the list */
1163 spin_lock_irqsave(&h->offline_device_lock, flags);
1164 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1165 if (memcmp(device->scsi3addr, scsi3addr,
1166 sizeof(device->scsi3addr)) == 0) {
1167 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1168 return;
1169 }
1170 }
1171 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1172
1173 /* Device is not on the list, add it. */
1174 device = kmalloc(sizeof(*device), GFP_KERNEL);
1175 if (!device) {
1176 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1177 return;
1178 }
1179 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1180 spin_lock_irqsave(&h->offline_device_lock, flags);
1181 list_add_tail(&device->offline_list, &h->offline_device_list);
1182 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1183}
1184
1185/* Print a message explaining various offline volume states */
1186static void hpsa_show_volume_status(struct ctlr_info *h,
1187 struct hpsa_scsi_dev_t *sd)
1188{
1189 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1190 dev_info(&h->pdev->dev,
1191 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1192 h->scsi_host->host_no,
1193 sd->bus, sd->target, sd->lun);
1194 switch (sd->volume_offline) {
1195 case HPSA_LV_OK:
1196 break;
1197 case HPSA_LV_UNDERGOING_ERASE:
1198 dev_info(&h->pdev->dev,
1199 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1200 h->scsi_host->host_no,
1201 sd->bus, sd->target, sd->lun);
1202 break;
1203 case HPSA_LV_UNDERGOING_RPI:
1204 dev_info(&h->pdev->dev,
1205 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
1206 h->scsi_host->host_no,
1207 sd->bus, sd->target, sd->lun);
1208 break;
1209 case HPSA_LV_PENDING_RPI:
1210 dev_info(&h->pdev->dev,
1211 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1212 h->scsi_host->host_no,
1213 sd->bus, sd->target, sd->lun);
1214 break;
1215 case HPSA_LV_ENCRYPTED_NO_KEY:
1216 dev_info(&h->pdev->dev,
1217 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1218 h->scsi_host->host_no,
1219 sd->bus, sd->target, sd->lun);
1220 break;
1221 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1222 dev_info(&h->pdev->dev,
1223 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1224 h->scsi_host->host_no,
1225 sd->bus, sd->target, sd->lun);
1226 break;
1227 case HPSA_LV_UNDERGOING_ENCRYPTION:
1228 dev_info(&h->pdev->dev,
1229 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1230 h->scsi_host->host_no,
1231 sd->bus, sd->target, sd->lun);
1232 break;
1233 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1234 dev_info(&h->pdev->dev,
1235 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1236 h->scsi_host->host_no,
1237 sd->bus, sd->target, sd->lun);
1238 break;
1239 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1240 dev_info(&h->pdev->dev,
1241 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1242 h->scsi_host->host_no,
1243 sd->bus, sd->target, sd->lun);
1244 break;
1245 case HPSA_LV_PENDING_ENCRYPTION:
1246 dev_info(&h->pdev->dev,
1247 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1248 h->scsi_host->host_no,
1249 sd->bus, sd->target, sd->lun);
1250 break;
1251 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1252 dev_info(&h->pdev->dev,
1253 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1254 h->scsi_host->host_no,
1255 sd->bus, sd->target, sd->lun);
1256 break;
1257 }
1258}
1259
Don Brace03383732015-01-23 16:43:30 -06001260/*
1261 * Figure the list of physical drive pointers for a logical drive with
1262 * raid offload configured.
1263 */
1264static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1265 struct hpsa_scsi_dev_t *dev[], int ndevices,
1266 struct hpsa_scsi_dev_t *logical_drive)
1267{
1268 struct raid_map_data *map = &logical_drive->raid_map;
1269 struct raid_map_disk_data *dd = &map->data[0];
1270 int i, j;
1271 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1272 le16_to_cpu(map->metadata_disks_per_row);
1273 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1274 le16_to_cpu(map->layout_map_count) *
1275 total_disks_per_row;
1276 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1277 total_disks_per_row;
1278 int qdepth;
1279
1280 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1281 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1282
1283 qdepth = 0;
1284 for (i = 0; i < nraid_map_entries; i++) {
1285 logical_drive->phys_disk[i] = NULL;
1286 if (!logical_drive->offload_config)
1287 continue;
1288 for (j = 0; j < ndevices; j++) {
1289 if (dev[j]->devtype != TYPE_DISK)
1290 continue;
1291 if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
1292 continue;
1293 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1294 continue;
1295
1296 logical_drive->phys_disk[i] = dev[j];
1297 if (i < nphys_disk)
1298 qdepth = min(h->nr_cmds, qdepth +
1299 logical_drive->phys_disk[i]->queue_depth);
1300 break;
1301 }
1302
1303 /*
1304 * This can happen if a physical drive is removed and
1305 * the logical drive is degraded. In that case, the RAID
1306 * map data will refer to a physical disk which isn't actually
1307 * present. And in that case offload_enabled should already
1308 * be 0, but we'll turn it off here just in case
1309 */
1310 if (!logical_drive->phys_disk[i]) {
1311 logical_drive->offload_enabled = 0;
1312 logical_drive->queue_depth = h->nr_cmds;
1313 }
1314 }
1315 if (nraid_map_entries)
1316 /*
1317 * This is correct for reads, too high for full stripe writes,
1318 * way too high for partial stripe writes
1319 */
1320 logical_drive->queue_depth = qdepth;
1321 else
1322 logical_drive->queue_depth = h->nr_cmds;
1323}
1324
1325static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1326 struct hpsa_scsi_dev_t *dev[], int ndevices)
1327{
1328 int i;
1329
1330 for (i = 0; i < ndevices; i++) {
1331 if (dev[i]->devtype != TYPE_DISK)
1332 continue;
1333 if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
1334 continue;
1335 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1336 }
1337}
1338
Stephen M. Cameron4967bd32010-02-04 08:41:49 -06001339static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001340 struct hpsa_scsi_dev_t *sd[], int nsds)
1341{
1342 /* sd contains scsi3 addresses and devtypes, and inquiry
1343 * data. This function takes what's in sd to be the current
1344 * reality and updates h->dev[] to reflect that reality.
1345 */
1346 int i, entry, device_change, changes = 0;
1347 struct hpsa_scsi_dev_t *csd;
1348 unsigned long flags;
1349 struct hpsa_scsi_dev_t **added, **removed;
1350 int nadded, nremoved;
1351 struct Scsi_Host *sh = NULL;
1352
Scott Teelcfe5bad2011-10-26 16:21:07 -05001353 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1354 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001355
1356 if (!added || !removed) {
1357 dev_warn(&h->pdev->dev, "out of memory in "
1358 "adjust_hpsa_scsi_table\n");
1359 goto free_and_out;
1360 }
1361
1362 spin_lock_irqsave(&h->devlock, flags);
1363
1364 /* find any devices in h->dev[] that are not in
1365 * sd[] and remove them from h->dev[], and for any
1366 * devices which have changed, remove the old device
1367 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001368 * If minor device attributes change, just update
1369 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001370 */
1371 i = 0;
1372 nremoved = 0;
1373 nadded = 0;
1374 while (i < h->ndevices) {
1375 csd = h->dev[i];
1376 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1377 if (device_change == DEVICE_NOT_FOUND) {
1378 changes++;
1379 hpsa_scsi_remove_entry(h, hostno, i,
1380 removed, &nremoved);
1381 continue; /* remove ^^^, hence i not incremented */
1382 } else if (device_change == DEVICE_CHANGED) {
1383 changes++;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001384 hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
1385 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001386 /* Set it to NULL to prevent it from being freed
1387 * at the bottom of hpsa_update_scsi_devices()
1388 */
1389 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001390 } else if (device_change == DEVICE_UPDATED) {
1391 hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001392 }
1393 i++;
1394 }
1395
1396 /* Now, make sure every device listed in sd[] is also
1397 * listed in h->dev[], adding them if they aren't found
1398 */
1399
1400 for (i = 0; i < nsds; i++) {
1401 if (!sd[i]) /* if already added above. */
1402 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001403
1404 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1405 * as the SCSI mid-layer does not handle such devices well.
1406 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1407 * at 160Hz, and prevents the system from coming up.
1408 */
1409 if (sd[i]->volume_offline) {
1410 hpsa_show_volume_status(h, sd[i]);
1411 dev_info(&h->pdev->dev, "c%db%dt%dl%d: temporarily offline\n",
1412 h->scsi_host->host_no,
1413 sd[i]->bus, sd[i]->target, sd[i]->lun);
1414 continue;
1415 }
1416
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001417 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1418 h->ndevices, &entry);
1419 if (device_change == DEVICE_NOT_FOUND) {
1420 changes++;
1421 if (hpsa_scsi_add_entry(h, hostno, sd[i],
1422 added, &nadded) != 0)
1423 break;
1424 sd[i] = NULL; /* prevent from being freed later. */
1425 } else if (device_change == DEVICE_CHANGED) {
1426 /* should never happen... */
1427 changes++;
1428 dev_warn(&h->pdev->dev,
1429 "device unexpectedly changed.\n");
1430 /* but if it does happen, we just ignore that device */
1431 }
1432 }
1433 spin_unlock_irqrestore(&h->devlock, flags);
1434
Stephen M. Cameron98465902014-02-21 16:25:00 -06001435 /* Monitor devices which are in one of several NOT READY states to be
1436 * brought online later. This must be done without holding h->devlock,
1437 * so don't touch h->dev[]
1438 */
1439 for (i = 0; i < nsds; i++) {
1440 if (!sd[i]) /* if already added above. */
1441 continue;
1442 if (sd[i]->volume_offline)
1443 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1444 }
1445
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001446 /* Don't notify scsi mid layer of any changes the first time through
1447 * (or if there are no changes) scsi_scan_host will do it later the
1448 * first time through.
1449 */
1450 if (hostno == -1 || !changes)
1451 goto free_and_out;
1452
1453 sh = h->scsi_host;
1454 /* Notify scsi mid layer of any removed devices */
1455 for (i = 0; i < nremoved; i++) {
1456 struct scsi_device *sdev =
1457 scsi_device_lookup(sh, removed[i]->bus,
1458 removed[i]->target, removed[i]->lun);
1459 if (sdev != NULL) {
1460 scsi_remove_device(sdev);
1461 scsi_device_put(sdev);
1462 } else {
1463 /* We don't expect to get here.
1464 * future cmds to this device will get selection
1465 * timeout as if the device was gone.
1466 */
1467 dev_warn(&h->pdev->dev, "didn't find c%db%dt%dl%d "
1468 " for removal.", hostno, removed[i]->bus,
1469 removed[i]->target, removed[i]->lun);
1470 }
1471 kfree(removed[i]);
1472 removed[i] = NULL;
1473 }
1474
1475 /* Notify scsi mid layer of any added devices */
1476 for (i = 0; i < nadded; i++) {
1477 if (scsi_add_device(sh, added[i]->bus,
1478 added[i]->target, added[i]->lun) == 0)
1479 continue;
1480 dev_warn(&h->pdev->dev, "scsi_add_device c%db%dt%dl%d failed, "
1481 "device not added.\n", hostno, added[i]->bus,
1482 added[i]->target, added[i]->lun);
1483 /* now we have to remove it from h->dev,
1484 * since it didn't get added to scsi mid layer
1485 */
1486 fixup_botched_add(h, added[i]);
1487 }
1488
1489free_and_out:
1490 kfree(added);
1491 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001492}
1493
1494/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001495 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001496 * Assume's h->devlock is held.
1497 */
1498static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1499 int bus, int target, int lun)
1500{
1501 int i;
1502 struct hpsa_scsi_dev_t *sd;
1503
1504 for (i = 0; i < h->ndevices; i++) {
1505 sd = h->dev[i];
1506 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1507 return sd;
1508 }
1509 return NULL;
1510}
1511
1512/* link sdev->hostdata to our per-device structure. */
1513static int hpsa_slave_alloc(struct scsi_device *sdev)
1514{
1515 struct hpsa_scsi_dev_t *sd;
1516 unsigned long flags;
1517 struct ctlr_info *h;
1518
1519 h = sdev_to_hba(sdev);
1520 spin_lock_irqsave(&h->devlock, flags);
1521 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1522 sdev_id(sdev), sdev->lun);
Don Brace03383732015-01-23 16:43:30 -06001523 if (sd != NULL) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001524 sdev->hostdata = sd;
Don Brace03383732015-01-23 16:43:30 -06001525 if (sd->queue_depth)
1526 scsi_change_queue_depth(sdev, sd->queue_depth);
1527 atomic_set(&sd->ioaccel_cmds_out, 0);
1528 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001529 spin_unlock_irqrestore(&h->devlock, flags);
1530 return 0;
1531}
1532
1533static void hpsa_slave_destroy(struct scsi_device *sdev)
1534{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001535 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001536}
1537
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001538static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1539{
1540 int i;
1541
1542 if (!h->cmd_sg_list)
1543 return;
1544 for (i = 0; i < h->nr_cmds; i++) {
1545 kfree(h->cmd_sg_list[i]);
1546 h->cmd_sg_list[i] = NULL;
1547 }
1548 kfree(h->cmd_sg_list);
1549 h->cmd_sg_list = NULL;
1550}
1551
1552static int hpsa_allocate_sg_chain_blocks(struct ctlr_info *h)
1553{
1554 int i;
1555
1556 if (h->chainsize <= 0)
1557 return 0;
1558
1559 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1560 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001561 if (!h->cmd_sg_list) {
1562 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001563 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001564 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001565 for (i = 0; i < h->nr_cmds; i++) {
1566 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1567 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001568 if (!h->cmd_sg_list[i]) {
1569 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001570 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001571 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001572 }
1573 return 0;
1574
1575clean:
1576 hpsa_free_sg_chain_blocks(h);
1577 return -ENOMEM;
1578}
1579
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001580static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001581 struct CommandList *c)
1582{
1583 struct SGDescriptor *chain_sg, *chain_block;
1584 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001585 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001586
1587 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
1588 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001589 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
1590 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06001591 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001592 chain_sg->Len = cpu_to_le32(chain_len);
1593 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001594 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001595 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1596 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001597 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001598 return -1;
1599 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001600 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001601 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001602}
1603
1604static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
1605 struct CommandList *c)
1606{
1607 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001608
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001609 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001610 return;
1611
1612 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001613 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
1614 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001615}
1616
Scott Teela09c1442014-02-18 13:57:21 -06001617
1618/* Decode the various types of errors on ioaccel2 path.
1619 * Return 1 for any error that should generate a RAID path retry.
1620 * Return 0 for errors that don't require a RAID path retry.
1621 */
1622static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06001623 struct CommandList *c,
1624 struct scsi_cmnd *cmd,
1625 struct io_accel2_cmd *c2)
1626{
1627 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06001628 int retry = 0;
Scott Teelc3497752014-02-18 13:56:34 -06001629
1630 switch (c2->error_data.serv_response) {
1631 case IOACCEL2_SERV_RESPONSE_COMPLETE:
1632 switch (c2->error_data.status) {
1633 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
1634 break;
1635 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
1636 dev_warn(&h->pdev->dev,
1637 "%s: task complete with check condition.\n",
1638 "HP SSD Smart Path");
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001639 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06001640 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001641 IOACCEL2_SENSE_DATA_PRESENT) {
1642 memset(cmd->sense_buffer, 0,
1643 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06001644 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001645 }
Scott Teelc3497752014-02-18 13:56:34 -06001646 /* copy the sense data */
1647 data_len = c2->error_data.sense_data_len;
1648 if (data_len > SCSI_SENSE_BUFFERSIZE)
1649 data_len = SCSI_SENSE_BUFFERSIZE;
1650 if (data_len > sizeof(c2->error_data.sense_data_buff))
1651 data_len =
1652 sizeof(c2->error_data.sense_data_buff);
1653 memcpy(cmd->sense_buffer,
1654 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06001655 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001656 break;
1657 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
1658 dev_warn(&h->pdev->dev,
1659 "%s: task complete with BUSY status.\n",
1660 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001661 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001662 break;
1663 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
1664 dev_warn(&h->pdev->dev,
1665 "%s: task complete with reservation conflict.\n",
1666 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001667 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001668 break;
1669 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
1670 /* Make scsi midlayer do unlimited retries */
1671 cmd->result = DID_IMM_RETRY << 16;
1672 break;
1673 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
1674 dev_warn(&h->pdev->dev,
1675 "%s: task complete with aborted status.\n",
1676 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001677 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001678 break;
1679 default:
1680 dev_warn(&h->pdev->dev,
1681 "%s: task complete with unrecognized status: 0x%02x\n",
1682 "HP SSD Smart Path", c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001683 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001684 break;
1685 }
1686 break;
1687 case IOACCEL2_SERV_RESPONSE_FAILURE:
1688 /* don't expect to get here. */
1689 dev_warn(&h->pdev->dev,
1690 "unexpected delivery or target failure, status = 0x%02x\n",
1691 c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001692 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001693 break;
1694 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
1695 break;
1696 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
1697 break;
1698 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
1699 dev_warn(&h->pdev->dev, "task management function rejected.\n");
Scott Teela09c1442014-02-18 13:57:21 -06001700 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001701 break;
1702 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
1703 dev_warn(&h->pdev->dev, "task management function invalid LUN\n");
1704 break;
1705 default:
1706 dev_warn(&h->pdev->dev,
1707 "%s: Unrecognized server response: 0x%02x\n",
Scott Teela09c1442014-02-18 13:57:21 -06001708 "HP SSD Smart Path",
1709 c2->error_data.serv_response);
1710 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001711 break;
1712 }
Scott Teela09c1442014-02-18 13:57:21 -06001713
1714 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06001715}
1716
1717static void process_ioaccel2_completion(struct ctlr_info *h,
1718 struct CommandList *c, struct scsi_cmnd *cmd,
1719 struct hpsa_scsi_dev_t *dev)
1720{
1721 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
1722
1723 /* check for good status */
1724 if (likely(c2->error_data.serv_response == 0 &&
1725 c2->error_data.status == 0)) {
1726 cmd_free(h, c);
1727 cmd->scsi_done(cmd);
1728 return;
1729 }
1730
1731 /* Any RAID offload error results in retry which will use
1732 * the normal I/O path so the controller can handle whatever's
1733 * wrong.
1734 */
1735 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
1736 c2->error_data.serv_response ==
1737 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06001738 if (c2->error_data.status ==
1739 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
1740 dev->offload_enabled = 0;
1741 goto retry_cmd;
Scott Teelc3497752014-02-18 13:56:34 -06001742 }
Don Brace080ef1c2015-01-23 16:43:25 -06001743
1744 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
1745 goto retry_cmd;
1746
Scott Teelc3497752014-02-18 13:56:34 -06001747 cmd_free(h, c);
1748 cmd->scsi_done(cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06001749 return;
1750
1751retry_cmd:
1752 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
1753 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
Scott Teelc3497752014-02-18 13:56:34 -06001754}
1755
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05001756static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001757{
1758 struct scsi_cmnd *cmd;
1759 struct ctlr_info *h;
1760 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001761 struct hpsa_scsi_dev_t *dev;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001762
1763 unsigned char sense_key;
1764 unsigned char asc; /* additional sense code */
1765 unsigned char ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05001766 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001767
1768 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06001769 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001770 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001771 dev = cmd->device->hostdata;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001772
1773 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06001774 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06001775 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001776 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001777
1778 cmd->result = (DID_OK << 16); /* host byte */
1779 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06001780
Don Brace03383732015-01-23 16:43:30 -06001781 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
1782 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
1783
Scott Teelc3497752014-02-18 13:56:34 -06001784 if (cp->cmd_type == CMD_IOACCEL2)
1785 return process_ioaccel2_completion(h, cp, cmd, dev);
1786
Stephen M. Cameron55126722010-02-25 14:03:01 -06001787 cmd->result |= ei->ScsiStatus;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001788
Robert Elliott6aa4c362014-07-03 10:18:19 -05001789 scsi_set_resid(cmd, ei->ResidualCnt);
1790 if (ei->CommandStatus == 0) {
Don Brace03383732015-01-23 16:43:30 -06001791 if (cp->cmd_type == CMD_IOACCEL1)
1792 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
Robert Elliott6aa4c362014-07-03 10:18:19 -05001793 cmd_free(h, cp);
1794 cmd->scsi_done(cmd);
1795 return;
1796 }
1797
1798 /* copy the sense data */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05001799 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
1800 sense_data_size = SCSI_SENSE_BUFFERSIZE;
1801 else
1802 sense_data_size = sizeof(ei->SenseInfo);
1803 if (ei->SenseLen < sense_data_size)
1804 sense_data_size = ei->SenseLen;
1805
1806 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001807
Matt Gatese1f7de02014-02-18 13:55:17 -06001808 /* For I/O accelerator commands, copy over some fields to the normal
1809 * CISS header used below for error handling.
1810 */
1811 if (cp->cmd_type == CMD_IOACCEL1) {
1812 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06001813 cp->Header.SGList = scsi_sg_count(cmd);
1814 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
1815 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
1816 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001817 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06001818 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
1819 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001820
1821 /* Any RAID offload error results in retry which will use
1822 * the normal I/O path so the controller can handle whatever's
1823 * wrong.
1824 */
1825 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
1826 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
1827 dev->offload_enabled = 0;
Don Brace080ef1c2015-01-23 16:43:25 -06001828 INIT_WORK(&cp->work, hpsa_command_resubmit_worker);
1829 queue_work_on(raw_smp_processor_id(),
1830 h->resubmit_wq, &cp->work);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001831 return;
1832 }
Matt Gatese1f7de02014-02-18 13:55:17 -06001833 }
1834
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001835 /* an error has occurred */
1836 switch (ei->CommandStatus) {
1837
1838 case CMD_TARGET_STATUS:
1839 if (ei->ScsiStatus) {
1840 /* Get sense key */
1841 sense_key = 0xf & ei->SenseInfo[2];
1842 /* Get additional sense code */
1843 asc = ei->SenseInfo[12];
1844 /* Get addition sense code qualifier */
1845 ascq = ei->SenseInfo[13];
1846 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001847 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06001848 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05001849 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06001850 break;
1851 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001852 break;
1853 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001854 /* Problem was not a check condition
1855 * Pass it up to the upper layers...
1856 */
1857 if (ei->ScsiStatus) {
1858 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
1859 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
1860 "Returning result: 0x%x\n",
1861 cp, ei->ScsiStatus,
1862 sense_key, asc, ascq,
1863 cmd->result);
1864 } else { /* scsi status is zero??? How??? */
1865 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
1866 "Returning no connection.\n", cp),
1867
1868 /* Ordinarily, this case should never happen,
1869 * but there is a bug in some released firmware
1870 * revisions that allows it to happen if, for
1871 * example, a 4100 backplane loses power and
1872 * the tape drive is in it. We assume that
1873 * it's a fatal error of some kind because we
1874 * can't show that it wasn't. We will make it
1875 * look like selection timeout since that is
1876 * the most common reason for this to occur,
1877 * and it's severe enough.
1878 */
1879
1880 cmd->result = DID_NO_CONNECT << 16;
1881 }
1882 break;
1883
1884 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
1885 break;
1886 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06001887 dev_warn(&h->pdev->dev,
1888 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001889 break;
1890 case CMD_INVALID: {
1891 /* print_bytes(cp, sizeof(*cp), 1, 0);
1892 print_cmd(cp); */
1893 /* We get CMD_INVALID if you address a non-existent device
1894 * instead of a selection timeout (no response). You will
1895 * see this if you yank out a drive, then try to access it.
1896 * This is kind of a shame because it means that any other
1897 * CMD_INVALID (e.g. driver bug) will get interpreted as a
1898 * missing target. */
1899 cmd->result = DID_NO_CONNECT << 16;
1900 }
1901 break;
1902 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05001903 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06001904 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
1905 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001906 break;
1907 case CMD_HARDWARE_ERR:
1908 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06001909 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
1910 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001911 break;
1912 case CMD_CONNECTION_LOST:
1913 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06001914 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
1915 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001916 break;
1917 case CMD_ABORTED:
1918 cmd->result = DID_ABORT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06001919 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
1920 cp->Request.CDB, ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001921 break;
1922 case CMD_ABORT_FAILED:
1923 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06001924 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
1925 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001926 break;
1927 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05001928 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06001929 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
1930 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001931 break;
1932 case CMD_TIMEOUT:
1933 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06001934 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
1935 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001936 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06001937 case CMD_UNABORTABLE:
1938 cmd->result = DID_ERROR << 16;
1939 dev_warn(&h->pdev->dev, "Command unabortable\n");
1940 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001941 case CMD_IOACCEL_DISABLED:
1942 /* This only handles the direct pass-through case since RAID
1943 * offload is handled above. Just attempt a retry.
1944 */
1945 cmd->result = DID_SOFT_ERROR << 16;
1946 dev_warn(&h->pdev->dev,
1947 "cp %p had HP SSD Smart Path error\n", cp);
1948 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001949 default:
1950 cmd->result = DID_ERROR << 16;
1951 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
1952 cp, ei->CommandStatus);
1953 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001954 cmd_free(h, cp);
Tomas Henzl2cc5bfa2013-08-01 15:14:00 +02001955 cmd->scsi_done(cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001956}
1957
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001958static void hpsa_pci_unmap(struct pci_dev *pdev,
1959 struct CommandList *c, int sg_used, int data_direction)
1960{
1961 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001962
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001963 for (i = 0; i < sg_used; i++)
1964 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
1965 le32_to_cpu(c->SG[i].Len),
1966 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001967}
1968
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001969static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001970 struct CommandList *cp,
1971 unsigned char *buf,
1972 size_t buflen,
1973 int data_direction)
1974{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001975 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001976
1977 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
1978 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001979 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001980 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001981 }
1982
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001983 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06001984 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001985 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06001986 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001987 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001988 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06001989 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001990 cp->SG[0].Addr = cpu_to_le64(addr64);
1991 cp->SG[0].Len = cpu_to_le32(buflen);
1992 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
1993 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
1994 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001995 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001996}
1997
1998static inline void hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
1999 struct CommandList *c)
2000{
2001 DECLARE_COMPLETION_ONSTACK(wait);
2002
2003 c->waiting = &wait;
2004 enqueue_cmd_and_start_io(h, c);
2005 wait_for_completion(&wait);
2006}
2007
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002008static u32 lockup_detected(struct ctlr_info *h)
2009{
2010 int cpu;
2011 u32 rc, *lockup_detected;
2012
2013 cpu = get_cpu();
2014 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2015 rc = *lockup_detected;
2016 put_cpu();
2017 return rc;
2018}
2019
Stephen M. Camerona0c12412011-10-26 16:22:04 -05002020static void hpsa_scsi_do_simple_cmd_core_if_no_lockup(struct ctlr_info *h,
2021 struct CommandList *c)
2022{
Stephen M. Camerona0c12412011-10-26 16:22:04 -05002023 /* If controller lockup detected, fake a hardware error. */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002024 if (unlikely(lockup_detected(h)))
Stephen M. Camerona0c12412011-10-26 16:22:04 -05002025 c->err_info->CommandStatus = CMD_HARDWARE_ERR;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002026 else
Stephen M. Camerona0c12412011-10-26 16:22:04 -05002027 hpsa_scsi_do_simple_cmd_core(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05002028}
2029
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002030#define MAX_DRIVER_CMD_RETRIES 25
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002031static void hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2032 struct CommandList *c, int data_direction)
2033{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002034 int backoff_time = 10, retry_count = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002035
2036 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002037 memset(c->err_info, 0, sizeof(*c->err_info));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002038 hpsa_scsi_do_simple_cmd_core(h, c);
2039 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002040 if (retry_count > 3) {
2041 msleep(backoff_time);
2042 if (backoff_time < 1000)
2043 backoff_time *= 2;
2044 }
Matt Bondurant852af202012-05-01 11:42:35 -05002045 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002046 check_for_busy(h, c)) &&
2047 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002048 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
2049}
2050
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002051static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2052 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002053{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002054 const u8 *cdb = c->Request.CDB;
2055 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002056
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002057 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2058 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2059 txt, lun[0], lun[1], lun[2], lun[3],
2060 lun[4], lun[5], lun[6], lun[7],
2061 cdb[0], cdb[1], cdb[2], cdb[3],
2062 cdb[4], cdb[5], cdb[6], cdb[7],
2063 cdb[8], cdb[9], cdb[10], cdb[11],
2064 cdb[12], cdb[13], cdb[14], cdb[15]);
2065}
2066
2067static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2068 struct CommandList *cp)
2069{
2070 const struct ErrorInfo *ei = cp->err_info;
2071 struct device *d = &cp->h->pdev->dev;
2072 const u8 *sd = ei->SenseInfo;
2073
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002074 switch (ei->CommandStatus) {
2075 case CMD_TARGET_STATUS:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002076 hpsa_print_cmd(h, "SCSI status", cp);
2077 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
2078 dev_warn(d, "SCSI Status = 02, Sense key = %02x, ASC = %02x, ASCQ = %02x\n",
2079 sd[2] & 0x0f, sd[12], sd[13]);
2080 else
2081 dev_warn(d, "SCSI Status = %02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002082 if (ei->ScsiStatus == 0)
2083 dev_warn(d, "SCSI status is abnormally zero. "
2084 "(probably indicates selection timeout "
2085 "reported incorrectly due to a known "
2086 "firmware bug, circa July, 2001.)\n");
2087 break;
2088 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002089 break;
2090 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002091 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002092 break;
2093 case CMD_INVALID: {
2094 /* controller unfortunately reports SCSI passthru's
2095 * to non-existent targets as invalid commands.
2096 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002097 hpsa_print_cmd(h, "invalid command", cp);
2098 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002099 }
2100 break;
2101 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002102 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002103 break;
2104 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002105 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002106 break;
2107 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002108 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002109 break;
2110 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002111 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002112 break;
2113 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002114 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002115 break;
2116 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002117 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002118 break;
2119 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002120 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002121 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002122 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002123 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002124 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002125 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002126 hpsa_print_cmd(h, "unknown status", cp);
2127 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002128 ei->CommandStatus);
2129 }
2130}
2131
2132static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002133 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002134 unsigned char bufsize)
2135{
2136 int rc = IO_OK;
2137 struct CommandList *c;
2138 struct ErrorInfo *ei;
2139
Stephen Cameron45fcb862015-01-23 16:43:04 -06002140 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002141
Stephen Cameron574f05d2015-01-23 16:43:20 -06002142 if (c == NULL) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06002143 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06002144 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002145 }
2146
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002147 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2148 page, scsi3addr, TYPE_CMD)) {
2149 rc = -1;
2150 goto out;
2151 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002152 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2153 ei = c->err_info;
2154 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002155 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002156 rc = -1;
2157 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002158out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002159 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002160 return rc;
2161}
2162
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002163static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
2164 unsigned char *scsi3addr, unsigned char page,
2165 struct bmic_controller_parameters *buf, size_t bufsize)
2166{
2167 int rc = IO_OK;
2168 struct CommandList *c;
2169 struct ErrorInfo *ei;
2170
Stephen Cameron45fcb862015-01-23 16:43:04 -06002171 c = cmd_alloc(h);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002172 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002173 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002174 return -ENOMEM;
2175 }
2176
2177 if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize,
2178 page, scsi3addr, TYPE_CMD)) {
2179 rc = -1;
2180 goto out;
2181 }
2182 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2183 ei = c->err_info;
2184 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2185 hpsa_scsi_interpret_error(h, c);
2186 rc = -1;
2187 }
2188out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002189 cmd_free(h, c);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002190 return rc;
2191 }
2192
Scott Teelbf711ac2014-02-18 13:56:39 -06002193static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
2194 u8 reset_type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002195{
2196 int rc = IO_OK;
2197 struct CommandList *c;
2198 struct ErrorInfo *ei;
2199
Stephen Cameron45fcb862015-01-23 16:43:04 -06002200 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002201
2202 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002203 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Camerone9ea04a2010-02-25 14:03:06 -06002204 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002205 }
2206
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002207 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teelbf711ac2014-02-18 13:56:39 -06002208 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2209 scsi3addr, TYPE_MSG);
2210 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002211 hpsa_scsi_do_simple_cmd_core(h, c);
2212 /* no unmap needed here because no data xfer. */
2213
2214 ei = c->err_info;
2215 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002216 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002217 rc = -1;
2218 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002219 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002220 return rc;
2221}
2222
2223static void hpsa_get_raid_level(struct ctlr_info *h,
2224 unsigned char *scsi3addr, unsigned char *raid_level)
2225{
2226 int rc;
2227 unsigned char *buf;
2228
2229 *raid_level = RAID_UNKNOWN;
2230 buf = kzalloc(64, GFP_KERNEL);
2231 if (!buf)
2232 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002233 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002234 if (rc == 0)
2235 *raid_level = buf[8];
2236 if (*raid_level > RAID_UNKNOWN)
2237 *raid_level = RAID_UNKNOWN;
2238 kfree(buf);
2239 return;
2240}
2241
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002242#define HPSA_MAP_DEBUG
2243#ifdef HPSA_MAP_DEBUG
2244static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2245 struct raid_map_data *map_buff)
2246{
2247 struct raid_map_disk_data *dd = &map_buff->data[0];
2248 int map, row, col;
2249 u16 map_cnt, row_cnt, disks_per_row;
2250
2251 if (rc != 0)
2252 return;
2253
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002254 /* Show details only if debugging has been activated. */
2255 if (h->raid_offload_debug < 2)
2256 return;
2257
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002258 dev_info(&h->pdev->dev, "structure_size = %u\n",
2259 le32_to_cpu(map_buff->structure_size));
2260 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2261 le32_to_cpu(map_buff->volume_blk_size));
2262 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2263 le64_to_cpu(map_buff->volume_blk_cnt));
2264 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2265 map_buff->phys_blk_shift);
2266 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2267 map_buff->parity_rotation_shift);
2268 dev_info(&h->pdev->dev, "strip_size = %u\n",
2269 le16_to_cpu(map_buff->strip_size));
2270 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2271 le64_to_cpu(map_buff->disk_starting_blk));
2272 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2273 le64_to_cpu(map_buff->disk_blk_cnt));
2274 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2275 le16_to_cpu(map_buff->data_disks_per_row));
2276 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2277 le16_to_cpu(map_buff->metadata_disks_per_row));
2278 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2279 le16_to_cpu(map_buff->row_cnt));
2280 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2281 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002282 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002283 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002284 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2285 le16_to_cpu(map_buff->flags) &
2286 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002287 dev_info(&h->pdev->dev, "dekindex = %u\n",
2288 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002289 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2290 for (map = 0; map < map_cnt; map++) {
2291 dev_info(&h->pdev->dev, "Map%u:\n", map);
2292 row_cnt = le16_to_cpu(map_buff->row_cnt);
2293 for (row = 0; row < row_cnt; row++) {
2294 dev_info(&h->pdev->dev, " Row%u:\n", row);
2295 disks_per_row =
2296 le16_to_cpu(map_buff->data_disks_per_row);
2297 for (col = 0; col < disks_per_row; col++, dd++)
2298 dev_info(&h->pdev->dev,
2299 " D%02u: h=0x%04x xor=%u,%u\n",
2300 col, dd->ioaccel_handle,
2301 dd->xor_mult[0], dd->xor_mult[1]);
2302 disks_per_row =
2303 le16_to_cpu(map_buff->metadata_disks_per_row);
2304 for (col = 0; col < disks_per_row; col++, dd++)
2305 dev_info(&h->pdev->dev,
2306 " M%02u: h=0x%04x xor=%u,%u\n",
2307 col, dd->ioaccel_handle,
2308 dd->xor_mult[0], dd->xor_mult[1]);
2309 }
2310 }
2311}
2312#else
2313static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2314 __attribute__((unused)) int rc,
2315 __attribute__((unused)) struct raid_map_data *map_buff)
2316{
2317}
2318#endif
2319
2320static int hpsa_get_raid_map(struct ctlr_info *h,
2321 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2322{
2323 int rc = 0;
2324 struct CommandList *c;
2325 struct ErrorInfo *ei;
2326
Stephen Cameron45fcb862015-01-23 16:43:04 -06002327 c = cmd_alloc(h);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002328 if (c == NULL) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06002329 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002330 return -ENOMEM;
2331 }
2332 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2333 sizeof(this_device->raid_map), 0,
2334 scsi3addr, TYPE_CMD)) {
2335 dev_warn(&h->pdev->dev, "Out of memory in hpsa_get_raid_map()\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06002336 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002337 return -ENOMEM;
2338 }
2339 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2340 ei = c->err_info;
2341 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002342 hpsa_scsi_interpret_error(h, c);
Stephen Cameron45fcb862015-01-23 16:43:04 -06002343 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002344 return -1;
2345 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002346 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002347
2348 /* @todo in the future, dynamically allocate RAID map memory */
2349 if (le32_to_cpu(this_device->raid_map.structure_size) >
2350 sizeof(this_device->raid_map)) {
2351 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2352 rc = -1;
2353 }
2354 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
2355 return rc;
2356}
2357
Don Brace03383732015-01-23 16:43:30 -06002358static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
2359 unsigned char scsi3addr[], u16 bmic_device_index,
2360 struct bmic_identify_physical_device *buf, size_t bufsize)
2361{
2362 int rc = IO_OK;
2363 struct CommandList *c;
2364 struct ErrorInfo *ei;
2365
2366 c = cmd_alloc(h);
2367 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
2368 0, RAID_CTLR_LUNID, TYPE_CMD);
2369 if (rc)
2370 goto out;
2371
2372 c->Request.CDB[2] = bmic_device_index & 0xff;
2373 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
2374
2375 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2376 ei = c->err_info;
2377 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2378 hpsa_scsi_interpret_error(h, c);
2379 rc = -1;
2380 }
2381out:
2382 cmd_free(h, c);
2383 return rc;
2384}
2385
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002386static int hpsa_vpd_page_supported(struct ctlr_info *h,
2387 unsigned char scsi3addr[], u8 page)
2388{
2389 int rc;
2390 int i;
2391 int pages;
2392 unsigned char *buf, bufsize;
2393
2394 buf = kzalloc(256, GFP_KERNEL);
2395 if (!buf)
2396 return 0;
2397
2398 /* Get the size of the page list first */
2399 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2400 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2401 buf, HPSA_VPD_HEADER_SZ);
2402 if (rc != 0)
2403 goto exit_unsupported;
2404 pages = buf[3];
2405 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
2406 bufsize = pages + HPSA_VPD_HEADER_SZ;
2407 else
2408 bufsize = 255;
2409
2410 /* Get the whole VPD page list */
2411 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2412 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2413 buf, bufsize);
2414 if (rc != 0)
2415 goto exit_unsupported;
2416
2417 pages = buf[3];
2418 for (i = 1; i <= pages; i++)
2419 if (buf[3 + i] == page)
2420 goto exit_supported;
2421exit_unsupported:
2422 kfree(buf);
2423 return 0;
2424exit_supported:
2425 kfree(buf);
2426 return 1;
2427}
2428
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002429static void hpsa_get_ioaccel_status(struct ctlr_info *h,
2430 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2431{
2432 int rc;
2433 unsigned char *buf;
2434 u8 ioaccel_status;
2435
2436 this_device->offload_config = 0;
2437 this_device->offload_enabled = 0;
2438
2439 buf = kzalloc(64, GFP_KERNEL);
2440 if (!buf)
2441 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002442 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
2443 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002444 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002445 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002446 if (rc != 0)
2447 goto out;
2448
2449#define IOACCEL_STATUS_BYTE 4
2450#define OFFLOAD_CONFIGURED_BIT 0x01
2451#define OFFLOAD_ENABLED_BIT 0x02
2452 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
2453 this_device->offload_config =
2454 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
2455 if (this_device->offload_config) {
2456 this_device->offload_enabled =
2457 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
2458 if (hpsa_get_raid_map(h, scsi3addr, this_device))
2459 this_device->offload_enabled = 0;
2460 }
2461out:
2462 kfree(buf);
2463 return;
2464}
2465
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002466/* Get the device id from inquiry page 0x83 */
2467static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
2468 unsigned char *device_id, int buflen)
2469{
2470 int rc;
2471 unsigned char *buf;
2472
2473 if (buflen > 16)
2474 buflen = 16;
2475 buf = kzalloc(64, GFP_KERNEL);
2476 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05002477 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002478 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002479 if (rc == 0)
2480 memcpy(device_id, &buf[8], buflen);
2481 kfree(buf);
2482 return rc != 0;
2483}
2484
2485static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06002486 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002487 int extended_response)
2488{
2489 int rc = IO_OK;
2490 struct CommandList *c;
2491 unsigned char scsi3addr[8];
2492 struct ErrorInfo *ei;
2493
Stephen Cameron45fcb862015-01-23 16:43:04 -06002494 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002495 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002496 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002497 return -1;
2498 }
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06002499 /* address the controller */
2500 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002501 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
2502 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
2503 rc = -1;
2504 goto out;
2505 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002506 if (extended_response)
2507 c->Request.CDB[1] = extended_response;
2508 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2509 ei = c->err_info;
2510 if (ei->CommandStatus != 0 &&
2511 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002512 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002513 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002514 } else {
Don Brace03383732015-01-23 16:43:30 -06002515 struct ReportLUNdata *rld = buf;
2516
2517 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002518 dev_err(&h->pdev->dev,
2519 "report luns requested format %u, got %u\n",
2520 extended_response,
Don Brace03383732015-01-23 16:43:30 -06002521 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002522 rc = -1;
2523 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002524 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002525out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002526 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002527 return rc;
2528}
2529
2530static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06002531 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002532{
Don Brace03383732015-01-23 16:43:30 -06002533 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
2534 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002535}
2536
2537static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
2538 struct ReportLUNdata *buf, int bufsize)
2539{
2540 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
2541}
2542
2543static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
2544 int bus, int target, int lun)
2545{
2546 device->bus = bus;
2547 device->target = target;
2548 device->lun = lun;
2549}
2550
Stephen M. Cameron98465902014-02-21 16:25:00 -06002551/* Use VPD inquiry to get details of volume status */
2552static int hpsa_get_volume_status(struct ctlr_info *h,
2553 unsigned char scsi3addr[])
2554{
2555 int rc;
2556 int status;
2557 int size;
2558 unsigned char *buf;
2559
2560 buf = kzalloc(64, GFP_KERNEL);
2561 if (!buf)
2562 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2563
2564 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002565 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06002566 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002567
2568 /* Get the size of the VPD return buffer */
2569 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2570 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002571 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002572 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002573 size = buf[3];
2574
2575 /* Now get the whole VPD buffer */
2576 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2577 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002578 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002579 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002580 status = buf[4]; /* status byte */
2581
2582 kfree(buf);
2583 return status;
2584exit_failed:
2585 kfree(buf);
2586 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2587}
2588
2589/* Determine offline status of a volume.
2590 * Return either:
2591 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002592 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002593 * # (integer code indicating one of several NOT READY states
2594 * describing why a volume is to be kept offline)
2595 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002596static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06002597 unsigned char scsi3addr[])
2598{
2599 struct CommandList *c;
2600 unsigned char *sense, sense_key, asc, ascq;
2601 int ldstat = 0;
2602 u16 cmd_status;
2603 u8 scsi_status;
2604#define ASC_LUN_NOT_READY 0x04
2605#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
2606#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
2607
2608 c = cmd_alloc(h);
2609 if (!c)
2610 return 0;
2611 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
2612 hpsa_scsi_do_simple_cmd_core(h, c);
2613 sense = c->err_info->SenseInfo;
2614 sense_key = sense[2];
2615 asc = sense[12];
2616 ascq = sense[13];
2617 cmd_status = c->err_info->CommandStatus;
2618 scsi_status = c->err_info->ScsiStatus;
2619 cmd_free(h, c);
2620 /* Is the volume 'not ready'? */
2621 if (cmd_status != CMD_TARGET_STATUS ||
2622 scsi_status != SAM_STAT_CHECK_CONDITION ||
2623 sense_key != NOT_READY ||
2624 asc != ASC_LUN_NOT_READY) {
2625 return 0;
2626 }
2627
2628 /* Determine the reason for not ready state */
2629 ldstat = hpsa_get_volume_status(h, scsi3addr);
2630
2631 /* Keep volume offline in certain cases: */
2632 switch (ldstat) {
2633 case HPSA_LV_UNDERGOING_ERASE:
2634 case HPSA_LV_UNDERGOING_RPI:
2635 case HPSA_LV_PENDING_RPI:
2636 case HPSA_LV_ENCRYPTED_NO_KEY:
2637 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
2638 case HPSA_LV_UNDERGOING_ENCRYPTION:
2639 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
2640 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
2641 return ldstat;
2642 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
2643 /* If VPD status page isn't available,
2644 * use ASC/ASCQ to determine state
2645 */
2646 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
2647 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
2648 return ldstat;
2649 break;
2650 default:
2651 break;
2652 }
2653 return 0;
2654}
2655
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002656static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002657 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
2658 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002659{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002660
2661#define OBDR_SIG_OFFSET 43
2662#define OBDR_TAPE_SIG "$DR-10"
2663#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
2664#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
2665
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06002666 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002667 unsigned char *obdr_sig;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002668
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06002669 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002670 if (!inq_buff)
2671 goto bail_out;
2672
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002673 /* Do an inquiry to the device to see what it is. */
2674 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
2675 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
2676 /* Inquiry failed (msg printed already) */
2677 dev_err(&h->pdev->dev,
2678 "hpsa_update_device_info: inquiry failed\n");
2679 goto bail_out;
2680 }
2681
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002682 this_device->devtype = (inq_buff[0] & 0x1f);
2683 memcpy(this_device->scsi3addr, scsi3addr, 8);
2684 memcpy(this_device->vendor, &inq_buff[8],
2685 sizeof(this_device->vendor));
2686 memcpy(this_device->model, &inq_buff[16],
2687 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002688 memset(this_device->device_id, 0,
2689 sizeof(this_device->device_id));
2690 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
2691 sizeof(this_device->device_id));
2692
2693 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002694 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002695 int volume_offline;
2696
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002697 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002698 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
2699 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002700 volume_offline = hpsa_volume_offline(h, scsi3addr);
2701 if (volume_offline < 0 || volume_offline > 0xff)
2702 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
2703 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002704 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002705 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002706 this_device->offload_config = 0;
2707 this_device->offload_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002708 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06002709 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002710 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002711
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002712 if (is_OBDR_device) {
2713 /* See if this is a One-Button-Disaster-Recovery device
2714 * by looking for "$DR-10" at offset 43 in inquiry data.
2715 */
2716 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
2717 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
2718 strncmp(obdr_sig, OBDR_TAPE_SIG,
2719 OBDR_SIG_LEN) == 0);
2720 }
2721
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002722 kfree(inq_buff);
2723 return 0;
2724
2725bail_out:
2726 kfree(inq_buff);
2727 return 1;
2728}
2729
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002730static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002731 "MSA2012",
2732 "MSA2024",
2733 "MSA2312",
2734 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05002735 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05002736 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002737 NULL,
2738};
2739
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002740static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002741{
2742 int i;
2743
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002744 for (i = 0; ext_target_model[i]; i++)
2745 if (strncmp(device->model, ext_target_model[i],
2746 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002747 return 1;
2748 return 0;
2749}
2750
2751/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002752 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002753 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
2754 * Logical drive target and lun are assigned at this time, but
2755 * physical device lun and target assignment are deferred (assigned
2756 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
2757 */
2758static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002759 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002760{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002761 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002762
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002763 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
2764 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002765 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002766 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002767 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002768 /* defer target, lun assignment for physical devices */
2769 hpsa_set_bus_target_lun(device, 2, -1, -1);
2770 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002771 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002772 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002773 if (is_ext_target(h, device)) {
2774 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002775 * and match target/lun numbers box
2776 * reports, other smart array, bus 0, target 0, match lunid
2777 */
2778 hpsa_set_bus_target_lun(device,
2779 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
2780 return;
2781 }
2782 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002783}
2784
2785/*
2786 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002787 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002788 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
2789 * it for some reason. *tmpdevice is the target we're adding,
2790 * this_device is a pointer into the current element of currentsd[]
2791 * that we're building up in update_scsi_devices(), below.
2792 * lunzerobits is a bitmap that tracks which targets already have a
2793 * lun 0 assigned.
2794 * Returns 1 if an enclosure was added, 0 if not.
2795 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002796static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002797 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002798 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002799 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002800{
2801 unsigned char scsi3addr[8];
2802
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002803 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002804 return 0; /* There is already a lun 0 on this target. */
2805
2806 if (!is_logical_dev_addr_mode(lunaddrbytes))
2807 return 0; /* It's the logical targets that may lack lun 0. */
2808
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002809 if (!is_ext_target(h, tmpdevice))
2810 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002811
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002812 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002813 return 0;
2814
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06002815 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002816 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002817 if (is_hba_lunid(scsi3addr))
2818 return 0; /* Don't add the RAID controller here. */
2819
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06002820 if (is_scsi_rev_5(h))
2821 return 0; /* p1210m doesn't need to do this. */
2822
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002823 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06002824 dev_warn(&h->pdev->dev, "Maximum number of external "
2825 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002826 "configuration.");
2827 return 0;
2828 }
2829
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002830 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002831 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002832 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002833 hpsa_set_bus_target_lun(this_device,
2834 tmpdevice->bus, tmpdevice->target, 0);
2835 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002836 return 1;
2837}
2838
2839/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06002840 * Get address of physical disk used for an ioaccel2 mode command:
2841 * 1. Extract ioaccel2 handle from the command.
2842 * 2. Find a matching ioaccel2 handle from list of physical disks.
2843 * 3. Return:
2844 * 1 and set scsi3addr to address of matching physical
2845 * 0 if no matching physical disk was found.
2846 */
2847static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
2848 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
2849{
2850 struct ReportExtendedLUNdata *physicals = NULL;
2851 int responsesize = 24; /* size of physical extended response */
Scott Teel54b6e9e2014-02-18 13:56:45 -06002852 int reportsize = sizeof(*physicals) + HPSA_MAX_PHYS_LUN * responsesize;
2853 u32 nphysicals = 0; /* number of reported physical devs */
2854 int found = 0; /* found match (1) or not (0) */
2855 u32 find; /* handle we need to match */
2856 int i;
2857 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
2858 struct hpsa_scsi_dev_t *d; /* device of request being aborted */
2859 struct io_accel2_cmd *c2a; /* ioaccel2 command to abort */
Don Brace2b08b3e2015-01-23 16:41:09 -06002860 __le32 it_nexus; /* 4 byte device handle for the ioaccel2 cmd */
2861 __le32 scsi_nexus; /* 4 byte device handle for the ioaccel2 cmd */
Scott Teel54b6e9e2014-02-18 13:56:45 -06002862
2863 if (ioaccel2_cmd_to_abort->cmd_type != CMD_IOACCEL2)
2864 return 0; /* no match */
2865
2866 /* point to the ioaccel2 device handle */
2867 c2a = &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
2868 if (c2a == NULL)
2869 return 0; /* no match */
2870
2871 scmd = (struct scsi_cmnd *) ioaccel2_cmd_to_abort->scsi_cmd;
2872 if (scmd == NULL)
2873 return 0; /* no match */
2874
2875 d = scmd->device->hostdata;
2876 if (d == NULL)
2877 return 0; /* no match */
2878
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002879 it_nexus = cpu_to_le32(d->ioaccel_handle);
Don Brace2b08b3e2015-01-23 16:41:09 -06002880 scsi_nexus = c2a->scsi_nexus;
2881 find = le32_to_cpu(c2a->scsi_nexus);
Scott Teel54b6e9e2014-02-18 13:56:45 -06002882
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002883 if (h->raid_offload_debug > 0)
2884 dev_info(&h->pdev->dev,
2885 "%s: scsi_nexus:0x%08x device id: 0x%02x%02x%02x%02x %02x%02x%02x%02x %02x%02x%02x%02x %02x%02x%02x%02x\n",
2886 __func__, scsi_nexus,
2887 d->device_id[0], d->device_id[1], d->device_id[2],
2888 d->device_id[3], d->device_id[4], d->device_id[5],
2889 d->device_id[6], d->device_id[7], d->device_id[8],
2890 d->device_id[9], d->device_id[10], d->device_id[11],
2891 d->device_id[12], d->device_id[13], d->device_id[14],
2892 d->device_id[15]);
2893
Scott Teel54b6e9e2014-02-18 13:56:45 -06002894 /* Get the list of physical devices */
2895 physicals = kzalloc(reportsize, GFP_KERNEL);
Joe Handzik3b51a7a2014-03-26 17:48:11 -05002896 if (physicals == NULL)
2897 return 0;
Don Brace03383732015-01-23 16:43:30 -06002898 if (hpsa_scsi_do_report_phys_luns(h, physicals, reportsize)) {
Scott Teel54b6e9e2014-02-18 13:56:45 -06002899 dev_err(&h->pdev->dev,
2900 "Can't lookup %s device handle: report physical LUNs failed.\n",
2901 "HP SSD Smart Path");
2902 kfree(physicals);
2903 return 0;
2904 }
2905 nphysicals = be32_to_cpu(*((__be32 *)physicals->LUNListLength)) /
2906 responsesize;
2907
Scott Teel54b6e9e2014-02-18 13:56:45 -06002908 /* find ioaccel2 handle in list of physicals: */
2909 for (i = 0; i < nphysicals; i++) {
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002910 struct ext_report_lun_entry *entry = &physicals->LUN[i];
2911
Scott Teel54b6e9e2014-02-18 13:56:45 -06002912 /* handle is in bytes 28-31 of each lun */
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002913 if (entry->ioaccel_handle != find)
Scott Teel54b6e9e2014-02-18 13:56:45 -06002914 continue; /* didn't match */
Scott Teel54b6e9e2014-02-18 13:56:45 -06002915 found = 1;
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002916 memcpy(scsi3addr, entry->lunid, 8);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002917 if (h->raid_offload_debug > 0)
2918 dev_info(&h->pdev->dev,
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002919 "%s: Searched h=0x%08x, Found h=0x%08x, scsiaddr 0x%8phN\n",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002920 __func__, find,
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002921 entry->ioaccel_handle, scsi3addr);
Scott Teel54b6e9e2014-02-18 13:56:45 -06002922 break; /* found it */
2923 }
2924
2925 kfree(physicals);
2926 if (found)
2927 return 1;
2928 else
2929 return 0;
2930
2931}
2932/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002933 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
2934 * logdev. The number of luns in physdev and logdev are returned in
2935 * *nphysicals and *nlogicals, respectively.
2936 * Returns 0 on success, -1 otherwise.
2937 */
2938static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06002939 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002940 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002941{
Don Brace03383732015-01-23 16:43:30 -06002942 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002943 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
2944 return -1;
2945 }
Don Brace03383732015-01-23 16:43:30 -06002946 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002947 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06002948 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
2949 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002950 *nphysicals = HPSA_MAX_PHYS_LUN;
2951 }
Don Brace03383732015-01-23 16:43:30 -06002952 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002953 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
2954 return -1;
2955 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06002956 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002957 /* Reject Logicals in excess of our max capability. */
2958 if (*nlogicals > HPSA_MAX_LUN) {
2959 dev_warn(&h->pdev->dev,
2960 "maximum logical LUNs (%d) exceeded. "
2961 "%d LUNs ignored.\n", HPSA_MAX_LUN,
2962 *nlogicals - HPSA_MAX_LUN);
2963 *nlogicals = HPSA_MAX_LUN;
2964 }
2965 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
2966 dev_warn(&h->pdev->dev,
2967 "maximum logical + physical LUNs (%d) exceeded. "
2968 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
2969 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
2970 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
2971 }
2972 return 0;
2973}
2974
Don Brace42a91642014-11-14 17:26:27 -06002975static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
2976 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06002977 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06002978 struct ReportLUNdata *logdev_list)
2979{
2980 /* Helper function, figure out where the LUN ID info is coming from
2981 * given index i, lists of physical and logical devices, where in
2982 * the list the raid controller is supposed to appear (first or last)
2983 */
2984
2985 int logicals_start = nphysicals + (raid_ctlr_position == 0);
2986 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
2987
2988 if (i == raid_ctlr_position)
2989 return RAID_CTLR_LUNID;
2990
2991 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002992 return &physdev_list->LUN[i -
2993 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06002994
2995 if (i < last_device)
2996 return &logdev_list->LUN[i - nphysicals -
2997 (raid_ctlr_position == 0)][0];
2998 BUG();
2999 return NULL;
3000}
3001
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003002static int hpsa_hba_mode_enabled(struct ctlr_info *h)
3003{
3004 int rc;
Joe Handzik6e8e8082014-05-15 15:44:42 -05003005 int hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003006 struct bmic_controller_parameters *ctlr_params;
3007 ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters),
3008 GFP_KERNEL);
3009
3010 if (!ctlr_params)
Joe Handzik96444fb2014-05-15 15:44:47 -05003011 return -ENOMEM;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003012 rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params,
3013 sizeof(struct bmic_controller_parameters));
Joe Handzik96444fb2014-05-15 15:44:47 -05003014 if (rc) {
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003015 kfree(ctlr_params);
Joe Handzik96444fb2014-05-15 15:44:47 -05003016 return rc;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003017 }
Joe Handzik6e8e8082014-05-15 15:44:42 -05003018
3019 hba_mode_enabled =
3020 ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0);
3021 kfree(ctlr_params);
3022 return hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003023}
3024
Don Brace03383732015-01-23 16:43:30 -06003025/* get physical drive ioaccel handle and queue depth */
3026static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3027 struct hpsa_scsi_dev_t *dev,
3028 u8 *lunaddrbytes,
3029 struct bmic_identify_physical_device *id_phys)
3030{
3031 int rc;
3032 struct ext_report_lun_entry *rle =
3033 (struct ext_report_lun_entry *) lunaddrbytes;
3034
3035 dev->ioaccel_handle = rle->ioaccel_handle;
3036 memset(id_phys, 0, sizeof(*id_phys));
3037 rc = hpsa_bmic_id_physical_device(h, lunaddrbytes,
3038 GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys,
3039 sizeof(*id_phys));
3040 if (!rc)
3041 /* Reserve space for FW operations */
3042#define DRIVE_CMDS_RESERVED_FOR_FW 2
3043#define DRIVE_QUEUE_DEPTH 7
3044 dev->queue_depth =
3045 le16_to_cpu(id_phys->current_queue_depth_limit) -
3046 DRIVE_CMDS_RESERVED_FOR_FW;
3047 else
3048 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
3049 atomic_set(&dev->ioaccel_cmds_out, 0);
3050}
3051
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003052static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
3053{
3054 /* the idea here is we could get notified
3055 * that some devices have changed, so we do a report
3056 * physical luns and report logical luns cmd, and adjust
3057 * our list of devices accordingly.
3058 *
3059 * The scsi3addr's of devices won't change so long as the
3060 * adapter is not reset. That means we can rescan and
3061 * tell which devices we already know about, vs. new
3062 * devices, vs. disappearing devices.
3063 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003064 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003065 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003066 struct bmic_identify_physical_device *id_phys = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003067 u32 nphysicals = 0;
3068 u32 nlogicals = 0;
3069 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003070 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3071 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003072 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003073 int raid_ctlr_position;
Joe Handzik2bbf5c72014-05-21 11:16:01 -05003074 int rescan_hba_mode;
Scott Teelaca4a522012-01-19 14:01:19 -06003075 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003076
Scott Teelcfe5bad2011-10-26 16:21:07 -05003077 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003078 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3079 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003080 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003081 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003082
Don Brace03383732015-01-23 16:43:30 -06003083 if (!currentsd || !physdev_list || !logdev_list ||
3084 !tmpdevice || !id_phys) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003085 dev_err(&h->pdev->dev, "out of memory\n");
3086 goto out;
3087 }
3088 memset(lunzerobits, 0, sizeof(lunzerobits));
3089
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003090 rescan_hba_mode = hpsa_hba_mode_enabled(h);
Joe Handzik96444fb2014-05-15 15:44:47 -05003091 if (rescan_hba_mode < 0)
3092 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003093
3094 if (!h->hba_mode_enabled && rescan_hba_mode)
3095 dev_warn(&h->pdev->dev, "HBA mode enabled\n");
3096 else if (h->hba_mode_enabled && !rescan_hba_mode)
3097 dev_warn(&h->pdev->dev, "HBA mode disabled\n");
3098
3099 h->hba_mode_enabled = rescan_hba_mode;
3100
Don Brace03383732015-01-23 16:43:30 -06003101 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
3102 logdev_list, &nlogicals))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003103 goto out;
3104
Scott Teelaca4a522012-01-19 14:01:19 -06003105 /* We might see up to the maximum number of logical and physical disks
3106 * plus external target devices, and a device for the local RAID
3107 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003108 */
Scott Teelaca4a522012-01-19 14:01:19 -06003109 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003110
3111 /* Allocate the per device structures */
3112 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003113 if (i >= HPSA_MAX_DEVICES) {
3114 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3115 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3116 ndevs_to_allocate - HPSA_MAX_DEVICES);
3117 break;
3118 }
3119
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003120 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3121 if (!currentsd[i]) {
3122 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3123 __FILE__, __LINE__);
3124 goto out;
3125 }
3126 ndev_allocated++;
3127 }
3128
Stephen M. Cameron86452912014-05-29 10:53:49 -05003129 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003130 raid_ctlr_position = 0;
3131 else
3132 raid_ctlr_position = nphysicals + nlogicals;
3133
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003134 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003135 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003136 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003137 u8 *lunaddrbytes, is_OBDR = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003138
3139 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003140 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3141 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003142 /* skip masked physical devices. */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003143 if (lunaddrbytes[3] & 0xC0 &&
3144 i < nphysicals + (raid_ctlr_position == 0))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003145 continue;
3146
3147 /* Get device type, vendor, model, device id */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003148 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3149 &is_OBDR))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003150 continue; /* skip it if we can't talk to it. */
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003151 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003152 this_device = currentsd[ncurrent];
3153
3154 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003155 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003156 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3157 * is nonetheless an enclosure device there. We have to
3158 * present that otherwise linux won't find anything if
3159 * there is no lun 0.
3160 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003161 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003162 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003163 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003164 ncurrent++;
3165 this_device = currentsd[ncurrent];
3166 }
3167
3168 *this_device = *tmpdevice;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003169
3170 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003171 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003172 /* We don't *really* support actual CD-ROM devices,
3173 * just "One Button Disaster Recovery" tape drive
3174 * which temporarily pretends to be a CD-ROM drive.
3175 * So we check that the device is really an OBDR tape
3176 * device by checking for "$DR-10" in bytes 43-48 of
3177 * the inquiry data.
3178 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003179 if (is_OBDR)
3180 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003181 break;
3182 case TYPE_DISK:
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003183 if (h->hba_mode_enabled) {
3184 /* never use raid mapper in HBA mode */
3185 this_device->offload_enabled = 0;
3186 ncurrent++;
3187 break;
3188 } else if (h->acciopath_status) {
3189 if (i >= nphysicals) {
3190 ncurrent++;
3191 break;
3192 }
3193 } else {
3194 if (i < nphysicals)
3195 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003196 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003197 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003198 }
Don Brace03383732015-01-23 16:43:30 -06003199 if (h->transMethod & CFGTBL_Trans_io_accel1 ||
3200 h->transMethod & CFGTBL_Trans_io_accel2) {
3201 hpsa_get_ioaccel_drive_info(h, this_device,
3202 lunaddrbytes, id_phys);
3203 atomic_set(&this_device->ioaccel_cmds_out, 0);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003204 ncurrent++;
3205 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003206 break;
3207 case TYPE_TAPE:
3208 case TYPE_MEDIUM_CHANGER:
3209 ncurrent++;
3210 break;
3211 case TYPE_RAID:
3212 /* Only present the Smartarray HBA as a RAID controller.
3213 * If it's a RAID controller other than the HBA itself
3214 * (an external RAID controller, MSA500 or similar)
3215 * don't present it.
3216 */
3217 if (!is_hba_lunid(lunaddrbytes))
3218 break;
3219 ncurrent++;
3220 break;
3221 default:
3222 break;
3223 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003224 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003225 break;
3226 }
Don Brace03383732015-01-23 16:43:30 -06003227 hpsa_update_log_drive_phys_drive_ptrs(h, currentsd, ncurrent);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003228 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3229out:
3230 kfree(tmpdevice);
3231 for (i = 0; i < ndev_allocated; i++)
3232 kfree(currentsd[i]);
3233 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003234 kfree(physdev_list);
3235 kfree(logdev_list);
Don Brace03383732015-01-23 16:43:30 -06003236 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003237}
3238
Webb Scalesec5cbf02015-01-23 16:44:45 -06003239static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3240 struct scatterlist *sg)
3241{
3242 u64 addr64 = (u64) sg_dma_address(sg);
3243 unsigned int len = sg_dma_len(sg);
3244
3245 desc->Addr = cpu_to_le64(addr64);
3246 desc->Len = cpu_to_le32(len);
3247 desc->Ext = 0;
3248}
3249
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003250/*
3251 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003252 * dma mapping and fills in the scatter gather entries of the
3253 * hpsa command, cp.
3254 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003255static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003256 struct CommandList *cp,
3257 struct scsi_cmnd *cmd)
3258{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003259 struct scatterlist *sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003260 int use_sg, i, sg_index, chained;
3261 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003262
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003263 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003264
3265 use_sg = scsi_dma_map(cmd);
3266 if (use_sg < 0)
3267 return use_sg;
3268
3269 if (!use_sg)
3270 goto sglist_finished;
3271
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003272 curr_sg = cp->SG;
3273 chained = 0;
3274 sg_index = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003275 scsi_for_each_sg(cmd, sg, use_sg, i) {
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003276 if (i == h->max_cmd_sg_entries - 1 &&
3277 use_sg > h->max_cmd_sg_entries) {
3278 chained = 1;
3279 curr_sg = h->cmd_sg_list[cp->cmdindex];
3280 sg_index = 0;
3281 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003282 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003283 curr_sg++;
3284 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003285
3286 /* Back the pointer up to the last entry and mark it as "last". */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003287 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003288
3289 if (use_sg + chained > h->maxSG)
3290 h->maxSG = use_sg + chained;
3291
3292 if (chained) {
3293 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003294 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06003295 if (hpsa_map_sg_chain_block(h, cp)) {
3296 scsi_dma_unmap(cmd);
3297 return -1;
3298 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003299 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003300 }
3301
3302sglist_finished:
3303
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003304 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003305 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003306 return 0;
3307}
3308
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003309#define IO_ACCEL_INELIGIBLE (1)
3310static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
3311{
3312 int is_write = 0;
3313 u32 block;
3314 u32 block_cnt;
3315
3316 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
3317 switch (cdb[0]) {
3318 case WRITE_6:
3319 case WRITE_12:
3320 is_write = 1;
3321 case READ_6:
3322 case READ_12:
3323 if (*cdb_len == 6) {
3324 block = (((u32) cdb[2]) << 8) | cdb[3];
3325 block_cnt = cdb[4];
3326 } else {
3327 BUG_ON(*cdb_len != 12);
3328 block = (((u32) cdb[2]) << 24) |
3329 (((u32) cdb[3]) << 16) |
3330 (((u32) cdb[4]) << 8) |
3331 cdb[5];
3332 block_cnt =
3333 (((u32) cdb[6]) << 24) |
3334 (((u32) cdb[7]) << 16) |
3335 (((u32) cdb[8]) << 8) |
3336 cdb[9];
3337 }
3338 if (block_cnt > 0xffff)
3339 return IO_ACCEL_INELIGIBLE;
3340
3341 cdb[0] = is_write ? WRITE_10 : READ_10;
3342 cdb[1] = 0;
3343 cdb[2] = (u8) (block >> 24);
3344 cdb[3] = (u8) (block >> 16);
3345 cdb[4] = (u8) (block >> 8);
3346 cdb[5] = (u8) (block);
3347 cdb[6] = 0;
3348 cdb[7] = (u8) (block_cnt >> 8);
3349 cdb[8] = (u8) (block_cnt);
3350 cdb[9] = 0;
3351 *cdb_len = 10;
3352 break;
3353 }
3354 return 0;
3355}
3356
Scott Teelc3497752014-02-18 13:56:34 -06003357static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003358 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003359 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06003360{
3361 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06003362 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
3363 unsigned int len;
3364 unsigned int total_len = 0;
3365 struct scatterlist *sg;
3366 u64 addr64;
3367 int use_sg, i;
3368 struct SGDescriptor *curr_sg;
3369 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
3370
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003371 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06003372 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3373 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003374 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003375 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003376
Matt Gatese1f7de02014-02-18 13:55:17 -06003377 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
3378
Don Brace03383732015-01-23 16:43:30 -06003379 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3380 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003381 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003382 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003383
Matt Gatese1f7de02014-02-18 13:55:17 -06003384 c->cmd_type = CMD_IOACCEL1;
3385
3386 /* Adjust the DMA address to point to the accelerated command buffer */
3387 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
3388 (c->cmdindex * sizeof(*cp));
3389 BUG_ON(c->busaddr & 0x0000007F);
3390
3391 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003392 if (use_sg < 0) {
3393 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06003394 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003395 }
Matt Gatese1f7de02014-02-18 13:55:17 -06003396
3397 if (use_sg) {
3398 curr_sg = cp->SG;
3399 scsi_for_each_sg(cmd, sg, use_sg, i) {
3400 addr64 = (u64) sg_dma_address(sg);
3401 len = sg_dma_len(sg);
3402 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003403 curr_sg->Addr = cpu_to_le64(addr64);
3404 curr_sg->Len = cpu_to_le32(len);
3405 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06003406 curr_sg++;
3407 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003408 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06003409
3410 switch (cmd->sc_data_direction) {
3411 case DMA_TO_DEVICE:
3412 control |= IOACCEL1_CONTROL_DATA_OUT;
3413 break;
3414 case DMA_FROM_DEVICE:
3415 control |= IOACCEL1_CONTROL_DATA_IN;
3416 break;
3417 case DMA_NONE:
3418 control |= IOACCEL1_CONTROL_NODATAXFER;
3419 break;
3420 default:
3421 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3422 cmd->sc_data_direction);
3423 BUG();
3424 break;
3425 }
3426 } else {
3427 control |= IOACCEL1_CONTROL_NODATAXFER;
3428 }
3429
Scott Teelc3497752014-02-18 13:56:34 -06003430 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06003431 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06003432 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
3433 cp->transfer_len = cpu_to_le32(total_len);
3434 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
3435 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
3436 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003437 memcpy(cp->CDB, cdb, cdb_len);
3438 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06003439 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003440 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06003441 return 0;
3442}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003443
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003444/*
3445 * Queue a command directly to a device behind the controller using the
3446 * I/O accelerator path.
3447 */
3448static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
3449 struct CommandList *c)
3450{
3451 struct scsi_cmnd *cmd = c->scsi_cmd;
3452 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3453
Don Brace03383732015-01-23 16:43:30 -06003454 c->phys_disk = dev;
3455
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003456 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003457 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003458}
3459
Scott Teeldd0e19f2014-02-18 13:57:31 -06003460/*
3461 * Set encryption parameters for the ioaccel2 request
3462 */
3463static void set_encrypt_ioaccel2(struct ctlr_info *h,
3464 struct CommandList *c, struct io_accel2_cmd *cp)
3465{
3466 struct scsi_cmnd *cmd = c->scsi_cmd;
3467 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3468 struct raid_map_data *map = &dev->raid_map;
3469 u64 first_block;
3470
Scott Teeldd0e19f2014-02-18 13:57:31 -06003471 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06003472 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06003473 return;
3474 /* Set the data encryption key index. */
3475 cp->dekindex = map->dekindex;
3476
3477 /* Set the encryption enable flag, encoded into direction field. */
3478 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
3479
3480 /* Set encryption tweak values based on logical block address
3481 * If block size is 512, tweak value is LBA.
3482 * For other block sizes, tweak is (LBA * block size)/ 512)
3483 */
3484 switch (cmd->cmnd[0]) {
3485 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
3486 case WRITE_6:
3487 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06003488 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003489 break;
3490 case WRITE_10:
3491 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003492 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
3493 case WRITE_12:
3494 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06003495 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003496 break;
3497 case WRITE_16:
3498 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06003499 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003500 break;
3501 default:
3502 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06003503 "ERROR: %s: size (0x%x) not supported for encryption\n",
3504 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003505 BUG();
3506 break;
3507 }
Don Brace2b08b3e2015-01-23 16:41:09 -06003508
3509 if (le32_to_cpu(map->volume_blk_size) != 512)
3510 first_block = first_block *
3511 le32_to_cpu(map->volume_blk_size)/512;
3512
3513 cp->tweak_lower = cpu_to_le32(first_block);
3514 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003515}
3516
Scott Teelc3497752014-02-18 13:56:34 -06003517static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
3518 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003519 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003520{
3521 struct scsi_cmnd *cmd = c->scsi_cmd;
3522 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
3523 struct ioaccel2_sg_element *curr_sg;
3524 int use_sg, i;
3525 struct scatterlist *sg;
3526 u64 addr64;
3527 u32 len;
3528 u32 total_len = 0;
3529
Don Brace03383732015-01-23 16:43:30 -06003530 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3531 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003532 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003533 }
Scott Teelc3497752014-02-18 13:56:34 -06003534
Don Brace03383732015-01-23 16:43:30 -06003535 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3536 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003537 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003538 }
3539
Scott Teelc3497752014-02-18 13:56:34 -06003540 c->cmd_type = CMD_IOACCEL2;
3541 /* Adjust the DMA address to point to the accelerated command buffer */
3542 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
3543 (c->cmdindex * sizeof(*cp));
3544 BUG_ON(c->busaddr & 0x0000007F);
3545
3546 memset(cp, 0, sizeof(*cp));
3547 cp->IU_type = IOACCEL2_IU_TYPE;
3548
3549 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003550 if (use_sg < 0) {
3551 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003552 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003553 }
Scott Teelc3497752014-02-18 13:56:34 -06003554
3555 if (use_sg) {
3556 BUG_ON(use_sg > IOACCEL2_MAXSGENTRIES);
3557 curr_sg = cp->sg;
3558 scsi_for_each_sg(cmd, sg, use_sg, i) {
3559 addr64 = (u64) sg_dma_address(sg);
3560 len = sg_dma_len(sg);
3561 total_len += len;
3562 curr_sg->address = cpu_to_le64(addr64);
3563 curr_sg->length = cpu_to_le32(len);
3564 curr_sg->reserved[0] = 0;
3565 curr_sg->reserved[1] = 0;
3566 curr_sg->reserved[2] = 0;
3567 curr_sg->chain_indicator = 0;
3568 curr_sg++;
3569 }
3570
3571 switch (cmd->sc_data_direction) {
3572 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003573 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3574 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06003575 break;
3576 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003577 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3578 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06003579 break;
3580 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003581 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3582 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003583 break;
3584 default:
3585 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3586 cmd->sc_data_direction);
3587 BUG();
3588 break;
3589 }
3590 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06003591 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3592 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003593 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06003594
3595 /* Set encryption parameters, if necessary */
3596 set_encrypt_ioaccel2(h, c, cp);
3597
Don Brace2b08b3e2015-01-23 16:41:09 -06003598 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06003599 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06003600 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06003601
3602 /* fill in sg elements */
3603 cp->sg_count = (u8) use_sg;
3604
3605 cp->data_len = cpu_to_le32(total_len);
3606 cp->err_ptr = cpu_to_le64(c->busaddr +
3607 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003608 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06003609
3610 enqueue_cmd_and_start_io(h, c);
3611 return 0;
3612}
3613
3614/*
3615 * Queue a command to the correct I/O accelerator path.
3616 */
3617static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
3618 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003619 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003620{
Don Brace03383732015-01-23 16:43:30 -06003621 /* Try to honor the device's queue depth */
3622 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
3623 phys_disk->queue_depth) {
3624 atomic_dec(&phys_disk->ioaccel_cmds_out);
3625 return IO_ACCEL_INELIGIBLE;
3626 }
Scott Teelc3497752014-02-18 13:56:34 -06003627 if (h->transMethod & CFGTBL_Trans_io_accel1)
3628 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003629 cdb, cdb_len, scsi3addr,
3630 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06003631 else
3632 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003633 cdb, cdb_len, scsi3addr,
3634 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06003635}
3636
Scott Teel6b80b182014-02-18 13:56:55 -06003637static void raid_map_helper(struct raid_map_data *map,
3638 int offload_to_mirror, u32 *map_index, u32 *current_group)
3639{
3640 if (offload_to_mirror == 0) {
3641 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06003642 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003643 return;
3644 }
3645 do {
3646 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06003647 *current_group = *map_index /
3648 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003649 if (offload_to_mirror == *current_group)
3650 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06003651 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06003652 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06003653 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003654 (*current_group)++;
3655 } else {
3656 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06003657 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003658 *current_group = 0;
3659 }
3660 } while (offload_to_mirror != *current_group);
3661}
3662
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003663/*
3664 * Attempt to perform offload RAID mapping for a logical volume I/O.
3665 */
3666static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
3667 struct CommandList *c)
3668{
3669 struct scsi_cmnd *cmd = c->scsi_cmd;
3670 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3671 struct raid_map_data *map = &dev->raid_map;
3672 struct raid_map_disk_data *dd = &map->data[0];
3673 int is_write = 0;
3674 u32 map_index;
3675 u64 first_block, last_block;
3676 u32 block_cnt;
3677 u32 blocks_per_row;
3678 u64 first_row, last_row;
3679 u32 first_row_offset, last_row_offset;
3680 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06003681 u64 r0_first_row, r0_last_row;
3682 u32 r5or6_blocks_per_row;
3683 u64 r5or6_first_row, r5or6_last_row;
3684 u32 r5or6_first_row_offset, r5or6_last_row_offset;
3685 u32 r5or6_first_column, r5or6_last_column;
3686 u32 total_disks_per_row;
3687 u32 stripesize;
3688 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003689 u32 map_row;
3690 u32 disk_handle;
3691 u64 disk_block;
3692 u32 disk_block_cnt;
3693 u8 cdb[16];
3694 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06003695 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003696#if BITS_PER_LONG == 32
3697 u64 tmpdiv;
3698#endif
Scott Teel6b80b182014-02-18 13:56:55 -06003699 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003700
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003701 /* check for valid opcode, get LBA and block count */
3702 switch (cmd->cmnd[0]) {
3703 case WRITE_6:
3704 is_write = 1;
3705 case READ_6:
3706 first_block =
3707 (((u64) cmd->cmnd[2]) << 8) |
3708 cmd->cmnd[3];
3709 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05003710 if (block_cnt == 0)
3711 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003712 break;
3713 case WRITE_10:
3714 is_write = 1;
3715 case READ_10:
3716 first_block =
3717 (((u64) cmd->cmnd[2]) << 24) |
3718 (((u64) cmd->cmnd[3]) << 16) |
3719 (((u64) cmd->cmnd[4]) << 8) |
3720 cmd->cmnd[5];
3721 block_cnt =
3722 (((u32) cmd->cmnd[7]) << 8) |
3723 cmd->cmnd[8];
3724 break;
3725 case WRITE_12:
3726 is_write = 1;
3727 case READ_12:
3728 first_block =
3729 (((u64) cmd->cmnd[2]) << 24) |
3730 (((u64) cmd->cmnd[3]) << 16) |
3731 (((u64) cmd->cmnd[4]) << 8) |
3732 cmd->cmnd[5];
3733 block_cnt =
3734 (((u32) cmd->cmnd[6]) << 24) |
3735 (((u32) cmd->cmnd[7]) << 16) |
3736 (((u32) cmd->cmnd[8]) << 8) |
3737 cmd->cmnd[9];
3738 break;
3739 case WRITE_16:
3740 is_write = 1;
3741 case READ_16:
3742 first_block =
3743 (((u64) cmd->cmnd[2]) << 56) |
3744 (((u64) cmd->cmnd[3]) << 48) |
3745 (((u64) cmd->cmnd[4]) << 40) |
3746 (((u64) cmd->cmnd[5]) << 32) |
3747 (((u64) cmd->cmnd[6]) << 24) |
3748 (((u64) cmd->cmnd[7]) << 16) |
3749 (((u64) cmd->cmnd[8]) << 8) |
3750 cmd->cmnd[9];
3751 block_cnt =
3752 (((u32) cmd->cmnd[10]) << 24) |
3753 (((u32) cmd->cmnd[11]) << 16) |
3754 (((u32) cmd->cmnd[12]) << 8) |
3755 cmd->cmnd[13];
3756 break;
3757 default:
3758 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
3759 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003760 last_block = first_block + block_cnt - 1;
3761
3762 /* check for write to non-RAID-0 */
3763 if (is_write && dev->raid_level != 0)
3764 return IO_ACCEL_INELIGIBLE;
3765
3766 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06003767 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
3768 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003769 return IO_ACCEL_INELIGIBLE;
3770
3771 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06003772 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
3773 le16_to_cpu(map->strip_size);
3774 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003775#if BITS_PER_LONG == 32
3776 tmpdiv = first_block;
3777 (void) do_div(tmpdiv, blocks_per_row);
3778 first_row = tmpdiv;
3779 tmpdiv = last_block;
3780 (void) do_div(tmpdiv, blocks_per_row);
3781 last_row = tmpdiv;
3782 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
3783 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
3784 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06003785 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003786 first_column = tmpdiv;
3787 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06003788 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003789 last_column = tmpdiv;
3790#else
3791 first_row = first_block / blocks_per_row;
3792 last_row = last_block / blocks_per_row;
3793 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
3794 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06003795 first_column = first_row_offset / strip_size;
3796 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003797#endif
3798
3799 /* if this isn't a single row/column then give to the controller */
3800 if ((first_row != last_row) || (first_column != last_column))
3801 return IO_ACCEL_INELIGIBLE;
3802
3803 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06003804 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
3805 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003806 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06003807 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06003808 map_index = (map_row * total_disks_per_row) + first_column;
3809
3810 switch (dev->raid_level) {
3811 case HPSA_RAID_0:
3812 break; /* nothing special to do */
3813 case HPSA_RAID_1:
3814 /* Handles load balance across RAID 1 members.
3815 * (2-drive R1 and R10 with even # of drives.)
3816 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003817 */
Don Brace2b08b3e2015-01-23 16:41:09 -06003818 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003819 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06003820 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003821 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06003822 break;
3823 case HPSA_RAID_ADM:
3824 /* Handles N-way mirrors (R1-ADM)
3825 * and R10 with # of drives divisible by 3.)
3826 */
Don Brace2b08b3e2015-01-23 16:41:09 -06003827 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06003828
3829 offload_to_mirror = dev->offload_to_mirror;
3830 raid_map_helper(map, offload_to_mirror,
3831 &map_index, &current_group);
3832 /* set mirror group to use next time */
3833 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06003834 (offload_to_mirror >=
3835 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06003836 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06003837 dev->offload_to_mirror = offload_to_mirror;
3838 /* Avoid direct use of dev->offload_to_mirror within this
3839 * function since multiple threads might simultaneously
3840 * increment it beyond the range of dev->layout_map_count -1.
3841 */
3842 break;
3843 case HPSA_RAID_5:
3844 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06003845 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06003846 break;
3847
3848 /* Verify first and last block are in same RAID group */
3849 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06003850 le16_to_cpu(map->strip_size) *
3851 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003852 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06003853 stripesize = r5or6_blocks_per_row *
3854 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06003855#if BITS_PER_LONG == 32
3856 tmpdiv = first_block;
3857 first_group = do_div(tmpdiv, stripesize);
3858 tmpdiv = first_group;
3859 (void) do_div(tmpdiv, r5or6_blocks_per_row);
3860 first_group = tmpdiv;
3861 tmpdiv = last_block;
3862 last_group = do_div(tmpdiv, stripesize);
3863 tmpdiv = last_group;
3864 (void) do_div(tmpdiv, r5or6_blocks_per_row);
3865 last_group = tmpdiv;
3866#else
3867 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
3868 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06003869#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05003870 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06003871 return IO_ACCEL_INELIGIBLE;
3872
3873 /* Verify request is in a single row of RAID 5/6 */
3874#if BITS_PER_LONG == 32
3875 tmpdiv = first_block;
3876 (void) do_div(tmpdiv, stripesize);
3877 first_row = r5or6_first_row = r0_first_row = tmpdiv;
3878 tmpdiv = last_block;
3879 (void) do_div(tmpdiv, stripesize);
3880 r5or6_last_row = r0_last_row = tmpdiv;
3881#else
3882 first_row = r5or6_first_row = r0_first_row =
3883 first_block / stripesize;
3884 r5or6_last_row = r0_last_row = last_block / stripesize;
3885#endif
3886 if (r5or6_first_row != r5or6_last_row)
3887 return IO_ACCEL_INELIGIBLE;
3888
3889
3890 /* Verify request is in a single column */
3891#if BITS_PER_LONG == 32
3892 tmpdiv = first_block;
3893 first_row_offset = do_div(tmpdiv, stripesize);
3894 tmpdiv = first_row_offset;
3895 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
3896 r5or6_first_row_offset = first_row_offset;
3897 tmpdiv = last_block;
3898 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
3899 tmpdiv = r5or6_last_row_offset;
3900 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
3901 tmpdiv = r5or6_first_row_offset;
3902 (void) do_div(tmpdiv, map->strip_size);
3903 first_column = r5or6_first_column = tmpdiv;
3904 tmpdiv = r5or6_last_row_offset;
3905 (void) do_div(tmpdiv, map->strip_size);
3906 r5or6_last_column = tmpdiv;
3907#else
3908 first_row_offset = r5or6_first_row_offset =
3909 (u32)((first_block % stripesize) %
3910 r5or6_blocks_per_row);
3911
3912 r5or6_last_row_offset =
3913 (u32)((last_block % stripesize) %
3914 r5or6_blocks_per_row);
3915
3916 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06003917 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06003918 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06003919 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06003920#endif
3921 if (r5or6_first_column != r5or6_last_column)
3922 return IO_ACCEL_INELIGIBLE;
3923
3924 /* Request is eligible */
3925 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06003926 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06003927
3928 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06003929 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06003930 (map_row * total_disks_per_row) + first_column;
3931 break;
3932 default:
3933 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003934 }
Scott Teel6b80b182014-02-18 13:56:55 -06003935
Stephen Cameron07543e02015-01-23 16:44:14 -06003936 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
3937 return IO_ACCEL_INELIGIBLE;
3938
Don Brace03383732015-01-23 16:43:30 -06003939 c->phys_disk = dev->phys_disk[map_index];
3940
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003941 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06003942 disk_block = le64_to_cpu(map->disk_starting_blk) +
3943 first_row * le16_to_cpu(map->strip_size) +
3944 (first_row_offset - first_column *
3945 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003946 disk_block_cnt = block_cnt;
3947
3948 /* handle differing logical/physical block sizes */
3949 if (map->phys_blk_shift) {
3950 disk_block <<= map->phys_blk_shift;
3951 disk_block_cnt <<= map->phys_blk_shift;
3952 }
3953 BUG_ON(disk_block_cnt > 0xffff);
3954
3955 /* build the new CDB for the physical disk I/O */
3956 if (disk_block > 0xffffffff) {
3957 cdb[0] = is_write ? WRITE_16 : READ_16;
3958 cdb[1] = 0;
3959 cdb[2] = (u8) (disk_block >> 56);
3960 cdb[3] = (u8) (disk_block >> 48);
3961 cdb[4] = (u8) (disk_block >> 40);
3962 cdb[5] = (u8) (disk_block >> 32);
3963 cdb[6] = (u8) (disk_block >> 24);
3964 cdb[7] = (u8) (disk_block >> 16);
3965 cdb[8] = (u8) (disk_block >> 8);
3966 cdb[9] = (u8) (disk_block);
3967 cdb[10] = (u8) (disk_block_cnt >> 24);
3968 cdb[11] = (u8) (disk_block_cnt >> 16);
3969 cdb[12] = (u8) (disk_block_cnt >> 8);
3970 cdb[13] = (u8) (disk_block_cnt);
3971 cdb[14] = 0;
3972 cdb[15] = 0;
3973 cdb_len = 16;
3974 } else {
3975 cdb[0] = is_write ? WRITE_10 : READ_10;
3976 cdb[1] = 0;
3977 cdb[2] = (u8) (disk_block >> 24);
3978 cdb[3] = (u8) (disk_block >> 16);
3979 cdb[4] = (u8) (disk_block >> 8);
3980 cdb[5] = (u8) (disk_block);
3981 cdb[6] = 0;
3982 cdb[7] = (u8) (disk_block_cnt >> 8);
3983 cdb[8] = (u8) (disk_block_cnt);
3984 cdb[9] = 0;
3985 cdb_len = 10;
3986 }
3987 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003988 dev->scsi3addr,
3989 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003990}
3991
Stephen Cameron574f05d2015-01-23 16:43:20 -06003992/* Submit commands down the "normal" RAID stack path */
3993static int hpsa_ciss_submit(struct ctlr_info *h,
3994 struct CommandList *c, struct scsi_cmnd *cmd,
3995 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003996{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003997 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003998 c->cmd_type = CMD_SCSI;
3999 c->scsi_cmd = cmd;
4000 c->Header.ReplyQueue = 0; /* unused in simple mode */
4001 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004002 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004003
4004 /* Fill in the request block... */
4005
4006 c->Request.Timeout = 0;
4007 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4008 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4009 c->Request.CDBLen = cmd->cmd_len;
4010 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004011 switch (cmd->sc_data_direction) {
4012 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004013 c->Request.type_attr_dir =
4014 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004015 break;
4016 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004017 c->Request.type_attr_dir =
4018 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004019 break;
4020 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004021 c->Request.type_attr_dir =
4022 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004023 break;
4024 case DMA_BIDIRECTIONAL:
4025 /* This can happen if a buggy application does a scsi passthru
4026 * and sets both inlen and outlen to non-zero. ( see
4027 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4028 */
4029
Stephen M. Camerona505b862014-11-14 17:27:04 -06004030 c->Request.type_attr_dir =
4031 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004032 /* This is technically wrong, and hpsa controllers should
4033 * reject it with CMD_INVALID, which is the most correct
4034 * response, but non-fibre backends appear to let it
4035 * slide by, and give the same results as if this field
4036 * were set correctly. Either way is acceptable for
4037 * our purposes here.
4038 */
4039
4040 break;
4041
4042 default:
4043 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4044 cmd->sc_data_direction);
4045 BUG();
4046 break;
4047 }
4048
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004049 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004050 cmd_free(h, c);
4051 return SCSI_MLQUEUE_HOST_BUSY;
4052 }
4053 enqueue_cmd_and_start_io(h, c);
4054 /* the cmd'll come back via intr handler in complete_scsi_command() */
4055 return 0;
4056}
4057
Don Brace080ef1c2015-01-23 16:43:25 -06004058static void hpsa_command_resubmit_worker(struct work_struct *work)
4059{
4060 struct scsi_cmnd *cmd;
4061 struct hpsa_scsi_dev_t *dev;
4062 struct CommandList *c =
4063 container_of(work, struct CommandList, work);
4064
4065 cmd = c->scsi_cmd;
4066 dev = cmd->device->hostdata;
4067 if (!dev) {
4068 cmd->result = DID_NO_CONNECT << 16;
4069 cmd->scsi_done(cmd);
4070 return;
4071 }
4072 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4073 /*
4074 * If we get here, it means dma mapping failed. Try
4075 * again via scsi mid layer, which will then get
4076 * SCSI_MLQUEUE_HOST_BUSY.
4077 */
4078 cmd->result = DID_IMM_RETRY << 16;
4079 cmd->scsi_done(cmd);
4080 }
4081}
4082
Stephen Cameron574f05d2015-01-23 16:43:20 -06004083/* Running in struct Scsi_Host->host_lock less mode */
4084static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4085{
4086 struct ctlr_info *h;
4087 struct hpsa_scsi_dev_t *dev;
4088 unsigned char scsi3addr[8];
4089 struct CommandList *c;
4090 int rc = 0;
4091
4092 /* Get the ptr to our adapter structure out of cmd->host. */
4093 h = sdev_to_hba(cmd->device);
4094 dev = cmd->device->hostdata;
4095 if (!dev) {
4096 cmd->result = DID_NO_CONNECT << 16;
4097 cmd->scsi_done(cmd);
4098 return 0;
4099 }
4100 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4101
4102 if (unlikely(lockup_detected(h))) {
4103 cmd->result = DID_ERROR << 16;
4104 cmd->scsi_done(cmd);
4105 return 0;
4106 }
4107 c = cmd_alloc(h);
4108 if (c == NULL) { /* trouble... */
4109 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
4110 return SCSI_MLQUEUE_HOST_BUSY;
4111 }
Stephen Cameron407863c2015-01-23 16:44:19 -06004112 if (unlikely(lockup_detected(h))) {
4113 cmd->result = DID_ERROR << 16;
4114 cmd_free(h, c);
4115 cmd->scsi_done(cmd);
4116 return 0;
4117 }
Stephen Cameron574f05d2015-01-23 16:43:20 -06004118
Stephen Cameron407863c2015-01-23 16:44:19 -06004119 /*
4120 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004121 * Retries always go down the normal I/O path.
4122 */
4123 if (likely(cmd->retries == 0 &&
4124 cmd->request->cmd_type == REQ_TYPE_FS &&
4125 h->acciopath_status)) {
4126
4127 cmd->host_scribble = (unsigned char *) c;
4128 c->cmd_type = CMD_SCSI;
4129 c->scsi_cmd = cmd;
4130
4131 if (dev->offload_enabled) {
4132 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4133 if (rc == 0)
4134 return 0; /* Sent on ioaccel path */
4135 if (rc < 0) { /* scsi_dma_map failed. */
4136 cmd_free(h, c);
4137 return SCSI_MLQUEUE_HOST_BUSY;
4138 }
4139 } else if (dev->ioaccel_handle) {
4140 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4141 if (rc == 0)
4142 return 0; /* Sent on direct map path */
4143 if (rc < 0) { /* scsi_dma_map failed. */
4144 cmd_free(h, c);
4145 return SCSI_MLQUEUE_HOST_BUSY;
4146 }
4147 }
4148 }
4149 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4150}
4151
Webb Scales8ebc9242015-01-23 16:44:50 -06004152static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004153{
4154 unsigned long flags;
4155
Webb Scales8ebc9242015-01-23 16:44:50 -06004156 spin_lock_irqsave(&h->scan_lock, flags);
4157 h->scan_finished = 1;
4158 wake_up_all(&h->scan_wait_queue);
4159 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004160}
4161
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004162static void hpsa_scan_start(struct Scsi_Host *sh)
4163{
4164 struct ctlr_info *h = shost_to_hba(sh);
4165 unsigned long flags;
4166
Webb Scales8ebc9242015-01-23 16:44:50 -06004167 /*
4168 * Don't let rescans be initiated on a controller known to be locked
4169 * up. If the controller locks up *during* a rescan, that thread is
4170 * probably hosed, but at least we can prevent new rescan threads from
4171 * piling up on a locked up controller.
4172 */
4173 if (unlikely(lockup_detected(h)))
4174 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004175
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004176 /* wait until any scan already in progress is finished. */
4177 while (1) {
4178 spin_lock_irqsave(&h->scan_lock, flags);
4179 if (h->scan_finished)
4180 break;
4181 spin_unlock_irqrestore(&h->scan_lock, flags);
4182 wait_event(h->scan_wait_queue, h->scan_finished);
4183 /* Note: We don't need to worry about a race between this
4184 * thread and driver unload because the midlayer will
4185 * have incremented the reference count, so unload won't
4186 * happen if we're in here.
4187 */
4188 }
4189 h->scan_finished = 0; /* mark scan as in progress */
4190 spin_unlock_irqrestore(&h->scan_lock, flags);
4191
Webb Scales8ebc9242015-01-23 16:44:50 -06004192 if (unlikely(lockup_detected(h)))
4193 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004194
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004195 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4196
Webb Scales8ebc9242015-01-23 16:44:50 -06004197 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004198}
4199
Don Brace7c0a0222015-01-23 16:41:30 -06004200static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
4201{
Don Brace03383732015-01-23 16:43:30 -06004202 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
4203
4204 if (!logical_drive)
4205 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06004206
4207 if (qdepth < 1)
4208 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06004209 else if (qdepth > logical_drive->queue_depth)
4210 qdepth = logical_drive->queue_depth;
4211
4212 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06004213}
4214
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004215static int hpsa_scan_finished(struct Scsi_Host *sh,
4216 unsigned long elapsed_time)
4217{
4218 struct ctlr_info *h = shost_to_hba(sh);
4219 unsigned long flags;
4220 int finished;
4221
4222 spin_lock_irqsave(&h->scan_lock, flags);
4223 finished = h->scan_finished;
4224 spin_unlock_irqrestore(&h->scan_lock, flags);
4225 return finished;
4226}
4227
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004228static void hpsa_unregister_scsi(struct ctlr_info *h)
4229{
4230 /* we are being forcibly unloaded, and may not refuse. */
4231 scsi_remove_host(h->scsi_host);
4232 scsi_host_put(h->scsi_host);
4233 h->scsi_host = NULL;
4234}
4235
4236static int hpsa_register_scsi(struct ctlr_info *h)
4237{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004238 struct Scsi_Host *sh;
4239 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004240
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004241 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
4242 if (sh == NULL)
4243 goto fail;
4244
4245 sh->io_port = 0;
4246 sh->n_io_port = 0;
4247 sh->this_id = -1;
4248 sh->max_channel = 3;
4249 sh->max_cmd_len = MAX_COMMAND_SIZE;
4250 sh->max_lun = HPSA_MAX_LUN;
4251 sh->max_id = HPSA_MAX_LUN;
Stephen Camerond54c5c22015-01-23 16:42:59 -06004252 sh->can_queue = h->nr_cmds -
4253 HPSA_CMDS_RESERVED_FOR_ABORTS -
4254 HPSA_CMDS_RESERVED_FOR_DRIVER -
4255 HPSA_MAX_CONCURRENT_PASSTHRUS;
Don Brace03383732015-01-23 16:43:30 -06004256 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004257 sh->sg_tablesize = h->maxsgentries;
4258 h->scsi_host = sh;
4259 sh->hostdata[0] = (unsigned long) h;
4260 sh->irq = h->intr[h->intr_mode];
4261 sh->unique_id = sh->irq;
4262 error = scsi_add_host(sh, &h->pdev->dev);
4263 if (error)
4264 goto fail_host_put;
4265 scsi_scan_host(sh);
4266 return 0;
4267
4268 fail_host_put:
4269 dev_err(&h->pdev->dev, "%s: scsi_add_host"
4270 " failed for controller %d\n", __func__, h->ctlr);
4271 scsi_host_put(sh);
4272 return error;
4273 fail:
4274 dev_err(&h->pdev->dev, "%s: scsi_host_alloc"
4275 " failed for controller %d\n", __func__, h->ctlr);
4276 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004277}
4278
4279static int wait_for_device_to_become_ready(struct ctlr_info *h,
4280 unsigned char lunaddr[])
4281{
Tomas Henzl89193582014-02-21 16:25:05 -06004282 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004283 int count = 0;
4284 int waittime = 1; /* seconds */
4285 struct CommandList *c;
4286
Stephen Cameron45fcb862015-01-23 16:43:04 -06004287 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004288 if (!c) {
4289 dev_warn(&h->pdev->dev, "out of memory in "
4290 "wait_for_device_to_become_ready.\n");
4291 return IO_ERROR;
4292 }
4293
4294 /* Send test unit ready until device ready, or give up. */
4295 while (count < HPSA_TUR_RETRY_LIMIT) {
4296
4297 /* Wait for a bit. do this first, because if we send
4298 * the TUR right away, the reset will just abort it.
4299 */
4300 msleep(1000 * waittime);
4301 count++;
Tomas Henzl89193582014-02-21 16:25:05 -06004302 rc = 0; /* Device ready. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004303
4304 /* Increase wait time with each try, up to a point. */
4305 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
4306 waittime = waittime * 2;
4307
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004308 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
4309 (void) fill_cmd(c, TEST_UNIT_READY, h,
4310 NULL, 0, 0, lunaddr, TYPE_CMD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004311 hpsa_scsi_do_simple_cmd_core(h, c);
4312 /* no unmap needed here because no data xfer. */
4313
4314 if (c->err_info->CommandStatus == CMD_SUCCESS)
4315 break;
4316
4317 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
4318 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
4319 (c->err_info->SenseInfo[2] == NO_SENSE ||
4320 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
4321 break;
4322
4323 dev_warn(&h->pdev->dev, "waiting %d secs "
4324 "for device to become ready.\n", waittime);
4325 rc = 1; /* device not ready. */
4326 }
4327
4328 if (rc)
4329 dev_warn(&h->pdev->dev, "giving up on device.\n");
4330 else
4331 dev_warn(&h->pdev->dev, "device is ready.\n");
4332
Stephen Cameron45fcb862015-01-23 16:43:04 -06004333 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004334 return rc;
4335}
4336
4337/* Need at least one of these error handlers to keep ../scsi/hosts.c from
4338 * complaining. Doing a host- or bus-reset can't do anything good here.
4339 */
4340static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
4341{
4342 int rc;
4343 struct ctlr_info *h;
4344 struct hpsa_scsi_dev_t *dev;
4345
4346 /* find the controller to which the command to be aborted was sent */
4347 h = sdev_to_hba(scsicmd->device);
4348 if (h == NULL) /* paranoia */
4349 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06004350
4351 if (lockup_detected(h))
4352 return FAILED;
4353
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004354 dev = scsicmd->device->hostdata;
4355 if (!dev) {
4356 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
4357 "device lookup failed.\n");
4358 return FAILED;
4359 }
Stephen M. Camerond416b0c2010-02-04 08:43:21 -06004360 dev_warn(&h->pdev->dev, "resetting device %d:%d:%d:%d\n",
4361 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004362 /* send a reset to the SCSI LUN which the command was sent to */
Scott Teelbf711ac2014-02-18 13:56:39 -06004363 rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004364 if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0)
4365 return SUCCESS;
4366
4367 dev_warn(&h->pdev->dev, "resetting device failed.\n");
4368 return FAILED;
4369}
4370
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004371static void swizzle_abort_tag(u8 *tag)
4372{
4373 u8 original_tag[8];
4374
4375 memcpy(original_tag, tag, 8);
4376 tag[0] = original_tag[3];
4377 tag[1] = original_tag[2];
4378 tag[2] = original_tag[1];
4379 tag[3] = original_tag[0];
4380 tag[4] = original_tag[7];
4381 tag[5] = original_tag[6];
4382 tag[6] = original_tag[5];
4383 tag[7] = original_tag[4];
4384}
4385
Scott Teel17eb87d2014-02-18 13:55:28 -06004386static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06004387 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06004388{
Don Brace2b08b3e2015-01-23 16:41:09 -06004389 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06004390 if (c->cmd_type == CMD_IOACCEL1) {
4391 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
4392 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06004393 tag = le64_to_cpu(cm1->tag);
4394 *tagupper = cpu_to_le32(tag >> 32);
4395 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004396 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06004397 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06004398 if (c->cmd_type == CMD_IOACCEL2) {
4399 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
4400 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06004401 /* upper tag not used in ioaccel2 mode */
4402 memset(tagupper, 0, sizeof(*tagupper));
4403 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004404 return;
4405 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004406 tag = le64_to_cpu(c->Header.tag);
4407 *tagupper = cpu_to_le32(tag >> 32);
4408 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06004409}
4410
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004411static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004412 struct CommandList *abort, int swizzle)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004413{
4414 int rc = IO_OK;
4415 struct CommandList *c;
4416 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06004417 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004418
Stephen Cameron45fcb862015-01-23 16:43:04 -06004419 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004420 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06004421 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004422 return -ENOMEM;
4423 }
4424
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004425 /* fill_cmd can't fail here, no buffer to map */
4426 (void) fill_cmd(c, HPSA_ABORT_MSG, h, abort,
4427 0, 0, scsi3addr, TYPE_MSG);
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004428 if (swizzle)
4429 swizzle_abort_tag(&c->Request.CDB[4]);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004430 hpsa_scsi_do_simple_cmd_core(h, c);
Scott Teel17eb87d2014-02-18 13:55:28 -06004431 hpsa_get_tag(h, abort, &taglower, &tagupper);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004432 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd_core completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004433 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004434 /* no unmap needed here because no data xfer. */
4435
4436 ei = c->err_info;
4437 switch (ei->CommandStatus) {
4438 case CMD_SUCCESS:
4439 break;
4440 case CMD_UNABORTABLE: /* Very common, don't make noise. */
4441 rc = -1;
4442 break;
4443 default:
4444 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004445 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06004446 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004447 rc = -1;
4448 break;
4449 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06004450 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004451 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
4452 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004453 return rc;
4454}
4455
Scott Teel54b6e9e2014-02-18 13:56:45 -06004456/* ioaccel2 path firmware cannot handle abort task requests.
4457 * Change abort requests to physical target reset, and send to the
4458 * address of the physical disk used for the ioaccel 2 command.
4459 * Return 0 on success (IO_OK)
4460 * -1 on failure
4461 */
4462
4463static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
4464 unsigned char *scsi3addr, struct CommandList *abort)
4465{
4466 int rc = IO_OK;
4467 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
4468 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
4469 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
4470 unsigned char *psa = &phys_scsi3addr[0];
4471
4472 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06004473 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004474 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
4475 if (dev == NULL) {
4476 dev_warn(&h->pdev->dev,
4477 "Cannot abort: no device pointer for command.\n");
4478 return -1; /* not abortable */
4479 }
4480
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004481 if (h->raid_offload_debug > 0)
4482 dev_info(&h->pdev->dev,
4483 "Reset as abort: Abort requested on C%d:B%d:T%d:L%d scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4484 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
4485 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
4486 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
4487
Scott Teel54b6e9e2014-02-18 13:56:45 -06004488 if (!dev->offload_enabled) {
4489 dev_warn(&h->pdev->dev,
4490 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
4491 return -1; /* not abortable */
4492 }
4493
4494 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
4495 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
4496 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
4497 return -1; /* not abortable */
4498 }
4499
4500 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004501 if (h->raid_offload_debug > 0)
4502 dev_info(&h->pdev->dev,
4503 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4504 psa[0], psa[1], psa[2], psa[3],
4505 psa[4], psa[5], psa[6], psa[7]);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004506 rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET);
4507 if (rc != 0) {
4508 dev_warn(&h->pdev->dev,
4509 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4510 psa[0], psa[1], psa[2], psa[3],
4511 psa[4], psa[5], psa[6], psa[7]);
4512 return rc; /* failed to reset */
4513 }
4514
4515 /* wait for device to recover */
4516 if (wait_for_device_to_become_ready(h, psa) != 0) {
4517 dev_warn(&h->pdev->dev,
4518 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4519 psa[0], psa[1], psa[2], psa[3],
4520 psa[4], psa[5], psa[6], psa[7]);
4521 return -1; /* failed to recover */
4522 }
4523
4524 /* device recovered */
4525 dev_info(&h->pdev->dev,
4526 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4527 psa[0], psa[1], psa[2], psa[3],
4528 psa[4], psa[5], psa[6], psa[7]);
4529
4530 return rc; /* success */
4531}
4532
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004533/* Some Smart Arrays need the abort tag swizzled, and some don't. It's hard to
4534 * tell which kind we're dealing with, so we send the abort both ways. There
4535 * shouldn't be any collisions between swizzled and unswizzled tags due to the
4536 * way we construct our tags but we check anyway in case the assumptions which
4537 * make this true someday become false.
4538 */
4539static int hpsa_send_abort_both_ways(struct ctlr_info *h,
4540 unsigned char *scsi3addr, struct CommandList *abort)
4541{
Scott Teel54b6e9e2014-02-18 13:56:45 -06004542 /* ioccelerator mode 2 commands should be aborted via the
4543 * accelerated path, since RAID path is unaware of these commands,
4544 * but underlying firmware can't handle abort TMF.
4545 * Change abort to physical device reset.
4546 */
4547 if (abort->cmd_type == CMD_IOACCEL2)
4548 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr, abort);
4549
Don Bracef2405db2015-01-23 16:43:09 -06004550 return hpsa_send_abort(h, scsi3addr, abort, 0) &&
4551 hpsa_send_abort(h, scsi3addr, abort, 1);
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004552}
4553
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004554/* Send an abort for the specified command.
4555 * If the device and controller support it,
4556 * send a task abort request.
4557 */
4558static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
4559{
4560
4561 int i, rc;
4562 struct ctlr_info *h;
4563 struct hpsa_scsi_dev_t *dev;
4564 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004565 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
4566 char msg[256]; /* For debug messaging. */
4567 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06004568 __le32 tagupper, taglower;
Webb Scales281a7fd2015-01-23 16:43:35 -06004569 int refcount;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004570
4571 /* Find the controller of the command to be aborted */
4572 h = sdev_to_hba(sc->device);
4573 if (WARN(h == NULL,
4574 "ABORT REQUEST FAILED, Controller lookup failed.\n"))
4575 return FAILED;
4576
Don Bracee3458932015-01-23 16:44:24 -06004577 if (lockup_detected(h))
4578 return FAILED;
4579
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004580 /* Check that controller supports some kind of task abort */
4581 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
4582 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
4583 return FAILED;
4584
4585 memset(msg, 0, sizeof(msg));
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02004586 ml += sprintf(msg+ml, "ABORT REQUEST on C%d:B%d:T%d:L%llu ",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004587 h->scsi_host->host_no, sc->device->channel,
4588 sc->device->id, sc->device->lun);
4589
4590 /* Find the device of the command to be aborted */
4591 dev = sc->device->hostdata;
4592 if (!dev) {
4593 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
4594 msg);
4595 return FAILED;
4596 }
4597
4598 /* Get SCSI command to be aborted */
4599 abort = (struct CommandList *) sc->host_scribble;
4600 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06004601 /* This can happen if the command already completed. */
4602 return SUCCESS;
4603 }
4604 refcount = atomic_inc_return(&abort->refcount);
4605 if (refcount == 1) { /* Command is done already. */
4606 cmd_free(h, abort);
4607 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004608 }
Scott Teel17eb87d2014-02-18 13:55:28 -06004609 hpsa_get_tag(h, abort, &taglower, &tagupper);
4610 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06004611 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004612 if (as != NULL)
4613 ml += sprintf(msg+ml, "Command:0x%x SN:0x%lx ",
4614 as->cmnd[0], as->serial_number);
4615 dev_dbg(&h->pdev->dev, "%s\n", msg);
4616 dev_warn(&h->pdev->dev, "Abort request on C%d:B%d:T%d:L%d\n",
4617 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004618 /*
4619 * Command is in flight, or possibly already completed
4620 * by the firmware (but not to the scsi mid layer) but we can't
4621 * distinguish which. Send the abort down.
4622 */
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004623 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004624 if (rc != 0) {
4625 dev_dbg(&h->pdev->dev, "%s Request FAILED.\n", msg);
4626 dev_warn(&h->pdev->dev, "FAILED abort on device C%d:B%d:T%d:L%d\n",
4627 h->scsi_host->host_no,
4628 dev->bus, dev->target, dev->lun);
Webb Scales281a7fd2015-01-23 16:43:35 -06004629 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004630 return FAILED;
4631 }
4632 dev_info(&h->pdev->dev, "%s REQUEST SUCCEEDED.\n", msg);
4633
4634 /* If the abort(s) above completed and actually aborted the
4635 * command, then the command to be aborted should already be
4636 * completed. If not, wait around a bit more to see if they
4637 * manage to complete normally.
4638 */
4639#define ABORT_COMPLETE_WAIT_SECS 30
4640 for (i = 0; i < ABORT_COMPLETE_WAIT_SECS * 10; i++) {
Webb Scales281a7fd2015-01-23 16:43:35 -06004641 refcount = atomic_read(&abort->refcount);
4642 if (refcount < 2) {
4643 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004644 return SUCCESS;
Webb Scales281a7fd2015-01-23 16:43:35 -06004645 } else {
4646 msleep(100);
4647 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004648 }
4649 dev_warn(&h->pdev->dev, "%s FAILED. Aborted command has not completed after %d seconds.\n",
4650 msg, ABORT_COMPLETE_WAIT_SECS);
Webb Scales281a7fd2015-01-23 16:43:35 -06004651 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004652 return FAILED;
4653}
4654
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004655/*
4656 * For operations that cannot sleep, a command block is allocated at init,
4657 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
4658 * which ones are free or in use. Lock must be held when calling this.
4659 * cmd_free() is the complement.
4660 */
Webb Scales281a7fd2015-01-23 16:43:35 -06004661
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004662static struct CommandList *cmd_alloc(struct ctlr_info *h)
4663{
4664 struct CommandList *c;
4665 int i;
4666 union u64bit temp64;
4667 dma_addr_t cmd_dma_handle, err_dma_handle;
Webb Scales281a7fd2015-01-23 16:43:35 -06004668 int refcount;
Robert Elliott33811022015-01-23 16:43:41 -06004669 unsigned long offset;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004670
Robert Elliott33811022015-01-23 16:43:41 -06004671 /*
4672 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06004673 * multiple threads could get in here, and one thread could
4674 * be scanning through the list of bits looking for a free
4675 * one, but the free ones are always behind him, and other
4676 * threads sneak in behind him and eat them before he can
4677 * get to them, so that while there is always a free one, a
4678 * very unlucky thread might be starved anyway, never able to
4679 * beat the other threads. In reality, this happens so
4680 * infrequently as to be indistinguishable from never.
4681 */
4682
Robert Elliott33811022015-01-23 16:43:41 -06004683 offset = h->last_allocation; /* benignly racy */
Webb Scales281a7fd2015-01-23 16:43:35 -06004684 for (;;) {
4685 i = find_next_zero_bit(h->cmd_pool_bits, h->nr_cmds, offset);
4686 if (unlikely(i == h->nr_cmds)) {
4687 offset = 0;
4688 continue;
4689 }
4690 c = h->cmd_pool + i;
4691 refcount = atomic_inc_return(&c->refcount);
4692 if (unlikely(refcount > 1)) {
4693 cmd_free(h, c); /* already in use */
4694 offset = (i + 1) % h->nr_cmds;
4695 continue;
4696 }
4697 set_bit(i & (BITS_PER_LONG - 1),
4698 h->cmd_pool_bits + (i / BITS_PER_LONG));
4699 break; /* it's ours now. */
4700 }
Robert Elliott33811022015-01-23 16:43:41 -06004701 h->last_allocation = i; /* benignly racy */
Stephen M. Cameron4c413122014-11-14 17:27:29 -06004702
Webb Scales281a7fd2015-01-23 16:43:35 -06004703 /* Zero out all of commandlist except the last field, refcount */
4704 memset(c, 0, offsetof(struct CommandList, refcount));
4705 c->Header.tag = cpu_to_le64((u64) (i << DIRECT_LOOKUP_SHIFT));
Don Bracef2405db2015-01-23 16:43:09 -06004706 cmd_dma_handle = h->cmd_pool_dhandle + i * sizeof(*c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004707 c->err_info = h->errinfo_pool + i;
4708 memset(c->err_info, 0, sizeof(*c->err_info));
4709 err_dma_handle = h->errinfo_pool_dhandle
4710 + i * sizeof(*c->err_info);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004711
4712 c->cmdindex = i;
4713
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004714 c->busaddr = (u32) cmd_dma_handle;
4715 temp64.val = (u64) err_dma_handle;
Webb Scales281a7fd2015-01-23 16:43:35 -06004716 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4717 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004718
4719 c->h = h;
4720 return c;
4721}
4722
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004723static void cmd_free(struct ctlr_info *h, struct CommandList *c)
4724{
Webb Scales281a7fd2015-01-23 16:43:35 -06004725 if (atomic_dec_and_test(&c->refcount)) {
4726 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004727
Webb Scales281a7fd2015-01-23 16:43:35 -06004728 i = c - h->cmd_pool;
4729 clear_bit(i & (BITS_PER_LONG - 1),
4730 h->cmd_pool_bits + (i / BITS_PER_LONG));
4731 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004732}
4733
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004734#ifdef CONFIG_COMPAT
4735
Don Brace42a91642014-11-14 17:26:27 -06004736static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
4737 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004738{
4739 IOCTL32_Command_struct __user *arg32 =
4740 (IOCTL32_Command_struct __user *) arg;
4741 IOCTL_Command_struct arg64;
4742 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
4743 int err;
4744 u32 cp;
4745
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06004746 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004747 err = 0;
4748 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
4749 sizeof(arg64.LUN_info));
4750 err |= copy_from_user(&arg64.Request, &arg32->Request,
4751 sizeof(arg64.Request));
4752 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
4753 sizeof(arg64.error_info));
4754 err |= get_user(arg64.buf_size, &arg32->buf_size);
4755 err |= get_user(cp, &arg32->buf);
4756 arg64.buf = compat_ptr(cp);
4757 err |= copy_to_user(p, &arg64, sizeof(arg64));
4758
4759 if (err)
4760 return -EFAULT;
4761
Don Brace42a91642014-11-14 17:26:27 -06004762 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004763 if (err)
4764 return err;
4765 err |= copy_in_user(&arg32->error_info, &p->error_info,
4766 sizeof(arg32->error_info));
4767 if (err)
4768 return -EFAULT;
4769 return err;
4770}
4771
4772static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06004773 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004774{
4775 BIG_IOCTL32_Command_struct __user *arg32 =
4776 (BIG_IOCTL32_Command_struct __user *) arg;
4777 BIG_IOCTL_Command_struct arg64;
4778 BIG_IOCTL_Command_struct __user *p =
4779 compat_alloc_user_space(sizeof(arg64));
4780 int err;
4781 u32 cp;
4782
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06004783 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004784 err = 0;
4785 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
4786 sizeof(arg64.LUN_info));
4787 err |= copy_from_user(&arg64.Request, &arg32->Request,
4788 sizeof(arg64.Request));
4789 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
4790 sizeof(arg64.error_info));
4791 err |= get_user(arg64.buf_size, &arg32->buf_size);
4792 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
4793 err |= get_user(cp, &arg32->buf);
4794 arg64.buf = compat_ptr(cp);
4795 err |= copy_to_user(p, &arg64, sizeof(arg64));
4796
4797 if (err)
4798 return -EFAULT;
4799
Don Brace42a91642014-11-14 17:26:27 -06004800 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004801 if (err)
4802 return err;
4803 err |= copy_in_user(&arg32->error_info, &p->error_info,
4804 sizeof(arg32->error_info));
4805 if (err)
4806 return -EFAULT;
4807 return err;
4808}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06004809
Don Brace42a91642014-11-14 17:26:27 -06004810static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06004811{
4812 switch (cmd) {
4813 case CCISS_GETPCIINFO:
4814 case CCISS_GETINTINFO:
4815 case CCISS_SETINTINFO:
4816 case CCISS_GETNODENAME:
4817 case CCISS_SETNODENAME:
4818 case CCISS_GETHEARTBEAT:
4819 case CCISS_GETBUSTYPES:
4820 case CCISS_GETFIRMVER:
4821 case CCISS_GETDRIVVER:
4822 case CCISS_REVALIDVOLS:
4823 case CCISS_DEREGDISK:
4824 case CCISS_REGNEWDISK:
4825 case CCISS_REGNEWD:
4826 case CCISS_RESCANDISK:
4827 case CCISS_GETLUNINFO:
4828 return hpsa_ioctl(dev, cmd, arg);
4829
4830 case CCISS_PASSTHRU32:
4831 return hpsa_ioctl32_passthru(dev, cmd, arg);
4832 case CCISS_BIG_PASSTHRU32:
4833 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
4834
4835 default:
4836 return -ENOIOCTLCMD;
4837 }
4838}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004839#endif
4840
4841static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
4842{
4843 struct hpsa_pci_info pciinfo;
4844
4845 if (!argp)
4846 return -EINVAL;
4847 pciinfo.domain = pci_domain_nr(h->pdev->bus);
4848 pciinfo.bus = h->pdev->bus->number;
4849 pciinfo.dev_fn = h->pdev->devfn;
4850 pciinfo.board_id = h->board_id;
4851 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
4852 return -EFAULT;
4853 return 0;
4854}
4855
4856static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
4857{
4858 DriverVer_type DriverVer;
4859 unsigned char vmaj, vmin, vsubmin;
4860 int rc;
4861
4862 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
4863 &vmaj, &vmin, &vsubmin);
4864 if (rc != 3) {
4865 dev_info(&h->pdev->dev, "driver version string '%s' "
4866 "unrecognized.", HPSA_DRIVER_VERSION);
4867 vmaj = 0;
4868 vmin = 0;
4869 vsubmin = 0;
4870 }
4871 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
4872 if (!argp)
4873 return -EINVAL;
4874 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
4875 return -EFAULT;
4876 return 0;
4877}
4878
4879static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
4880{
4881 IOCTL_Command_struct iocommand;
4882 struct CommandList *c;
4883 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004884 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004885 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004886
4887 if (!argp)
4888 return -EINVAL;
4889 if (!capable(CAP_SYS_RAWIO))
4890 return -EPERM;
4891 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
4892 return -EFAULT;
4893 if ((iocommand.buf_size < 1) &&
4894 (iocommand.Request.Type.Direction != XFER_NONE)) {
4895 return -EINVAL;
4896 }
4897 if (iocommand.buf_size > 0) {
4898 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
4899 if (buff == NULL)
4900 return -EFAULT;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05004901 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004902 /* Copy the data into the buffer we created */
4903 if (copy_from_user(buff, iocommand.buf,
4904 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004905 rc = -EFAULT;
4906 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004907 }
4908 } else {
4909 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004910 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004911 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06004912 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004913 if (c == NULL) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004914 rc = -ENOMEM;
4915 goto out_kfree;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004916 }
4917 /* Fill in the command type */
4918 c->cmd_type = CMD_IOCTL_PEND;
4919 /* Fill in Command Header */
4920 c->Header.ReplyQueue = 0; /* unused in simple mode */
4921 if (iocommand.buf_size > 0) { /* buffer to fill */
4922 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004923 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004924 } else { /* no buffers to fill */
4925 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004926 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004927 }
4928 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004929
4930 /* Fill in Request block */
4931 memcpy(&c->Request, &iocommand.Request,
4932 sizeof(c->Request));
4933
4934 /* Fill in the scatter gather information */
4935 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004936 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004937 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004938 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
4939 c->SG[0].Addr = cpu_to_le64(0);
4940 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06004941 rc = -ENOMEM;
4942 goto out;
4943 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004944 c->SG[0].Addr = cpu_to_le64(temp64);
4945 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
4946 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004947 }
Stephen M. Camerona0c12412011-10-26 16:22:04 -05004948 hpsa_scsi_do_simple_cmd_core_if_no_lockup(h, c);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05004949 if (iocommand.buf_size > 0)
4950 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004951 check_ioctl_unit_attention(h, c);
4952
4953 /* Copy the error information out */
4954 memcpy(&iocommand.error_info, c->err_info,
4955 sizeof(iocommand.error_info));
4956 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004957 rc = -EFAULT;
4958 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004959 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05004960 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004961 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004962 /* Copy the data out of the buffer we created */
4963 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004964 rc = -EFAULT;
4965 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004966 }
4967 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004968out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06004969 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004970out_kfree:
4971 kfree(buff);
4972 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004973}
4974
4975static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
4976{
4977 BIG_IOCTL_Command_struct *ioc;
4978 struct CommandList *c;
4979 unsigned char **buff = NULL;
4980 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004981 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004982 BYTE sg_used = 0;
4983 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004984 u32 left;
4985 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004986 BYTE __user *data_ptr;
4987
4988 if (!argp)
4989 return -EINVAL;
4990 if (!capable(CAP_SYS_RAWIO))
4991 return -EPERM;
4992 ioc = (BIG_IOCTL_Command_struct *)
4993 kmalloc(sizeof(*ioc), GFP_KERNEL);
4994 if (!ioc) {
4995 status = -ENOMEM;
4996 goto cleanup1;
4997 }
4998 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
4999 status = -EFAULT;
5000 goto cleanup1;
5001 }
5002 if ((ioc->buf_size < 1) &&
5003 (ioc->Request.Type.Direction != XFER_NONE)) {
5004 status = -EINVAL;
5005 goto cleanup1;
5006 }
5007 /* Check kmalloc limits using all SGs */
5008 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
5009 status = -EINVAL;
5010 goto cleanup1;
5011 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005012 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005013 status = -EINVAL;
5014 goto cleanup1;
5015 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005016 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005017 if (!buff) {
5018 status = -ENOMEM;
5019 goto cleanup1;
5020 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005021 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005022 if (!buff_size) {
5023 status = -ENOMEM;
5024 goto cleanup1;
5025 }
5026 left = ioc->buf_size;
5027 data_ptr = ioc->buf;
5028 while (left) {
5029 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
5030 buff_size[sg_used] = sz;
5031 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
5032 if (buff[sg_used] == NULL) {
5033 status = -ENOMEM;
5034 goto cleanup1;
5035 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005036 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005037 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05005038 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005039 goto cleanup1;
5040 }
5041 } else
5042 memset(buff[sg_used], 0, sz);
5043 left -= sz;
5044 data_ptr += sz;
5045 sg_used++;
5046 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005047 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005048 if (c == NULL) {
5049 status = -ENOMEM;
5050 goto cleanup1;
5051 }
5052 c->cmd_type = CMD_IOCTL_PEND;
5053 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005054 c->Header.SGList = (u8) sg_used;
5055 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005056 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005057 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
5058 if (ioc->buf_size > 0) {
5059 int i;
5060 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005061 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005062 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005063 if (dma_mapping_error(&h->pdev->dev,
5064 (dma_addr_t) temp64)) {
5065 c->SG[i].Addr = cpu_to_le64(0);
5066 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005067 hpsa_pci_unmap(h->pdev, c, i,
5068 PCI_DMA_BIDIRECTIONAL);
5069 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005070 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005071 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005072 c->SG[i].Addr = cpu_to_le64(temp64);
5073 c->SG[i].Len = cpu_to_le32(buff_size[i]);
5074 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005075 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005076 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005077 }
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005078 hpsa_scsi_do_simple_cmd_core_if_no_lockup(h, c);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005079 if (sg_used)
5080 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005081 check_ioctl_unit_attention(h, c);
5082 /* Copy the error information out */
5083 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
5084 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005085 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005086 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005087 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005088 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005089 int i;
5090
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005091 /* Copy the data out of the buffer we created */
5092 BYTE __user *ptr = ioc->buf;
5093 for (i = 0; i < sg_used; i++) {
5094 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005095 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005096 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005097 }
5098 ptr += buff_size[i];
5099 }
5100 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005101 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005102cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005103 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005104cleanup1:
5105 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005106 int i;
5107
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005108 for (i = 0; i < sg_used; i++)
5109 kfree(buff[i]);
5110 kfree(buff);
5111 }
5112 kfree(buff_size);
5113 kfree(ioc);
5114 return status;
5115}
5116
5117static void check_ioctl_unit_attention(struct ctlr_info *h,
5118 struct CommandList *c)
5119{
5120 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5121 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
5122 (void) check_for_unit_attention(h, c);
5123}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005124
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005125/*
5126 * ioctl
5127 */
Don Brace42a91642014-11-14 17:26:27 -06005128static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005129{
5130 struct ctlr_info *h;
5131 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005132 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005133
5134 h = sdev_to_hba(dev);
5135
5136 switch (cmd) {
5137 case CCISS_DEREGDISK:
5138 case CCISS_REGNEWDISK:
5139 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005140 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005141 return 0;
5142 case CCISS_GETPCIINFO:
5143 return hpsa_getpciinfo_ioctl(h, argp);
5144 case CCISS_GETDRIVVER:
5145 return hpsa_getdrivver_ioctl(h, argp);
5146 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005147 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005148 return -EAGAIN;
5149 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005150 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005151 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005152 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005153 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005154 return -EAGAIN;
5155 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005156 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005157 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005158 default:
5159 return -ENOTTY;
5160 }
5161}
5162
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005163static int hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
5164 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005165{
5166 struct CommandList *c;
5167
5168 c = cmd_alloc(h);
5169 if (!c)
5170 return -ENOMEM;
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005171 /* fill_cmd can't fail here, no data buffer to map */
5172 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005173 RAID_CTLR_LUNID, TYPE_MSG);
5174 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
5175 c->waiting = NULL;
5176 enqueue_cmd_and_start_io(h, c);
5177 /* Don't wait for completion, the reset won't complete. Don't free
5178 * the command either. This is the last command we will send before
5179 * re-initializing everything, so it doesn't matter and won't leak.
5180 */
5181 return 0;
5182}
5183
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005184static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005185 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005186 int cmd_type)
5187{
5188 int pci_dir = XFER_NONE;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005189 struct CommandList *a; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005190
5191 c->cmd_type = CMD_IOCTL_PEND;
5192 c->Header.ReplyQueue = 0;
5193 if (buff != NULL && size > 0) {
5194 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005195 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005196 } else {
5197 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005198 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005199 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005200 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
5201
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005202 if (cmd_type == TYPE_CMD) {
5203 switch (cmd) {
5204 case HPSA_INQUIRY:
5205 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005206 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005207 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005208 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005209 }
5210 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005211 c->Request.type_attr_dir =
5212 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005213 c->Request.Timeout = 0;
5214 c->Request.CDB[0] = HPSA_INQUIRY;
5215 c->Request.CDB[4] = size & 0xFF;
5216 break;
5217 case HPSA_REPORT_LOG:
5218 case HPSA_REPORT_PHYS:
5219 /* Talking to controller so It's a physical command
5220 mode = 00 target = 0. Nothing to write.
5221 */
5222 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005223 c->Request.type_attr_dir =
5224 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005225 c->Request.Timeout = 0;
5226 c->Request.CDB[0] = cmd;
5227 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5228 c->Request.CDB[7] = (size >> 16) & 0xFF;
5229 c->Request.CDB[8] = (size >> 8) & 0xFF;
5230 c->Request.CDB[9] = size & 0xFF;
5231 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005232 case HPSA_CACHE_FLUSH:
5233 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005234 c->Request.type_attr_dir =
5235 TYPE_ATTR_DIR(cmd_type,
5236 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005237 c->Request.Timeout = 0;
5238 c->Request.CDB[0] = BMIC_WRITE;
5239 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05005240 c->Request.CDB[7] = (size >> 8) & 0xFF;
5241 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005242 break;
5243 case TEST_UNIT_READY:
5244 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005245 c->Request.type_attr_dir =
5246 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005247 c->Request.Timeout = 0;
5248 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005249 case HPSA_GET_RAID_MAP:
5250 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005251 c->Request.type_attr_dir =
5252 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005253 c->Request.Timeout = 0;
5254 c->Request.CDB[0] = HPSA_CISS_READ;
5255 c->Request.CDB[1] = cmd;
5256 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5257 c->Request.CDB[7] = (size >> 16) & 0xFF;
5258 c->Request.CDB[8] = (size >> 8) & 0xFF;
5259 c->Request.CDB[9] = size & 0xFF;
5260 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005261 case BMIC_SENSE_CONTROLLER_PARAMETERS:
5262 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005263 c->Request.type_attr_dir =
5264 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005265 c->Request.Timeout = 0;
5266 c->Request.CDB[0] = BMIC_READ;
5267 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
5268 c->Request.CDB[7] = (size >> 16) & 0xFF;
5269 c->Request.CDB[8] = (size >> 8) & 0xFF;
5270 break;
Don Brace03383732015-01-23 16:43:30 -06005271 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
5272 c->Request.CDBLen = 10;
5273 c->Request.type_attr_dir =
5274 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
5275 c->Request.Timeout = 0;
5276 c->Request.CDB[0] = BMIC_READ;
5277 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
5278 c->Request.CDB[7] = (size >> 16) & 0xFF;
5279 c->Request.CDB[8] = (size >> 8) & 0XFF;
5280 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005281 default:
5282 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
5283 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005284 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005285 }
5286 } else if (cmd_type == TYPE_MSG) {
5287 switch (cmd) {
5288
5289 case HPSA_DEVICE_RESET_MSG:
5290 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005291 c->Request.type_attr_dir =
5292 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005293 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005294 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
5295 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05005296 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005297 /* If bytes 4-7 are zero, it means reset the */
5298 /* LunID device */
5299 c->Request.CDB[4] = 0x00;
5300 c->Request.CDB[5] = 0x00;
5301 c->Request.CDB[6] = 0x00;
5302 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005303 break;
5304 case HPSA_ABORT_MSG:
5305 a = buff; /* point to command to be aborted */
Don Brace2b08b3e2015-01-23 16:41:09 -06005306 dev_dbg(&h->pdev->dev,
5307 "Abort Tag:0x%016llx request Tag:0x%016llx",
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005308 a->Header.tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005309 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005310 c->Request.type_attr_dir =
5311 TYPE_ATTR_DIR(cmd_type,
5312 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005313 c->Request.Timeout = 0; /* Don't time out */
5314 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
5315 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
5316 c->Request.CDB[2] = 0x00; /* reserved */
5317 c->Request.CDB[3] = 0x00; /* reserved */
5318 /* Tag to abort goes in CDB[4]-CDB[11] */
Don Brace2b08b3e2015-01-23 16:41:09 -06005319 memcpy(&c->Request.CDB[4], &a->Header.tag,
5320 sizeof(a->Header.tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005321 c->Request.CDB[12] = 0x00; /* reserved */
5322 c->Request.CDB[13] = 0x00; /* reserved */
5323 c->Request.CDB[14] = 0x00; /* reserved */
5324 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005325 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005326 default:
5327 dev_warn(&h->pdev->dev, "unknown message type %d\n",
5328 cmd);
5329 BUG();
5330 }
5331 } else {
5332 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
5333 BUG();
5334 }
5335
Stephen M. Camerona505b862014-11-14 17:27:04 -06005336 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005337 case XFER_READ:
5338 pci_dir = PCI_DMA_FROMDEVICE;
5339 break;
5340 case XFER_WRITE:
5341 pci_dir = PCI_DMA_TODEVICE;
5342 break;
5343 case XFER_NONE:
5344 pci_dir = PCI_DMA_NONE;
5345 break;
5346 default:
5347 pci_dir = PCI_DMA_BIDIRECTIONAL;
5348 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005349 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
5350 return -1;
5351 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005352}
5353
5354/*
5355 * Map (physical) PCI mem into (virtual) kernel space
5356 */
5357static void __iomem *remap_pci_mem(ulong base, ulong size)
5358{
5359 ulong page_base = ((ulong) base) & PAGE_MASK;
5360 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05005361 void __iomem *page_remapped = ioremap_nocache(page_base,
5362 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005363
5364 return page_remapped ? (page_remapped + page_offs) : NULL;
5365}
5366
Matt Gates254f7962012-05-01 11:43:06 -05005367static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005368{
Matt Gates254f7962012-05-01 11:43:06 -05005369 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005370}
5371
Stephen M. Cameron900c5442010-02-04 08:42:35 -06005372static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005373{
5374 return h->access.intr_pending(h);
5375}
5376
5377static inline long interrupt_not_for_us(struct ctlr_info *h)
5378{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005379 return (h->access.intr_pending(h) == 0) ||
5380 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005381}
5382
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005383static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
5384 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005385{
5386 if (unlikely(tag_index >= h->nr_cmds)) {
5387 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
5388 return 1;
5389 }
5390 return 0;
5391}
5392
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05005393static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005394{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05005395 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06005396 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
5397 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05005398 complete_scsi_command(c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005399 else if (c->cmd_type == CMD_IOCTL_PEND)
5400 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06005401}
5402
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005403
5404static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06005405{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005406#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
5407#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06005408 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005409 return tag & ~HPSA_SIMPLE_ERROR_BITS;
5410 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06005411}
5412
Don Brace303932f2010-02-04 08:42:40 -06005413/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005414static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06005415 u32 raw_tag)
5416{
5417 u32 tag_index;
5418 struct CommandList *c;
5419
Don Bracef2405db2015-01-23 16:43:09 -06005420 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005421 if (!bad_tag(h, tag_index, raw_tag)) {
5422 c = h->cmd_pool + tag_index;
5423 finish_cmd(c);
5424 }
Don Brace303932f2010-02-04 08:42:40 -06005425}
5426
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005427/* Some controllers, like p400, will give us one interrupt
5428 * after a soft reset, even if we turned interrupts off.
5429 * Only need to check for this in the hpsa_xxx_discard_completions
5430 * functions.
5431 */
5432static int ignore_bogus_interrupt(struct ctlr_info *h)
5433{
5434 if (likely(!reset_devices))
5435 return 0;
5436
5437 if (likely(h->interrupts_enabled))
5438 return 0;
5439
5440 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
5441 "(known firmware bug.) Ignoring.\n");
5442
5443 return 1;
5444}
5445
Matt Gates254f7962012-05-01 11:43:06 -05005446/*
5447 * Convert &h->q[x] (passed to interrupt handlers) back to h.
5448 * Relies on (h-q[x] == x) being true for x such that
5449 * 0 <= x < MAX_REPLY_QUEUES.
5450 */
5451static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005452{
Matt Gates254f7962012-05-01 11:43:06 -05005453 return container_of((queue - *queue), struct ctlr_info, q[0]);
5454}
5455
5456static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
5457{
5458 struct ctlr_info *h = queue_to_hba(queue);
5459 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005460 u32 raw_tag;
5461
5462 if (ignore_bogus_interrupt(h))
5463 return IRQ_NONE;
5464
5465 if (interrupt_not_for_us(h))
5466 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005467 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005468 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005469 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005470 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005471 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005472 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005473 return IRQ_HANDLED;
5474}
5475
Matt Gates254f7962012-05-01 11:43:06 -05005476static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005477{
Matt Gates254f7962012-05-01 11:43:06 -05005478 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005479 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005480 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005481
5482 if (ignore_bogus_interrupt(h))
5483 return IRQ_NONE;
5484
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005485 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005486 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005487 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005488 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005489 return IRQ_HANDLED;
5490}
5491
Matt Gates254f7962012-05-01 11:43:06 -05005492static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005493{
Matt Gates254f7962012-05-01 11:43:06 -05005494 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06005495 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005496 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005497
5498 if (interrupt_not_for_us(h))
5499 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005500 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005501 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005502 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005503 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06005504 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005505 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005506 }
5507 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005508 return IRQ_HANDLED;
5509}
5510
Matt Gates254f7962012-05-01 11:43:06 -05005511static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005512{
Matt Gates254f7962012-05-01 11:43:06 -05005513 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005514 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005515 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005516
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005517 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005518 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06005519 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06005520 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005521 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005522 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005523 return IRQ_HANDLED;
5524}
5525
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005526/* Send a message CDB to the firmware. Careful, this only works
5527 * in simple mode, not performant mode due to the tag lookup.
5528 * We only ever use this immediately after a controller reset.
5529 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005530static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
5531 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005532{
5533 struct Command {
5534 struct CommandListHeader CommandHeader;
5535 struct RequestBlock Request;
5536 struct ErrDescriptor ErrorDescriptor;
5537 };
5538 struct Command *cmd;
5539 static const size_t cmd_sz = sizeof(*cmd) +
5540 sizeof(cmd->ErrorDescriptor);
5541 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06005542 __le32 paddr32;
5543 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005544 void __iomem *vaddr;
5545 int i, err;
5546
5547 vaddr = pci_ioremap_bar(pdev, 0);
5548 if (vaddr == NULL)
5549 return -ENOMEM;
5550
5551 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
5552 * CCISS commands, so they must be allocated from the lower 4GiB of
5553 * memory.
5554 */
5555 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
5556 if (err) {
5557 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06005558 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005559 }
5560
5561 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
5562 if (cmd == NULL) {
5563 iounmap(vaddr);
5564 return -ENOMEM;
5565 }
5566
5567 /* This must fit, because of the 32-bit consistent DMA mask. Also,
5568 * although there's no guarantee, we assume that the address is at
5569 * least 4-byte aligned (most likely, it's page-aligned).
5570 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005571 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005572
5573 cmd->CommandHeader.ReplyQueue = 0;
5574 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005575 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06005576 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005577 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
5578
5579 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005580 cmd->Request.type_attr_dir =
5581 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005582 cmd->Request.Timeout = 0; /* Don't time out */
5583 cmd->Request.CDB[0] = opcode;
5584 cmd->Request.CDB[1] = type;
5585 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005586 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06005587 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005588 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005589
Don Brace2b08b3e2015-01-23 16:41:09 -06005590 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005591
5592 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
5593 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06005594 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005595 break;
5596 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
5597 }
5598
5599 iounmap(vaddr);
5600
5601 /* we leak the DMA buffer here ... no choice since the controller could
5602 * still complete the command.
5603 */
5604 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
5605 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
5606 opcode, type);
5607 return -ETIMEDOUT;
5608 }
5609
5610 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
5611
5612 if (tag & HPSA_ERROR_BIT) {
5613 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
5614 opcode, type);
5615 return -EIO;
5616 }
5617
5618 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
5619 opcode, type);
5620 return 0;
5621}
5622
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005623#define hpsa_noop(p) hpsa_message(p, 3, 0)
5624
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005625static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06005626 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005627{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005628
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005629 if (use_doorbell) {
5630 /* For everything after the P600, the PCI power state method
5631 * of resetting the controller doesn't work, so we have this
5632 * other way using the doorbell register.
5633 */
5634 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005635 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05005636
Justin Lindley00701a92014-05-29 10:52:47 -05005637 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05005638 * doorbell reset and before any attempt to talk to the board
5639 * at all to ensure that this actually works and doesn't fall
5640 * over in some weird corner cases.
5641 */
Justin Lindley00701a92014-05-29 10:52:47 -05005642 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005643 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005644
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005645 /* Quoting from the Open CISS Specification: "The Power
5646 * Management Control/Status Register (CSR) controls the power
5647 * state of the device. The normal operating state is D0,
5648 * CSR=00h. The software off state is D3, CSR=03h. To reset
5649 * the controller, place the interface device in D3 then to D0,
5650 * this causes a secondary PCI reset which will reset the
5651 * controller." */
5652
Don Brace2662cab2015-01-23 16:41:25 -06005653 int rc = 0;
5654
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005655 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06005656
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005657 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06005658 rc = pci_set_power_state(pdev, PCI_D3hot);
5659 if (rc)
5660 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005661
5662 msleep(500);
5663
5664 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06005665 rc = pci_set_power_state(pdev, PCI_D0);
5666 if (rc)
5667 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02005668
5669 /*
5670 * The P600 requires a small delay when changing states.
5671 * Otherwise we may think the board did not reset and we bail.
5672 * This for kdump only and is particular to the P600.
5673 */
5674 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005675 }
5676 return 0;
5677}
5678
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005679static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005680{
5681 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06005682 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005683}
5684
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005685static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005686{
5687 char *driver_version;
5688 int i, size = sizeof(cfgtable->driver_version);
5689
5690 driver_version = kmalloc(size, GFP_KERNEL);
5691 if (!driver_version)
5692 return -ENOMEM;
5693
5694 init_driver_version(driver_version, size);
5695 for (i = 0; i < size; i++)
5696 writeb(driver_version[i], &cfgtable->driver_version[i]);
5697 kfree(driver_version);
5698 return 0;
5699}
5700
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005701static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
5702 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005703{
5704 int i;
5705
5706 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
5707 driver_ver[i] = readb(&cfgtable->driver_version[i]);
5708}
5709
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005710static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005711{
5712
5713 char *driver_ver, *old_driver_ver;
5714 int rc, size = sizeof(cfgtable->driver_version);
5715
5716 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
5717 if (!old_driver_ver)
5718 return -ENOMEM;
5719 driver_ver = old_driver_ver + size;
5720
5721 /* After a reset, the 32 bytes of "driver version" in the cfgtable
5722 * should have been changed, otherwise we know the reset failed.
5723 */
5724 init_driver_version(old_driver_ver, size);
5725 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
5726 rc = !memcmp(driver_ver, old_driver_ver, size);
5727 kfree(old_driver_ver);
5728 return rc;
5729}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005730/* This does a hard reset of the controller using PCI power management
5731 * states or the using the doorbell register.
5732 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005733static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005734{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005735 u64 cfg_offset;
5736 u32 cfg_base_addr;
5737 u64 cfg_base_addr_index;
5738 void __iomem *vaddr;
5739 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005740 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005741 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005742 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005743 u32 use_doorbell;
Stephen M. Cameron18867652010-06-16 13:51:45 -05005744 u32 board_id;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005745 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005746
5747 /* For controllers as old as the P600, this is very nearly
5748 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005749 *
5750 * pci_save_state(pci_dev);
5751 * pci_set_power_state(pci_dev, PCI_D3hot);
5752 * pci_set_power_state(pci_dev, PCI_D0);
5753 * pci_restore_state(pci_dev);
5754 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005755 * For controllers newer than the P600, the pci power state
5756 * method of resetting doesn't work so we have another way
5757 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005758 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05005759
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06005760 rc = hpsa_lookup_board_id(pdev, &board_id);
Robert Elliott60f923b2015-01-23 16:42:06 -06005761 if (rc < 0) {
5762 dev_warn(&pdev->dev, "Board ID not found\n");
5763 return rc;
5764 }
5765 if (!ctlr_is_resettable(board_id)) {
5766 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06005767 return -ENODEV;
5768 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05005769
5770 /* if controller is soft- but not hard resettable... */
5771 if (!ctlr_is_hard_resettable(board_id))
5772 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05005773
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005774 /* Save the PCI command register */
5775 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005776 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005777
5778 /* find the first memory BAR, so we can find the cfg table */
5779 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
5780 if (rc)
5781 return rc;
5782 vaddr = remap_pci_mem(paddr, 0x250);
5783 if (!vaddr)
5784 return -ENOMEM;
5785
5786 /* find cfgtable in order to check if reset via doorbell is supported */
5787 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
5788 &cfg_base_addr_index, &cfg_offset);
5789 if (rc)
5790 goto unmap_vaddr;
5791 cfgtable = remap_pci_mem(pci_resource_start(pdev,
5792 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
5793 if (!cfgtable) {
5794 rc = -ENOMEM;
5795 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005796 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005797 rc = write_driver_ver_to_cfgtable(cfgtable);
5798 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06005799 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005800
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005801 /* If reset via doorbell register is supported, use that.
5802 * There are two such methods. Favor the newest method.
5803 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005804 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005805 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
5806 if (use_doorbell) {
5807 use_doorbell = DOORBELL_CTLR_RESET2;
5808 } else {
5809 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
5810 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06005811 dev_warn(&pdev->dev,
5812 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005813 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005814 goto unmap_cfgtable;
5815 }
5816 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005817
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005818 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
5819 if (rc)
5820 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005821
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005822 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005823 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005824
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005825 /* Some devices (notably the HP Smart Array 5i Controller)
5826 need a little pause here */
5827 msleep(HPSA_POST_RESET_PAUSE_MSECS);
5828
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005829 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
5830 if (rc) {
5831 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06005832 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005833 goto unmap_cfgtable;
5834 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005835
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005836 rc = controller_reset_failed(vaddr);
5837 if (rc < 0)
5838 goto unmap_cfgtable;
5839 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005840 dev_warn(&pdev->dev, "Unable to successfully reset "
5841 "controller. Will try soft reset.\n");
5842 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005843 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005844 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005845 }
5846
5847unmap_cfgtable:
5848 iounmap(cfgtable);
5849
5850unmap_vaddr:
5851 iounmap(vaddr);
5852 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005853}
5854
5855/*
5856 * We cannot read the structure directly, for portability we must use
5857 * the io functions.
5858 * This is for debug only.
5859 */
Don Brace42a91642014-11-14 17:26:27 -06005860static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005861{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05005862#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005863 int i;
5864 char temp_name[17];
5865
5866 dev_info(dev, "Controller Configuration information\n");
5867 dev_info(dev, "------------------------------------\n");
5868 for (i = 0; i < 4; i++)
5869 temp_name[i] = readb(&(tb->Signature[i]));
5870 temp_name[4] = '\0';
5871 dev_info(dev, " Signature = %s\n", temp_name);
5872 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
5873 dev_info(dev, " Transport methods supported = 0x%x\n",
5874 readl(&(tb->TransportSupport)));
5875 dev_info(dev, " Transport methods active = 0x%x\n",
5876 readl(&(tb->TransportActive)));
5877 dev_info(dev, " Requested transport Method = 0x%x\n",
5878 readl(&(tb->HostWrite.TransportRequest)));
5879 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
5880 readl(&(tb->HostWrite.CoalIntDelay)));
5881 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
5882 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06005883 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005884 readl(&(tb->CmdsOutMax)));
5885 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
5886 for (i = 0; i < 16; i++)
5887 temp_name[i] = readb(&(tb->ServerName[i]));
5888 temp_name[16] = '\0';
5889 dev_info(dev, " Server Name = %s\n", temp_name);
5890 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
5891 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005892#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05005893}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005894
5895static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
5896{
5897 int i, offset, mem_type, bar_type;
5898
5899 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
5900 return 0;
5901 offset = 0;
5902 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
5903 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
5904 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
5905 offset += 4;
5906 else {
5907 mem_type = pci_resource_flags(pdev, i) &
5908 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
5909 switch (mem_type) {
5910 case PCI_BASE_ADDRESS_MEM_TYPE_32:
5911 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
5912 offset += 4; /* 32 bit */
5913 break;
5914 case PCI_BASE_ADDRESS_MEM_TYPE_64:
5915 offset += 8;
5916 break;
5917 default: /* reserved in PCI 2.2 */
5918 dev_warn(&pdev->dev,
5919 "base address is invalid\n");
5920 return -1;
5921 break;
5922 }
5923 }
5924 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
5925 return i + 1;
5926 }
5927 return -1;
5928}
5929
5930/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06005931 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005932 */
5933
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005934static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005935{
5936#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05005937 int err, i;
5938 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
5939
5940 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
5941 hpsa_msix_entries[i].vector = 0;
5942 hpsa_msix_entries[i].entry = i;
5943 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005944
5945 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05005946 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
5947 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005948 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005949 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06005950 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01005951 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05005952 if (h->msix_vector > num_online_cpus())
5953 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02005954 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
5955 1, h->msix_vector);
5956 if (err < 0) {
5957 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
5958 h->msix_vector = 0;
5959 goto single_msi_mode;
5960 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005961 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005962 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01005963 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02005964 h->msix_vector = err;
5965 for (i = 0; i < h->msix_vector; i++)
5966 h->intr[i] = hpsa_msix_entries[i].vector;
5967 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005968 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02005969single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005970 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06005971 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005972 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005973 h->msi_vector = 1;
5974 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005975 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005976 }
5977default_int_mode:
5978#endif /* CONFIG_PCI_MSI */
5979 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005980 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005981}
5982
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005983static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05005984{
5985 int i;
5986 u32 subsystem_vendor_id, subsystem_device_id;
5987
5988 subsystem_vendor_id = pdev->subsystem_vendor;
5989 subsystem_device_id = pdev->subsystem_device;
5990 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
5991 subsystem_vendor_id;
5992
5993 for (i = 0; i < ARRAY_SIZE(products); i++)
5994 if (*board_id == products[i].board_id)
5995 return i;
5996
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05005997 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
5998 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
5999 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006000 dev_warn(&pdev->dev, "unrecognized board ID: "
6001 "0x%08x, ignoring.\n", *board_id);
6002 return -ENODEV;
6003 }
6004 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
6005}
6006
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006007static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
6008 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006009{
6010 int i;
6011
6012 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006013 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006014 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006015 *memory_bar = pci_resource_start(pdev, i);
6016 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006017 *memory_bar);
6018 return 0;
6019 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006020 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006021 return -ENODEV;
6022}
6023
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006024static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
6025 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006026{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006027 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006028 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006029 if (wait_for_ready)
6030 iterations = HPSA_BOARD_READY_ITERATIONS;
6031 else
6032 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006033
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006034 for (i = 0; i < iterations; i++) {
6035 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
6036 if (wait_for_ready) {
6037 if (scratchpad == HPSA_FIRMWARE_READY)
6038 return 0;
6039 } else {
6040 if (scratchpad != HPSA_FIRMWARE_READY)
6041 return 0;
6042 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006043 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
6044 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006045 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006046 return -ENODEV;
6047}
6048
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006049static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
6050 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
6051 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006052{
6053 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
6054 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
6055 *cfg_base_addr &= (u32) 0x0000ffff;
6056 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
6057 if (*cfg_base_addr_index == -1) {
6058 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
6059 return -ENODEV;
6060 }
6061 return 0;
6062}
6063
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006064static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006065{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006066 u64 cfg_offset;
6067 u32 cfg_base_addr;
6068 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06006069 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006070 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006071
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006072 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
6073 &cfg_base_addr_index, &cfg_offset);
6074 if (rc)
6075 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006076 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006077 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006078 if (!h->cfgtable) {
6079 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006080 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006081 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006082 rc = write_driver_ver_to_cfgtable(h->cfgtable);
6083 if (rc)
6084 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006085 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006086 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006087 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
6088 cfg_base_addr_index)+cfg_offset+trans_offset,
6089 sizeof(*h->transtable));
6090 if (!h->transtable)
6091 return -ENOMEM;
6092 return 0;
6093}
6094
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006095static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006096{
6097 h->max_commands = readl(&(h->cfgtable->MaxPerformantModeCommands));
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06006098
6099 /* Limit commands in memory limited kdump scenario. */
6100 if (reset_devices && h->max_commands > 32)
6101 h->max_commands = 32;
6102
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006103 if (h->max_commands < 16) {
6104 dev_warn(&h->pdev->dev, "Controller reports "
6105 "max supported commands of %d, an obvious lie. "
6106 "Using 16. Ensure that firmware is up to date.\n",
6107 h->max_commands);
6108 h->max_commands = 16;
6109 }
6110}
6111
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006112/* If the controller reports that the total max sg entries is greater than 512,
6113 * then we know that chained SG blocks work. (Original smart arrays did not
6114 * support chained SG blocks and would return zero for max sg entries.)
6115 */
6116static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
6117{
6118 return h->maxsgentries > 512;
6119}
6120
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006121/* Interrogate the hardware for some limits:
6122 * max commands, max SG elements without chaining, and with chaining,
6123 * SG chain block size, etc.
6124 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006125static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006126{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006127 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06006128 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006129 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006130 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006131 if (hpsa_supports_chained_sg_blocks(h)) {
6132 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006133 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06006134 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006135 h->maxsgentries--; /* save one for chain pointer */
6136 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006137 /*
6138 * Original smart arrays supported at most 31 s/g entries
6139 * embedded inline in the command (trying to use more
6140 * would lock up the controller)
6141 */
6142 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06006143 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006144 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006145 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006146
6147 /* Find out what task management functions are supported and cache */
6148 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06006149 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
6150 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
6151 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6152 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006153}
6154
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006155static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
6156{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09006157 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006158 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006159 return false;
6160 }
6161 return true;
6162}
6163
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006164static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006165{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006166 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006167
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006168 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02006169 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
6170#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006171 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006172#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06006173 driver_support |= ENABLE_UNIT_ATTN;
6174 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006175}
6176
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006177/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
6178 * in a prefetch beyond physical memory.
6179 */
6180static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
6181{
6182 u32 dma_prefetch;
6183
6184 if (h->board_id != 0x3225103C)
6185 return;
6186 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
6187 dma_prefetch |= 0x8000;
6188 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
6189}
6190
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006191static void hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
6192{
6193 int i;
6194 u32 doorbell_value;
6195 unsigned long flags;
6196 /* wait until the clear_event_notify bit 6 is cleared by controller. */
6197 for (i = 0; i < MAX_CONFIG_WAIT; i++) {
6198 spin_lock_irqsave(&h->lock, flags);
6199 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6200 spin_unlock_irqrestore(&h->lock, flags);
6201 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
6202 break;
6203 /* delay and try again */
6204 msleep(20);
6205 }
6206}
6207
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006208static void hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006209{
6210 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006211 u32 doorbell_value;
6212 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006213
6214 /* under certain very rare conditions, this can take awhile.
6215 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
6216 * as we enter this code.)
6217 */
6218 for (i = 0; i < MAX_CONFIG_WAIT; i++) {
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006219 spin_lock_irqsave(&h->lock, flags);
6220 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6221 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06006222 if (!(doorbell_value & CFGTBL_ChangeReq))
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006223 break;
6224 /* delay and try again */
Stephen M. Cameron60d3f5b2011-01-06 14:48:34 -06006225 usleep_range(10000, 20000);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006226 }
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006227}
6228
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006229static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006230{
6231 u32 trans_support;
6232
6233 trans_support = readl(&(h->cfgtable->TransportSupport));
6234 if (!(trans_support & SIMPLE_MODE))
6235 return -ENOTSUPP;
6236
6237 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006238
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006239 /* Update the field, and then ring the doorbell */
6240 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06006241 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006242 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
6243 hpsa_wait_for_mode_change_ack(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006244 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006245 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
6246 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006247 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006248 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006249error:
Stephen Cameron050f7142015-01-23 16:42:22 -06006250 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006251 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006252}
6253
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006254static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006255{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006256 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006257
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006258 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
6259 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06006260 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006261 h->product_name = products[prod_index].product_name;
6262 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006263
Matthew Garrette5a44df2011-11-11 11:14:23 -05006264 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
6265 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
6266
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006267 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006268 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006269 dev_warn(&h->pdev->dev, "unable to enable PCI device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006270 return err;
6271 }
6272
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006273 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006274 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006275 dev_err(&h->pdev->dev,
6276 "cannot obtain PCI resources, aborting\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006277 return err;
6278 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006279
6280 pci_set_master(h->pdev);
6281
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006282 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006283 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006284 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006285 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006286 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006287 if (!h->vaddr) {
6288 err = -ENOMEM;
6289 goto err_out_free_res;
6290 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006291 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006292 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006293 goto err_out_free_res;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006294 err = hpsa_find_cfgtables(h);
6295 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006296 goto err_out_free_res;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006297 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006298
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006299 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006300 err = -ENODEV;
6301 goto err_out_free_res;
6302 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006303 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006304 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006305 err = hpsa_enter_simple_mode(h);
6306 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006307 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006308 return 0;
6309
6310err_out_free_res:
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006311 if (h->transtable)
6312 iounmap(h->transtable);
6313 if (h->cfgtable)
6314 iounmap(h->cfgtable);
6315 if (h->vaddr)
6316 iounmap(h->vaddr);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05006317 pci_disable_device(h->pdev);
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006318 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006319 return err;
6320}
6321
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006322static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006323{
6324 int rc;
6325
6326#define HBA_INQUIRY_BYTE_COUNT 64
6327 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
6328 if (!h->hba_inquiry_data)
6329 return;
6330 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
6331 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
6332 if (rc != 0) {
6333 kfree(h->hba_inquiry_data);
6334 h->hba_inquiry_data = NULL;
6335 }
6336}
6337
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006338static int hpsa_init_reset_devices(struct pci_dev *pdev)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006339{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006340 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06006341 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006342
6343 if (!reset_devices)
6344 return 0;
6345
Tomas Henzl132aa222014-08-14 16:12:39 +02006346 /* kdump kernel is loading, we don't know in which state is
6347 * the pci interface. The dev->enable_cnt is equal zero
6348 * so we call enable+disable, wait a while and switch it on.
6349 */
6350 rc = pci_enable_device(pdev);
6351 if (rc) {
6352 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
6353 return -ENODEV;
6354 }
6355 pci_disable_device(pdev);
6356 msleep(260); /* a randomly chosen number */
6357 rc = pci_enable_device(pdev);
6358 if (rc) {
6359 dev_warn(&pdev->dev, "failed to enable device.\n");
6360 return -ENODEV;
6361 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006362
Tomas Henzl859c75a2014-09-12 14:44:15 +02006363 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06006364
Tomas Henzl3b747292015-01-23 16:41:20 -06006365 vaddr = pci_ioremap_bar(pdev, 0);
6366 if (vaddr == NULL) {
6367 rc = -ENOMEM;
6368 goto out_disable;
6369 }
6370 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
6371 iounmap(vaddr);
6372
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006373 /* Reset the controller with a PCI power-cycle or via doorbell */
6374 rc = hpsa_kdump_hard_reset_controller(pdev);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006375
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006376 /* -ENOTSUPP here means we cannot reset the controller
6377 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05006378 * "performant mode". Or, it might be 640x, which can't reset
6379 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006380 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06006381 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02006382 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006383
6384 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06006385 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006386 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
6387 if (hpsa_noop(pdev) == 0)
6388 break;
6389 else
6390 dev_warn(&pdev->dev, "no-op failed%s\n",
6391 (i < 11 ? "; re-trying" : ""));
6392 }
Tomas Henzl132aa222014-08-14 16:12:39 +02006393
6394out_disable:
6395
6396 pci_disable_device(pdev);
6397 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006398}
6399
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006400static int hpsa_allocate_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006401{
6402 h->cmd_pool_bits = kzalloc(
6403 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
6404 sizeof(unsigned long), GFP_KERNEL);
6405 h->cmd_pool = pci_alloc_consistent(h->pdev,
6406 h->nr_cmds * sizeof(*h->cmd_pool),
6407 &(h->cmd_pool_dhandle));
6408 h->errinfo_pool = pci_alloc_consistent(h->pdev,
6409 h->nr_cmds * sizeof(*h->errinfo_pool),
6410 &(h->errinfo_pool_dhandle));
6411 if ((h->cmd_pool_bits == NULL)
6412 || (h->cmd_pool == NULL)
6413 || (h->errinfo_pool == NULL)) {
6414 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06006415 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006416 }
6417 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06006418clean_up:
6419 hpsa_free_cmd_pool(h);
6420 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006421}
6422
6423static void hpsa_free_cmd_pool(struct ctlr_info *h)
6424{
6425 kfree(h->cmd_pool_bits);
6426 if (h->cmd_pool)
6427 pci_free_consistent(h->pdev,
6428 h->nr_cmds * sizeof(struct CommandList),
6429 h->cmd_pool, h->cmd_pool_dhandle);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06006430 if (h->ioaccel2_cmd_pool)
6431 pci_free_consistent(h->pdev,
6432 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
6433 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006434 if (h->errinfo_pool)
6435 pci_free_consistent(h->pdev,
6436 h->nr_cmds * sizeof(struct ErrorInfo),
6437 h->errinfo_pool,
6438 h->errinfo_pool_dhandle);
Matt Gatese1f7de02014-02-18 13:55:17 -06006439 if (h->ioaccel_cmd_pool)
6440 pci_free_consistent(h->pdev,
6441 h->nr_cmds * sizeof(struct io_accel1_cmd),
6442 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006443}
6444
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006445static void hpsa_irq_affinity_hints(struct ctlr_info *h)
6446{
Fabian Frederickec429952015-01-23 16:41:46 -06006447 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006448
6449 cpu = cpumask_first(cpu_online_mask);
6450 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06006451 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006452 cpu = cpumask_next(cpu, cpu_online_mask);
6453 }
6454}
6455
Robert Elliottec501a12015-01-23 16:41:40 -06006456/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
6457static void hpsa_free_irqs(struct ctlr_info *h)
6458{
6459 int i;
6460
6461 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
6462 /* Single reply queue, only one irq to free */
6463 i = h->intr_mode;
6464 irq_set_affinity_hint(h->intr[i], NULL);
6465 free_irq(h->intr[i], &h->q[i]);
6466 return;
6467 }
6468
6469 for (i = 0; i < h->msix_vector; i++) {
6470 irq_set_affinity_hint(h->intr[i], NULL);
6471 free_irq(h->intr[i], &h->q[i]);
6472 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006473 for (; i < MAX_REPLY_QUEUES; i++)
6474 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06006475}
6476
Robert Elliott9ee61792015-01-23 16:42:32 -06006477/* returns 0 on success; cleans up and returns -Enn on error */
6478static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006479 irqreturn_t (*msixhandler)(int, void *),
6480 irqreturn_t (*intxhandler)(int, void *))
6481{
Matt Gates254f7962012-05-01 11:43:06 -05006482 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006483
Matt Gates254f7962012-05-01 11:43:06 -05006484 /*
6485 * initialize h->q[x] = x so that interrupt handlers know which
6486 * queue to process.
6487 */
6488 for (i = 0; i < MAX_REPLY_QUEUES; i++)
6489 h->q[i] = (u8) i;
6490
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006491 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05006492 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006493 for (i = 0; i < h->msix_vector; i++) {
Matt Gates254f7962012-05-01 11:43:06 -05006494 rc = request_irq(h->intr[i], msixhandler,
6495 0, h->devname,
6496 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006497 if (rc) {
6498 int j;
6499
6500 dev_err(&h->pdev->dev,
6501 "failed to get irq %d for %s\n",
6502 h->intr[i], h->devname);
6503 for (j = 0; j < i; j++) {
6504 free_irq(h->intr[j], &h->q[j]);
6505 h->q[j] = 0;
6506 }
6507 for (; j < MAX_REPLY_QUEUES; j++)
6508 h->q[j] = 0;
6509 return rc;
6510 }
6511 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006512 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05006513 } else {
6514 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006515 if (h->msix_vector > 0 || h->msi_vector) {
Matt Gates254f7962012-05-01 11:43:06 -05006516 rc = request_irq(h->intr[h->intr_mode],
6517 msixhandler, 0, h->devname,
6518 &h->q[h->intr_mode]);
6519 } else {
6520 rc = request_irq(h->intr[h->intr_mode],
6521 intxhandler, IRQF_SHARED, h->devname,
6522 &h->q[h->intr_mode]);
6523 }
6524 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006525 if (rc) {
6526 dev_err(&h->pdev->dev, "unable to get irq %d for %s\n",
6527 h->intr[h->intr_mode], h->devname);
6528 return -ENODEV;
6529 }
6530 return 0;
6531}
6532
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006533static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006534{
6535 if (hpsa_send_host_reset(h, RAID_CTLR_LUNID,
6536 HPSA_RESET_TYPE_CONTROLLER)) {
6537 dev_warn(&h->pdev->dev, "Resetting array controller failed.\n");
6538 return -EIO;
6539 }
6540
6541 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
6542 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) {
6543 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
6544 return -1;
6545 }
6546
6547 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
6548 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) {
6549 dev_warn(&h->pdev->dev, "Board failed to become ready "
6550 "after soft reset.\n");
6551 return -1;
6552 }
6553
6554 return 0;
6555}
6556
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006557static void hpsa_free_irqs_and_disable_msix(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006558{
Robert Elliottec501a12015-01-23 16:41:40 -06006559 hpsa_free_irqs(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006560#ifdef CONFIG_PCI_MSI
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006561 if (h->msix_vector) {
6562 if (h->pdev->msix_enabled)
6563 pci_disable_msix(h->pdev);
6564 } else if (h->msi_vector) {
6565 if (h->pdev->msi_enabled)
6566 pci_disable_msi(h->pdev);
6567 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006568#endif /* CONFIG_PCI_MSI */
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006569}
6570
Stephen M. Cameron072b0512014-05-29 10:53:07 -05006571static void hpsa_free_reply_queues(struct ctlr_info *h)
6572{
6573 int i;
6574
6575 for (i = 0; i < h->nreply_queues; i++) {
6576 if (!h->reply_queue[i].head)
6577 continue;
6578 pci_free_consistent(h->pdev, h->reply_queue_size,
6579 h->reply_queue[i].head, h->reply_queue[i].busaddr);
6580 h->reply_queue[i].head = NULL;
6581 h->reply_queue[i].busaddr = 0;
6582 }
6583}
6584
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006585static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
6586{
6587 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006588 hpsa_free_sg_chain_blocks(h);
6589 hpsa_free_cmd_pool(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06006590 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006591 kfree(h->blockFetchTable);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05006592 hpsa_free_reply_queues(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006593 if (h->vaddr)
6594 iounmap(h->vaddr);
6595 if (h->transtable)
6596 iounmap(h->transtable);
6597 if (h->cfgtable)
6598 iounmap(h->cfgtable);
Tomas Henzl132aa222014-08-14 16:12:39 +02006599 pci_disable_device(h->pdev);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006600 pci_release_regions(h->pdev);
6601 kfree(h);
6602}
6603
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006604/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06006605static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006606{
Webb Scales281a7fd2015-01-23 16:43:35 -06006607 int i, refcount;
6608 struct CommandList *c;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006609
Don Brace080ef1c2015-01-23 16:43:25 -06006610 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06006611 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06006612 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06006613 refcount = atomic_inc_return(&c->refcount);
6614 if (refcount > 1) {
6615 c->err_info->CommandStatus = CMD_HARDWARE_ERR;
6616 finish_cmd(c);
6617 }
6618 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006619 }
6620}
6621
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006622static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
6623{
6624 int i, cpu;
6625
6626 cpu = cpumask_first(cpu_online_mask);
6627 for (i = 0; i < num_online_cpus(); i++) {
6628 u32 *lockup_detected;
6629 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
6630 *lockup_detected = value;
6631 cpu = cpumask_next(cpu, cpu_online_mask);
6632 }
6633 wmb(); /* be sure the per-cpu variables are out to memory */
6634}
6635
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006636static void controller_lockup_detected(struct ctlr_info *h)
6637{
6638 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006639 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006640
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006641 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6642 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006643 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
6644 if (!lockup_detected) {
6645 /* no heartbeat, but controller gave us a zero. */
6646 dev_warn(&h->pdev->dev,
6647 "lockup detected but scratchpad register is zero\n");
6648 lockup_detected = 0xffffffff;
6649 }
6650 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006651 spin_unlock_irqrestore(&h->lock, flags);
6652 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x\n",
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006653 lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006654 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06006655 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006656}
6657
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006658static void detect_controller_lockup(struct ctlr_info *h)
6659{
6660 u64 now;
6661 u32 heartbeat;
6662 unsigned long flags;
6663
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006664 now = get_jiffies_64();
6665 /* If we've received an interrupt recently, we're ok. */
6666 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006667 (h->heartbeat_sample_interval), now))
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006668 return;
6669
6670 /*
6671 * If we've already checked the heartbeat recently, we're ok.
6672 * This could happen if someone sends us a signal. We
6673 * otherwise don't care about signals in this thread.
6674 */
6675 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006676 (h->heartbeat_sample_interval), now))
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006677 return;
6678
6679 /* If heartbeat has not changed since we last looked, we're not ok. */
6680 spin_lock_irqsave(&h->lock, flags);
6681 heartbeat = readl(&h->cfgtable->HeartBeat);
6682 spin_unlock_irqrestore(&h->lock, flags);
6683 if (h->last_heartbeat == heartbeat) {
6684 controller_lockup_detected(h);
6685 return;
6686 }
6687
6688 /* We're ok. */
6689 h->last_heartbeat = heartbeat;
6690 h->last_heartbeat_timestamp = now;
6691}
6692
Stephen M. Cameron98465902014-02-21 16:25:00 -06006693static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006694{
6695 int i;
6696 char *event_type;
6697
Stephen Camerone4aa3e62015-01-23 16:44:07 -06006698 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
6699 return;
6700
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006701 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06006702 if ((h->transMethod & (CFGTBL_Trans_io_accel1
6703 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006704 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
6705 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
6706
6707 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
6708 event_type = "state change";
6709 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
6710 event_type = "configuration change";
6711 /* Stop sending new RAID offload reqs via the IO accelerator */
6712 scsi_block_requests(h->scsi_host);
6713 for (i = 0; i < h->ndevices; i++)
6714 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06006715 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006716 /* Set 'accelerator path config change' bit */
6717 dev_warn(&h->pdev->dev,
6718 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
6719 h->events, event_type);
6720 writel(h->events, &(h->cfgtable->clear_event_notify));
6721 /* Set the "clear event notify field update" bit 6 */
6722 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
6723 /* Wait until ctlr clears 'clear event notify field', bit 6 */
6724 hpsa_wait_for_clear_event_notify_ack(h);
6725 scsi_unblock_requests(h->scsi_host);
6726 } else {
6727 /* Acknowledge controller notification events. */
6728 writel(h->events, &(h->cfgtable->clear_event_notify));
6729 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
6730 hpsa_wait_for_clear_event_notify_ack(h);
6731#if 0
6732 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
6733 hpsa_wait_for_mode_change_ack(h);
6734#endif
6735 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06006736 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006737}
6738
6739/* Check a register on the controller to see if there are configuration
6740 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06006741 * we should rescan the controller for devices.
6742 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006743 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06006744static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006745{
6746 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06006747 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006748
6749 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06006750 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006751}
6752
Stephen M. Cameron98465902014-02-21 16:25:00 -06006753/*
6754 * Check if any of the offline devices have become ready
6755 */
6756static int hpsa_offline_devices_ready(struct ctlr_info *h)
6757{
6758 unsigned long flags;
6759 struct offline_device_entry *d;
6760 struct list_head *this, *tmp;
6761
6762 spin_lock_irqsave(&h->offline_device_lock, flags);
6763 list_for_each_safe(this, tmp, &h->offline_device_list) {
6764 d = list_entry(this, struct offline_device_entry,
6765 offline_list);
6766 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05006767 if (!hpsa_volume_offline(h, d->scsi3addr)) {
6768 spin_lock_irqsave(&h->offline_device_lock, flags);
6769 list_del(&d->offline_list);
6770 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006771 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05006772 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06006773 spin_lock_irqsave(&h->offline_device_lock, flags);
6774 }
6775 spin_unlock_irqrestore(&h->offline_device_lock, flags);
6776 return 0;
6777}
6778
6779
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006780static void hpsa_monitor_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006781{
6782 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006783 struct ctlr_info *h = container_of(to_delayed_work(work),
6784 struct ctlr_info, monitor_ctlr_work);
6785 detect_controller_lockup(h);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006786 if (lockup_detected(h))
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006787 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06006788
6789 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
6790 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006791 hpsa_ack_ctlr_events(h);
6792 hpsa_scan_start(h->scsi_host);
6793 scsi_host_put(h->scsi_host);
6794 }
6795
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006796 spin_lock_irqsave(&h->lock, flags);
6797 if (h->remove_in_progress) {
6798 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006799 return;
6800 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006801 schedule_delayed_work(&h->monitor_ctlr_work,
6802 h->heartbeat_sample_interval);
6803 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006804}
6805
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006806static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006807{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006808 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006809 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006810 int try_soft_reset = 0;
6811 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006812
6813 if (number_of_controllers == 0)
6814 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006815
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006816 rc = hpsa_init_reset_devices(pdev);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006817 if (rc) {
6818 if (rc != -ENOTSUPP)
6819 return rc;
6820 /* If the reset fails in a particular way (it has no way to do
6821 * a proper hard reset, so returns -ENOTSUPP) we can try to do
6822 * a soft reset once we get the controller configured up to the
6823 * point that it can accept a command.
6824 */
6825 try_soft_reset = 1;
6826 rc = 0;
6827 }
6828
6829reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006830
Don Brace303932f2010-02-04 08:42:40 -06006831 /* Command structures must be aligned on a 32-byte boundary because
6832 * the 5 lower bits of the address are used by the hardware. and by
6833 * the driver. See comments in hpsa.h for more info.
6834 */
Don Brace303932f2010-02-04 08:42:40 -06006835 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006836 h = kzalloc(sizeof(*h), GFP_KERNEL);
6837 if (!h)
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006838 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006839
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006840 h->pdev = pdev;
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006841 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06006842 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006843 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006844 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006845 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06006846 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006847
Don Brace080ef1c2015-01-23 16:43:25 -06006848 h->resubmit_wq = alloc_workqueue("hpsa", WQ_MEM_RECLAIM, 0);
6849 if (!h->resubmit_wq) {
6850 dev_err(&h->pdev->dev, "Failed to allocate work queue\n");
6851 rc = -ENOMEM;
6852 goto clean1;
6853 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006854 /* Allocate and clear per-cpu variable lockup_detected */
6855 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05006856 if (!h->lockup_detected) {
6857 rc = -ENOMEM;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006858 goto clean1;
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05006859 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006860 set_lockup_detected_for_all_cpus(h, 0);
6861
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006862 rc = hpsa_pci_init(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006863 if (rc != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006864 goto clean1;
6865
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006866 sprintf(h->devname, HPSA "%d", number_of_controllers);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006867 h->ctlr = number_of_controllers;
6868 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006869
6870 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006871 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
6872 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006873 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006874 } else {
6875 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6876 if (rc == 0) {
6877 dac = 0;
6878 } else {
6879 dev_err(&pdev->dev, "no suitable DMA available\n");
6880 goto clean1;
6881 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006882 }
6883
6884 /* make sure the board interrupts are off */
6885 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006886
Robert Elliott9ee61792015-01-23 16:42:32 -06006887 if (hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006888 goto clean2;
Don Brace303932f2010-02-04 08:42:40 -06006889 dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n",
6890 h->devname, pdev->device,
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006891 h->intr[h->intr_mode], dac ? "" : " not");
Robert Elliott8947fd12015-01-23 16:42:54 -06006892 rc = hpsa_allocate_cmd_pool(h);
6893 if (rc)
6894 goto clean2_and_free_irqs;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06006895 if (hpsa_allocate_sg_chain_blocks(h))
6896 goto clean4;
Stephen M. Camerona08a8472010-02-04 08:43:16 -06006897 init_waitqueue_head(&h->scan_wait_queue);
6898 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006899
6900 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05006901 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006902 h->hba_mode_enabled = 0;
Stephen M. Cameron9a413382011-05-03 14:59:41 -05006903 h->scsi_host = NULL;
6904 spin_lock_init(&h->devlock);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006905 hpsa_put_ctlr_into_performant_mode(h);
6906
6907 /* At this point, the controller is ready to take commands.
6908 * Now, if reset_devices and the hard reset didn't work, try
6909 * the soft reset and see if that works.
6910 */
6911 if (try_soft_reset) {
6912
6913 /* This is kind of gross. We may or may not get a completion
6914 * from the soft reset command, and if we do, then the value
6915 * from the fifo may or may not be valid. So, we wait 10 secs
6916 * after the reset throwing away any completions we get during
6917 * that time. Unregister the interrupt handler and register
6918 * fake ones to scoop up any residual completions.
6919 */
6920 spin_lock_irqsave(&h->lock, flags);
6921 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6922 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06006923 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06006924 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006925 hpsa_intx_discard_completions);
6926 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06006927 dev_warn(&h->pdev->dev,
6928 "Failed to request_irq after soft reset.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006929 goto clean4;
6930 }
6931
6932 rc = hpsa_kdump_soft_reset(h);
6933 if (rc)
6934 /* Neither hard nor soft reset worked, we're hosed. */
6935 goto clean4;
6936
6937 dev_info(&h->pdev->dev, "Board READY.\n");
6938 dev_info(&h->pdev->dev,
6939 "Waiting for stale completions to drain.\n");
6940 h->access.set_intr_mask(h, HPSA_INTR_ON);
6941 msleep(10000);
6942 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6943
6944 rc = controller_reset_failed(h->cfgtable);
6945 if (rc)
6946 dev_info(&h->pdev->dev,
6947 "Soft reset appears to have failed.\n");
6948
6949 /* since the controller's reset, we have to go back and re-init
6950 * everything. Easiest to just forget what we've done and do it
6951 * all over again.
6952 */
6953 hpsa_undo_allocations_after_kdump_soft_reset(h);
6954 try_soft_reset = 0;
6955 if (rc)
6956 /* don't go to clean4, we already unallocated */
6957 return -ENODEV;
6958
6959 goto reinit_after_soft_reset;
6960 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006961
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006962 /* Enable Accelerated IO path at driver layer */
6963 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06006964
Scott Teele863d682014-02-18 13:57:05 -06006965
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006966 /* Turn the interrupts on so we can service requests */
6967 h->access.set_intr_mask(h, HPSA_INTR_ON);
6968
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006969 hpsa_hba_inquiry(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006970 hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006971
6972 /* Monitor the controller for firmware lockups */
6973 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
6974 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
6975 schedule_delayed_work(&h->monitor_ctlr_work,
6976 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05006977 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006978
6979clean4:
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06006980 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006981 hpsa_free_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06006982clean2_and_free_irqs:
Robert Elliottec501a12015-01-23 16:41:40 -06006983 hpsa_free_irqs(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006984clean2:
6985clean1:
Don Brace080ef1c2015-01-23 16:43:25 -06006986 if (h->resubmit_wq)
6987 destroy_workqueue(h->resubmit_wq);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006988 if (h->lockup_detected)
6989 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006990 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006991 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006992}
6993
6994static void hpsa_flush_cache(struct ctlr_info *h)
6995{
6996 char *flush_buf;
6997 struct CommandList *c;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05006998
6999 /* Don't bother trying to flush the cache if locked up */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007000 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007001 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007002 flush_buf = kzalloc(4, GFP_KERNEL);
7003 if (!flush_buf)
7004 return;
7005
Stephen Cameron45fcb862015-01-23 16:43:04 -06007006 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007007 if (!c) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06007008 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007009 goto out_of_memory;
7010 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007011 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
7012 RAID_CTLR_LUNID, TYPE_CMD)) {
7013 goto out;
7014 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007015 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_TODEVICE);
7016 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007017out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007018 dev_warn(&h->pdev->dev,
7019 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06007020 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007021out_of_memory:
7022 kfree(flush_buf);
7023}
7024
7025static void hpsa_shutdown(struct pci_dev *pdev)
7026{
7027 struct ctlr_info *h;
7028
7029 h = pci_get_drvdata(pdev);
7030 /* Turn board interrupts off and send the flush cache command
7031 * sendcmd will turn off interrupt, and send the flush...
7032 * To write all data in the battery backed cache to disks
7033 */
7034 hpsa_flush_cache(h);
7035 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007036 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007037}
7038
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007039static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007040{
7041 int i;
7042
7043 for (i = 0; i < h->ndevices; i++)
7044 kfree(h->dev[i]);
7045}
7046
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007047static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007048{
7049 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007050 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007051
7052 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007053 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007054 return;
7055 }
7056 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007057
7058 /* Get rid of any controller monitoring work items */
7059 spin_lock_irqsave(&h->lock, flags);
7060 h->remove_in_progress = 1;
7061 cancel_delayed_work(&h->monitor_ctlr_work);
7062 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007063 hpsa_unregister_scsi(h); /* unhook from SCSI subsystem */
7064 hpsa_shutdown(pdev);
Don Brace080ef1c2015-01-23 16:43:25 -06007065 destroy_workqueue(h->resubmit_wq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007066 iounmap(h->vaddr);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007067 iounmap(h->transtable);
7068 iounmap(h->cfgtable);
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007069 hpsa_free_device_info(h);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007070 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007071 pci_free_consistent(h->pdev,
7072 h->nr_cmds * sizeof(struct CommandList),
7073 h->cmd_pool, h->cmd_pool_dhandle);
7074 pci_free_consistent(h->pdev,
7075 h->nr_cmds * sizeof(struct ErrorInfo),
7076 h->errinfo_pool, h->errinfo_pool_dhandle);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007077 hpsa_free_reply_queues(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007078 kfree(h->cmd_pool_bits);
Don Brace303932f2010-02-04 08:42:40 -06007079 kfree(h->blockFetchTable);
Matt Gatese1f7de02014-02-18 13:55:17 -06007080 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007081 kfree(h->ioaccel2_blockFetchTable);
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007082 kfree(h->hba_inquiry_data);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05007083 pci_disable_device(pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007084 pci_release_regions(pdev);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007085 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007086 kfree(h);
7087}
7088
7089static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
7090 __attribute__((unused)) pm_message_t state)
7091{
7092 return -ENOSYS;
7093}
7094
7095static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
7096{
7097 return -ENOSYS;
7098}
7099
7100static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007101 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007102 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007103 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007104 .id_table = hpsa_pci_device_id, /* id_table */
7105 .shutdown = hpsa_shutdown,
7106 .suspend = hpsa_suspend,
7107 .resume = hpsa_resume,
7108};
7109
Don Brace303932f2010-02-04 08:42:40 -06007110/* Fill in bucket_map[], given nsgs (the max number of
7111 * scatter gather elements supported) and bucket[],
7112 * which is an array of 8 integers. The bucket[] array
7113 * contains 8 different DMA transfer sizes (in 16
7114 * byte increments) which the controller uses to fetch
7115 * commands. This function fills in bucket_map[], which
7116 * maps a given number of scatter gather elements to one of
7117 * the 8 DMA transfer sizes. The point of it is to allow the
7118 * controller to only do as much DMA as needed to fetch the
7119 * command, with the DMA transfer size encoded in the lower
7120 * bits of the command address.
7121 */
7122static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06007123 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06007124{
7125 int i, j, b, size;
7126
Don Brace303932f2010-02-04 08:42:40 -06007127 /* Note, bucket_map must have nsgs+1 entries. */
7128 for (i = 0; i <= nsgs; i++) {
7129 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06007130 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06007131 b = num_buckets; /* Assume the biggest bucket */
7132 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06007133 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06007134 if (bucket[j] >= size) {
7135 b = j;
7136 break;
7137 }
7138 }
7139 /* for a command with i SG entries, use bucket b. */
7140 bucket_map[i] = b;
7141 }
7142}
7143
Matt Gatese1f7de02014-02-18 13:55:17 -06007144static void hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06007145{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007146 int i;
7147 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06007148 unsigned long transMethod = CFGTBL_Trans_Performant |
7149 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007150 CFGTBL_Trans_enable_directed_msix |
7151 (trans_support & (CFGTBL_Trans_io_accel1 |
7152 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06007153 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007154
7155 /* This is a bit complicated. There are 8 registers on
7156 * the controller which we write to to tell it 8 different
7157 * sizes of commands which there may be. It's a way of
7158 * reducing the DMA done to fetch each command. Encoded into
7159 * each command's tag are 3 bits which communicate to the controller
7160 * which of the eight sizes that command fits within. The size of
7161 * each command depends on how many scatter gather entries there are.
7162 * Each SG entry requires 16 bytes. The eight registers are programmed
7163 * with the number of 16-byte blocks a command of that size requires.
7164 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007165 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007166 * blocks. Note, this only extends to the SG entries contained
7167 * within the command block, and does not extend to chained blocks
7168 * of SG elements. bft[] contains the eight values we write to
7169 * the registers. They are not evenly distributed, but have more
7170 * sizes for small commands, and fewer sizes for larger commands.
7171 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007172 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007173#define MIN_IOACCEL2_BFT_ENTRY 5
7174#define HPSA_IOACCEL2_HEADER_SZ 4
7175 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
7176 13, 14, 15, 16, 17, 18, 19,
7177 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
7178 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
7179 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
7180 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
7181 16 * MIN_IOACCEL2_BFT_ENTRY);
7182 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007183 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06007184 /* 5 = 1 s/g entry or 4k
7185 * 6 = 2 s/g entry or 8k
7186 * 8 = 4 s/g entry or 16k
7187 * 10 = 6 s/g entry or 24k
7188 */
Don Brace303932f2010-02-04 08:42:40 -06007189
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05007190 /* If the controller supports either ioaccel method then
7191 * we can also use the RAID stack submit path that does not
7192 * perform the superfluous readl() after each command submission.
7193 */
7194 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
7195 access = SA5_performant_access_no_read;
7196
Don Brace303932f2010-02-04 08:42:40 -06007197 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007198 for (i = 0; i < h->nreply_queues; i++)
7199 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06007200
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007201 bft[7] = SG_ENTRIES_IN_CMD + 4;
7202 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06007203 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06007204 for (i = 0; i < 8; i++)
7205 writel(bft[i], &h->transtable->BlockFetch[i]);
7206
7207 /* size of controller ring buffer */
7208 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05007209 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06007210 writel(0, &h->transtable->RepQCtrAddrLow32);
7211 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05007212
7213 for (i = 0; i < h->nreply_queues; i++) {
7214 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007215 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05007216 &h->transtable->RepQAddr[i].lower);
7217 }
7218
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007219 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06007220 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
7221 /*
7222 * enable outbound interrupt coalescing in accelerator mode;
7223 */
7224 if (trans_support & CFGTBL_Trans_io_accel1) {
7225 access = SA5_ioaccel_mode1_access;
7226 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7227 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06007228 } else {
7229 if (trans_support & CFGTBL_Trans_io_accel2) {
7230 access = SA5_ioaccel_mode2_access;
7231 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7232 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
7233 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007234 }
Don Brace303932f2010-02-04 08:42:40 -06007235 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007236 hpsa_wait_for_mode_change_ack(h);
Don Brace303932f2010-02-04 08:42:40 -06007237 register_value = readl(&(h->cfgtable->TransportActive));
7238 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007239 dev_err(&h->pdev->dev,
7240 "performant mode problem - transport not active\n");
Don Brace303932f2010-02-04 08:42:40 -06007241 return;
7242 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007243 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06007244 h->access = access;
7245 h->transMethod = transMethod;
7246
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007247 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
7248 (trans_support & CFGTBL_Trans_io_accel2)))
Matt Gatese1f7de02014-02-18 13:55:17 -06007249 return;
7250
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007251 if (trans_support & CFGTBL_Trans_io_accel1) {
7252 /* Set up I/O accelerator mode */
7253 for (i = 0; i < h->nreply_queues; i++) {
7254 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
7255 h->reply_queue[i].current_entry =
7256 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
7257 }
7258 bft[7] = h->ioaccel_maxsg + 8;
7259 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
7260 h->ioaccel1_blockFetchTable);
7261
7262 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007263 for (i = 0; i < h->nreply_queues; i++)
7264 memset(h->reply_queue[i].head,
7265 (u8) IOACCEL_MODE1_REPLY_UNUSED,
7266 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007267
7268 /* set all the constant fields in the accelerator command
7269 * frames once at init time to save CPU cycles later.
7270 */
7271 for (i = 0; i < h->nr_cmds; i++) {
7272 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
7273
7274 cp->function = IOACCEL1_FUNCTION_SCSIIO;
7275 cp->err_info = (u32) (h->errinfo_pool_dhandle +
7276 (i * sizeof(struct ErrorInfo)));
7277 cp->err_info_len = sizeof(struct ErrorInfo);
7278 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06007279 cp->host_context_flags =
7280 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007281 cp->timeout_sec = 0;
7282 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007283 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06007284 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007285 cp->host_addr =
7286 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007287 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007288 }
7289 } else if (trans_support & CFGTBL_Trans_io_accel2) {
7290 u64 cfg_offset, cfg_base_addr_index;
7291 u32 bft2_offset, cfg_base_addr;
7292 int rc;
7293
7294 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7295 &cfg_base_addr_index, &cfg_offset);
7296 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
7297 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
7298 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
7299 4, h->ioaccel2_blockFetchTable);
7300 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
7301 BUILD_BUG_ON(offsetof(struct CfgTable,
7302 io_accel_request_size_offset) != 0xb8);
7303 h->ioaccel2_bft2_regs =
7304 remap_pci_mem(pci_resource_start(h->pdev,
7305 cfg_base_addr_index) +
7306 cfg_offset + bft2_offset,
7307 ARRAY_SIZE(bft2) *
7308 sizeof(*h->ioaccel2_bft2_regs));
7309 for (i = 0; i < ARRAY_SIZE(bft2); i++)
7310 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06007311 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007312 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7313 hpsa_wait_for_mode_change_ack(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06007314}
7315
7316static int hpsa_alloc_ioaccel_cmd_and_bft(struct ctlr_info *h)
7317{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007318 h->ioaccel_maxsg =
7319 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7320 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
7321 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
7322
Matt Gatese1f7de02014-02-18 13:55:17 -06007323 /* Command structures must be aligned on a 128-byte boundary
7324 * because the 7 lower bits of the address are used by the
7325 * hardware.
7326 */
Matt Gatese1f7de02014-02-18 13:55:17 -06007327 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
7328 IOACCEL1_COMMANDLIST_ALIGNMENT);
7329 h->ioaccel_cmd_pool =
7330 pci_alloc_consistent(h->pdev,
7331 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7332 &(h->ioaccel_cmd_pool_dhandle));
7333
7334 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007335 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06007336 sizeof(u32)), GFP_KERNEL);
7337
7338 if ((h->ioaccel_cmd_pool == NULL) ||
7339 (h->ioaccel1_blockFetchTable == NULL))
7340 goto clean_up;
7341
7342 memset(h->ioaccel_cmd_pool, 0,
7343 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
7344 return 0;
7345
7346clean_up:
7347 if (h->ioaccel_cmd_pool)
7348 pci_free_consistent(h->pdev,
7349 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7350 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
7351 kfree(h->ioaccel1_blockFetchTable);
7352 return 1;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007353}
7354
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007355static int ioaccel2_alloc_cmds_and_bft(struct ctlr_info *h)
7356{
7357 /* Allocate ioaccel2 mode command blocks and block fetch table */
7358
7359 h->ioaccel_maxsg =
7360 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7361 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
7362 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
7363
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007364 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
7365 IOACCEL2_COMMANDLIST_ALIGNMENT);
7366 h->ioaccel2_cmd_pool =
7367 pci_alloc_consistent(h->pdev,
7368 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7369 &(h->ioaccel2_cmd_pool_dhandle));
7370
7371 h->ioaccel2_blockFetchTable =
7372 kmalloc(((h->ioaccel_maxsg + 1) *
7373 sizeof(u32)), GFP_KERNEL);
7374
7375 if ((h->ioaccel2_cmd_pool == NULL) ||
7376 (h->ioaccel2_blockFetchTable == NULL))
7377 goto clean_up;
7378
7379 memset(h->ioaccel2_cmd_pool, 0,
7380 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
7381 return 0;
7382
7383clean_up:
7384 if (h->ioaccel2_cmd_pool)
7385 pci_free_consistent(h->pdev,
7386 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7387 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
7388 kfree(h->ioaccel2_blockFetchTable);
7389 return 1;
7390}
7391
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007392static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007393{
7394 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06007395 unsigned long transMethod = CFGTBL_Trans_Performant |
7396 CFGTBL_Trans_use_short_tags;
Matt Gates254f7962012-05-01 11:43:06 -05007397 int i;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007398
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06007399 if (hpsa_simple_mode)
7400 return;
7401
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05007402 trans_support = readl(&(h->cfgtable->TransportSupport));
7403 if (!(trans_support & PERFORMANT_MODE))
7404 return;
7405
Matt Gatese1f7de02014-02-18 13:55:17 -06007406 /* Check for I/O accelerator mode support */
7407 if (trans_support & CFGTBL_Trans_io_accel1) {
7408 transMethod |= CFGTBL_Trans_io_accel1 |
7409 CFGTBL_Trans_enable_directed_msix;
7410 if (hpsa_alloc_ioaccel_cmd_and_bft(h))
7411 goto clean_up;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007412 } else {
7413 if (trans_support & CFGTBL_Trans_io_accel2) {
7414 transMethod |= CFGTBL_Trans_io_accel2 |
7415 CFGTBL_Trans_enable_directed_msix;
7416 if (ioaccel2_alloc_cmds_and_bft(h))
7417 goto clean_up;
7418 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007419 }
7420
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007421 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007422 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007423 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007424 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007425
Matt Gates254f7962012-05-01 11:43:06 -05007426 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007427 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
7428 h->reply_queue_size,
7429 &(h->reply_queue[i].busaddr));
7430 if (!h->reply_queue[i].head)
7431 goto clean_up;
Matt Gates254f7962012-05-01 11:43:06 -05007432 h->reply_queue[i].size = h->max_commands;
7433 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
7434 h->reply_queue[i].current_entry = 0;
7435 }
7436
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007437 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007438 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007439 sizeof(u32)), GFP_KERNEL);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007440 if (!h->blockFetchTable)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007441 goto clean_up;
7442
Matt Gatese1f7de02014-02-18 13:55:17 -06007443 hpsa_enter_performant_mode(h, trans_support);
Don Brace303932f2010-02-04 08:42:40 -06007444 return;
7445
7446clean_up:
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007447 hpsa_free_reply_queues(h);
Don Brace303932f2010-02-04 08:42:40 -06007448 kfree(h->blockFetchTable);
7449}
7450
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007451static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007452{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007453 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
7454}
7455
7456static void hpsa_drain_accel_commands(struct ctlr_info *h)
7457{
7458 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06007459 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06007460 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007461
Don Bracef2405db2015-01-23 16:43:09 -06007462 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007463 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06007464 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007465 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007466 refcount = atomic_inc_return(&c->refcount);
7467 if (refcount > 1) /* Command is allocated */
7468 accel_cmds_out += is_accelerated_cmd(c);
7469 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06007470 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007471 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06007472 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007473 msleep(100);
7474 } while (1);
7475}
7476
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007477/*
7478 * This is it. Register the PCI driver information for the cards we control
7479 * the OS will call our registered routines when it finds one of our cards.
7480 */
7481static int __init hpsa_init(void)
7482{
Mike Miller31468402010-02-25 14:03:12 -06007483 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007484}
7485
7486static void __exit hpsa_cleanup(void)
7487{
7488 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007489}
7490
Matt Gatese1f7de02014-02-18 13:55:17 -06007491static void __attribute__((unused)) verify_offsets(void)
7492{
7493#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06007494 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
7495
7496 VERIFY_OFFSET(structure_size, 0);
7497 VERIFY_OFFSET(volume_blk_size, 4);
7498 VERIFY_OFFSET(volume_blk_cnt, 8);
7499 VERIFY_OFFSET(phys_blk_shift, 16);
7500 VERIFY_OFFSET(parity_rotation_shift, 17);
7501 VERIFY_OFFSET(strip_size, 18);
7502 VERIFY_OFFSET(disk_starting_blk, 20);
7503 VERIFY_OFFSET(disk_blk_cnt, 28);
7504 VERIFY_OFFSET(data_disks_per_row, 36);
7505 VERIFY_OFFSET(metadata_disks_per_row, 38);
7506 VERIFY_OFFSET(row_cnt, 40);
7507 VERIFY_OFFSET(layout_map_count, 42);
7508 VERIFY_OFFSET(flags, 44);
7509 VERIFY_OFFSET(dekindex, 46);
7510 /* VERIFY_OFFSET(reserved, 48 */
7511 VERIFY_OFFSET(data, 64);
7512
7513#undef VERIFY_OFFSET
7514
7515#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06007516 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
7517
7518 VERIFY_OFFSET(IU_type, 0);
7519 VERIFY_OFFSET(direction, 1);
7520 VERIFY_OFFSET(reply_queue, 2);
7521 /* VERIFY_OFFSET(reserved1, 3); */
7522 VERIFY_OFFSET(scsi_nexus, 4);
7523 VERIFY_OFFSET(Tag, 8);
7524 VERIFY_OFFSET(cdb, 16);
7525 VERIFY_OFFSET(cciss_lun, 32);
7526 VERIFY_OFFSET(data_len, 40);
7527 VERIFY_OFFSET(cmd_priority_task_attr, 44);
7528 VERIFY_OFFSET(sg_count, 45);
7529 /* VERIFY_OFFSET(reserved3 */
7530 VERIFY_OFFSET(err_ptr, 48);
7531 VERIFY_OFFSET(err_len, 56);
7532 /* VERIFY_OFFSET(reserved4 */
7533 VERIFY_OFFSET(sg, 64);
7534
7535#undef VERIFY_OFFSET
7536
7537#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06007538 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
7539
7540 VERIFY_OFFSET(dev_handle, 0x00);
7541 VERIFY_OFFSET(reserved1, 0x02);
7542 VERIFY_OFFSET(function, 0x03);
7543 VERIFY_OFFSET(reserved2, 0x04);
7544 VERIFY_OFFSET(err_info, 0x0C);
7545 VERIFY_OFFSET(reserved3, 0x10);
7546 VERIFY_OFFSET(err_info_len, 0x12);
7547 VERIFY_OFFSET(reserved4, 0x13);
7548 VERIFY_OFFSET(sgl_offset, 0x14);
7549 VERIFY_OFFSET(reserved5, 0x15);
7550 VERIFY_OFFSET(transfer_len, 0x1C);
7551 VERIFY_OFFSET(reserved6, 0x20);
7552 VERIFY_OFFSET(io_flags, 0x24);
7553 VERIFY_OFFSET(reserved7, 0x26);
7554 VERIFY_OFFSET(LUN, 0x34);
7555 VERIFY_OFFSET(control, 0x3C);
7556 VERIFY_OFFSET(CDB, 0x40);
7557 VERIFY_OFFSET(reserved8, 0x50);
7558 VERIFY_OFFSET(host_context_flags, 0x60);
7559 VERIFY_OFFSET(timeout_sec, 0x62);
7560 VERIFY_OFFSET(ReplyQueue, 0x64);
7561 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007562 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06007563 VERIFY_OFFSET(host_addr, 0x70);
7564 VERIFY_OFFSET(CISS_LUN, 0x78);
7565 VERIFY_OFFSET(SG, 0x78 + 8);
7566#undef VERIFY_OFFSET
7567}
7568
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007569module_init(hpsa_init);
7570module_exit(hpsa_cleanup);