blob: 7915dc45a37c3f7238a1d7a22ca0dc34e5fb25f0 [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
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004152static int do_not_scan_if_controller_locked_up(struct ctlr_info *h)
4153{
4154 unsigned long flags;
4155
4156 /*
4157 * Don't let rescans be initiated on a controller known
4158 * to be locked up. If the controller locks up *during*
4159 * a rescan, that thread is probably hosed, but at least
4160 * we can prevent new rescan threads from piling up on a
4161 * locked up controller.
4162 */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05004163 if (unlikely(lockup_detected(h))) {
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004164 spin_lock_irqsave(&h->scan_lock, flags);
4165 h->scan_finished = 1;
4166 wake_up_all(&h->scan_wait_queue);
4167 spin_unlock_irqrestore(&h->scan_lock, flags);
4168 return 1;
4169 }
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004170 return 0;
4171}
4172
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004173static void hpsa_scan_start(struct Scsi_Host *sh)
4174{
4175 struct ctlr_info *h = shost_to_hba(sh);
4176 unsigned long flags;
4177
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004178 if (do_not_scan_if_controller_locked_up(h))
4179 return;
4180
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004181 /* wait until any scan already in progress is finished. */
4182 while (1) {
4183 spin_lock_irqsave(&h->scan_lock, flags);
4184 if (h->scan_finished)
4185 break;
4186 spin_unlock_irqrestore(&h->scan_lock, flags);
4187 wait_event(h->scan_wait_queue, h->scan_finished);
4188 /* Note: We don't need to worry about a race between this
4189 * thread and driver unload because the midlayer will
4190 * have incremented the reference count, so unload won't
4191 * happen if we're in here.
4192 */
4193 }
4194 h->scan_finished = 0; /* mark scan as in progress */
4195 spin_unlock_irqrestore(&h->scan_lock, flags);
4196
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004197 if (do_not_scan_if_controller_locked_up(h))
4198 return;
4199
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004200 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4201
4202 spin_lock_irqsave(&h->scan_lock, flags);
4203 h->scan_finished = 1; /* mark scan as finished. */
4204 wake_up_all(&h->scan_wait_queue);
4205 spin_unlock_irqrestore(&h->scan_lock, flags);
4206}
4207
Don Brace7c0a0222015-01-23 16:41:30 -06004208static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
4209{
Don Brace03383732015-01-23 16:43:30 -06004210 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
4211
4212 if (!logical_drive)
4213 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06004214
4215 if (qdepth < 1)
4216 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06004217 else if (qdepth > logical_drive->queue_depth)
4218 qdepth = logical_drive->queue_depth;
4219
4220 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06004221}
4222
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004223static int hpsa_scan_finished(struct Scsi_Host *sh,
4224 unsigned long elapsed_time)
4225{
4226 struct ctlr_info *h = shost_to_hba(sh);
4227 unsigned long flags;
4228 int finished;
4229
4230 spin_lock_irqsave(&h->scan_lock, flags);
4231 finished = h->scan_finished;
4232 spin_unlock_irqrestore(&h->scan_lock, flags);
4233 return finished;
4234}
4235
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004236static void hpsa_unregister_scsi(struct ctlr_info *h)
4237{
4238 /* we are being forcibly unloaded, and may not refuse. */
4239 scsi_remove_host(h->scsi_host);
4240 scsi_host_put(h->scsi_host);
4241 h->scsi_host = NULL;
4242}
4243
4244static int hpsa_register_scsi(struct ctlr_info *h)
4245{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004246 struct Scsi_Host *sh;
4247 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004248
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004249 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
4250 if (sh == NULL)
4251 goto fail;
4252
4253 sh->io_port = 0;
4254 sh->n_io_port = 0;
4255 sh->this_id = -1;
4256 sh->max_channel = 3;
4257 sh->max_cmd_len = MAX_COMMAND_SIZE;
4258 sh->max_lun = HPSA_MAX_LUN;
4259 sh->max_id = HPSA_MAX_LUN;
Stephen Camerond54c5c22015-01-23 16:42:59 -06004260 sh->can_queue = h->nr_cmds -
4261 HPSA_CMDS_RESERVED_FOR_ABORTS -
4262 HPSA_CMDS_RESERVED_FOR_DRIVER -
4263 HPSA_MAX_CONCURRENT_PASSTHRUS;
Don Brace03383732015-01-23 16:43:30 -06004264 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004265 sh->sg_tablesize = h->maxsgentries;
4266 h->scsi_host = sh;
4267 sh->hostdata[0] = (unsigned long) h;
4268 sh->irq = h->intr[h->intr_mode];
4269 sh->unique_id = sh->irq;
4270 error = scsi_add_host(sh, &h->pdev->dev);
4271 if (error)
4272 goto fail_host_put;
4273 scsi_scan_host(sh);
4274 return 0;
4275
4276 fail_host_put:
4277 dev_err(&h->pdev->dev, "%s: scsi_add_host"
4278 " failed for controller %d\n", __func__, h->ctlr);
4279 scsi_host_put(sh);
4280 return error;
4281 fail:
4282 dev_err(&h->pdev->dev, "%s: scsi_host_alloc"
4283 " failed for controller %d\n", __func__, h->ctlr);
4284 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004285}
4286
4287static int wait_for_device_to_become_ready(struct ctlr_info *h,
4288 unsigned char lunaddr[])
4289{
Tomas Henzl89193582014-02-21 16:25:05 -06004290 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004291 int count = 0;
4292 int waittime = 1; /* seconds */
4293 struct CommandList *c;
4294
Stephen Cameron45fcb862015-01-23 16:43:04 -06004295 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004296 if (!c) {
4297 dev_warn(&h->pdev->dev, "out of memory in "
4298 "wait_for_device_to_become_ready.\n");
4299 return IO_ERROR;
4300 }
4301
4302 /* Send test unit ready until device ready, or give up. */
4303 while (count < HPSA_TUR_RETRY_LIMIT) {
4304
4305 /* Wait for a bit. do this first, because if we send
4306 * the TUR right away, the reset will just abort it.
4307 */
4308 msleep(1000 * waittime);
4309 count++;
Tomas Henzl89193582014-02-21 16:25:05 -06004310 rc = 0; /* Device ready. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004311
4312 /* Increase wait time with each try, up to a point. */
4313 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
4314 waittime = waittime * 2;
4315
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004316 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
4317 (void) fill_cmd(c, TEST_UNIT_READY, h,
4318 NULL, 0, 0, lunaddr, TYPE_CMD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004319 hpsa_scsi_do_simple_cmd_core(h, c);
4320 /* no unmap needed here because no data xfer. */
4321
4322 if (c->err_info->CommandStatus == CMD_SUCCESS)
4323 break;
4324
4325 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
4326 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
4327 (c->err_info->SenseInfo[2] == NO_SENSE ||
4328 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
4329 break;
4330
4331 dev_warn(&h->pdev->dev, "waiting %d secs "
4332 "for device to become ready.\n", waittime);
4333 rc = 1; /* device not ready. */
4334 }
4335
4336 if (rc)
4337 dev_warn(&h->pdev->dev, "giving up on device.\n");
4338 else
4339 dev_warn(&h->pdev->dev, "device is ready.\n");
4340
Stephen Cameron45fcb862015-01-23 16:43:04 -06004341 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004342 return rc;
4343}
4344
4345/* Need at least one of these error handlers to keep ../scsi/hosts.c from
4346 * complaining. Doing a host- or bus-reset can't do anything good here.
4347 */
4348static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
4349{
4350 int rc;
4351 struct ctlr_info *h;
4352 struct hpsa_scsi_dev_t *dev;
4353
4354 /* find the controller to which the command to be aborted was sent */
4355 h = sdev_to_hba(scsicmd->device);
4356 if (h == NULL) /* paranoia */
4357 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06004358
4359 if (lockup_detected(h))
4360 return FAILED;
4361
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004362 dev = scsicmd->device->hostdata;
4363 if (!dev) {
4364 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
4365 "device lookup failed.\n");
4366 return FAILED;
4367 }
Stephen M. Camerond416b0c2010-02-04 08:43:21 -06004368 dev_warn(&h->pdev->dev, "resetting device %d:%d:%d:%d\n",
4369 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004370 /* send a reset to the SCSI LUN which the command was sent to */
Scott Teelbf711ac2014-02-18 13:56:39 -06004371 rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004372 if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0)
4373 return SUCCESS;
4374
4375 dev_warn(&h->pdev->dev, "resetting device failed.\n");
4376 return FAILED;
4377}
4378
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004379static void swizzle_abort_tag(u8 *tag)
4380{
4381 u8 original_tag[8];
4382
4383 memcpy(original_tag, tag, 8);
4384 tag[0] = original_tag[3];
4385 tag[1] = original_tag[2];
4386 tag[2] = original_tag[1];
4387 tag[3] = original_tag[0];
4388 tag[4] = original_tag[7];
4389 tag[5] = original_tag[6];
4390 tag[6] = original_tag[5];
4391 tag[7] = original_tag[4];
4392}
4393
Scott Teel17eb87d2014-02-18 13:55:28 -06004394static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06004395 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06004396{
Don Brace2b08b3e2015-01-23 16:41:09 -06004397 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06004398 if (c->cmd_type == CMD_IOACCEL1) {
4399 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
4400 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06004401 tag = le64_to_cpu(cm1->tag);
4402 *tagupper = cpu_to_le32(tag >> 32);
4403 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004404 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06004405 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06004406 if (c->cmd_type == CMD_IOACCEL2) {
4407 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
4408 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06004409 /* upper tag not used in ioaccel2 mode */
4410 memset(tagupper, 0, sizeof(*tagupper));
4411 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004412 return;
4413 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004414 tag = le64_to_cpu(c->Header.tag);
4415 *tagupper = cpu_to_le32(tag >> 32);
4416 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06004417}
4418
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004419static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004420 struct CommandList *abort, int swizzle)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004421{
4422 int rc = IO_OK;
4423 struct CommandList *c;
4424 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06004425 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004426
Stephen Cameron45fcb862015-01-23 16:43:04 -06004427 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004428 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06004429 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004430 return -ENOMEM;
4431 }
4432
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004433 /* fill_cmd can't fail here, no buffer to map */
4434 (void) fill_cmd(c, HPSA_ABORT_MSG, h, abort,
4435 0, 0, scsi3addr, TYPE_MSG);
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004436 if (swizzle)
4437 swizzle_abort_tag(&c->Request.CDB[4]);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004438 hpsa_scsi_do_simple_cmd_core(h, c);
Scott Teel17eb87d2014-02-18 13:55:28 -06004439 hpsa_get_tag(h, abort, &taglower, &tagupper);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004440 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd_core completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004441 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004442 /* no unmap needed here because no data xfer. */
4443
4444 ei = c->err_info;
4445 switch (ei->CommandStatus) {
4446 case CMD_SUCCESS:
4447 break;
4448 case CMD_UNABORTABLE: /* Very common, don't make noise. */
4449 rc = -1;
4450 break;
4451 default:
4452 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004453 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06004454 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004455 rc = -1;
4456 break;
4457 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06004458 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004459 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
4460 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004461 return rc;
4462}
4463
Scott Teel54b6e9e2014-02-18 13:56:45 -06004464/* ioaccel2 path firmware cannot handle abort task requests.
4465 * Change abort requests to physical target reset, and send to the
4466 * address of the physical disk used for the ioaccel 2 command.
4467 * Return 0 on success (IO_OK)
4468 * -1 on failure
4469 */
4470
4471static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
4472 unsigned char *scsi3addr, struct CommandList *abort)
4473{
4474 int rc = IO_OK;
4475 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
4476 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
4477 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
4478 unsigned char *psa = &phys_scsi3addr[0];
4479
4480 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06004481 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004482 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
4483 if (dev == NULL) {
4484 dev_warn(&h->pdev->dev,
4485 "Cannot abort: no device pointer for command.\n");
4486 return -1; /* not abortable */
4487 }
4488
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004489 if (h->raid_offload_debug > 0)
4490 dev_info(&h->pdev->dev,
4491 "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",
4492 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
4493 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
4494 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
4495
Scott Teel54b6e9e2014-02-18 13:56:45 -06004496 if (!dev->offload_enabled) {
4497 dev_warn(&h->pdev->dev,
4498 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
4499 return -1; /* not abortable */
4500 }
4501
4502 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
4503 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
4504 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
4505 return -1; /* not abortable */
4506 }
4507
4508 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004509 if (h->raid_offload_debug > 0)
4510 dev_info(&h->pdev->dev,
4511 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4512 psa[0], psa[1], psa[2], psa[3],
4513 psa[4], psa[5], psa[6], psa[7]);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004514 rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET);
4515 if (rc != 0) {
4516 dev_warn(&h->pdev->dev,
4517 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4518 psa[0], psa[1], psa[2], psa[3],
4519 psa[4], psa[5], psa[6], psa[7]);
4520 return rc; /* failed to reset */
4521 }
4522
4523 /* wait for device to recover */
4524 if (wait_for_device_to_become_ready(h, psa) != 0) {
4525 dev_warn(&h->pdev->dev,
4526 "Reset as abort: Failed: Device never recovered from reset: 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 return -1; /* failed to recover */
4530 }
4531
4532 /* device recovered */
4533 dev_info(&h->pdev->dev,
4534 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4535 psa[0], psa[1], psa[2], psa[3],
4536 psa[4], psa[5], psa[6], psa[7]);
4537
4538 return rc; /* success */
4539}
4540
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004541/* Some Smart Arrays need the abort tag swizzled, and some don't. It's hard to
4542 * tell which kind we're dealing with, so we send the abort both ways. There
4543 * shouldn't be any collisions between swizzled and unswizzled tags due to the
4544 * way we construct our tags but we check anyway in case the assumptions which
4545 * make this true someday become false.
4546 */
4547static int hpsa_send_abort_both_ways(struct ctlr_info *h,
4548 unsigned char *scsi3addr, struct CommandList *abort)
4549{
Scott Teel54b6e9e2014-02-18 13:56:45 -06004550 /* ioccelerator mode 2 commands should be aborted via the
4551 * accelerated path, since RAID path is unaware of these commands,
4552 * but underlying firmware can't handle abort TMF.
4553 * Change abort to physical device reset.
4554 */
4555 if (abort->cmd_type == CMD_IOACCEL2)
4556 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr, abort);
4557
Don Bracef2405db2015-01-23 16:43:09 -06004558 return hpsa_send_abort(h, scsi3addr, abort, 0) &&
4559 hpsa_send_abort(h, scsi3addr, abort, 1);
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004560}
4561
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004562/* Send an abort for the specified command.
4563 * If the device and controller support it,
4564 * send a task abort request.
4565 */
4566static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
4567{
4568
4569 int i, rc;
4570 struct ctlr_info *h;
4571 struct hpsa_scsi_dev_t *dev;
4572 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004573 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
4574 char msg[256]; /* For debug messaging. */
4575 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06004576 __le32 tagupper, taglower;
Webb Scales281a7fd2015-01-23 16:43:35 -06004577 int refcount;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004578
4579 /* Find the controller of the command to be aborted */
4580 h = sdev_to_hba(sc->device);
4581 if (WARN(h == NULL,
4582 "ABORT REQUEST FAILED, Controller lookup failed.\n"))
4583 return FAILED;
4584
Don Bracee3458932015-01-23 16:44:24 -06004585 if (lockup_detected(h))
4586 return FAILED;
4587
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004588 /* Check that controller supports some kind of task abort */
4589 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
4590 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
4591 return FAILED;
4592
4593 memset(msg, 0, sizeof(msg));
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02004594 ml += sprintf(msg+ml, "ABORT REQUEST on C%d:B%d:T%d:L%llu ",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004595 h->scsi_host->host_no, sc->device->channel,
4596 sc->device->id, sc->device->lun);
4597
4598 /* Find the device of the command to be aborted */
4599 dev = sc->device->hostdata;
4600 if (!dev) {
4601 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
4602 msg);
4603 return FAILED;
4604 }
4605
4606 /* Get SCSI command to be aborted */
4607 abort = (struct CommandList *) sc->host_scribble;
4608 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06004609 /* This can happen if the command already completed. */
4610 return SUCCESS;
4611 }
4612 refcount = atomic_inc_return(&abort->refcount);
4613 if (refcount == 1) { /* Command is done already. */
4614 cmd_free(h, abort);
4615 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004616 }
Scott Teel17eb87d2014-02-18 13:55:28 -06004617 hpsa_get_tag(h, abort, &taglower, &tagupper);
4618 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06004619 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004620 if (as != NULL)
4621 ml += sprintf(msg+ml, "Command:0x%x SN:0x%lx ",
4622 as->cmnd[0], as->serial_number);
4623 dev_dbg(&h->pdev->dev, "%s\n", msg);
4624 dev_warn(&h->pdev->dev, "Abort request on C%d:B%d:T%d:L%d\n",
4625 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004626 /*
4627 * Command is in flight, or possibly already completed
4628 * by the firmware (but not to the scsi mid layer) but we can't
4629 * distinguish which. Send the abort down.
4630 */
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004631 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004632 if (rc != 0) {
4633 dev_dbg(&h->pdev->dev, "%s Request FAILED.\n", msg);
4634 dev_warn(&h->pdev->dev, "FAILED abort on device C%d:B%d:T%d:L%d\n",
4635 h->scsi_host->host_no,
4636 dev->bus, dev->target, dev->lun);
Webb Scales281a7fd2015-01-23 16:43:35 -06004637 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004638 return FAILED;
4639 }
4640 dev_info(&h->pdev->dev, "%s REQUEST SUCCEEDED.\n", msg);
4641
4642 /* If the abort(s) above completed and actually aborted the
4643 * command, then the command to be aborted should already be
4644 * completed. If not, wait around a bit more to see if they
4645 * manage to complete normally.
4646 */
4647#define ABORT_COMPLETE_WAIT_SECS 30
4648 for (i = 0; i < ABORT_COMPLETE_WAIT_SECS * 10; i++) {
Webb Scales281a7fd2015-01-23 16:43:35 -06004649 refcount = atomic_read(&abort->refcount);
4650 if (refcount < 2) {
4651 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004652 return SUCCESS;
Webb Scales281a7fd2015-01-23 16:43:35 -06004653 } else {
4654 msleep(100);
4655 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004656 }
4657 dev_warn(&h->pdev->dev, "%s FAILED. Aborted command has not completed after %d seconds.\n",
4658 msg, ABORT_COMPLETE_WAIT_SECS);
Webb Scales281a7fd2015-01-23 16:43:35 -06004659 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004660 return FAILED;
4661}
4662
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004663/*
4664 * For operations that cannot sleep, a command block is allocated at init,
4665 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
4666 * which ones are free or in use. Lock must be held when calling this.
4667 * cmd_free() is the complement.
4668 */
Webb Scales281a7fd2015-01-23 16:43:35 -06004669
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004670static struct CommandList *cmd_alloc(struct ctlr_info *h)
4671{
4672 struct CommandList *c;
4673 int i;
4674 union u64bit temp64;
4675 dma_addr_t cmd_dma_handle, err_dma_handle;
Webb Scales281a7fd2015-01-23 16:43:35 -06004676 int refcount;
Robert Elliott33811022015-01-23 16:43:41 -06004677 unsigned long offset;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004678
Robert Elliott33811022015-01-23 16:43:41 -06004679 /*
4680 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06004681 * multiple threads could get in here, and one thread could
4682 * be scanning through the list of bits looking for a free
4683 * one, but the free ones are always behind him, and other
4684 * threads sneak in behind him and eat them before he can
4685 * get to them, so that while there is always a free one, a
4686 * very unlucky thread might be starved anyway, never able to
4687 * beat the other threads. In reality, this happens so
4688 * infrequently as to be indistinguishable from never.
4689 */
4690
Robert Elliott33811022015-01-23 16:43:41 -06004691 offset = h->last_allocation; /* benignly racy */
Webb Scales281a7fd2015-01-23 16:43:35 -06004692 for (;;) {
4693 i = find_next_zero_bit(h->cmd_pool_bits, h->nr_cmds, offset);
4694 if (unlikely(i == h->nr_cmds)) {
4695 offset = 0;
4696 continue;
4697 }
4698 c = h->cmd_pool + i;
4699 refcount = atomic_inc_return(&c->refcount);
4700 if (unlikely(refcount > 1)) {
4701 cmd_free(h, c); /* already in use */
4702 offset = (i + 1) % h->nr_cmds;
4703 continue;
4704 }
4705 set_bit(i & (BITS_PER_LONG - 1),
4706 h->cmd_pool_bits + (i / BITS_PER_LONG));
4707 break; /* it's ours now. */
4708 }
Robert Elliott33811022015-01-23 16:43:41 -06004709 h->last_allocation = i; /* benignly racy */
Stephen M. Cameron4c413122014-11-14 17:27:29 -06004710
Webb Scales281a7fd2015-01-23 16:43:35 -06004711 /* Zero out all of commandlist except the last field, refcount */
4712 memset(c, 0, offsetof(struct CommandList, refcount));
4713 c->Header.tag = cpu_to_le64((u64) (i << DIRECT_LOOKUP_SHIFT));
Don Bracef2405db2015-01-23 16:43:09 -06004714 cmd_dma_handle = h->cmd_pool_dhandle + i * sizeof(*c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004715 c->err_info = h->errinfo_pool + i;
4716 memset(c->err_info, 0, sizeof(*c->err_info));
4717 err_dma_handle = h->errinfo_pool_dhandle
4718 + i * sizeof(*c->err_info);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004719
4720 c->cmdindex = i;
4721
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004722 c->busaddr = (u32) cmd_dma_handle;
4723 temp64.val = (u64) err_dma_handle;
Webb Scales281a7fd2015-01-23 16:43:35 -06004724 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4725 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004726
4727 c->h = h;
4728 return c;
4729}
4730
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004731static void cmd_free(struct ctlr_info *h, struct CommandList *c)
4732{
Webb Scales281a7fd2015-01-23 16:43:35 -06004733 if (atomic_dec_and_test(&c->refcount)) {
4734 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004735
Webb Scales281a7fd2015-01-23 16:43:35 -06004736 i = c - h->cmd_pool;
4737 clear_bit(i & (BITS_PER_LONG - 1),
4738 h->cmd_pool_bits + (i / BITS_PER_LONG));
4739 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004740}
4741
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004742#ifdef CONFIG_COMPAT
4743
Don Brace42a91642014-11-14 17:26:27 -06004744static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
4745 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004746{
4747 IOCTL32_Command_struct __user *arg32 =
4748 (IOCTL32_Command_struct __user *) arg;
4749 IOCTL_Command_struct arg64;
4750 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
4751 int err;
4752 u32 cp;
4753
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06004754 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004755 err = 0;
4756 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
4757 sizeof(arg64.LUN_info));
4758 err |= copy_from_user(&arg64.Request, &arg32->Request,
4759 sizeof(arg64.Request));
4760 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
4761 sizeof(arg64.error_info));
4762 err |= get_user(arg64.buf_size, &arg32->buf_size);
4763 err |= get_user(cp, &arg32->buf);
4764 arg64.buf = compat_ptr(cp);
4765 err |= copy_to_user(p, &arg64, sizeof(arg64));
4766
4767 if (err)
4768 return -EFAULT;
4769
Don Brace42a91642014-11-14 17:26:27 -06004770 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004771 if (err)
4772 return err;
4773 err |= copy_in_user(&arg32->error_info, &p->error_info,
4774 sizeof(arg32->error_info));
4775 if (err)
4776 return -EFAULT;
4777 return err;
4778}
4779
4780static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06004781 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004782{
4783 BIG_IOCTL32_Command_struct __user *arg32 =
4784 (BIG_IOCTL32_Command_struct __user *) arg;
4785 BIG_IOCTL_Command_struct arg64;
4786 BIG_IOCTL_Command_struct __user *p =
4787 compat_alloc_user_space(sizeof(arg64));
4788 int err;
4789 u32 cp;
4790
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06004791 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004792 err = 0;
4793 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
4794 sizeof(arg64.LUN_info));
4795 err |= copy_from_user(&arg64.Request, &arg32->Request,
4796 sizeof(arg64.Request));
4797 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
4798 sizeof(arg64.error_info));
4799 err |= get_user(arg64.buf_size, &arg32->buf_size);
4800 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
4801 err |= get_user(cp, &arg32->buf);
4802 arg64.buf = compat_ptr(cp);
4803 err |= copy_to_user(p, &arg64, sizeof(arg64));
4804
4805 if (err)
4806 return -EFAULT;
4807
Don Brace42a91642014-11-14 17:26:27 -06004808 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004809 if (err)
4810 return err;
4811 err |= copy_in_user(&arg32->error_info, &p->error_info,
4812 sizeof(arg32->error_info));
4813 if (err)
4814 return -EFAULT;
4815 return err;
4816}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06004817
Don Brace42a91642014-11-14 17:26:27 -06004818static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06004819{
4820 switch (cmd) {
4821 case CCISS_GETPCIINFO:
4822 case CCISS_GETINTINFO:
4823 case CCISS_SETINTINFO:
4824 case CCISS_GETNODENAME:
4825 case CCISS_SETNODENAME:
4826 case CCISS_GETHEARTBEAT:
4827 case CCISS_GETBUSTYPES:
4828 case CCISS_GETFIRMVER:
4829 case CCISS_GETDRIVVER:
4830 case CCISS_REVALIDVOLS:
4831 case CCISS_DEREGDISK:
4832 case CCISS_REGNEWDISK:
4833 case CCISS_REGNEWD:
4834 case CCISS_RESCANDISK:
4835 case CCISS_GETLUNINFO:
4836 return hpsa_ioctl(dev, cmd, arg);
4837
4838 case CCISS_PASSTHRU32:
4839 return hpsa_ioctl32_passthru(dev, cmd, arg);
4840 case CCISS_BIG_PASSTHRU32:
4841 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
4842
4843 default:
4844 return -ENOIOCTLCMD;
4845 }
4846}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004847#endif
4848
4849static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
4850{
4851 struct hpsa_pci_info pciinfo;
4852
4853 if (!argp)
4854 return -EINVAL;
4855 pciinfo.domain = pci_domain_nr(h->pdev->bus);
4856 pciinfo.bus = h->pdev->bus->number;
4857 pciinfo.dev_fn = h->pdev->devfn;
4858 pciinfo.board_id = h->board_id;
4859 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
4860 return -EFAULT;
4861 return 0;
4862}
4863
4864static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
4865{
4866 DriverVer_type DriverVer;
4867 unsigned char vmaj, vmin, vsubmin;
4868 int rc;
4869
4870 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
4871 &vmaj, &vmin, &vsubmin);
4872 if (rc != 3) {
4873 dev_info(&h->pdev->dev, "driver version string '%s' "
4874 "unrecognized.", HPSA_DRIVER_VERSION);
4875 vmaj = 0;
4876 vmin = 0;
4877 vsubmin = 0;
4878 }
4879 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
4880 if (!argp)
4881 return -EINVAL;
4882 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
4883 return -EFAULT;
4884 return 0;
4885}
4886
4887static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
4888{
4889 IOCTL_Command_struct iocommand;
4890 struct CommandList *c;
4891 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004892 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004893 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004894
4895 if (!argp)
4896 return -EINVAL;
4897 if (!capable(CAP_SYS_RAWIO))
4898 return -EPERM;
4899 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
4900 return -EFAULT;
4901 if ((iocommand.buf_size < 1) &&
4902 (iocommand.Request.Type.Direction != XFER_NONE)) {
4903 return -EINVAL;
4904 }
4905 if (iocommand.buf_size > 0) {
4906 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
4907 if (buff == NULL)
4908 return -EFAULT;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05004909 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004910 /* Copy the data into the buffer we created */
4911 if (copy_from_user(buff, iocommand.buf,
4912 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004913 rc = -EFAULT;
4914 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004915 }
4916 } else {
4917 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004918 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004919 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06004920 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004921 if (c == NULL) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004922 rc = -ENOMEM;
4923 goto out_kfree;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004924 }
4925 /* Fill in the command type */
4926 c->cmd_type = CMD_IOCTL_PEND;
4927 /* Fill in Command Header */
4928 c->Header.ReplyQueue = 0; /* unused in simple mode */
4929 if (iocommand.buf_size > 0) { /* buffer to fill */
4930 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004931 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004932 } else { /* no buffers to fill */
4933 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004934 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004935 }
4936 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004937
4938 /* Fill in Request block */
4939 memcpy(&c->Request, &iocommand.Request,
4940 sizeof(c->Request));
4941
4942 /* Fill in the scatter gather information */
4943 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004944 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004945 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004946 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
4947 c->SG[0].Addr = cpu_to_le64(0);
4948 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06004949 rc = -ENOMEM;
4950 goto out;
4951 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004952 c->SG[0].Addr = cpu_to_le64(temp64);
4953 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
4954 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004955 }
Stephen M. Camerona0c12412011-10-26 16:22:04 -05004956 hpsa_scsi_do_simple_cmd_core_if_no_lockup(h, c);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05004957 if (iocommand.buf_size > 0)
4958 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004959 check_ioctl_unit_attention(h, c);
4960
4961 /* Copy the error information out */
4962 memcpy(&iocommand.error_info, c->err_info,
4963 sizeof(iocommand.error_info));
4964 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004965 rc = -EFAULT;
4966 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004967 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05004968 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004969 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004970 /* Copy the data out of the buffer we created */
4971 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004972 rc = -EFAULT;
4973 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004974 }
4975 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004976out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06004977 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004978out_kfree:
4979 kfree(buff);
4980 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004981}
4982
4983static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
4984{
4985 BIG_IOCTL_Command_struct *ioc;
4986 struct CommandList *c;
4987 unsigned char **buff = NULL;
4988 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004989 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004990 BYTE sg_used = 0;
4991 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004992 u32 left;
4993 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004994 BYTE __user *data_ptr;
4995
4996 if (!argp)
4997 return -EINVAL;
4998 if (!capable(CAP_SYS_RAWIO))
4999 return -EPERM;
5000 ioc = (BIG_IOCTL_Command_struct *)
5001 kmalloc(sizeof(*ioc), GFP_KERNEL);
5002 if (!ioc) {
5003 status = -ENOMEM;
5004 goto cleanup1;
5005 }
5006 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
5007 status = -EFAULT;
5008 goto cleanup1;
5009 }
5010 if ((ioc->buf_size < 1) &&
5011 (ioc->Request.Type.Direction != XFER_NONE)) {
5012 status = -EINVAL;
5013 goto cleanup1;
5014 }
5015 /* Check kmalloc limits using all SGs */
5016 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
5017 status = -EINVAL;
5018 goto cleanup1;
5019 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005020 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005021 status = -EINVAL;
5022 goto cleanup1;
5023 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005024 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005025 if (!buff) {
5026 status = -ENOMEM;
5027 goto cleanup1;
5028 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005029 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005030 if (!buff_size) {
5031 status = -ENOMEM;
5032 goto cleanup1;
5033 }
5034 left = ioc->buf_size;
5035 data_ptr = ioc->buf;
5036 while (left) {
5037 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
5038 buff_size[sg_used] = sz;
5039 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
5040 if (buff[sg_used] == NULL) {
5041 status = -ENOMEM;
5042 goto cleanup1;
5043 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005044 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005045 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05005046 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005047 goto cleanup1;
5048 }
5049 } else
5050 memset(buff[sg_used], 0, sz);
5051 left -= sz;
5052 data_ptr += sz;
5053 sg_used++;
5054 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005055 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005056 if (c == NULL) {
5057 status = -ENOMEM;
5058 goto cleanup1;
5059 }
5060 c->cmd_type = CMD_IOCTL_PEND;
5061 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005062 c->Header.SGList = (u8) sg_used;
5063 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005064 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005065 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
5066 if (ioc->buf_size > 0) {
5067 int i;
5068 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005069 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005070 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005071 if (dma_mapping_error(&h->pdev->dev,
5072 (dma_addr_t) temp64)) {
5073 c->SG[i].Addr = cpu_to_le64(0);
5074 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005075 hpsa_pci_unmap(h->pdev, c, i,
5076 PCI_DMA_BIDIRECTIONAL);
5077 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005078 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005079 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005080 c->SG[i].Addr = cpu_to_le64(temp64);
5081 c->SG[i].Len = cpu_to_le32(buff_size[i]);
5082 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005083 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005084 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005085 }
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005086 hpsa_scsi_do_simple_cmd_core_if_no_lockup(h, c);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005087 if (sg_used)
5088 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005089 check_ioctl_unit_attention(h, c);
5090 /* Copy the error information out */
5091 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
5092 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005093 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005094 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005095 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005096 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005097 int i;
5098
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005099 /* Copy the data out of the buffer we created */
5100 BYTE __user *ptr = ioc->buf;
5101 for (i = 0; i < sg_used; i++) {
5102 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005103 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005104 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005105 }
5106 ptr += buff_size[i];
5107 }
5108 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005109 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005110cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005111 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005112cleanup1:
5113 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005114 int i;
5115
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005116 for (i = 0; i < sg_used; i++)
5117 kfree(buff[i]);
5118 kfree(buff);
5119 }
5120 kfree(buff_size);
5121 kfree(ioc);
5122 return status;
5123}
5124
5125static void check_ioctl_unit_attention(struct ctlr_info *h,
5126 struct CommandList *c)
5127{
5128 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5129 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
5130 (void) check_for_unit_attention(h, c);
5131}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005132
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005133/*
5134 * ioctl
5135 */
Don Brace42a91642014-11-14 17:26:27 -06005136static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005137{
5138 struct ctlr_info *h;
5139 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005140 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005141
5142 h = sdev_to_hba(dev);
5143
5144 switch (cmd) {
5145 case CCISS_DEREGDISK:
5146 case CCISS_REGNEWDISK:
5147 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005148 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005149 return 0;
5150 case CCISS_GETPCIINFO:
5151 return hpsa_getpciinfo_ioctl(h, argp);
5152 case CCISS_GETDRIVVER:
5153 return hpsa_getdrivver_ioctl(h, argp);
5154 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005155 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005156 return -EAGAIN;
5157 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005158 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005159 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005160 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005161 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005162 return -EAGAIN;
5163 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005164 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005165 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005166 default:
5167 return -ENOTTY;
5168 }
5169}
5170
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005171static int hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
5172 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005173{
5174 struct CommandList *c;
5175
5176 c = cmd_alloc(h);
5177 if (!c)
5178 return -ENOMEM;
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005179 /* fill_cmd can't fail here, no data buffer to map */
5180 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005181 RAID_CTLR_LUNID, TYPE_MSG);
5182 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
5183 c->waiting = NULL;
5184 enqueue_cmd_and_start_io(h, c);
5185 /* Don't wait for completion, the reset won't complete. Don't free
5186 * the command either. This is the last command we will send before
5187 * re-initializing everything, so it doesn't matter and won't leak.
5188 */
5189 return 0;
5190}
5191
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005192static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005193 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005194 int cmd_type)
5195{
5196 int pci_dir = XFER_NONE;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005197 struct CommandList *a; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005198
5199 c->cmd_type = CMD_IOCTL_PEND;
5200 c->Header.ReplyQueue = 0;
5201 if (buff != NULL && size > 0) {
5202 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005203 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005204 } else {
5205 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005206 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005207 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005208 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
5209
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005210 if (cmd_type == TYPE_CMD) {
5211 switch (cmd) {
5212 case HPSA_INQUIRY:
5213 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005214 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005215 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005216 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005217 }
5218 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005219 c->Request.type_attr_dir =
5220 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005221 c->Request.Timeout = 0;
5222 c->Request.CDB[0] = HPSA_INQUIRY;
5223 c->Request.CDB[4] = size & 0xFF;
5224 break;
5225 case HPSA_REPORT_LOG:
5226 case HPSA_REPORT_PHYS:
5227 /* Talking to controller so It's a physical command
5228 mode = 00 target = 0. Nothing to write.
5229 */
5230 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005231 c->Request.type_attr_dir =
5232 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005233 c->Request.Timeout = 0;
5234 c->Request.CDB[0] = cmd;
5235 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5236 c->Request.CDB[7] = (size >> 16) & 0xFF;
5237 c->Request.CDB[8] = (size >> 8) & 0xFF;
5238 c->Request.CDB[9] = size & 0xFF;
5239 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005240 case HPSA_CACHE_FLUSH:
5241 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005242 c->Request.type_attr_dir =
5243 TYPE_ATTR_DIR(cmd_type,
5244 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005245 c->Request.Timeout = 0;
5246 c->Request.CDB[0] = BMIC_WRITE;
5247 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05005248 c->Request.CDB[7] = (size >> 8) & 0xFF;
5249 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005250 break;
5251 case TEST_UNIT_READY:
5252 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005253 c->Request.type_attr_dir =
5254 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005255 c->Request.Timeout = 0;
5256 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005257 case HPSA_GET_RAID_MAP:
5258 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005259 c->Request.type_attr_dir =
5260 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005261 c->Request.Timeout = 0;
5262 c->Request.CDB[0] = HPSA_CISS_READ;
5263 c->Request.CDB[1] = cmd;
5264 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5265 c->Request.CDB[7] = (size >> 16) & 0xFF;
5266 c->Request.CDB[8] = (size >> 8) & 0xFF;
5267 c->Request.CDB[9] = size & 0xFF;
5268 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005269 case BMIC_SENSE_CONTROLLER_PARAMETERS:
5270 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005271 c->Request.type_attr_dir =
5272 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005273 c->Request.Timeout = 0;
5274 c->Request.CDB[0] = BMIC_READ;
5275 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
5276 c->Request.CDB[7] = (size >> 16) & 0xFF;
5277 c->Request.CDB[8] = (size >> 8) & 0xFF;
5278 break;
Don Brace03383732015-01-23 16:43:30 -06005279 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
5280 c->Request.CDBLen = 10;
5281 c->Request.type_attr_dir =
5282 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
5283 c->Request.Timeout = 0;
5284 c->Request.CDB[0] = BMIC_READ;
5285 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
5286 c->Request.CDB[7] = (size >> 16) & 0xFF;
5287 c->Request.CDB[8] = (size >> 8) & 0XFF;
5288 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005289 default:
5290 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
5291 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005292 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005293 }
5294 } else if (cmd_type == TYPE_MSG) {
5295 switch (cmd) {
5296
5297 case HPSA_DEVICE_RESET_MSG:
5298 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005299 c->Request.type_attr_dir =
5300 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005301 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005302 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
5303 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05005304 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005305 /* If bytes 4-7 are zero, it means reset the */
5306 /* LunID device */
5307 c->Request.CDB[4] = 0x00;
5308 c->Request.CDB[5] = 0x00;
5309 c->Request.CDB[6] = 0x00;
5310 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005311 break;
5312 case HPSA_ABORT_MSG:
5313 a = buff; /* point to command to be aborted */
Don Brace2b08b3e2015-01-23 16:41:09 -06005314 dev_dbg(&h->pdev->dev,
5315 "Abort Tag:0x%016llx request Tag:0x%016llx",
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005316 a->Header.tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005317 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005318 c->Request.type_attr_dir =
5319 TYPE_ATTR_DIR(cmd_type,
5320 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005321 c->Request.Timeout = 0; /* Don't time out */
5322 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
5323 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
5324 c->Request.CDB[2] = 0x00; /* reserved */
5325 c->Request.CDB[3] = 0x00; /* reserved */
5326 /* Tag to abort goes in CDB[4]-CDB[11] */
Don Brace2b08b3e2015-01-23 16:41:09 -06005327 memcpy(&c->Request.CDB[4], &a->Header.tag,
5328 sizeof(a->Header.tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005329 c->Request.CDB[12] = 0x00; /* reserved */
5330 c->Request.CDB[13] = 0x00; /* reserved */
5331 c->Request.CDB[14] = 0x00; /* reserved */
5332 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005333 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005334 default:
5335 dev_warn(&h->pdev->dev, "unknown message type %d\n",
5336 cmd);
5337 BUG();
5338 }
5339 } else {
5340 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
5341 BUG();
5342 }
5343
Stephen M. Camerona505b862014-11-14 17:27:04 -06005344 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005345 case XFER_READ:
5346 pci_dir = PCI_DMA_FROMDEVICE;
5347 break;
5348 case XFER_WRITE:
5349 pci_dir = PCI_DMA_TODEVICE;
5350 break;
5351 case XFER_NONE:
5352 pci_dir = PCI_DMA_NONE;
5353 break;
5354 default:
5355 pci_dir = PCI_DMA_BIDIRECTIONAL;
5356 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005357 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
5358 return -1;
5359 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005360}
5361
5362/*
5363 * Map (physical) PCI mem into (virtual) kernel space
5364 */
5365static void __iomem *remap_pci_mem(ulong base, ulong size)
5366{
5367 ulong page_base = ((ulong) base) & PAGE_MASK;
5368 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05005369 void __iomem *page_remapped = ioremap_nocache(page_base,
5370 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005371
5372 return page_remapped ? (page_remapped + page_offs) : NULL;
5373}
5374
Matt Gates254f7962012-05-01 11:43:06 -05005375static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005376{
Matt Gates254f7962012-05-01 11:43:06 -05005377 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005378}
5379
Stephen M. Cameron900c5442010-02-04 08:42:35 -06005380static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005381{
5382 return h->access.intr_pending(h);
5383}
5384
5385static inline long interrupt_not_for_us(struct ctlr_info *h)
5386{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005387 return (h->access.intr_pending(h) == 0) ||
5388 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005389}
5390
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005391static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
5392 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005393{
5394 if (unlikely(tag_index >= h->nr_cmds)) {
5395 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
5396 return 1;
5397 }
5398 return 0;
5399}
5400
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05005401static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005402{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05005403 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06005404 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
5405 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05005406 complete_scsi_command(c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005407 else if (c->cmd_type == CMD_IOCTL_PEND)
5408 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06005409}
5410
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005411
5412static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06005413{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005414#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
5415#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06005416 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005417 return tag & ~HPSA_SIMPLE_ERROR_BITS;
5418 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06005419}
5420
Don Brace303932f2010-02-04 08:42:40 -06005421/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005422static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06005423 u32 raw_tag)
5424{
5425 u32 tag_index;
5426 struct CommandList *c;
5427
Don Bracef2405db2015-01-23 16:43:09 -06005428 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005429 if (!bad_tag(h, tag_index, raw_tag)) {
5430 c = h->cmd_pool + tag_index;
5431 finish_cmd(c);
5432 }
Don Brace303932f2010-02-04 08:42:40 -06005433}
5434
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005435/* Some controllers, like p400, will give us one interrupt
5436 * after a soft reset, even if we turned interrupts off.
5437 * Only need to check for this in the hpsa_xxx_discard_completions
5438 * functions.
5439 */
5440static int ignore_bogus_interrupt(struct ctlr_info *h)
5441{
5442 if (likely(!reset_devices))
5443 return 0;
5444
5445 if (likely(h->interrupts_enabled))
5446 return 0;
5447
5448 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
5449 "(known firmware bug.) Ignoring.\n");
5450
5451 return 1;
5452}
5453
Matt Gates254f7962012-05-01 11:43:06 -05005454/*
5455 * Convert &h->q[x] (passed to interrupt handlers) back to h.
5456 * Relies on (h-q[x] == x) being true for x such that
5457 * 0 <= x < MAX_REPLY_QUEUES.
5458 */
5459static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005460{
Matt Gates254f7962012-05-01 11:43:06 -05005461 return container_of((queue - *queue), struct ctlr_info, q[0]);
5462}
5463
5464static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
5465{
5466 struct ctlr_info *h = queue_to_hba(queue);
5467 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005468 u32 raw_tag;
5469
5470 if (ignore_bogus_interrupt(h))
5471 return IRQ_NONE;
5472
5473 if (interrupt_not_for_us(h))
5474 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005475 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005476 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005477 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005478 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005479 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005480 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005481 return IRQ_HANDLED;
5482}
5483
Matt Gates254f7962012-05-01 11:43:06 -05005484static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005485{
Matt Gates254f7962012-05-01 11:43:06 -05005486 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005487 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005488 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005489
5490 if (ignore_bogus_interrupt(h))
5491 return IRQ_NONE;
5492
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005493 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005494 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005495 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005496 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005497 return IRQ_HANDLED;
5498}
5499
Matt Gates254f7962012-05-01 11:43:06 -05005500static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005501{
Matt Gates254f7962012-05-01 11:43:06 -05005502 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06005503 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005504 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005505
5506 if (interrupt_not_for_us(h))
5507 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005508 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005509 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005510 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005511 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06005512 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005513 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005514 }
5515 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005516 return IRQ_HANDLED;
5517}
5518
Matt Gates254f7962012-05-01 11:43:06 -05005519static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005520{
Matt Gates254f7962012-05-01 11:43:06 -05005521 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005522 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005523 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005524
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005525 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005526 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06005527 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06005528 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005529 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005530 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005531 return IRQ_HANDLED;
5532}
5533
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005534/* Send a message CDB to the firmware. Careful, this only works
5535 * in simple mode, not performant mode due to the tag lookup.
5536 * We only ever use this immediately after a controller reset.
5537 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005538static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
5539 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005540{
5541 struct Command {
5542 struct CommandListHeader CommandHeader;
5543 struct RequestBlock Request;
5544 struct ErrDescriptor ErrorDescriptor;
5545 };
5546 struct Command *cmd;
5547 static const size_t cmd_sz = sizeof(*cmd) +
5548 sizeof(cmd->ErrorDescriptor);
5549 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06005550 __le32 paddr32;
5551 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005552 void __iomem *vaddr;
5553 int i, err;
5554
5555 vaddr = pci_ioremap_bar(pdev, 0);
5556 if (vaddr == NULL)
5557 return -ENOMEM;
5558
5559 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
5560 * CCISS commands, so they must be allocated from the lower 4GiB of
5561 * memory.
5562 */
5563 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
5564 if (err) {
5565 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06005566 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005567 }
5568
5569 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
5570 if (cmd == NULL) {
5571 iounmap(vaddr);
5572 return -ENOMEM;
5573 }
5574
5575 /* This must fit, because of the 32-bit consistent DMA mask. Also,
5576 * although there's no guarantee, we assume that the address is at
5577 * least 4-byte aligned (most likely, it's page-aligned).
5578 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005579 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005580
5581 cmd->CommandHeader.ReplyQueue = 0;
5582 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005583 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06005584 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005585 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
5586
5587 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005588 cmd->Request.type_attr_dir =
5589 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005590 cmd->Request.Timeout = 0; /* Don't time out */
5591 cmd->Request.CDB[0] = opcode;
5592 cmd->Request.CDB[1] = type;
5593 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005594 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06005595 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005596 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005597
Don Brace2b08b3e2015-01-23 16:41:09 -06005598 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005599
5600 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
5601 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06005602 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005603 break;
5604 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
5605 }
5606
5607 iounmap(vaddr);
5608
5609 /* we leak the DMA buffer here ... no choice since the controller could
5610 * still complete the command.
5611 */
5612 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
5613 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
5614 opcode, type);
5615 return -ETIMEDOUT;
5616 }
5617
5618 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
5619
5620 if (tag & HPSA_ERROR_BIT) {
5621 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
5622 opcode, type);
5623 return -EIO;
5624 }
5625
5626 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
5627 opcode, type);
5628 return 0;
5629}
5630
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005631#define hpsa_noop(p) hpsa_message(p, 3, 0)
5632
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005633static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06005634 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005635{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005636
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005637 if (use_doorbell) {
5638 /* For everything after the P600, the PCI power state method
5639 * of resetting the controller doesn't work, so we have this
5640 * other way using the doorbell register.
5641 */
5642 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005643 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05005644
Justin Lindley00701a92014-05-29 10:52:47 -05005645 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05005646 * doorbell reset and before any attempt to talk to the board
5647 * at all to ensure that this actually works and doesn't fall
5648 * over in some weird corner cases.
5649 */
Justin Lindley00701a92014-05-29 10:52:47 -05005650 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005651 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005652
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005653 /* Quoting from the Open CISS Specification: "The Power
5654 * Management Control/Status Register (CSR) controls the power
5655 * state of the device. The normal operating state is D0,
5656 * CSR=00h. The software off state is D3, CSR=03h. To reset
5657 * the controller, place the interface device in D3 then to D0,
5658 * this causes a secondary PCI reset which will reset the
5659 * controller." */
5660
Don Brace2662cab2015-01-23 16:41:25 -06005661 int rc = 0;
5662
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005663 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06005664
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005665 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06005666 rc = pci_set_power_state(pdev, PCI_D3hot);
5667 if (rc)
5668 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005669
5670 msleep(500);
5671
5672 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06005673 rc = pci_set_power_state(pdev, PCI_D0);
5674 if (rc)
5675 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02005676
5677 /*
5678 * The P600 requires a small delay when changing states.
5679 * Otherwise we may think the board did not reset and we bail.
5680 * This for kdump only and is particular to the P600.
5681 */
5682 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005683 }
5684 return 0;
5685}
5686
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005687static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005688{
5689 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06005690 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005691}
5692
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005693static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005694{
5695 char *driver_version;
5696 int i, size = sizeof(cfgtable->driver_version);
5697
5698 driver_version = kmalloc(size, GFP_KERNEL);
5699 if (!driver_version)
5700 return -ENOMEM;
5701
5702 init_driver_version(driver_version, size);
5703 for (i = 0; i < size; i++)
5704 writeb(driver_version[i], &cfgtable->driver_version[i]);
5705 kfree(driver_version);
5706 return 0;
5707}
5708
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005709static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
5710 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005711{
5712 int i;
5713
5714 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
5715 driver_ver[i] = readb(&cfgtable->driver_version[i]);
5716}
5717
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005718static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005719{
5720
5721 char *driver_ver, *old_driver_ver;
5722 int rc, size = sizeof(cfgtable->driver_version);
5723
5724 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
5725 if (!old_driver_ver)
5726 return -ENOMEM;
5727 driver_ver = old_driver_ver + size;
5728
5729 /* After a reset, the 32 bytes of "driver version" in the cfgtable
5730 * should have been changed, otherwise we know the reset failed.
5731 */
5732 init_driver_version(old_driver_ver, size);
5733 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
5734 rc = !memcmp(driver_ver, old_driver_ver, size);
5735 kfree(old_driver_ver);
5736 return rc;
5737}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005738/* This does a hard reset of the controller using PCI power management
5739 * states or the using the doorbell register.
5740 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005741static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005742{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005743 u64 cfg_offset;
5744 u32 cfg_base_addr;
5745 u64 cfg_base_addr_index;
5746 void __iomem *vaddr;
5747 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005748 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005749 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005750 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005751 u32 use_doorbell;
Stephen M. Cameron18867652010-06-16 13:51:45 -05005752 u32 board_id;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005753 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005754
5755 /* For controllers as old as the P600, this is very nearly
5756 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005757 *
5758 * pci_save_state(pci_dev);
5759 * pci_set_power_state(pci_dev, PCI_D3hot);
5760 * pci_set_power_state(pci_dev, PCI_D0);
5761 * pci_restore_state(pci_dev);
5762 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005763 * For controllers newer than the P600, the pci power state
5764 * method of resetting doesn't work so we have another way
5765 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005766 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05005767
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06005768 rc = hpsa_lookup_board_id(pdev, &board_id);
Robert Elliott60f923b2015-01-23 16:42:06 -06005769 if (rc < 0) {
5770 dev_warn(&pdev->dev, "Board ID not found\n");
5771 return rc;
5772 }
5773 if (!ctlr_is_resettable(board_id)) {
5774 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06005775 return -ENODEV;
5776 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05005777
5778 /* if controller is soft- but not hard resettable... */
5779 if (!ctlr_is_hard_resettable(board_id))
5780 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05005781
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005782 /* Save the PCI command register */
5783 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005784 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005785
5786 /* find the first memory BAR, so we can find the cfg table */
5787 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
5788 if (rc)
5789 return rc;
5790 vaddr = remap_pci_mem(paddr, 0x250);
5791 if (!vaddr)
5792 return -ENOMEM;
5793
5794 /* find cfgtable in order to check if reset via doorbell is supported */
5795 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
5796 &cfg_base_addr_index, &cfg_offset);
5797 if (rc)
5798 goto unmap_vaddr;
5799 cfgtable = remap_pci_mem(pci_resource_start(pdev,
5800 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
5801 if (!cfgtable) {
5802 rc = -ENOMEM;
5803 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005804 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005805 rc = write_driver_ver_to_cfgtable(cfgtable);
5806 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06005807 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005808
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005809 /* If reset via doorbell register is supported, use that.
5810 * There are two such methods. Favor the newest method.
5811 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005812 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005813 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
5814 if (use_doorbell) {
5815 use_doorbell = DOORBELL_CTLR_RESET2;
5816 } else {
5817 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
5818 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06005819 dev_warn(&pdev->dev,
5820 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005821 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005822 goto unmap_cfgtable;
5823 }
5824 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005825
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005826 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
5827 if (rc)
5828 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005829
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005830 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005831 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005832
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005833 /* Some devices (notably the HP Smart Array 5i Controller)
5834 need a little pause here */
5835 msleep(HPSA_POST_RESET_PAUSE_MSECS);
5836
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005837 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
5838 if (rc) {
5839 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06005840 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005841 goto unmap_cfgtable;
5842 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005843
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005844 rc = controller_reset_failed(vaddr);
5845 if (rc < 0)
5846 goto unmap_cfgtable;
5847 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005848 dev_warn(&pdev->dev, "Unable to successfully reset "
5849 "controller. Will try soft reset.\n");
5850 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005851 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005852 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005853 }
5854
5855unmap_cfgtable:
5856 iounmap(cfgtable);
5857
5858unmap_vaddr:
5859 iounmap(vaddr);
5860 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005861}
5862
5863/*
5864 * We cannot read the structure directly, for portability we must use
5865 * the io functions.
5866 * This is for debug only.
5867 */
Don Brace42a91642014-11-14 17:26:27 -06005868static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005869{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05005870#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005871 int i;
5872 char temp_name[17];
5873
5874 dev_info(dev, "Controller Configuration information\n");
5875 dev_info(dev, "------------------------------------\n");
5876 for (i = 0; i < 4; i++)
5877 temp_name[i] = readb(&(tb->Signature[i]));
5878 temp_name[4] = '\0';
5879 dev_info(dev, " Signature = %s\n", temp_name);
5880 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
5881 dev_info(dev, " Transport methods supported = 0x%x\n",
5882 readl(&(tb->TransportSupport)));
5883 dev_info(dev, " Transport methods active = 0x%x\n",
5884 readl(&(tb->TransportActive)));
5885 dev_info(dev, " Requested transport Method = 0x%x\n",
5886 readl(&(tb->HostWrite.TransportRequest)));
5887 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
5888 readl(&(tb->HostWrite.CoalIntDelay)));
5889 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
5890 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06005891 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005892 readl(&(tb->CmdsOutMax)));
5893 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
5894 for (i = 0; i < 16; i++)
5895 temp_name[i] = readb(&(tb->ServerName[i]));
5896 temp_name[16] = '\0';
5897 dev_info(dev, " Server Name = %s\n", temp_name);
5898 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
5899 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005900#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05005901}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005902
5903static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
5904{
5905 int i, offset, mem_type, bar_type;
5906
5907 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
5908 return 0;
5909 offset = 0;
5910 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
5911 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
5912 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
5913 offset += 4;
5914 else {
5915 mem_type = pci_resource_flags(pdev, i) &
5916 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
5917 switch (mem_type) {
5918 case PCI_BASE_ADDRESS_MEM_TYPE_32:
5919 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
5920 offset += 4; /* 32 bit */
5921 break;
5922 case PCI_BASE_ADDRESS_MEM_TYPE_64:
5923 offset += 8;
5924 break;
5925 default: /* reserved in PCI 2.2 */
5926 dev_warn(&pdev->dev,
5927 "base address is invalid\n");
5928 return -1;
5929 break;
5930 }
5931 }
5932 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
5933 return i + 1;
5934 }
5935 return -1;
5936}
5937
5938/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06005939 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005940 */
5941
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005942static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005943{
5944#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05005945 int err, i;
5946 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
5947
5948 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
5949 hpsa_msix_entries[i].vector = 0;
5950 hpsa_msix_entries[i].entry = i;
5951 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005952
5953 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05005954 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
5955 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005956 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005957 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06005958 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01005959 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05005960 if (h->msix_vector > num_online_cpus())
5961 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02005962 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
5963 1, h->msix_vector);
5964 if (err < 0) {
5965 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
5966 h->msix_vector = 0;
5967 goto single_msi_mode;
5968 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005969 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005970 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01005971 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02005972 h->msix_vector = err;
5973 for (i = 0; i < h->msix_vector; i++)
5974 h->intr[i] = hpsa_msix_entries[i].vector;
5975 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005976 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02005977single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005978 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06005979 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005980 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005981 h->msi_vector = 1;
5982 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05005983 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005984 }
5985default_int_mode:
5986#endif /* CONFIG_PCI_MSI */
5987 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005988 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005989}
5990
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005991static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05005992{
5993 int i;
5994 u32 subsystem_vendor_id, subsystem_device_id;
5995
5996 subsystem_vendor_id = pdev->subsystem_vendor;
5997 subsystem_device_id = pdev->subsystem_device;
5998 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
5999 subsystem_vendor_id;
6000
6001 for (i = 0; i < ARRAY_SIZE(products); i++)
6002 if (*board_id == products[i].board_id)
6003 return i;
6004
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05006005 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
6006 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
6007 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006008 dev_warn(&pdev->dev, "unrecognized board ID: "
6009 "0x%08x, ignoring.\n", *board_id);
6010 return -ENODEV;
6011 }
6012 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
6013}
6014
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006015static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
6016 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006017{
6018 int i;
6019
6020 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006021 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006022 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006023 *memory_bar = pci_resource_start(pdev, i);
6024 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006025 *memory_bar);
6026 return 0;
6027 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006028 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006029 return -ENODEV;
6030}
6031
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006032static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
6033 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006034{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006035 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006036 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006037 if (wait_for_ready)
6038 iterations = HPSA_BOARD_READY_ITERATIONS;
6039 else
6040 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006041
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006042 for (i = 0; i < iterations; i++) {
6043 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
6044 if (wait_for_ready) {
6045 if (scratchpad == HPSA_FIRMWARE_READY)
6046 return 0;
6047 } else {
6048 if (scratchpad != HPSA_FIRMWARE_READY)
6049 return 0;
6050 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006051 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
6052 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006053 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006054 return -ENODEV;
6055}
6056
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006057static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
6058 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
6059 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006060{
6061 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
6062 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
6063 *cfg_base_addr &= (u32) 0x0000ffff;
6064 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
6065 if (*cfg_base_addr_index == -1) {
6066 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
6067 return -ENODEV;
6068 }
6069 return 0;
6070}
6071
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006072static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006073{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006074 u64 cfg_offset;
6075 u32 cfg_base_addr;
6076 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06006077 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006078 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006079
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006080 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
6081 &cfg_base_addr_index, &cfg_offset);
6082 if (rc)
6083 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006084 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006085 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006086 if (!h->cfgtable) {
6087 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006088 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006089 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006090 rc = write_driver_ver_to_cfgtable(h->cfgtable);
6091 if (rc)
6092 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006093 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006094 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006095 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
6096 cfg_base_addr_index)+cfg_offset+trans_offset,
6097 sizeof(*h->transtable));
6098 if (!h->transtable)
6099 return -ENOMEM;
6100 return 0;
6101}
6102
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006103static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006104{
6105 h->max_commands = readl(&(h->cfgtable->MaxPerformantModeCommands));
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06006106
6107 /* Limit commands in memory limited kdump scenario. */
6108 if (reset_devices && h->max_commands > 32)
6109 h->max_commands = 32;
6110
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006111 if (h->max_commands < 16) {
6112 dev_warn(&h->pdev->dev, "Controller reports "
6113 "max supported commands of %d, an obvious lie. "
6114 "Using 16. Ensure that firmware is up to date.\n",
6115 h->max_commands);
6116 h->max_commands = 16;
6117 }
6118}
6119
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006120/* If the controller reports that the total max sg entries is greater than 512,
6121 * then we know that chained SG blocks work. (Original smart arrays did not
6122 * support chained SG blocks and would return zero for max sg entries.)
6123 */
6124static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
6125{
6126 return h->maxsgentries > 512;
6127}
6128
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006129/* Interrogate the hardware for some limits:
6130 * max commands, max SG elements without chaining, and with chaining,
6131 * SG chain block size, etc.
6132 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006133static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006134{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006135 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06006136 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006137 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006138 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006139 if (hpsa_supports_chained_sg_blocks(h)) {
6140 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006141 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06006142 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006143 h->maxsgentries--; /* save one for chain pointer */
6144 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006145 /*
6146 * Original smart arrays supported at most 31 s/g entries
6147 * embedded inline in the command (trying to use more
6148 * would lock up the controller)
6149 */
6150 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06006151 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006152 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006153 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006154
6155 /* Find out what task management functions are supported and cache */
6156 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06006157 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
6158 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
6159 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6160 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006161}
6162
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006163static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
6164{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09006165 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006166 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006167 return false;
6168 }
6169 return true;
6170}
6171
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006172static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006173{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006174 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006175
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006176 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02006177 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
6178#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006179 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006180#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06006181 driver_support |= ENABLE_UNIT_ATTN;
6182 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006183}
6184
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006185/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
6186 * in a prefetch beyond physical memory.
6187 */
6188static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
6189{
6190 u32 dma_prefetch;
6191
6192 if (h->board_id != 0x3225103C)
6193 return;
6194 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
6195 dma_prefetch |= 0x8000;
6196 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
6197}
6198
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006199static void hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
6200{
6201 int i;
6202 u32 doorbell_value;
6203 unsigned long flags;
6204 /* wait until the clear_event_notify bit 6 is cleared by controller. */
6205 for (i = 0; i < MAX_CONFIG_WAIT; i++) {
6206 spin_lock_irqsave(&h->lock, flags);
6207 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6208 spin_unlock_irqrestore(&h->lock, flags);
6209 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
6210 break;
6211 /* delay and try again */
6212 msleep(20);
6213 }
6214}
6215
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006216static void hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006217{
6218 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006219 u32 doorbell_value;
6220 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006221
6222 /* under certain very rare conditions, this can take awhile.
6223 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
6224 * as we enter this code.)
6225 */
6226 for (i = 0; i < MAX_CONFIG_WAIT; i++) {
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006227 spin_lock_irqsave(&h->lock, flags);
6228 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6229 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06006230 if (!(doorbell_value & CFGTBL_ChangeReq))
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006231 break;
6232 /* delay and try again */
Stephen M. Cameron60d3f5b2011-01-06 14:48:34 -06006233 usleep_range(10000, 20000);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006234 }
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006235}
6236
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006237static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006238{
6239 u32 trans_support;
6240
6241 trans_support = readl(&(h->cfgtable->TransportSupport));
6242 if (!(trans_support & SIMPLE_MODE))
6243 return -ENOTSUPP;
6244
6245 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006246
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006247 /* Update the field, and then ring the doorbell */
6248 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06006249 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006250 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
6251 hpsa_wait_for_mode_change_ack(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006252 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006253 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
6254 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006255 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006256 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006257error:
Stephen Cameron050f7142015-01-23 16:42:22 -06006258 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006259 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006260}
6261
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006262static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006263{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006264 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006265
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006266 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
6267 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06006268 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006269 h->product_name = products[prod_index].product_name;
6270 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006271
Matthew Garrette5a44df2011-11-11 11:14:23 -05006272 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
6273 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
6274
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006275 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006276 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006277 dev_warn(&h->pdev->dev, "unable to enable PCI device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006278 return err;
6279 }
6280
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006281 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006282 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006283 dev_err(&h->pdev->dev,
6284 "cannot obtain PCI resources, aborting\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006285 return err;
6286 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006287
6288 pci_set_master(h->pdev);
6289
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006290 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006291 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006292 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006293 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006294 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006295 if (!h->vaddr) {
6296 err = -ENOMEM;
6297 goto err_out_free_res;
6298 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006299 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006300 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006301 goto err_out_free_res;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006302 err = hpsa_find_cfgtables(h);
6303 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006304 goto err_out_free_res;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006305 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006306
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006307 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006308 err = -ENODEV;
6309 goto err_out_free_res;
6310 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006311 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006312 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006313 err = hpsa_enter_simple_mode(h);
6314 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006315 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006316 return 0;
6317
6318err_out_free_res:
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006319 if (h->transtable)
6320 iounmap(h->transtable);
6321 if (h->cfgtable)
6322 iounmap(h->cfgtable);
6323 if (h->vaddr)
6324 iounmap(h->vaddr);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05006325 pci_disable_device(h->pdev);
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006326 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006327 return err;
6328}
6329
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006330static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006331{
6332 int rc;
6333
6334#define HBA_INQUIRY_BYTE_COUNT 64
6335 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
6336 if (!h->hba_inquiry_data)
6337 return;
6338 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
6339 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
6340 if (rc != 0) {
6341 kfree(h->hba_inquiry_data);
6342 h->hba_inquiry_data = NULL;
6343 }
6344}
6345
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006346static int hpsa_init_reset_devices(struct pci_dev *pdev)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006347{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006348 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06006349 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006350
6351 if (!reset_devices)
6352 return 0;
6353
Tomas Henzl132aa222014-08-14 16:12:39 +02006354 /* kdump kernel is loading, we don't know in which state is
6355 * the pci interface. The dev->enable_cnt is equal zero
6356 * so we call enable+disable, wait a while and switch it on.
6357 */
6358 rc = pci_enable_device(pdev);
6359 if (rc) {
6360 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
6361 return -ENODEV;
6362 }
6363 pci_disable_device(pdev);
6364 msleep(260); /* a randomly chosen number */
6365 rc = pci_enable_device(pdev);
6366 if (rc) {
6367 dev_warn(&pdev->dev, "failed to enable device.\n");
6368 return -ENODEV;
6369 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006370
Tomas Henzl859c75a2014-09-12 14:44:15 +02006371 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06006372
Tomas Henzl3b747292015-01-23 16:41:20 -06006373 vaddr = pci_ioremap_bar(pdev, 0);
6374 if (vaddr == NULL) {
6375 rc = -ENOMEM;
6376 goto out_disable;
6377 }
6378 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
6379 iounmap(vaddr);
6380
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006381 /* Reset the controller with a PCI power-cycle or via doorbell */
6382 rc = hpsa_kdump_hard_reset_controller(pdev);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006383
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006384 /* -ENOTSUPP here means we cannot reset the controller
6385 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05006386 * "performant mode". Or, it might be 640x, which can't reset
6387 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006388 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06006389 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02006390 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006391
6392 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06006393 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006394 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
6395 if (hpsa_noop(pdev) == 0)
6396 break;
6397 else
6398 dev_warn(&pdev->dev, "no-op failed%s\n",
6399 (i < 11 ? "; re-trying" : ""));
6400 }
Tomas Henzl132aa222014-08-14 16:12:39 +02006401
6402out_disable:
6403
6404 pci_disable_device(pdev);
6405 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006406}
6407
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006408static int hpsa_allocate_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006409{
6410 h->cmd_pool_bits = kzalloc(
6411 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
6412 sizeof(unsigned long), GFP_KERNEL);
6413 h->cmd_pool = pci_alloc_consistent(h->pdev,
6414 h->nr_cmds * sizeof(*h->cmd_pool),
6415 &(h->cmd_pool_dhandle));
6416 h->errinfo_pool = pci_alloc_consistent(h->pdev,
6417 h->nr_cmds * sizeof(*h->errinfo_pool),
6418 &(h->errinfo_pool_dhandle));
6419 if ((h->cmd_pool_bits == NULL)
6420 || (h->cmd_pool == NULL)
6421 || (h->errinfo_pool == NULL)) {
6422 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06006423 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006424 }
6425 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06006426clean_up:
6427 hpsa_free_cmd_pool(h);
6428 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006429}
6430
6431static void hpsa_free_cmd_pool(struct ctlr_info *h)
6432{
6433 kfree(h->cmd_pool_bits);
6434 if (h->cmd_pool)
6435 pci_free_consistent(h->pdev,
6436 h->nr_cmds * sizeof(struct CommandList),
6437 h->cmd_pool, h->cmd_pool_dhandle);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06006438 if (h->ioaccel2_cmd_pool)
6439 pci_free_consistent(h->pdev,
6440 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
6441 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006442 if (h->errinfo_pool)
6443 pci_free_consistent(h->pdev,
6444 h->nr_cmds * sizeof(struct ErrorInfo),
6445 h->errinfo_pool,
6446 h->errinfo_pool_dhandle);
Matt Gatese1f7de02014-02-18 13:55:17 -06006447 if (h->ioaccel_cmd_pool)
6448 pci_free_consistent(h->pdev,
6449 h->nr_cmds * sizeof(struct io_accel1_cmd),
6450 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006451}
6452
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006453static void hpsa_irq_affinity_hints(struct ctlr_info *h)
6454{
Fabian Frederickec429952015-01-23 16:41:46 -06006455 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006456
6457 cpu = cpumask_first(cpu_online_mask);
6458 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06006459 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006460 cpu = cpumask_next(cpu, cpu_online_mask);
6461 }
6462}
6463
Robert Elliottec501a12015-01-23 16:41:40 -06006464/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
6465static void hpsa_free_irqs(struct ctlr_info *h)
6466{
6467 int i;
6468
6469 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
6470 /* Single reply queue, only one irq to free */
6471 i = h->intr_mode;
6472 irq_set_affinity_hint(h->intr[i], NULL);
6473 free_irq(h->intr[i], &h->q[i]);
6474 return;
6475 }
6476
6477 for (i = 0; i < h->msix_vector; i++) {
6478 irq_set_affinity_hint(h->intr[i], NULL);
6479 free_irq(h->intr[i], &h->q[i]);
6480 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006481 for (; i < MAX_REPLY_QUEUES; i++)
6482 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06006483}
6484
Robert Elliott9ee61792015-01-23 16:42:32 -06006485/* returns 0 on success; cleans up and returns -Enn on error */
6486static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006487 irqreturn_t (*msixhandler)(int, void *),
6488 irqreturn_t (*intxhandler)(int, void *))
6489{
Matt Gates254f7962012-05-01 11:43:06 -05006490 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006491
Matt Gates254f7962012-05-01 11:43:06 -05006492 /*
6493 * initialize h->q[x] = x so that interrupt handlers know which
6494 * queue to process.
6495 */
6496 for (i = 0; i < MAX_REPLY_QUEUES; i++)
6497 h->q[i] = (u8) i;
6498
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006499 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05006500 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006501 for (i = 0; i < h->msix_vector; i++) {
Matt Gates254f7962012-05-01 11:43:06 -05006502 rc = request_irq(h->intr[i], msixhandler,
6503 0, h->devname,
6504 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006505 if (rc) {
6506 int j;
6507
6508 dev_err(&h->pdev->dev,
6509 "failed to get irq %d for %s\n",
6510 h->intr[i], h->devname);
6511 for (j = 0; j < i; j++) {
6512 free_irq(h->intr[j], &h->q[j]);
6513 h->q[j] = 0;
6514 }
6515 for (; j < MAX_REPLY_QUEUES; j++)
6516 h->q[j] = 0;
6517 return rc;
6518 }
6519 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006520 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05006521 } else {
6522 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006523 if (h->msix_vector > 0 || h->msi_vector) {
Matt Gates254f7962012-05-01 11:43:06 -05006524 rc = request_irq(h->intr[h->intr_mode],
6525 msixhandler, 0, h->devname,
6526 &h->q[h->intr_mode]);
6527 } else {
6528 rc = request_irq(h->intr[h->intr_mode],
6529 intxhandler, IRQF_SHARED, h->devname,
6530 &h->q[h->intr_mode]);
6531 }
6532 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006533 if (rc) {
6534 dev_err(&h->pdev->dev, "unable to get irq %d for %s\n",
6535 h->intr[h->intr_mode], h->devname);
6536 return -ENODEV;
6537 }
6538 return 0;
6539}
6540
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006541static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006542{
6543 if (hpsa_send_host_reset(h, RAID_CTLR_LUNID,
6544 HPSA_RESET_TYPE_CONTROLLER)) {
6545 dev_warn(&h->pdev->dev, "Resetting array controller failed.\n");
6546 return -EIO;
6547 }
6548
6549 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
6550 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) {
6551 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
6552 return -1;
6553 }
6554
6555 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
6556 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) {
6557 dev_warn(&h->pdev->dev, "Board failed to become ready "
6558 "after soft reset.\n");
6559 return -1;
6560 }
6561
6562 return 0;
6563}
6564
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006565static void hpsa_free_irqs_and_disable_msix(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006566{
Robert Elliottec501a12015-01-23 16:41:40 -06006567 hpsa_free_irqs(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006568#ifdef CONFIG_PCI_MSI
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006569 if (h->msix_vector) {
6570 if (h->pdev->msix_enabled)
6571 pci_disable_msix(h->pdev);
6572 } else if (h->msi_vector) {
6573 if (h->pdev->msi_enabled)
6574 pci_disable_msi(h->pdev);
6575 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006576#endif /* CONFIG_PCI_MSI */
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006577}
6578
Stephen M. Cameron072b0512014-05-29 10:53:07 -05006579static void hpsa_free_reply_queues(struct ctlr_info *h)
6580{
6581 int i;
6582
6583 for (i = 0; i < h->nreply_queues; i++) {
6584 if (!h->reply_queue[i].head)
6585 continue;
6586 pci_free_consistent(h->pdev, h->reply_queue_size,
6587 h->reply_queue[i].head, h->reply_queue[i].busaddr);
6588 h->reply_queue[i].head = NULL;
6589 h->reply_queue[i].busaddr = 0;
6590 }
6591}
6592
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006593static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
6594{
6595 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006596 hpsa_free_sg_chain_blocks(h);
6597 hpsa_free_cmd_pool(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06006598 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006599 kfree(h->blockFetchTable);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05006600 hpsa_free_reply_queues(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006601 if (h->vaddr)
6602 iounmap(h->vaddr);
6603 if (h->transtable)
6604 iounmap(h->transtable);
6605 if (h->cfgtable)
6606 iounmap(h->cfgtable);
Tomas Henzl132aa222014-08-14 16:12:39 +02006607 pci_disable_device(h->pdev);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006608 pci_release_regions(h->pdev);
6609 kfree(h);
6610}
6611
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006612/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06006613static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006614{
Webb Scales281a7fd2015-01-23 16:43:35 -06006615 int i, refcount;
6616 struct CommandList *c;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006617
Don Brace080ef1c2015-01-23 16:43:25 -06006618 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06006619 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06006620 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06006621 refcount = atomic_inc_return(&c->refcount);
6622 if (refcount > 1) {
6623 c->err_info->CommandStatus = CMD_HARDWARE_ERR;
6624 finish_cmd(c);
6625 }
6626 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006627 }
6628}
6629
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006630static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
6631{
6632 int i, cpu;
6633
6634 cpu = cpumask_first(cpu_online_mask);
6635 for (i = 0; i < num_online_cpus(); i++) {
6636 u32 *lockup_detected;
6637 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
6638 *lockup_detected = value;
6639 cpu = cpumask_next(cpu, cpu_online_mask);
6640 }
6641 wmb(); /* be sure the per-cpu variables are out to memory */
6642}
6643
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006644static void controller_lockup_detected(struct ctlr_info *h)
6645{
6646 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006647 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006648
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006649 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6650 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006651 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
6652 if (!lockup_detected) {
6653 /* no heartbeat, but controller gave us a zero. */
6654 dev_warn(&h->pdev->dev,
6655 "lockup detected but scratchpad register is zero\n");
6656 lockup_detected = 0xffffffff;
6657 }
6658 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006659 spin_unlock_irqrestore(&h->lock, flags);
6660 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x\n",
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006661 lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006662 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06006663 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006664}
6665
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006666static void detect_controller_lockup(struct ctlr_info *h)
6667{
6668 u64 now;
6669 u32 heartbeat;
6670 unsigned long flags;
6671
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006672 now = get_jiffies_64();
6673 /* If we've received an interrupt recently, we're ok. */
6674 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006675 (h->heartbeat_sample_interval), now))
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006676 return;
6677
6678 /*
6679 * If we've already checked the heartbeat recently, we're ok.
6680 * This could happen if someone sends us a signal. We
6681 * otherwise don't care about signals in this thread.
6682 */
6683 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006684 (h->heartbeat_sample_interval), now))
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006685 return;
6686
6687 /* If heartbeat has not changed since we last looked, we're not ok. */
6688 spin_lock_irqsave(&h->lock, flags);
6689 heartbeat = readl(&h->cfgtable->HeartBeat);
6690 spin_unlock_irqrestore(&h->lock, flags);
6691 if (h->last_heartbeat == heartbeat) {
6692 controller_lockup_detected(h);
6693 return;
6694 }
6695
6696 /* We're ok. */
6697 h->last_heartbeat = heartbeat;
6698 h->last_heartbeat_timestamp = now;
6699}
6700
Stephen M. Cameron98465902014-02-21 16:25:00 -06006701static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006702{
6703 int i;
6704 char *event_type;
6705
Stephen Camerone4aa3e62015-01-23 16:44:07 -06006706 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
6707 return;
6708
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006709 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06006710 if ((h->transMethod & (CFGTBL_Trans_io_accel1
6711 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006712 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
6713 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
6714
6715 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
6716 event_type = "state change";
6717 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
6718 event_type = "configuration change";
6719 /* Stop sending new RAID offload reqs via the IO accelerator */
6720 scsi_block_requests(h->scsi_host);
6721 for (i = 0; i < h->ndevices; i++)
6722 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06006723 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006724 /* Set 'accelerator path config change' bit */
6725 dev_warn(&h->pdev->dev,
6726 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
6727 h->events, event_type);
6728 writel(h->events, &(h->cfgtable->clear_event_notify));
6729 /* Set the "clear event notify field update" bit 6 */
6730 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
6731 /* Wait until ctlr clears 'clear event notify field', bit 6 */
6732 hpsa_wait_for_clear_event_notify_ack(h);
6733 scsi_unblock_requests(h->scsi_host);
6734 } else {
6735 /* Acknowledge controller notification events. */
6736 writel(h->events, &(h->cfgtable->clear_event_notify));
6737 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
6738 hpsa_wait_for_clear_event_notify_ack(h);
6739#if 0
6740 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
6741 hpsa_wait_for_mode_change_ack(h);
6742#endif
6743 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06006744 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006745}
6746
6747/* Check a register on the controller to see if there are configuration
6748 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06006749 * we should rescan the controller for devices.
6750 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006751 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06006752static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006753{
6754 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06006755 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006756
6757 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06006758 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006759}
6760
Stephen M. Cameron98465902014-02-21 16:25:00 -06006761/*
6762 * Check if any of the offline devices have become ready
6763 */
6764static int hpsa_offline_devices_ready(struct ctlr_info *h)
6765{
6766 unsigned long flags;
6767 struct offline_device_entry *d;
6768 struct list_head *this, *tmp;
6769
6770 spin_lock_irqsave(&h->offline_device_lock, flags);
6771 list_for_each_safe(this, tmp, &h->offline_device_list) {
6772 d = list_entry(this, struct offline_device_entry,
6773 offline_list);
6774 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05006775 if (!hpsa_volume_offline(h, d->scsi3addr)) {
6776 spin_lock_irqsave(&h->offline_device_lock, flags);
6777 list_del(&d->offline_list);
6778 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006779 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05006780 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06006781 spin_lock_irqsave(&h->offline_device_lock, flags);
6782 }
6783 spin_unlock_irqrestore(&h->offline_device_lock, flags);
6784 return 0;
6785}
6786
6787
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006788static void hpsa_monitor_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006789{
6790 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006791 struct ctlr_info *h = container_of(to_delayed_work(work),
6792 struct ctlr_info, monitor_ctlr_work);
6793 detect_controller_lockup(h);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006794 if (lockup_detected(h))
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006795 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06006796
6797 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
6798 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006799 hpsa_ack_ctlr_events(h);
6800 hpsa_scan_start(h->scsi_host);
6801 scsi_host_put(h->scsi_host);
6802 }
6803
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006804 spin_lock_irqsave(&h->lock, flags);
6805 if (h->remove_in_progress) {
6806 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006807 return;
6808 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006809 schedule_delayed_work(&h->monitor_ctlr_work,
6810 h->heartbeat_sample_interval);
6811 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006812}
6813
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006814static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006815{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006816 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006817 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006818 int try_soft_reset = 0;
6819 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006820
6821 if (number_of_controllers == 0)
6822 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006823
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006824 rc = hpsa_init_reset_devices(pdev);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006825 if (rc) {
6826 if (rc != -ENOTSUPP)
6827 return rc;
6828 /* If the reset fails in a particular way (it has no way to do
6829 * a proper hard reset, so returns -ENOTSUPP) we can try to do
6830 * a soft reset once we get the controller configured up to the
6831 * point that it can accept a command.
6832 */
6833 try_soft_reset = 1;
6834 rc = 0;
6835 }
6836
6837reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006838
Don Brace303932f2010-02-04 08:42:40 -06006839 /* Command structures must be aligned on a 32-byte boundary because
6840 * the 5 lower bits of the address are used by the hardware. and by
6841 * the driver. See comments in hpsa.h for more info.
6842 */
Don Brace303932f2010-02-04 08:42:40 -06006843 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006844 h = kzalloc(sizeof(*h), GFP_KERNEL);
6845 if (!h)
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006846 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006847
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006848 h->pdev = pdev;
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006849 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06006850 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006851 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006852 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006853 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06006854 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006855
Don Brace080ef1c2015-01-23 16:43:25 -06006856 h->resubmit_wq = alloc_workqueue("hpsa", WQ_MEM_RECLAIM, 0);
6857 if (!h->resubmit_wq) {
6858 dev_err(&h->pdev->dev, "Failed to allocate work queue\n");
6859 rc = -ENOMEM;
6860 goto clean1;
6861 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006862 /* Allocate and clear per-cpu variable lockup_detected */
6863 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05006864 if (!h->lockup_detected) {
6865 rc = -ENOMEM;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006866 goto clean1;
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05006867 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006868 set_lockup_detected_for_all_cpus(h, 0);
6869
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006870 rc = hpsa_pci_init(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006871 if (rc != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006872 goto clean1;
6873
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006874 sprintf(h->devname, HPSA "%d", number_of_controllers);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006875 h->ctlr = number_of_controllers;
6876 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006877
6878 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006879 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
6880 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006881 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006882 } else {
6883 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6884 if (rc == 0) {
6885 dac = 0;
6886 } else {
6887 dev_err(&pdev->dev, "no suitable DMA available\n");
6888 goto clean1;
6889 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006890 }
6891
6892 /* make sure the board interrupts are off */
6893 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006894
Robert Elliott9ee61792015-01-23 16:42:32 -06006895 if (hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006896 goto clean2;
Don Brace303932f2010-02-04 08:42:40 -06006897 dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n",
6898 h->devname, pdev->device,
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006899 h->intr[h->intr_mode], dac ? "" : " not");
Robert Elliott8947fd12015-01-23 16:42:54 -06006900 rc = hpsa_allocate_cmd_pool(h);
6901 if (rc)
6902 goto clean2_and_free_irqs;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06006903 if (hpsa_allocate_sg_chain_blocks(h))
6904 goto clean4;
Stephen M. Camerona08a8472010-02-04 08:43:16 -06006905 init_waitqueue_head(&h->scan_wait_queue);
6906 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006907
6908 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05006909 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006910 h->hba_mode_enabled = 0;
Stephen M. Cameron9a413382011-05-03 14:59:41 -05006911 h->scsi_host = NULL;
6912 spin_lock_init(&h->devlock);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006913 hpsa_put_ctlr_into_performant_mode(h);
6914
6915 /* At this point, the controller is ready to take commands.
6916 * Now, if reset_devices and the hard reset didn't work, try
6917 * the soft reset and see if that works.
6918 */
6919 if (try_soft_reset) {
6920
6921 /* This is kind of gross. We may or may not get a completion
6922 * from the soft reset command, and if we do, then the value
6923 * from the fifo may or may not be valid. So, we wait 10 secs
6924 * after the reset throwing away any completions we get during
6925 * that time. Unregister the interrupt handler and register
6926 * fake ones to scoop up any residual completions.
6927 */
6928 spin_lock_irqsave(&h->lock, flags);
6929 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6930 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06006931 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06006932 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006933 hpsa_intx_discard_completions);
6934 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06006935 dev_warn(&h->pdev->dev,
6936 "Failed to request_irq after soft reset.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006937 goto clean4;
6938 }
6939
6940 rc = hpsa_kdump_soft_reset(h);
6941 if (rc)
6942 /* Neither hard nor soft reset worked, we're hosed. */
6943 goto clean4;
6944
6945 dev_info(&h->pdev->dev, "Board READY.\n");
6946 dev_info(&h->pdev->dev,
6947 "Waiting for stale completions to drain.\n");
6948 h->access.set_intr_mask(h, HPSA_INTR_ON);
6949 msleep(10000);
6950 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6951
6952 rc = controller_reset_failed(h->cfgtable);
6953 if (rc)
6954 dev_info(&h->pdev->dev,
6955 "Soft reset appears to have failed.\n");
6956
6957 /* since the controller's reset, we have to go back and re-init
6958 * everything. Easiest to just forget what we've done and do it
6959 * all over again.
6960 */
6961 hpsa_undo_allocations_after_kdump_soft_reset(h);
6962 try_soft_reset = 0;
6963 if (rc)
6964 /* don't go to clean4, we already unallocated */
6965 return -ENODEV;
6966
6967 goto reinit_after_soft_reset;
6968 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006969
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006970 /* Enable Accelerated IO path at driver layer */
6971 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06006972
Scott Teele863d682014-02-18 13:57:05 -06006973
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006974 /* Turn the interrupts on so we can service requests */
6975 h->access.set_intr_mask(h, HPSA_INTR_ON);
6976
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006977 hpsa_hba_inquiry(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006978 hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006979
6980 /* Monitor the controller for firmware lockups */
6981 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
6982 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
6983 schedule_delayed_work(&h->monitor_ctlr_work,
6984 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05006985 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006986
6987clean4:
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06006988 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006989 hpsa_free_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06006990clean2_and_free_irqs:
Robert Elliottec501a12015-01-23 16:41:40 -06006991 hpsa_free_irqs(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006992clean2:
6993clean1:
Don Brace080ef1c2015-01-23 16:43:25 -06006994 if (h->resubmit_wq)
6995 destroy_workqueue(h->resubmit_wq);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006996 if (h->lockup_detected)
6997 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006998 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006999 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007000}
7001
7002static void hpsa_flush_cache(struct ctlr_info *h)
7003{
7004 char *flush_buf;
7005 struct CommandList *c;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007006
7007 /* Don't bother trying to flush the cache if locked up */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007008 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007009 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007010 flush_buf = kzalloc(4, GFP_KERNEL);
7011 if (!flush_buf)
7012 return;
7013
Stephen Cameron45fcb862015-01-23 16:43:04 -06007014 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007015 if (!c) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06007016 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007017 goto out_of_memory;
7018 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007019 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
7020 RAID_CTLR_LUNID, TYPE_CMD)) {
7021 goto out;
7022 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007023 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_TODEVICE);
7024 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007025out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007026 dev_warn(&h->pdev->dev,
7027 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06007028 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007029out_of_memory:
7030 kfree(flush_buf);
7031}
7032
7033static void hpsa_shutdown(struct pci_dev *pdev)
7034{
7035 struct ctlr_info *h;
7036
7037 h = pci_get_drvdata(pdev);
7038 /* Turn board interrupts off and send the flush cache command
7039 * sendcmd will turn off interrupt, and send the flush...
7040 * To write all data in the battery backed cache to disks
7041 */
7042 hpsa_flush_cache(h);
7043 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007044 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007045}
7046
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007047static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007048{
7049 int i;
7050
7051 for (i = 0; i < h->ndevices; i++)
7052 kfree(h->dev[i]);
7053}
7054
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007055static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007056{
7057 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007058 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007059
7060 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007061 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007062 return;
7063 }
7064 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007065
7066 /* Get rid of any controller monitoring work items */
7067 spin_lock_irqsave(&h->lock, flags);
7068 h->remove_in_progress = 1;
7069 cancel_delayed_work(&h->monitor_ctlr_work);
7070 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007071 hpsa_unregister_scsi(h); /* unhook from SCSI subsystem */
7072 hpsa_shutdown(pdev);
Don Brace080ef1c2015-01-23 16:43:25 -06007073 destroy_workqueue(h->resubmit_wq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007074 iounmap(h->vaddr);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007075 iounmap(h->transtable);
7076 iounmap(h->cfgtable);
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007077 hpsa_free_device_info(h);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007078 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007079 pci_free_consistent(h->pdev,
7080 h->nr_cmds * sizeof(struct CommandList),
7081 h->cmd_pool, h->cmd_pool_dhandle);
7082 pci_free_consistent(h->pdev,
7083 h->nr_cmds * sizeof(struct ErrorInfo),
7084 h->errinfo_pool, h->errinfo_pool_dhandle);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007085 hpsa_free_reply_queues(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007086 kfree(h->cmd_pool_bits);
Don Brace303932f2010-02-04 08:42:40 -06007087 kfree(h->blockFetchTable);
Matt Gatese1f7de02014-02-18 13:55:17 -06007088 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007089 kfree(h->ioaccel2_blockFetchTable);
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007090 kfree(h->hba_inquiry_data);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05007091 pci_disable_device(pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007092 pci_release_regions(pdev);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007093 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007094 kfree(h);
7095}
7096
7097static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
7098 __attribute__((unused)) pm_message_t state)
7099{
7100 return -ENOSYS;
7101}
7102
7103static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
7104{
7105 return -ENOSYS;
7106}
7107
7108static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007109 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007110 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007111 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007112 .id_table = hpsa_pci_device_id, /* id_table */
7113 .shutdown = hpsa_shutdown,
7114 .suspend = hpsa_suspend,
7115 .resume = hpsa_resume,
7116};
7117
Don Brace303932f2010-02-04 08:42:40 -06007118/* Fill in bucket_map[], given nsgs (the max number of
7119 * scatter gather elements supported) and bucket[],
7120 * which is an array of 8 integers. The bucket[] array
7121 * contains 8 different DMA transfer sizes (in 16
7122 * byte increments) which the controller uses to fetch
7123 * commands. This function fills in bucket_map[], which
7124 * maps a given number of scatter gather elements to one of
7125 * the 8 DMA transfer sizes. The point of it is to allow the
7126 * controller to only do as much DMA as needed to fetch the
7127 * command, with the DMA transfer size encoded in the lower
7128 * bits of the command address.
7129 */
7130static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06007131 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06007132{
7133 int i, j, b, size;
7134
Don Brace303932f2010-02-04 08:42:40 -06007135 /* Note, bucket_map must have nsgs+1 entries. */
7136 for (i = 0; i <= nsgs; i++) {
7137 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06007138 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06007139 b = num_buckets; /* Assume the biggest bucket */
7140 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06007141 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06007142 if (bucket[j] >= size) {
7143 b = j;
7144 break;
7145 }
7146 }
7147 /* for a command with i SG entries, use bucket b. */
7148 bucket_map[i] = b;
7149 }
7150}
7151
Matt Gatese1f7de02014-02-18 13:55:17 -06007152static void hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06007153{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007154 int i;
7155 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06007156 unsigned long transMethod = CFGTBL_Trans_Performant |
7157 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007158 CFGTBL_Trans_enable_directed_msix |
7159 (trans_support & (CFGTBL_Trans_io_accel1 |
7160 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06007161 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007162
7163 /* This is a bit complicated. There are 8 registers on
7164 * the controller which we write to to tell it 8 different
7165 * sizes of commands which there may be. It's a way of
7166 * reducing the DMA done to fetch each command. Encoded into
7167 * each command's tag are 3 bits which communicate to the controller
7168 * which of the eight sizes that command fits within. The size of
7169 * each command depends on how many scatter gather entries there are.
7170 * Each SG entry requires 16 bytes. The eight registers are programmed
7171 * with the number of 16-byte blocks a command of that size requires.
7172 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007173 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007174 * blocks. Note, this only extends to the SG entries contained
7175 * within the command block, and does not extend to chained blocks
7176 * of SG elements. bft[] contains the eight values we write to
7177 * the registers. They are not evenly distributed, but have more
7178 * sizes for small commands, and fewer sizes for larger commands.
7179 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007180 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007181#define MIN_IOACCEL2_BFT_ENTRY 5
7182#define HPSA_IOACCEL2_HEADER_SZ 4
7183 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
7184 13, 14, 15, 16, 17, 18, 19,
7185 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
7186 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
7187 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
7188 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
7189 16 * MIN_IOACCEL2_BFT_ENTRY);
7190 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007191 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06007192 /* 5 = 1 s/g entry or 4k
7193 * 6 = 2 s/g entry or 8k
7194 * 8 = 4 s/g entry or 16k
7195 * 10 = 6 s/g entry or 24k
7196 */
Don Brace303932f2010-02-04 08:42:40 -06007197
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05007198 /* If the controller supports either ioaccel method then
7199 * we can also use the RAID stack submit path that does not
7200 * perform the superfluous readl() after each command submission.
7201 */
7202 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
7203 access = SA5_performant_access_no_read;
7204
Don Brace303932f2010-02-04 08:42:40 -06007205 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007206 for (i = 0; i < h->nreply_queues; i++)
7207 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06007208
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007209 bft[7] = SG_ENTRIES_IN_CMD + 4;
7210 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06007211 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06007212 for (i = 0; i < 8; i++)
7213 writel(bft[i], &h->transtable->BlockFetch[i]);
7214
7215 /* size of controller ring buffer */
7216 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05007217 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06007218 writel(0, &h->transtable->RepQCtrAddrLow32);
7219 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05007220
7221 for (i = 0; i < h->nreply_queues; i++) {
7222 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007223 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05007224 &h->transtable->RepQAddr[i].lower);
7225 }
7226
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007227 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06007228 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
7229 /*
7230 * enable outbound interrupt coalescing in accelerator mode;
7231 */
7232 if (trans_support & CFGTBL_Trans_io_accel1) {
7233 access = SA5_ioaccel_mode1_access;
7234 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7235 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06007236 } else {
7237 if (trans_support & CFGTBL_Trans_io_accel2) {
7238 access = SA5_ioaccel_mode2_access;
7239 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7240 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
7241 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007242 }
Don Brace303932f2010-02-04 08:42:40 -06007243 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007244 hpsa_wait_for_mode_change_ack(h);
Don Brace303932f2010-02-04 08:42:40 -06007245 register_value = readl(&(h->cfgtable->TransportActive));
7246 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007247 dev_err(&h->pdev->dev,
7248 "performant mode problem - transport not active\n");
Don Brace303932f2010-02-04 08:42:40 -06007249 return;
7250 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007251 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06007252 h->access = access;
7253 h->transMethod = transMethod;
7254
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007255 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
7256 (trans_support & CFGTBL_Trans_io_accel2)))
Matt Gatese1f7de02014-02-18 13:55:17 -06007257 return;
7258
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007259 if (trans_support & CFGTBL_Trans_io_accel1) {
7260 /* Set up I/O accelerator mode */
7261 for (i = 0; i < h->nreply_queues; i++) {
7262 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
7263 h->reply_queue[i].current_entry =
7264 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
7265 }
7266 bft[7] = h->ioaccel_maxsg + 8;
7267 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
7268 h->ioaccel1_blockFetchTable);
7269
7270 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007271 for (i = 0; i < h->nreply_queues; i++)
7272 memset(h->reply_queue[i].head,
7273 (u8) IOACCEL_MODE1_REPLY_UNUSED,
7274 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007275
7276 /* set all the constant fields in the accelerator command
7277 * frames once at init time to save CPU cycles later.
7278 */
7279 for (i = 0; i < h->nr_cmds; i++) {
7280 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
7281
7282 cp->function = IOACCEL1_FUNCTION_SCSIIO;
7283 cp->err_info = (u32) (h->errinfo_pool_dhandle +
7284 (i * sizeof(struct ErrorInfo)));
7285 cp->err_info_len = sizeof(struct ErrorInfo);
7286 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06007287 cp->host_context_flags =
7288 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007289 cp->timeout_sec = 0;
7290 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007291 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06007292 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007293 cp->host_addr =
7294 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007295 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007296 }
7297 } else if (trans_support & CFGTBL_Trans_io_accel2) {
7298 u64 cfg_offset, cfg_base_addr_index;
7299 u32 bft2_offset, cfg_base_addr;
7300 int rc;
7301
7302 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7303 &cfg_base_addr_index, &cfg_offset);
7304 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
7305 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
7306 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
7307 4, h->ioaccel2_blockFetchTable);
7308 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
7309 BUILD_BUG_ON(offsetof(struct CfgTable,
7310 io_accel_request_size_offset) != 0xb8);
7311 h->ioaccel2_bft2_regs =
7312 remap_pci_mem(pci_resource_start(h->pdev,
7313 cfg_base_addr_index) +
7314 cfg_offset + bft2_offset,
7315 ARRAY_SIZE(bft2) *
7316 sizeof(*h->ioaccel2_bft2_regs));
7317 for (i = 0; i < ARRAY_SIZE(bft2); i++)
7318 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06007319 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007320 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7321 hpsa_wait_for_mode_change_ack(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06007322}
7323
7324static int hpsa_alloc_ioaccel_cmd_and_bft(struct ctlr_info *h)
7325{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007326 h->ioaccel_maxsg =
7327 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7328 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
7329 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
7330
Matt Gatese1f7de02014-02-18 13:55:17 -06007331 /* Command structures must be aligned on a 128-byte boundary
7332 * because the 7 lower bits of the address are used by the
7333 * hardware.
7334 */
Matt Gatese1f7de02014-02-18 13:55:17 -06007335 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
7336 IOACCEL1_COMMANDLIST_ALIGNMENT);
7337 h->ioaccel_cmd_pool =
7338 pci_alloc_consistent(h->pdev,
7339 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7340 &(h->ioaccel_cmd_pool_dhandle));
7341
7342 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007343 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06007344 sizeof(u32)), GFP_KERNEL);
7345
7346 if ((h->ioaccel_cmd_pool == NULL) ||
7347 (h->ioaccel1_blockFetchTable == NULL))
7348 goto clean_up;
7349
7350 memset(h->ioaccel_cmd_pool, 0,
7351 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
7352 return 0;
7353
7354clean_up:
7355 if (h->ioaccel_cmd_pool)
7356 pci_free_consistent(h->pdev,
7357 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7358 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
7359 kfree(h->ioaccel1_blockFetchTable);
7360 return 1;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007361}
7362
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007363static int ioaccel2_alloc_cmds_and_bft(struct ctlr_info *h)
7364{
7365 /* Allocate ioaccel2 mode command blocks and block fetch table */
7366
7367 h->ioaccel_maxsg =
7368 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7369 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
7370 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
7371
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007372 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
7373 IOACCEL2_COMMANDLIST_ALIGNMENT);
7374 h->ioaccel2_cmd_pool =
7375 pci_alloc_consistent(h->pdev,
7376 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7377 &(h->ioaccel2_cmd_pool_dhandle));
7378
7379 h->ioaccel2_blockFetchTable =
7380 kmalloc(((h->ioaccel_maxsg + 1) *
7381 sizeof(u32)), GFP_KERNEL);
7382
7383 if ((h->ioaccel2_cmd_pool == NULL) ||
7384 (h->ioaccel2_blockFetchTable == NULL))
7385 goto clean_up;
7386
7387 memset(h->ioaccel2_cmd_pool, 0,
7388 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
7389 return 0;
7390
7391clean_up:
7392 if (h->ioaccel2_cmd_pool)
7393 pci_free_consistent(h->pdev,
7394 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7395 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
7396 kfree(h->ioaccel2_blockFetchTable);
7397 return 1;
7398}
7399
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007400static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007401{
7402 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06007403 unsigned long transMethod = CFGTBL_Trans_Performant |
7404 CFGTBL_Trans_use_short_tags;
Matt Gates254f7962012-05-01 11:43:06 -05007405 int i;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007406
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06007407 if (hpsa_simple_mode)
7408 return;
7409
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05007410 trans_support = readl(&(h->cfgtable->TransportSupport));
7411 if (!(trans_support & PERFORMANT_MODE))
7412 return;
7413
Matt Gatese1f7de02014-02-18 13:55:17 -06007414 /* Check for I/O accelerator mode support */
7415 if (trans_support & CFGTBL_Trans_io_accel1) {
7416 transMethod |= CFGTBL_Trans_io_accel1 |
7417 CFGTBL_Trans_enable_directed_msix;
7418 if (hpsa_alloc_ioaccel_cmd_and_bft(h))
7419 goto clean_up;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007420 } else {
7421 if (trans_support & CFGTBL_Trans_io_accel2) {
7422 transMethod |= CFGTBL_Trans_io_accel2 |
7423 CFGTBL_Trans_enable_directed_msix;
7424 if (ioaccel2_alloc_cmds_and_bft(h))
7425 goto clean_up;
7426 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007427 }
7428
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007429 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007430 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007431 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007432 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007433
Matt Gates254f7962012-05-01 11:43:06 -05007434 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007435 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
7436 h->reply_queue_size,
7437 &(h->reply_queue[i].busaddr));
7438 if (!h->reply_queue[i].head)
7439 goto clean_up;
Matt Gates254f7962012-05-01 11:43:06 -05007440 h->reply_queue[i].size = h->max_commands;
7441 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
7442 h->reply_queue[i].current_entry = 0;
7443 }
7444
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007445 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007446 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007447 sizeof(u32)), GFP_KERNEL);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007448 if (!h->blockFetchTable)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007449 goto clean_up;
7450
Matt Gatese1f7de02014-02-18 13:55:17 -06007451 hpsa_enter_performant_mode(h, trans_support);
Don Brace303932f2010-02-04 08:42:40 -06007452 return;
7453
7454clean_up:
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007455 hpsa_free_reply_queues(h);
Don Brace303932f2010-02-04 08:42:40 -06007456 kfree(h->blockFetchTable);
7457}
7458
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007459static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007460{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007461 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
7462}
7463
7464static void hpsa_drain_accel_commands(struct ctlr_info *h)
7465{
7466 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06007467 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06007468 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007469
Don Bracef2405db2015-01-23 16:43:09 -06007470 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007471 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06007472 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007473 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007474 refcount = atomic_inc_return(&c->refcount);
7475 if (refcount > 1) /* Command is allocated */
7476 accel_cmds_out += is_accelerated_cmd(c);
7477 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06007478 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007479 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06007480 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007481 msleep(100);
7482 } while (1);
7483}
7484
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007485/*
7486 * This is it. Register the PCI driver information for the cards we control
7487 * the OS will call our registered routines when it finds one of our cards.
7488 */
7489static int __init hpsa_init(void)
7490{
Mike Miller31468402010-02-25 14:03:12 -06007491 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007492}
7493
7494static void __exit hpsa_cleanup(void)
7495{
7496 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007497}
7498
Matt Gatese1f7de02014-02-18 13:55:17 -06007499static void __attribute__((unused)) verify_offsets(void)
7500{
7501#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06007502 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
7503
7504 VERIFY_OFFSET(structure_size, 0);
7505 VERIFY_OFFSET(volume_blk_size, 4);
7506 VERIFY_OFFSET(volume_blk_cnt, 8);
7507 VERIFY_OFFSET(phys_blk_shift, 16);
7508 VERIFY_OFFSET(parity_rotation_shift, 17);
7509 VERIFY_OFFSET(strip_size, 18);
7510 VERIFY_OFFSET(disk_starting_blk, 20);
7511 VERIFY_OFFSET(disk_blk_cnt, 28);
7512 VERIFY_OFFSET(data_disks_per_row, 36);
7513 VERIFY_OFFSET(metadata_disks_per_row, 38);
7514 VERIFY_OFFSET(row_cnt, 40);
7515 VERIFY_OFFSET(layout_map_count, 42);
7516 VERIFY_OFFSET(flags, 44);
7517 VERIFY_OFFSET(dekindex, 46);
7518 /* VERIFY_OFFSET(reserved, 48 */
7519 VERIFY_OFFSET(data, 64);
7520
7521#undef VERIFY_OFFSET
7522
7523#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06007524 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
7525
7526 VERIFY_OFFSET(IU_type, 0);
7527 VERIFY_OFFSET(direction, 1);
7528 VERIFY_OFFSET(reply_queue, 2);
7529 /* VERIFY_OFFSET(reserved1, 3); */
7530 VERIFY_OFFSET(scsi_nexus, 4);
7531 VERIFY_OFFSET(Tag, 8);
7532 VERIFY_OFFSET(cdb, 16);
7533 VERIFY_OFFSET(cciss_lun, 32);
7534 VERIFY_OFFSET(data_len, 40);
7535 VERIFY_OFFSET(cmd_priority_task_attr, 44);
7536 VERIFY_OFFSET(sg_count, 45);
7537 /* VERIFY_OFFSET(reserved3 */
7538 VERIFY_OFFSET(err_ptr, 48);
7539 VERIFY_OFFSET(err_len, 56);
7540 /* VERIFY_OFFSET(reserved4 */
7541 VERIFY_OFFSET(sg, 64);
7542
7543#undef VERIFY_OFFSET
7544
7545#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06007546 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
7547
7548 VERIFY_OFFSET(dev_handle, 0x00);
7549 VERIFY_OFFSET(reserved1, 0x02);
7550 VERIFY_OFFSET(function, 0x03);
7551 VERIFY_OFFSET(reserved2, 0x04);
7552 VERIFY_OFFSET(err_info, 0x0C);
7553 VERIFY_OFFSET(reserved3, 0x10);
7554 VERIFY_OFFSET(err_info_len, 0x12);
7555 VERIFY_OFFSET(reserved4, 0x13);
7556 VERIFY_OFFSET(sgl_offset, 0x14);
7557 VERIFY_OFFSET(reserved5, 0x15);
7558 VERIFY_OFFSET(transfer_len, 0x1C);
7559 VERIFY_OFFSET(reserved6, 0x20);
7560 VERIFY_OFFSET(io_flags, 0x24);
7561 VERIFY_OFFSET(reserved7, 0x26);
7562 VERIFY_OFFSET(LUN, 0x34);
7563 VERIFY_OFFSET(control, 0x3C);
7564 VERIFY_OFFSET(CDB, 0x40);
7565 VERIFY_OFFSET(reserved8, 0x50);
7566 VERIFY_OFFSET(host_context_flags, 0x60);
7567 VERIFY_OFFSET(timeout_sec, 0x62);
7568 VERIFY_OFFSET(ReplyQueue, 0x64);
7569 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007570 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06007571 VERIFY_OFFSET(host_addr, 0x70);
7572 VERIFY_OFFSET(CISS_LUN, 0x78);
7573 VERIFY_OFFSET(SG, 0x78 + 8);
7574#undef VERIFY_OFFSET
7575}
7576
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007577module_init(hpsa_init);
7578module_exit(hpsa_cleanup);