blob: facb438061d55f70eff24c07b4384adce57375ee [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 Cameron9437ac42015-04-23 09:32:16 -050046#include <scsi/scsi_eh.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080047#include <linux/cciss_ioctl.h>
48#include <linux/string.h>
49#include <linux/bitmap.h>
Arun Sharma600634972011-07-26 16:09:06 -070050#include <linux/atomic.h>
Stephen M. Camerona0c12412011-10-26 16:22:04 -050051#include <linux/jiffies.h>
Don Brace42a91642014-11-14 17:26:27 -060052#include <linux/percpu-defs.h>
Stephen M. Cameron094963d2014-05-29 10:53:18 -050053#include <linux/percpu.h>
Don Brace2b08b3e2015-01-23 16:41:09 -060054#include <asm/unaligned.h>
Stephen M. Cameron283b4a92014-02-18 13:55:33 -060055#include <asm/div64.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080056#include "hpsa_cmd.h"
57#include "hpsa.h"
58
59/* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */
Stephen M. Cameron9a993302014-03-13 17:13:06 -050060#define HPSA_DRIVER_VERSION "3.4.4-1"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080061#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -060062#define HPSA "hpsa"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080063
Robert Elliott007e7aa2015-01-23 16:44:56 -060064/* How long to wait for CISS doorbell communication */
65#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */
66#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */
67#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */
68#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */
Stephen M. Cameronedd16362009-12-08 14:09:11 -080069#define MAX_IOCTL_CONFIG_WAIT 1000
70
71/*define how many times we will try a command because of bus resets */
72#define MAX_CMD_RETRIES 3
73
74/* Embedded module documentation macros - see modules.h */
75MODULE_AUTHOR("Hewlett-Packard Company");
76MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
77 HPSA_DRIVER_VERSION);
78MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
79MODULE_VERSION(HPSA_DRIVER_VERSION);
80MODULE_LICENSE("GPL");
81
82static int hpsa_allow_any;
83module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
84MODULE_PARM_DESC(hpsa_allow_any,
85 "Allow hpsa driver to access unknown HP Smart Array hardware");
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060086static int hpsa_simple_mode;
87module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
88MODULE_PARM_DESC(hpsa_simple_mode,
89 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080090
91/* define the PCI info for the cards we can control */
92static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080093 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
94 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
95 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
96 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
97 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -050098 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
99 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -0600100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -0600101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Mike Millerfe0c9612012-09-20 16:05:18 -0500108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Mike Millerfe0c9612012-09-20 16:05:18 -0500112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926},
113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928},
Mike Miller97b9f532013-09-04 15:05:55 -0500114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929},
115 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD},
116 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE},
117 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF},
118 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0},
119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1},
120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2},
121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3},
122 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4},
123 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500124 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6},
Mike Miller97b9f532013-09-04 15:05:55 -0500125 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
126 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
127 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500128 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA},
129 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB},
130 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC},
131 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD},
132 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600133 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
134 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
135 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
136 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
137 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
Mike Miller7c03b872010-12-01 11:16:07 -0600138 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Stephen M. Cameron6798cc02010-06-16 13:51:20 -0500139 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800140 {0,}
141};
142
143MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
144
145/* board_id = Subsystem Device ID & Vendor ID
146 * product = Marketing Name for the board
147 * access = Address of the struct of function pointers
148 */
149static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800150 {0x3241103C, "Smart Array P212", &SA5_access},
151 {0x3243103C, "Smart Array P410", &SA5_access},
152 {0x3245103C, "Smart Array P410i", &SA5_access},
153 {0x3247103C, "Smart Array P411", &SA5_access},
154 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500155 {0x324A103C, "Smart Array P712m", &SA5_access},
156 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600157 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500158 {0x3350103C, "Smart Array P222", &SA5_access},
159 {0x3351103C, "Smart Array P420", &SA5_access},
160 {0x3352103C, "Smart Array P421", &SA5_access},
161 {0x3353103C, "Smart Array P822", &SA5_access},
162 {0x3354103C, "Smart Array P420i", &SA5_access},
163 {0x3355103C, "Smart Array P220i", &SA5_access},
164 {0x3356103C, "Smart Array P721m", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500165 {0x1921103C, "Smart Array P830i", &SA5_access},
166 {0x1922103C, "Smart Array P430", &SA5_access},
167 {0x1923103C, "Smart Array P431", &SA5_access},
168 {0x1924103C, "Smart Array P830", &SA5_access},
169 {0x1926103C, "Smart Array P731m", &SA5_access},
170 {0x1928103C, "Smart Array P230i", &SA5_access},
171 {0x1929103C, "Smart Array P530", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600172 {0x21BD103C, "Smart Array P244br", &SA5_access},
173 {0x21BE103C, "Smart Array P741m", &SA5_access},
174 {0x21BF103C, "Smart HBA H240ar", &SA5_access},
175 {0x21C0103C, "Smart Array P440ar", &SA5_access},
Don Bracec8ae0ab2015-01-23 16:45:12 -0600176 {0x21C1103C, "Smart Array P840ar", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600177 {0x21C2103C, "Smart Array P440", &SA5_access},
178 {0x21C3103C, "Smart Array P441", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500179 {0x21C4103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600180 {0x21C5103C, "Smart Array P841", &SA5_access},
181 {0x21C6103C, "Smart HBA H244br", &SA5_access},
182 {0x21C7103C, "Smart HBA H240", &SA5_access},
183 {0x21C8103C, "Smart HBA H241", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500184 {0x21C9103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600185 {0x21CA103C, "Smart Array P246br", &SA5_access},
186 {0x21CB103C, "Smart Array P840", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500187 {0x21CC103C, "Smart Array", &SA5_access},
188 {0x21CD103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600189 {0x21CE103C, "Smart HBA", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600190 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
191 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
192 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
193 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
194 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800195 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
196};
197
198static int number_of_controllers;
199
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500200static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
201static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Don Brace42a91642014-11-14 17:26:27 -0600202static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800203
204#ifdef CONFIG_COMPAT
Don Brace42a91642014-11-14 17:26:27 -0600205static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
206 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800207#endif
208
209static void cmd_free(struct ctlr_info *h, struct CommandList *c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800210static struct CommandList *cmd_alloc(struct ctlr_info *h);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600211static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600212 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800213 int cmd_type);
Robert Elliott2c143342015-01-23 16:42:48 -0600214static void hpsa_free_cmd_pool(struct ctlr_info *h);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600215#define VPD_PAGE (1 << 8)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800216
Jeff Garzikf2812332010-11-16 02:10:29 -0500217static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600218static void hpsa_scan_start(struct Scsi_Host *);
219static int hpsa_scan_finished(struct Scsi_Host *sh,
220 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600221static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800222
223static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500224static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800225static int hpsa_slave_alloc(struct scsi_device *sdev);
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500226static int hpsa_slave_configure(struct scsi_device *sdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800227static void hpsa_slave_destroy(struct scsi_device *sdev);
228
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800229static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800230static int check_for_unit_attention(struct ctlr_info *h,
231 struct CommandList *c);
232static void check_ioctl_unit_attention(struct ctlr_info *h,
233 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600234/* performant mode helper functions */
235static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600236 int nsgs, int min_blocks, u32 *bucket_map);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800237static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Robert Elliott1fb7c982015-04-23 09:33:22 -0500238static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h);
239static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500240static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800241static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
242 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
243 u64 *cfg_offset);
244static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
245 unsigned long *memory_bar);
246static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
247static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
248 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500249static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600250static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600251#define BOARD_NOT_READY 0
252#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600253static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600254static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600255static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
256 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600257 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600258static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500259static u32 lockup_detected(struct ctlr_info *h);
260static int detect_controller_lockup(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800261
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800262static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
263{
264 unsigned long *priv = shost_priv(sdev->host);
265 return (struct ctlr_info *) *priv;
266}
267
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600268static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
269{
270 unsigned long *priv = shost_priv(sh);
271 return (struct ctlr_info *) *priv;
272}
273
Stephen Cameron9437ac42015-04-23 09:32:16 -0500274/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
275static void decode_sense_data(const u8 *sense_data, int sense_data_len,
276 u8 *sense_key, u8 *asc, u8 *ascq)
277{
278 struct scsi_sense_hdr sshdr;
279 bool rc;
280
281 *sense_key = -1;
282 *asc = -1;
283 *ascq = -1;
284
285 if (sense_data_len < 1)
286 return;
287
288 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
289 if (rc) {
290 *sense_key = sshdr.sense_key;
291 *asc = sshdr.asc;
292 *ascq = sshdr.ascq;
293 }
294}
295
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800296static int check_for_unit_attention(struct ctlr_info *h,
297 struct CommandList *c)
298{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500299 u8 sense_key, asc, ascq;
300 int sense_len;
301
302 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
303 sense_len = sizeof(c->err_info->SenseInfo);
304 else
305 sense_len = c->err_info->SenseLen;
306
307 decode_sense_data(c->err_info->SenseInfo, sense_len,
308 &sense_key, &asc, &ascq);
309 if (sense_key != UNIT_ATTENTION || asc == -1)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800310 return 0;
311
Stephen Cameron9437ac42015-04-23 09:32:16 -0500312 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800313 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500314 dev_warn(&h->pdev->dev,
315 HPSA "%d: a state change detected, command retried\n",
316 h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800317 break;
318 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600319 dev_warn(&h->pdev->dev,
320 HPSA "%d: LUN failure detected\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800321 break;
322 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600323 dev_warn(&h->pdev->dev,
324 HPSA "%d: report LUN data changed\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800325 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600326 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
327 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800328 */
329 break;
330 case POWER_OR_RESET:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600331 dev_warn(&h->pdev->dev, HPSA "%d: a power on "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800332 "or device reset detected\n", h->ctlr);
333 break;
334 case UNIT_ATTENTION_CLEARED:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600335 dev_warn(&h->pdev->dev, HPSA "%d: unit attention "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800336 "cleared by another initiator\n", h->ctlr);
337 break;
338 default:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600339 dev_warn(&h->pdev->dev, HPSA "%d: unknown "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800340 "unit attention detected\n", h->ctlr);
341 break;
342 }
343 return 1;
344}
345
Matt Bondurant852af202012-05-01 11:42:35 -0500346static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
347{
348 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
349 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
350 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
351 return 0;
352 dev_warn(&h->pdev->dev, HPSA "device busy");
353 return 1;
354}
355
Stephen Camerone985c582015-04-23 09:32:22 -0500356static u32 lockup_detected(struct ctlr_info *h);
357static ssize_t host_show_lockup_detected(struct device *dev,
358 struct device_attribute *attr, char *buf)
359{
360 int ld;
361 struct ctlr_info *h;
362 struct Scsi_Host *shost = class_to_shost(dev);
363
364 h = shost_to_hba(shost);
365 ld = lockup_detected(h);
366
367 return sprintf(buf, "ld=%d\n", ld);
368}
369
Scott Teelda0697b2014-02-18 13:57:00 -0600370static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
371 struct device_attribute *attr,
372 const char *buf, size_t count)
373{
374 int status, len;
375 struct ctlr_info *h;
376 struct Scsi_Host *shost = class_to_shost(dev);
377 char tmpbuf[10];
378
379 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
380 return -EACCES;
381 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
382 strncpy(tmpbuf, buf, len);
383 tmpbuf[len] = '\0';
384 if (sscanf(tmpbuf, "%d", &status) != 1)
385 return -EINVAL;
386 h = shost_to_hba(shost);
387 h->acciopath_status = !!status;
388 dev_warn(&h->pdev->dev,
389 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
390 h->acciopath_status ? "enabled" : "disabled");
391 return count;
392}
393
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600394static ssize_t host_store_raid_offload_debug(struct device *dev,
395 struct device_attribute *attr,
396 const char *buf, size_t count)
397{
398 int debug_level, len;
399 struct ctlr_info *h;
400 struct Scsi_Host *shost = class_to_shost(dev);
401 char tmpbuf[10];
402
403 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
404 return -EACCES;
405 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
406 strncpy(tmpbuf, buf, len);
407 tmpbuf[len] = '\0';
408 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
409 return -EINVAL;
410 if (debug_level < 0)
411 debug_level = 0;
412 h = shost_to_hba(shost);
413 h->raid_offload_debug = debug_level;
414 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
415 h->raid_offload_debug);
416 return count;
417}
418
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800419static ssize_t host_store_rescan(struct device *dev,
420 struct device_attribute *attr,
421 const char *buf, size_t count)
422{
423 struct ctlr_info *h;
424 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600425 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600426 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800427 return count;
428}
429
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500430static ssize_t host_show_firmware_revision(struct device *dev,
431 struct device_attribute *attr, char *buf)
432{
433 struct ctlr_info *h;
434 struct Scsi_Host *shost = class_to_shost(dev);
435 unsigned char *fwrev;
436
437 h = shost_to_hba(shost);
438 if (!h->hba_inquiry_data)
439 return 0;
440 fwrev = &h->hba_inquiry_data[32];
441 return snprintf(buf, 20, "%c%c%c%c\n",
442 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
443}
444
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600445static ssize_t host_show_commands_outstanding(struct device *dev,
446 struct device_attribute *attr, char *buf)
447{
448 struct Scsi_Host *shost = class_to_shost(dev);
449 struct ctlr_info *h = shost_to_hba(shost);
450
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600451 return snprintf(buf, 20, "%d\n",
452 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600453}
454
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600455static ssize_t host_show_transport_mode(struct device *dev,
456 struct device_attribute *attr, char *buf)
457{
458 struct ctlr_info *h;
459 struct Scsi_Host *shost = class_to_shost(dev);
460
461 h = shost_to_hba(shost);
462 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600463 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600464 "performant" : "simple");
465}
466
Scott Teelda0697b2014-02-18 13:57:00 -0600467static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
468 struct device_attribute *attr, char *buf)
469{
470 struct ctlr_info *h;
471 struct Scsi_Host *shost = class_to_shost(dev);
472
473 h = shost_to_hba(shost);
474 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
475 (h->acciopath_status == 1) ? "enabled" : "disabled");
476}
477
Stephen M. Cameron46380782011-05-03 15:00:01 -0500478/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600479static u32 unresettable_controller[] = {
480 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500481 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600482 0x3223103C, /* Smart Array P800 */
483 0x3234103C, /* Smart Array P400 */
484 0x3235103C, /* Smart Array P400i */
485 0x3211103C, /* Smart Array E200i */
486 0x3212103C, /* Smart Array E200 */
487 0x3213103C, /* Smart Array E200i */
488 0x3214103C, /* Smart Array E200i */
489 0x3215103C, /* Smart Array E200i */
490 0x3237103C, /* Smart Array E500 */
491 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100492 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600493 0x409C0E11, /* Smart Array 6400 */
494 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100495 0x40700E11, /* Smart Array 5300 */
496 0x40820E11, /* Smart Array 532 */
497 0x40830E11, /* Smart Array 5312 */
498 0x409A0E11, /* Smart Array 641 */
499 0x409B0E11, /* Smart Array 642 */
500 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600501};
502
Stephen M. Cameron46380782011-05-03 15:00:01 -0500503/* List of controllers which cannot even be soft reset */
504static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100505 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100506 0x40700E11, /* Smart Array 5300 */
507 0x40820E11, /* Smart Array 532 */
508 0x40830E11, /* Smart Array 5312 */
509 0x409A0E11, /* Smart Array 641 */
510 0x409B0E11, /* Smart Array 642 */
511 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500512 /* Exclude 640x boards. These are two pci devices in one slot
513 * which share a battery backed cache module. One controls the
514 * cache, the other accesses the cache through the one that controls
515 * it. If we reset the one controlling the cache, the other will
516 * likely not be happy. Just forbid resetting this conjoined mess.
517 * The 640x isn't really supported by hpsa anyway.
518 */
519 0x409C0E11, /* Smart Array 6400 */
520 0x409D0E11, /* Smart Array 6400 EM */
521};
522
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500523static u32 needs_abort_tags_swizzled[] = {
524 0x323D103C, /* Smart Array P700m */
525 0x324a103C, /* Smart Array P712m */
526 0x324b103C, /* SmartArray P711m */
527};
528
529static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600530{
531 int i;
532
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500533 for (i = 0; i < nelems; i++)
534 if (a[i] == board_id)
535 return 1;
536 return 0;
537}
538
539static int ctlr_is_hard_resettable(u32 board_id)
540{
541 return !board_id_in_array(unresettable_controller,
542 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600543}
544
Stephen M. Cameron46380782011-05-03 15:00:01 -0500545static int ctlr_is_soft_resettable(u32 board_id)
546{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500547 return !board_id_in_array(soft_unresettable_controller,
548 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500549}
550
551static int ctlr_is_resettable(u32 board_id)
552{
553 return ctlr_is_hard_resettable(board_id) ||
554 ctlr_is_soft_resettable(board_id);
555}
556
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500557static int ctlr_needs_abort_tags_swizzled(u32 board_id)
558{
559 return board_id_in_array(needs_abort_tags_swizzled,
560 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
561}
562
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600563static ssize_t host_show_resettable(struct device *dev,
564 struct device_attribute *attr, char *buf)
565{
566 struct ctlr_info *h;
567 struct Scsi_Host *shost = class_to_shost(dev);
568
569 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500570 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600571}
572
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800573static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
574{
575 return (scsi3addr[3] & 0xC0) == 0x40;
576}
577
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600578static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
579 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800580};
Scott Teel6b80b182014-02-18 13:56:55 -0600581#define HPSA_RAID_0 0
582#define HPSA_RAID_4 1
583#define HPSA_RAID_1 2 /* also used for RAID 10 */
584#define HPSA_RAID_5 3 /* also used for RAID 50 */
585#define HPSA_RAID_51 4
586#define HPSA_RAID_6 5 /* also used for RAID 60 */
587#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800588#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
589
590static ssize_t raid_level_show(struct device *dev,
591 struct device_attribute *attr, char *buf)
592{
593 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600594 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800595 struct ctlr_info *h;
596 struct scsi_device *sdev;
597 struct hpsa_scsi_dev_t *hdev;
598 unsigned long flags;
599
600 sdev = to_scsi_device(dev);
601 h = sdev_to_hba(sdev);
602 spin_lock_irqsave(&h->lock, flags);
603 hdev = sdev->hostdata;
604 if (!hdev) {
605 spin_unlock_irqrestore(&h->lock, flags);
606 return -ENODEV;
607 }
608
609 /* Is this even a logical drive? */
610 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
611 spin_unlock_irqrestore(&h->lock, flags);
612 l = snprintf(buf, PAGE_SIZE, "N/A\n");
613 return l;
614 }
615
616 rlevel = hdev->raid_level;
617 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600618 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800619 rlevel = RAID_UNKNOWN;
620 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
621 return l;
622}
623
624static ssize_t lunid_show(struct device *dev,
625 struct device_attribute *attr, char *buf)
626{
627 struct ctlr_info *h;
628 struct scsi_device *sdev;
629 struct hpsa_scsi_dev_t *hdev;
630 unsigned long flags;
631 unsigned char lunid[8];
632
633 sdev = to_scsi_device(dev);
634 h = sdev_to_hba(sdev);
635 spin_lock_irqsave(&h->lock, flags);
636 hdev = sdev->hostdata;
637 if (!hdev) {
638 spin_unlock_irqrestore(&h->lock, flags);
639 return -ENODEV;
640 }
641 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
642 spin_unlock_irqrestore(&h->lock, flags);
643 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
644 lunid[0], lunid[1], lunid[2], lunid[3],
645 lunid[4], lunid[5], lunid[6], lunid[7]);
646}
647
648static ssize_t unique_id_show(struct device *dev,
649 struct device_attribute *attr, char *buf)
650{
651 struct ctlr_info *h;
652 struct scsi_device *sdev;
653 struct hpsa_scsi_dev_t *hdev;
654 unsigned long flags;
655 unsigned char sn[16];
656
657 sdev = to_scsi_device(dev);
658 h = sdev_to_hba(sdev);
659 spin_lock_irqsave(&h->lock, flags);
660 hdev = sdev->hostdata;
661 if (!hdev) {
662 spin_unlock_irqrestore(&h->lock, flags);
663 return -ENODEV;
664 }
665 memcpy(sn, hdev->device_id, sizeof(sn));
666 spin_unlock_irqrestore(&h->lock, flags);
667 return snprintf(buf, 16 * 2 + 2,
668 "%02X%02X%02X%02X%02X%02X%02X%02X"
669 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
670 sn[0], sn[1], sn[2], sn[3],
671 sn[4], sn[5], sn[6], sn[7],
672 sn[8], sn[9], sn[10], sn[11],
673 sn[12], sn[13], sn[14], sn[15]);
674}
675
Scott Teelc1988682014-02-18 13:55:54 -0600676static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
677 struct device_attribute *attr, char *buf)
678{
679 struct ctlr_info *h;
680 struct scsi_device *sdev;
681 struct hpsa_scsi_dev_t *hdev;
682 unsigned long flags;
683 int offload_enabled;
684
685 sdev = to_scsi_device(dev);
686 h = sdev_to_hba(sdev);
687 spin_lock_irqsave(&h->lock, flags);
688 hdev = sdev->hostdata;
689 if (!hdev) {
690 spin_unlock_irqrestore(&h->lock, flags);
691 return -ENODEV;
692 }
693 offload_enabled = hdev->offload_enabled;
694 spin_unlock_irqrestore(&h->lock, flags);
695 return snprintf(buf, 20, "%d\n", offload_enabled);
696}
697
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600698static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
699static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
700static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
701static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600702static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
703 host_show_hp_ssd_smart_path_enabled, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600704static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
705 host_show_hp_ssd_smart_path_status,
706 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600707static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
708 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600709static DEVICE_ATTR(firmware_revision, S_IRUGO,
710 host_show_firmware_revision, NULL);
711static DEVICE_ATTR(commands_outstanding, S_IRUGO,
712 host_show_commands_outstanding, NULL);
713static DEVICE_ATTR(transport_mode, S_IRUGO,
714 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600715static DEVICE_ATTR(resettable, S_IRUGO,
716 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500717static DEVICE_ATTR(lockup_detected, S_IRUGO,
718 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600719
720static struct device_attribute *hpsa_sdev_attrs[] = {
721 &dev_attr_raid_level,
722 &dev_attr_lunid,
723 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600724 &dev_attr_hp_ssd_smart_path_enabled,
Stephen Camerone985c582015-04-23 09:32:22 -0500725 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600726 NULL,
727};
728
729static struct device_attribute *hpsa_shost_attrs[] = {
730 &dev_attr_rescan,
731 &dev_attr_firmware_revision,
732 &dev_attr_commands_outstanding,
733 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600734 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600735 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600736 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600737 NULL,
738};
739
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500740#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
741 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
742
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600743static struct scsi_host_template hpsa_driver_template = {
744 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600745 .name = HPSA,
746 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600747 .queuecommand = hpsa_scsi_queue_command,
748 .scan_start = hpsa_scan_start,
749 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600750 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600751 .this_id = -1,
752 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500753 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600754 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
755 .ioctl = hpsa_ioctl,
756 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500757 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600758 .slave_destroy = hpsa_slave_destroy,
759#ifdef CONFIG_COMPAT
760 .compat_ioctl = hpsa_compat_ioctl,
761#endif
762 .sdev_attrs = hpsa_sdev_attrs,
763 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500764 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400765 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600766};
767
Matt Gates254f7962012-05-01 11:43:06 -0500768static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600769{
770 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500771 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600772
Matt Gatese1f7de02014-02-18 13:55:17 -0600773 if (h->transMethod & CFGTBL_Trans_io_accel1)
774 return h->access.command_completed(h, q);
775
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600776 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500777 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600778
Matt Gates254f7962012-05-01 11:43:06 -0500779 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
780 a = rq->head[rq->current_entry];
781 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600782 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600783 } else {
784 a = FIFO_EMPTY;
785 }
786 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500787 if (rq->current_entry == h->max_commands) {
788 rq->current_entry = 0;
789 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600790 }
791 return a;
792}
793
Scott Teelc3497752014-02-18 13:56:34 -0600794/*
795 * There are some special bits in the bus address of the
796 * command that we have to set for the controller to know
797 * how to process the command:
798 *
799 * Normal performant mode:
800 * bit 0: 1 means performant mode, 0 means simple mode.
801 * bits 1-3 = block fetch table entry
802 * bits 4-6 = command type (== 0)
803 *
804 * ioaccel1 mode:
805 * bit 0 = "performant mode" bit.
806 * bits 1-3 = block fetch table entry
807 * bits 4-6 = command type (== 110)
808 * (command type is needed because ioaccel1 mode
809 * commands are submitted through the same register as normal
810 * mode commands, so this is how the controller knows whether
811 * the command is normal mode or ioaccel1 mode.)
812 *
813 * ioaccel2 mode:
814 * bit 0 = "performant mode" bit.
815 * bits 1-4 = block fetch table entry (note extra bit)
816 * bits 4-6 = not needed, because ioaccel2 mode has
817 * a separate special register for submitting commands.
818 */
819
Webb Scales25163bd2015-04-23 09:32:00 -0500820/*
821 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600822 * set bit 0 for pull model, bits 3-1 for block fetch
823 * register number
824 */
Webb Scales25163bd2015-04-23 09:32:00 -0500825#define DEFAULT_REPLY_QUEUE (-1)
826static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
827 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600828{
Matt Gates254f7962012-05-01 11:43:06 -0500829 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600830 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -0500831 if (unlikely(!h->msix_vector))
832 return;
833 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -0500834 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200835 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -0500836 else
837 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500838 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600839}
840
Scott Teelc3497752014-02-18 13:56:34 -0600841static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500842 struct CommandList *c,
843 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600844{
845 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
846
Webb Scales25163bd2015-04-23 09:32:00 -0500847 /*
848 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600849 * processor. This seems to give the best I/O throughput.
850 */
Webb Scales25163bd2015-04-23 09:32:00 -0500851 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
852 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
853 else
854 cp->ReplyQueue = reply_queue % h->nreply_queues;
855 /*
856 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600857 * - performant mode bit (bit 0)
858 * - pull count (bits 1-3)
859 * - command type (bits 4-6)
860 */
861 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
862 IOACCEL1_BUSADDR_CMDTYPE;
863}
864
865static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500866 struct CommandList *c,
867 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600868{
869 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
870
Webb Scales25163bd2015-04-23 09:32:00 -0500871 /*
872 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600873 * processor. This seems to give the best I/O throughput.
874 */
Webb Scales25163bd2015-04-23 09:32:00 -0500875 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
876 cp->reply_queue = smp_processor_id() % h->nreply_queues;
877 else
878 cp->reply_queue = reply_queue % h->nreply_queues;
879 /*
880 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600881 * - performant mode bit not used in ioaccel mode 2
882 * - pull count (bits 0-3)
883 * - command type isn't needed for ioaccel2
884 */
885 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
886}
887
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500888static int is_firmware_flash_cmd(u8 *cdb)
889{
890 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
891}
892
893/*
894 * During firmware flash, the heartbeat register may not update as frequently
895 * as it should. So we dial down lockup detection during firmware flash. and
896 * dial it back up when firmware flash completes.
897 */
898#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
899#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
900static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
901 struct CommandList *c)
902{
903 if (!is_firmware_flash_cmd(c->Request.CDB))
904 return;
905 atomic_inc(&h->firmware_flash_in_progress);
906 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
907}
908
909static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
910 struct CommandList *c)
911{
912 if (is_firmware_flash_cmd(c->Request.CDB) &&
913 atomic_dec_and_test(&h->firmware_flash_in_progress))
914 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
915}
916
Webb Scales25163bd2015-04-23 09:32:00 -0500917static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
918 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600919{
Stephen Cameronc05e8862015-01-23 16:44:40 -0600920 dial_down_lockup_detection_during_fw_flash(h, c);
921 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -0600922 switch (c->cmd_type) {
923 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -0500924 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600925 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -0600926 break;
927 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -0500928 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600929 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -0600930 break;
931 default:
Webb Scales25163bd2015-04-23 09:32:00 -0500932 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600933 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -0600934 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600935}
936
Webb Scales25163bd2015-04-23 09:32:00 -0500937static void enqueue_cmd_and_start_io(struct ctlr_info *h,
938 struct CommandList *c)
939{
940 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
941}
942
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600943static inline int is_hba_lunid(unsigned char scsi3addr[])
944{
945 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
946}
947
948static inline int is_scsi_rev_5(struct ctlr_info *h)
949{
950 if (!h->hba_inquiry_data)
951 return 0;
952 if ((h->hba_inquiry_data[2] & 0x07) == 5)
953 return 1;
954 return 0;
955}
956
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800957static int hpsa_find_target_lun(struct ctlr_info *h,
958 unsigned char scsi3addr[], int bus, int *target, int *lun)
959{
960 /* finds an unused bus, target, lun for a new physical device
961 * assumes h->devlock is held
962 */
963 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -0500964 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800965
Akinobu Mita263d9402012-01-21 00:15:27 +0900966 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800967
968 for (i = 0; i < h->ndevices; i++) {
969 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +0900970 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800971 }
972
Akinobu Mita263d9402012-01-21 00:15:27 +0900973 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
974 if (i < HPSA_MAX_DEVICES) {
975 /* *bus = 1; */
976 *target = i;
977 *lun = 0;
978 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800979 }
980 return !found;
981}
982
Webb Scales0d96ef52015-04-23 09:31:55 -0500983static inline void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
984 struct hpsa_scsi_dev_t *dev, char *description)
985{
986 dev_printk(level, &h->pdev->dev,
987 "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
988 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
989 description,
990 scsi_device_type(dev->devtype),
991 dev->vendor,
992 dev->model,
993 dev->raid_level > RAID_UNKNOWN ?
994 "RAID-?" : raid_label[dev->raid_level],
995 dev->offload_config ? '+' : '-',
996 dev->offload_enabled ? '+' : '-',
997 dev->expose_state);
998}
999
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001000/* Add an entry into h->dev[] array. */
1001static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
1002 struct hpsa_scsi_dev_t *device,
1003 struct hpsa_scsi_dev_t *added[], int *nadded)
1004{
1005 /* assumes h->devlock is held */
1006 int n = h->ndevices;
1007 int i;
1008 unsigned char addr1[8], addr2[8];
1009 struct hpsa_scsi_dev_t *sd;
1010
Scott Teelcfe5bad2011-10-26 16:21:07 -05001011 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001012 dev_err(&h->pdev->dev, "too many devices, some will be "
1013 "inaccessible.\n");
1014 return -1;
1015 }
1016
1017 /* physical devices do not have lun or target assigned until now. */
1018 if (device->lun != -1)
1019 /* Logical device, lun is already assigned. */
1020 goto lun_assigned;
1021
1022 /* If this device a non-zero lun of a multi-lun device
1023 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001024 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001025 */
1026 if (device->scsi3addr[4] == 0) {
1027 /* This is not a non-zero lun of a multi-lun device */
1028 if (hpsa_find_target_lun(h, device->scsi3addr,
1029 device->bus, &device->target, &device->lun) != 0)
1030 return -1;
1031 goto lun_assigned;
1032 }
1033
1034 /* This is a non-zero lun of a multi-lun device.
1035 * Search through our list and find the device which
1036 * has the same 8 byte LUN address, excepting byte 4.
1037 * Assign the same bus and target for this new LUN.
1038 * Use the logical unit number from the firmware.
1039 */
1040 memcpy(addr1, device->scsi3addr, 8);
1041 addr1[4] = 0;
1042 for (i = 0; i < n; i++) {
1043 sd = h->dev[i];
1044 memcpy(addr2, sd->scsi3addr, 8);
1045 addr2[4] = 0;
1046 /* differ only in byte 4? */
1047 if (memcmp(addr1, addr2, 8) == 0) {
1048 device->bus = sd->bus;
1049 device->target = sd->target;
1050 device->lun = device->scsi3addr[4];
1051 break;
1052 }
1053 }
1054 if (device->lun == -1) {
1055 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1056 " suspect firmware bug or unsupported hardware "
1057 "configuration.\n");
1058 return -1;
1059 }
1060
1061lun_assigned:
1062
1063 h->dev[n] = device;
1064 h->ndevices++;
1065 added[*nadded] = device;
1066 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001067 hpsa_show_dev_msg(KERN_INFO, h, device,
1068 device->expose_state & HPSA_SCSI_ADD ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001069 device->offload_to_be_enabled = device->offload_enabled;
1070 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001071 return 0;
1072}
1073
Scott Teelbd9244f2012-01-19 14:01:30 -06001074/* Update an entry in h->dev[] array. */
1075static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
1076 int entry, struct hpsa_scsi_dev_t *new_entry)
1077{
Robert Elliotta473d862015-04-23 09:32:54 -05001078 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001079 /* assumes h->devlock is held */
1080 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1081
1082 /* Raid level changed. */
1083 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001084
Don Brace03383732015-01-23 16:43:30 -06001085 /* Raid offload parameters changed. Careful about the ordering. */
1086 if (new_entry->offload_config && new_entry->offload_enabled) {
1087 /*
1088 * if drive is newly offload_enabled, we want to copy the
1089 * raid map data first. If previously offload_enabled and
1090 * offload_config were set, raid map data had better be
1091 * the same as it was before. if raid map data is changed
1092 * then it had better be the case that
1093 * h->dev[entry]->offload_enabled is currently 0.
1094 */
1095 h->dev[entry]->raid_map = new_entry->raid_map;
1096 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001097 }
Joe Handzika3144e02015-04-23 09:32:59 -05001098 if (new_entry->hba_ioaccel_enabled) {
1099 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1100 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1101 }
1102 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001103 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001104 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001105 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001106
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001107 /*
1108 * We can turn off ioaccel offload now, but need to delay turning
1109 * it on until we can update h->dev[entry]->phys_disk[], but we
1110 * can't do that until all the devices are updated.
1111 */
1112 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1113 if (!new_entry->offload_enabled)
1114 h->dev[entry]->offload_enabled = 0;
1115
Robert Elliotta473d862015-04-23 09:32:54 -05001116 offload_enabled = h->dev[entry]->offload_enabled;
1117 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001118 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001119 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001120}
1121
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001122/* Replace an entry from h->dev[] array. */
1123static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
1124 int entry, struct hpsa_scsi_dev_t *new_entry,
1125 struct hpsa_scsi_dev_t *added[], int *nadded,
1126 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1127{
1128 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001129 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001130 removed[*nremoved] = h->dev[entry];
1131 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001132
1133 /*
1134 * New physical devices won't have target/lun assigned yet
1135 * so we need to preserve the values in the slot we are replacing.
1136 */
1137 if (new_entry->target == -1) {
1138 new_entry->target = h->dev[entry]->target;
1139 new_entry->lun = h->dev[entry]->lun;
1140 }
1141
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001142 h->dev[entry] = new_entry;
1143 added[*nadded] = new_entry;
1144 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001145 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001146 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1147 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001148}
1149
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001150/* Remove an entry from h->dev[] array. */
1151static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1152 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1153{
1154 /* assumes h->devlock is held */
1155 int i;
1156 struct hpsa_scsi_dev_t *sd;
1157
Scott Teelcfe5bad2011-10-26 16:21:07 -05001158 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001159
1160 sd = h->dev[entry];
1161 removed[*nremoved] = h->dev[entry];
1162 (*nremoved)++;
1163
1164 for (i = entry; i < h->ndevices-1; i++)
1165 h->dev[i] = h->dev[i+1];
1166 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001167 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001168}
1169
1170#define SCSI3ADDR_EQ(a, b) ( \
1171 (a)[7] == (b)[7] && \
1172 (a)[6] == (b)[6] && \
1173 (a)[5] == (b)[5] && \
1174 (a)[4] == (b)[4] && \
1175 (a)[3] == (b)[3] && \
1176 (a)[2] == (b)[2] && \
1177 (a)[1] == (b)[1] && \
1178 (a)[0] == (b)[0])
1179
1180static void fixup_botched_add(struct ctlr_info *h,
1181 struct hpsa_scsi_dev_t *added)
1182{
1183 /* called when scsi_add_device fails in order to re-adjust
1184 * h->dev[] to match the mid layer's view.
1185 */
1186 unsigned long flags;
1187 int i, j;
1188
1189 spin_lock_irqsave(&h->lock, flags);
1190 for (i = 0; i < h->ndevices; i++) {
1191 if (h->dev[i] == added) {
1192 for (j = i; j < h->ndevices-1; j++)
1193 h->dev[j] = h->dev[j+1];
1194 h->ndevices--;
1195 break;
1196 }
1197 }
1198 spin_unlock_irqrestore(&h->lock, flags);
1199 kfree(added);
1200}
1201
1202static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1203 struct hpsa_scsi_dev_t *dev2)
1204{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001205 /* we compare everything except lun and target as these
1206 * are not yet assigned. Compare parts likely
1207 * to differ first
1208 */
1209 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1210 sizeof(dev1->scsi3addr)) != 0)
1211 return 0;
1212 if (memcmp(dev1->device_id, dev2->device_id,
1213 sizeof(dev1->device_id)) != 0)
1214 return 0;
1215 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1216 return 0;
1217 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1218 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001219 if (dev1->devtype != dev2->devtype)
1220 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001221 if (dev1->bus != dev2->bus)
1222 return 0;
1223 return 1;
1224}
1225
Scott Teelbd9244f2012-01-19 14:01:30 -06001226static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1227 struct hpsa_scsi_dev_t *dev2)
1228{
1229 /* Device attributes that can change, but don't mean
1230 * that the device is a different device, nor that the OS
1231 * needs to be told anything about the change.
1232 */
1233 if (dev1->raid_level != dev2->raid_level)
1234 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001235 if (dev1->offload_config != dev2->offload_config)
1236 return 1;
1237 if (dev1->offload_enabled != dev2->offload_enabled)
1238 return 1;
Don Brace03383732015-01-23 16:43:30 -06001239 if (dev1->queue_depth != dev2->queue_depth)
1240 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001241 return 0;
1242}
1243
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001244/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1245 * and return needle location in *index. If scsi3addr matches, but not
1246 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001247 * location in *index.
1248 * In the case of a minor device attribute change, such as RAID level, just
1249 * return DEVICE_UPDATED, along with the updated device's location in index.
1250 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001251 */
1252static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1253 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1254 int *index)
1255{
1256 int i;
1257#define DEVICE_NOT_FOUND 0
1258#define DEVICE_CHANGED 1
1259#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001260#define DEVICE_UPDATED 3
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001261 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001262 if (haystack[i] == NULL) /* previously removed. */
1263 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001264 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1265 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001266 if (device_is_the_same(needle, haystack[i])) {
1267 if (device_updated(needle, haystack[i]))
1268 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001269 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001270 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001271 /* Keep offline devices offline */
1272 if (needle->volume_offline)
1273 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001274 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001275 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001276 }
1277 }
1278 *index = -1;
1279 return DEVICE_NOT_FOUND;
1280}
1281
Stephen M. Cameron98465902014-02-21 16:25:00 -06001282static void hpsa_monitor_offline_device(struct ctlr_info *h,
1283 unsigned char scsi3addr[])
1284{
1285 struct offline_device_entry *device;
1286 unsigned long flags;
1287
1288 /* Check to see if device is already on the list */
1289 spin_lock_irqsave(&h->offline_device_lock, flags);
1290 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1291 if (memcmp(device->scsi3addr, scsi3addr,
1292 sizeof(device->scsi3addr)) == 0) {
1293 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1294 return;
1295 }
1296 }
1297 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1298
1299 /* Device is not on the list, add it. */
1300 device = kmalloc(sizeof(*device), GFP_KERNEL);
1301 if (!device) {
1302 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1303 return;
1304 }
1305 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1306 spin_lock_irqsave(&h->offline_device_lock, flags);
1307 list_add_tail(&device->offline_list, &h->offline_device_list);
1308 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1309}
1310
1311/* Print a message explaining various offline volume states */
1312static void hpsa_show_volume_status(struct ctlr_info *h,
1313 struct hpsa_scsi_dev_t *sd)
1314{
1315 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1316 dev_info(&h->pdev->dev,
1317 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1318 h->scsi_host->host_no,
1319 sd->bus, sd->target, sd->lun);
1320 switch (sd->volume_offline) {
1321 case HPSA_LV_OK:
1322 break;
1323 case HPSA_LV_UNDERGOING_ERASE:
1324 dev_info(&h->pdev->dev,
1325 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1326 h->scsi_host->host_no,
1327 sd->bus, sd->target, sd->lun);
1328 break;
1329 case HPSA_LV_UNDERGOING_RPI:
1330 dev_info(&h->pdev->dev,
1331 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
1332 h->scsi_host->host_no,
1333 sd->bus, sd->target, sd->lun);
1334 break;
1335 case HPSA_LV_PENDING_RPI:
1336 dev_info(&h->pdev->dev,
1337 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1338 h->scsi_host->host_no,
1339 sd->bus, sd->target, sd->lun);
1340 break;
1341 case HPSA_LV_ENCRYPTED_NO_KEY:
1342 dev_info(&h->pdev->dev,
1343 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1344 h->scsi_host->host_no,
1345 sd->bus, sd->target, sd->lun);
1346 break;
1347 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1348 dev_info(&h->pdev->dev,
1349 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1350 h->scsi_host->host_no,
1351 sd->bus, sd->target, sd->lun);
1352 break;
1353 case HPSA_LV_UNDERGOING_ENCRYPTION:
1354 dev_info(&h->pdev->dev,
1355 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1356 h->scsi_host->host_no,
1357 sd->bus, sd->target, sd->lun);
1358 break;
1359 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1360 dev_info(&h->pdev->dev,
1361 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1362 h->scsi_host->host_no,
1363 sd->bus, sd->target, sd->lun);
1364 break;
1365 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1366 dev_info(&h->pdev->dev,
1367 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1368 h->scsi_host->host_no,
1369 sd->bus, sd->target, sd->lun);
1370 break;
1371 case HPSA_LV_PENDING_ENCRYPTION:
1372 dev_info(&h->pdev->dev,
1373 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1374 h->scsi_host->host_no,
1375 sd->bus, sd->target, sd->lun);
1376 break;
1377 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1378 dev_info(&h->pdev->dev,
1379 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1380 h->scsi_host->host_no,
1381 sd->bus, sd->target, sd->lun);
1382 break;
1383 }
1384}
1385
Don Brace03383732015-01-23 16:43:30 -06001386/*
1387 * Figure the list of physical drive pointers for a logical drive with
1388 * raid offload configured.
1389 */
1390static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1391 struct hpsa_scsi_dev_t *dev[], int ndevices,
1392 struct hpsa_scsi_dev_t *logical_drive)
1393{
1394 struct raid_map_data *map = &logical_drive->raid_map;
1395 struct raid_map_disk_data *dd = &map->data[0];
1396 int i, j;
1397 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1398 le16_to_cpu(map->metadata_disks_per_row);
1399 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1400 le16_to_cpu(map->layout_map_count) *
1401 total_disks_per_row;
1402 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1403 total_disks_per_row;
1404 int qdepth;
1405
1406 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1407 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1408
1409 qdepth = 0;
1410 for (i = 0; i < nraid_map_entries; i++) {
1411 logical_drive->phys_disk[i] = NULL;
1412 if (!logical_drive->offload_config)
1413 continue;
1414 for (j = 0; j < ndevices; j++) {
1415 if (dev[j]->devtype != TYPE_DISK)
1416 continue;
1417 if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
1418 continue;
1419 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1420 continue;
1421
1422 logical_drive->phys_disk[i] = dev[j];
1423 if (i < nphys_disk)
1424 qdepth = min(h->nr_cmds, qdepth +
1425 logical_drive->phys_disk[i]->queue_depth);
1426 break;
1427 }
1428
1429 /*
1430 * This can happen if a physical drive is removed and
1431 * the logical drive is degraded. In that case, the RAID
1432 * map data will refer to a physical disk which isn't actually
1433 * present. And in that case offload_enabled should already
1434 * be 0, but we'll turn it off here just in case
1435 */
1436 if (!logical_drive->phys_disk[i]) {
1437 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001438 logical_drive->offload_to_be_enabled = 0;
1439 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001440 }
1441 }
1442 if (nraid_map_entries)
1443 /*
1444 * This is correct for reads, too high for full stripe writes,
1445 * way too high for partial stripe writes
1446 */
1447 logical_drive->queue_depth = qdepth;
1448 else
1449 logical_drive->queue_depth = h->nr_cmds;
1450}
1451
1452static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1453 struct hpsa_scsi_dev_t *dev[], int ndevices)
1454{
1455 int i;
1456
1457 for (i = 0; i < ndevices; i++) {
1458 if (dev[i]->devtype != TYPE_DISK)
1459 continue;
1460 if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
1461 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001462
1463 /*
1464 * If offload is currently enabled, the RAID map and
1465 * phys_disk[] assignment *better* not be changing
1466 * and since it isn't changing, we do not need to
1467 * update it.
1468 */
1469 if (dev[i]->offload_enabled)
1470 continue;
1471
Don Brace03383732015-01-23 16:43:30 -06001472 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1473 }
1474}
1475
Stephen M. Cameron4967bd32010-02-04 08:41:49 -06001476static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001477 struct hpsa_scsi_dev_t *sd[], int nsds)
1478{
1479 /* sd contains scsi3 addresses and devtypes, and inquiry
1480 * data. This function takes what's in sd to be the current
1481 * reality and updates h->dev[] to reflect that reality.
1482 */
1483 int i, entry, device_change, changes = 0;
1484 struct hpsa_scsi_dev_t *csd;
1485 unsigned long flags;
1486 struct hpsa_scsi_dev_t **added, **removed;
1487 int nadded, nremoved;
1488 struct Scsi_Host *sh = NULL;
1489
Scott Teelcfe5bad2011-10-26 16:21:07 -05001490 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1491 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001492
1493 if (!added || !removed) {
1494 dev_warn(&h->pdev->dev, "out of memory in "
1495 "adjust_hpsa_scsi_table\n");
1496 goto free_and_out;
1497 }
1498
1499 spin_lock_irqsave(&h->devlock, flags);
1500
1501 /* find any devices in h->dev[] that are not in
1502 * sd[] and remove them from h->dev[], and for any
1503 * devices which have changed, remove the old device
1504 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001505 * If minor device attributes change, just update
1506 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001507 */
1508 i = 0;
1509 nremoved = 0;
1510 nadded = 0;
1511 while (i < h->ndevices) {
1512 csd = h->dev[i];
1513 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1514 if (device_change == DEVICE_NOT_FOUND) {
1515 changes++;
1516 hpsa_scsi_remove_entry(h, hostno, i,
1517 removed, &nremoved);
1518 continue; /* remove ^^^, hence i not incremented */
1519 } else if (device_change == DEVICE_CHANGED) {
1520 changes++;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001521 hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
1522 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001523 /* Set it to NULL to prevent it from being freed
1524 * at the bottom of hpsa_update_scsi_devices()
1525 */
1526 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001527 } else if (device_change == DEVICE_UPDATED) {
1528 hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001529 }
1530 i++;
1531 }
1532
1533 /* Now, make sure every device listed in sd[] is also
1534 * listed in h->dev[], adding them if they aren't found
1535 */
1536
1537 for (i = 0; i < nsds; i++) {
1538 if (!sd[i]) /* if already added above. */
1539 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001540
1541 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1542 * as the SCSI mid-layer does not handle such devices well.
1543 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1544 * at 160Hz, and prevents the system from coming up.
1545 */
1546 if (sd[i]->volume_offline) {
1547 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001548 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001549 continue;
1550 }
1551
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001552 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1553 h->ndevices, &entry);
1554 if (device_change == DEVICE_NOT_FOUND) {
1555 changes++;
1556 if (hpsa_scsi_add_entry(h, hostno, sd[i],
1557 added, &nadded) != 0)
1558 break;
1559 sd[i] = NULL; /* prevent from being freed later. */
1560 } else if (device_change == DEVICE_CHANGED) {
1561 /* should never happen... */
1562 changes++;
1563 dev_warn(&h->pdev->dev,
1564 "device unexpectedly changed.\n");
1565 /* but if it does happen, we just ignore that device */
1566 }
1567 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001568 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1569
1570 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1571 * any logical drives that need it enabled.
1572 */
1573 for (i = 0; i < h->ndevices; i++)
1574 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
1575
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001576 spin_unlock_irqrestore(&h->devlock, flags);
1577
Stephen M. Cameron98465902014-02-21 16:25:00 -06001578 /* Monitor devices which are in one of several NOT READY states to be
1579 * brought online later. This must be done without holding h->devlock,
1580 * so don't touch h->dev[]
1581 */
1582 for (i = 0; i < nsds; i++) {
1583 if (!sd[i]) /* if already added above. */
1584 continue;
1585 if (sd[i]->volume_offline)
1586 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1587 }
1588
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001589 /* Don't notify scsi mid layer of any changes the first time through
1590 * (or if there are no changes) scsi_scan_host will do it later the
1591 * first time through.
1592 */
1593 if (hostno == -1 || !changes)
1594 goto free_and_out;
1595
1596 sh = h->scsi_host;
1597 /* Notify scsi mid layer of any removed devices */
1598 for (i = 0; i < nremoved; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001599 if (removed[i]->expose_state & HPSA_SCSI_ADD) {
1600 struct scsi_device *sdev =
1601 scsi_device_lookup(sh, removed[i]->bus,
1602 removed[i]->target, removed[i]->lun);
1603 if (sdev != NULL) {
1604 scsi_remove_device(sdev);
1605 scsi_device_put(sdev);
1606 } else {
1607 /*
1608 * We don't expect to get here.
1609 * future cmds to this device will get selection
1610 * timeout as if the device was gone.
1611 */
Webb Scales0d96ef52015-04-23 09:31:55 -05001612 hpsa_show_dev_msg(KERN_WARNING, h, removed[i],
1613 "didn't find device for removal.");
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001614 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001615 }
1616 kfree(removed[i]);
1617 removed[i] = NULL;
1618 }
1619
1620 /* Notify scsi mid layer of any added devices */
1621 for (i = 0; i < nadded; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001622 if (!(added[i]->expose_state & HPSA_SCSI_ADD))
1623 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001624 if (scsi_add_device(sh, added[i]->bus,
1625 added[i]->target, added[i]->lun) == 0)
1626 continue;
Webb Scales0d96ef52015-04-23 09:31:55 -05001627 hpsa_show_dev_msg(KERN_WARNING, h, added[i],
1628 "addition failed, device not added.");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001629 /* now we have to remove it from h->dev,
1630 * since it didn't get added to scsi mid layer
1631 */
1632 fixup_botched_add(h, added[i]);
1633 }
1634
1635free_and_out:
1636 kfree(added);
1637 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001638}
1639
1640/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001641 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001642 * Assume's h->devlock is held.
1643 */
1644static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1645 int bus, int target, int lun)
1646{
1647 int i;
1648 struct hpsa_scsi_dev_t *sd;
1649
1650 for (i = 0; i < h->ndevices; i++) {
1651 sd = h->dev[i];
1652 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1653 return sd;
1654 }
1655 return NULL;
1656}
1657
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001658static int hpsa_slave_alloc(struct scsi_device *sdev)
1659{
1660 struct hpsa_scsi_dev_t *sd;
1661 unsigned long flags;
1662 struct ctlr_info *h;
1663
1664 h = sdev_to_hba(sdev);
1665 spin_lock_irqsave(&h->devlock, flags);
1666 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1667 sdev_id(sdev), sdev->lun);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001668 if (likely(sd)) {
Don Brace03383732015-01-23 16:43:30 -06001669 atomic_set(&sd->ioaccel_cmds_out, 0);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001670 sdev->hostdata = (sd->expose_state & HPSA_SCSI_ADD) ? sd : NULL;
1671 } else
1672 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001673 spin_unlock_irqrestore(&h->devlock, flags);
1674 return 0;
1675}
1676
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001677/* configure scsi device based on internal per-device structure */
1678static int hpsa_slave_configure(struct scsi_device *sdev)
1679{
1680 struct hpsa_scsi_dev_t *sd;
1681 int queue_depth;
1682
1683 sd = sdev->hostdata;
1684 sdev->no_uld_attach = !sd || !(sd->expose_state & HPSA_ULD_ATTACH);
1685
1686 if (sd)
1687 queue_depth = sd->queue_depth != 0 ?
1688 sd->queue_depth : sdev->host->can_queue;
1689 else
1690 queue_depth = sdev->host->can_queue;
1691
1692 scsi_change_queue_depth(sdev, queue_depth);
1693
1694 return 0;
1695}
1696
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001697static void hpsa_slave_destroy(struct scsi_device *sdev)
1698{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001699 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001700}
1701
Webb Scalesd9a729f2015-04-23 09:33:27 -05001702static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1703{
1704 int i;
1705
1706 if (!h->ioaccel2_cmd_sg_list)
1707 return;
1708 for (i = 0; i < h->nr_cmds; i++) {
1709 kfree(h->ioaccel2_cmd_sg_list[i]);
1710 h->ioaccel2_cmd_sg_list[i] = NULL;
1711 }
1712 kfree(h->ioaccel2_cmd_sg_list);
1713 h->ioaccel2_cmd_sg_list = NULL;
1714}
1715
1716static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1717{
1718 int i;
1719
1720 if (h->chainsize <= 0)
1721 return 0;
1722
1723 h->ioaccel2_cmd_sg_list =
1724 kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
1725 GFP_KERNEL);
1726 if (!h->ioaccel2_cmd_sg_list)
1727 return -ENOMEM;
1728 for (i = 0; i < h->nr_cmds; i++) {
1729 h->ioaccel2_cmd_sg_list[i] =
1730 kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
1731 h->maxsgentries, GFP_KERNEL);
1732 if (!h->ioaccel2_cmd_sg_list[i])
1733 goto clean;
1734 }
1735 return 0;
1736
1737clean:
1738 hpsa_free_ioaccel2_sg_chain_blocks(h);
1739 return -ENOMEM;
1740}
1741
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001742static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1743{
1744 int i;
1745
1746 if (!h->cmd_sg_list)
1747 return;
1748 for (i = 0; i < h->nr_cmds; i++) {
1749 kfree(h->cmd_sg_list[i]);
1750 h->cmd_sg_list[i] = NULL;
1751 }
1752 kfree(h->cmd_sg_list);
1753 h->cmd_sg_list = NULL;
1754}
1755
1756static int hpsa_allocate_sg_chain_blocks(struct ctlr_info *h)
1757{
1758 int i;
1759
1760 if (h->chainsize <= 0)
1761 return 0;
1762
1763 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1764 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001765 if (!h->cmd_sg_list) {
1766 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001767 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001768 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001769 for (i = 0; i < h->nr_cmds; i++) {
1770 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1771 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001772 if (!h->cmd_sg_list[i]) {
1773 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001774 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001775 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001776 }
1777 return 0;
1778
1779clean:
1780 hpsa_free_sg_chain_blocks(h);
1781 return -ENOMEM;
1782}
1783
Webb Scalesd9a729f2015-04-23 09:33:27 -05001784static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
1785 struct io_accel2_cmd *cp, struct CommandList *c)
1786{
1787 struct ioaccel2_sg_element *chain_block;
1788 u64 temp64;
1789 u32 chain_size;
1790
1791 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
1792 chain_size = le32_to_cpu(cp->data_len);
1793 temp64 = pci_map_single(h->pdev, chain_block, chain_size,
1794 PCI_DMA_TODEVICE);
1795 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1796 /* prevent subsequent unmapping */
1797 cp->sg->address = 0;
1798 return -1;
1799 }
1800 cp->sg->address = cpu_to_le64(temp64);
1801 return 0;
1802}
1803
1804static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
1805 struct io_accel2_cmd *cp)
1806{
1807 struct ioaccel2_sg_element *chain_sg;
1808 u64 temp64;
1809 u32 chain_size;
1810
1811 chain_sg = cp->sg;
1812 temp64 = le64_to_cpu(chain_sg->address);
1813 chain_size = le32_to_cpu(cp->data_len);
1814 pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
1815}
1816
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001817static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001818 struct CommandList *c)
1819{
1820 struct SGDescriptor *chain_sg, *chain_block;
1821 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001822 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001823
1824 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
1825 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001826 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
1827 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06001828 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001829 chain_sg->Len = cpu_to_le32(chain_len);
1830 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001831 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001832 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1833 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001834 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001835 return -1;
1836 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001837 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001838 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001839}
1840
1841static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
1842 struct CommandList *c)
1843{
1844 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001845
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001846 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001847 return;
1848
1849 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001850 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
1851 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001852}
1853
Scott Teela09c1442014-02-18 13:57:21 -06001854
1855/* Decode the various types of errors on ioaccel2 path.
1856 * Return 1 for any error that should generate a RAID path retry.
1857 * Return 0 for errors that don't require a RAID path retry.
1858 */
1859static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06001860 struct CommandList *c,
1861 struct scsi_cmnd *cmd,
1862 struct io_accel2_cmd *c2)
1863{
1864 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06001865 int retry = 0;
Scott Teelc3497752014-02-18 13:56:34 -06001866
1867 switch (c2->error_data.serv_response) {
1868 case IOACCEL2_SERV_RESPONSE_COMPLETE:
1869 switch (c2->error_data.status) {
1870 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
1871 break;
1872 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
1873 dev_warn(&h->pdev->dev,
1874 "%s: task complete with check condition.\n",
1875 "HP SSD Smart Path");
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001876 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06001877 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001878 IOACCEL2_SENSE_DATA_PRESENT) {
1879 memset(cmd->sense_buffer, 0,
1880 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06001881 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001882 }
Scott Teelc3497752014-02-18 13:56:34 -06001883 /* copy the sense data */
1884 data_len = c2->error_data.sense_data_len;
1885 if (data_len > SCSI_SENSE_BUFFERSIZE)
1886 data_len = SCSI_SENSE_BUFFERSIZE;
1887 if (data_len > sizeof(c2->error_data.sense_data_buff))
1888 data_len =
1889 sizeof(c2->error_data.sense_data_buff);
1890 memcpy(cmd->sense_buffer,
1891 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06001892 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001893 break;
1894 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
1895 dev_warn(&h->pdev->dev,
1896 "%s: task complete with BUSY status.\n",
1897 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001898 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001899 break;
1900 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
1901 dev_warn(&h->pdev->dev,
1902 "%s: task complete with reservation conflict.\n",
1903 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001904 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001905 break;
1906 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05001907 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001908 break;
1909 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
1910 dev_warn(&h->pdev->dev,
1911 "%s: task complete with aborted status.\n",
1912 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001913 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001914 break;
1915 default:
1916 dev_warn(&h->pdev->dev,
1917 "%s: task complete with unrecognized status: 0x%02x\n",
1918 "HP SSD Smart Path", c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001919 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001920 break;
1921 }
1922 break;
1923 case IOACCEL2_SERV_RESPONSE_FAILURE:
1924 /* don't expect to get here. */
1925 dev_warn(&h->pdev->dev,
1926 "unexpected delivery or target failure, status = 0x%02x\n",
1927 c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001928 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001929 break;
1930 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
1931 break;
1932 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
1933 break;
1934 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
1935 dev_warn(&h->pdev->dev, "task management function rejected.\n");
Scott Teela09c1442014-02-18 13:57:21 -06001936 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001937 break;
1938 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
1939 dev_warn(&h->pdev->dev, "task management function invalid LUN\n");
1940 break;
1941 default:
1942 dev_warn(&h->pdev->dev,
1943 "%s: Unrecognized server response: 0x%02x\n",
Scott Teela09c1442014-02-18 13:57:21 -06001944 "HP SSD Smart Path",
1945 c2->error_data.serv_response);
1946 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001947 break;
1948 }
Scott Teela09c1442014-02-18 13:57:21 -06001949
1950 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06001951}
1952
1953static void process_ioaccel2_completion(struct ctlr_info *h,
1954 struct CommandList *c, struct scsi_cmnd *cmd,
1955 struct hpsa_scsi_dev_t *dev)
1956{
1957 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
1958
1959 /* check for good status */
1960 if (likely(c2->error_data.serv_response == 0 &&
1961 c2->error_data.status == 0)) {
1962 cmd_free(h, c);
1963 cmd->scsi_done(cmd);
1964 return;
1965 }
1966
1967 /* Any RAID offload error results in retry which will use
1968 * the normal I/O path so the controller can handle whatever's
1969 * wrong.
1970 */
1971 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
1972 c2->error_data.serv_response ==
1973 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06001974 if (c2->error_data.status ==
1975 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
1976 dev->offload_enabled = 0;
1977 goto retry_cmd;
Scott Teelc3497752014-02-18 13:56:34 -06001978 }
Don Brace080ef1c2015-01-23 16:43:25 -06001979
1980 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
1981 goto retry_cmd;
1982
Scott Teelc3497752014-02-18 13:56:34 -06001983 cmd_free(h, c);
1984 cmd->scsi_done(cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06001985 return;
1986
1987retry_cmd:
1988 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
1989 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
Scott Teelc3497752014-02-18 13:56:34 -06001990}
1991
Stephen Cameron9437ac42015-04-23 09:32:16 -05001992/* Returns 0 on success, < 0 otherwise. */
1993static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
1994 struct CommandList *cp)
1995{
1996 u8 tmf_status = cp->err_info->ScsiStatus;
1997
1998 switch (tmf_status) {
1999 case CISS_TMF_COMPLETE:
2000 /*
2001 * CISS_TMF_COMPLETE never happens, instead,
2002 * ei->CommandStatus == 0 for this case.
2003 */
2004 case CISS_TMF_SUCCESS:
2005 return 0;
2006 case CISS_TMF_INVALID_FRAME:
2007 case CISS_TMF_NOT_SUPPORTED:
2008 case CISS_TMF_FAILED:
2009 case CISS_TMF_WRONG_LUN:
2010 case CISS_TMF_OVERLAPPED_TAG:
2011 break;
2012 default:
2013 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2014 tmf_status);
2015 break;
2016 }
2017 return -tmf_status;
2018}
2019
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002020static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002021{
2022 struct scsi_cmnd *cmd;
2023 struct ctlr_info *h;
2024 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002025 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002026 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002027
Stephen Cameron9437ac42015-04-23 09:32:16 -05002028 u8 sense_key;
2029 u8 asc; /* additional sense code */
2030 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002031 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002032
2033 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002034 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002035 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002036 dev = cmd->device->hostdata;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002037 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002038
2039 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002040 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002041 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002042 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002043
Webb Scalesd9a729f2015-04-23 09:33:27 -05002044 if ((cp->cmd_type == CMD_IOACCEL2) &&
2045 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2046 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2047
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002048 cmd->result = (DID_OK << 16); /* host byte */
2049 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002050
Don Brace03383732015-01-23 16:43:30 -06002051 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
2052 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2053
Webb Scales25163bd2015-04-23 09:32:00 -05002054 /*
2055 * We check for lockup status here as it may be set for
2056 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2057 * fail_all_oustanding_cmds()
2058 */
2059 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2060 /* DID_NO_CONNECT will prevent a retry */
2061 cmd->result = DID_NO_CONNECT << 16;
2062 cmd_free(h, cp);
2063 cmd->scsi_done(cmd);
2064 return;
2065 }
2066
Scott Teelc3497752014-02-18 13:56:34 -06002067 if (cp->cmd_type == CMD_IOACCEL2)
2068 return process_ioaccel2_completion(h, cp, cmd, dev);
2069
Robert Elliott6aa4c362014-07-03 10:18:19 -05002070 scsi_set_resid(cmd, ei->ResidualCnt);
2071 if (ei->CommandStatus == 0) {
Don Brace03383732015-01-23 16:43:30 -06002072 if (cp->cmd_type == CMD_IOACCEL1)
2073 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002074 cmd_free(h, cp);
2075 cmd->scsi_done(cmd);
2076 return;
2077 }
2078
Matt Gatese1f7de02014-02-18 13:55:17 -06002079 /* For I/O accelerator commands, copy over some fields to the normal
2080 * CISS header used below for error handling.
2081 */
2082 if (cp->cmd_type == CMD_IOACCEL1) {
2083 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002084 cp->Header.SGList = scsi_sg_count(cmd);
2085 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2086 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2087 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002088 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002089 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2090 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002091
2092 /* Any RAID offload error results in retry which will use
2093 * the normal I/O path so the controller can handle whatever's
2094 * wrong.
2095 */
2096 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
2097 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2098 dev->offload_enabled = 0;
Don Brace080ef1c2015-01-23 16:43:25 -06002099 INIT_WORK(&cp->work, hpsa_command_resubmit_worker);
2100 queue_work_on(raw_smp_processor_id(),
2101 h->resubmit_wq, &cp->work);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002102 return;
2103 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002104 }
2105
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002106 /* an error has occurred */
2107 switch (ei->CommandStatus) {
2108
2109 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002110 cmd->result |= ei->ScsiStatus;
2111 /* copy the sense data */
2112 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2113 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2114 else
2115 sense_data_size = sizeof(ei->SenseInfo);
2116 if (ei->SenseLen < sense_data_size)
2117 sense_data_size = ei->SenseLen;
2118 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2119 if (ei->ScsiStatus)
2120 decode_sense_data(ei->SenseInfo, sense_data_size,
2121 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002122 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002123 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002124 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002125 break;
2126 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002127 break;
2128 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002129 /* Problem was not a check condition
2130 * Pass it up to the upper layers...
2131 */
2132 if (ei->ScsiStatus) {
2133 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2134 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2135 "Returning result: 0x%x\n",
2136 cp, ei->ScsiStatus,
2137 sense_key, asc, ascq,
2138 cmd->result);
2139 } else { /* scsi status is zero??? How??? */
2140 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2141 "Returning no connection.\n", cp),
2142
2143 /* Ordinarily, this case should never happen,
2144 * but there is a bug in some released firmware
2145 * revisions that allows it to happen if, for
2146 * example, a 4100 backplane loses power and
2147 * the tape drive is in it. We assume that
2148 * it's a fatal error of some kind because we
2149 * can't show that it wasn't. We will make it
2150 * look like selection timeout since that is
2151 * the most common reason for this to occur,
2152 * and it's severe enough.
2153 */
2154
2155 cmd->result = DID_NO_CONNECT << 16;
2156 }
2157 break;
2158
2159 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2160 break;
2161 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002162 dev_warn(&h->pdev->dev,
2163 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002164 break;
2165 case CMD_INVALID: {
2166 /* print_bytes(cp, sizeof(*cp), 1, 0);
2167 print_cmd(cp); */
2168 /* We get CMD_INVALID if you address a non-existent device
2169 * instead of a selection timeout (no response). You will
2170 * see this if you yank out a drive, then try to access it.
2171 * This is kind of a shame because it means that any other
2172 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2173 * missing target. */
2174 cmd->result = DID_NO_CONNECT << 16;
2175 }
2176 break;
2177 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002178 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002179 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2180 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002181 break;
2182 case CMD_HARDWARE_ERR:
2183 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002184 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2185 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002186 break;
2187 case CMD_CONNECTION_LOST:
2188 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002189 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2190 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002191 break;
2192 case CMD_ABORTED:
2193 cmd->result = DID_ABORT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002194 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2195 cp->Request.CDB, ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002196 break;
2197 case CMD_ABORT_FAILED:
2198 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002199 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2200 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002201 break;
2202 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002203 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002204 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2205 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002206 break;
2207 case CMD_TIMEOUT:
2208 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002209 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2210 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002211 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002212 case CMD_UNABORTABLE:
2213 cmd->result = DID_ERROR << 16;
2214 dev_warn(&h->pdev->dev, "Command unabortable\n");
2215 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002216 case CMD_TMF_STATUS:
2217 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2218 cmd->result = DID_ERROR << 16;
2219 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002220 case CMD_IOACCEL_DISABLED:
2221 /* This only handles the direct pass-through case since RAID
2222 * offload is handled above. Just attempt a retry.
2223 */
2224 cmd->result = DID_SOFT_ERROR << 16;
2225 dev_warn(&h->pdev->dev,
2226 "cp %p had HP SSD Smart Path error\n", cp);
2227 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002228 default:
2229 cmd->result = DID_ERROR << 16;
2230 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2231 cp, ei->CommandStatus);
2232 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002233 cmd_free(h, cp);
Tomas Henzl2cc5bfa2013-08-01 15:14:00 +02002234 cmd->scsi_done(cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002235}
2236
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002237static void hpsa_pci_unmap(struct pci_dev *pdev,
2238 struct CommandList *c, int sg_used, int data_direction)
2239{
2240 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002241
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002242 for (i = 0; i < sg_used; i++)
2243 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2244 le32_to_cpu(c->SG[i].Len),
2245 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002246}
2247
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002248static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002249 struct CommandList *cp,
2250 unsigned char *buf,
2251 size_t buflen,
2252 int data_direction)
2253{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002254 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002255
2256 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2257 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002258 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002259 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002260 }
2261
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002262 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002263 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002264 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002265 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002266 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002267 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002268 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002269 cp->SG[0].Addr = cpu_to_le64(addr64);
2270 cp->SG[0].Len = cpu_to_le32(buflen);
2271 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2272 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2273 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002274 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002275}
2276
Webb Scales25163bd2015-04-23 09:32:00 -05002277#define NO_TIMEOUT ((unsigned long) -1)
2278#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2279static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2280 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002281{
2282 DECLARE_COMPLETION_ONSTACK(wait);
2283
2284 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002285 __enqueue_cmd_and_start_io(h, c, reply_queue);
2286 if (timeout_msecs == NO_TIMEOUT) {
2287 /* TODO: get rid of this no-timeout thing */
2288 wait_for_completion_io(&wait);
2289 return IO_OK;
2290 }
2291 if (!wait_for_completion_io_timeout(&wait,
2292 msecs_to_jiffies(timeout_msecs))) {
2293 dev_warn(&h->pdev->dev, "Command timed out.\n");
2294 return -ETIMEDOUT;
2295 }
2296 return IO_OK;
2297}
2298
2299static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2300 int reply_queue, unsigned long timeout_msecs)
2301{
2302 if (unlikely(lockup_detected(h))) {
2303 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2304 return IO_OK;
2305 }
2306 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002307}
2308
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002309static u32 lockup_detected(struct ctlr_info *h)
2310{
2311 int cpu;
2312 u32 rc, *lockup_detected;
2313
2314 cpu = get_cpu();
2315 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2316 rc = *lockup_detected;
2317 put_cpu();
2318 return rc;
2319}
2320
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002321#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002322static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2323 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002324{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002325 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002326 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002327
2328 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002329 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002330 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2331 timeout_msecs);
2332 if (rc)
2333 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002334 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002335 if (retry_count > 3) {
2336 msleep(backoff_time);
2337 if (backoff_time < 1000)
2338 backoff_time *= 2;
2339 }
Matt Bondurant852af202012-05-01 11:42:35 -05002340 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002341 check_for_busy(h, c)) &&
2342 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002343 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002344 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2345 rc = -EIO;
2346 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002347}
2348
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002349static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2350 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002351{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002352 const u8 *cdb = c->Request.CDB;
2353 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002354
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002355 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2356 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2357 txt, lun[0], lun[1], lun[2], lun[3],
2358 lun[4], lun[5], lun[6], lun[7],
2359 cdb[0], cdb[1], cdb[2], cdb[3],
2360 cdb[4], cdb[5], cdb[6], cdb[7],
2361 cdb[8], cdb[9], cdb[10], cdb[11],
2362 cdb[12], cdb[13], cdb[14], cdb[15]);
2363}
2364
2365static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2366 struct CommandList *cp)
2367{
2368 const struct ErrorInfo *ei = cp->err_info;
2369 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002370 u8 sense_key, asc, ascq;
2371 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002372
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002373 switch (ei->CommandStatus) {
2374 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002375 if (ei->SenseLen > sizeof(ei->SenseInfo))
2376 sense_len = sizeof(ei->SenseInfo);
2377 else
2378 sense_len = ei->SenseLen;
2379 decode_sense_data(ei->SenseInfo, sense_len,
2380 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002381 hpsa_print_cmd(h, "SCSI status", cp);
2382 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002383 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2384 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002385 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002386 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002387 if (ei->ScsiStatus == 0)
2388 dev_warn(d, "SCSI status is abnormally zero. "
2389 "(probably indicates selection timeout "
2390 "reported incorrectly due to a known "
2391 "firmware bug, circa July, 2001.)\n");
2392 break;
2393 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002394 break;
2395 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002396 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002397 break;
2398 case CMD_INVALID: {
2399 /* controller unfortunately reports SCSI passthru's
2400 * to non-existent targets as invalid commands.
2401 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002402 hpsa_print_cmd(h, "invalid command", cp);
2403 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002404 }
2405 break;
2406 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002407 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002408 break;
2409 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002410 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002411 break;
2412 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002413 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002414 break;
2415 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002416 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002417 break;
2418 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002419 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002420 break;
2421 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002422 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002423 break;
2424 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002425 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002426 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002427 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002428 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002429 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002430 case CMD_CTLR_LOCKUP:
2431 hpsa_print_cmd(h, "controller lockup detected", cp);
2432 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002433 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002434 hpsa_print_cmd(h, "unknown status", cp);
2435 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002436 ei->CommandStatus);
2437 }
2438}
2439
2440static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002441 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002442 unsigned char bufsize)
2443{
2444 int rc = IO_OK;
2445 struct CommandList *c;
2446 struct ErrorInfo *ei;
2447
Stephen Cameron45fcb862015-01-23 16:43:04 -06002448 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002449
Stephen Cameron574f05d2015-01-23 16:43:20 -06002450 if (c == NULL) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06002451 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06002452 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002453 }
2454
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002455 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2456 page, scsi3addr, TYPE_CMD)) {
2457 rc = -1;
2458 goto out;
2459 }
Webb Scales25163bd2015-04-23 09:32:00 -05002460 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2461 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2462 if (rc)
2463 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002464 ei = c->err_info;
2465 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002466 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002467 rc = -1;
2468 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002469out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002470 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002471 return rc;
2472}
2473
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002474static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
2475 unsigned char *scsi3addr, unsigned char page,
2476 struct bmic_controller_parameters *buf, size_t bufsize)
2477{
2478 int rc = IO_OK;
2479 struct CommandList *c;
2480 struct ErrorInfo *ei;
2481
Stephen Cameron45fcb862015-01-23 16:43:04 -06002482 c = cmd_alloc(h);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002483 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002484 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002485 return -ENOMEM;
2486 }
2487
2488 if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize,
2489 page, scsi3addr, TYPE_CMD)) {
2490 rc = -1;
2491 goto out;
2492 }
Webb Scales25163bd2015-04-23 09:32:00 -05002493 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2494 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2495 if (rc)
2496 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002497 ei = c->err_info;
2498 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2499 hpsa_scsi_interpret_error(h, c);
2500 rc = -1;
2501 }
2502out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002503 cmd_free(h, c);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002504 return rc;
2505 }
2506
Scott Teelbf711ac2014-02-18 13:56:39 -06002507static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002508 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002509{
2510 int rc = IO_OK;
2511 struct CommandList *c;
2512 struct ErrorInfo *ei;
2513
Stephen Cameron45fcb862015-01-23 16:43:04 -06002514 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002515
2516 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002517 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Camerone9ea04a2010-02-25 14:03:06 -06002518 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002519 }
2520
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002521 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teelbf711ac2014-02-18 13:56:39 -06002522 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2523 scsi3addr, TYPE_MSG);
2524 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
Webb Scales25163bd2015-04-23 09:32:00 -05002525 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
2526 if (rc) {
2527 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2528 goto out;
2529 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002530 /* no unmap needed here because no data xfer. */
2531
2532 ei = c->err_info;
2533 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002534 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002535 rc = -1;
2536 }
Webb Scales25163bd2015-04-23 09:32:00 -05002537out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002538 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002539 return rc;
2540}
2541
2542static void hpsa_get_raid_level(struct ctlr_info *h,
2543 unsigned char *scsi3addr, unsigned char *raid_level)
2544{
2545 int rc;
2546 unsigned char *buf;
2547
2548 *raid_level = RAID_UNKNOWN;
2549 buf = kzalloc(64, GFP_KERNEL);
2550 if (!buf)
2551 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002552 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002553 if (rc == 0)
2554 *raid_level = buf[8];
2555 if (*raid_level > RAID_UNKNOWN)
2556 *raid_level = RAID_UNKNOWN;
2557 kfree(buf);
2558 return;
2559}
2560
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002561#define HPSA_MAP_DEBUG
2562#ifdef HPSA_MAP_DEBUG
2563static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2564 struct raid_map_data *map_buff)
2565{
2566 struct raid_map_disk_data *dd = &map_buff->data[0];
2567 int map, row, col;
2568 u16 map_cnt, row_cnt, disks_per_row;
2569
2570 if (rc != 0)
2571 return;
2572
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002573 /* Show details only if debugging has been activated. */
2574 if (h->raid_offload_debug < 2)
2575 return;
2576
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002577 dev_info(&h->pdev->dev, "structure_size = %u\n",
2578 le32_to_cpu(map_buff->structure_size));
2579 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2580 le32_to_cpu(map_buff->volume_blk_size));
2581 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2582 le64_to_cpu(map_buff->volume_blk_cnt));
2583 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2584 map_buff->phys_blk_shift);
2585 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2586 map_buff->parity_rotation_shift);
2587 dev_info(&h->pdev->dev, "strip_size = %u\n",
2588 le16_to_cpu(map_buff->strip_size));
2589 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2590 le64_to_cpu(map_buff->disk_starting_blk));
2591 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2592 le64_to_cpu(map_buff->disk_blk_cnt));
2593 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2594 le16_to_cpu(map_buff->data_disks_per_row));
2595 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2596 le16_to_cpu(map_buff->metadata_disks_per_row));
2597 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2598 le16_to_cpu(map_buff->row_cnt));
2599 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2600 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002601 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002602 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002603 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2604 le16_to_cpu(map_buff->flags) &
2605 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002606 dev_info(&h->pdev->dev, "dekindex = %u\n",
2607 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002608 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2609 for (map = 0; map < map_cnt; map++) {
2610 dev_info(&h->pdev->dev, "Map%u:\n", map);
2611 row_cnt = le16_to_cpu(map_buff->row_cnt);
2612 for (row = 0; row < row_cnt; row++) {
2613 dev_info(&h->pdev->dev, " Row%u:\n", row);
2614 disks_per_row =
2615 le16_to_cpu(map_buff->data_disks_per_row);
2616 for (col = 0; col < disks_per_row; col++, dd++)
2617 dev_info(&h->pdev->dev,
2618 " D%02u: h=0x%04x xor=%u,%u\n",
2619 col, dd->ioaccel_handle,
2620 dd->xor_mult[0], dd->xor_mult[1]);
2621 disks_per_row =
2622 le16_to_cpu(map_buff->metadata_disks_per_row);
2623 for (col = 0; col < disks_per_row; col++, dd++)
2624 dev_info(&h->pdev->dev,
2625 " M%02u: h=0x%04x xor=%u,%u\n",
2626 col, dd->ioaccel_handle,
2627 dd->xor_mult[0], dd->xor_mult[1]);
2628 }
2629 }
2630}
2631#else
2632static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2633 __attribute__((unused)) int rc,
2634 __attribute__((unused)) struct raid_map_data *map_buff)
2635{
2636}
2637#endif
2638
2639static int hpsa_get_raid_map(struct ctlr_info *h,
2640 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2641{
2642 int rc = 0;
2643 struct CommandList *c;
2644 struct ErrorInfo *ei;
2645
Stephen Cameron45fcb862015-01-23 16:43:04 -06002646 c = cmd_alloc(h);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002647 if (c == NULL) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06002648 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002649 return -ENOMEM;
2650 }
2651 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2652 sizeof(this_device->raid_map), 0,
2653 scsi3addr, TYPE_CMD)) {
2654 dev_warn(&h->pdev->dev, "Out of memory in hpsa_get_raid_map()\n");
Webb Scales25163bd2015-04-23 09:32:00 -05002655 rc = -ENOMEM;
2656 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002657 }
Webb Scales25163bd2015-04-23 09:32:00 -05002658 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2659 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2660 if (rc)
2661 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002662 ei = c->err_info;
2663 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002664 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05002665 rc = -1;
2666 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002667 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002668 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002669
2670 /* @todo in the future, dynamically allocate RAID map memory */
2671 if (le32_to_cpu(this_device->raid_map.structure_size) >
2672 sizeof(this_device->raid_map)) {
2673 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2674 rc = -1;
2675 }
2676 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
2677 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05002678out:
2679 cmd_free(h, c);
2680 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002681}
2682
Don Brace03383732015-01-23 16:43:30 -06002683static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
2684 unsigned char scsi3addr[], u16 bmic_device_index,
2685 struct bmic_identify_physical_device *buf, size_t bufsize)
2686{
2687 int rc = IO_OK;
2688 struct CommandList *c;
2689 struct ErrorInfo *ei;
2690
2691 c = cmd_alloc(h);
2692 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
2693 0, RAID_CTLR_LUNID, TYPE_CMD);
2694 if (rc)
2695 goto out;
2696
2697 c->Request.CDB[2] = bmic_device_index & 0xff;
2698 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
2699
Webb Scales25163bd2015-04-23 09:32:00 -05002700 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
2701 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06002702 ei = c->err_info;
2703 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2704 hpsa_scsi_interpret_error(h, c);
2705 rc = -1;
2706 }
2707out:
2708 cmd_free(h, c);
2709 return rc;
2710}
2711
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002712static int hpsa_vpd_page_supported(struct ctlr_info *h,
2713 unsigned char scsi3addr[], u8 page)
2714{
2715 int rc;
2716 int i;
2717 int pages;
2718 unsigned char *buf, bufsize;
2719
2720 buf = kzalloc(256, GFP_KERNEL);
2721 if (!buf)
2722 return 0;
2723
2724 /* Get the size of the page list first */
2725 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2726 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2727 buf, HPSA_VPD_HEADER_SZ);
2728 if (rc != 0)
2729 goto exit_unsupported;
2730 pages = buf[3];
2731 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
2732 bufsize = pages + HPSA_VPD_HEADER_SZ;
2733 else
2734 bufsize = 255;
2735
2736 /* Get the whole VPD page list */
2737 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2738 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2739 buf, bufsize);
2740 if (rc != 0)
2741 goto exit_unsupported;
2742
2743 pages = buf[3];
2744 for (i = 1; i <= pages; i++)
2745 if (buf[3 + i] == page)
2746 goto exit_supported;
2747exit_unsupported:
2748 kfree(buf);
2749 return 0;
2750exit_supported:
2751 kfree(buf);
2752 return 1;
2753}
2754
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002755static void hpsa_get_ioaccel_status(struct ctlr_info *h,
2756 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2757{
2758 int rc;
2759 unsigned char *buf;
2760 u8 ioaccel_status;
2761
2762 this_device->offload_config = 0;
2763 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002764 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002765
2766 buf = kzalloc(64, GFP_KERNEL);
2767 if (!buf)
2768 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002769 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
2770 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002771 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002772 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002773 if (rc != 0)
2774 goto out;
2775
2776#define IOACCEL_STATUS_BYTE 4
2777#define OFFLOAD_CONFIGURED_BIT 0x01
2778#define OFFLOAD_ENABLED_BIT 0x02
2779 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
2780 this_device->offload_config =
2781 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
2782 if (this_device->offload_config) {
2783 this_device->offload_enabled =
2784 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
2785 if (hpsa_get_raid_map(h, scsi3addr, this_device))
2786 this_device->offload_enabled = 0;
2787 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002788 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002789out:
2790 kfree(buf);
2791 return;
2792}
2793
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002794/* Get the device id from inquiry page 0x83 */
2795static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
2796 unsigned char *device_id, int buflen)
2797{
2798 int rc;
2799 unsigned char *buf;
2800
2801 if (buflen > 16)
2802 buflen = 16;
2803 buf = kzalloc(64, GFP_KERNEL);
2804 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05002805 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002806 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002807 if (rc == 0)
2808 memcpy(device_id, &buf[8], buflen);
2809 kfree(buf);
2810 return rc != 0;
2811}
2812
2813static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06002814 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002815 int extended_response)
2816{
2817 int rc = IO_OK;
2818 struct CommandList *c;
2819 unsigned char scsi3addr[8];
2820 struct ErrorInfo *ei;
2821
Stephen Cameron45fcb862015-01-23 16:43:04 -06002822 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002823 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002824 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002825 return -1;
2826 }
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06002827 /* address the controller */
2828 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002829 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
2830 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
2831 rc = -1;
2832 goto out;
2833 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002834 if (extended_response)
2835 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05002836 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2837 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2838 if (rc)
2839 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002840 ei = c->err_info;
2841 if (ei->CommandStatus != 0 &&
2842 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002843 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002844 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002845 } else {
Don Brace03383732015-01-23 16:43:30 -06002846 struct ReportLUNdata *rld = buf;
2847
2848 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002849 dev_err(&h->pdev->dev,
2850 "report luns requested format %u, got %u\n",
2851 extended_response,
Don Brace03383732015-01-23 16:43:30 -06002852 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002853 rc = -1;
2854 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002855 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002856out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002857 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002858 return rc;
2859}
2860
2861static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06002862 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002863{
Don Brace03383732015-01-23 16:43:30 -06002864 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
2865 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002866}
2867
2868static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
2869 struct ReportLUNdata *buf, int bufsize)
2870{
2871 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
2872}
2873
2874static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
2875 int bus, int target, int lun)
2876{
2877 device->bus = bus;
2878 device->target = target;
2879 device->lun = lun;
2880}
2881
Stephen M. Cameron98465902014-02-21 16:25:00 -06002882/* Use VPD inquiry to get details of volume status */
2883static int hpsa_get_volume_status(struct ctlr_info *h,
2884 unsigned char scsi3addr[])
2885{
2886 int rc;
2887 int status;
2888 int size;
2889 unsigned char *buf;
2890
2891 buf = kzalloc(64, GFP_KERNEL);
2892 if (!buf)
2893 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2894
2895 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002896 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06002897 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002898
2899 /* Get the size of the VPD return buffer */
2900 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2901 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002902 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002903 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002904 size = buf[3];
2905
2906 /* Now get the whole VPD buffer */
2907 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2908 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002909 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002910 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002911 status = buf[4]; /* status byte */
2912
2913 kfree(buf);
2914 return status;
2915exit_failed:
2916 kfree(buf);
2917 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2918}
2919
2920/* Determine offline status of a volume.
2921 * Return either:
2922 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002923 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002924 * # (integer code indicating one of several NOT READY states
2925 * describing why a volume is to be kept offline)
2926 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002927static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06002928 unsigned char scsi3addr[])
2929{
2930 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002931 unsigned char *sense;
2932 u8 sense_key, asc, ascq;
2933 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05002934 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002935 u16 cmd_status;
2936 u8 scsi_status;
2937#define ASC_LUN_NOT_READY 0x04
2938#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
2939#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
2940
2941 c = cmd_alloc(h);
2942 if (!c)
2943 return 0;
2944 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05002945 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
2946 if (rc) {
2947 cmd_free(h, c);
2948 return 0;
2949 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06002950 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002951 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
2952 sense_len = sizeof(c->err_info->SenseInfo);
2953 else
2954 sense_len = c->err_info->SenseLen;
2955 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06002956 cmd_status = c->err_info->CommandStatus;
2957 scsi_status = c->err_info->ScsiStatus;
2958 cmd_free(h, c);
2959 /* Is the volume 'not ready'? */
2960 if (cmd_status != CMD_TARGET_STATUS ||
2961 scsi_status != SAM_STAT_CHECK_CONDITION ||
2962 sense_key != NOT_READY ||
2963 asc != ASC_LUN_NOT_READY) {
2964 return 0;
2965 }
2966
2967 /* Determine the reason for not ready state */
2968 ldstat = hpsa_get_volume_status(h, scsi3addr);
2969
2970 /* Keep volume offline in certain cases: */
2971 switch (ldstat) {
2972 case HPSA_LV_UNDERGOING_ERASE:
2973 case HPSA_LV_UNDERGOING_RPI:
2974 case HPSA_LV_PENDING_RPI:
2975 case HPSA_LV_ENCRYPTED_NO_KEY:
2976 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
2977 case HPSA_LV_UNDERGOING_ENCRYPTION:
2978 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
2979 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
2980 return ldstat;
2981 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
2982 /* If VPD status page isn't available,
2983 * use ASC/ASCQ to determine state
2984 */
2985 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
2986 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
2987 return ldstat;
2988 break;
2989 default:
2990 break;
2991 }
2992 return 0;
2993}
2994
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05002995/*
2996 * Find out if a logical device supports aborts by simply trying one.
2997 * Smart Array may claim not to support aborts on logical drives, but
2998 * if a MSA2000 * is connected, the drives on that will be presented
2999 * by the Smart Array as logical drives, and aborts may be sent to
3000 * those devices successfully. So the simplest way to find out is
3001 * to simply try an abort and see how the device responds.
3002 */
3003static int hpsa_device_supports_aborts(struct ctlr_info *h,
3004 unsigned char *scsi3addr)
3005{
3006 struct CommandList *c;
3007 struct ErrorInfo *ei;
3008 int rc = 0;
3009
3010 u64 tag = (u64) -1; /* bogus tag */
3011
3012 /* Assume that physical devices support aborts */
3013 if (!is_logical_dev_addr_mode(scsi3addr))
3014 return 1;
3015
3016 c = cmd_alloc(h);
3017 if (!c)
3018 return -ENOMEM;
3019 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
3020 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3021 /* no unmap needed here because no data xfer. */
3022 ei = c->err_info;
3023 switch (ei->CommandStatus) {
3024 case CMD_INVALID:
3025 rc = 0;
3026 break;
3027 case CMD_UNABORTABLE:
3028 case CMD_ABORT_FAILED:
3029 rc = 1;
3030 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003031 case CMD_TMF_STATUS:
3032 rc = hpsa_evaluate_tmf_status(h, c);
3033 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003034 default:
3035 rc = 0;
3036 break;
3037 }
3038 cmd_free(h, c);
3039 return rc;
3040}
3041
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003042static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003043 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3044 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003045{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003046
3047#define OBDR_SIG_OFFSET 43
3048#define OBDR_TAPE_SIG "$DR-10"
3049#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3050#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3051
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003052 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003053 unsigned char *obdr_sig;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003054
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003055 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003056 if (!inq_buff)
3057 goto bail_out;
3058
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003059 /* Do an inquiry to the device to see what it is. */
3060 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3061 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
3062 /* Inquiry failed (msg printed already) */
3063 dev_err(&h->pdev->dev,
3064 "hpsa_update_device_info: inquiry failed\n");
3065 goto bail_out;
3066 }
3067
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003068 this_device->devtype = (inq_buff[0] & 0x1f);
3069 memcpy(this_device->scsi3addr, scsi3addr, 8);
3070 memcpy(this_device->vendor, &inq_buff[8],
3071 sizeof(this_device->vendor));
3072 memcpy(this_device->model, &inq_buff[16],
3073 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003074 memset(this_device->device_id, 0,
3075 sizeof(this_device->device_id));
3076 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
3077 sizeof(this_device->device_id));
3078
3079 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003080 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003081 int volume_offline;
3082
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003083 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003084 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3085 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003086 volume_offline = hpsa_volume_offline(h, scsi3addr);
3087 if (volume_offline < 0 || volume_offline > 0xff)
3088 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3089 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003090 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003091 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003092 this_device->offload_config = 0;
3093 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003094 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003095 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003096 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003097 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003098 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003099
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003100 if (is_OBDR_device) {
3101 /* See if this is a One-Button-Disaster-Recovery device
3102 * by looking for "$DR-10" at offset 43 in inquiry data.
3103 */
3104 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3105 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3106 strncmp(obdr_sig, OBDR_TAPE_SIG,
3107 OBDR_SIG_LEN) == 0);
3108 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003109 kfree(inq_buff);
3110 return 0;
3111
3112bail_out:
3113 kfree(inq_buff);
3114 return 1;
3115}
3116
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003117static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3118 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3119{
3120 unsigned long flags;
3121 int rc, entry;
3122 /*
3123 * See if this device supports aborts. If we already know
3124 * the device, we already know if it supports aborts, otherwise
3125 * we have to find out if it supports aborts by trying one.
3126 */
3127 spin_lock_irqsave(&h->devlock, flags);
3128 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3129 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3130 entry >= 0 && entry < h->ndevices) {
3131 dev->supports_aborts = h->dev[entry]->supports_aborts;
3132 spin_unlock_irqrestore(&h->devlock, flags);
3133 } else {
3134 spin_unlock_irqrestore(&h->devlock, flags);
3135 dev->supports_aborts =
3136 hpsa_device_supports_aborts(h, scsi3addr);
3137 if (dev->supports_aborts < 0)
3138 dev->supports_aborts = 0;
3139 }
3140}
3141
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003142static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003143 "MSA2012",
3144 "MSA2024",
3145 "MSA2312",
3146 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05003147 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05003148 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003149 NULL,
3150};
3151
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003152static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003153{
3154 int i;
3155
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003156 for (i = 0; ext_target_model[i]; i++)
3157 if (strncmp(device->model, ext_target_model[i],
3158 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003159 return 1;
3160 return 0;
3161}
3162
3163/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003164 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003165 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
3166 * Logical drive target and lun are assigned at this time, but
3167 * physical device lun and target assignment are deferred (assigned
3168 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
3169 */
3170static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003171 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003172{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003173 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003174
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003175 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3176 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003177 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003178 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003179 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003180 /* defer target, lun assignment for physical devices */
3181 hpsa_set_bus_target_lun(device, 2, -1, -1);
3182 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003183 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003184 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003185 if (is_ext_target(h, device)) {
3186 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003187 * and match target/lun numbers box
3188 * reports, other smart array, bus 0, target 0, match lunid
3189 */
3190 hpsa_set_bus_target_lun(device,
3191 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
3192 return;
3193 }
3194 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003195}
3196
3197/*
3198 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003199 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003200 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
3201 * it for some reason. *tmpdevice is the target we're adding,
3202 * this_device is a pointer into the current element of currentsd[]
3203 * that we're building up in update_scsi_devices(), below.
3204 * lunzerobits is a bitmap that tracks which targets already have a
3205 * lun 0 assigned.
3206 * Returns 1 if an enclosure was added, 0 if not.
3207 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003208static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003209 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003210 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003211 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003212{
3213 unsigned char scsi3addr[8];
3214
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003215 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003216 return 0; /* There is already a lun 0 on this target. */
3217
3218 if (!is_logical_dev_addr_mode(lunaddrbytes))
3219 return 0; /* It's the logical targets that may lack lun 0. */
3220
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003221 if (!is_ext_target(h, tmpdevice))
3222 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003223
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003224 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003225 return 0;
3226
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06003227 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003228 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003229 if (is_hba_lunid(scsi3addr))
3230 return 0; /* Don't add the RAID controller here. */
3231
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003232 if (is_scsi_rev_5(h))
3233 return 0; /* p1210m doesn't need to do this. */
3234
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003235 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06003236 dev_warn(&h->pdev->dev, "Maximum number of external "
3237 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003238 "configuration.");
3239 return 0;
3240 }
3241
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003242 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003243 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003244 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003245 hpsa_set_bus_target_lun(this_device,
3246 tmpdevice->bus, tmpdevice->target, 0);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003247 hpsa_update_device_supports_aborts(h, this_device, scsi3addr);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003248 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003249 return 1;
3250}
3251
3252/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003253 * Get address of physical disk used for an ioaccel2 mode command:
3254 * 1. Extract ioaccel2 handle from the command.
3255 * 2. Find a matching ioaccel2 handle from list of physical disks.
3256 * 3. Return:
3257 * 1 and set scsi3addr to address of matching physical
3258 * 0 if no matching physical disk was found.
3259 */
3260static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3261 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3262{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003263 struct io_accel2_cmd *c2 =
3264 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3265 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003266 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003267
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003268 spin_lock_irqsave(&h->devlock, flags);
3269 for (i = 0; i < h->ndevices; i++)
3270 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3271 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3272 sizeof(h->dev[i]->scsi3addr));
3273 spin_unlock_irqrestore(&h->devlock, flags);
3274 return 1;
3275 }
3276 spin_unlock_irqrestore(&h->devlock, flags);
3277 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003278}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003279
Scott Teel54b6e9e2014-02-18 13:56:45 -06003280/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003281 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
3282 * logdev. The number of luns in physdev and logdev are returned in
3283 * *nphysicals and *nlogicals, respectively.
3284 * Returns 0 on success, -1 otherwise.
3285 */
3286static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003287 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003288 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003289{
Don Brace03383732015-01-23 16:43:30 -06003290 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003291 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3292 return -1;
3293 }
Don Brace03383732015-01-23 16:43:30 -06003294 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003295 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06003296 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
3297 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003298 *nphysicals = HPSA_MAX_PHYS_LUN;
3299 }
Don Brace03383732015-01-23 16:43:30 -06003300 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003301 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3302 return -1;
3303 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06003304 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003305 /* Reject Logicals in excess of our max capability. */
3306 if (*nlogicals > HPSA_MAX_LUN) {
3307 dev_warn(&h->pdev->dev,
3308 "maximum logical LUNs (%d) exceeded. "
3309 "%d LUNs ignored.\n", HPSA_MAX_LUN,
3310 *nlogicals - HPSA_MAX_LUN);
3311 *nlogicals = HPSA_MAX_LUN;
3312 }
3313 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3314 dev_warn(&h->pdev->dev,
3315 "maximum logical + physical LUNs (%d) exceeded. "
3316 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3317 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3318 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3319 }
3320 return 0;
3321}
3322
Don Brace42a91642014-11-14 17:26:27 -06003323static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
3324 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003325 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003326 struct ReportLUNdata *logdev_list)
3327{
3328 /* Helper function, figure out where the LUN ID info is coming from
3329 * given index i, lists of physical and logical devices, where in
3330 * the list the raid controller is supposed to appear (first or last)
3331 */
3332
3333 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3334 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3335
3336 if (i == raid_ctlr_position)
3337 return RAID_CTLR_LUNID;
3338
3339 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05003340 return &physdev_list->LUN[i -
3341 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003342
3343 if (i < last_device)
3344 return &logdev_list->LUN[i - nphysicals -
3345 (raid_ctlr_position == 0)][0];
3346 BUG();
3347 return NULL;
3348}
3349
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003350static int hpsa_hba_mode_enabled(struct ctlr_info *h)
3351{
3352 int rc;
Joe Handzik6e8e8082014-05-15 15:44:42 -05003353 int hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003354 struct bmic_controller_parameters *ctlr_params;
3355 ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters),
3356 GFP_KERNEL);
3357
3358 if (!ctlr_params)
Joe Handzik96444fb2014-05-15 15:44:47 -05003359 return -ENOMEM;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003360 rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params,
3361 sizeof(struct bmic_controller_parameters));
Joe Handzik96444fb2014-05-15 15:44:47 -05003362 if (rc) {
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003363 kfree(ctlr_params);
Joe Handzik96444fb2014-05-15 15:44:47 -05003364 return rc;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003365 }
Joe Handzik6e8e8082014-05-15 15:44:42 -05003366
3367 hba_mode_enabled =
3368 ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0);
3369 kfree(ctlr_params);
3370 return hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003371}
3372
Don Brace03383732015-01-23 16:43:30 -06003373/* get physical drive ioaccel handle and queue depth */
3374static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3375 struct hpsa_scsi_dev_t *dev,
3376 u8 *lunaddrbytes,
3377 struct bmic_identify_physical_device *id_phys)
3378{
3379 int rc;
3380 struct ext_report_lun_entry *rle =
3381 (struct ext_report_lun_entry *) lunaddrbytes;
3382
3383 dev->ioaccel_handle = rle->ioaccel_handle;
Joe Handzika3144e02015-04-23 09:32:59 -05003384 if (PHYS_IOACCEL(lunaddrbytes) && dev->ioaccel_handle)
3385 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06003386 memset(id_phys, 0, sizeof(*id_phys));
3387 rc = hpsa_bmic_id_physical_device(h, lunaddrbytes,
3388 GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys,
3389 sizeof(*id_phys));
3390 if (!rc)
3391 /* Reserve space for FW operations */
3392#define DRIVE_CMDS_RESERVED_FOR_FW 2
3393#define DRIVE_QUEUE_DEPTH 7
3394 dev->queue_depth =
3395 le16_to_cpu(id_phys->current_queue_depth_limit) -
3396 DRIVE_CMDS_RESERVED_FOR_FW;
3397 else
3398 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
3399 atomic_set(&dev->ioaccel_cmds_out, 0);
3400}
3401
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003402static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
3403{
3404 /* the idea here is we could get notified
3405 * that some devices have changed, so we do a report
3406 * physical luns and report logical luns cmd, and adjust
3407 * our list of devices accordingly.
3408 *
3409 * The scsi3addr's of devices won't change so long as the
3410 * adapter is not reset. That means we can rescan and
3411 * tell which devices we already know about, vs. new
3412 * devices, vs. disappearing devices.
3413 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003414 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003415 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003416 struct bmic_identify_physical_device *id_phys = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003417 u32 nphysicals = 0;
3418 u32 nlogicals = 0;
3419 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003420 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3421 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003422 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003423 int raid_ctlr_position;
Joe Handzik2bbf5c72014-05-21 11:16:01 -05003424 int rescan_hba_mode;
Scott Teelaca4a522012-01-19 14:01:19 -06003425 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003426
Scott Teelcfe5bad2011-10-26 16:21:07 -05003427 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003428 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3429 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003430 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003431 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003432
Don Brace03383732015-01-23 16:43:30 -06003433 if (!currentsd || !physdev_list || !logdev_list ||
3434 !tmpdevice || !id_phys) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003435 dev_err(&h->pdev->dev, "out of memory\n");
3436 goto out;
3437 }
3438 memset(lunzerobits, 0, sizeof(lunzerobits));
3439
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003440 rescan_hba_mode = hpsa_hba_mode_enabled(h);
Joe Handzik96444fb2014-05-15 15:44:47 -05003441 if (rescan_hba_mode < 0)
3442 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003443
3444 if (!h->hba_mode_enabled && rescan_hba_mode)
3445 dev_warn(&h->pdev->dev, "HBA mode enabled\n");
3446 else if (h->hba_mode_enabled && !rescan_hba_mode)
3447 dev_warn(&h->pdev->dev, "HBA mode disabled\n");
3448
3449 h->hba_mode_enabled = rescan_hba_mode;
3450
Don Brace03383732015-01-23 16:43:30 -06003451 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
3452 logdev_list, &nlogicals))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003453 goto out;
3454
Scott Teelaca4a522012-01-19 14:01:19 -06003455 /* We might see up to the maximum number of logical and physical disks
3456 * plus external target devices, and a device for the local RAID
3457 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003458 */
Scott Teelaca4a522012-01-19 14:01:19 -06003459 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003460
3461 /* Allocate the per device structures */
3462 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003463 if (i >= HPSA_MAX_DEVICES) {
3464 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3465 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3466 ndevs_to_allocate - HPSA_MAX_DEVICES);
3467 break;
3468 }
3469
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003470 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3471 if (!currentsd[i]) {
3472 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3473 __FILE__, __LINE__);
3474 goto out;
3475 }
3476 ndev_allocated++;
3477 }
3478
Stephen M. Cameron86452912014-05-29 10:53:49 -05003479 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003480 raid_ctlr_position = 0;
3481 else
3482 raid_ctlr_position = nphysicals + nlogicals;
3483
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003484 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003485 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003486 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003487 u8 *lunaddrbytes, is_OBDR = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003488
3489 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003490 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3491 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003492
3493 /* skip masked non-disk devices */
3494 if (MASKED_DEVICE(lunaddrbytes))
3495 if (i < nphysicals + (raid_ctlr_position == 0) &&
3496 NON_DISK_PHYS_DEV(lunaddrbytes))
3497 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003498
3499 /* Get device type, vendor, model, device id */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003500 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3501 &is_OBDR))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003502 continue; /* skip it if we can't talk to it. */
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003503 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003504 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003505 this_device = currentsd[ncurrent];
3506
3507 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003508 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003509 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3510 * is nonetheless an enclosure device there. We have to
3511 * present that otherwise linux won't find anything if
3512 * there is no lun 0.
3513 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003514 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003515 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003516 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003517 ncurrent++;
3518 this_device = currentsd[ncurrent];
3519 }
3520
3521 *this_device = *tmpdevice;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003522
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003523 /* do not expose masked devices */
3524 if (MASKED_DEVICE(lunaddrbytes) &&
3525 i < nphysicals + (raid_ctlr_position == 0)) {
3526 if (h->hba_mode_enabled)
3527 dev_warn(&h->pdev->dev,
3528 "Masked physical device detected\n");
3529 this_device->expose_state = HPSA_DO_NOT_EXPOSE;
3530 } else {
3531 this_device->expose_state =
3532 HPSA_SG_ATTACH | HPSA_ULD_ATTACH;
3533 }
3534
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003535 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003536 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003537 /* We don't *really* support actual CD-ROM devices,
3538 * just "One Button Disaster Recovery" tape drive
3539 * which temporarily pretends to be a CD-ROM drive.
3540 * So we check that the device is really an OBDR tape
3541 * device by checking for "$DR-10" in bytes 43-48 of
3542 * the inquiry data.
3543 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003544 if (is_OBDR)
3545 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003546 break;
3547 case TYPE_DISK:
Joe Handzikecf418d12015-04-23 09:33:04 -05003548 if (i >= nphysicals) {
3549 ncurrent++;
3550 break;
3551 }
3552
3553 if (h->hba_mode_enabled)
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003554 /* never use raid mapper in HBA mode */
3555 this_device->offload_enabled = 0;
Joe Handzikecf418d12015-04-23 09:33:04 -05003556 else if (!(h->transMethod & CFGTBL_Trans_io_accel1 ||
3557 h->transMethod & CFGTBL_Trans_io_accel2))
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003558 break;
Joe Handzikecf418d12015-04-23 09:33:04 -05003559
3560 hpsa_get_ioaccel_drive_info(h, this_device,
3561 lunaddrbytes, id_phys);
3562 atomic_set(&this_device->ioaccel_cmds_out, 0);
3563 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003564 break;
3565 case TYPE_TAPE:
3566 case TYPE_MEDIUM_CHANGER:
3567 ncurrent++;
3568 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003569 case TYPE_ENCLOSURE:
3570 if (h->hba_mode_enabled)
3571 ncurrent++;
3572 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003573 case TYPE_RAID:
3574 /* Only present the Smartarray HBA as a RAID controller.
3575 * If it's a RAID controller other than the HBA itself
3576 * (an external RAID controller, MSA500 or similar)
3577 * don't present it.
3578 */
3579 if (!is_hba_lunid(lunaddrbytes))
3580 break;
3581 ncurrent++;
3582 break;
3583 default:
3584 break;
3585 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003586 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003587 break;
3588 }
3589 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3590out:
3591 kfree(tmpdevice);
3592 for (i = 0; i < ndev_allocated; i++)
3593 kfree(currentsd[i]);
3594 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003595 kfree(physdev_list);
3596 kfree(logdev_list);
Don Brace03383732015-01-23 16:43:30 -06003597 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003598}
3599
Webb Scalesec5cbf02015-01-23 16:44:45 -06003600static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3601 struct scatterlist *sg)
3602{
3603 u64 addr64 = (u64) sg_dma_address(sg);
3604 unsigned int len = sg_dma_len(sg);
3605
3606 desc->Addr = cpu_to_le64(addr64);
3607 desc->Len = cpu_to_le32(len);
3608 desc->Ext = 0;
3609}
3610
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003611/*
3612 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003613 * dma mapping and fills in the scatter gather entries of the
3614 * hpsa command, cp.
3615 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003616static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003617 struct CommandList *cp,
3618 struct scsi_cmnd *cmd)
3619{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003620 struct scatterlist *sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003621 int use_sg, i, sg_index, chained;
3622 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003623
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003624 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003625
3626 use_sg = scsi_dma_map(cmd);
3627 if (use_sg < 0)
3628 return use_sg;
3629
3630 if (!use_sg)
3631 goto sglist_finished;
3632
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003633 curr_sg = cp->SG;
3634 chained = 0;
3635 sg_index = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003636 scsi_for_each_sg(cmd, sg, use_sg, i) {
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003637 if (i == h->max_cmd_sg_entries - 1 &&
3638 use_sg > h->max_cmd_sg_entries) {
3639 chained = 1;
3640 curr_sg = h->cmd_sg_list[cp->cmdindex];
3641 sg_index = 0;
3642 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003643 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003644 curr_sg++;
3645 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003646
3647 /* Back the pointer up to the last entry and mark it as "last". */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003648 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003649
3650 if (use_sg + chained > h->maxSG)
3651 h->maxSG = use_sg + chained;
3652
3653 if (chained) {
3654 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003655 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06003656 if (hpsa_map_sg_chain_block(h, cp)) {
3657 scsi_dma_unmap(cmd);
3658 return -1;
3659 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003660 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003661 }
3662
3663sglist_finished:
3664
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003665 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003666 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003667 return 0;
3668}
3669
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003670#define IO_ACCEL_INELIGIBLE (1)
3671static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
3672{
3673 int is_write = 0;
3674 u32 block;
3675 u32 block_cnt;
3676
3677 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
3678 switch (cdb[0]) {
3679 case WRITE_6:
3680 case WRITE_12:
3681 is_write = 1;
3682 case READ_6:
3683 case READ_12:
3684 if (*cdb_len == 6) {
3685 block = (((u32) cdb[2]) << 8) | cdb[3];
3686 block_cnt = cdb[4];
3687 } else {
3688 BUG_ON(*cdb_len != 12);
3689 block = (((u32) cdb[2]) << 24) |
3690 (((u32) cdb[3]) << 16) |
3691 (((u32) cdb[4]) << 8) |
3692 cdb[5];
3693 block_cnt =
3694 (((u32) cdb[6]) << 24) |
3695 (((u32) cdb[7]) << 16) |
3696 (((u32) cdb[8]) << 8) |
3697 cdb[9];
3698 }
3699 if (block_cnt > 0xffff)
3700 return IO_ACCEL_INELIGIBLE;
3701
3702 cdb[0] = is_write ? WRITE_10 : READ_10;
3703 cdb[1] = 0;
3704 cdb[2] = (u8) (block >> 24);
3705 cdb[3] = (u8) (block >> 16);
3706 cdb[4] = (u8) (block >> 8);
3707 cdb[5] = (u8) (block);
3708 cdb[6] = 0;
3709 cdb[7] = (u8) (block_cnt >> 8);
3710 cdb[8] = (u8) (block_cnt);
3711 cdb[9] = 0;
3712 *cdb_len = 10;
3713 break;
3714 }
3715 return 0;
3716}
3717
Scott Teelc3497752014-02-18 13:56:34 -06003718static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003719 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003720 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06003721{
3722 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06003723 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
3724 unsigned int len;
3725 unsigned int total_len = 0;
3726 struct scatterlist *sg;
3727 u64 addr64;
3728 int use_sg, i;
3729 struct SGDescriptor *curr_sg;
3730 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
3731
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003732 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06003733 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3734 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003735 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003736 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003737
Matt Gatese1f7de02014-02-18 13:55:17 -06003738 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
3739
Don Brace03383732015-01-23 16:43:30 -06003740 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3741 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003742 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003743 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003744
Matt Gatese1f7de02014-02-18 13:55:17 -06003745 c->cmd_type = CMD_IOACCEL1;
3746
3747 /* Adjust the DMA address to point to the accelerated command buffer */
3748 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
3749 (c->cmdindex * sizeof(*cp));
3750 BUG_ON(c->busaddr & 0x0000007F);
3751
3752 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003753 if (use_sg < 0) {
3754 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06003755 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003756 }
Matt Gatese1f7de02014-02-18 13:55:17 -06003757
3758 if (use_sg) {
3759 curr_sg = cp->SG;
3760 scsi_for_each_sg(cmd, sg, use_sg, i) {
3761 addr64 = (u64) sg_dma_address(sg);
3762 len = sg_dma_len(sg);
3763 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003764 curr_sg->Addr = cpu_to_le64(addr64);
3765 curr_sg->Len = cpu_to_le32(len);
3766 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06003767 curr_sg++;
3768 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003769 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06003770
3771 switch (cmd->sc_data_direction) {
3772 case DMA_TO_DEVICE:
3773 control |= IOACCEL1_CONTROL_DATA_OUT;
3774 break;
3775 case DMA_FROM_DEVICE:
3776 control |= IOACCEL1_CONTROL_DATA_IN;
3777 break;
3778 case DMA_NONE:
3779 control |= IOACCEL1_CONTROL_NODATAXFER;
3780 break;
3781 default:
3782 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3783 cmd->sc_data_direction);
3784 BUG();
3785 break;
3786 }
3787 } else {
3788 control |= IOACCEL1_CONTROL_NODATAXFER;
3789 }
3790
Scott Teelc3497752014-02-18 13:56:34 -06003791 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06003792 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06003793 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
3794 cp->transfer_len = cpu_to_le32(total_len);
3795 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
3796 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
3797 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003798 memcpy(cp->CDB, cdb, cdb_len);
3799 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06003800 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003801 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06003802 return 0;
3803}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003804
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003805/*
3806 * Queue a command directly to a device behind the controller using the
3807 * I/O accelerator path.
3808 */
3809static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
3810 struct CommandList *c)
3811{
3812 struct scsi_cmnd *cmd = c->scsi_cmd;
3813 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3814
Don Brace03383732015-01-23 16:43:30 -06003815 c->phys_disk = dev;
3816
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003817 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003818 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003819}
3820
Scott Teeldd0e19f2014-02-18 13:57:31 -06003821/*
3822 * Set encryption parameters for the ioaccel2 request
3823 */
3824static void set_encrypt_ioaccel2(struct ctlr_info *h,
3825 struct CommandList *c, struct io_accel2_cmd *cp)
3826{
3827 struct scsi_cmnd *cmd = c->scsi_cmd;
3828 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3829 struct raid_map_data *map = &dev->raid_map;
3830 u64 first_block;
3831
Scott Teeldd0e19f2014-02-18 13:57:31 -06003832 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06003833 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06003834 return;
3835 /* Set the data encryption key index. */
3836 cp->dekindex = map->dekindex;
3837
3838 /* Set the encryption enable flag, encoded into direction field. */
3839 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
3840
3841 /* Set encryption tweak values based on logical block address
3842 * If block size is 512, tweak value is LBA.
3843 * For other block sizes, tweak is (LBA * block size)/ 512)
3844 */
3845 switch (cmd->cmnd[0]) {
3846 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
3847 case WRITE_6:
3848 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06003849 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003850 break;
3851 case WRITE_10:
3852 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003853 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
3854 case WRITE_12:
3855 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06003856 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003857 break;
3858 case WRITE_16:
3859 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06003860 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003861 break;
3862 default:
3863 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06003864 "ERROR: %s: size (0x%x) not supported for encryption\n",
3865 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003866 BUG();
3867 break;
3868 }
Don Brace2b08b3e2015-01-23 16:41:09 -06003869
3870 if (le32_to_cpu(map->volume_blk_size) != 512)
3871 first_block = first_block *
3872 le32_to_cpu(map->volume_blk_size)/512;
3873
3874 cp->tweak_lower = cpu_to_le32(first_block);
3875 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003876}
3877
Scott Teelc3497752014-02-18 13:56:34 -06003878static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
3879 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003880 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003881{
3882 struct scsi_cmnd *cmd = c->scsi_cmd;
3883 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
3884 struct ioaccel2_sg_element *curr_sg;
3885 int use_sg, i;
3886 struct scatterlist *sg;
3887 u64 addr64;
3888 u32 len;
3889 u32 total_len = 0;
3890
Webb Scalesd9a729f2015-04-23 09:33:27 -05003891 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06003892
Don Brace03383732015-01-23 16:43:30 -06003893 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3894 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003895 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003896 }
3897
Scott Teelc3497752014-02-18 13:56:34 -06003898 c->cmd_type = CMD_IOACCEL2;
3899 /* Adjust the DMA address to point to the accelerated command buffer */
3900 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
3901 (c->cmdindex * sizeof(*cp));
3902 BUG_ON(c->busaddr & 0x0000007F);
3903
3904 memset(cp, 0, sizeof(*cp));
3905 cp->IU_type = IOACCEL2_IU_TYPE;
3906
3907 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003908 if (use_sg < 0) {
3909 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003910 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003911 }
Scott Teelc3497752014-02-18 13:56:34 -06003912
3913 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06003914 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05003915 if (use_sg > h->ioaccel_maxsg) {
3916 addr64 = le64_to_cpu(
3917 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
3918 curr_sg->address = cpu_to_le64(addr64);
3919 curr_sg->length = 0;
3920 curr_sg->reserved[0] = 0;
3921 curr_sg->reserved[1] = 0;
3922 curr_sg->reserved[2] = 0;
3923 curr_sg->chain_indicator = 0x80;
3924
3925 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
3926 }
Scott Teelc3497752014-02-18 13:56:34 -06003927 scsi_for_each_sg(cmd, sg, use_sg, i) {
3928 addr64 = (u64) sg_dma_address(sg);
3929 len = sg_dma_len(sg);
3930 total_len += len;
3931 curr_sg->address = cpu_to_le64(addr64);
3932 curr_sg->length = cpu_to_le32(len);
3933 curr_sg->reserved[0] = 0;
3934 curr_sg->reserved[1] = 0;
3935 curr_sg->reserved[2] = 0;
3936 curr_sg->chain_indicator = 0;
3937 curr_sg++;
3938 }
3939
3940 switch (cmd->sc_data_direction) {
3941 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003942 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3943 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06003944 break;
3945 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003946 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3947 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06003948 break;
3949 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003950 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3951 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003952 break;
3953 default:
3954 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3955 cmd->sc_data_direction);
3956 BUG();
3957 break;
3958 }
3959 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06003960 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3961 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003962 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06003963
3964 /* Set encryption parameters, if necessary */
3965 set_encrypt_ioaccel2(h, c, cp);
3966
Don Brace2b08b3e2015-01-23 16:41:09 -06003967 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06003968 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06003969 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06003970
Scott Teelc3497752014-02-18 13:56:34 -06003971 cp->data_len = cpu_to_le32(total_len);
3972 cp->err_ptr = cpu_to_le64(c->busaddr +
3973 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003974 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06003975
Webb Scalesd9a729f2015-04-23 09:33:27 -05003976 /* fill in sg elements */
3977 if (use_sg > h->ioaccel_maxsg) {
3978 cp->sg_count = 1;
3979 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
3980 atomic_dec(&phys_disk->ioaccel_cmds_out);
3981 scsi_dma_unmap(cmd);
3982 return -1;
3983 }
3984 } else
3985 cp->sg_count = (u8) use_sg;
3986
Scott Teelc3497752014-02-18 13:56:34 -06003987 enqueue_cmd_and_start_io(h, c);
3988 return 0;
3989}
3990
3991/*
3992 * Queue a command to the correct I/O accelerator path.
3993 */
3994static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
3995 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003996 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003997{
Don Brace03383732015-01-23 16:43:30 -06003998 /* Try to honor the device's queue depth */
3999 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
4000 phys_disk->queue_depth) {
4001 atomic_dec(&phys_disk->ioaccel_cmds_out);
4002 return IO_ACCEL_INELIGIBLE;
4003 }
Scott Teelc3497752014-02-18 13:56:34 -06004004 if (h->transMethod & CFGTBL_Trans_io_accel1)
4005 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004006 cdb, cdb_len, scsi3addr,
4007 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004008 else
4009 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004010 cdb, cdb_len, scsi3addr,
4011 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004012}
4013
Scott Teel6b80b182014-02-18 13:56:55 -06004014static void raid_map_helper(struct raid_map_data *map,
4015 int offload_to_mirror, u32 *map_index, u32 *current_group)
4016{
4017 if (offload_to_mirror == 0) {
4018 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06004019 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004020 return;
4021 }
4022 do {
4023 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06004024 *current_group = *map_index /
4025 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004026 if (offload_to_mirror == *current_group)
4027 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06004028 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06004029 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004030 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004031 (*current_group)++;
4032 } else {
4033 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004034 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004035 *current_group = 0;
4036 }
4037 } while (offload_to_mirror != *current_group);
4038}
4039
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004040/*
4041 * Attempt to perform offload RAID mapping for a logical volume I/O.
4042 */
4043static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4044 struct CommandList *c)
4045{
4046 struct scsi_cmnd *cmd = c->scsi_cmd;
4047 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4048 struct raid_map_data *map = &dev->raid_map;
4049 struct raid_map_disk_data *dd = &map->data[0];
4050 int is_write = 0;
4051 u32 map_index;
4052 u64 first_block, last_block;
4053 u32 block_cnt;
4054 u32 blocks_per_row;
4055 u64 first_row, last_row;
4056 u32 first_row_offset, last_row_offset;
4057 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06004058 u64 r0_first_row, r0_last_row;
4059 u32 r5or6_blocks_per_row;
4060 u64 r5or6_first_row, r5or6_last_row;
4061 u32 r5or6_first_row_offset, r5or6_last_row_offset;
4062 u32 r5or6_first_column, r5or6_last_column;
4063 u32 total_disks_per_row;
4064 u32 stripesize;
4065 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004066 u32 map_row;
4067 u32 disk_handle;
4068 u64 disk_block;
4069 u32 disk_block_cnt;
4070 u8 cdb[16];
4071 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06004072 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004073#if BITS_PER_LONG == 32
4074 u64 tmpdiv;
4075#endif
Scott Teel6b80b182014-02-18 13:56:55 -06004076 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004077
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004078 /* check for valid opcode, get LBA and block count */
4079 switch (cmd->cmnd[0]) {
4080 case WRITE_6:
4081 is_write = 1;
4082 case READ_6:
4083 first_block =
4084 (((u64) cmd->cmnd[2]) << 8) |
4085 cmd->cmnd[3];
4086 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05004087 if (block_cnt == 0)
4088 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004089 break;
4090 case WRITE_10:
4091 is_write = 1;
4092 case READ_10:
4093 first_block =
4094 (((u64) cmd->cmnd[2]) << 24) |
4095 (((u64) cmd->cmnd[3]) << 16) |
4096 (((u64) cmd->cmnd[4]) << 8) |
4097 cmd->cmnd[5];
4098 block_cnt =
4099 (((u32) cmd->cmnd[7]) << 8) |
4100 cmd->cmnd[8];
4101 break;
4102 case WRITE_12:
4103 is_write = 1;
4104 case READ_12:
4105 first_block =
4106 (((u64) cmd->cmnd[2]) << 24) |
4107 (((u64) cmd->cmnd[3]) << 16) |
4108 (((u64) cmd->cmnd[4]) << 8) |
4109 cmd->cmnd[5];
4110 block_cnt =
4111 (((u32) cmd->cmnd[6]) << 24) |
4112 (((u32) cmd->cmnd[7]) << 16) |
4113 (((u32) cmd->cmnd[8]) << 8) |
4114 cmd->cmnd[9];
4115 break;
4116 case WRITE_16:
4117 is_write = 1;
4118 case READ_16:
4119 first_block =
4120 (((u64) cmd->cmnd[2]) << 56) |
4121 (((u64) cmd->cmnd[3]) << 48) |
4122 (((u64) cmd->cmnd[4]) << 40) |
4123 (((u64) cmd->cmnd[5]) << 32) |
4124 (((u64) cmd->cmnd[6]) << 24) |
4125 (((u64) cmd->cmnd[7]) << 16) |
4126 (((u64) cmd->cmnd[8]) << 8) |
4127 cmd->cmnd[9];
4128 block_cnt =
4129 (((u32) cmd->cmnd[10]) << 24) |
4130 (((u32) cmd->cmnd[11]) << 16) |
4131 (((u32) cmd->cmnd[12]) << 8) |
4132 cmd->cmnd[13];
4133 break;
4134 default:
4135 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4136 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004137 last_block = first_block + block_cnt - 1;
4138
4139 /* check for write to non-RAID-0 */
4140 if (is_write && dev->raid_level != 0)
4141 return IO_ACCEL_INELIGIBLE;
4142
4143 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06004144 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
4145 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004146 return IO_ACCEL_INELIGIBLE;
4147
4148 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06004149 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
4150 le16_to_cpu(map->strip_size);
4151 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004152#if BITS_PER_LONG == 32
4153 tmpdiv = first_block;
4154 (void) do_div(tmpdiv, blocks_per_row);
4155 first_row = tmpdiv;
4156 tmpdiv = last_block;
4157 (void) do_div(tmpdiv, blocks_per_row);
4158 last_row = tmpdiv;
4159 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4160 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4161 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004162 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004163 first_column = tmpdiv;
4164 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004165 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004166 last_column = tmpdiv;
4167#else
4168 first_row = first_block / blocks_per_row;
4169 last_row = last_block / blocks_per_row;
4170 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4171 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06004172 first_column = first_row_offset / strip_size;
4173 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004174#endif
4175
4176 /* if this isn't a single row/column then give to the controller */
4177 if ((first_row != last_row) || (first_column != last_column))
4178 return IO_ACCEL_INELIGIBLE;
4179
4180 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06004181 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
4182 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004183 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004184 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004185 map_index = (map_row * total_disks_per_row) + first_column;
4186
4187 switch (dev->raid_level) {
4188 case HPSA_RAID_0:
4189 break; /* nothing special to do */
4190 case HPSA_RAID_1:
4191 /* Handles load balance across RAID 1 members.
4192 * (2-drive R1 and R10 with even # of drives.)
4193 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004194 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004195 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004196 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06004197 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004198 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06004199 break;
4200 case HPSA_RAID_ADM:
4201 /* Handles N-way mirrors (R1-ADM)
4202 * and R10 with # of drives divisible by 3.)
4203 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004204 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06004205
4206 offload_to_mirror = dev->offload_to_mirror;
4207 raid_map_helper(map, offload_to_mirror,
4208 &map_index, &current_group);
4209 /* set mirror group to use next time */
4210 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06004211 (offload_to_mirror >=
4212 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004213 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06004214 dev->offload_to_mirror = offload_to_mirror;
4215 /* Avoid direct use of dev->offload_to_mirror within this
4216 * function since multiple threads might simultaneously
4217 * increment it beyond the range of dev->layout_map_count -1.
4218 */
4219 break;
4220 case HPSA_RAID_5:
4221 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004222 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004223 break;
4224
4225 /* Verify first and last block are in same RAID group */
4226 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06004227 le16_to_cpu(map->strip_size) *
4228 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004229 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06004230 stripesize = r5or6_blocks_per_row *
4231 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06004232#if BITS_PER_LONG == 32
4233 tmpdiv = first_block;
4234 first_group = do_div(tmpdiv, stripesize);
4235 tmpdiv = first_group;
4236 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4237 first_group = tmpdiv;
4238 tmpdiv = last_block;
4239 last_group = do_div(tmpdiv, stripesize);
4240 tmpdiv = last_group;
4241 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4242 last_group = tmpdiv;
4243#else
4244 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
4245 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06004246#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05004247 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06004248 return IO_ACCEL_INELIGIBLE;
4249
4250 /* Verify request is in a single row of RAID 5/6 */
4251#if BITS_PER_LONG == 32
4252 tmpdiv = first_block;
4253 (void) do_div(tmpdiv, stripesize);
4254 first_row = r5or6_first_row = r0_first_row = tmpdiv;
4255 tmpdiv = last_block;
4256 (void) do_div(tmpdiv, stripesize);
4257 r5or6_last_row = r0_last_row = tmpdiv;
4258#else
4259 first_row = r5or6_first_row = r0_first_row =
4260 first_block / stripesize;
4261 r5or6_last_row = r0_last_row = last_block / stripesize;
4262#endif
4263 if (r5or6_first_row != r5or6_last_row)
4264 return IO_ACCEL_INELIGIBLE;
4265
4266
4267 /* Verify request is in a single column */
4268#if BITS_PER_LONG == 32
4269 tmpdiv = first_block;
4270 first_row_offset = do_div(tmpdiv, stripesize);
4271 tmpdiv = first_row_offset;
4272 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
4273 r5or6_first_row_offset = first_row_offset;
4274 tmpdiv = last_block;
4275 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
4276 tmpdiv = r5or6_last_row_offset;
4277 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
4278 tmpdiv = r5or6_first_row_offset;
4279 (void) do_div(tmpdiv, map->strip_size);
4280 first_column = r5or6_first_column = tmpdiv;
4281 tmpdiv = r5or6_last_row_offset;
4282 (void) do_div(tmpdiv, map->strip_size);
4283 r5or6_last_column = tmpdiv;
4284#else
4285 first_row_offset = r5or6_first_row_offset =
4286 (u32)((first_block % stripesize) %
4287 r5or6_blocks_per_row);
4288
4289 r5or6_last_row_offset =
4290 (u32)((last_block % stripesize) %
4291 r5or6_blocks_per_row);
4292
4293 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004294 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004295 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004296 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004297#endif
4298 if (r5or6_first_column != r5or6_last_column)
4299 return IO_ACCEL_INELIGIBLE;
4300
4301 /* Request is eligible */
4302 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004303 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004304
4305 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06004306 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06004307 (map_row * total_disks_per_row) + first_column;
4308 break;
4309 default:
4310 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004311 }
Scott Teel6b80b182014-02-18 13:56:55 -06004312
Stephen Cameron07543e02015-01-23 16:44:14 -06004313 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
4314 return IO_ACCEL_INELIGIBLE;
4315
Don Brace03383732015-01-23 16:43:30 -06004316 c->phys_disk = dev->phys_disk[map_index];
4317
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004318 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06004319 disk_block = le64_to_cpu(map->disk_starting_blk) +
4320 first_row * le16_to_cpu(map->strip_size) +
4321 (first_row_offset - first_column *
4322 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004323 disk_block_cnt = block_cnt;
4324
4325 /* handle differing logical/physical block sizes */
4326 if (map->phys_blk_shift) {
4327 disk_block <<= map->phys_blk_shift;
4328 disk_block_cnt <<= map->phys_blk_shift;
4329 }
4330 BUG_ON(disk_block_cnt > 0xffff);
4331
4332 /* build the new CDB for the physical disk I/O */
4333 if (disk_block > 0xffffffff) {
4334 cdb[0] = is_write ? WRITE_16 : READ_16;
4335 cdb[1] = 0;
4336 cdb[2] = (u8) (disk_block >> 56);
4337 cdb[3] = (u8) (disk_block >> 48);
4338 cdb[4] = (u8) (disk_block >> 40);
4339 cdb[5] = (u8) (disk_block >> 32);
4340 cdb[6] = (u8) (disk_block >> 24);
4341 cdb[7] = (u8) (disk_block >> 16);
4342 cdb[8] = (u8) (disk_block >> 8);
4343 cdb[9] = (u8) (disk_block);
4344 cdb[10] = (u8) (disk_block_cnt >> 24);
4345 cdb[11] = (u8) (disk_block_cnt >> 16);
4346 cdb[12] = (u8) (disk_block_cnt >> 8);
4347 cdb[13] = (u8) (disk_block_cnt);
4348 cdb[14] = 0;
4349 cdb[15] = 0;
4350 cdb_len = 16;
4351 } else {
4352 cdb[0] = is_write ? WRITE_10 : READ_10;
4353 cdb[1] = 0;
4354 cdb[2] = (u8) (disk_block >> 24);
4355 cdb[3] = (u8) (disk_block >> 16);
4356 cdb[4] = (u8) (disk_block >> 8);
4357 cdb[5] = (u8) (disk_block);
4358 cdb[6] = 0;
4359 cdb[7] = (u8) (disk_block_cnt >> 8);
4360 cdb[8] = (u8) (disk_block_cnt);
4361 cdb[9] = 0;
4362 cdb_len = 10;
4363 }
4364 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004365 dev->scsi3addr,
4366 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004367}
4368
Webb Scales25163bd2015-04-23 09:32:00 -05004369/*
4370 * Submit commands down the "normal" RAID stack path
4371 * All callers to hpsa_ciss_submit must check lockup_detected
4372 * beforehand, before (opt.) and after calling cmd_alloc
4373 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06004374static int hpsa_ciss_submit(struct ctlr_info *h,
4375 struct CommandList *c, struct scsi_cmnd *cmd,
4376 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004377{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004378 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004379 c->cmd_type = CMD_SCSI;
4380 c->scsi_cmd = cmd;
4381 c->Header.ReplyQueue = 0; /* unused in simple mode */
4382 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004383 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004384
4385 /* Fill in the request block... */
4386
4387 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004388 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4389 c->Request.CDBLen = cmd->cmd_len;
4390 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004391 switch (cmd->sc_data_direction) {
4392 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004393 c->Request.type_attr_dir =
4394 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004395 break;
4396 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004397 c->Request.type_attr_dir =
4398 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004399 break;
4400 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004401 c->Request.type_attr_dir =
4402 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004403 break;
4404 case DMA_BIDIRECTIONAL:
4405 /* This can happen if a buggy application does a scsi passthru
4406 * and sets both inlen and outlen to non-zero. ( see
4407 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4408 */
4409
Stephen M. Camerona505b862014-11-14 17:27:04 -06004410 c->Request.type_attr_dir =
4411 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004412 /* This is technically wrong, and hpsa controllers should
4413 * reject it with CMD_INVALID, which is the most correct
4414 * response, but non-fibre backends appear to let it
4415 * slide by, and give the same results as if this field
4416 * were set correctly. Either way is acceptable for
4417 * our purposes here.
4418 */
4419
4420 break;
4421
4422 default:
4423 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4424 cmd->sc_data_direction);
4425 BUG();
4426 break;
4427 }
4428
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004429 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004430 cmd_free(h, c);
4431 return SCSI_MLQUEUE_HOST_BUSY;
4432 }
4433 enqueue_cmd_and_start_io(h, c);
4434 /* the cmd'll come back via intr handler in complete_scsi_command() */
4435 return 0;
4436}
4437
Stephen Cameron360c73b2015-04-23 09:32:32 -05004438static void hpsa_cmd_init(struct ctlr_info *h, int index,
4439 struct CommandList *c)
4440{
4441 dma_addr_t cmd_dma_handle, err_dma_handle;
4442
4443 /* Zero out all of commandlist except the last field, refcount */
4444 memset(c, 0, offsetof(struct CommandList, refcount));
4445 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
4446 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4447 c->err_info = h->errinfo_pool + index;
4448 memset(c->err_info, 0, sizeof(*c->err_info));
4449 err_dma_handle = h->errinfo_pool_dhandle
4450 + index * sizeof(*c->err_info);
4451 c->cmdindex = index;
4452 c->busaddr = (u32) cmd_dma_handle;
4453 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4454 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
4455 c->h = h;
4456}
4457
4458static void hpsa_preinitialize_commands(struct ctlr_info *h)
4459{
4460 int i;
4461
4462 for (i = 0; i < h->nr_cmds; i++) {
4463 struct CommandList *c = h->cmd_pool + i;
4464
4465 hpsa_cmd_init(h, i, c);
4466 atomic_set(&c->refcount, 0);
4467 }
4468}
4469
4470static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
4471 struct CommandList *c)
4472{
4473 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4474
4475 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4476 memset(c->err_info, 0, sizeof(*c->err_info));
4477 c->busaddr = (u32) cmd_dma_handle;
4478}
4479
Webb Scales592a0ad2015-04-23 09:32:48 -05004480static int hpsa_ioaccel_submit(struct ctlr_info *h,
4481 struct CommandList *c, struct scsi_cmnd *cmd,
4482 unsigned char *scsi3addr)
4483{
4484 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4485 int rc = IO_ACCEL_INELIGIBLE;
4486
4487 cmd->host_scribble = (unsigned char *) c;
4488
4489 if (dev->offload_enabled) {
4490 hpsa_cmd_init(h, c->cmdindex, c);
4491 c->cmd_type = CMD_SCSI;
4492 c->scsi_cmd = cmd;
4493 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4494 if (rc < 0) /* scsi_dma_map failed. */
4495 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05004496 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004497 hpsa_cmd_init(h, c->cmdindex, c);
4498 c->cmd_type = CMD_SCSI;
4499 c->scsi_cmd = cmd;
4500 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4501 if (rc < 0) /* scsi_dma_map failed. */
4502 rc = SCSI_MLQUEUE_HOST_BUSY;
4503 }
4504 return rc;
4505}
4506
Don Brace080ef1c2015-01-23 16:43:25 -06004507static void hpsa_command_resubmit_worker(struct work_struct *work)
4508{
4509 struct scsi_cmnd *cmd;
4510 struct hpsa_scsi_dev_t *dev;
4511 struct CommandList *c =
4512 container_of(work, struct CommandList, work);
4513
4514 cmd = c->scsi_cmd;
4515 dev = cmd->device->hostdata;
4516 if (!dev) {
4517 cmd->result = DID_NO_CONNECT << 16;
Webb Scales592a0ad2015-04-23 09:32:48 -05004518 cmd_free(c->h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004519 cmd->scsi_done(cmd);
4520 return;
4521 }
Webb Scales592a0ad2015-04-23 09:32:48 -05004522 if (c->cmd_type == CMD_IOACCEL2) {
4523 struct ctlr_info *h = c->h;
4524 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4525 int rc;
4526
4527 if (c2->error_data.serv_response ==
4528 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
4529 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
4530 if (rc == 0)
4531 return;
4532 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4533 /*
4534 * If we get here, it means dma mapping failed.
4535 * Try again via scsi mid layer, which will
4536 * then get SCSI_MLQUEUE_HOST_BUSY.
4537 */
4538 cmd->result = DID_IMM_RETRY << 16;
4539 cmd->scsi_done(cmd);
4540 cmd_free(h, c); /* FIX-ME: on merge, change
4541 * to cmd_tagged_free() and
4542 * ultimately to
4543 * hpsa_cmd_free_and_done(). */
4544 return;
4545 }
4546 /* else, fall thru and resubmit down CISS path */
4547 }
4548 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05004549 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004550 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4551 /*
4552 * If we get here, it means dma mapping failed. Try
4553 * again via scsi mid layer, which will then get
4554 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05004555 *
4556 * hpsa_ciss_submit will have already freed c
4557 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06004558 */
4559 cmd->result = DID_IMM_RETRY << 16;
4560 cmd->scsi_done(cmd);
4561 }
4562}
4563
Stephen Cameron574f05d2015-01-23 16:43:20 -06004564/* Running in struct Scsi_Host->host_lock less mode */
4565static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4566{
4567 struct ctlr_info *h;
4568 struct hpsa_scsi_dev_t *dev;
4569 unsigned char scsi3addr[8];
4570 struct CommandList *c;
4571 int rc = 0;
4572
4573 /* Get the ptr to our adapter structure out of cmd->host. */
4574 h = sdev_to_hba(cmd->device);
4575 dev = cmd->device->hostdata;
4576 if (!dev) {
4577 cmd->result = DID_NO_CONNECT << 16;
4578 cmd->scsi_done(cmd);
4579 return 0;
4580 }
4581 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4582
4583 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004584 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004585 cmd->scsi_done(cmd);
4586 return 0;
4587 }
4588 c = cmd_alloc(h);
4589 if (c == NULL) { /* trouble... */
4590 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
4591 return SCSI_MLQUEUE_HOST_BUSY;
4592 }
Stephen Cameron407863c2015-01-23 16:44:19 -06004593 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004594 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron407863c2015-01-23 16:44:19 -06004595 cmd_free(h, c);
4596 cmd->scsi_done(cmd);
4597 return 0;
4598 }
Stephen Cameron574f05d2015-01-23 16:43:20 -06004599
Stephen Cameron407863c2015-01-23 16:44:19 -06004600 /*
4601 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004602 * Retries always go down the normal I/O path.
4603 */
4604 if (likely(cmd->retries == 0 &&
4605 cmd->request->cmd_type == REQ_TYPE_FS &&
4606 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004607 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
4608 if (rc == 0)
4609 return 0;
4610 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4611 cmd_free(h, c); /* FIX-ME: on merge, change to
4612 * cmd_tagged_free(), and ultimately
4613 * to hpsa_cmd_resolve_and_free(). */
4614 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004615 }
4616 }
4617 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4618}
4619
Webb Scales8ebc9242015-01-23 16:44:50 -06004620static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004621{
4622 unsigned long flags;
4623
Webb Scales8ebc9242015-01-23 16:44:50 -06004624 spin_lock_irqsave(&h->scan_lock, flags);
4625 h->scan_finished = 1;
4626 wake_up_all(&h->scan_wait_queue);
4627 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004628}
4629
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004630static void hpsa_scan_start(struct Scsi_Host *sh)
4631{
4632 struct ctlr_info *h = shost_to_hba(sh);
4633 unsigned long flags;
4634
Webb Scales8ebc9242015-01-23 16:44:50 -06004635 /*
4636 * Don't let rescans be initiated on a controller known to be locked
4637 * up. If the controller locks up *during* a rescan, that thread is
4638 * probably hosed, but at least we can prevent new rescan threads from
4639 * piling up on a locked up controller.
4640 */
4641 if (unlikely(lockup_detected(h)))
4642 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004643
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004644 /* wait until any scan already in progress is finished. */
4645 while (1) {
4646 spin_lock_irqsave(&h->scan_lock, flags);
4647 if (h->scan_finished)
4648 break;
4649 spin_unlock_irqrestore(&h->scan_lock, flags);
4650 wait_event(h->scan_wait_queue, h->scan_finished);
4651 /* Note: We don't need to worry about a race between this
4652 * thread and driver unload because the midlayer will
4653 * have incremented the reference count, so unload won't
4654 * happen if we're in here.
4655 */
4656 }
4657 h->scan_finished = 0; /* mark scan as in progress */
4658 spin_unlock_irqrestore(&h->scan_lock, flags);
4659
Webb Scales8ebc9242015-01-23 16:44:50 -06004660 if (unlikely(lockup_detected(h)))
4661 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004662
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004663 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4664
Webb Scales8ebc9242015-01-23 16:44:50 -06004665 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004666}
4667
Don Brace7c0a0222015-01-23 16:41:30 -06004668static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
4669{
Don Brace03383732015-01-23 16:43:30 -06004670 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
4671
4672 if (!logical_drive)
4673 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06004674
4675 if (qdepth < 1)
4676 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06004677 else if (qdepth > logical_drive->queue_depth)
4678 qdepth = logical_drive->queue_depth;
4679
4680 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06004681}
4682
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004683static int hpsa_scan_finished(struct Scsi_Host *sh,
4684 unsigned long elapsed_time)
4685{
4686 struct ctlr_info *h = shost_to_hba(sh);
4687 unsigned long flags;
4688 int finished;
4689
4690 spin_lock_irqsave(&h->scan_lock, flags);
4691 finished = h->scan_finished;
4692 spin_unlock_irqrestore(&h->scan_lock, flags);
4693 return finished;
4694}
4695
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004696static void hpsa_unregister_scsi(struct ctlr_info *h)
4697{
4698 /* we are being forcibly unloaded, and may not refuse. */
4699 scsi_remove_host(h->scsi_host);
4700 scsi_host_put(h->scsi_host);
4701 h->scsi_host = NULL;
4702}
4703
4704static int hpsa_register_scsi(struct ctlr_info *h)
4705{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004706 struct Scsi_Host *sh;
4707 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004708
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004709 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
4710 if (sh == NULL)
4711 goto fail;
4712
4713 sh->io_port = 0;
4714 sh->n_io_port = 0;
4715 sh->this_id = -1;
4716 sh->max_channel = 3;
4717 sh->max_cmd_len = MAX_COMMAND_SIZE;
4718 sh->max_lun = HPSA_MAX_LUN;
4719 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004720 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06004721 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004722 sh->sg_tablesize = h->maxsgentries;
4723 h->scsi_host = sh;
4724 sh->hostdata[0] = (unsigned long) h;
4725 sh->irq = h->intr[h->intr_mode];
4726 sh->unique_id = sh->irq;
4727 error = scsi_add_host(sh, &h->pdev->dev);
4728 if (error)
4729 goto fail_host_put;
4730 scsi_scan_host(sh);
4731 return 0;
4732
4733 fail_host_put:
4734 dev_err(&h->pdev->dev, "%s: scsi_add_host"
4735 " failed for controller %d\n", __func__, h->ctlr);
4736 scsi_host_put(sh);
4737 return error;
4738 fail:
4739 dev_err(&h->pdev->dev, "%s: scsi_host_alloc"
4740 " failed for controller %d\n", __func__, h->ctlr);
4741 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004742}
4743
4744static int wait_for_device_to_become_ready(struct ctlr_info *h,
4745 unsigned char lunaddr[])
4746{
Tomas Henzl89193582014-02-21 16:25:05 -06004747 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004748 int count = 0;
4749 int waittime = 1; /* seconds */
4750 struct CommandList *c;
4751
Stephen Cameron45fcb862015-01-23 16:43:04 -06004752 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004753 if (!c) {
4754 dev_warn(&h->pdev->dev, "out of memory in "
4755 "wait_for_device_to_become_ready.\n");
4756 return IO_ERROR;
4757 }
4758
4759 /* Send test unit ready until device ready, or give up. */
4760 while (count < HPSA_TUR_RETRY_LIMIT) {
4761
4762 /* Wait for a bit. do this first, because if we send
4763 * the TUR right away, the reset will just abort it.
4764 */
4765 msleep(1000 * waittime);
4766 count++;
Tomas Henzl89193582014-02-21 16:25:05 -06004767 rc = 0; /* Device ready. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004768
4769 /* Increase wait time with each try, up to a point. */
4770 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
4771 waittime = waittime * 2;
4772
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004773 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
4774 (void) fill_cmd(c, TEST_UNIT_READY, h,
4775 NULL, 0, 0, lunaddr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05004776 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
4777 NO_TIMEOUT);
4778 if (rc)
4779 goto do_it_again;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004780 /* no unmap needed here because no data xfer. */
4781
4782 if (c->err_info->CommandStatus == CMD_SUCCESS)
4783 break;
4784
4785 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
4786 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
4787 (c->err_info->SenseInfo[2] == NO_SENSE ||
4788 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
4789 break;
Webb Scales25163bd2015-04-23 09:32:00 -05004790do_it_again:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004791 dev_warn(&h->pdev->dev, "waiting %d secs "
4792 "for device to become ready.\n", waittime);
4793 rc = 1; /* device not ready. */
4794 }
4795
4796 if (rc)
4797 dev_warn(&h->pdev->dev, "giving up on device.\n");
4798 else
4799 dev_warn(&h->pdev->dev, "device is ready.\n");
4800
Stephen Cameron45fcb862015-01-23 16:43:04 -06004801 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004802 return rc;
4803}
4804
4805/* Need at least one of these error handlers to keep ../scsi/hosts.c from
4806 * complaining. Doing a host- or bus-reset can't do anything good here.
4807 */
4808static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
4809{
4810 int rc;
4811 struct ctlr_info *h;
4812 struct hpsa_scsi_dev_t *dev;
4813
4814 /* find the controller to which the command to be aborted was sent */
4815 h = sdev_to_hba(scsicmd->device);
4816 if (h == NULL) /* paranoia */
4817 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06004818
4819 if (lockup_detected(h))
4820 return FAILED;
4821
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004822 dev = scsicmd->device->hostdata;
4823 if (!dev) {
4824 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
4825 "device lookup failed.\n");
4826 return FAILED;
4827 }
Webb Scales25163bd2015-04-23 09:32:00 -05004828
4829 /* if controller locked up, we can guarantee command won't complete */
4830 if (lockup_detected(h)) {
4831 dev_warn(&h->pdev->dev,
4832 "scsi %d:%d:%d:%d RESET FAILED, lockup detected\n",
4833 h->scsi_host->host_no, dev->bus, dev->target,
4834 dev->lun);
4835 return FAILED;
4836 }
4837
4838 /* this reset request might be the result of a lockup; check */
4839 if (detect_controller_lockup(h)) {
4840 dev_warn(&h->pdev->dev,
4841 "scsi %d:%d:%d:%d RESET FAILED, new lockup detected\n",
4842 h->scsi_host->host_no, dev->bus, dev->target,
4843 dev->lun);
4844 return FAILED;
4845 }
4846
4847 hpsa_show_dev_msg(KERN_WARNING, h, dev, "resetting");
4848
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004849 /* send a reset to the SCSI LUN which the command was sent to */
Webb Scales25163bd2015-04-23 09:32:00 -05004850 rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN,
4851 DEFAULT_REPLY_QUEUE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004852 if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0)
4853 return SUCCESS;
4854
Webb Scales25163bd2015-04-23 09:32:00 -05004855 dev_warn(&h->pdev->dev,
4856 "scsi %d:%d:%d:%d reset failed\n",
4857 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004858 return FAILED;
4859}
4860
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004861static void swizzle_abort_tag(u8 *tag)
4862{
4863 u8 original_tag[8];
4864
4865 memcpy(original_tag, tag, 8);
4866 tag[0] = original_tag[3];
4867 tag[1] = original_tag[2];
4868 tag[2] = original_tag[1];
4869 tag[3] = original_tag[0];
4870 tag[4] = original_tag[7];
4871 tag[5] = original_tag[6];
4872 tag[6] = original_tag[5];
4873 tag[7] = original_tag[4];
4874}
4875
Scott Teel17eb87d2014-02-18 13:55:28 -06004876static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06004877 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06004878{
Don Brace2b08b3e2015-01-23 16:41:09 -06004879 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06004880 if (c->cmd_type == CMD_IOACCEL1) {
4881 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
4882 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06004883 tag = le64_to_cpu(cm1->tag);
4884 *tagupper = cpu_to_le32(tag >> 32);
4885 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004886 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06004887 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06004888 if (c->cmd_type == CMD_IOACCEL2) {
4889 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
4890 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06004891 /* upper tag not used in ioaccel2 mode */
4892 memset(tagupper, 0, sizeof(*tagupper));
4893 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004894 return;
4895 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004896 tag = le64_to_cpu(c->Header.tag);
4897 *tagupper = cpu_to_le32(tag >> 32);
4898 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06004899}
4900
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004901static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004902 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004903{
4904 int rc = IO_OK;
4905 struct CommandList *c;
4906 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06004907 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004908
Stephen Cameron45fcb862015-01-23 16:43:04 -06004909 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004910 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06004911 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004912 return -ENOMEM;
4913 }
4914
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004915 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004916 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004917 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004918 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004919 swizzle_abort_tag(&c->Request.CDB[4]);
Webb Scales25163bd2015-04-23 09:32:00 -05004920 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06004921 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05004922 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004923 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004924 /* no unmap needed here because no data xfer. */
4925
4926 ei = c->err_info;
4927 switch (ei->CommandStatus) {
4928 case CMD_SUCCESS:
4929 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05004930 case CMD_TMF_STATUS:
4931 rc = hpsa_evaluate_tmf_status(h, c);
4932 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004933 case CMD_UNABORTABLE: /* Very common, don't make noise. */
4934 rc = -1;
4935 break;
4936 default:
4937 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004938 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06004939 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004940 rc = -1;
4941 break;
4942 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06004943 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004944 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
4945 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004946 return rc;
4947}
4948
Scott Teel54b6e9e2014-02-18 13:56:45 -06004949/* ioaccel2 path firmware cannot handle abort task requests.
4950 * Change abort requests to physical target reset, and send to the
4951 * address of the physical disk used for the ioaccel 2 command.
4952 * Return 0 on success (IO_OK)
4953 * -1 on failure
4954 */
4955
4956static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05004957 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06004958{
4959 int rc = IO_OK;
4960 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
4961 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
4962 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
4963 unsigned char *psa = &phys_scsi3addr[0];
4964
4965 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06004966 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004967 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
4968 if (dev == NULL) {
4969 dev_warn(&h->pdev->dev,
4970 "Cannot abort: no device pointer for command.\n");
4971 return -1; /* not abortable */
4972 }
4973
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004974 if (h->raid_offload_debug > 0)
4975 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05004976 "scsi %d:%d:%d:%d %s scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004977 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05004978 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004979 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
4980 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
4981
Scott Teel54b6e9e2014-02-18 13:56:45 -06004982 if (!dev->offload_enabled) {
4983 dev_warn(&h->pdev->dev,
4984 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
4985 return -1; /* not abortable */
4986 }
4987
4988 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
4989 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
4990 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
4991 return -1; /* not abortable */
4992 }
4993
4994 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004995 if (h->raid_offload_debug > 0)
4996 dev_info(&h->pdev->dev,
4997 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4998 psa[0], psa[1], psa[2], psa[3],
4999 psa[4], psa[5], psa[6], psa[7]);
Webb Scales25163bd2015-04-23 09:32:00 -05005000 rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005001 if (rc != 0) {
5002 dev_warn(&h->pdev->dev,
5003 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5004 psa[0], psa[1], psa[2], psa[3],
5005 psa[4], psa[5], psa[6], psa[7]);
5006 return rc; /* failed to reset */
5007 }
5008
5009 /* wait for device to recover */
5010 if (wait_for_device_to_become_ready(h, psa) != 0) {
5011 dev_warn(&h->pdev->dev,
5012 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5013 psa[0], psa[1], psa[2], psa[3],
5014 psa[4], psa[5], psa[6], psa[7]);
5015 return -1; /* failed to recover */
5016 }
5017
5018 /* device recovered */
5019 dev_info(&h->pdev->dev,
5020 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5021 psa[0], psa[1], psa[2], psa[3],
5022 psa[4], psa[5], psa[6], psa[7]);
5023
5024 return rc; /* success */
5025}
5026
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005027static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005028 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005029{
Scott Teel54b6e9e2014-02-18 13:56:45 -06005030 /* ioccelerator mode 2 commands should be aborted via the
5031 * accelerated path, since RAID path is unaware of these commands,
5032 * but underlying firmware can't handle abort TMF.
5033 * Change abort to physical device reset.
5034 */
5035 if (abort->cmd_type == CMD_IOACCEL2)
Webb Scales25163bd2015-04-23 09:32:00 -05005036 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
5037 abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005038 return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05005039}
5040
5041/* Find out which reply queue a command was meant to return on */
5042static int hpsa_extract_reply_queue(struct ctlr_info *h,
5043 struct CommandList *c)
5044{
5045 if (c->cmd_type == CMD_IOACCEL2)
5046 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
5047 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005048}
5049
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005050/*
5051 * Limit concurrency of abort commands to prevent
5052 * over-subscription of commands
5053 */
5054static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
5055{
5056#define ABORT_CMD_WAIT_MSECS 5000
5057 return !wait_event_timeout(h->abort_cmd_wait_queue,
5058 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
5059 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
5060}
5061
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005062/* Send an abort for the specified command.
5063 * If the device and controller support it,
5064 * send a task abort request.
5065 */
5066static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
5067{
5068
5069 int i, rc;
5070 struct ctlr_info *h;
5071 struct hpsa_scsi_dev_t *dev;
5072 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005073 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
5074 char msg[256]; /* For debug messaging. */
5075 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06005076 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05005077 int refcount, reply_queue;
5078
5079 if (sc == NULL)
5080 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005081
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005082 if (sc->device == NULL)
5083 return FAILED;
5084
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005085 /* Find the controller of the command to be aborted */
5086 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005087 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005088 return FAILED;
5089
Webb Scales25163bd2015-04-23 09:32:00 -05005090 /* Find the device of the command to be aborted */
5091 dev = sc->device->hostdata;
5092 if (!dev) {
5093 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
5094 msg);
Don Bracee3458932015-01-23 16:44:24 -06005095 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05005096 }
5097
5098 /* If controller locked up, we can guarantee command won't complete */
5099 if (lockup_detected(h)) {
5100 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5101 "ABORT FAILED, lockup detected");
5102 return FAILED;
5103 }
5104
5105 /* This is a good time to check if controller lockup has occurred */
5106 if (detect_controller_lockup(h)) {
5107 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5108 "ABORT FAILED, new lockup detected");
5109 return FAILED;
5110 }
Don Bracee3458932015-01-23 16:44:24 -06005111
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005112 /* Check that controller supports some kind of task abort */
5113 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
5114 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
5115 return FAILED;
5116
5117 memset(msg, 0, sizeof(msg));
Webb Scales0d96ef52015-04-23 09:31:55 -05005118 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005119 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05005120 sc->device->id, sc->device->lun,
5121 "Aborting command");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005122
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005123 /* Get SCSI command to be aborted */
5124 abort = (struct CommandList *) sc->host_scribble;
5125 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005126 /* This can happen if the command already completed. */
5127 return SUCCESS;
5128 }
5129 refcount = atomic_inc_return(&abort->refcount);
5130 if (refcount == 1) { /* Command is done already. */
5131 cmd_free(h, abort);
5132 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005133 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005134
5135 /* Don't bother trying the abort if we know it won't work. */
5136 if (abort->cmd_type != CMD_IOACCEL2 &&
5137 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
5138 cmd_free(h, abort);
5139 return FAILED;
5140 }
5141
Scott Teel17eb87d2014-02-18 13:55:28 -06005142 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005143 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06005144 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06005145 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005146 if (as != NULL)
5147 ml += sprintf(msg+ml, "Command:0x%x SN:0x%lx ",
5148 as->cmnd[0], as->serial_number);
5149 dev_dbg(&h->pdev->dev, "%s\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005150 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005151 /*
5152 * Command is in flight, or possibly already completed
5153 * by the firmware (but not to the scsi mid layer) but we can't
5154 * distinguish which. Send the abort down.
5155 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005156 if (wait_for_available_abort_cmd(h)) {
5157 dev_warn(&h->pdev->dev,
5158 "Timed out waiting for an abort command to become available.\n");
5159 cmd_free(h, abort);
5160 return FAILED;
5161 }
Webb Scales25163bd2015-04-23 09:32:00 -05005162 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005163 atomic_inc(&h->abort_cmds_available);
5164 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005165 if (rc != 0) {
Webb Scales0d96ef52015-04-23 09:31:55 -05005166 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5167 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06005168 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005169 return FAILED;
5170 }
5171 dev_info(&h->pdev->dev, "%s REQUEST SUCCEEDED.\n", msg);
5172
5173 /* If the abort(s) above completed and actually aborted the
5174 * command, then the command to be aborted should already be
5175 * completed. If not, wait around a bit more to see if they
5176 * manage to complete normally.
5177 */
5178#define ABORT_COMPLETE_WAIT_SECS 30
5179 for (i = 0; i < ABORT_COMPLETE_WAIT_SECS * 10; i++) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005180 refcount = atomic_read(&abort->refcount);
5181 if (refcount < 2) {
5182 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005183 return SUCCESS;
Webb Scales281a7fd2015-01-23 16:43:35 -06005184 } else {
5185 msleep(100);
5186 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005187 }
5188 dev_warn(&h->pdev->dev, "%s FAILED. Aborted command has not completed after %d seconds.\n",
5189 msg, ABORT_COMPLETE_WAIT_SECS);
Webb Scales281a7fd2015-01-23 16:43:35 -06005190 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005191 return FAILED;
5192}
5193
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005194/*
5195 * For operations that cannot sleep, a command block is allocated at init,
5196 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5197 * which ones are free or in use. Lock must be held when calling this.
5198 * cmd_free() is the complement.
5199 */
Webb Scales281a7fd2015-01-23 16:43:35 -06005200
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005201static struct CommandList *cmd_alloc(struct ctlr_info *h)
5202{
5203 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005204 int refcount, i;
Robert Elliott33811022015-01-23 16:43:41 -06005205 unsigned long offset;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005206
Robert Elliott33811022015-01-23 16:43:41 -06005207 /*
5208 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005209 * multiple threads could get in here, and one thread could
5210 * be scanning through the list of bits looking for a free
5211 * one, but the free ones are always behind him, and other
5212 * threads sneak in behind him and eat them before he can
5213 * get to them, so that while there is always a free one, a
5214 * very unlucky thread might be starved anyway, never able to
5215 * beat the other threads. In reality, this happens so
5216 * infrequently as to be indistinguishable from never.
5217 */
5218
Robert Elliott33811022015-01-23 16:43:41 -06005219 offset = h->last_allocation; /* benignly racy */
Webb Scales281a7fd2015-01-23 16:43:35 -06005220 for (;;) {
5221 i = find_next_zero_bit(h->cmd_pool_bits, h->nr_cmds, offset);
5222 if (unlikely(i == h->nr_cmds)) {
5223 offset = 0;
5224 continue;
5225 }
5226 c = h->cmd_pool + i;
5227 refcount = atomic_inc_return(&c->refcount);
5228 if (unlikely(refcount > 1)) {
5229 cmd_free(h, c); /* already in use */
5230 offset = (i + 1) % h->nr_cmds;
5231 continue;
5232 }
5233 set_bit(i & (BITS_PER_LONG - 1),
5234 h->cmd_pool_bits + (i / BITS_PER_LONG));
5235 break; /* it's ours now. */
5236 }
Robert Elliott33811022015-01-23 16:43:41 -06005237 h->last_allocation = i; /* benignly racy */
Stephen Cameron360c73b2015-04-23 09:32:32 -05005238 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005239 return c;
5240}
5241
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005242static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5243{
Webb Scales281a7fd2015-01-23 16:43:35 -06005244 if (atomic_dec_and_test(&c->refcount)) {
5245 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005246
Webb Scales281a7fd2015-01-23 16:43:35 -06005247 i = c - h->cmd_pool;
5248 clear_bit(i & (BITS_PER_LONG - 1),
5249 h->cmd_pool_bits + (i / BITS_PER_LONG));
5250 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005251}
5252
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005253#ifdef CONFIG_COMPAT
5254
Don Brace42a91642014-11-14 17:26:27 -06005255static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
5256 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005257{
5258 IOCTL32_Command_struct __user *arg32 =
5259 (IOCTL32_Command_struct __user *) arg;
5260 IOCTL_Command_struct arg64;
5261 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5262 int err;
5263 u32 cp;
5264
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005265 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005266 err = 0;
5267 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5268 sizeof(arg64.LUN_info));
5269 err |= copy_from_user(&arg64.Request, &arg32->Request,
5270 sizeof(arg64.Request));
5271 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5272 sizeof(arg64.error_info));
5273 err |= get_user(arg64.buf_size, &arg32->buf_size);
5274 err |= get_user(cp, &arg32->buf);
5275 arg64.buf = compat_ptr(cp);
5276 err |= copy_to_user(p, &arg64, sizeof(arg64));
5277
5278 if (err)
5279 return -EFAULT;
5280
Don Brace42a91642014-11-14 17:26:27 -06005281 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005282 if (err)
5283 return err;
5284 err |= copy_in_user(&arg32->error_info, &p->error_info,
5285 sizeof(arg32->error_info));
5286 if (err)
5287 return -EFAULT;
5288 return err;
5289}
5290
5291static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06005292 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005293{
5294 BIG_IOCTL32_Command_struct __user *arg32 =
5295 (BIG_IOCTL32_Command_struct __user *) arg;
5296 BIG_IOCTL_Command_struct arg64;
5297 BIG_IOCTL_Command_struct __user *p =
5298 compat_alloc_user_space(sizeof(arg64));
5299 int err;
5300 u32 cp;
5301
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005302 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005303 err = 0;
5304 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5305 sizeof(arg64.LUN_info));
5306 err |= copy_from_user(&arg64.Request, &arg32->Request,
5307 sizeof(arg64.Request));
5308 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5309 sizeof(arg64.error_info));
5310 err |= get_user(arg64.buf_size, &arg32->buf_size);
5311 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5312 err |= get_user(cp, &arg32->buf);
5313 arg64.buf = compat_ptr(cp);
5314 err |= copy_to_user(p, &arg64, sizeof(arg64));
5315
5316 if (err)
5317 return -EFAULT;
5318
Don Brace42a91642014-11-14 17:26:27 -06005319 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005320 if (err)
5321 return err;
5322 err |= copy_in_user(&arg32->error_info, &p->error_info,
5323 sizeof(arg32->error_info));
5324 if (err)
5325 return -EFAULT;
5326 return err;
5327}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005328
Don Brace42a91642014-11-14 17:26:27 -06005329static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005330{
5331 switch (cmd) {
5332 case CCISS_GETPCIINFO:
5333 case CCISS_GETINTINFO:
5334 case CCISS_SETINTINFO:
5335 case CCISS_GETNODENAME:
5336 case CCISS_SETNODENAME:
5337 case CCISS_GETHEARTBEAT:
5338 case CCISS_GETBUSTYPES:
5339 case CCISS_GETFIRMVER:
5340 case CCISS_GETDRIVVER:
5341 case CCISS_REVALIDVOLS:
5342 case CCISS_DEREGDISK:
5343 case CCISS_REGNEWDISK:
5344 case CCISS_REGNEWD:
5345 case CCISS_RESCANDISK:
5346 case CCISS_GETLUNINFO:
5347 return hpsa_ioctl(dev, cmd, arg);
5348
5349 case CCISS_PASSTHRU32:
5350 return hpsa_ioctl32_passthru(dev, cmd, arg);
5351 case CCISS_BIG_PASSTHRU32:
5352 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
5353
5354 default:
5355 return -ENOIOCTLCMD;
5356 }
5357}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005358#endif
5359
5360static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5361{
5362 struct hpsa_pci_info pciinfo;
5363
5364 if (!argp)
5365 return -EINVAL;
5366 pciinfo.domain = pci_domain_nr(h->pdev->bus);
5367 pciinfo.bus = h->pdev->bus->number;
5368 pciinfo.dev_fn = h->pdev->devfn;
5369 pciinfo.board_id = h->board_id;
5370 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5371 return -EFAULT;
5372 return 0;
5373}
5374
5375static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
5376{
5377 DriverVer_type DriverVer;
5378 unsigned char vmaj, vmin, vsubmin;
5379 int rc;
5380
5381 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
5382 &vmaj, &vmin, &vsubmin);
5383 if (rc != 3) {
5384 dev_info(&h->pdev->dev, "driver version string '%s' "
5385 "unrecognized.", HPSA_DRIVER_VERSION);
5386 vmaj = 0;
5387 vmin = 0;
5388 vsubmin = 0;
5389 }
5390 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
5391 if (!argp)
5392 return -EINVAL;
5393 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
5394 return -EFAULT;
5395 return 0;
5396}
5397
5398static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5399{
5400 IOCTL_Command_struct iocommand;
5401 struct CommandList *c;
5402 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005403 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005404 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005405
5406 if (!argp)
5407 return -EINVAL;
5408 if (!capable(CAP_SYS_RAWIO))
5409 return -EPERM;
5410 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
5411 return -EFAULT;
5412 if ((iocommand.buf_size < 1) &&
5413 (iocommand.Request.Type.Direction != XFER_NONE)) {
5414 return -EINVAL;
5415 }
5416 if (iocommand.buf_size > 0) {
5417 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
5418 if (buff == NULL)
5419 return -EFAULT;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005420 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005421 /* Copy the data into the buffer we created */
5422 if (copy_from_user(buff, iocommand.buf,
5423 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005424 rc = -EFAULT;
5425 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005426 }
5427 } else {
5428 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005429 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005430 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005431 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005432 if (c == NULL) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005433 rc = -ENOMEM;
5434 goto out_kfree;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005435 }
5436 /* Fill in the command type */
5437 c->cmd_type = CMD_IOCTL_PEND;
5438 /* Fill in Command Header */
5439 c->Header.ReplyQueue = 0; /* unused in simple mode */
5440 if (iocommand.buf_size > 0) { /* buffer to fill */
5441 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005442 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005443 } else { /* no buffers to fill */
5444 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005445 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005446 }
5447 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005448
5449 /* Fill in Request block */
5450 memcpy(&c->Request, &iocommand.Request,
5451 sizeof(c->Request));
5452
5453 /* Fill in the scatter gather information */
5454 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005455 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005456 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005457 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
5458 c->SG[0].Addr = cpu_to_le64(0);
5459 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005460 rc = -ENOMEM;
5461 goto out;
5462 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005463 c->SG[0].Addr = cpu_to_le64(temp64);
5464 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
5465 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005466 }
Webb Scales25163bd2015-04-23 09:32:00 -05005467 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05005468 if (iocommand.buf_size > 0)
5469 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005470 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005471 if (rc) {
5472 rc = -EIO;
5473 goto out;
5474 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005475
5476 /* Copy the error information out */
5477 memcpy(&iocommand.error_info, c->err_info,
5478 sizeof(iocommand.error_info));
5479 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005480 rc = -EFAULT;
5481 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005482 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005483 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005484 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005485 /* Copy the data out of the buffer we created */
5486 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005487 rc = -EFAULT;
5488 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005489 }
5490 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005491out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005492 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005493out_kfree:
5494 kfree(buff);
5495 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005496}
5497
5498static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5499{
5500 BIG_IOCTL_Command_struct *ioc;
5501 struct CommandList *c;
5502 unsigned char **buff = NULL;
5503 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005504 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005505 BYTE sg_used = 0;
5506 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005507 u32 left;
5508 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005509 BYTE __user *data_ptr;
5510
5511 if (!argp)
5512 return -EINVAL;
5513 if (!capable(CAP_SYS_RAWIO))
5514 return -EPERM;
5515 ioc = (BIG_IOCTL_Command_struct *)
5516 kmalloc(sizeof(*ioc), GFP_KERNEL);
5517 if (!ioc) {
5518 status = -ENOMEM;
5519 goto cleanup1;
5520 }
5521 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
5522 status = -EFAULT;
5523 goto cleanup1;
5524 }
5525 if ((ioc->buf_size < 1) &&
5526 (ioc->Request.Type.Direction != XFER_NONE)) {
5527 status = -EINVAL;
5528 goto cleanup1;
5529 }
5530 /* Check kmalloc limits using all SGs */
5531 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
5532 status = -EINVAL;
5533 goto cleanup1;
5534 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005535 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005536 status = -EINVAL;
5537 goto cleanup1;
5538 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005539 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005540 if (!buff) {
5541 status = -ENOMEM;
5542 goto cleanup1;
5543 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005544 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005545 if (!buff_size) {
5546 status = -ENOMEM;
5547 goto cleanup1;
5548 }
5549 left = ioc->buf_size;
5550 data_ptr = ioc->buf;
5551 while (left) {
5552 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
5553 buff_size[sg_used] = sz;
5554 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
5555 if (buff[sg_used] == NULL) {
5556 status = -ENOMEM;
5557 goto cleanup1;
5558 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005559 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005560 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05005561 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005562 goto cleanup1;
5563 }
5564 } else
5565 memset(buff[sg_used], 0, sz);
5566 left -= sz;
5567 data_ptr += sz;
5568 sg_used++;
5569 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005570 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005571 if (c == NULL) {
5572 status = -ENOMEM;
5573 goto cleanup1;
5574 }
5575 c->cmd_type = CMD_IOCTL_PEND;
5576 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005577 c->Header.SGList = (u8) sg_used;
5578 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005579 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005580 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
5581 if (ioc->buf_size > 0) {
5582 int i;
5583 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005584 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005585 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005586 if (dma_mapping_error(&h->pdev->dev,
5587 (dma_addr_t) temp64)) {
5588 c->SG[i].Addr = cpu_to_le64(0);
5589 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005590 hpsa_pci_unmap(h->pdev, c, i,
5591 PCI_DMA_BIDIRECTIONAL);
5592 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005593 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005594 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005595 c->SG[i].Addr = cpu_to_le64(temp64);
5596 c->SG[i].Len = cpu_to_le32(buff_size[i]);
5597 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005598 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005599 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005600 }
Webb Scales25163bd2015-04-23 09:32:00 -05005601 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005602 if (sg_used)
5603 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005604 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005605 if (status) {
5606 status = -EIO;
5607 goto cleanup0;
5608 }
5609
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005610 /* Copy the error information out */
5611 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
5612 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005613 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005614 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005615 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005616 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005617 int i;
5618
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005619 /* Copy the data out of the buffer we created */
5620 BYTE __user *ptr = ioc->buf;
5621 for (i = 0; i < sg_used; i++) {
5622 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005623 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005624 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005625 }
5626 ptr += buff_size[i];
5627 }
5628 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005629 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005630cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005631 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005632cleanup1:
5633 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005634 int i;
5635
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005636 for (i = 0; i < sg_used; i++)
5637 kfree(buff[i]);
5638 kfree(buff);
5639 }
5640 kfree(buff_size);
5641 kfree(ioc);
5642 return status;
5643}
5644
5645static void check_ioctl_unit_attention(struct ctlr_info *h,
5646 struct CommandList *c)
5647{
5648 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5649 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
5650 (void) check_for_unit_attention(h, c);
5651}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005652
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005653/*
5654 * ioctl
5655 */
Don Brace42a91642014-11-14 17:26:27 -06005656static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005657{
5658 struct ctlr_info *h;
5659 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005660 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005661
5662 h = sdev_to_hba(dev);
5663
5664 switch (cmd) {
5665 case CCISS_DEREGDISK:
5666 case CCISS_REGNEWDISK:
5667 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005668 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005669 return 0;
5670 case CCISS_GETPCIINFO:
5671 return hpsa_getpciinfo_ioctl(h, argp);
5672 case CCISS_GETDRIVVER:
5673 return hpsa_getdrivver_ioctl(h, argp);
5674 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005675 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005676 return -EAGAIN;
5677 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005678 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005679 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005680 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005681 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005682 return -EAGAIN;
5683 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005684 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005685 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005686 default:
5687 return -ENOTTY;
5688 }
5689}
5690
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005691static int hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
5692 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005693{
5694 struct CommandList *c;
5695
5696 c = cmd_alloc(h);
5697 if (!c)
5698 return -ENOMEM;
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005699 /* fill_cmd can't fail here, no data buffer to map */
5700 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005701 RAID_CTLR_LUNID, TYPE_MSG);
5702 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
5703 c->waiting = NULL;
5704 enqueue_cmd_and_start_io(h, c);
5705 /* Don't wait for completion, the reset won't complete. Don't free
5706 * the command either. This is the last command we will send before
5707 * re-initializing everything, so it doesn't matter and won't leak.
5708 */
5709 return 0;
5710}
5711
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005712static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005713 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005714 int cmd_type)
5715{
5716 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005717 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005718
5719 c->cmd_type = CMD_IOCTL_PEND;
5720 c->Header.ReplyQueue = 0;
5721 if (buff != NULL && size > 0) {
5722 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005723 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005724 } else {
5725 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005726 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005727 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005728 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
5729
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005730 if (cmd_type == TYPE_CMD) {
5731 switch (cmd) {
5732 case HPSA_INQUIRY:
5733 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005734 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005735 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005736 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005737 }
5738 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005739 c->Request.type_attr_dir =
5740 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005741 c->Request.Timeout = 0;
5742 c->Request.CDB[0] = HPSA_INQUIRY;
5743 c->Request.CDB[4] = size & 0xFF;
5744 break;
5745 case HPSA_REPORT_LOG:
5746 case HPSA_REPORT_PHYS:
5747 /* Talking to controller so It's a physical command
5748 mode = 00 target = 0. Nothing to write.
5749 */
5750 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005751 c->Request.type_attr_dir =
5752 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005753 c->Request.Timeout = 0;
5754 c->Request.CDB[0] = cmd;
5755 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5756 c->Request.CDB[7] = (size >> 16) & 0xFF;
5757 c->Request.CDB[8] = (size >> 8) & 0xFF;
5758 c->Request.CDB[9] = size & 0xFF;
5759 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005760 case HPSA_CACHE_FLUSH:
5761 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005762 c->Request.type_attr_dir =
5763 TYPE_ATTR_DIR(cmd_type,
5764 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005765 c->Request.Timeout = 0;
5766 c->Request.CDB[0] = BMIC_WRITE;
5767 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05005768 c->Request.CDB[7] = (size >> 8) & 0xFF;
5769 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005770 break;
5771 case TEST_UNIT_READY:
5772 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005773 c->Request.type_attr_dir =
5774 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005775 c->Request.Timeout = 0;
5776 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005777 case HPSA_GET_RAID_MAP:
5778 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005779 c->Request.type_attr_dir =
5780 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005781 c->Request.Timeout = 0;
5782 c->Request.CDB[0] = HPSA_CISS_READ;
5783 c->Request.CDB[1] = cmd;
5784 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5785 c->Request.CDB[7] = (size >> 16) & 0xFF;
5786 c->Request.CDB[8] = (size >> 8) & 0xFF;
5787 c->Request.CDB[9] = size & 0xFF;
5788 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005789 case BMIC_SENSE_CONTROLLER_PARAMETERS:
5790 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005791 c->Request.type_attr_dir =
5792 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005793 c->Request.Timeout = 0;
5794 c->Request.CDB[0] = BMIC_READ;
5795 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
5796 c->Request.CDB[7] = (size >> 16) & 0xFF;
5797 c->Request.CDB[8] = (size >> 8) & 0xFF;
5798 break;
Don Brace03383732015-01-23 16:43:30 -06005799 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
5800 c->Request.CDBLen = 10;
5801 c->Request.type_attr_dir =
5802 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
5803 c->Request.Timeout = 0;
5804 c->Request.CDB[0] = BMIC_READ;
5805 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
5806 c->Request.CDB[7] = (size >> 16) & 0xFF;
5807 c->Request.CDB[8] = (size >> 8) & 0XFF;
5808 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005809 default:
5810 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
5811 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005812 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005813 }
5814 } else if (cmd_type == TYPE_MSG) {
5815 switch (cmd) {
5816
5817 case HPSA_DEVICE_RESET_MSG:
5818 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005819 c->Request.type_attr_dir =
5820 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005821 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005822 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
5823 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05005824 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005825 /* If bytes 4-7 are zero, it means reset the */
5826 /* LunID device */
5827 c->Request.CDB[4] = 0x00;
5828 c->Request.CDB[5] = 0x00;
5829 c->Request.CDB[6] = 0x00;
5830 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005831 break;
5832 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005833 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06005834 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005835 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
5836 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005837 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005838 c->Request.type_attr_dir =
5839 TYPE_ATTR_DIR(cmd_type,
5840 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005841 c->Request.Timeout = 0; /* Don't time out */
5842 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
5843 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
5844 c->Request.CDB[2] = 0x00; /* reserved */
5845 c->Request.CDB[3] = 0x00; /* reserved */
5846 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005847 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005848 c->Request.CDB[12] = 0x00; /* reserved */
5849 c->Request.CDB[13] = 0x00; /* reserved */
5850 c->Request.CDB[14] = 0x00; /* reserved */
5851 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005852 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005853 default:
5854 dev_warn(&h->pdev->dev, "unknown message type %d\n",
5855 cmd);
5856 BUG();
5857 }
5858 } else {
5859 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
5860 BUG();
5861 }
5862
Stephen M. Camerona505b862014-11-14 17:27:04 -06005863 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005864 case XFER_READ:
5865 pci_dir = PCI_DMA_FROMDEVICE;
5866 break;
5867 case XFER_WRITE:
5868 pci_dir = PCI_DMA_TODEVICE;
5869 break;
5870 case XFER_NONE:
5871 pci_dir = PCI_DMA_NONE;
5872 break;
5873 default:
5874 pci_dir = PCI_DMA_BIDIRECTIONAL;
5875 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005876 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
5877 return -1;
5878 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005879}
5880
5881/*
5882 * Map (physical) PCI mem into (virtual) kernel space
5883 */
5884static void __iomem *remap_pci_mem(ulong base, ulong size)
5885{
5886 ulong page_base = ((ulong) base) & PAGE_MASK;
5887 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05005888 void __iomem *page_remapped = ioremap_nocache(page_base,
5889 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005890
5891 return page_remapped ? (page_remapped + page_offs) : NULL;
5892}
5893
Matt Gates254f7962012-05-01 11:43:06 -05005894static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005895{
Matt Gates254f7962012-05-01 11:43:06 -05005896 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005897}
5898
Stephen M. Cameron900c5442010-02-04 08:42:35 -06005899static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005900{
5901 return h->access.intr_pending(h);
5902}
5903
5904static inline long interrupt_not_for_us(struct ctlr_info *h)
5905{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005906 return (h->access.intr_pending(h) == 0) ||
5907 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005908}
5909
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005910static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
5911 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005912{
5913 if (unlikely(tag_index >= h->nr_cmds)) {
5914 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
5915 return 1;
5916 }
5917 return 0;
5918}
5919
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05005920static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005921{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05005922 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06005923 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
5924 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05005925 complete_scsi_command(c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005926 else if (c->cmd_type == CMD_IOCTL_PEND)
5927 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06005928}
5929
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005930
5931static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06005932{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005933#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
5934#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06005935 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005936 return tag & ~HPSA_SIMPLE_ERROR_BITS;
5937 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06005938}
5939
Don Brace303932f2010-02-04 08:42:40 -06005940/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005941static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06005942 u32 raw_tag)
5943{
5944 u32 tag_index;
5945 struct CommandList *c;
5946
Don Bracef2405db2015-01-23 16:43:09 -06005947 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005948 if (!bad_tag(h, tag_index, raw_tag)) {
5949 c = h->cmd_pool + tag_index;
5950 finish_cmd(c);
5951 }
Don Brace303932f2010-02-04 08:42:40 -06005952}
5953
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005954/* Some controllers, like p400, will give us one interrupt
5955 * after a soft reset, even if we turned interrupts off.
5956 * Only need to check for this in the hpsa_xxx_discard_completions
5957 * functions.
5958 */
5959static int ignore_bogus_interrupt(struct ctlr_info *h)
5960{
5961 if (likely(!reset_devices))
5962 return 0;
5963
5964 if (likely(h->interrupts_enabled))
5965 return 0;
5966
5967 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
5968 "(known firmware bug.) Ignoring.\n");
5969
5970 return 1;
5971}
5972
Matt Gates254f7962012-05-01 11:43:06 -05005973/*
5974 * Convert &h->q[x] (passed to interrupt handlers) back to h.
5975 * Relies on (h-q[x] == x) being true for x such that
5976 * 0 <= x < MAX_REPLY_QUEUES.
5977 */
5978static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005979{
Matt Gates254f7962012-05-01 11:43:06 -05005980 return container_of((queue - *queue), struct ctlr_info, q[0]);
5981}
5982
5983static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
5984{
5985 struct ctlr_info *h = queue_to_hba(queue);
5986 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005987 u32 raw_tag;
5988
5989 if (ignore_bogus_interrupt(h))
5990 return IRQ_NONE;
5991
5992 if (interrupt_not_for_us(h))
5993 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005994 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005995 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005996 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005997 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005998 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005999 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006000 return IRQ_HANDLED;
6001}
6002
Matt Gates254f7962012-05-01 11:43:06 -05006003static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006004{
Matt Gates254f7962012-05-01 11:43:06 -05006005 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006006 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006007 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006008
6009 if (ignore_bogus_interrupt(h))
6010 return IRQ_NONE;
6011
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006012 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006013 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006014 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006015 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006016 return IRQ_HANDLED;
6017}
6018
Matt Gates254f7962012-05-01 11:43:06 -05006019static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006020{
Matt Gates254f7962012-05-01 11:43:06 -05006021 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06006022 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006023 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006024
6025 if (interrupt_not_for_us(h))
6026 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006027 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006028 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006029 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006030 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006031 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006032 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006033 }
6034 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006035 return IRQ_HANDLED;
6036}
6037
Matt Gates254f7962012-05-01 11:43:06 -05006038static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006039{
Matt Gates254f7962012-05-01 11:43:06 -05006040 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006041 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006042 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006043
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006044 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006045 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06006046 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006047 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006048 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006049 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006050 return IRQ_HANDLED;
6051}
6052
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006053/* Send a message CDB to the firmware. Careful, this only works
6054 * in simple mode, not performant mode due to the tag lookup.
6055 * We only ever use this immediately after a controller reset.
6056 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006057static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
6058 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006059{
6060 struct Command {
6061 struct CommandListHeader CommandHeader;
6062 struct RequestBlock Request;
6063 struct ErrDescriptor ErrorDescriptor;
6064 };
6065 struct Command *cmd;
6066 static const size_t cmd_sz = sizeof(*cmd) +
6067 sizeof(cmd->ErrorDescriptor);
6068 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06006069 __le32 paddr32;
6070 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006071 void __iomem *vaddr;
6072 int i, err;
6073
6074 vaddr = pci_ioremap_bar(pdev, 0);
6075 if (vaddr == NULL)
6076 return -ENOMEM;
6077
6078 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
6079 * CCISS commands, so they must be allocated from the lower 4GiB of
6080 * memory.
6081 */
6082 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6083 if (err) {
6084 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06006085 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006086 }
6087
6088 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
6089 if (cmd == NULL) {
6090 iounmap(vaddr);
6091 return -ENOMEM;
6092 }
6093
6094 /* This must fit, because of the 32-bit consistent DMA mask. Also,
6095 * although there's no guarantee, we assume that the address is at
6096 * least 4-byte aligned (most likely, it's page-aligned).
6097 */
Don Brace2b08b3e2015-01-23 16:41:09 -06006098 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006099
6100 cmd->CommandHeader.ReplyQueue = 0;
6101 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006102 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06006103 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006104 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
6105
6106 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006107 cmd->Request.type_attr_dir =
6108 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006109 cmd->Request.Timeout = 0; /* Don't time out */
6110 cmd->Request.CDB[0] = opcode;
6111 cmd->Request.CDB[1] = type;
6112 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006113 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06006114 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006115 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006116
Don Brace2b08b3e2015-01-23 16:41:09 -06006117 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006118
6119 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
6120 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06006121 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006122 break;
6123 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
6124 }
6125
6126 iounmap(vaddr);
6127
6128 /* we leak the DMA buffer here ... no choice since the controller could
6129 * still complete the command.
6130 */
6131 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
6132 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
6133 opcode, type);
6134 return -ETIMEDOUT;
6135 }
6136
6137 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
6138
6139 if (tag & HPSA_ERROR_BIT) {
6140 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
6141 opcode, type);
6142 return -EIO;
6143 }
6144
6145 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
6146 opcode, type);
6147 return 0;
6148}
6149
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006150#define hpsa_noop(p) hpsa_message(p, 3, 0)
6151
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006152static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06006153 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006154{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006155
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006156 if (use_doorbell) {
6157 /* For everything after the P600, the PCI power state method
6158 * of resetting the controller doesn't work, so we have this
6159 * other way using the doorbell register.
6160 */
6161 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006162 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05006163
Justin Lindley00701a92014-05-29 10:52:47 -05006164 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05006165 * doorbell reset and before any attempt to talk to the board
6166 * at all to ensure that this actually works and doesn't fall
6167 * over in some weird corner cases.
6168 */
Justin Lindley00701a92014-05-29 10:52:47 -05006169 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006170 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006171
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006172 /* Quoting from the Open CISS Specification: "The Power
6173 * Management Control/Status Register (CSR) controls the power
6174 * state of the device. The normal operating state is D0,
6175 * CSR=00h. The software off state is D3, CSR=03h. To reset
6176 * the controller, place the interface device in D3 then to D0,
6177 * this causes a secondary PCI reset which will reset the
6178 * controller." */
6179
Don Brace2662cab2015-01-23 16:41:25 -06006180 int rc = 0;
6181
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006182 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06006183
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006184 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006185 rc = pci_set_power_state(pdev, PCI_D3hot);
6186 if (rc)
6187 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006188
6189 msleep(500);
6190
6191 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006192 rc = pci_set_power_state(pdev, PCI_D0);
6193 if (rc)
6194 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02006195
6196 /*
6197 * The P600 requires a small delay when changing states.
6198 * Otherwise we may think the board did not reset and we bail.
6199 * This for kdump only and is particular to the P600.
6200 */
6201 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006202 }
6203 return 0;
6204}
6205
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006206static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006207{
6208 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006209 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006210}
6211
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006212static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006213{
6214 char *driver_version;
6215 int i, size = sizeof(cfgtable->driver_version);
6216
6217 driver_version = kmalloc(size, GFP_KERNEL);
6218 if (!driver_version)
6219 return -ENOMEM;
6220
6221 init_driver_version(driver_version, size);
6222 for (i = 0; i < size; i++)
6223 writeb(driver_version[i], &cfgtable->driver_version[i]);
6224 kfree(driver_version);
6225 return 0;
6226}
6227
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006228static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
6229 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006230{
6231 int i;
6232
6233 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6234 driver_ver[i] = readb(&cfgtable->driver_version[i]);
6235}
6236
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006237static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006238{
6239
6240 char *driver_ver, *old_driver_ver;
6241 int rc, size = sizeof(cfgtable->driver_version);
6242
6243 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6244 if (!old_driver_ver)
6245 return -ENOMEM;
6246 driver_ver = old_driver_ver + size;
6247
6248 /* After a reset, the 32 bytes of "driver version" in the cfgtable
6249 * should have been changed, otherwise we know the reset failed.
6250 */
6251 init_driver_version(old_driver_ver, size);
6252 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6253 rc = !memcmp(driver_ver, old_driver_ver, size);
6254 kfree(old_driver_ver);
6255 return rc;
6256}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006257/* This does a hard reset of the controller using PCI power management
6258 * states or the using the doorbell register.
6259 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006260static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006261{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006262 u64 cfg_offset;
6263 u32 cfg_base_addr;
6264 u64 cfg_base_addr_index;
6265 void __iomem *vaddr;
6266 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006267 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006268 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006269 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006270 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006271 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006272
6273 /* For controllers as old as the P600, this is very nearly
6274 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006275 *
6276 * pci_save_state(pci_dev);
6277 * pci_set_power_state(pci_dev, PCI_D3hot);
6278 * pci_set_power_state(pci_dev, PCI_D0);
6279 * pci_restore_state(pci_dev);
6280 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006281 * For controllers newer than the P600, the pci power state
6282 * method of resetting doesn't work so we have another way
6283 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006284 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006285
Robert Elliott60f923b2015-01-23 16:42:06 -06006286 if (!ctlr_is_resettable(board_id)) {
6287 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06006288 return -ENODEV;
6289 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05006290
6291 /* if controller is soft- but not hard resettable... */
6292 if (!ctlr_is_hard_resettable(board_id))
6293 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006294
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006295 /* Save the PCI command register */
6296 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006297 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006298
6299 /* find the first memory BAR, so we can find the cfg table */
6300 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
6301 if (rc)
6302 return rc;
6303 vaddr = remap_pci_mem(paddr, 0x250);
6304 if (!vaddr)
6305 return -ENOMEM;
6306
6307 /* find cfgtable in order to check if reset via doorbell is supported */
6308 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
6309 &cfg_base_addr_index, &cfg_offset);
6310 if (rc)
6311 goto unmap_vaddr;
6312 cfgtable = remap_pci_mem(pci_resource_start(pdev,
6313 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
6314 if (!cfgtable) {
6315 rc = -ENOMEM;
6316 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006317 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006318 rc = write_driver_ver_to_cfgtable(cfgtable);
6319 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06006320 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006321
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006322 /* If reset via doorbell register is supported, use that.
6323 * There are two such methods. Favor the newest method.
6324 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006325 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006326 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6327 if (use_doorbell) {
6328 use_doorbell = DOORBELL_CTLR_RESET2;
6329 } else {
6330 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6331 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006332 dev_warn(&pdev->dev,
6333 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006334 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006335 goto unmap_cfgtable;
6336 }
6337 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006338
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006339 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
6340 if (rc)
6341 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006342
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006343 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006344 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006345
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006346 /* Some devices (notably the HP Smart Array 5i Controller)
6347 need a little pause here */
6348 msleep(HPSA_POST_RESET_PAUSE_MSECS);
6349
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006350 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
6351 if (rc) {
6352 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06006353 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006354 goto unmap_cfgtable;
6355 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006356
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006357 rc = controller_reset_failed(vaddr);
6358 if (rc < 0)
6359 goto unmap_cfgtable;
6360 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006361 dev_warn(&pdev->dev, "Unable to successfully reset "
6362 "controller. Will try soft reset.\n");
6363 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006364 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006365 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006366 }
6367
6368unmap_cfgtable:
6369 iounmap(cfgtable);
6370
6371unmap_vaddr:
6372 iounmap(vaddr);
6373 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006374}
6375
6376/*
6377 * We cannot read the structure directly, for portability we must use
6378 * the io functions.
6379 * This is for debug only.
6380 */
Don Brace42a91642014-11-14 17:26:27 -06006381static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006382{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006383#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006384 int i;
6385 char temp_name[17];
6386
6387 dev_info(dev, "Controller Configuration information\n");
6388 dev_info(dev, "------------------------------------\n");
6389 for (i = 0; i < 4; i++)
6390 temp_name[i] = readb(&(tb->Signature[i]));
6391 temp_name[4] = '\0';
6392 dev_info(dev, " Signature = %s\n", temp_name);
6393 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
6394 dev_info(dev, " Transport methods supported = 0x%x\n",
6395 readl(&(tb->TransportSupport)));
6396 dev_info(dev, " Transport methods active = 0x%x\n",
6397 readl(&(tb->TransportActive)));
6398 dev_info(dev, " Requested transport Method = 0x%x\n",
6399 readl(&(tb->HostWrite.TransportRequest)));
6400 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
6401 readl(&(tb->HostWrite.CoalIntDelay)));
6402 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
6403 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06006404 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006405 readl(&(tb->CmdsOutMax)));
6406 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
6407 for (i = 0; i < 16; i++)
6408 temp_name[i] = readb(&(tb->ServerName[i]));
6409 temp_name[16] = '\0';
6410 dev_info(dev, " Server Name = %s\n", temp_name);
6411 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
6412 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006413#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006414}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006415
6416static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
6417{
6418 int i, offset, mem_type, bar_type;
6419
6420 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
6421 return 0;
6422 offset = 0;
6423 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
6424 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
6425 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
6426 offset += 4;
6427 else {
6428 mem_type = pci_resource_flags(pdev, i) &
6429 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
6430 switch (mem_type) {
6431 case PCI_BASE_ADDRESS_MEM_TYPE_32:
6432 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
6433 offset += 4; /* 32 bit */
6434 break;
6435 case PCI_BASE_ADDRESS_MEM_TYPE_64:
6436 offset += 8;
6437 break;
6438 default: /* reserved in PCI 2.2 */
6439 dev_warn(&pdev->dev,
6440 "base address is invalid\n");
6441 return -1;
6442 break;
6443 }
6444 }
6445 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
6446 return i + 1;
6447 }
6448 return -1;
6449}
6450
Robert Elliottcc64c812015-04-23 09:33:12 -05006451static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
6452{
6453 if (h->msix_vector) {
6454 if (h->pdev->msix_enabled)
6455 pci_disable_msix(h->pdev);
6456 } else if (h->msi_vector) {
6457 if (h->pdev->msi_enabled)
6458 pci_disable_msi(h->pdev);
6459 }
6460}
6461
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006462/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06006463 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006464 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006465static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006466{
6467#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05006468 int err, i;
6469 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
6470
6471 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
6472 hpsa_msix_entries[i].vector = 0;
6473 hpsa_msix_entries[i].entry = i;
6474 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006475
6476 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006477 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
6478 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006479 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006480 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006481 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006482 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05006483 if (h->msix_vector > num_online_cpus())
6484 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006485 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
6486 1, h->msix_vector);
6487 if (err < 0) {
6488 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
6489 h->msix_vector = 0;
6490 goto single_msi_mode;
6491 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006492 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006493 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006494 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006495 h->msix_vector = err;
6496 for (i = 0; i < h->msix_vector; i++)
6497 h->intr[i] = hpsa_msix_entries[i].vector;
6498 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006499 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006500single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006501 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006502 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006503 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006504 h->msi_vector = 1;
6505 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006506 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006507 }
6508default_int_mode:
6509#endif /* CONFIG_PCI_MSI */
6510 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006511 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006512}
6513
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006514static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006515{
6516 int i;
6517 u32 subsystem_vendor_id, subsystem_device_id;
6518
6519 subsystem_vendor_id = pdev->subsystem_vendor;
6520 subsystem_device_id = pdev->subsystem_device;
6521 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
6522 subsystem_vendor_id;
6523
6524 for (i = 0; i < ARRAY_SIZE(products); i++)
6525 if (*board_id == products[i].board_id)
6526 return i;
6527
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05006528 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
6529 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
6530 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006531 dev_warn(&pdev->dev, "unrecognized board ID: "
6532 "0x%08x, ignoring.\n", *board_id);
6533 return -ENODEV;
6534 }
6535 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
6536}
6537
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006538static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
6539 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006540{
6541 int i;
6542
6543 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006544 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006545 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006546 *memory_bar = pci_resource_start(pdev, i);
6547 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006548 *memory_bar);
6549 return 0;
6550 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006551 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006552 return -ENODEV;
6553}
6554
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006555static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
6556 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006557{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006558 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006559 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006560 if (wait_for_ready)
6561 iterations = HPSA_BOARD_READY_ITERATIONS;
6562 else
6563 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006564
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006565 for (i = 0; i < iterations; i++) {
6566 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
6567 if (wait_for_ready) {
6568 if (scratchpad == HPSA_FIRMWARE_READY)
6569 return 0;
6570 } else {
6571 if (scratchpad != HPSA_FIRMWARE_READY)
6572 return 0;
6573 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006574 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
6575 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006576 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006577 return -ENODEV;
6578}
6579
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006580static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
6581 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
6582 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006583{
6584 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
6585 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
6586 *cfg_base_addr &= (u32) 0x0000ffff;
6587 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
6588 if (*cfg_base_addr_index == -1) {
6589 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
6590 return -ENODEV;
6591 }
6592 return 0;
6593}
6594
Robert Elliott195f2c62015-04-23 09:33:17 -05006595static void hpsa_free_cfgtables(struct ctlr_info *h)
6596{
6597 if (h->transtable)
6598 iounmap(h->transtable);
6599 if (h->cfgtable)
6600 iounmap(h->cfgtable);
6601}
6602
6603/* Find and map CISS config table and transfer table
6604+ * several items must be unmapped (freed) later
6605+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006606static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006607{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006608 u64 cfg_offset;
6609 u32 cfg_base_addr;
6610 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06006611 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006612 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006613
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006614 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
6615 &cfg_base_addr_index, &cfg_offset);
6616 if (rc)
6617 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006618 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006619 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006620 if (!h->cfgtable) {
6621 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006622 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006623 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006624 rc = write_driver_ver_to_cfgtable(h->cfgtable);
6625 if (rc)
6626 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006627 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006628 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006629 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
6630 cfg_base_addr_index)+cfg_offset+trans_offset,
6631 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05006632 if (!h->transtable) {
6633 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
6634 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006635 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05006636 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006637 return 0;
6638}
6639
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006640static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006641{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006642#define MIN_MAX_COMMANDS 16
6643 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
6644
6645 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06006646
6647 /* Limit commands in memory limited kdump scenario. */
6648 if (reset_devices && h->max_commands > 32)
6649 h->max_commands = 32;
6650
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006651 if (h->max_commands < MIN_MAX_COMMANDS) {
6652 dev_warn(&h->pdev->dev,
6653 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
6654 h->max_commands,
6655 MIN_MAX_COMMANDS);
6656 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006657 }
6658}
6659
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006660/* If the controller reports that the total max sg entries is greater than 512,
6661 * then we know that chained SG blocks work. (Original smart arrays did not
6662 * support chained SG blocks and would return zero for max sg entries.)
6663 */
6664static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
6665{
6666 return h->maxsgentries > 512;
6667}
6668
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006669/* Interrogate the hardware for some limits:
6670 * max commands, max SG elements without chaining, and with chaining,
6671 * SG chain block size, etc.
6672 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006673static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006674{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006675 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06006676 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006677 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006678 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006679 if (hpsa_supports_chained_sg_blocks(h)) {
6680 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006681 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06006682 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006683 h->maxsgentries--; /* save one for chain pointer */
6684 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006685 /*
6686 * Original smart arrays supported at most 31 s/g entries
6687 * embedded inline in the command (trying to use more
6688 * would lock up the controller)
6689 */
6690 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06006691 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006692 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006693 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006694
6695 /* Find out what task management functions are supported and cache */
6696 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06006697 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
6698 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
6699 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6700 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006701}
6702
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006703static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
6704{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09006705 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006706 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006707 return false;
6708 }
6709 return true;
6710}
6711
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006712static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006713{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006714 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006715
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006716 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02006717 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
6718#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006719 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006720#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06006721 driver_support |= ENABLE_UNIT_ATTN;
6722 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006723}
6724
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006725/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
6726 * in a prefetch beyond physical memory.
6727 */
6728static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
6729{
6730 u32 dma_prefetch;
6731
6732 if (h->board_id != 0x3225103C)
6733 return;
6734 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
6735 dma_prefetch |= 0x8000;
6736 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
6737}
6738
Robert Elliottc706a792015-01-23 16:45:01 -06006739static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006740{
6741 int i;
6742 u32 doorbell_value;
6743 unsigned long flags;
6744 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006745 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006746 spin_lock_irqsave(&h->lock, flags);
6747 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6748 spin_unlock_irqrestore(&h->lock, flags);
6749 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06006750 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006751 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006752 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006753 }
Robert Elliottc706a792015-01-23 16:45:01 -06006754 return -ENODEV;
6755done:
6756 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006757}
6758
Robert Elliottc706a792015-01-23 16:45:01 -06006759static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006760{
6761 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006762 u32 doorbell_value;
6763 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006764
6765 /* under certain very rare conditions, this can take awhile.
6766 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
6767 * as we enter this code.)
6768 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006769 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05006770 if (h->remove_in_progress)
6771 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006772 spin_lock_irqsave(&h->lock, flags);
6773 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6774 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06006775 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06006776 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006777 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006778 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006779 }
Robert Elliottc706a792015-01-23 16:45:01 -06006780 return -ENODEV;
6781done:
6782 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006783}
6784
Robert Elliottc706a792015-01-23 16:45:01 -06006785/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006786static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006787{
6788 u32 trans_support;
6789
6790 trans_support = readl(&(h->cfgtable->TransportSupport));
6791 if (!(trans_support & SIMPLE_MODE))
6792 return -ENOTSUPP;
6793
6794 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006795
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006796 /* Update the field, and then ring the doorbell */
6797 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06006798 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006799 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06006800 if (hpsa_wait_for_mode_change_ack(h))
6801 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006802 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006803 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
6804 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006805 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006806 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006807error:
Stephen Cameron050f7142015-01-23 16:42:22 -06006808 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006809 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006810}
6811
Robert Elliott195f2c62015-04-23 09:33:17 -05006812/* free items allocated or mapped by hpsa_pci_init */
6813static void hpsa_free_pci_init(struct ctlr_info *h)
6814{
6815 hpsa_free_cfgtables(h); /* pci_init 4 */
6816 iounmap(h->vaddr); /* pci_init 3 */
6817 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
6818 pci_release_regions(h->pdev); /* pci_init 2 */
6819 pci_disable_device(h->pdev); /* pci_init 1 */
6820}
6821
6822/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006823static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006824{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006825 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006826
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006827 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
6828 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06006829 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006830 h->product_name = products[prod_index].product_name;
6831 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006832
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006833 h->needs_abort_tags_swizzled =
6834 ctlr_needs_abort_tags_swizzled(h->board_id);
6835
Matthew Garrette5a44df2011-11-11 11:14:23 -05006836 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
6837 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
6838
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006839 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006840 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05006841 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006842 return err;
6843 }
6844
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006845 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006846 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006847 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05006848 "failed to obtain PCI resources\n");
6849 goto clean1; /* pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006850 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006851
6852 pci_set_master(h->pdev);
6853
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006854 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006855 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006856 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05006857 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006858 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006859 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05006860 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006861 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05006862 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006863 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006864 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006865 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05006866 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006867 err = hpsa_find_cfgtables(h);
6868 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05006869 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006870 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006871
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006872 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006873 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05006874 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006875 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006876 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006877 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006878 err = hpsa_enter_simple_mode(h);
6879 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05006880 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006881 return 0;
6882
Robert Elliott195f2c62015-04-23 09:33:17 -05006883clean4: /* cfgtables, vaddr, intmode+region, pci */
6884 hpsa_free_cfgtables(h);
6885clean3: /* vaddr, intmode+region, pci */
6886 iounmap(h->vaddr);
6887clean2: /* intmode+region, pci */
6888 hpsa_disable_interrupt_mode(h);
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006889 pci_release_regions(h->pdev);
Robert Elliott195f2c62015-04-23 09:33:17 -05006890clean1: /* pci */
6891 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006892 return err;
6893}
6894
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006895static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006896{
6897 int rc;
6898
6899#define HBA_INQUIRY_BYTE_COUNT 64
6900 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
6901 if (!h->hba_inquiry_data)
6902 return;
6903 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
6904 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
6905 if (rc != 0) {
6906 kfree(h->hba_inquiry_data);
6907 h->hba_inquiry_data = NULL;
6908 }
6909}
6910
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006911static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006912{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006913 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06006914 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006915
6916 if (!reset_devices)
6917 return 0;
6918
Tomas Henzl132aa222014-08-14 16:12:39 +02006919 /* kdump kernel is loading, we don't know in which state is
6920 * the pci interface. The dev->enable_cnt is equal zero
6921 * so we call enable+disable, wait a while and switch it on.
6922 */
6923 rc = pci_enable_device(pdev);
6924 if (rc) {
6925 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
6926 return -ENODEV;
6927 }
6928 pci_disable_device(pdev);
6929 msleep(260); /* a randomly chosen number */
6930 rc = pci_enable_device(pdev);
6931 if (rc) {
6932 dev_warn(&pdev->dev, "failed to enable device.\n");
6933 return -ENODEV;
6934 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006935
Tomas Henzl859c75a2014-09-12 14:44:15 +02006936 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06006937
Tomas Henzl3b747292015-01-23 16:41:20 -06006938 vaddr = pci_ioremap_bar(pdev, 0);
6939 if (vaddr == NULL) {
6940 rc = -ENOMEM;
6941 goto out_disable;
6942 }
6943 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
6944 iounmap(vaddr);
6945
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006946 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006947 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006948
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006949 /* -ENOTSUPP here means we cannot reset the controller
6950 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05006951 * "performant mode". Or, it might be 640x, which can't reset
6952 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006953 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06006954 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02006955 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006956
6957 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06006958 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006959 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
6960 if (hpsa_noop(pdev) == 0)
6961 break;
6962 else
6963 dev_warn(&pdev->dev, "no-op failed%s\n",
6964 (i < 11 ? "; re-trying" : ""));
6965 }
Tomas Henzl132aa222014-08-14 16:12:39 +02006966
6967out_disable:
6968
6969 pci_disable_device(pdev);
6970 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006971}
6972
Robert Elliott1fb7c982015-04-23 09:33:22 -05006973static void hpsa_free_cmd_pool(struct ctlr_info *h)
6974{
6975 kfree(h->cmd_pool_bits);
6976 if (h->cmd_pool)
6977 pci_free_consistent(h->pdev,
6978 h->nr_cmds * sizeof(struct CommandList),
6979 h->cmd_pool,
6980 h->cmd_pool_dhandle);
6981 if (h->errinfo_pool)
6982 pci_free_consistent(h->pdev,
6983 h->nr_cmds * sizeof(struct ErrorInfo),
6984 h->errinfo_pool,
6985 h->errinfo_pool_dhandle);
6986}
6987
Robert Elliottd37ffbe2015-04-23 09:32:27 -05006988static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006989{
6990 h->cmd_pool_bits = kzalloc(
6991 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
6992 sizeof(unsigned long), GFP_KERNEL);
6993 h->cmd_pool = pci_alloc_consistent(h->pdev,
6994 h->nr_cmds * sizeof(*h->cmd_pool),
6995 &(h->cmd_pool_dhandle));
6996 h->errinfo_pool = pci_alloc_consistent(h->pdev,
6997 h->nr_cmds * sizeof(*h->errinfo_pool),
6998 &(h->errinfo_pool_dhandle));
6999 if ((h->cmd_pool_bits == NULL)
7000 || (h->cmd_pool == NULL)
7001 || (h->errinfo_pool == NULL)) {
7002 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06007003 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007004 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05007005 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007006 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06007007clean_up:
7008 hpsa_free_cmd_pool(h);
7009 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007010}
7011
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007012static void hpsa_irq_affinity_hints(struct ctlr_info *h)
7013{
Fabian Frederickec429952015-01-23 16:41:46 -06007014 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007015
7016 cpu = cpumask_first(cpu_online_mask);
7017 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06007018 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007019 cpu = cpumask_next(cpu, cpu_online_mask);
7020 }
7021}
7022
Robert Elliottec501a12015-01-23 16:41:40 -06007023/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
7024static void hpsa_free_irqs(struct ctlr_info *h)
7025{
7026 int i;
7027
7028 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
7029 /* Single reply queue, only one irq to free */
7030 i = h->intr_mode;
7031 irq_set_affinity_hint(h->intr[i], NULL);
7032 free_irq(h->intr[i], &h->q[i]);
7033 return;
7034 }
7035
7036 for (i = 0; i < h->msix_vector; i++) {
7037 irq_set_affinity_hint(h->intr[i], NULL);
7038 free_irq(h->intr[i], &h->q[i]);
7039 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007040 for (; i < MAX_REPLY_QUEUES; i++)
7041 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007042}
7043
Robert Elliott9ee61792015-01-23 16:42:32 -06007044/* returns 0 on success; cleans up and returns -Enn on error */
7045static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007046 irqreturn_t (*msixhandler)(int, void *),
7047 irqreturn_t (*intxhandler)(int, void *))
7048{
Matt Gates254f7962012-05-01 11:43:06 -05007049 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007050
Matt Gates254f7962012-05-01 11:43:06 -05007051 /*
7052 * initialize h->q[x] = x so that interrupt handlers know which
7053 * queue to process.
7054 */
7055 for (i = 0; i < MAX_REPLY_QUEUES; i++)
7056 h->q[i] = (u8) i;
7057
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007058 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05007059 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007060 for (i = 0; i < h->msix_vector; i++) {
Matt Gates254f7962012-05-01 11:43:06 -05007061 rc = request_irq(h->intr[i], msixhandler,
7062 0, h->devname,
7063 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007064 if (rc) {
7065 int j;
7066
7067 dev_err(&h->pdev->dev,
7068 "failed to get irq %d for %s\n",
7069 h->intr[i], h->devname);
7070 for (j = 0; j < i; j++) {
7071 free_irq(h->intr[j], &h->q[j]);
7072 h->q[j] = 0;
7073 }
7074 for (; j < MAX_REPLY_QUEUES; j++)
7075 h->q[j] = 0;
7076 return rc;
7077 }
7078 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007079 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05007080 } else {
7081 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007082 if (h->msix_vector > 0 || h->msi_vector) {
Matt Gates254f7962012-05-01 11:43:06 -05007083 rc = request_irq(h->intr[h->intr_mode],
7084 msixhandler, 0, h->devname,
7085 &h->q[h->intr_mode]);
7086 } else {
7087 rc = request_irq(h->intr[h->intr_mode],
7088 intxhandler, IRQF_SHARED, h->devname,
7089 &h->q[h->intr_mode]);
7090 }
7091 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007092 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007093 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007094 h->intr[h->intr_mode], h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05007095 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007096 return -ENODEV;
7097 }
7098 return 0;
7099}
7100
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007101static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007102{
7103 if (hpsa_send_host_reset(h, RAID_CTLR_LUNID,
7104 HPSA_RESET_TYPE_CONTROLLER)) {
7105 dev_warn(&h->pdev->dev, "Resetting array controller failed.\n");
7106 return -EIO;
7107 }
7108
7109 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
7110 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) {
7111 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
7112 return -1;
7113 }
7114
7115 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
7116 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) {
7117 dev_warn(&h->pdev->dev, "Board failed to become ready "
7118 "after soft reset.\n");
7119 return -1;
7120 }
7121
7122 return 0;
7123}
7124
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007125static void hpsa_free_reply_queues(struct ctlr_info *h)
7126{
7127 int i;
7128
7129 for (i = 0; i < h->nreply_queues; i++) {
7130 if (!h->reply_queue[i].head)
7131 continue;
Robert Elliott1fb7c982015-04-23 09:33:22 -05007132 pci_free_consistent(h->pdev,
7133 h->reply_queue_size,
7134 h->reply_queue[i].head,
7135 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007136 h->reply_queue[i].head = NULL;
7137 h->reply_queue[i].busaddr = 0;
7138 }
7139}
7140
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007141static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
7142{
Robert Elliottcc64c812015-04-23 09:33:12 -05007143 hpsa_free_irqs(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007144 hpsa_free_sg_chain_blocks(h);
7145 hpsa_free_cmd_pool(h);
Robert Elliott1fb7c982015-04-23 09:33:22 -05007146 kfree(h->blockFetchTable); /* perf 2 */
7147 hpsa_free_reply_queues(h); /* perf 1 */
7148 hpsa_free_ioaccel1_cmd_and_bft(h); /* perf 1 */
7149 hpsa_free_ioaccel2_cmd_and_bft(h); /* perf 1 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007150 hpsa_free_cfgtables(h); /* pci_init 4 */
7151 iounmap(h->vaddr); /* pci_init 3 */
7152 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Tomas Henzl132aa222014-08-14 16:12:39 +02007153 pci_disable_device(h->pdev);
Robert Elliott195f2c62015-04-23 09:33:17 -05007154 pci_release_regions(h->pdev); /* pci_init 2 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007155 kfree(h);
7156}
7157
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007158/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06007159static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007160{
Webb Scales281a7fd2015-01-23 16:43:35 -06007161 int i, refcount;
7162 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007163 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007164
Don Brace080ef1c2015-01-23 16:43:25 -06007165 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06007166 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007167 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007168 refcount = atomic_inc_return(&c->refcount);
7169 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05007170 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06007171 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05007172 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05007173 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06007174 }
7175 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007176 }
Webb Scales25163bd2015-04-23 09:32:00 -05007177 dev_warn(&h->pdev->dev,
7178 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007179}
7180
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007181static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
7182{
Rusty Russellc8ed0012015-03-05 10:49:19 +10307183 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007184
Rusty Russellc8ed0012015-03-05 10:49:19 +10307185 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007186 u32 *lockup_detected;
7187 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7188 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007189 }
7190 wmb(); /* be sure the per-cpu variables are out to memory */
7191}
7192
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007193static void controller_lockup_detected(struct ctlr_info *h)
7194{
7195 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007196 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007197
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007198 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7199 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007200 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7201 if (!lockup_detected) {
7202 /* no heartbeat, but controller gave us a zero. */
7203 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05007204 "lockup detected after %d but scratchpad register is zero\n",
7205 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007206 lockup_detected = 0xffffffff;
7207 }
7208 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007209 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05007210 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
7211 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007212 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06007213 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007214}
7215
Webb Scales25163bd2015-04-23 09:32:00 -05007216static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007217{
7218 u64 now;
7219 u32 heartbeat;
7220 unsigned long flags;
7221
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007222 now = get_jiffies_64();
7223 /* If we've received an interrupt recently, we're ok. */
7224 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007225 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007226 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007227
7228 /*
7229 * If we've already checked the heartbeat recently, we're ok.
7230 * This could happen if someone sends us a signal. We
7231 * otherwise don't care about signals in this thread.
7232 */
7233 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007234 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007235 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007236
7237 /* If heartbeat has not changed since we last looked, we're not ok. */
7238 spin_lock_irqsave(&h->lock, flags);
7239 heartbeat = readl(&h->cfgtable->HeartBeat);
7240 spin_unlock_irqrestore(&h->lock, flags);
7241 if (h->last_heartbeat == heartbeat) {
7242 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05007243 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007244 }
7245
7246 /* We're ok. */
7247 h->last_heartbeat = heartbeat;
7248 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05007249 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007250}
7251
Stephen M. Cameron98465902014-02-21 16:25:00 -06007252static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007253{
7254 int i;
7255 char *event_type;
7256
Stephen Camerone4aa3e62015-01-23 16:44:07 -06007257 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7258 return;
7259
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007260 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06007261 if ((h->transMethod & (CFGTBL_Trans_io_accel1
7262 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007263 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
7264 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
7265
7266 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
7267 event_type = "state change";
7268 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
7269 event_type = "configuration change";
7270 /* Stop sending new RAID offload reqs via the IO accelerator */
7271 scsi_block_requests(h->scsi_host);
7272 for (i = 0; i < h->ndevices; i++)
7273 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007274 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007275 /* Set 'accelerator path config change' bit */
7276 dev_warn(&h->pdev->dev,
7277 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
7278 h->events, event_type);
7279 writel(h->events, &(h->cfgtable->clear_event_notify));
7280 /* Set the "clear event notify field update" bit 6 */
7281 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7282 /* Wait until ctlr clears 'clear event notify field', bit 6 */
7283 hpsa_wait_for_clear_event_notify_ack(h);
7284 scsi_unblock_requests(h->scsi_host);
7285 } else {
7286 /* Acknowledge controller notification events. */
7287 writel(h->events, &(h->cfgtable->clear_event_notify));
7288 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7289 hpsa_wait_for_clear_event_notify_ack(h);
7290#if 0
7291 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7292 hpsa_wait_for_mode_change_ack(h);
7293#endif
7294 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007295 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007296}
7297
7298/* Check a register on the controller to see if there are configuration
7299 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06007300 * we should rescan the controller for devices.
7301 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007302 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06007303static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007304{
7305 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06007306 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007307
7308 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06007309 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007310}
7311
Stephen M. Cameron98465902014-02-21 16:25:00 -06007312/*
7313 * Check if any of the offline devices have become ready
7314 */
7315static int hpsa_offline_devices_ready(struct ctlr_info *h)
7316{
7317 unsigned long flags;
7318 struct offline_device_entry *d;
7319 struct list_head *this, *tmp;
7320
7321 spin_lock_irqsave(&h->offline_device_lock, flags);
7322 list_for_each_safe(this, tmp, &h->offline_device_list) {
7323 d = list_entry(this, struct offline_device_entry,
7324 offline_list);
7325 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007326 if (!hpsa_volume_offline(h, d->scsi3addr)) {
7327 spin_lock_irqsave(&h->offline_device_lock, flags);
7328 list_del(&d->offline_list);
7329 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007330 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007331 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007332 spin_lock_irqsave(&h->offline_device_lock, flags);
7333 }
7334 spin_unlock_irqrestore(&h->offline_device_lock, flags);
7335 return 0;
7336}
7337
Don Brace6636e7f2015-01-23 16:45:17 -06007338static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007339{
7340 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007341 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06007342 struct ctlr_info, rescan_ctlr_work);
7343
7344
7345 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007346 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007347
7348 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
7349 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007350 hpsa_ack_ctlr_events(h);
7351 hpsa_scan_start(h->scsi_host);
7352 scsi_host_put(h->scsi_host);
7353 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007354 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007355 if (!h->remove_in_progress)
7356 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007357 h->heartbeat_sample_interval);
7358 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007359}
7360
Don Brace6636e7f2015-01-23 16:45:17 -06007361static void hpsa_monitor_ctlr_worker(struct work_struct *work)
7362{
7363 unsigned long flags;
7364 struct ctlr_info *h = container_of(to_delayed_work(work),
7365 struct ctlr_info, monitor_ctlr_work);
7366
7367 detect_controller_lockup(h);
7368 if (lockup_detected(h))
7369 return;
7370
7371 spin_lock_irqsave(&h->lock, flags);
7372 if (!h->remove_in_progress)
7373 schedule_delayed_work(&h->monitor_ctlr_work,
7374 h->heartbeat_sample_interval);
7375 spin_unlock_irqrestore(&h->lock, flags);
7376}
7377
7378static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
7379 char *name)
7380{
7381 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06007382
Don Brace397ea9c2015-02-06 17:44:15 -06007383 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06007384 if (!wq)
7385 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
7386
7387 return wq;
7388}
7389
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007390static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007391{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007392 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007393 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007394 int try_soft_reset = 0;
7395 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007396 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007397
7398 if (number_of_controllers == 0)
7399 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007400
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007401 rc = hpsa_lookup_board_id(pdev, &board_id);
7402 if (rc < 0) {
7403 dev_warn(&pdev->dev, "Board ID not found\n");
7404 return rc;
7405 }
7406
7407 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007408 if (rc) {
7409 if (rc != -ENOTSUPP)
7410 return rc;
7411 /* If the reset fails in a particular way (it has no way to do
7412 * a proper hard reset, so returns -ENOTSUPP) we can try to do
7413 * a soft reset once we get the controller configured up to the
7414 * point that it can accept a command.
7415 */
7416 try_soft_reset = 1;
7417 rc = 0;
7418 }
7419
7420reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007421
Don Brace303932f2010-02-04 08:42:40 -06007422 /* Command structures must be aligned on a 32-byte boundary because
7423 * the 5 lower bits of the address are used by the hardware. and by
7424 * the driver. See comments in hpsa.h for more info.
7425 */
Don Brace303932f2010-02-04 08:42:40 -06007426 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007427 h = kzalloc(sizeof(*h), GFP_KERNEL);
7428 if (!h)
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007429 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007430
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007431 h->pdev = pdev;
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007432 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007433 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007434 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007435 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007436 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06007437 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007438 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007439
Don Brace6636e7f2015-01-23 16:45:17 -06007440 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
7441 if (!h->rescan_ctlr_wq) {
Don Brace080ef1c2015-01-23 16:43:25 -06007442 rc = -ENOMEM;
7443 goto clean1;
7444 }
Don Brace6636e7f2015-01-23 16:45:17 -06007445
7446 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
7447 if (!h->resubmit_wq) {
7448 rc = -ENOMEM;
7449 goto clean1;
7450 }
7451
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007452 /* Allocate and clear per-cpu variable lockup_detected */
7453 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007454 if (!h->lockup_detected) {
7455 rc = -ENOMEM;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007456 goto clean1;
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007457 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007458 set_lockup_detected_for_all_cpus(h, 0);
7459
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007460 rc = hpsa_pci_init(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007461 if (rc != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007462 goto clean1;
7463
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007464 sprintf(h->devname, HPSA "%d", number_of_controllers);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007465 h->ctlr = number_of_controllers;
7466 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007467
7468 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007469 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
7470 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007471 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007472 } else {
7473 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
7474 if (rc == 0) {
7475 dac = 0;
7476 } else {
7477 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott195f2c62015-04-23 09:33:17 -05007478 goto clean2;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007479 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007480 }
7481
7482 /* make sure the board interrupts are off */
7483 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007484
Robert Elliott9ee61792015-01-23 16:42:32 -06007485 if (hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007486 goto clean2;
Don Brace303932f2010-02-04 08:42:40 -06007487 dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n",
7488 h->devname, pdev->device,
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007489 h->intr[h->intr_mode], dac ? "" : " not");
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007490 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06007491 if (rc)
7492 goto clean2_and_free_irqs;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007493 if (hpsa_allocate_sg_chain_blocks(h))
7494 goto clean4;
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007495 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007496 init_waitqueue_head(&h->abort_cmd_wait_queue);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007497 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007498
7499 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007500 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007501 h->hba_mode_enabled = 0;
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007502 h->scsi_host = NULL;
7503 spin_lock_init(&h->devlock);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007504 hpsa_put_ctlr_into_performant_mode(h);
7505
7506 /* At this point, the controller is ready to take commands.
7507 * Now, if reset_devices and the hard reset didn't work, try
7508 * the soft reset and see if that works.
7509 */
7510 if (try_soft_reset) {
7511
7512 /* This is kind of gross. We may or may not get a completion
7513 * from the soft reset command, and if we do, then the value
7514 * from the fifo may or may not be valid. So, we wait 10 secs
7515 * after the reset throwing away any completions we get during
7516 * that time. Unregister the interrupt handler and register
7517 * fake ones to scoop up any residual completions.
7518 */
7519 spin_lock_irqsave(&h->lock, flags);
7520 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7521 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06007522 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06007523 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007524 hpsa_intx_discard_completions);
7525 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06007526 dev_warn(&h->pdev->dev,
7527 "Failed to request_irq after soft reset.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007528 goto clean4;
7529 }
7530
7531 rc = hpsa_kdump_soft_reset(h);
7532 if (rc)
7533 /* Neither hard nor soft reset worked, we're hosed. */
7534 goto clean4;
7535
7536 dev_info(&h->pdev->dev, "Board READY.\n");
7537 dev_info(&h->pdev->dev,
7538 "Waiting for stale completions to drain.\n");
7539 h->access.set_intr_mask(h, HPSA_INTR_ON);
7540 msleep(10000);
7541 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7542
7543 rc = controller_reset_failed(h->cfgtable);
7544 if (rc)
7545 dev_info(&h->pdev->dev,
7546 "Soft reset appears to have failed.\n");
7547
7548 /* since the controller's reset, we have to go back and re-init
7549 * everything. Easiest to just forget what we've done and do it
7550 * all over again.
7551 */
7552 hpsa_undo_allocations_after_kdump_soft_reset(h);
7553 try_soft_reset = 0;
7554 if (rc)
7555 /* don't go to clean4, we already unallocated */
7556 return -ENODEV;
7557
7558 goto reinit_after_soft_reset;
7559 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007560
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007561 /* Enable Accelerated IO path at driver layer */
7562 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06007563
Scott Teele863d682014-02-18 13:57:05 -06007564
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007565 /* Turn the interrupts on so we can service requests */
7566 h->access.set_intr_mask(h, HPSA_INTR_ON);
7567
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007568 hpsa_hba_inquiry(h);
Stephen Cameron4a4384c2015-04-23 09:32:37 -05007569 rc = hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
7570 if (rc)
7571 goto clean4;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007572
7573 /* Monitor the controller for firmware lockups */
7574 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
7575 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
7576 schedule_delayed_work(&h->monitor_ctlr_work,
7577 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06007578 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
7579 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
7580 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05007581 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007582
7583clean4:
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007584 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007585 hpsa_free_cmd_pool(h);
Robert Elliott1fb7c982015-04-23 09:33:22 -05007586 hpsa_free_ioaccel1_cmd_and_bft(h);
7587 hpsa_free_ioaccel2_cmd_and_bft(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06007588clean2_and_free_irqs:
Robert Elliottec501a12015-01-23 16:41:40 -06007589 hpsa_free_irqs(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007590clean2:
Robert Elliott195f2c62015-04-23 09:33:17 -05007591 hpsa_free_pci_init(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007592clean1:
Don Brace080ef1c2015-01-23 16:43:25 -06007593 if (h->resubmit_wq)
7594 destroy_workqueue(h->resubmit_wq);
Don Brace6636e7f2015-01-23 16:45:17 -06007595 if (h->rescan_ctlr_wq)
7596 destroy_workqueue(h->rescan_ctlr_wq);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007597 if (h->lockup_detected)
7598 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007599 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007600 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007601}
7602
7603static void hpsa_flush_cache(struct ctlr_info *h)
7604{
7605 char *flush_buf;
7606 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007607 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007608
7609 /* Don't bother trying to flush the cache if locked up */
Webb Scales25163bd2015-04-23 09:32:00 -05007610 /* FIXME not necessary if do_simple_cmd does the check */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007611 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007612 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007613 flush_buf = kzalloc(4, GFP_KERNEL);
7614 if (!flush_buf)
7615 return;
7616
Stephen Cameron45fcb862015-01-23 16:43:04 -06007617 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007618 if (!c) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06007619 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007620 goto out_of_memory;
7621 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007622 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
7623 RAID_CTLR_LUNID, TYPE_CMD)) {
7624 goto out;
7625 }
Webb Scales25163bd2015-04-23 09:32:00 -05007626 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
7627 PCI_DMA_TODEVICE, NO_TIMEOUT);
7628 if (rc)
7629 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007630 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007631out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007632 dev_warn(&h->pdev->dev,
7633 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06007634 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007635out_of_memory:
7636 kfree(flush_buf);
7637}
7638
7639static void hpsa_shutdown(struct pci_dev *pdev)
7640{
7641 struct ctlr_info *h;
7642
7643 h = pci_get_drvdata(pdev);
7644 /* Turn board interrupts off and send the flush cache command
7645 * sendcmd will turn off interrupt, and send the flush...
7646 * To write all data in the battery backed cache to disks
7647 */
7648 hpsa_flush_cache(h);
7649 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliottcc64c812015-04-23 09:33:12 -05007650 hpsa_free_irqs(h);
7651 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007652}
7653
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007654static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007655{
7656 int i;
7657
7658 for (i = 0; i < h->ndevices; i++)
7659 kfree(h->dev[i]);
7660}
7661
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007662static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007663{
7664 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007665 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007666
7667 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007668 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007669 return;
7670 }
7671 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007672
7673 /* Get rid of any controller monitoring work items */
7674 spin_lock_irqsave(&h->lock, flags);
7675 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007676 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007677 cancel_delayed_work_sync(&h->monitor_ctlr_work);
7678 cancel_delayed_work_sync(&h->rescan_ctlr_work);
7679 destroy_workqueue(h->rescan_ctlr_wq);
7680 destroy_workqueue(h->resubmit_wq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007681 hpsa_unregister_scsi(h); /* unhook from SCSI subsystem */
Robert Elliottcc64c812015-04-23 09:33:12 -05007682
Robert Elliott195f2c62015-04-23 09:33:17 -05007683 /* includes hpsa_free_irqs */
7684 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007685 hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05007686
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007687 hpsa_free_device_info(h);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007688 hpsa_free_sg_chain_blocks(h);
Robert Elliott1fb7c982015-04-23 09:33:22 -05007689 kfree(h->blockFetchTable); /* perf 2 */
7690 hpsa_free_reply_queues(h); /* perf 1 */
7691 hpsa_free_ioaccel1_cmd_and_bft(h); /* perf 1 */
7692 hpsa_free_ioaccel2_cmd_and_bft(h); /* perf 1 */
7693 hpsa_free_cmd_pool(h); /* init_one 5 */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007694 kfree(h->hba_inquiry_data);
Robert Elliott195f2c62015-04-23 09:33:17 -05007695
7696 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
7697 hpsa_free_pci_init(h);
7698
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007699 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007700 kfree(h);
7701}
7702
7703static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
7704 __attribute__((unused)) pm_message_t state)
7705{
7706 return -ENOSYS;
7707}
7708
7709static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
7710{
7711 return -ENOSYS;
7712}
7713
7714static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007715 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007716 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007717 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007718 .id_table = hpsa_pci_device_id, /* id_table */
7719 .shutdown = hpsa_shutdown,
7720 .suspend = hpsa_suspend,
7721 .resume = hpsa_resume,
7722};
7723
Don Brace303932f2010-02-04 08:42:40 -06007724/* Fill in bucket_map[], given nsgs (the max number of
7725 * scatter gather elements supported) and bucket[],
7726 * which is an array of 8 integers. The bucket[] array
7727 * contains 8 different DMA transfer sizes (in 16
7728 * byte increments) which the controller uses to fetch
7729 * commands. This function fills in bucket_map[], which
7730 * maps a given number of scatter gather elements to one of
7731 * the 8 DMA transfer sizes. The point of it is to allow the
7732 * controller to only do as much DMA as needed to fetch the
7733 * command, with the DMA transfer size encoded in the lower
7734 * bits of the command address.
7735 */
7736static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06007737 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06007738{
7739 int i, j, b, size;
7740
Don Brace303932f2010-02-04 08:42:40 -06007741 /* Note, bucket_map must have nsgs+1 entries. */
7742 for (i = 0; i <= nsgs; i++) {
7743 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06007744 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06007745 b = num_buckets; /* Assume the biggest bucket */
7746 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06007747 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06007748 if (bucket[j] >= size) {
7749 b = j;
7750 break;
7751 }
7752 }
7753 /* for a command with i SG entries, use bucket b. */
7754 bucket_map[i] = b;
7755 }
7756}
7757
Robert Elliottc706a792015-01-23 16:45:01 -06007758/* return -ENODEV or other reason on error, 0 on success */
7759static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06007760{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007761 int i;
7762 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06007763 unsigned long transMethod = CFGTBL_Trans_Performant |
7764 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007765 CFGTBL_Trans_enable_directed_msix |
7766 (trans_support & (CFGTBL_Trans_io_accel1 |
7767 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06007768 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007769
7770 /* This is a bit complicated. There are 8 registers on
7771 * the controller which we write to to tell it 8 different
7772 * sizes of commands which there may be. It's a way of
7773 * reducing the DMA done to fetch each command. Encoded into
7774 * each command's tag are 3 bits which communicate to the controller
7775 * which of the eight sizes that command fits within. The size of
7776 * each command depends on how many scatter gather entries there are.
7777 * Each SG entry requires 16 bytes. The eight registers are programmed
7778 * with the number of 16-byte blocks a command of that size requires.
7779 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007780 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007781 * blocks. Note, this only extends to the SG entries contained
7782 * within the command block, and does not extend to chained blocks
7783 * of SG elements. bft[] contains the eight values we write to
7784 * the registers. They are not evenly distributed, but have more
7785 * sizes for small commands, and fewer sizes for larger commands.
7786 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007787 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007788#define MIN_IOACCEL2_BFT_ENTRY 5
7789#define HPSA_IOACCEL2_HEADER_SZ 4
7790 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
7791 13, 14, 15, 16, 17, 18, 19,
7792 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
7793 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
7794 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
7795 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
7796 16 * MIN_IOACCEL2_BFT_ENTRY);
7797 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007798 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06007799 /* 5 = 1 s/g entry or 4k
7800 * 6 = 2 s/g entry or 8k
7801 * 8 = 4 s/g entry or 16k
7802 * 10 = 6 s/g entry or 24k
7803 */
Don Brace303932f2010-02-04 08:42:40 -06007804
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05007805 /* If the controller supports either ioaccel method then
7806 * we can also use the RAID stack submit path that does not
7807 * perform the superfluous readl() after each command submission.
7808 */
7809 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
7810 access = SA5_performant_access_no_read;
7811
Don Brace303932f2010-02-04 08:42:40 -06007812 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007813 for (i = 0; i < h->nreply_queues; i++)
7814 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06007815
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007816 bft[7] = SG_ENTRIES_IN_CMD + 4;
7817 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06007818 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06007819 for (i = 0; i < 8; i++)
7820 writel(bft[i], &h->transtable->BlockFetch[i]);
7821
7822 /* size of controller ring buffer */
7823 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05007824 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06007825 writel(0, &h->transtable->RepQCtrAddrLow32);
7826 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05007827
7828 for (i = 0; i < h->nreply_queues; i++) {
7829 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007830 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05007831 &h->transtable->RepQAddr[i].lower);
7832 }
7833
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007834 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06007835 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
7836 /*
7837 * enable outbound interrupt coalescing in accelerator mode;
7838 */
7839 if (trans_support & CFGTBL_Trans_io_accel1) {
7840 access = SA5_ioaccel_mode1_access;
7841 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7842 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06007843 } else {
7844 if (trans_support & CFGTBL_Trans_io_accel2) {
7845 access = SA5_ioaccel_mode2_access;
7846 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7847 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
7848 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007849 }
Don Brace303932f2010-02-04 08:42:40 -06007850 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007851 if (hpsa_wait_for_mode_change_ack(h)) {
7852 dev_err(&h->pdev->dev,
7853 "performant mode problem - doorbell timeout\n");
7854 return -ENODEV;
7855 }
Don Brace303932f2010-02-04 08:42:40 -06007856 register_value = readl(&(h->cfgtable->TransportActive));
7857 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007858 dev_err(&h->pdev->dev,
7859 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06007860 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06007861 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007862 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06007863 h->access = access;
7864 h->transMethod = transMethod;
7865
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007866 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
7867 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06007868 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06007869
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007870 if (trans_support & CFGTBL_Trans_io_accel1) {
7871 /* Set up I/O accelerator mode */
7872 for (i = 0; i < h->nreply_queues; i++) {
7873 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
7874 h->reply_queue[i].current_entry =
7875 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
7876 }
7877 bft[7] = h->ioaccel_maxsg + 8;
7878 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
7879 h->ioaccel1_blockFetchTable);
7880
7881 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007882 for (i = 0; i < h->nreply_queues; i++)
7883 memset(h->reply_queue[i].head,
7884 (u8) IOACCEL_MODE1_REPLY_UNUSED,
7885 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007886
7887 /* set all the constant fields in the accelerator command
7888 * frames once at init time to save CPU cycles later.
7889 */
7890 for (i = 0; i < h->nr_cmds; i++) {
7891 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
7892
7893 cp->function = IOACCEL1_FUNCTION_SCSIIO;
7894 cp->err_info = (u32) (h->errinfo_pool_dhandle +
7895 (i * sizeof(struct ErrorInfo)));
7896 cp->err_info_len = sizeof(struct ErrorInfo);
7897 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06007898 cp->host_context_flags =
7899 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007900 cp->timeout_sec = 0;
7901 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007902 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06007903 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007904 cp->host_addr =
7905 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007906 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007907 }
7908 } else if (trans_support & CFGTBL_Trans_io_accel2) {
7909 u64 cfg_offset, cfg_base_addr_index;
7910 u32 bft2_offset, cfg_base_addr;
7911 int rc;
7912
7913 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7914 &cfg_base_addr_index, &cfg_offset);
7915 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
7916 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
7917 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
7918 4, h->ioaccel2_blockFetchTable);
7919 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
7920 BUILD_BUG_ON(offsetof(struct CfgTable,
7921 io_accel_request_size_offset) != 0xb8);
7922 h->ioaccel2_bft2_regs =
7923 remap_pci_mem(pci_resource_start(h->pdev,
7924 cfg_base_addr_index) +
7925 cfg_offset + bft2_offset,
7926 ARRAY_SIZE(bft2) *
7927 sizeof(*h->ioaccel2_bft2_regs));
7928 for (i = 0; i < ARRAY_SIZE(bft2); i++)
7929 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06007930 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007931 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007932 if (hpsa_wait_for_mode_change_ack(h)) {
7933 dev_err(&h->pdev->dev,
7934 "performant mode problem - enabling ioaccel mode\n");
7935 return -ENODEV;
7936 }
7937 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06007938}
7939
Robert Elliott1fb7c982015-04-23 09:33:22 -05007940/* Free ioaccel1 mode command blocks and block fetch table */
7941static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
7942{
7943 if (h->ioaccel_cmd_pool)
7944 pci_free_consistent(h->pdev,
7945 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7946 h->ioaccel_cmd_pool,
7947 h->ioaccel_cmd_pool_dhandle);
7948 kfree(h->ioaccel1_blockFetchTable);
7949}
7950
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007951/* Allocate ioaccel1 mode command blocks and block fetch table */
7952static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06007953{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007954 h->ioaccel_maxsg =
7955 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7956 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
7957 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
7958
Matt Gatese1f7de02014-02-18 13:55:17 -06007959 /* Command structures must be aligned on a 128-byte boundary
7960 * because the 7 lower bits of the address are used by the
7961 * hardware.
7962 */
Matt Gatese1f7de02014-02-18 13:55:17 -06007963 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
7964 IOACCEL1_COMMANDLIST_ALIGNMENT);
7965 h->ioaccel_cmd_pool =
7966 pci_alloc_consistent(h->pdev,
7967 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7968 &(h->ioaccel_cmd_pool_dhandle));
7969
7970 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007971 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06007972 sizeof(u32)), GFP_KERNEL);
7973
7974 if ((h->ioaccel_cmd_pool == NULL) ||
7975 (h->ioaccel1_blockFetchTable == NULL))
7976 goto clean_up;
7977
7978 memset(h->ioaccel_cmd_pool, 0,
7979 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
7980 return 0;
7981
7982clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05007983 hpsa_free_ioaccel1_cmd_and_bft(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06007984 return 1;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007985}
7986
Robert Elliott1fb7c982015-04-23 09:33:22 -05007987/* Free ioaccel2 mode command blocks and block fetch table */
7988static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
7989{
Webb Scalesd9a729f2015-04-23 09:33:27 -05007990 hpsa_free_ioaccel2_sg_chain_blocks(h);
7991
Robert Elliott1fb7c982015-04-23 09:33:22 -05007992 if (h->ioaccel2_cmd_pool)
7993 pci_free_consistent(h->pdev,
7994 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7995 h->ioaccel2_cmd_pool,
7996 h->ioaccel2_cmd_pool_dhandle);
7997 kfree(h->ioaccel2_blockFetchTable);
7998}
7999
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008000/* Allocate ioaccel2 mode command blocks and block fetch table */
8001static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008002{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008003 int rc;
8004
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008005 /* Allocate ioaccel2 mode command blocks and block fetch table */
8006
8007 h->ioaccel_maxsg =
8008 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8009 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
8010 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
8011
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008012 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
8013 IOACCEL2_COMMANDLIST_ALIGNMENT);
8014 h->ioaccel2_cmd_pool =
8015 pci_alloc_consistent(h->pdev,
8016 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8017 &(h->ioaccel2_cmd_pool_dhandle));
8018
8019 h->ioaccel2_blockFetchTable =
8020 kmalloc(((h->ioaccel_maxsg + 1) *
8021 sizeof(u32)), GFP_KERNEL);
8022
8023 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05008024 (h->ioaccel2_blockFetchTable == NULL)) {
8025 rc = -ENOMEM;
8026 goto clean_up;
8027 }
8028
8029 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
8030 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008031 goto clean_up;
8032
8033 memset(h->ioaccel2_cmd_pool, 0,
8034 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
8035 return 0;
8036
8037clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008038 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05008039 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008040}
8041
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008042static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008043{
8044 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06008045 unsigned long transMethod = CFGTBL_Trans_Performant |
8046 CFGTBL_Trans_use_short_tags;
Matt Gates254f7962012-05-01 11:43:06 -05008047 int i;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008048
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008049 if (hpsa_simple_mode)
8050 return;
8051
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008052 trans_support = readl(&(h->cfgtable->TransportSupport));
8053 if (!(trans_support & PERFORMANT_MODE))
8054 return;
8055
Matt Gatese1f7de02014-02-18 13:55:17 -06008056 /* Check for I/O accelerator mode support */
8057 if (trans_support & CFGTBL_Trans_io_accel1) {
8058 transMethod |= CFGTBL_Trans_io_accel1 |
8059 CFGTBL_Trans_enable_directed_msix;
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008060 if (hpsa_alloc_ioaccel1_cmd_and_bft(h))
Matt Gatese1f7de02014-02-18 13:55:17 -06008061 goto clean_up;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008062 } else {
8063 if (trans_support & CFGTBL_Trans_io_accel2) {
8064 transMethod |= CFGTBL_Trans_io_accel2 |
8065 CFGTBL_Trans_enable_directed_msix;
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008066 if (hpsa_alloc_ioaccel2_cmd_and_bft(h))
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008067 goto clean_up;
8068 }
Matt Gatese1f7de02014-02-18 13:55:17 -06008069 }
8070
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008071 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05008072 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008073 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008074 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008075
Matt Gates254f7962012-05-01 11:43:06 -05008076 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008077 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
8078 h->reply_queue_size,
8079 &(h->reply_queue[i].busaddr));
8080 if (!h->reply_queue[i].head)
8081 goto clean_up;
Matt Gates254f7962012-05-01 11:43:06 -05008082 h->reply_queue[i].size = h->max_commands;
8083 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
8084 h->reply_queue[i].current_entry = 0;
8085 }
8086
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008087 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008088 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008089 sizeof(u32)), GFP_KERNEL);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008090 if (!h->blockFetchTable)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008091 goto clean_up;
8092
Matt Gatese1f7de02014-02-18 13:55:17 -06008093 hpsa_enter_performant_mode(h, trans_support);
Don Brace303932f2010-02-04 08:42:40 -06008094 return;
8095
8096clean_up:
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008097 hpsa_free_reply_queues(h);
Don Brace303932f2010-02-04 08:42:40 -06008098 kfree(h->blockFetchTable);
8099}
8100
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008101static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008102{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008103 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
8104}
8105
8106static void hpsa_drain_accel_commands(struct ctlr_info *h)
8107{
8108 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06008109 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06008110 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008111
Don Bracef2405db2015-01-23 16:43:09 -06008112 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008113 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06008114 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06008115 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06008116 refcount = atomic_inc_return(&c->refcount);
8117 if (refcount > 1) /* Command is allocated */
8118 accel_cmds_out += is_accelerated_cmd(c);
8119 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06008120 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008121 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06008122 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008123 msleep(100);
8124 } while (1);
8125}
8126
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008127/*
8128 * This is it. Register the PCI driver information for the cards we control
8129 * the OS will call our registered routines when it finds one of our cards.
8130 */
8131static int __init hpsa_init(void)
8132{
Mike Miller31468402010-02-25 14:03:12 -06008133 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008134}
8135
8136static void __exit hpsa_cleanup(void)
8137{
8138 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008139}
8140
Matt Gatese1f7de02014-02-18 13:55:17 -06008141static void __attribute__((unused)) verify_offsets(void)
8142{
8143#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06008144 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
8145
8146 VERIFY_OFFSET(structure_size, 0);
8147 VERIFY_OFFSET(volume_blk_size, 4);
8148 VERIFY_OFFSET(volume_blk_cnt, 8);
8149 VERIFY_OFFSET(phys_blk_shift, 16);
8150 VERIFY_OFFSET(parity_rotation_shift, 17);
8151 VERIFY_OFFSET(strip_size, 18);
8152 VERIFY_OFFSET(disk_starting_blk, 20);
8153 VERIFY_OFFSET(disk_blk_cnt, 28);
8154 VERIFY_OFFSET(data_disks_per_row, 36);
8155 VERIFY_OFFSET(metadata_disks_per_row, 38);
8156 VERIFY_OFFSET(row_cnt, 40);
8157 VERIFY_OFFSET(layout_map_count, 42);
8158 VERIFY_OFFSET(flags, 44);
8159 VERIFY_OFFSET(dekindex, 46);
8160 /* VERIFY_OFFSET(reserved, 48 */
8161 VERIFY_OFFSET(data, 64);
8162
8163#undef VERIFY_OFFSET
8164
8165#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06008166 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
8167
8168 VERIFY_OFFSET(IU_type, 0);
8169 VERIFY_OFFSET(direction, 1);
8170 VERIFY_OFFSET(reply_queue, 2);
8171 /* VERIFY_OFFSET(reserved1, 3); */
8172 VERIFY_OFFSET(scsi_nexus, 4);
8173 VERIFY_OFFSET(Tag, 8);
8174 VERIFY_OFFSET(cdb, 16);
8175 VERIFY_OFFSET(cciss_lun, 32);
8176 VERIFY_OFFSET(data_len, 40);
8177 VERIFY_OFFSET(cmd_priority_task_attr, 44);
8178 VERIFY_OFFSET(sg_count, 45);
8179 /* VERIFY_OFFSET(reserved3 */
8180 VERIFY_OFFSET(err_ptr, 48);
8181 VERIFY_OFFSET(err_len, 56);
8182 /* VERIFY_OFFSET(reserved4 */
8183 VERIFY_OFFSET(sg, 64);
8184
8185#undef VERIFY_OFFSET
8186
8187#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06008188 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
8189
8190 VERIFY_OFFSET(dev_handle, 0x00);
8191 VERIFY_OFFSET(reserved1, 0x02);
8192 VERIFY_OFFSET(function, 0x03);
8193 VERIFY_OFFSET(reserved2, 0x04);
8194 VERIFY_OFFSET(err_info, 0x0C);
8195 VERIFY_OFFSET(reserved3, 0x10);
8196 VERIFY_OFFSET(err_info_len, 0x12);
8197 VERIFY_OFFSET(reserved4, 0x13);
8198 VERIFY_OFFSET(sgl_offset, 0x14);
8199 VERIFY_OFFSET(reserved5, 0x15);
8200 VERIFY_OFFSET(transfer_len, 0x1C);
8201 VERIFY_OFFSET(reserved6, 0x20);
8202 VERIFY_OFFSET(io_flags, 0x24);
8203 VERIFY_OFFSET(reserved7, 0x26);
8204 VERIFY_OFFSET(LUN, 0x34);
8205 VERIFY_OFFSET(control, 0x3C);
8206 VERIFY_OFFSET(CDB, 0x40);
8207 VERIFY_OFFSET(reserved8, 0x50);
8208 VERIFY_OFFSET(host_context_flags, 0x60);
8209 VERIFY_OFFSET(timeout_sec, 0x62);
8210 VERIFY_OFFSET(ReplyQueue, 0x64);
8211 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008212 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06008213 VERIFY_OFFSET(host_addr, 0x70);
8214 VERIFY_OFFSET(CISS_LUN, 0x78);
8215 VERIFY_OFFSET(SG, 0x78 + 8);
8216#undef VERIFY_OFFSET
8217}
8218
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008219module_init(hpsa_init);
8220module_exit(hpsa_cleanup);