blob: 3a978d34190bd892b8d027b6bd2090af3d4422dc [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);
Matt Gates254f7962012-05-01 11:43:06 -0500238static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800239static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
240 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
241 u64 *cfg_offset);
242static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
243 unsigned long *memory_bar);
244static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
245static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
246 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500247static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600248static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600249#define BOARD_NOT_READY 0
250#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600251static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600252static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600253static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
254 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600255 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600256static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500257static u32 lockup_detected(struct ctlr_info *h);
258static int detect_controller_lockup(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800259
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800260static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
261{
262 unsigned long *priv = shost_priv(sdev->host);
263 return (struct ctlr_info *) *priv;
264}
265
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600266static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
267{
268 unsigned long *priv = shost_priv(sh);
269 return (struct ctlr_info *) *priv;
270}
271
Stephen Cameron9437ac42015-04-23 09:32:16 -0500272/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
273static void decode_sense_data(const u8 *sense_data, int sense_data_len,
274 u8 *sense_key, u8 *asc, u8 *ascq)
275{
276 struct scsi_sense_hdr sshdr;
277 bool rc;
278
279 *sense_key = -1;
280 *asc = -1;
281 *ascq = -1;
282
283 if (sense_data_len < 1)
284 return;
285
286 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
287 if (rc) {
288 *sense_key = sshdr.sense_key;
289 *asc = sshdr.asc;
290 *ascq = sshdr.ascq;
291 }
292}
293
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800294static int check_for_unit_attention(struct ctlr_info *h,
295 struct CommandList *c)
296{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500297 u8 sense_key, asc, ascq;
298 int sense_len;
299
300 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
301 sense_len = sizeof(c->err_info->SenseInfo);
302 else
303 sense_len = c->err_info->SenseLen;
304
305 decode_sense_data(c->err_info->SenseInfo, sense_len,
306 &sense_key, &asc, &ascq);
307 if (sense_key != UNIT_ATTENTION || asc == -1)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800308 return 0;
309
Stephen Cameron9437ac42015-04-23 09:32:16 -0500310 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800311 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500312 dev_warn(&h->pdev->dev,
313 HPSA "%d: a state change detected, command retried\n",
314 h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800315 break;
316 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600317 dev_warn(&h->pdev->dev,
318 HPSA "%d: LUN failure detected\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800319 break;
320 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600321 dev_warn(&h->pdev->dev,
322 HPSA "%d: report LUN data changed\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800323 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600324 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
325 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800326 */
327 break;
328 case POWER_OR_RESET:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600329 dev_warn(&h->pdev->dev, HPSA "%d: a power on "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800330 "or device reset detected\n", h->ctlr);
331 break;
332 case UNIT_ATTENTION_CLEARED:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600333 dev_warn(&h->pdev->dev, HPSA "%d: unit attention "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800334 "cleared by another initiator\n", h->ctlr);
335 break;
336 default:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600337 dev_warn(&h->pdev->dev, HPSA "%d: unknown "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800338 "unit attention detected\n", h->ctlr);
339 break;
340 }
341 return 1;
342}
343
Matt Bondurant852af202012-05-01 11:42:35 -0500344static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
345{
346 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
347 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
348 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
349 return 0;
350 dev_warn(&h->pdev->dev, HPSA "device busy");
351 return 1;
352}
353
Stephen Camerone985c582015-04-23 09:32:22 -0500354static u32 lockup_detected(struct ctlr_info *h);
355static ssize_t host_show_lockup_detected(struct device *dev,
356 struct device_attribute *attr, char *buf)
357{
358 int ld;
359 struct ctlr_info *h;
360 struct Scsi_Host *shost = class_to_shost(dev);
361
362 h = shost_to_hba(shost);
363 ld = lockup_detected(h);
364
365 return sprintf(buf, "ld=%d\n", ld);
366}
367
Scott Teelda0697b2014-02-18 13:57:00 -0600368static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
369 struct device_attribute *attr,
370 const char *buf, size_t count)
371{
372 int status, len;
373 struct ctlr_info *h;
374 struct Scsi_Host *shost = class_to_shost(dev);
375 char tmpbuf[10];
376
377 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
378 return -EACCES;
379 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
380 strncpy(tmpbuf, buf, len);
381 tmpbuf[len] = '\0';
382 if (sscanf(tmpbuf, "%d", &status) != 1)
383 return -EINVAL;
384 h = shost_to_hba(shost);
385 h->acciopath_status = !!status;
386 dev_warn(&h->pdev->dev,
387 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
388 h->acciopath_status ? "enabled" : "disabled");
389 return count;
390}
391
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600392static ssize_t host_store_raid_offload_debug(struct device *dev,
393 struct device_attribute *attr,
394 const char *buf, size_t count)
395{
396 int debug_level, len;
397 struct ctlr_info *h;
398 struct Scsi_Host *shost = class_to_shost(dev);
399 char tmpbuf[10];
400
401 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
402 return -EACCES;
403 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
404 strncpy(tmpbuf, buf, len);
405 tmpbuf[len] = '\0';
406 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
407 return -EINVAL;
408 if (debug_level < 0)
409 debug_level = 0;
410 h = shost_to_hba(shost);
411 h->raid_offload_debug = debug_level;
412 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
413 h->raid_offload_debug);
414 return count;
415}
416
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800417static ssize_t host_store_rescan(struct device *dev,
418 struct device_attribute *attr,
419 const char *buf, size_t count)
420{
421 struct ctlr_info *h;
422 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600423 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600424 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800425 return count;
426}
427
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500428static ssize_t host_show_firmware_revision(struct device *dev,
429 struct device_attribute *attr, char *buf)
430{
431 struct ctlr_info *h;
432 struct Scsi_Host *shost = class_to_shost(dev);
433 unsigned char *fwrev;
434
435 h = shost_to_hba(shost);
436 if (!h->hba_inquiry_data)
437 return 0;
438 fwrev = &h->hba_inquiry_data[32];
439 return snprintf(buf, 20, "%c%c%c%c\n",
440 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
441}
442
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600443static ssize_t host_show_commands_outstanding(struct device *dev,
444 struct device_attribute *attr, char *buf)
445{
446 struct Scsi_Host *shost = class_to_shost(dev);
447 struct ctlr_info *h = shost_to_hba(shost);
448
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600449 return snprintf(buf, 20, "%d\n",
450 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600451}
452
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600453static ssize_t host_show_transport_mode(struct device *dev,
454 struct device_attribute *attr, char *buf)
455{
456 struct ctlr_info *h;
457 struct Scsi_Host *shost = class_to_shost(dev);
458
459 h = shost_to_hba(shost);
460 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600461 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600462 "performant" : "simple");
463}
464
Scott Teelda0697b2014-02-18 13:57:00 -0600465static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
466 struct device_attribute *attr, char *buf)
467{
468 struct ctlr_info *h;
469 struct Scsi_Host *shost = class_to_shost(dev);
470
471 h = shost_to_hba(shost);
472 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
473 (h->acciopath_status == 1) ? "enabled" : "disabled");
474}
475
Stephen M. Cameron46380782011-05-03 15:00:01 -0500476/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600477static u32 unresettable_controller[] = {
478 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500479 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600480 0x3223103C, /* Smart Array P800 */
481 0x3234103C, /* Smart Array P400 */
482 0x3235103C, /* Smart Array P400i */
483 0x3211103C, /* Smart Array E200i */
484 0x3212103C, /* Smart Array E200 */
485 0x3213103C, /* Smart Array E200i */
486 0x3214103C, /* Smart Array E200i */
487 0x3215103C, /* Smart Array E200i */
488 0x3237103C, /* Smart Array E500 */
489 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100490 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600491 0x409C0E11, /* Smart Array 6400 */
492 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100493 0x40700E11, /* Smart Array 5300 */
494 0x40820E11, /* Smart Array 532 */
495 0x40830E11, /* Smart Array 5312 */
496 0x409A0E11, /* Smart Array 641 */
497 0x409B0E11, /* Smart Array 642 */
498 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600499};
500
Stephen M. Cameron46380782011-05-03 15:00:01 -0500501/* List of controllers which cannot even be soft reset */
502static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100503 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100504 0x40700E11, /* Smart Array 5300 */
505 0x40820E11, /* Smart Array 532 */
506 0x40830E11, /* Smart Array 5312 */
507 0x409A0E11, /* Smart Array 641 */
508 0x409B0E11, /* Smart Array 642 */
509 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500510 /* Exclude 640x boards. These are two pci devices in one slot
511 * which share a battery backed cache module. One controls the
512 * cache, the other accesses the cache through the one that controls
513 * it. If we reset the one controlling the cache, the other will
514 * likely not be happy. Just forbid resetting this conjoined mess.
515 * The 640x isn't really supported by hpsa anyway.
516 */
517 0x409C0E11, /* Smart Array 6400 */
518 0x409D0E11, /* Smart Array 6400 EM */
519};
520
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500521static u32 needs_abort_tags_swizzled[] = {
522 0x323D103C, /* Smart Array P700m */
523 0x324a103C, /* Smart Array P712m */
524 0x324b103C, /* SmartArray P711m */
525};
526
527static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600528{
529 int i;
530
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500531 for (i = 0; i < nelems; i++)
532 if (a[i] == board_id)
533 return 1;
534 return 0;
535}
536
537static int ctlr_is_hard_resettable(u32 board_id)
538{
539 return !board_id_in_array(unresettable_controller,
540 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600541}
542
Stephen M. Cameron46380782011-05-03 15:00:01 -0500543static int ctlr_is_soft_resettable(u32 board_id)
544{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500545 return !board_id_in_array(soft_unresettable_controller,
546 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500547}
548
549static int ctlr_is_resettable(u32 board_id)
550{
551 return ctlr_is_hard_resettable(board_id) ||
552 ctlr_is_soft_resettable(board_id);
553}
554
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500555static int ctlr_needs_abort_tags_swizzled(u32 board_id)
556{
557 return board_id_in_array(needs_abort_tags_swizzled,
558 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
559}
560
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600561static ssize_t host_show_resettable(struct device *dev,
562 struct device_attribute *attr, char *buf)
563{
564 struct ctlr_info *h;
565 struct Scsi_Host *shost = class_to_shost(dev);
566
567 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500568 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600569}
570
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800571static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
572{
573 return (scsi3addr[3] & 0xC0) == 0x40;
574}
575
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600576static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
577 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800578};
Scott Teel6b80b182014-02-18 13:56:55 -0600579#define HPSA_RAID_0 0
580#define HPSA_RAID_4 1
581#define HPSA_RAID_1 2 /* also used for RAID 10 */
582#define HPSA_RAID_5 3 /* also used for RAID 50 */
583#define HPSA_RAID_51 4
584#define HPSA_RAID_6 5 /* also used for RAID 60 */
585#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800586#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
587
588static ssize_t raid_level_show(struct device *dev,
589 struct device_attribute *attr, char *buf)
590{
591 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600592 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800593 struct ctlr_info *h;
594 struct scsi_device *sdev;
595 struct hpsa_scsi_dev_t *hdev;
596 unsigned long flags;
597
598 sdev = to_scsi_device(dev);
599 h = sdev_to_hba(sdev);
600 spin_lock_irqsave(&h->lock, flags);
601 hdev = sdev->hostdata;
602 if (!hdev) {
603 spin_unlock_irqrestore(&h->lock, flags);
604 return -ENODEV;
605 }
606
607 /* Is this even a logical drive? */
608 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
609 spin_unlock_irqrestore(&h->lock, flags);
610 l = snprintf(buf, PAGE_SIZE, "N/A\n");
611 return l;
612 }
613
614 rlevel = hdev->raid_level;
615 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600616 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800617 rlevel = RAID_UNKNOWN;
618 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
619 return l;
620}
621
622static ssize_t lunid_show(struct device *dev,
623 struct device_attribute *attr, char *buf)
624{
625 struct ctlr_info *h;
626 struct scsi_device *sdev;
627 struct hpsa_scsi_dev_t *hdev;
628 unsigned long flags;
629 unsigned char lunid[8];
630
631 sdev = to_scsi_device(dev);
632 h = sdev_to_hba(sdev);
633 spin_lock_irqsave(&h->lock, flags);
634 hdev = sdev->hostdata;
635 if (!hdev) {
636 spin_unlock_irqrestore(&h->lock, flags);
637 return -ENODEV;
638 }
639 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
640 spin_unlock_irqrestore(&h->lock, flags);
641 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
642 lunid[0], lunid[1], lunid[2], lunid[3],
643 lunid[4], lunid[5], lunid[6], lunid[7]);
644}
645
646static ssize_t unique_id_show(struct device *dev,
647 struct device_attribute *attr, char *buf)
648{
649 struct ctlr_info *h;
650 struct scsi_device *sdev;
651 struct hpsa_scsi_dev_t *hdev;
652 unsigned long flags;
653 unsigned char sn[16];
654
655 sdev = to_scsi_device(dev);
656 h = sdev_to_hba(sdev);
657 spin_lock_irqsave(&h->lock, flags);
658 hdev = sdev->hostdata;
659 if (!hdev) {
660 spin_unlock_irqrestore(&h->lock, flags);
661 return -ENODEV;
662 }
663 memcpy(sn, hdev->device_id, sizeof(sn));
664 spin_unlock_irqrestore(&h->lock, flags);
665 return snprintf(buf, 16 * 2 + 2,
666 "%02X%02X%02X%02X%02X%02X%02X%02X"
667 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
668 sn[0], sn[1], sn[2], sn[3],
669 sn[4], sn[5], sn[6], sn[7],
670 sn[8], sn[9], sn[10], sn[11],
671 sn[12], sn[13], sn[14], sn[15]);
672}
673
Scott Teelc1988682014-02-18 13:55:54 -0600674static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
675 struct device_attribute *attr, char *buf)
676{
677 struct ctlr_info *h;
678 struct scsi_device *sdev;
679 struct hpsa_scsi_dev_t *hdev;
680 unsigned long flags;
681 int offload_enabled;
682
683 sdev = to_scsi_device(dev);
684 h = sdev_to_hba(sdev);
685 spin_lock_irqsave(&h->lock, flags);
686 hdev = sdev->hostdata;
687 if (!hdev) {
688 spin_unlock_irqrestore(&h->lock, flags);
689 return -ENODEV;
690 }
691 offload_enabled = hdev->offload_enabled;
692 spin_unlock_irqrestore(&h->lock, flags);
693 return snprintf(buf, 20, "%d\n", offload_enabled);
694}
695
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600696static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
697static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
698static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
699static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600700static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
701 host_show_hp_ssd_smart_path_enabled, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600702static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
703 host_show_hp_ssd_smart_path_status,
704 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600705static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
706 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600707static DEVICE_ATTR(firmware_revision, S_IRUGO,
708 host_show_firmware_revision, NULL);
709static DEVICE_ATTR(commands_outstanding, S_IRUGO,
710 host_show_commands_outstanding, NULL);
711static DEVICE_ATTR(transport_mode, S_IRUGO,
712 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600713static DEVICE_ATTR(resettable, S_IRUGO,
714 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500715static DEVICE_ATTR(lockup_detected, S_IRUGO,
716 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600717
718static struct device_attribute *hpsa_sdev_attrs[] = {
719 &dev_attr_raid_level,
720 &dev_attr_lunid,
721 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600722 &dev_attr_hp_ssd_smart_path_enabled,
Stephen Camerone985c582015-04-23 09:32:22 -0500723 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600724 NULL,
725};
726
727static struct device_attribute *hpsa_shost_attrs[] = {
728 &dev_attr_rescan,
729 &dev_attr_firmware_revision,
730 &dev_attr_commands_outstanding,
731 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600732 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600733 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600734 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600735 NULL,
736};
737
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500738#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
739 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
740
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600741static struct scsi_host_template hpsa_driver_template = {
742 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600743 .name = HPSA,
744 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600745 .queuecommand = hpsa_scsi_queue_command,
746 .scan_start = hpsa_scan_start,
747 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600748 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600749 .this_id = -1,
750 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500751 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600752 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
753 .ioctl = hpsa_ioctl,
754 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500755 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600756 .slave_destroy = hpsa_slave_destroy,
757#ifdef CONFIG_COMPAT
758 .compat_ioctl = hpsa_compat_ioctl,
759#endif
760 .sdev_attrs = hpsa_sdev_attrs,
761 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500762 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400763 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600764};
765
Matt Gates254f7962012-05-01 11:43:06 -0500766static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600767{
768 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500769 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600770
Matt Gatese1f7de02014-02-18 13:55:17 -0600771 if (h->transMethod & CFGTBL_Trans_io_accel1)
772 return h->access.command_completed(h, q);
773
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600774 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500775 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600776
Matt Gates254f7962012-05-01 11:43:06 -0500777 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
778 a = rq->head[rq->current_entry];
779 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600780 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600781 } else {
782 a = FIFO_EMPTY;
783 }
784 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500785 if (rq->current_entry == h->max_commands) {
786 rq->current_entry = 0;
787 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600788 }
789 return a;
790}
791
Scott Teelc3497752014-02-18 13:56:34 -0600792/*
793 * There are some special bits in the bus address of the
794 * command that we have to set for the controller to know
795 * how to process the command:
796 *
797 * Normal performant mode:
798 * bit 0: 1 means performant mode, 0 means simple mode.
799 * bits 1-3 = block fetch table entry
800 * bits 4-6 = command type (== 0)
801 *
802 * ioaccel1 mode:
803 * bit 0 = "performant mode" bit.
804 * bits 1-3 = block fetch table entry
805 * bits 4-6 = command type (== 110)
806 * (command type is needed because ioaccel1 mode
807 * commands are submitted through the same register as normal
808 * mode commands, so this is how the controller knows whether
809 * the command is normal mode or ioaccel1 mode.)
810 *
811 * ioaccel2 mode:
812 * bit 0 = "performant mode" bit.
813 * bits 1-4 = block fetch table entry (note extra bit)
814 * bits 4-6 = not needed, because ioaccel2 mode has
815 * a separate special register for submitting commands.
816 */
817
Webb Scales25163bd2015-04-23 09:32:00 -0500818/*
819 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600820 * set bit 0 for pull model, bits 3-1 for block fetch
821 * register number
822 */
Webb Scales25163bd2015-04-23 09:32:00 -0500823#define DEFAULT_REPLY_QUEUE (-1)
824static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
825 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600826{
Matt Gates254f7962012-05-01 11:43:06 -0500827 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600828 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -0500829 if (unlikely(!h->msix_vector))
830 return;
831 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -0500832 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200833 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -0500834 else
835 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500836 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600837}
838
Scott Teelc3497752014-02-18 13:56:34 -0600839static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500840 struct CommandList *c,
841 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600842{
843 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
844
Webb Scales25163bd2015-04-23 09:32:00 -0500845 /*
846 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600847 * processor. This seems to give the best I/O throughput.
848 */
Webb Scales25163bd2015-04-23 09:32:00 -0500849 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
850 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
851 else
852 cp->ReplyQueue = reply_queue % h->nreply_queues;
853 /*
854 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600855 * - performant mode bit (bit 0)
856 * - pull count (bits 1-3)
857 * - command type (bits 4-6)
858 */
859 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
860 IOACCEL1_BUSADDR_CMDTYPE;
861}
862
863static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500864 struct CommandList *c,
865 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600866{
867 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
868
Webb Scales25163bd2015-04-23 09:32:00 -0500869 /*
870 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600871 * processor. This seems to give the best I/O throughput.
872 */
Webb Scales25163bd2015-04-23 09:32:00 -0500873 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
874 cp->reply_queue = smp_processor_id() % h->nreply_queues;
875 else
876 cp->reply_queue = reply_queue % h->nreply_queues;
877 /*
878 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600879 * - performant mode bit not used in ioaccel mode 2
880 * - pull count (bits 0-3)
881 * - command type isn't needed for ioaccel2
882 */
883 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
884}
885
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500886static int is_firmware_flash_cmd(u8 *cdb)
887{
888 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
889}
890
891/*
892 * During firmware flash, the heartbeat register may not update as frequently
893 * as it should. So we dial down lockup detection during firmware flash. and
894 * dial it back up when firmware flash completes.
895 */
896#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
897#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
898static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
899 struct CommandList *c)
900{
901 if (!is_firmware_flash_cmd(c->Request.CDB))
902 return;
903 atomic_inc(&h->firmware_flash_in_progress);
904 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
905}
906
907static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
908 struct CommandList *c)
909{
910 if (is_firmware_flash_cmd(c->Request.CDB) &&
911 atomic_dec_and_test(&h->firmware_flash_in_progress))
912 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
913}
914
Webb Scales25163bd2015-04-23 09:32:00 -0500915static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
916 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600917{
Stephen Cameronc05e8862015-01-23 16:44:40 -0600918 dial_down_lockup_detection_during_fw_flash(h, c);
919 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -0600920 switch (c->cmd_type) {
921 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -0500922 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600923 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -0600924 break;
925 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -0500926 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600927 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -0600928 break;
929 default:
Webb Scales25163bd2015-04-23 09:32:00 -0500930 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600931 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -0600932 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600933}
934
Webb Scales25163bd2015-04-23 09:32:00 -0500935static void enqueue_cmd_and_start_io(struct ctlr_info *h,
936 struct CommandList *c)
937{
938 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
939}
940
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600941static inline int is_hba_lunid(unsigned char scsi3addr[])
942{
943 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
944}
945
946static inline int is_scsi_rev_5(struct ctlr_info *h)
947{
948 if (!h->hba_inquiry_data)
949 return 0;
950 if ((h->hba_inquiry_data[2] & 0x07) == 5)
951 return 1;
952 return 0;
953}
954
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800955static int hpsa_find_target_lun(struct ctlr_info *h,
956 unsigned char scsi3addr[], int bus, int *target, int *lun)
957{
958 /* finds an unused bus, target, lun for a new physical device
959 * assumes h->devlock is held
960 */
961 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -0500962 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800963
Akinobu Mita263d9402012-01-21 00:15:27 +0900964 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800965
966 for (i = 0; i < h->ndevices; i++) {
967 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +0900968 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800969 }
970
Akinobu Mita263d9402012-01-21 00:15:27 +0900971 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
972 if (i < HPSA_MAX_DEVICES) {
973 /* *bus = 1; */
974 *target = i;
975 *lun = 0;
976 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800977 }
978 return !found;
979}
980
Webb Scales0d96ef52015-04-23 09:31:55 -0500981static inline void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
982 struct hpsa_scsi_dev_t *dev, char *description)
983{
984 dev_printk(level, &h->pdev->dev,
985 "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
986 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
987 description,
988 scsi_device_type(dev->devtype),
989 dev->vendor,
990 dev->model,
991 dev->raid_level > RAID_UNKNOWN ?
992 "RAID-?" : raid_label[dev->raid_level],
993 dev->offload_config ? '+' : '-',
994 dev->offload_enabled ? '+' : '-',
995 dev->expose_state);
996}
997
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800998/* Add an entry into h->dev[] array. */
999static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
1000 struct hpsa_scsi_dev_t *device,
1001 struct hpsa_scsi_dev_t *added[], int *nadded)
1002{
1003 /* assumes h->devlock is held */
1004 int n = h->ndevices;
1005 int i;
1006 unsigned char addr1[8], addr2[8];
1007 struct hpsa_scsi_dev_t *sd;
1008
Scott Teelcfe5bad2011-10-26 16:21:07 -05001009 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001010 dev_err(&h->pdev->dev, "too many devices, some will be "
1011 "inaccessible.\n");
1012 return -1;
1013 }
1014
1015 /* physical devices do not have lun or target assigned until now. */
1016 if (device->lun != -1)
1017 /* Logical device, lun is already assigned. */
1018 goto lun_assigned;
1019
1020 /* If this device a non-zero lun of a multi-lun device
1021 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001022 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001023 */
1024 if (device->scsi3addr[4] == 0) {
1025 /* This is not a non-zero lun of a multi-lun device */
1026 if (hpsa_find_target_lun(h, device->scsi3addr,
1027 device->bus, &device->target, &device->lun) != 0)
1028 return -1;
1029 goto lun_assigned;
1030 }
1031
1032 /* This is a non-zero lun of a multi-lun device.
1033 * Search through our list and find the device which
1034 * has the same 8 byte LUN address, excepting byte 4.
1035 * Assign the same bus and target for this new LUN.
1036 * Use the logical unit number from the firmware.
1037 */
1038 memcpy(addr1, device->scsi3addr, 8);
1039 addr1[4] = 0;
1040 for (i = 0; i < n; i++) {
1041 sd = h->dev[i];
1042 memcpy(addr2, sd->scsi3addr, 8);
1043 addr2[4] = 0;
1044 /* differ only in byte 4? */
1045 if (memcmp(addr1, addr2, 8) == 0) {
1046 device->bus = sd->bus;
1047 device->target = sd->target;
1048 device->lun = device->scsi3addr[4];
1049 break;
1050 }
1051 }
1052 if (device->lun == -1) {
1053 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1054 " suspect firmware bug or unsupported hardware "
1055 "configuration.\n");
1056 return -1;
1057 }
1058
1059lun_assigned:
1060
1061 h->dev[n] = device;
1062 h->ndevices++;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001063 device->offload_to_be_enabled = device->offload_enabled;
1064 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001065 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");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001069 return 0;
1070}
1071
Scott Teelbd9244f2012-01-19 14:01:30 -06001072/* Update an entry in h->dev[] array. */
1073static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
1074 int entry, struct hpsa_scsi_dev_t *new_entry)
1075{
1076 /* assumes h->devlock is held */
1077 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1078
1079 /* Raid level changed. */
1080 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001081
Don Brace03383732015-01-23 16:43:30 -06001082 /* Raid offload parameters changed. Careful about the ordering. */
1083 if (new_entry->offload_config && new_entry->offload_enabled) {
1084 /*
1085 * if drive is newly offload_enabled, we want to copy the
1086 * raid map data first. If previously offload_enabled and
1087 * offload_config were set, raid map data had better be
1088 * the same as it was before. if raid map data is changed
1089 * then it had better be the case that
1090 * h->dev[entry]->offload_enabled is currently 0.
1091 */
1092 h->dev[entry]->raid_map = new_entry->raid_map;
1093 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001094 }
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001095 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001096 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001097 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001098
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001099 /*
1100 * We can turn off ioaccel offload now, but need to delay turning
1101 * it on until we can update h->dev[entry]->phys_disk[], but we
1102 * can't do that until all the devices are updated.
1103 */
1104 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1105 if (!new_entry->offload_enabled)
1106 h->dev[entry]->offload_enabled = 0;
1107
Webb Scales0d96ef52015-04-23 09:31:55 -05001108 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Scott Teelbd9244f2012-01-19 14:01:30 -06001109}
1110
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001111/* Replace an entry from h->dev[] array. */
1112static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
1113 int entry, struct hpsa_scsi_dev_t *new_entry,
1114 struct hpsa_scsi_dev_t *added[], int *nadded,
1115 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1116{
1117 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001118 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001119 removed[*nremoved] = h->dev[entry];
1120 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001121
1122 /*
1123 * New physical devices won't have target/lun assigned yet
1124 * so we need to preserve the values in the slot we are replacing.
1125 */
1126 if (new_entry->target == -1) {
1127 new_entry->target = h->dev[entry]->target;
1128 new_entry->lun = h->dev[entry]->lun;
1129 }
1130
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001131 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1132 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001133 h->dev[entry] = new_entry;
1134 added[*nadded] = new_entry;
1135 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001136 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001137}
1138
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001139/* Remove an entry from h->dev[] array. */
1140static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1141 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1142{
1143 /* assumes h->devlock is held */
1144 int i;
1145 struct hpsa_scsi_dev_t *sd;
1146
Scott Teelcfe5bad2011-10-26 16:21:07 -05001147 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001148
1149 sd = h->dev[entry];
1150 removed[*nremoved] = h->dev[entry];
1151 (*nremoved)++;
1152
1153 for (i = entry; i < h->ndevices-1; i++)
1154 h->dev[i] = h->dev[i+1];
1155 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001156 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001157}
1158
1159#define SCSI3ADDR_EQ(a, b) ( \
1160 (a)[7] == (b)[7] && \
1161 (a)[6] == (b)[6] && \
1162 (a)[5] == (b)[5] && \
1163 (a)[4] == (b)[4] && \
1164 (a)[3] == (b)[3] && \
1165 (a)[2] == (b)[2] && \
1166 (a)[1] == (b)[1] && \
1167 (a)[0] == (b)[0])
1168
1169static void fixup_botched_add(struct ctlr_info *h,
1170 struct hpsa_scsi_dev_t *added)
1171{
1172 /* called when scsi_add_device fails in order to re-adjust
1173 * h->dev[] to match the mid layer's view.
1174 */
1175 unsigned long flags;
1176 int i, j;
1177
1178 spin_lock_irqsave(&h->lock, flags);
1179 for (i = 0; i < h->ndevices; i++) {
1180 if (h->dev[i] == added) {
1181 for (j = i; j < h->ndevices-1; j++)
1182 h->dev[j] = h->dev[j+1];
1183 h->ndevices--;
1184 break;
1185 }
1186 }
1187 spin_unlock_irqrestore(&h->lock, flags);
1188 kfree(added);
1189}
1190
1191static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1192 struct hpsa_scsi_dev_t *dev2)
1193{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001194 /* we compare everything except lun and target as these
1195 * are not yet assigned. Compare parts likely
1196 * to differ first
1197 */
1198 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1199 sizeof(dev1->scsi3addr)) != 0)
1200 return 0;
1201 if (memcmp(dev1->device_id, dev2->device_id,
1202 sizeof(dev1->device_id)) != 0)
1203 return 0;
1204 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1205 return 0;
1206 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1207 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001208 if (dev1->devtype != dev2->devtype)
1209 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001210 if (dev1->bus != dev2->bus)
1211 return 0;
1212 return 1;
1213}
1214
Scott Teelbd9244f2012-01-19 14:01:30 -06001215static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1216 struct hpsa_scsi_dev_t *dev2)
1217{
1218 /* Device attributes that can change, but don't mean
1219 * that the device is a different device, nor that the OS
1220 * needs to be told anything about the change.
1221 */
1222 if (dev1->raid_level != dev2->raid_level)
1223 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001224 if (dev1->offload_config != dev2->offload_config)
1225 return 1;
1226 if (dev1->offload_enabled != dev2->offload_enabled)
1227 return 1;
Don Brace03383732015-01-23 16:43:30 -06001228 if (dev1->queue_depth != dev2->queue_depth)
1229 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001230 return 0;
1231}
1232
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001233/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1234 * and return needle location in *index. If scsi3addr matches, but not
1235 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001236 * location in *index.
1237 * In the case of a minor device attribute change, such as RAID level, just
1238 * return DEVICE_UPDATED, along with the updated device's location in index.
1239 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001240 */
1241static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1242 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1243 int *index)
1244{
1245 int i;
1246#define DEVICE_NOT_FOUND 0
1247#define DEVICE_CHANGED 1
1248#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001249#define DEVICE_UPDATED 3
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001250 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001251 if (haystack[i] == NULL) /* previously removed. */
1252 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001253 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1254 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001255 if (device_is_the_same(needle, haystack[i])) {
1256 if (device_updated(needle, haystack[i]))
1257 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001258 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001259 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001260 /* Keep offline devices offline */
1261 if (needle->volume_offline)
1262 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001263 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001264 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001265 }
1266 }
1267 *index = -1;
1268 return DEVICE_NOT_FOUND;
1269}
1270
Stephen M. Cameron98465902014-02-21 16:25:00 -06001271static void hpsa_monitor_offline_device(struct ctlr_info *h,
1272 unsigned char scsi3addr[])
1273{
1274 struct offline_device_entry *device;
1275 unsigned long flags;
1276
1277 /* Check to see if device is already on the list */
1278 spin_lock_irqsave(&h->offline_device_lock, flags);
1279 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1280 if (memcmp(device->scsi3addr, scsi3addr,
1281 sizeof(device->scsi3addr)) == 0) {
1282 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1283 return;
1284 }
1285 }
1286 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1287
1288 /* Device is not on the list, add it. */
1289 device = kmalloc(sizeof(*device), GFP_KERNEL);
1290 if (!device) {
1291 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1292 return;
1293 }
1294 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1295 spin_lock_irqsave(&h->offline_device_lock, flags);
1296 list_add_tail(&device->offline_list, &h->offline_device_list);
1297 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1298}
1299
1300/* Print a message explaining various offline volume states */
1301static void hpsa_show_volume_status(struct ctlr_info *h,
1302 struct hpsa_scsi_dev_t *sd)
1303{
1304 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1305 dev_info(&h->pdev->dev,
1306 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1307 h->scsi_host->host_no,
1308 sd->bus, sd->target, sd->lun);
1309 switch (sd->volume_offline) {
1310 case HPSA_LV_OK:
1311 break;
1312 case HPSA_LV_UNDERGOING_ERASE:
1313 dev_info(&h->pdev->dev,
1314 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1315 h->scsi_host->host_no,
1316 sd->bus, sd->target, sd->lun);
1317 break;
1318 case HPSA_LV_UNDERGOING_RPI:
1319 dev_info(&h->pdev->dev,
1320 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
1321 h->scsi_host->host_no,
1322 sd->bus, sd->target, sd->lun);
1323 break;
1324 case HPSA_LV_PENDING_RPI:
1325 dev_info(&h->pdev->dev,
1326 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1327 h->scsi_host->host_no,
1328 sd->bus, sd->target, sd->lun);
1329 break;
1330 case HPSA_LV_ENCRYPTED_NO_KEY:
1331 dev_info(&h->pdev->dev,
1332 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1333 h->scsi_host->host_no,
1334 sd->bus, sd->target, sd->lun);
1335 break;
1336 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1337 dev_info(&h->pdev->dev,
1338 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1339 h->scsi_host->host_no,
1340 sd->bus, sd->target, sd->lun);
1341 break;
1342 case HPSA_LV_UNDERGOING_ENCRYPTION:
1343 dev_info(&h->pdev->dev,
1344 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1345 h->scsi_host->host_no,
1346 sd->bus, sd->target, sd->lun);
1347 break;
1348 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1349 dev_info(&h->pdev->dev,
1350 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1351 h->scsi_host->host_no,
1352 sd->bus, sd->target, sd->lun);
1353 break;
1354 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1355 dev_info(&h->pdev->dev,
1356 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1357 h->scsi_host->host_no,
1358 sd->bus, sd->target, sd->lun);
1359 break;
1360 case HPSA_LV_PENDING_ENCRYPTION:
1361 dev_info(&h->pdev->dev,
1362 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1363 h->scsi_host->host_no,
1364 sd->bus, sd->target, sd->lun);
1365 break;
1366 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1367 dev_info(&h->pdev->dev,
1368 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1369 h->scsi_host->host_no,
1370 sd->bus, sd->target, sd->lun);
1371 break;
1372 }
1373}
1374
Don Brace03383732015-01-23 16:43:30 -06001375/*
1376 * Figure the list of physical drive pointers for a logical drive with
1377 * raid offload configured.
1378 */
1379static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1380 struct hpsa_scsi_dev_t *dev[], int ndevices,
1381 struct hpsa_scsi_dev_t *logical_drive)
1382{
1383 struct raid_map_data *map = &logical_drive->raid_map;
1384 struct raid_map_disk_data *dd = &map->data[0];
1385 int i, j;
1386 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1387 le16_to_cpu(map->metadata_disks_per_row);
1388 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1389 le16_to_cpu(map->layout_map_count) *
1390 total_disks_per_row;
1391 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1392 total_disks_per_row;
1393 int qdepth;
1394
1395 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1396 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1397
1398 qdepth = 0;
1399 for (i = 0; i < nraid_map_entries; i++) {
1400 logical_drive->phys_disk[i] = NULL;
1401 if (!logical_drive->offload_config)
1402 continue;
1403 for (j = 0; j < ndevices; j++) {
1404 if (dev[j]->devtype != TYPE_DISK)
1405 continue;
1406 if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
1407 continue;
1408 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1409 continue;
1410
1411 logical_drive->phys_disk[i] = dev[j];
1412 if (i < nphys_disk)
1413 qdepth = min(h->nr_cmds, qdepth +
1414 logical_drive->phys_disk[i]->queue_depth);
1415 break;
1416 }
1417
1418 /*
1419 * This can happen if a physical drive is removed and
1420 * the logical drive is degraded. In that case, the RAID
1421 * map data will refer to a physical disk which isn't actually
1422 * present. And in that case offload_enabled should already
1423 * be 0, but we'll turn it off here just in case
1424 */
1425 if (!logical_drive->phys_disk[i]) {
1426 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001427 logical_drive->offload_to_be_enabled = 0;
1428 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001429 }
1430 }
1431 if (nraid_map_entries)
1432 /*
1433 * This is correct for reads, too high for full stripe writes,
1434 * way too high for partial stripe writes
1435 */
1436 logical_drive->queue_depth = qdepth;
1437 else
1438 logical_drive->queue_depth = h->nr_cmds;
1439}
1440
1441static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1442 struct hpsa_scsi_dev_t *dev[], int ndevices)
1443{
1444 int i;
1445
1446 for (i = 0; i < ndevices; i++) {
1447 if (dev[i]->devtype != TYPE_DISK)
1448 continue;
1449 if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
1450 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001451
1452 /*
1453 * If offload is currently enabled, the RAID map and
1454 * phys_disk[] assignment *better* not be changing
1455 * and since it isn't changing, we do not need to
1456 * update it.
1457 */
1458 if (dev[i]->offload_enabled)
1459 continue;
1460
Don Brace03383732015-01-23 16:43:30 -06001461 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1462 }
1463}
1464
Stephen M. Cameron4967bd32010-02-04 08:41:49 -06001465static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001466 struct hpsa_scsi_dev_t *sd[], int nsds)
1467{
1468 /* sd contains scsi3 addresses and devtypes, and inquiry
1469 * data. This function takes what's in sd to be the current
1470 * reality and updates h->dev[] to reflect that reality.
1471 */
1472 int i, entry, device_change, changes = 0;
1473 struct hpsa_scsi_dev_t *csd;
1474 unsigned long flags;
1475 struct hpsa_scsi_dev_t **added, **removed;
1476 int nadded, nremoved;
1477 struct Scsi_Host *sh = NULL;
1478
Scott Teelcfe5bad2011-10-26 16:21:07 -05001479 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1480 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001481
1482 if (!added || !removed) {
1483 dev_warn(&h->pdev->dev, "out of memory in "
1484 "adjust_hpsa_scsi_table\n");
1485 goto free_and_out;
1486 }
1487
1488 spin_lock_irqsave(&h->devlock, flags);
1489
1490 /* find any devices in h->dev[] that are not in
1491 * sd[] and remove them from h->dev[], and for any
1492 * devices which have changed, remove the old device
1493 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001494 * If minor device attributes change, just update
1495 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001496 */
1497 i = 0;
1498 nremoved = 0;
1499 nadded = 0;
1500 while (i < h->ndevices) {
1501 csd = h->dev[i];
1502 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1503 if (device_change == DEVICE_NOT_FOUND) {
1504 changes++;
1505 hpsa_scsi_remove_entry(h, hostno, i,
1506 removed, &nremoved);
1507 continue; /* remove ^^^, hence i not incremented */
1508 } else if (device_change == DEVICE_CHANGED) {
1509 changes++;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001510 hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
1511 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001512 /* Set it to NULL to prevent it from being freed
1513 * at the bottom of hpsa_update_scsi_devices()
1514 */
1515 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001516 } else if (device_change == DEVICE_UPDATED) {
1517 hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001518 }
1519 i++;
1520 }
1521
1522 /* Now, make sure every device listed in sd[] is also
1523 * listed in h->dev[], adding them if they aren't found
1524 */
1525
1526 for (i = 0; i < nsds; i++) {
1527 if (!sd[i]) /* if already added above. */
1528 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001529
1530 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1531 * as the SCSI mid-layer does not handle such devices well.
1532 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1533 * at 160Hz, and prevents the system from coming up.
1534 */
1535 if (sd[i]->volume_offline) {
1536 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001537 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001538 continue;
1539 }
1540
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001541 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1542 h->ndevices, &entry);
1543 if (device_change == DEVICE_NOT_FOUND) {
1544 changes++;
1545 if (hpsa_scsi_add_entry(h, hostno, sd[i],
1546 added, &nadded) != 0)
1547 break;
1548 sd[i] = NULL; /* prevent from being freed later. */
1549 } else if (device_change == DEVICE_CHANGED) {
1550 /* should never happen... */
1551 changes++;
1552 dev_warn(&h->pdev->dev,
1553 "device unexpectedly changed.\n");
1554 /* but if it does happen, we just ignore that device */
1555 }
1556 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001557 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1558
1559 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1560 * any logical drives that need it enabled.
1561 */
1562 for (i = 0; i < h->ndevices; i++)
1563 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
1564
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001565 spin_unlock_irqrestore(&h->devlock, flags);
1566
Stephen M. Cameron98465902014-02-21 16:25:00 -06001567 /* Monitor devices which are in one of several NOT READY states to be
1568 * brought online later. This must be done without holding h->devlock,
1569 * so don't touch h->dev[]
1570 */
1571 for (i = 0; i < nsds; i++) {
1572 if (!sd[i]) /* if already added above. */
1573 continue;
1574 if (sd[i]->volume_offline)
1575 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1576 }
1577
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001578 /* Don't notify scsi mid layer of any changes the first time through
1579 * (or if there are no changes) scsi_scan_host will do it later the
1580 * first time through.
1581 */
1582 if (hostno == -1 || !changes)
1583 goto free_and_out;
1584
1585 sh = h->scsi_host;
1586 /* Notify scsi mid layer of any removed devices */
1587 for (i = 0; i < nremoved; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001588 if (removed[i]->expose_state & HPSA_SCSI_ADD) {
1589 struct scsi_device *sdev =
1590 scsi_device_lookup(sh, removed[i]->bus,
1591 removed[i]->target, removed[i]->lun);
1592 if (sdev != NULL) {
1593 scsi_remove_device(sdev);
1594 scsi_device_put(sdev);
1595 } else {
1596 /*
1597 * We don't expect to get here.
1598 * future cmds to this device will get selection
1599 * timeout as if the device was gone.
1600 */
Webb Scales0d96ef52015-04-23 09:31:55 -05001601 hpsa_show_dev_msg(KERN_WARNING, h, removed[i],
1602 "didn't find device for removal.");
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001603 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001604 }
1605 kfree(removed[i]);
1606 removed[i] = NULL;
1607 }
1608
1609 /* Notify scsi mid layer of any added devices */
1610 for (i = 0; i < nadded; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001611 if (!(added[i]->expose_state & HPSA_SCSI_ADD))
1612 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001613 if (scsi_add_device(sh, added[i]->bus,
1614 added[i]->target, added[i]->lun) == 0)
1615 continue;
Webb Scales0d96ef52015-04-23 09:31:55 -05001616 hpsa_show_dev_msg(KERN_WARNING, h, added[i],
1617 "addition failed, device not added.");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001618 /* now we have to remove it from h->dev,
1619 * since it didn't get added to scsi mid layer
1620 */
1621 fixup_botched_add(h, added[i]);
1622 }
1623
1624free_and_out:
1625 kfree(added);
1626 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001627}
1628
1629/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001630 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001631 * Assume's h->devlock is held.
1632 */
1633static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1634 int bus, int target, int lun)
1635{
1636 int i;
1637 struct hpsa_scsi_dev_t *sd;
1638
1639 for (i = 0; i < h->ndevices; i++) {
1640 sd = h->dev[i];
1641 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1642 return sd;
1643 }
1644 return NULL;
1645}
1646
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001647static int hpsa_slave_alloc(struct scsi_device *sdev)
1648{
1649 struct hpsa_scsi_dev_t *sd;
1650 unsigned long flags;
1651 struct ctlr_info *h;
1652
1653 h = sdev_to_hba(sdev);
1654 spin_lock_irqsave(&h->devlock, flags);
1655 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1656 sdev_id(sdev), sdev->lun);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001657 if (likely(sd)) {
Don Brace03383732015-01-23 16:43:30 -06001658 atomic_set(&sd->ioaccel_cmds_out, 0);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001659 sdev->hostdata = (sd->expose_state & HPSA_SCSI_ADD) ? sd : NULL;
1660 } else
1661 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001662 spin_unlock_irqrestore(&h->devlock, flags);
1663 return 0;
1664}
1665
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001666/* configure scsi device based on internal per-device structure */
1667static int hpsa_slave_configure(struct scsi_device *sdev)
1668{
1669 struct hpsa_scsi_dev_t *sd;
1670 int queue_depth;
1671
1672 sd = sdev->hostdata;
1673 sdev->no_uld_attach = !sd || !(sd->expose_state & HPSA_ULD_ATTACH);
1674
1675 if (sd)
1676 queue_depth = sd->queue_depth != 0 ?
1677 sd->queue_depth : sdev->host->can_queue;
1678 else
1679 queue_depth = sdev->host->can_queue;
1680
1681 scsi_change_queue_depth(sdev, queue_depth);
1682
1683 return 0;
1684}
1685
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001686static void hpsa_slave_destroy(struct scsi_device *sdev)
1687{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001688 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001689}
1690
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001691static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1692{
1693 int i;
1694
1695 if (!h->cmd_sg_list)
1696 return;
1697 for (i = 0; i < h->nr_cmds; i++) {
1698 kfree(h->cmd_sg_list[i]);
1699 h->cmd_sg_list[i] = NULL;
1700 }
1701 kfree(h->cmd_sg_list);
1702 h->cmd_sg_list = NULL;
1703}
1704
1705static int hpsa_allocate_sg_chain_blocks(struct ctlr_info *h)
1706{
1707 int i;
1708
1709 if (h->chainsize <= 0)
1710 return 0;
1711
1712 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1713 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001714 if (!h->cmd_sg_list) {
1715 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001716 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001717 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001718 for (i = 0; i < h->nr_cmds; i++) {
1719 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1720 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001721 if (!h->cmd_sg_list[i]) {
1722 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001723 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001724 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001725 }
1726 return 0;
1727
1728clean:
1729 hpsa_free_sg_chain_blocks(h);
1730 return -ENOMEM;
1731}
1732
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001733static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001734 struct CommandList *c)
1735{
1736 struct SGDescriptor *chain_sg, *chain_block;
1737 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001738 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001739
1740 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
1741 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001742 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
1743 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06001744 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001745 chain_sg->Len = cpu_to_le32(chain_len);
1746 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001747 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001748 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1749 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001750 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001751 return -1;
1752 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001753 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001754 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001755}
1756
1757static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
1758 struct CommandList *c)
1759{
1760 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001761
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001762 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001763 return;
1764
1765 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001766 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
1767 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001768}
1769
Scott Teela09c1442014-02-18 13:57:21 -06001770
1771/* Decode the various types of errors on ioaccel2 path.
1772 * Return 1 for any error that should generate a RAID path retry.
1773 * Return 0 for errors that don't require a RAID path retry.
1774 */
1775static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06001776 struct CommandList *c,
1777 struct scsi_cmnd *cmd,
1778 struct io_accel2_cmd *c2)
1779{
1780 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06001781 int retry = 0;
Scott Teelc3497752014-02-18 13:56:34 -06001782
1783 switch (c2->error_data.serv_response) {
1784 case IOACCEL2_SERV_RESPONSE_COMPLETE:
1785 switch (c2->error_data.status) {
1786 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
1787 break;
1788 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
1789 dev_warn(&h->pdev->dev,
1790 "%s: task complete with check condition.\n",
1791 "HP SSD Smart Path");
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001792 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06001793 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001794 IOACCEL2_SENSE_DATA_PRESENT) {
1795 memset(cmd->sense_buffer, 0,
1796 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06001797 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001798 }
Scott Teelc3497752014-02-18 13:56:34 -06001799 /* copy the sense data */
1800 data_len = c2->error_data.sense_data_len;
1801 if (data_len > SCSI_SENSE_BUFFERSIZE)
1802 data_len = SCSI_SENSE_BUFFERSIZE;
1803 if (data_len > sizeof(c2->error_data.sense_data_buff))
1804 data_len =
1805 sizeof(c2->error_data.sense_data_buff);
1806 memcpy(cmd->sense_buffer,
1807 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06001808 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001809 break;
1810 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
1811 dev_warn(&h->pdev->dev,
1812 "%s: task complete with BUSY status.\n",
1813 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001814 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001815 break;
1816 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
1817 dev_warn(&h->pdev->dev,
1818 "%s: task complete with reservation conflict.\n",
1819 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001820 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001821 break;
1822 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
1823 /* Make scsi midlayer do unlimited retries */
1824 cmd->result = DID_IMM_RETRY << 16;
1825 break;
1826 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
1827 dev_warn(&h->pdev->dev,
1828 "%s: task complete with aborted status.\n",
1829 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001830 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001831 break;
1832 default:
1833 dev_warn(&h->pdev->dev,
1834 "%s: task complete with unrecognized status: 0x%02x\n",
1835 "HP SSD Smart Path", c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001836 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001837 break;
1838 }
1839 break;
1840 case IOACCEL2_SERV_RESPONSE_FAILURE:
1841 /* don't expect to get here. */
1842 dev_warn(&h->pdev->dev,
1843 "unexpected delivery or target failure, status = 0x%02x\n",
1844 c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001845 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001846 break;
1847 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
1848 break;
1849 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
1850 break;
1851 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
1852 dev_warn(&h->pdev->dev, "task management function rejected.\n");
Scott Teela09c1442014-02-18 13:57:21 -06001853 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001854 break;
1855 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
1856 dev_warn(&h->pdev->dev, "task management function invalid LUN\n");
1857 break;
1858 default:
1859 dev_warn(&h->pdev->dev,
1860 "%s: Unrecognized server response: 0x%02x\n",
Scott Teela09c1442014-02-18 13:57:21 -06001861 "HP SSD Smart Path",
1862 c2->error_data.serv_response);
1863 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001864 break;
1865 }
Scott Teela09c1442014-02-18 13:57:21 -06001866
1867 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06001868}
1869
1870static void process_ioaccel2_completion(struct ctlr_info *h,
1871 struct CommandList *c, struct scsi_cmnd *cmd,
1872 struct hpsa_scsi_dev_t *dev)
1873{
1874 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
1875
1876 /* check for good status */
1877 if (likely(c2->error_data.serv_response == 0 &&
1878 c2->error_data.status == 0)) {
1879 cmd_free(h, c);
1880 cmd->scsi_done(cmd);
1881 return;
1882 }
1883
1884 /* Any RAID offload error results in retry which will use
1885 * the normal I/O path so the controller can handle whatever's
1886 * wrong.
1887 */
1888 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
1889 c2->error_data.serv_response ==
1890 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06001891 if (c2->error_data.status ==
1892 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
1893 dev->offload_enabled = 0;
1894 goto retry_cmd;
Scott Teelc3497752014-02-18 13:56:34 -06001895 }
Don Brace080ef1c2015-01-23 16:43:25 -06001896
1897 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
1898 goto retry_cmd;
1899
Scott Teelc3497752014-02-18 13:56:34 -06001900 cmd_free(h, c);
1901 cmd->scsi_done(cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06001902 return;
1903
1904retry_cmd:
1905 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
1906 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
Scott Teelc3497752014-02-18 13:56:34 -06001907}
1908
Stephen Cameron9437ac42015-04-23 09:32:16 -05001909/* Returns 0 on success, < 0 otherwise. */
1910static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
1911 struct CommandList *cp)
1912{
1913 u8 tmf_status = cp->err_info->ScsiStatus;
1914
1915 switch (tmf_status) {
1916 case CISS_TMF_COMPLETE:
1917 /*
1918 * CISS_TMF_COMPLETE never happens, instead,
1919 * ei->CommandStatus == 0 for this case.
1920 */
1921 case CISS_TMF_SUCCESS:
1922 return 0;
1923 case CISS_TMF_INVALID_FRAME:
1924 case CISS_TMF_NOT_SUPPORTED:
1925 case CISS_TMF_FAILED:
1926 case CISS_TMF_WRONG_LUN:
1927 case CISS_TMF_OVERLAPPED_TAG:
1928 break;
1929 default:
1930 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
1931 tmf_status);
1932 break;
1933 }
1934 return -tmf_status;
1935}
1936
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05001937static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001938{
1939 struct scsi_cmnd *cmd;
1940 struct ctlr_info *h;
1941 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001942 struct hpsa_scsi_dev_t *dev;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001943
Stephen Cameron9437ac42015-04-23 09:32:16 -05001944 u8 sense_key;
1945 u8 asc; /* additional sense code */
1946 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05001947 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001948
1949 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06001950 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001951 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001952 dev = cmd->device->hostdata;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001953
1954 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06001955 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06001956 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001957 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001958
1959 cmd->result = (DID_OK << 16); /* host byte */
1960 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06001961
Don Brace03383732015-01-23 16:43:30 -06001962 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
1963 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
1964
Webb Scales25163bd2015-04-23 09:32:00 -05001965 /*
1966 * We check for lockup status here as it may be set for
1967 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
1968 * fail_all_oustanding_cmds()
1969 */
1970 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
1971 /* DID_NO_CONNECT will prevent a retry */
1972 cmd->result = DID_NO_CONNECT << 16;
1973 cmd_free(h, cp);
1974 cmd->scsi_done(cmd);
1975 return;
1976 }
1977
Scott Teelc3497752014-02-18 13:56:34 -06001978 if (cp->cmd_type == CMD_IOACCEL2)
1979 return process_ioaccel2_completion(h, cp, cmd, dev);
1980
Robert Elliott6aa4c362014-07-03 10:18:19 -05001981 scsi_set_resid(cmd, ei->ResidualCnt);
1982 if (ei->CommandStatus == 0) {
Don Brace03383732015-01-23 16:43:30 -06001983 if (cp->cmd_type == CMD_IOACCEL1)
1984 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
Robert Elliott6aa4c362014-07-03 10:18:19 -05001985 cmd_free(h, cp);
1986 cmd->scsi_done(cmd);
1987 return;
1988 }
1989
Matt Gatese1f7de02014-02-18 13:55:17 -06001990 /* For I/O accelerator commands, copy over some fields to the normal
1991 * CISS header used below for error handling.
1992 */
1993 if (cp->cmd_type == CMD_IOACCEL1) {
1994 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06001995 cp->Header.SGList = scsi_sg_count(cmd);
1996 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
1997 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
1998 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001999 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002000 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2001 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002002
2003 /* Any RAID offload error results in retry which will use
2004 * the normal I/O path so the controller can handle whatever's
2005 * wrong.
2006 */
2007 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
2008 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2009 dev->offload_enabled = 0;
Don Brace080ef1c2015-01-23 16:43:25 -06002010 INIT_WORK(&cp->work, hpsa_command_resubmit_worker);
2011 queue_work_on(raw_smp_processor_id(),
2012 h->resubmit_wq, &cp->work);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002013 return;
2014 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002015 }
2016
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002017 /* an error has occurred */
2018 switch (ei->CommandStatus) {
2019
2020 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002021 cmd->result |= ei->ScsiStatus;
2022 /* copy the sense data */
2023 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2024 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2025 else
2026 sense_data_size = sizeof(ei->SenseInfo);
2027 if (ei->SenseLen < sense_data_size)
2028 sense_data_size = ei->SenseLen;
2029 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2030 if (ei->ScsiStatus)
2031 decode_sense_data(ei->SenseInfo, sense_data_size,
2032 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002033 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002034 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002035 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002036 break;
2037 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002038 break;
2039 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002040 /* Problem was not a check condition
2041 * Pass it up to the upper layers...
2042 */
2043 if (ei->ScsiStatus) {
2044 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2045 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2046 "Returning result: 0x%x\n",
2047 cp, ei->ScsiStatus,
2048 sense_key, asc, ascq,
2049 cmd->result);
2050 } else { /* scsi status is zero??? How??? */
2051 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2052 "Returning no connection.\n", cp),
2053
2054 /* Ordinarily, this case should never happen,
2055 * but there is a bug in some released firmware
2056 * revisions that allows it to happen if, for
2057 * example, a 4100 backplane loses power and
2058 * the tape drive is in it. We assume that
2059 * it's a fatal error of some kind because we
2060 * can't show that it wasn't. We will make it
2061 * look like selection timeout since that is
2062 * the most common reason for this to occur,
2063 * and it's severe enough.
2064 */
2065
2066 cmd->result = DID_NO_CONNECT << 16;
2067 }
2068 break;
2069
2070 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2071 break;
2072 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002073 dev_warn(&h->pdev->dev,
2074 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002075 break;
2076 case CMD_INVALID: {
2077 /* print_bytes(cp, sizeof(*cp), 1, 0);
2078 print_cmd(cp); */
2079 /* We get CMD_INVALID if you address a non-existent device
2080 * instead of a selection timeout (no response). You will
2081 * see this if you yank out a drive, then try to access it.
2082 * This is kind of a shame because it means that any other
2083 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2084 * missing target. */
2085 cmd->result = DID_NO_CONNECT << 16;
2086 }
2087 break;
2088 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002089 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002090 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2091 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002092 break;
2093 case CMD_HARDWARE_ERR:
2094 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002095 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2096 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002097 break;
2098 case CMD_CONNECTION_LOST:
2099 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002100 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2101 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002102 break;
2103 case CMD_ABORTED:
2104 cmd->result = DID_ABORT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002105 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2106 cp->Request.CDB, ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002107 break;
2108 case CMD_ABORT_FAILED:
2109 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002110 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2111 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002112 break;
2113 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002114 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002115 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2116 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002117 break;
2118 case CMD_TIMEOUT:
2119 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002120 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2121 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002122 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002123 case CMD_UNABORTABLE:
2124 cmd->result = DID_ERROR << 16;
2125 dev_warn(&h->pdev->dev, "Command unabortable\n");
2126 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002127 case CMD_TMF_STATUS:
2128 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2129 cmd->result = DID_ERROR << 16;
2130 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002131 case CMD_IOACCEL_DISABLED:
2132 /* This only handles the direct pass-through case since RAID
2133 * offload is handled above. Just attempt a retry.
2134 */
2135 cmd->result = DID_SOFT_ERROR << 16;
2136 dev_warn(&h->pdev->dev,
2137 "cp %p had HP SSD Smart Path error\n", cp);
2138 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002139 default:
2140 cmd->result = DID_ERROR << 16;
2141 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2142 cp, ei->CommandStatus);
2143 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002144 cmd_free(h, cp);
Tomas Henzl2cc5bfa2013-08-01 15:14:00 +02002145 cmd->scsi_done(cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002146}
2147
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002148static void hpsa_pci_unmap(struct pci_dev *pdev,
2149 struct CommandList *c, int sg_used, int data_direction)
2150{
2151 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002152
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002153 for (i = 0; i < sg_used; i++)
2154 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2155 le32_to_cpu(c->SG[i].Len),
2156 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002157}
2158
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002159static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002160 struct CommandList *cp,
2161 unsigned char *buf,
2162 size_t buflen,
2163 int data_direction)
2164{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002165 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002166
2167 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2168 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002169 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002170 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002171 }
2172
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002173 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002174 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002175 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002176 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002177 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002178 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002179 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002180 cp->SG[0].Addr = cpu_to_le64(addr64);
2181 cp->SG[0].Len = cpu_to_le32(buflen);
2182 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2183 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2184 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002185 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002186}
2187
Webb Scales25163bd2015-04-23 09:32:00 -05002188#define NO_TIMEOUT ((unsigned long) -1)
2189#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2190static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2191 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002192{
2193 DECLARE_COMPLETION_ONSTACK(wait);
2194
2195 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002196 __enqueue_cmd_and_start_io(h, c, reply_queue);
2197 if (timeout_msecs == NO_TIMEOUT) {
2198 /* TODO: get rid of this no-timeout thing */
2199 wait_for_completion_io(&wait);
2200 return IO_OK;
2201 }
2202 if (!wait_for_completion_io_timeout(&wait,
2203 msecs_to_jiffies(timeout_msecs))) {
2204 dev_warn(&h->pdev->dev, "Command timed out.\n");
2205 return -ETIMEDOUT;
2206 }
2207 return IO_OK;
2208}
2209
2210static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2211 int reply_queue, unsigned long timeout_msecs)
2212{
2213 if (unlikely(lockup_detected(h))) {
2214 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2215 return IO_OK;
2216 }
2217 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002218}
2219
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002220static u32 lockup_detected(struct ctlr_info *h)
2221{
2222 int cpu;
2223 u32 rc, *lockup_detected;
2224
2225 cpu = get_cpu();
2226 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2227 rc = *lockup_detected;
2228 put_cpu();
2229 return rc;
2230}
2231
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002232#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002233static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2234 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002235{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002236 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002237 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002238
2239 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002240 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002241 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2242 timeout_msecs);
2243 if (rc)
2244 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002245 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002246 if (retry_count > 3) {
2247 msleep(backoff_time);
2248 if (backoff_time < 1000)
2249 backoff_time *= 2;
2250 }
Matt Bondurant852af202012-05-01 11:42:35 -05002251 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002252 check_for_busy(h, c)) &&
2253 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002254 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002255 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2256 rc = -EIO;
2257 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002258}
2259
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002260static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2261 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002262{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002263 const u8 *cdb = c->Request.CDB;
2264 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002265
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002266 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2267 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2268 txt, lun[0], lun[1], lun[2], lun[3],
2269 lun[4], lun[5], lun[6], lun[7],
2270 cdb[0], cdb[1], cdb[2], cdb[3],
2271 cdb[4], cdb[5], cdb[6], cdb[7],
2272 cdb[8], cdb[9], cdb[10], cdb[11],
2273 cdb[12], cdb[13], cdb[14], cdb[15]);
2274}
2275
2276static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2277 struct CommandList *cp)
2278{
2279 const struct ErrorInfo *ei = cp->err_info;
2280 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002281 u8 sense_key, asc, ascq;
2282 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002283
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002284 switch (ei->CommandStatus) {
2285 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002286 if (ei->SenseLen > sizeof(ei->SenseInfo))
2287 sense_len = sizeof(ei->SenseInfo);
2288 else
2289 sense_len = ei->SenseLen;
2290 decode_sense_data(ei->SenseInfo, sense_len,
2291 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002292 hpsa_print_cmd(h, "SCSI status", cp);
2293 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002294 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2295 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002296 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002297 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002298 if (ei->ScsiStatus == 0)
2299 dev_warn(d, "SCSI status is abnormally zero. "
2300 "(probably indicates selection timeout "
2301 "reported incorrectly due to a known "
2302 "firmware bug, circa July, 2001.)\n");
2303 break;
2304 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002305 break;
2306 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002307 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002308 break;
2309 case CMD_INVALID: {
2310 /* controller unfortunately reports SCSI passthru's
2311 * to non-existent targets as invalid commands.
2312 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002313 hpsa_print_cmd(h, "invalid command", cp);
2314 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002315 }
2316 break;
2317 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002318 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002319 break;
2320 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002321 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002322 break;
2323 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002324 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002325 break;
2326 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002327 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002328 break;
2329 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002330 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002331 break;
2332 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002333 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002334 break;
2335 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002336 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002337 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002338 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002339 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002340 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002341 case CMD_CTLR_LOCKUP:
2342 hpsa_print_cmd(h, "controller lockup detected", cp);
2343 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002344 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002345 hpsa_print_cmd(h, "unknown status", cp);
2346 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002347 ei->CommandStatus);
2348 }
2349}
2350
2351static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002352 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002353 unsigned char bufsize)
2354{
2355 int rc = IO_OK;
2356 struct CommandList *c;
2357 struct ErrorInfo *ei;
2358
Stephen Cameron45fcb862015-01-23 16:43:04 -06002359 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002360
Stephen Cameron574f05d2015-01-23 16:43:20 -06002361 if (c == NULL) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06002362 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06002363 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002364 }
2365
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002366 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2367 page, scsi3addr, TYPE_CMD)) {
2368 rc = -1;
2369 goto out;
2370 }
Webb Scales25163bd2015-04-23 09:32:00 -05002371 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2372 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2373 if (rc)
2374 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002375 ei = c->err_info;
2376 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002377 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002378 rc = -1;
2379 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002380out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002381 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002382 return rc;
2383}
2384
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002385static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
2386 unsigned char *scsi3addr, unsigned char page,
2387 struct bmic_controller_parameters *buf, size_t bufsize)
2388{
2389 int rc = IO_OK;
2390 struct CommandList *c;
2391 struct ErrorInfo *ei;
2392
Stephen Cameron45fcb862015-01-23 16:43:04 -06002393 c = cmd_alloc(h);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002394 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002395 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002396 return -ENOMEM;
2397 }
2398
2399 if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize,
2400 page, scsi3addr, TYPE_CMD)) {
2401 rc = -1;
2402 goto out;
2403 }
Webb Scales25163bd2015-04-23 09:32:00 -05002404 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2405 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2406 if (rc)
2407 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002408 ei = c->err_info;
2409 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2410 hpsa_scsi_interpret_error(h, c);
2411 rc = -1;
2412 }
2413out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002414 cmd_free(h, c);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002415 return rc;
2416 }
2417
Scott Teelbf711ac2014-02-18 13:56:39 -06002418static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002419 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002420{
2421 int rc = IO_OK;
2422 struct CommandList *c;
2423 struct ErrorInfo *ei;
2424
Stephen Cameron45fcb862015-01-23 16:43:04 -06002425 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002426
2427 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002428 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Camerone9ea04a2010-02-25 14:03:06 -06002429 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002430 }
2431
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002432 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teelbf711ac2014-02-18 13:56:39 -06002433 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2434 scsi3addr, TYPE_MSG);
2435 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
Webb Scales25163bd2015-04-23 09:32:00 -05002436 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
2437 if (rc) {
2438 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2439 goto out;
2440 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002441 /* no unmap needed here because no data xfer. */
2442
2443 ei = c->err_info;
2444 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002445 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002446 rc = -1;
2447 }
Webb Scales25163bd2015-04-23 09:32:00 -05002448out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002449 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002450 return rc;
2451}
2452
2453static void hpsa_get_raid_level(struct ctlr_info *h,
2454 unsigned char *scsi3addr, unsigned char *raid_level)
2455{
2456 int rc;
2457 unsigned char *buf;
2458
2459 *raid_level = RAID_UNKNOWN;
2460 buf = kzalloc(64, GFP_KERNEL);
2461 if (!buf)
2462 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002463 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002464 if (rc == 0)
2465 *raid_level = buf[8];
2466 if (*raid_level > RAID_UNKNOWN)
2467 *raid_level = RAID_UNKNOWN;
2468 kfree(buf);
2469 return;
2470}
2471
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002472#define HPSA_MAP_DEBUG
2473#ifdef HPSA_MAP_DEBUG
2474static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2475 struct raid_map_data *map_buff)
2476{
2477 struct raid_map_disk_data *dd = &map_buff->data[0];
2478 int map, row, col;
2479 u16 map_cnt, row_cnt, disks_per_row;
2480
2481 if (rc != 0)
2482 return;
2483
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002484 /* Show details only if debugging has been activated. */
2485 if (h->raid_offload_debug < 2)
2486 return;
2487
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002488 dev_info(&h->pdev->dev, "structure_size = %u\n",
2489 le32_to_cpu(map_buff->structure_size));
2490 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2491 le32_to_cpu(map_buff->volume_blk_size));
2492 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2493 le64_to_cpu(map_buff->volume_blk_cnt));
2494 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2495 map_buff->phys_blk_shift);
2496 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2497 map_buff->parity_rotation_shift);
2498 dev_info(&h->pdev->dev, "strip_size = %u\n",
2499 le16_to_cpu(map_buff->strip_size));
2500 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2501 le64_to_cpu(map_buff->disk_starting_blk));
2502 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2503 le64_to_cpu(map_buff->disk_blk_cnt));
2504 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2505 le16_to_cpu(map_buff->data_disks_per_row));
2506 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2507 le16_to_cpu(map_buff->metadata_disks_per_row));
2508 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2509 le16_to_cpu(map_buff->row_cnt));
2510 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2511 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002512 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002513 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002514 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2515 le16_to_cpu(map_buff->flags) &
2516 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002517 dev_info(&h->pdev->dev, "dekindex = %u\n",
2518 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002519 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2520 for (map = 0; map < map_cnt; map++) {
2521 dev_info(&h->pdev->dev, "Map%u:\n", map);
2522 row_cnt = le16_to_cpu(map_buff->row_cnt);
2523 for (row = 0; row < row_cnt; row++) {
2524 dev_info(&h->pdev->dev, " Row%u:\n", row);
2525 disks_per_row =
2526 le16_to_cpu(map_buff->data_disks_per_row);
2527 for (col = 0; col < disks_per_row; col++, dd++)
2528 dev_info(&h->pdev->dev,
2529 " D%02u: h=0x%04x xor=%u,%u\n",
2530 col, dd->ioaccel_handle,
2531 dd->xor_mult[0], dd->xor_mult[1]);
2532 disks_per_row =
2533 le16_to_cpu(map_buff->metadata_disks_per_row);
2534 for (col = 0; col < disks_per_row; col++, dd++)
2535 dev_info(&h->pdev->dev,
2536 " M%02u: h=0x%04x xor=%u,%u\n",
2537 col, dd->ioaccel_handle,
2538 dd->xor_mult[0], dd->xor_mult[1]);
2539 }
2540 }
2541}
2542#else
2543static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2544 __attribute__((unused)) int rc,
2545 __attribute__((unused)) struct raid_map_data *map_buff)
2546{
2547}
2548#endif
2549
2550static int hpsa_get_raid_map(struct ctlr_info *h,
2551 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2552{
2553 int rc = 0;
2554 struct CommandList *c;
2555 struct ErrorInfo *ei;
2556
Stephen Cameron45fcb862015-01-23 16:43:04 -06002557 c = cmd_alloc(h);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002558 if (c == NULL) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06002559 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002560 return -ENOMEM;
2561 }
2562 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2563 sizeof(this_device->raid_map), 0,
2564 scsi3addr, TYPE_CMD)) {
2565 dev_warn(&h->pdev->dev, "Out of memory in hpsa_get_raid_map()\n");
Webb Scales25163bd2015-04-23 09:32:00 -05002566 rc = -ENOMEM;
2567 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002568 }
Webb Scales25163bd2015-04-23 09:32:00 -05002569 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2570 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2571 if (rc)
2572 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002573 ei = c->err_info;
2574 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002575 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05002576 rc = -1;
2577 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002578 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002579 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002580
2581 /* @todo in the future, dynamically allocate RAID map memory */
2582 if (le32_to_cpu(this_device->raid_map.structure_size) >
2583 sizeof(this_device->raid_map)) {
2584 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2585 rc = -1;
2586 }
2587 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
2588 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05002589out:
2590 cmd_free(h, c);
2591 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002592}
2593
Don Brace03383732015-01-23 16:43:30 -06002594static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
2595 unsigned char scsi3addr[], u16 bmic_device_index,
2596 struct bmic_identify_physical_device *buf, size_t bufsize)
2597{
2598 int rc = IO_OK;
2599 struct CommandList *c;
2600 struct ErrorInfo *ei;
2601
2602 c = cmd_alloc(h);
2603 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
2604 0, RAID_CTLR_LUNID, TYPE_CMD);
2605 if (rc)
2606 goto out;
2607
2608 c->Request.CDB[2] = bmic_device_index & 0xff;
2609 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
2610
Webb Scales25163bd2015-04-23 09:32:00 -05002611 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
2612 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06002613 ei = c->err_info;
2614 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2615 hpsa_scsi_interpret_error(h, c);
2616 rc = -1;
2617 }
2618out:
2619 cmd_free(h, c);
2620 return rc;
2621}
2622
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002623static int hpsa_vpd_page_supported(struct ctlr_info *h,
2624 unsigned char scsi3addr[], u8 page)
2625{
2626 int rc;
2627 int i;
2628 int pages;
2629 unsigned char *buf, bufsize;
2630
2631 buf = kzalloc(256, GFP_KERNEL);
2632 if (!buf)
2633 return 0;
2634
2635 /* Get the size of the page list first */
2636 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2637 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2638 buf, HPSA_VPD_HEADER_SZ);
2639 if (rc != 0)
2640 goto exit_unsupported;
2641 pages = buf[3];
2642 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
2643 bufsize = pages + HPSA_VPD_HEADER_SZ;
2644 else
2645 bufsize = 255;
2646
2647 /* Get the whole VPD page list */
2648 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2649 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2650 buf, bufsize);
2651 if (rc != 0)
2652 goto exit_unsupported;
2653
2654 pages = buf[3];
2655 for (i = 1; i <= pages; i++)
2656 if (buf[3 + i] == page)
2657 goto exit_supported;
2658exit_unsupported:
2659 kfree(buf);
2660 return 0;
2661exit_supported:
2662 kfree(buf);
2663 return 1;
2664}
2665
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002666static void hpsa_get_ioaccel_status(struct ctlr_info *h,
2667 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2668{
2669 int rc;
2670 unsigned char *buf;
2671 u8 ioaccel_status;
2672
2673 this_device->offload_config = 0;
2674 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002675 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002676
2677 buf = kzalloc(64, GFP_KERNEL);
2678 if (!buf)
2679 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002680 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
2681 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002682 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002683 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002684 if (rc != 0)
2685 goto out;
2686
2687#define IOACCEL_STATUS_BYTE 4
2688#define OFFLOAD_CONFIGURED_BIT 0x01
2689#define OFFLOAD_ENABLED_BIT 0x02
2690 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
2691 this_device->offload_config =
2692 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
2693 if (this_device->offload_config) {
2694 this_device->offload_enabled =
2695 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
2696 if (hpsa_get_raid_map(h, scsi3addr, this_device))
2697 this_device->offload_enabled = 0;
2698 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002699 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002700out:
2701 kfree(buf);
2702 return;
2703}
2704
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002705/* Get the device id from inquiry page 0x83 */
2706static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
2707 unsigned char *device_id, int buflen)
2708{
2709 int rc;
2710 unsigned char *buf;
2711
2712 if (buflen > 16)
2713 buflen = 16;
2714 buf = kzalloc(64, GFP_KERNEL);
2715 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05002716 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002717 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002718 if (rc == 0)
2719 memcpy(device_id, &buf[8], buflen);
2720 kfree(buf);
2721 return rc != 0;
2722}
2723
2724static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06002725 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002726 int extended_response)
2727{
2728 int rc = IO_OK;
2729 struct CommandList *c;
2730 unsigned char scsi3addr[8];
2731 struct ErrorInfo *ei;
2732
Stephen Cameron45fcb862015-01-23 16:43:04 -06002733 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002734 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002735 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002736 return -1;
2737 }
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06002738 /* address the controller */
2739 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002740 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
2741 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
2742 rc = -1;
2743 goto out;
2744 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002745 if (extended_response)
2746 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05002747 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2748 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2749 if (rc)
2750 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002751 ei = c->err_info;
2752 if (ei->CommandStatus != 0 &&
2753 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002754 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002755 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002756 } else {
Don Brace03383732015-01-23 16:43:30 -06002757 struct ReportLUNdata *rld = buf;
2758
2759 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002760 dev_err(&h->pdev->dev,
2761 "report luns requested format %u, got %u\n",
2762 extended_response,
Don Brace03383732015-01-23 16:43:30 -06002763 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002764 rc = -1;
2765 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002766 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002767out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002768 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002769 return rc;
2770}
2771
2772static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06002773 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002774{
Don Brace03383732015-01-23 16:43:30 -06002775 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
2776 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002777}
2778
2779static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
2780 struct ReportLUNdata *buf, int bufsize)
2781{
2782 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
2783}
2784
2785static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
2786 int bus, int target, int lun)
2787{
2788 device->bus = bus;
2789 device->target = target;
2790 device->lun = lun;
2791}
2792
Stephen M. Cameron98465902014-02-21 16:25:00 -06002793/* Use VPD inquiry to get details of volume status */
2794static int hpsa_get_volume_status(struct ctlr_info *h,
2795 unsigned char scsi3addr[])
2796{
2797 int rc;
2798 int status;
2799 int size;
2800 unsigned char *buf;
2801
2802 buf = kzalloc(64, GFP_KERNEL);
2803 if (!buf)
2804 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2805
2806 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002807 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06002808 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002809
2810 /* Get the size of the VPD return buffer */
2811 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2812 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002813 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002814 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002815 size = buf[3];
2816
2817 /* Now get the whole VPD buffer */
2818 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2819 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002820 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002821 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002822 status = buf[4]; /* status byte */
2823
2824 kfree(buf);
2825 return status;
2826exit_failed:
2827 kfree(buf);
2828 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2829}
2830
2831/* Determine offline status of a volume.
2832 * Return either:
2833 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002834 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002835 * # (integer code indicating one of several NOT READY states
2836 * describing why a volume is to be kept offline)
2837 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002838static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06002839 unsigned char scsi3addr[])
2840{
2841 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002842 unsigned char *sense;
2843 u8 sense_key, asc, ascq;
2844 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05002845 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002846 u16 cmd_status;
2847 u8 scsi_status;
2848#define ASC_LUN_NOT_READY 0x04
2849#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
2850#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
2851
2852 c = cmd_alloc(h);
2853 if (!c)
2854 return 0;
2855 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05002856 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
2857 if (rc) {
2858 cmd_free(h, c);
2859 return 0;
2860 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06002861 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002862 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
2863 sense_len = sizeof(c->err_info->SenseInfo);
2864 else
2865 sense_len = c->err_info->SenseLen;
2866 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06002867 cmd_status = c->err_info->CommandStatus;
2868 scsi_status = c->err_info->ScsiStatus;
2869 cmd_free(h, c);
2870 /* Is the volume 'not ready'? */
2871 if (cmd_status != CMD_TARGET_STATUS ||
2872 scsi_status != SAM_STAT_CHECK_CONDITION ||
2873 sense_key != NOT_READY ||
2874 asc != ASC_LUN_NOT_READY) {
2875 return 0;
2876 }
2877
2878 /* Determine the reason for not ready state */
2879 ldstat = hpsa_get_volume_status(h, scsi3addr);
2880
2881 /* Keep volume offline in certain cases: */
2882 switch (ldstat) {
2883 case HPSA_LV_UNDERGOING_ERASE:
2884 case HPSA_LV_UNDERGOING_RPI:
2885 case HPSA_LV_PENDING_RPI:
2886 case HPSA_LV_ENCRYPTED_NO_KEY:
2887 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
2888 case HPSA_LV_UNDERGOING_ENCRYPTION:
2889 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
2890 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
2891 return ldstat;
2892 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
2893 /* If VPD status page isn't available,
2894 * use ASC/ASCQ to determine state
2895 */
2896 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
2897 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
2898 return ldstat;
2899 break;
2900 default:
2901 break;
2902 }
2903 return 0;
2904}
2905
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05002906/*
2907 * Find out if a logical device supports aborts by simply trying one.
2908 * Smart Array may claim not to support aborts on logical drives, but
2909 * if a MSA2000 * is connected, the drives on that will be presented
2910 * by the Smart Array as logical drives, and aborts may be sent to
2911 * those devices successfully. So the simplest way to find out is
2912 * to simply try an abort and see how the device responds.
2913 */
2914static int hpsa_device_supports_aborts(struct ctlr_info *h,
2915 unsigned char *scsi3addr)
2916{
2917 struct CommandList *c;
2918 struct ErrorInfo *ei;
2919 int rc = 0;
2920
2921 u64 tag = (u64) -1; /* bogus tag */
2922
2923 /* Assume that physical devices support aborts */
2924 if (!is_logical_dev_addr_mode(scsi3addr))
2925 return 1;
2926
2927 c = cmd_alloc(h);
2928 if (!c)
2929 return -ENOMEM;
2930 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
2931 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
2932 /* no unmap needed here because no data xfer. */
2933 ei = c->err_info;
2934 switch (ei->CommandStatus) {
2935 case CMD_INVALID:
2936 rc = 0;
2937 break;
2938 case CMD_UNABORTABLE:
2939 case CMD_ABORT_FAILED:
2940 rc = 1;
2941 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002942 case CMD_TMF_STATUS:
2943 rc = hpsa_evaluate_tmf_status(h, c);
2944 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05002945 default:
2946 rc = 0;
2947 break;
2948 }
2949 cmd_free(h, c);
2950 return rc;
2951}
2952
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002953static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002954 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
2955 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002956{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002957
2958#define OBDR_SIG_OFFSET 43
2959#define OBDR_TAPE_SIG "$DR-10"
2960#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
2961#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
2962
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06002963 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002964 unsigned char *obdr_sig;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002965
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06002966 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002967 if (!inq_buff)
2968 goto bail_out;
2969
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002970 /* Do an inquiry to the device to see what it is. */
2971 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
2972 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
2973 /* Inquiry failed (msg printed already) */
2974 dev_err(&h->pdev->dev,
2975 "hpsa_update_device_info: inquiry failed\n");
2976 goto bail_out;
2977 }
2978
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002979 this_device->devtype = (inq_buff[0] & 0x1f);
2980 memcpy(this_device->scsi3addr, scsi3addr, 8);
2981 memcpy(this_device->vendor, &inq_buff[8],
2982 sizeof(this_device->vendor));
2983 memcpy(this_device->model, &inq_buff[16],
2984 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002985 memset(this_device->device_id, 0,
2986 sizeof(this_device->device_id));
2987 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
2988 sizeof(this_device->device_id));
2989
2990 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002991 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002992 int volume_offline;
2993
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002994 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002995 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
2996 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002997 volume_offline = hpsa_volume_offline(h, scsi3addr);
2998 if (volume_offline < 0 || volume_offline > 0xff)
2999 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3000 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003001 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003002 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003003 this_device->offload_config = 0;
3004 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003005 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003006 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003007 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003008 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003009
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003010 if (is_OBDR_device) {
3011 /* See if this is a One-Button-Disaster-Recovery device
3012 * by looking for "$DR-10" at offset 43 in inquiry data.
3013 */
3014 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3015 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3016 strncmp(obdr_sig, OBDR_TAPE_SIG,
3017 OBDR_SIG_LEN) == 0);
3018 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003019 kfree(inq_buff);
3020 return 0;
3021
3022bail_out:
3023 kfree(inq_buff);
3024 return 1;
3025}
3026
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003027static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3028 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3029{
3030 unsigned long flags;
3031 int rc, entry;
3032 /*
3033 * See if this device supports aborts. If we already know
3034 * the device, we already know if it supports aborts, otherwise
3035 * we have to find out if it supports aborts by trying one.
3036 */
3037 spin_lock_irqsave(&h->devlock, flags);
3038 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3039 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3040 entry >= 0 && entry < h->ndevices) {
3041 dev->supports_aborts = h->dev[entry]->supports_aborts;
3042 spin_unlock_irqrestore(&h->devlock, flags);
3043 } else {
3044 spin_unlock_irqrestore(&h->devlock, flags);
3045 dev->supports_aborts =
3046 hpsa_device_supports_aborts(h, scsi3addr);
3047 if (dev->supports_aborts < 0)
3048 dev->supports_aborts = 0;
3049 }
3050}
3051
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003052static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003053 "MSA2012",
3054 "MSA2024",
3055 "MSA2312",
3056 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05003057 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05003058 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003059 NULL,
3060};
3061
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003062static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003063{
3064 int i;
3065
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003066 for (i = 0; ext_target_model[i]; i++)
3067 if (strncmp(device->model, ext_target_model[i],
3068 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003069 return 1;
3070 return 0;
3071}
3072
3073/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003074 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003075 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
3076 * Logical drive target and lun are assigned at this time, but
3077 * physical device lun and target assignment are deferred (assigned
3078 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
3079 */
3080static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003081 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003082{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003083 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003084
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003085 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3086 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003087 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003088 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003089 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003090 /* defer target, lun assignment for physical devices */
3091 hpsa_set_bus_target_lun(device, 2, -1, -1);
3092 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003093 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003094 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003095 if (is_ext_target(h, device)) {
3096 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003097 * and match target/lun numbers box
3098 * reports, other smart array, bus 0, target 0, match lunid
3099 */
3100 hpsa_set_bus_target_lun(device,
3101 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
3102 return;
3103 }
3104 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003105}
3106
3107/*
3108 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003109 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003110 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
3111 * it for some reason. *tmpdevice is the target we're adding,
3112 * this_device is a pointer into the current element of currentsd[]
3113 * that we're building up in update_scsi_devices(), below.
3114 * lunzerobits is a bitmap that tracks which targets already have a
3115 * lun 0 assigned.
3116 * Returns 1 if an enclosure was added, 0 if not.
3117 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003118static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003119 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003120 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003121 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003122{
3123 unsigned char scsi3addr[8];
3124
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003125 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003126 return 0; /* There is already a lun 0 on this target. */
3127
3128 if (!is_logical_dev_addr_mode(lunaddrbytes))
3129 return 0; /* It's the logical targets that may lack lun 0. */
3130
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003131 if (!is_ext_target(h, tmpdevice))
3132 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003133
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003134 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003135 return 0;
3136
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06003137 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003138 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003139 if (is_hba_lunid(scsi3addr))
3140 return 0; /* Don't add the RAID controller here. */
3141
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003142 if (is_scsi_rev_5(h))
3143 return 0; /* p1210m doesn't need to do this. */
3144
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003145 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06003146 dev_warn(&h->pdev->dev, "Maximum number of external "
3147 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003148 "configuration.");
3149 return 0;
3150 }
3151
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003152 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003153 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003154 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003155 hpsa_set_bus_target_lun(this_device,
3156 tmpdevice->bus, tmpdevice->target, 0);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003157 hpsa_update_device_supports_aborts(h, this_device, scsi3addr);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003158 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003159 return 1;
3160}
3161
3162/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003163 * Get address of physical disk used for an ioaccel2 mode command:
3164 * 1. Extract ioaccel2 handle from the command.
3165 * 2. Find a matching ioaccel2 handle from list of physical disks.
3166 * 3. Return:
3167 * 1 and set scsi3addr to address of matching physical
3168 * 0 if no matching physical disk was found.
3169 */
3170static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3171 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3172{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003173 struct io_accel2_cmd *c2 =
3174 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3175 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003176 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003177
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003178 spin_lock_irqsave(&h->devlock, flags);
3179 for (i = 0; i < h->ndevices; i++)
3180 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3181 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3182 sizeof(h->dev[i]->scsi3addr));
3183 spin_unlock_irqrestore(&h->devlock, flags);
3184 return 1;
3185 }
3186 spin_unlock_irqrestore(&h->devlock, flags);
3187 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003188}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003189
Scott Teel54b6e9e2014-02-18 13:56:45 -06003190/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003191 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
3192 * logdev. The number of luns in physdev and logdev are returned in
3193 * *nphysicals and *nlogicals, respectively.
3194 * Returns 0 on success, -1 otherwise.
3195 */
3196static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003197 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003198 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003199{
Don Brace03383732015-01-23 16:43:30 -06003200 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003201 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3202 return -1;
3203 }
Don Brace03383732015-01-23 16:43:30 -06003204 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003205 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06003206 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
3207 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003208 *nphysicals = HPSA_MAX_PHYS_LUN;
3209 }
Don Brace03383732015-01-23 16:43:30 -06003210 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003211 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3212 return -1;
3213 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06003214 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003215 /* Reject Logicals in excess of our max capability. */
3216 if (*nlogicals > HPSA_MAX_LUN) {
3217 dev_warn(&h->pdev->dev,
3218 "maximum logical LUNs (%d) exceeded. "
3219 "%d LUNs ignored.\n", HPSA_MAX_LUN,
3220 *nlogicals - HPSA_MAX_LUN);
3221 *nlogicals = HPSA_MAX_LUN;
3222 }
3223 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3224 dev_warn(&h->pdev->dev,
3225 "maximum logical + physical LUNs (%d) exceeded. "
3226 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3227 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3228 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3229 }
3230 return 0;
3231}
3232
Don Brace42a91642014-11-14 17:26:27 -06003233static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
3234 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003235 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003236 struct ReportLUNdata *logdev_list)
3237{
3238 /* Helper function, figure out where the LUN ID info is coming from
3239 * given index i, lists of physical and logical devices, where in
3240 * the list the raid controller is supposed to appear (first or last)
3241 */
3242
3243 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3244 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3245
3246 if (i == raid_ctlr_position)
3247 return RAID_CTLR_LUNID;
3248
3249 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05003250 return &physdev_list->LUN[i -
3251 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003252
3253 if (i < last_device)
3254 return &logdev_list->LUN[i - nphysicals -
3255 (raid_ctlr_position == 0)][0];
3256 BUG();
3257 return NULL;
3258}
3259
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003260static int hpsa_hba_mode_enabled(struct ctlr_info *h)
3261{
3262 int rc;
Joe Handzik6e8e8082014-05-15 15:44:42 -05003263 int hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003264 struct bmic_controller_parameters *ctlr_params;
3265 ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters),
3266 GFP_KERNEL);
3267
3268 if (!ctlr_params)
Joe Handzik96444fb2014-05-15 15:44:47 -05003269 return -ENOMEM;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003270 rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params,
3271 sizeof(struct bmic_controller_parameters));
Joe Handzik96444fb2014-05-15 15:44:47 -05003272 if (rc) {
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003273 kfree(ctlr_params);
Joe Handzik96444fb2014-05-15 15:44:47 -05003274 return rc;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003275 }
Joe Handzik6e8e8082014-05-15 15:44:42 -05003276
3277 hba_mode_enabled =
3278 ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0);
3279 kfree(ctlr_params);
3280 return hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003281}
3282
Don Brace03383732015-01-23 16:43:30 -06003283/* get physical drive ioaccel handle and queue depth */
3284static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3285 struct hpsa_scsi_dev_t *dev,
3286 u8 *lunaddrbytes,
3287 struct bmic_identify_physical_device *id_phys)
3288{
3289 int rc;
3290 struct ext_report_lun_entry *rle =
3291 (struct ext_report_lun_entry *) lunaddrbytes;
3292
3293 dev->ioaccel_handle = rle->ioaccel_handle;
3294 memset(id_phys, 0, sizeof(*id_phys));
3295 rc = hpsa_bmic_id_physical_device(h, lunaddrbytes,
3296 GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys,
3297 sizeof(*id_phys));
3298 if (!rc)
3299 /* Reserve space for FW operations */
3300#define DRIVE_CMDS_RESERVED_FOR_FW 2
3301#define DRIVE_QUEUE_DEPTH 7
3302 dev->queue_depth =
3303 le16_to_cpu(id_phys->current_queue_depth_limit) -
3304 DRIVE_CMDS_RESERVED_FOR_FW;
3305 else
3306 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
3307 atomic_set(&dev->ioaccel_cmds_out, 0);
3308}
3309
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003310static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
3311{
3312 /* the idea here is we could get notified
3313 * that some devices have changed, so we do a report
3314 * physical luns and report logical luns cmd, and adjust
3315 * our list of devices accordingly.
3316 *
3317 * The scsi3addr's of devices won't change so long as the
3318 * adapter is not reset. That means we can rescan and
3319 * tell which devices we already know about, vs. new
3320 * devices, vs. disappearing devices.
3321 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003322 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003323 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003324 struct bmic_identify_physical_device *id_phys = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003325 u32 nphysicals = 0;
3326 u32 nlogicals = 0;
3327 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003328 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3329 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003330 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003331 int raid_ctlr_position;
Joe Handzik2bbf5c72014-05-21 11:16:01 -05003332 int rescan_hba_mode;
Scott Teelaca4a522012-01-19 14:01:19 -06003333 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003334
Scott Teelcfe5bad2011-10-26 16:21:07 -05003335 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003336 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3337 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003338 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003339 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003340
Don Brace03383732015-01-23 16:43:30 -06003341 if (!currentsd || !physdev_list || !logdev_list ||
3342 !tmpdevice || !id_phys) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003343 dev_err(&h->pdev->dev, "out of memory\n");
3344 goto out;
3345 }
3346 memset(lunzerobits, 0, sizeof(lunzerobits));
3347
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003348 rescan_hba_mode = hpsa_hba_mode_enabled(h);
Joe Handzik96444fb2014-05-15 15:44:47 -05003349 if (rescan_hba_mode < 0)
3350 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003351
3352 if (!h->hba_mode_enabled && rescan_hba_mode)
3353 dev_warn(&h->pdev->dev, "HBA mode enabled\n");
3354 else if (h->hba_mode_enabled && !rescan_hba_mode)
3355 dev_warn(&h->pdev->dev, "HBA mode disabled\n");
3356
3357 h->hba_mode_enabled = rescan_hba_mode;
3358
Don Brace03383732015-01-23 16:43:30 -06003359 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
3360 logdev_list, &nlogicals))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003361 goto out;
3362
Scott Teelaca4a522012-01-19 14:01:19 -06003363 /* We might see up to the maximum number of logical and physical disks
3364 * plus external target devices, and a device for the local RAID
3365 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003366 */
Scott Teelaca4a522012-01-19 14:01:19 -06003367 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003368
3369 /* Allocate the per device structures */
3370 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003371 if (i >= HPSA_MAX_DEVICES) {
3372 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3373 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3374 ndevs_to_allocate - HPSA_MAX_DEVICES);
3375 break;
3376 }
3377
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003378 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3379 if (!currentsd[i]) {
3380 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3381 __FILE__, __LINE__);
3382 goto out;
3383 }
3384 ndev_allocated++;
3385 }
3386
Stephen M. Cameron86452912014-05-29 10:53:49 -05003387 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003388 raid_ctlr_position = 0;
3389 else
3390 raid_ctlr_position = nphysicals + nlogicals;
3391
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003392 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003393 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003394 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003395 u8 *lunaddrbytes, is_OBDR = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003396
3397 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003398 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3399 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003400
3401 /* skip masked non-disk devices */
3402 if (MASKED_DEVICE(lunaddrbytes))
3403 if (i < nphysicals + (raid_ctlr_position == 0) &&
3404 NON_DISK_PHYS_DEV(lunaddrbytes))
3405 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003406
3407 /* Get device type, vendor, model, device id */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003408 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3409 &is_OBDR))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003410 continue; /* skip it if we can't talk to it. */
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003411 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003412 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003413 this_device = currentsd[ncurrent];
3414
3415 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003416 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003417 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3418 * is nonetheless an enclosure device there. We have to
3419 * present that otherwise linux won't find anything if
3420 * there is no lun 0.
3421 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003422 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003423 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003424 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003425 ncurrent++;
3426 this_device = currentsd[ncurrent];
3427 }
3428
3429 *this_device = *tmpdevice;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003430
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003431 /* do not expose masked devices */
3432 if (MASKED_DEVICE(lunaddrbytes) &&
3433 i < nphysicals + (raid_ctlr_position == 0)) {
3434 if (h->hba_mode_enabled)
3435 dev_warn(&h->pdev->dev,
3436 "Masked physical device detected\n");
3437 this_device->expose_state = HPSA_DO_NOT_EXPOSE;
3438 } else {
3439 this_device->expose_state =
3440 HPSA_SG_ATTACH | HPSA_ULD_ATTACH;
3441 }
3442
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003443 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003444 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003445 /* We don't *really* support actual CD-ROM devices,
3446 * just "One Button Disaster Recovery" tape drive
3447 * which temporarily pretends to be a CD-ROM drive.
3448 * So we check that the device is really an OBDR tape
3449 * device by checking for "$DR-10" in bytes 43-48 of
3450 * the inquiry data.
3451 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003452 if (is_OBDR)
3453 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003454 break;
3455 case TYPE_DISK:
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003456 if (h->hba_mode_enabled) {
3457 /* never use raid mapper in HBA mode */
3458 this_device->offload_enabled = 0;
3459 ncurrent++;
3460 break;
3461 } else if (h->acciopath_status) {
3462 if (i >= nphysicals) {
3463 ncurrent++;
3464 break;
3465 }
3466 } else {
3467 if (i < nphysicals)
3468 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003469 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003470 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003471 }
Don Brace03383732015-01-23 16:43:30 -06003472 if (h->transMethod & CFGTBL_Trans_io_accel1 ||
3473 h->transMethod & CFGTBL_Trans_io_accel2) {
3474 hpsa_get_ioaccel_drive_info(h, this_device,
3475 lunaddrbytes, id_phys);
3476 atomic_set(&this_device->ioaccel_cmds_out, 0);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003477 ncurrent++;
3478 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003479 break;
3480 case TYPE_TAPE:
3481 case TYPE_MEDIUM_CHANGER:
3482 ncurrent++;
3483 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003484 case TYPE_ENCLOSURE:
3485 if (h->hba_mode_enabled)
3486 ncurrent++;
3487 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003488 case TYPE_RAID:
3489 /* Only present the Smartarray HBA as a RAID controller.
3490 * If it's a RAID controller other than the HBA itself
3491 * (an external RAID controller, MSA500 or similar)
3492 * don't present it.
3493 */
3494 if (!is_hba_lunid(lunaddrbytes))
3495 break;
3496 ncurrent++;
3497 break;
3498 default:
3499 break;
3500 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003501 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003502 break;
3503 }
3504 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3505out:
3506 kfree(tmpdevice);
3507 for (i = 0; i < ndev_allocated; i++)
3508 kfree(currentsd[i]);
3509 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003510 kfree(physdev_list);
3511 kfree(logdev_list);
Don Brace03383732015-01-23 16:43:30 -06003512 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003513}
3514
Webb Scalesec5cbf02015-01-23 16:44:45 -06003515static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3516 struct scatterlist *sg)
3517{
3518 u64 addr64 = (u64) sg_dma_address(sg);
3519 unsigned int len = sg_dma_len(sg);
3520
3521 desc->Addr = cpu_to_le64(addr64);
3522 desc->Len = cpu_to_le32(len);
3523 desc->Ext = 0;
3524}
3525
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003526/*
3527 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003528 * dma mapping and fills in the scatter gather entries of the
3529 * hpsa command, cp.
3530 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003531static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003532 struct CommandList *cp,
3533 struct scsi_cmnd *cmd)
3534{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003535 struct scatterlist *sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003536 int use_sg, i, sg_index, chained;
3537 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003538
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003539 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003540
3541 use_sg = scsi_dma_map(cmd);
3542 if (use_sg < 0)
3543 return use_sg;
3544
3545 if (!use_sg)
3546 goto sglist_finished;
3547
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003548 curr_sg = cp->SG;
3549 chained = 0;
3550 sg_index = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003551 scsi_for_each_sg(cmd, sg, use_sg, i) {
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003552 if (i == h->max_cmd_sg_entries - 1 &&
3553 use_sg > h->max_cmd_sg_entries) {
3554 chained = 1;
3555 curr_sg = h->cmd_sg_list[cp->cmdindex];
3556 sg_index = 0;
3557 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003558 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003559 curr_sg++;
3560 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003561
3562 /* Back the pointer up to the last entry and mark it as "last". */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003563 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003564
3565 if (use_sg + chained > h->maxSG)
3566 h->maxSG = use_sg + chained;
3567
3568 if (chained) {
3569 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003570 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06003571 if (hpsa_map_sg_chain_block(h, cp)) {
3572 scsi_dma_unmap(cmd);
3573 return -1;
3574 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003575 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003576 }
3577
3578sglist_finished:
3579
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003580 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003581 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003582 return 0;
3583}
3584
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003585#define IO_ACCEL_INELIGIBLE (1)
3586static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
3587{
3588 int is_write = 0;
3589 u32 block;
3590 u32 block_cnt;
3591
3592 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
3593 switch (cdb[0]) {
3594 case WRITE_6:
3595 case WRITE_12:
3596 is_write = 1;
3597 case READ_6:
3598 case READ_12:
3599 if (*cdb_len == 6) {
3600 block = (((u32) cdb[2]) << 8) | cdb[3];
3601 block_cnt = cdb[4];
3602 } else {
3603 BUG_ON(*cdb_len != 12);
3604 block = (((u32) cdb[2]) << 24) |
3605 (((u32) cdb[3]) << 16) |
3606 (((u32) cdb[4]) << 8) |
3607 cdb[5];
3608 block_cnt =
3609 (((u32) cdb[6]) << 24) |
3610 (((u32) cdb[7]) << 16) |
3611 (((u32) cdb[8]) << 8) |
3612 cdb[9];
3613 }
3614 if (block_cnt > 0xffff)
3615 return IO_ACCEL_INELIGIBLE;
3616
3617 cdb[0] = is_write ? WRITE_10 : READ_10;
3618 cdb[1] = 0;
3619 cdb[2] = (u8) (block >> 24);
3620 cdb[3] = (u8) (block >> 16);
3621 cdb[4] = (u8) (block >> 8);
3622 cdb[5] = (u8) (block);
3623 cdb[6] = 0;
3624 cdb[7] = (u8) (block_cnt >> 8);
3625 cdb[8] = (u8) (block_cnt);
3626 cdb[9] = 0;
3627 *cdb_len = 10;
3628 break;
3629 }
3630 return 0;
3631}
3632
Scott Teelc3497752014-02-18 13:56:34 -06003633static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003634 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003635 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06003636{
3637 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06003638 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
3639 unsigned int len;
3640 unsigned int total_len = 0;
3641 struct scatterlist *sg;
3642 u64 addr64;
3643 int use_sg, i;
3644 struct SGDescriptor *curr_sg;
3645 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
3646
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003647 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06003648 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3649 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003650 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003651 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003652
Matt Gatese1f7de02014-02-18 13:55:17 -06003653 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
3654
Don Brace03383732015-01-23 16:43:30 -06003655 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3656 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003657 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003658 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003659
Matt Gatese1f7de02014-02-18 13:55:17 -06003660 c->cmd_type = CMD_IOACCEL1;
3661
3662 /* Adjust the DMA address to point to the accelerated command buffer */
3663 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
3664 (c->cmdindex * sizeof(*cp));
3665 BUG_ON(c->busaddr & 0x0000007F);
3666
3667 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003668 if (use_sg < 0) {
3669 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06003670 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003671 }
Matt Gatese1f7de02014-02-18 13:55:17 -06003672
3673 if (use_sg) {
3674 curr_sg = cp->SG;
3675 scsi_for_each_sg(cmd, sg, use_sg, i) {
3676 addr64 = (u64) sg_dma_address(sg);
3677 len = sg_dma_len(sg);
3678 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003679 curr_sg->Addr = cpu_to_le64(addr64);
3680 curr_sg->Len = cpu_to_le32(len);
3681 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06003682 curr_sg++;
3683 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003684 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06003685
3686 switch (cmd->sc_data_direction) {
3687 case DMA_TO_DEVICE:
3688 control |= IOACCEL1_CONTROL_DATA_OUT;
3689 break;
3690 case DMA_FROM_DEVICE:
3691 control |= IOACCEL1_CONTROL_DATA_IN;
3692 break;
3693 case DMA_NONE:
3694 control |= IOACCEL1_CONTROL_NODATAXFER;
3695 break;
3696 default:
3697 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3698 cmd->sc_data_direction);
3699 BUG();
3700 break;
3701 }
3702 } else {
3703 control |= IOACCEL1_CONTROL_NODATAXFER;
3704 }
3705
Scott Teelc3497752014-02-18 13:56:34 -06003706 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06003707 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06003708 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
3709 cp->transfer_len = cpu_to_le32(total_len);
3710 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
3711 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
3712 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003713 memcpy(cp->CDB, cdb, cdb_len);
3714 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06003715 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003716 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06003717 return 0;
3718}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003719
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003720/*
3721 * Queue a command directly to a device behind the controller using the
3722 * I/O accelerator path.
3723 */
3724static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
3725 struct CommandList *c)
3726{
3727 struct scsi_cmnd *cmd = c->scsi_cmd;
3728 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3729
Don Brace03383732015-01-23 16:43:30 -06003730 c->phys_disk = dev;
3731
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003732 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003733 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003734}
3735
Scott Teeldd0e19f2014-02-18 13:57:31 -06003736/*
3737 * Set encryption parameters for the ioaccel2 request
3738 */
3739static void set_encrypt_ioaccel2(struct ctlr_info *h,
3740 struct CommandList *c, struct io_accel2_cmd *cp)
3741{
3742 struct scsi_cmnd *cmd = c->scsi_cmd;
3743 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3744 struct raid_map_data *map = &dev->raid_map;
3745 u64 first_block;
3746
Scott Teeldd0e19f2014-02-18 13:57:31 -06003747 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06003748 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06003749 return;
3750 /* Set the data encryption key index. */
3751 cp->dekindex = map->dekindex;
3752
3753 /* Set the encryption enable flag, encoded into direction field. */
3754 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
3755
3756 /* Set encryption tweak values based on logical block address
3757 * If block size is 512, tweak value is LBA.
3758 * For other block sizes, tweak is (LBA * block size)/ 512)
3759 */
3760 switch (cmd->cmnd[0]) {
3761 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
3762 case WRITE_6:
3763 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06003764 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003765 break;
3766 case WRITE_10:
3767 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003768 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
3769 case WRITE_12:
3770 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06003771 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003772 break;
3773 case WRITE_16:
3774 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06003775 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003776 break;
3777 default:
3778 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06003779 "ERROR: %s: size (0x%x) not supported for encryption\n",
3780 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003781 BUG();
3782 break;
3783 }
Don Brace2b08b3e2015-01-23 16:41:09 -06003784
3785 if (le32_to_cpu(map->volume_blk_size) != 512)
3786 first_block = first_block *
3787 le32_to_cpu(map->volume_blk_size)/512;
3788
3789 cp->tweak_lower = cpu_to_le32(first_block);
3790 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003791}
3792
Scott Teelc3497752014-02-18 13:56:34 -06003793static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
3794 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003795 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003796{
3797 struct scsi_cmnd *cmd = c->scsi_cmd;
3798 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
3799 struct ioaccel2_sg_element *curr_sg;
3800 int use_sg, i;
3801 struct scatterlist *sg;
3802 u64 addr64;
3803 u32 len;
3804 u32 total_len = 0;
3805
Don Brace03383732015-01-23 16:43:30 -06003806 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3807 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003808 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003809 }
Scott Teelc3497752014-02-18 13:56:34 -06003810
Don Brace03383732015-01-23 16:43:30 -06003811 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3812 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003813 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003814 }
3815
Scott Teelc3497752014-02-18 13:56:34 -06003816 c->cmd_type = CMD_IOACCEL2;
3817 /* Adjust the DMA address to point to the accelerated command buffer */
3818 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
3819 (c->cmdindex * sizeof(*cp));
3820 BUG_ON(c->busaddr & 0x0000007F);
3821
3822 memset(cp, 0, sizeof(*cp));
3823 cp->IU_type = IOACCEL2_IU_TYPE;
3824
3825 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003826 if (use_sg < 0) {
3827 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003828 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003829 }
Scott Teelc3497752014-02-18 13:56:34 -06003830
3831 if (use_sg) {
3832 BUG_ON(use_sg > IOACCEL2_MAXSGENTRIES);
3833 curr_sg = cp->sg;
3834 scsi_for_each_sg(cmd, sg, use_sg, i) {
3835 addr64 = (u64) sg_dma_address(sg);
3836 len = sg_dma_len(sg);
3837 total_len += len;
3838 curr_sg->address = cpu_to_le64(addr64);
3839 curr_sg->length = cpu_to_le32(len);
3840 curr_sg->reserved[0] = 0;
3841 curr_sg->reserved[1] = 0;
3842 curr_sg->reserved[2] = 0;
3843 curr_sg->chain_indicator = 0;
3844 curr_sg++;
3845 }
3846
3847 switch (cmd->sc_data_direction) {
3848 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003849 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3850 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06003851 break;
3852 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003853 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3854 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06003855 break;
3856 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003857 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3858 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003859 break;
3860 default:
3861 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3862 cmd->sc_data_direction);
3863 BUG();
3864 break;
3865 }
3866 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06003867 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3868 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003869 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06003870
3871 /* Set encryption parameters, if necessary */
3872 set_encrypt_ioaccel2(h, c, cp);
3873
Don Brace2b08b3e2015-01-23 16:41:09 -06003874 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06003875 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06003876 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06003877
3878 /* fill in sg elements */
3879 cp->sg_count = (u8) use_sg;
3880
3881 cp->data_len = cpu_to_le32(total_len);
3882 cp->err_ptr = cpu_to_le64(c->busaddr +
3883 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003884 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06003885
3886 enqueue_cmd_and_start_io(h, c);
3887 return 0;
3888}
3889
3890/*
3891 * Queue a command to the correct I/O accelerator path.
3892 */
3893static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
3894 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003895 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003896{
Don Brace03383732015-01-23 16:43:30 -06003897 /* Try to honor the device's queue depth */
3898 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
3899 phys_disk->queue_depth) {
3900 atomic_dec(&phys_disk->ioaccel_cmds_out);
3901 return IO_ACCEL_INELIGIBLE;
3902 }
Scott Teelc3497752014-02-18 13:56:34 -06003903 if (h->transMethod & CFGTBL_Trans_io_accel1)
3904 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003905 cdb, cdb_len, scsi3addr,
3906 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06003907 else
3908 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003909 cdb, cdb_len, scsi3addr,
3910 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06003911}
3912
Scott Teel6b80b182014-02-18 13:56:55 -06003913static void raid_map_helper(struct raid_map_data *map,
3914 int offload_to_mirror, u32 *map_index, u32 *current_group)
3915{
3916 if (offload_to_mirror == 0) {
3917 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06003918 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003919 return;
3920 }
3921 do {
3922 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06003923 *current_group = *map_index /
3924 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003925 if (offload_to_mirror == *current_group)
3926 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06003927 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06003928 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06003929 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003930 (*current_group)++;
3931 } else {
3932 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06003933 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003934 *current_group = 0;
3935 }
3936 } while (offload_to_mirror != *current_group);
3937}
3938
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003939/*
3940 * Attempt to perform offload RAID mapping for a logical volume I/O.
3941 */
3942static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
3943 struct CommandList *c)
3944{
3945 struct scsi_cmnd *cmd = c->scsi_cmd;
3946 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3947 struct raid_map_data *map = &dev->raid_map;
3948 struct raid_map_disk_data *dd = &map->data[0];
3949 int is_write = 0;
3950 u32 map_index;
3951 u64 first_block, last_block;
3952 u32 block_cnt;
3953 u32 blocks_per_row;
3954 u64 first_row, last_row;
3955 u32 first_row_offset, last_row_offset;
3956 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06003957 u64 r0_first_row, r0_last_row;
3958 u32 r5or6_blocks_per_row;
3959 u64 r5or6_first_row, r5or6_last_row;
3960 u32 r5or6_first_row_offset, r5or6_last_row_offset;
3961 u32 r5or6_first_column, r5or6_last_column;
3962 u32 total_disks_per_row;
3963 u32 stripesize;
3964 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003965 u32 map_row;
3966 u32 disk_handle;
3967 u64 disk_block;
3968 u32 disk_block_cnt;
3969 u8 cdb[16];
3970 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06003971 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003972#if BITS_PER_LONG == 32
3973 u64 tmpdiv;
3974#endif
Scott Teel6b80b182014-02-18 13:56:55 -06003975 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003976
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003977 /* check for valid opcode, get LBA and block count */
3978 switch (cmd->cmnd[0]) {
3979 case WRITE_6:
3980 is_write = 1;
3981 case READ_6:
3982 first_block =
3983 (((u64) cmd->cmnd[2]) << 8) |
3984 cmd->cmnd[3];
3985 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05003986 if (block_cnt == 0)
3987 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003988 break;
3989 case WRITE_10:
3990 is_write = 1;
3991 case READ_10:
3992 first_block =
3993 (((u64) cmd->cmnd[2]) << 24) |
3994 (((u64) cmd->cmnd[3]) << 16) |
3995 (((u64) cmd->cmnd[4]) << 8) |
3996 cmd->cmnd[5];
3997 block_cnt =
3998 (((u32) cmd->cmnd[7]) << 8) |
3999 cmd->cmnd[8];
4000 break;
4001 case WRITE_12:
4002 is_write = 1;
4003 case READ_12:
4004 first_block =
4005 (((u64) cmd->cmnd[2]) << 24) |
4006 (((u64) cmd->cmnd[3]) << 16) |
4007 (((u64) cmd->cmnd[4]) << 8) |
4008 cmd->cmnd[5];
4009 block_cnt =
4010 (((u32) cmd->cmnd[6]) << 24) |
4011 (((u32) cmd->cmnd[7]) << 16) |
4012 (((u32) cmd->cmnd[8]) << 8) |
4013 cmd->cmnd[9];
4014 break;
4015 case WRITE_16:
4016 is_write = 1;
4017 case READ_16:
4018 first_block =
4019 (((u64) cmd->cmnd[2]) << 56) |
4020 (((u64) cmd->cmnd[3]) << 48) |
4021 (((u64) cmd->cmnd[4]) << 40) |
4022 (((u64) cmd->cmnd[5]) << 32) |
4023 (((u64) cmd->cmnd[6]) << 24) |
4024 (((u64) cmd->cmnd[7]) << 16) |
4025 (((u64) cmd->cmnd[8]) << 8) |
4026 cmd->cmnd[9];
4027 block_cnt =
4028 (((u32) cmd->cmnd[10]) << 24) |
4029 (((u32) cmd->cmnd[11]) << 16) |
4030 (((u32) cmd->cmnd[12]) << 8) |
4031 cmd->cmnd[13];
4032 break;
4033 default:
4034 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4035 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004036 last_block = first_block + block_cnt - 1;
4037
4038 /* check for write to non-RAID-0 */
4039 if (is_write && dev->raid_level != 0)
4040 return IO_ACCEL_INELIGIBLE;
4041
4042 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06004043 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
4044 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004045 return IO_ACCEL_INELIGIBLE;
4046
4047 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06004048 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
4049 le16_to_cpu(map->strip_size);
4050 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004051#if BITS_PER_LONG == 32
4052 tmpdiv = first_block;
4053 (void) do_div(tmpdiv, blocks_per_row);
4054 first_row = tmpdiv;
4055 tmpdiv = last_block;
4056 (void) do_div(tmpdiv, blocks_per_row);
4057 last_row = tmpdiv;
4058 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4059 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4060 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004061 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004062 first_column = tmpdiv;
4063 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004064 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004065 last_column = tmpdiv;
4066#else
4067 first_row = first_block / blocks_per_row;
4068 last_row = last_block / blocks_per_row;
4069 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4070 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06004071 first_column = first_row_offset / strip_size;
4072 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004073#endif
4074
4075 /* if this isn't a single row/column then give to the controller */
4076 if ((first_row != last_row) || (first_column != last_column))
4077 return IO_ACCEL_INELIGIBLE;
4078
4079 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06004080 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
4081 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004082 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004083 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004084 map_index = (map_row * total_disks_per_row) + first_column;
4085
4086 switch (dev->raid_level) {
4087 case HPSA_RAID_0:
4088 break; /* nothing special to do */
4089 case HPSA_RAID_1:
4090 /* Handles load balance across RAID 1 members.
4091 * (2-drive R1 and R10 with even # of drives.)
4092 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004093 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004094 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004095 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06004096 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004097 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06004098 break;
4099 case HPSA_RAID_ADM:
4100 /* Handles N-way mirrors (R1-ADM)
4101 * and R10 with # of drives divisible by 3.)
4102 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004103 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06004104
4105 offload_to_mirror = dev->offload_to_mirror;
4106 raid_map_helper(map, offload_to_mirror,
4107 &map_index, &current_group);
4108 /* set mirror group to use next time */
4109 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06004110 (offload_to_mirror >=
4111 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004112 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06004113 dev->offload_to_mirror = offload_to_mirror;
4114 /* Avoid direct use of dev->offload_to_mirror within this
4115 * function since multiple threads might simultaneously
4116 * increment it beyond the range of dev->layout_map_count -1.
4117 */
4118 break;
4119 case HPSA_RAID_5:
4120 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004121 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004122 break;
4123
4124 /* Verify first and last block are in same RAID group */
4125 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06004126 le16_to_cpu(map->strip_size) *
4127 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004128 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06004129 stripesize = r5or6_blocks_per_row *
4130 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06004131#if BITS_PER_LONG == 32
4132 tmpdiv = first_block;
4133 first_group = do_div(tmpdiv, stripesize);
4134 tmpdiv = first_group;
4135 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4136 first_group = tmpdiv;
4137 tmpdiv = last_block;
4138 last_group = do_div(tmpdiv, stripesize);
4139 tmpdiv = last_group;
4140 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4141 last_group = tmpdiv;
4142#else
4143 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
4144 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06004145#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05004146 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06004147 return IO_ACCEL_INELIGIBLE;
4148
4149 /* Verify request is in a single row of RAID 5/6 */
4150#if BITS_PER_LONG == 32
4151 tmpdiv = first_block;
4152 (void) do_div(tmpdiv, stripesize);
4153 first_row = r5or6_first_row = r0_first_row = tmpdiv;
4154 tmpdiv = last_block;
4155 (void) do_div(tmpdiv, stripesize);
4156 r5or6_last_row = r0_last_row = tmpdiv;
4157#else
4158 first_row = r5or6_first_row = r0_first_row =
4159 first_block / stripesize;
4160 r5or6_last_row = r0_last_row = last_block / stripesize;
4161#endif
4162 if (r5or6_first_row != r5or6_last_row)
4163 return IO_ACCEL_INELIGIBLE;
4164
4165
4166 /* Verify request is in a single column */
4167#if BITS_PER_LONG == 32
4168 tmpdiv = first_block;
4169 first_row_offset = do_div(tmpdiv, stripesize);
4170 tmpdiv = first_row_offset;
4171 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
4172 r5or6_first_row_offset = first_row_offset;
4173 tmpdiv = last_block;
4174 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
4175 tmpdiv = r5or6_last_row_offset;
4176 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
4177 tmpdiv = r5or6_first_row_offset;
4178 (void) do_div(tmpdiv, map->strip_size);
4179 first_column = r5or6_first_column = tmpdiv;
4180 tmpdiv = r5or6_last_row_offset;
4181 (void) do_div(tmpdiv, map->strip_size);
4182 r5or6_last_column = tmpdiv;
4183#else
4184 first_row_offset = r5or6_first_row_offset =
4185 (u32)((first_block % stripesize) %
4186 r5or6_blocks_per_row);
4187
4188 r5or6_last_row_offset =
4189 (u32)((last_block % stripesize) %
4190 r5or6_blocks_per_row);
4191
4192 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004193 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004194 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004195 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004196#endif
4197 if (r5or6_first_column != r5or6_last_column)
4198 return IO_ACCEL_INELIGIBLE;
4199
4200 /* Request is eligible */
4201 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004202 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004203
4204 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06004205 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06004206 (map_row * total_disks_per_row) + first_column;
4207 break;
4208 default:
4209 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004210 }
Scott Teel6b80b182014-02-18 13:56:55 -06004211
Stephen Cameron07543e02015-01-23 16:44:14 -06004212 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
4213 return IO_ACCEL_INELIGIBLE;
4214
Don Brace03383732015-01-23 16:43:30 -06004215 c->phys_disk = dev->phys_disk[map_index];
4216
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004217 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06004218 disk_block = le64_to_cpu(map->disk_starting_blk) +
4219 first_row * le16_to_cpu(map->strip_size) +
4220 (first_row_offset - first_column *
4221 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004222 disk_block_cnt = block_cnt;
4223
4224 /* handle differing logical/physical block sizes */
4225 if (map->phys_blk_shift) {
4226 disk_block <<= map->phys_blk_shift;
4227 disk_block_cnt <<= map->phys_blk_shift;
4228 }
4229 BUG_ON(disk_block_cnt > 0xffff);
4230
4231 /* build the new CDB for the physical disk I/O */
4232 if (disk_block > 0xffffffff) {
4233 cdb[0] = is_write ? WRITE_16 : READ_16;
4234 cdb[1] = 0;
4235 cdb[2] = (u8) (disk_block >> 56);
4236 cdb[3] = (u8) (disk_block >> 48);
4237 cdb[4] = (u8) (disk_block >> 40);
4238 cdb[5] = (u8) (disk_block >> 32);
4239 cdb[6] = (u8) (disk_block >> 24);
4240 cdb[7] = (u8) (disk_block >> 16);
4241 cdb[8] = (u8) (disk_block >> 8);
4242 cdb[9] = (u8) (disk_block);
4243 cdb[10] = (u8) (disk_block_cnt >> 24);
4244 cdb[11] = (u8) (disk_block_cnt >> 16);
4245 cdb[12] = (u8) (disk_block_cnt >> 8);
4246 cdb[13] = (u8) (disk_block_cnt);
4247 cdb[14] = 0;
4248 cdb[15] = 0;
4249 cdb_len = 16;
4250 } else {
4251 cdb[0] = is_write ? WRITE_10 : READ_10;
4252 cdb[1] = 0;
4253 cdb[2] = (u8) (disk_block >> 24);
4254 cdb[3] = (u8) (disk_block >> 16);
4255 cdb[4] = (u8) (disk_block >> 8);
4256 cdb[5] = (u8) (disk_block);
4257 cdb[6] = 0;
4258 cdb[7] = (u8) (disk_block_cnt >> 8);
4259 cdb[8] = (u8) (disk_block_cnt);
4260 cdb[9] = 0;
4261 cdb_len = 10;
4262 }
4263 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004264 dev->scsi3addr,
4265 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004266}
4267
Webb Scales25163bd2015-04-23 09:32:00 -05004268/*
4269 * Submit commands down the "normal" RAID stack path
4270 * All callers to hpsa_ciss_submit must check lockup_detected
4271 * beforehand, before (opt.) and after calling cmd_alloc
4272 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06004273static int hpsa_ciss_submit(struct ctlr_info *h,
4274 struct CommandList *c, struct scsi_cmnd *cmd,
4275 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004276{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004277 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004278 c->cmd_type = CMD_SCSI;
4279 c->scsi_cmd = cmd;
4280 c->Header.ReplyQueue = 0; /* unused in simple mode */
4281 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004282 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004283
4284 /* Fill in the request block... */
4285
4286 c->Request.Timeout = 0;
4287 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4288 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4289 c->Request.CDBLen = cmd->cmd_len;
4290 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004291 switch (cmd->sc_data_direction) {
4292 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004293 c->Request.type_attr_dir =
4294 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004295 break;
4296 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004297 c->Request.type_attr_dir =
4298 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004299 break;
4300 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004301 c->Request.type_attr_dir =
4302 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004303 break;
4304 case DMA_BIDIRECTIONAL:
4305 /* This can happen if a buggy application does a scsi passthru
4306 * and sets both inlen and outlen to non-zero. ( see
4307 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4308 */
4309
Stephen M. Camerona505b862014-11-14 17:27:04 -06004310 c->Request.type_attr_dir =
4311 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004312 /* This is technically wrong, and hpsa controllers should
4313 * reject it with CMD_INVALID, which is the most correct
4314 * response, but non-fibre backends appear to let it
4315 * slide by, and give the same results as if this field
4316 * were set correctly. Either way is acceptable for
4317 * our purposes here.
4318 */
4319
4320 break;
4321
4322 default:
4323 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4324 cmd->sc_data_direction);
4325 BUG();
4326 break;
4327 }
4328
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004329 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004330 cmd_free(h, c);
4331 return SCSI_MLQUEUE_HOST_BUSY;
4332 }
4333 enqueue_cmd_and_start_io(h, c);
4334 /* the cmd'll come back via intr handler in complete_scsi_command() */
4335 return 0;
4336}
4337
Don Brace080ef1c2015-01-23 16:43:25 -06004338static void hpsa_command_resubmit_worker(struct work_struct *work)
4339{
4340 struct scsi_cmnd *cmd;
4341 struct hpsa_scsi_dev_t *dev;
4342 struct CommandList *c =
4343 container_of(work, struct CommandList, work);
4344
4345 cmd = c->scsi_cmd;
4346 dev = cmd->device->hostdata;
4347 if (!dev) {
4348 cmd->result = DID_NO_CONNECT << 16;
4349 cmd->scsi_done(cmd);
4350 return;
4351 }
4352 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4353 /*
4354 * If we get here, it means dma mapping failed. Try
4355 * again via scsi mid layer, which will then get
4356 * SCSI_MLQUEUE_HOST_BUSY.
4357 */
4358 cmd->result = DID_IMM_RETRY << 16;
4359 cmd->scsi_done(cmd);
4360 }
4361}
4362
Stephen Cameron574f05d2015-01-23 16:43:20 -06004363/* Running in struct Scsi_Host->host_lock less mode */
4364static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4365{
4366 struct ctlr_info *h;
4367 struct hpsa_scsi_dev_t *dev;
4368 unsigned char scsi3addr[8];
4369 struct CommandList *c;
4370 int rc = 0;
4371
4372 /* Get the ptr to our adapter structure out of cmd->host. */
4373 h = sdev_to_hba(cmd->device);
4374 dev = cmd->device->hostdata;
4375 if (!dev) {
4376 cmd->result = DID_NO_CONNECT << 16;
4377 cmd->scsi_done(cmd);
4378 return 0;
4379 }
4380 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4381
4382 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004383 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004384 cmd->scsi_done(cmd);
4385 return 0;
4386 }
4387 c = cmd_alloc(h);
4388 if (c == NULL) { /* trouble... */
4389 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
4390 return SCSI_MLQUEUE_HOST_BUSY;
4391 }
Stephen Cameron407863c2015-01-23 16:44:19 -06004392 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004393 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron407863c2015-01-23 16:44:19 -06004394 cmd_free(h, c);
4395 cmd->scsi_done(cmd);
4396 return 0;
4397 }
Stephen Cameron574f05d2015-01-23 16:43:20 -06004398
Stephen Cameron407863c2015-01-23 16:44:19 -06004399 /*
4400 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004401 * Retries always go down the normal I/O path.
4402 */
4403 if (likely(cmd->retries == 0 &&
4404 cmd->request->cmd_type == REQ_TYPE_FS &&
4405 h->acciopath_status)) {
4406
4407 cmd->host_scribble = (unsigned char *) c;
4408 c->cmd_type = CMD_SCSI;
4409 c->scsi_cmd = cmd;
4410
4411 if (dev->offload_enabled) {
4412 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4413 if (rc == 0)
4414 return 0; /* Sent on ioaccel path */
4415 if (rc < 0) { /* scsi_dma_map failed. */
4416 cmd_free(h, c);
4417 return SCSI_MLQUEUE_HOST_BUSY;
4418 }
4419 } else if (dev->ioaccel_handle) {
4420 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4421 if (rc == 0)
4422 return 0; /* Sent on direct map path */
4423 if (rc < 0) { /* scsi_dma_map failed. */
4424 cmd_free(h, c);
4425 return SCSI_MLQUEUE_HOST_BUSY;
4426 }
4427 }
4428 }
4429 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4430}
4431
Webb Scales8ebc9242015-01-23 16:44:50 -06004432static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004433{
4434 unsigned long flags;
4435
Webb Scales8ebc9242015-01-23 16:44:50 -06004436 spin_lock_irqsave(&h->scan_lock, flags);
4437 h->scan_finished = 1;
4438 wake_up_all(&h->scan_wait_queue);
4439 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004440}
4441
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004442static void hpsa_scan_start(struct Scsi_Host *sh)
4443{
4444 struct ctlr_info *h = shost_to_hba(sh);
4445 unsigned long flags;
4446
Webb Scales8ebc9242015-01-23 16:44:50 -06004447 /*
4448 * Don't let rescans be initiated on a controller known to be locked
4449 * up. If the controller locks up *during* a rescan, that thread is
4450 * probably hosed, but at least we can prevent new rescan threads from
4451 * piling up on a locked up controller.
4452 */
4453 if (unlikely(lockup_detected(h)))
4454 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004455
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004456 /* wait until any scan already in progress is finished. */
4457 while (1) {
4458 spin_lock_irqsave(&h->scan_lock, flags);
4459 if (h->scan_finished)
4460 break;
4461 spin_unlock_irqrestore(&h->scan_lock, flags);
4462 wait_event(h->scan_wait_queue, h->scan_finished);
4463 /* Note: We don't need to worry about a race between this
4464 * thread and driver unload because the midlayer will
4465 * have incremented the reference count, so unload won't
4466 * happen if we're in here.
4467 */
4468 }
4469 h->scan_finished = 0; /* mark scan as in progress */
4470 spin_unlock_irqrestore(&h->scan_lock, flags);
4471
Webb Scales8ebc9242015-01-23 16:44:50 -06004472 if (unlikely(lockup_detected(h)))
4473 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004474
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004475 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4476
Webb Scales8ebc9242015-01-23 16:44:50 -06004477 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004478}
4479
Don Brace7c0a0222015-01-23 16:41:30 -06004480static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
4481{
Don Brace03383732015-01-23 16:43:30 -06004482 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
4483
4484 if (!logical_drive)
4485 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06004486
4487 if (qdepth < 1)
4488 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06004489 else if (qdepth > logical_drive->queue_depth)
4490 qdepth = logical_drive->queue_depth;
4491
4492 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06004493}
4494
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004495static int hpsa_scan_finished(struct Scsi_Host *sh,
4496 unsigned long elapsed_time)
4497{
4498 struct ctlr_info *h = shost_to_hba(sh);
4499 unsigned long flags;
4500 int finished;
4501
4502 spin_lock_irqsave(&h->scan_lock, flags);
4503 finished = h->scan_finished;
4504 spin_unlock_irqrestore(&h->scan_lock, flags);
4505 return finished;
4506}
4507
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004508static void hpsa_unregister_scsi(struct ctlr_info *h)
4509{
4510 /* we are being forcibly unloaded, and may not refuse. */
4511 scsi_remove_host(h->scsi_host);
4512 scsi_host_put(h->scsi_host);
4513 h->scsi_host = NULL;
4514}
4515
4516static int hpsa_register_scsi(struct ctlr_info *h)
4517{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004518 struct Scsi_Host *sh;
4519 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004520
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004521 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
4522 if (sh == NULL)
4523 goto fail;
4524
4525 sh->io_port = 0;
4526 sh->n_io_port = 0;
4527 sh->this_id = -1;
4528 sh->max_channel = 3;
4529 sh->max_cmd_len = MAX_COMMAND_SIZE;
4530 sh->max_lun = HPSA_MAX_LUN;
4531 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004532 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06004533 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004534 sh->sg_tablesize = h->maxsgentries;
4535 h->scsi_host = sh;
4536 sh->hostdata[0] = (unsigned long) h;
4537 sh->irq = h->intr[h->intr_mode];
4538 sh->unique_id = sh->irq;
4539 error = scsi_add_host(sh, &h->pdev->dev);
4540 if (error)
4541 goto fail_host_put;
4542 scsi_scan_host(sh);
4543 return 0;
4544
4545 fail_host_put:
4546 dev_err(&h->pdev->dev, "%s: scsi_add_host"
4547 " failed for controller %d\n", __func__, h->ctlr);
4548 scsi_host_put(sh);
4549 return error;
4550 fail:
4551 dev_err(&h->pdev->dev, "%s: scsi_host_alloc"
4552 " failed for controller %d\n", __func__, h->ctlr);
4553 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004554}
4555
4556static int wait_for_device_to_become_ready(struct ctlr_info *h,
4557 unsigned char lunaddr[])
4558{
Tomas Henzl89193582014-02-21 16:25:05 -06004559 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004560 int count = 0;
4561 int waittime = 1; /* seconds */
4562 struct CommandList *c;
4563
Stephen Cameron45fcb862015-01-23 16:43:04 -06004564 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004565 if (!c) {
4566 dev_warn(&h->pdev->dev, "out of memory in "
4567 "wait_for_device_to_become_ready.\n");
4568 return IO_ERROR;
4569 }
4570
4571 /* Send test unit ready until device ready, or give up. */
4572 while (count < HPSA_TUR_RETRY_LIMIT) {
4573
4574 /* Wait for a bit. do this first, because if we send
4575 * the TUR right away, the reset will just abort it.
4576 */
4577 msleep(1000 * waittime);
4578 count++;
Tomas Henzl89193582014-02-21 16:25:05 -06004579 rc = 0; /* Device ready. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004580
4581 /* Increase wait time with each try, up to a point. */
4582 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
4583 waittime = waittime * 2;
4584
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004585 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
4586 (void) fill_cmd(c, TEST_UNIT_READY, h,
4587 NULL, 0, 0, lunaddr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05004588 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
4589 NO_TIMEOUT);
4590 if (rc)
4591 goto do_it_again;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004592 /* no unmap needed here because no data xfer. */
4593
4594 if (c->err_info->CommandStatus == CMD_SUCCESS)
4595 break;
4596
4597 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
4598 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
4599 (c->err_info->SenseInfo[2] == NO_SENSE ||
4600 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
4601 break;
Webb Scales25163bd2015-04-23 09:32:00 -05004602do_it_again:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004603 dev_warn(&h->pdev->dev, "waiting %d secs "
4604 "for device to become ready.\n", waittime);
4605 rc = 1; /* device not ready. */
4606 }
4607
4608 if (rc)
4609 dev_warn(&h->pdev->dev, "giving up on device.\n");
4610 else
4611 dev_warn(&h->pdev->dev, "device is ready.\n");
4612
Stephen Cameron45fcb862015-01-23 16:43:04 -06004613 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004614 return rc;
4615}
4616
4617/* Need at least one of these error handlers to keep ../scsi/hosts.c from
4618 * complaining. Doing a host- or bus-reset can't do anything good here.
4619 */
4620static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
4621{
4622 int rc;
4623 struct ctlr_info *h;
4624 struct hpsa_scsi_dev_t *dev;
4625
4626 /* find the controller to which the command to be aborted was sent */
4627 h = sdev_to_hba(scsicmd->device);
4628 if (h == NULL) /* paranoia */
4629 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06004630
4631 if (lockup_detected(h))
4632 return FAILED;
4633
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004634 dev = scsicmd->device->hostdata;
4635 if (!dev) {
4636 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
4637 "device lookup failed.\n");
4638 return FAILED;
4639 }
Webb Scales25163bd2015-04-23 09:32:00 -05004640
4641 /* if controller locked up, we can guarantee command won't complete */
4642 if (lockup_detected(h)) {
4643 dev_warn(&h->pdev->dev,
4644 "scsi %d:%d:%d:%d RESET FAILED, lockup detected\n",
4645 h->scsi_host->host_no, dev->bus, dev->target,
4646 dev->lun);
4647 return FAILED;
4648 }
4649
4650 /* this reset request might be the result of a lockup; check */
4651 if (detect_controller_lockup(h)) {
4652 dev_warn(&h->pdev->dev,
4653 "scsi %d:%d:%d:%d RESET FAILED, new lockup detected\n",
4654 h->scsi_host->host_no, dev->bus, dev->target,
4655 dev->lun);
4656 return FAILED;
4657 }
4658
4659 hpsa_show_dev_msg(KERN_WARNING, h, dev, "resetting");
4660
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004661 /* send a reset to the SCSI LUN which the command was sent to */
Webb Scales25163bd2015-04-23 09:32:00 -05004662 rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN,
4663 DEFAULT_REPLY_QUEUE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004664 if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0)
4665 return SUCCESS;
4666
Webb Scales25163bd2015-04-23 09:32:00 -05004667 dev_warn(&h->pdev->dev,
4668 "scsi %d:%d:%d:%d reset failed\n",
4669 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004670 return FAILED;
4671}
4672
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004673static void swizzle_abort_tag(u8 *tag)
4674{
4675 u8 original_tag[8];
4676
4677 memcpy(original_tag, tag, 8);
4678 tag[0] = original_tag[3];
4679 tag[1] = original_tag[2];
4680 tag[2] = original_tag[1];
4681 tag[3] = original_tag[0];
4682 tag[4] = original_tag[7];
4683 tag[5] = original_tag[6];
4684 tag[6] = original_tag[5];
4685 tag[7] = original_tag[4];
4686}
4687
Scott Teel17eb87d2014-02-18 13:55:28 -06004688static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06004689 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06004690{
Don Brace2b08b3e2015-01-23 16:41:09 -06004691 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06004692 if (c->cmd_type == CMD_IOACCEL1) {
4693 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
4694 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06004695 tag = le64_to_cpu(cm1->tag);
4696 *tagupper = cpu_to_le32(tag >> 32);
4697 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004698 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06004699 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06004700 if (c->cmd_type == CMD_IOACCEL2) {
4701 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
4702 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06004703 /* upper tag not used in ioaccel2 mode */
4704 memset(tagupper, 0, sizeof(*tagupper));
4705 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004706 return;
4707 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004708 tag = le64_to_cpu(c->Header.tag);
4709 *tagupper = cpu_to_le32(tag >> 32);
4710 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06004711}
4712
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004713static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004714 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004715{
4716 int rc = IO_OK;
4717 struct CommandList *c;
4718 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06004719 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004720
Stephen Cameron45fcb862015-01-23 16:43:04 -06004721 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004722 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06004723 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004724 return -ENOMEM;
4725 }
4726
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004727 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004728 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004729 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004730 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004731 swizzle_abort_tag(&c->Request.CDB[4]);
Webb Scales25163bd2015-04-23 09:32:00 -05004732 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06004733 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05004734 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004735 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004736 /* no unmap needed here because no data xfer. */
4737
4738 ei = c->err_info;
4739 switch (ei->CommandStatus) {
4740 case CMD_SUCCESS:
4741 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05004742 case CMD_TMF_STATUS:
4743 rc = hpsa_evaluate_tmf_status(h, c);
4744 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004745 case CMD_UNABORTABLE: /* Very common, don't make noise. */
4746 rc = -1;
4747 break;
4748 default:
4749 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004750 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06004751 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004752 rc = -1;
4753 break;
4754 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06004755 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004756 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
4757 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004758 return rc;
4759}
4760
Scott Teel54b6e9e2014-02-18 13:56:45 -06004761/* ioaccel2 path firmware cannot handle abort task requests.
4762 * Change abort requests to physical target reset, and send to the
4763 * address of the physical disk used for the ioaccel 2 command.
4764 * Return 0 on success (IO_OK)
4765 * -1 on failure
4766 */
4767
4768static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05004769 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06004770{
4771 int rc = IO_OK;
4772 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
4773 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
4774 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
4775 unsigned char *psa = &phys_scsi3addr[0];
4776
4777 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06004778 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004779 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
4780 if (dev == NULL) {
4781 dev_warn(&h->pdev->dev,
4782 "Cannot abort: no device pointer for command.\n");
4783 return -1; /* not abortable */
4784 }
4785
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004786 if (h->raid_offload_debug > 0)
4787 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05004788 "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 -06004789 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05004790 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004791 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
4792 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
4793
Scott Teel54b6e9e2014-02-18 13:56:45 -06004794 if (!dev->offload_enabled) {
4795 dev_warn(&h->pdev->dev,
4796 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
4797 return -1; /* not abortable */
4798 }
4799
4800 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
4801 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
4802 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
4803 return -1; /* not abortable */
4804 }
4805
4806 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004807 if (h->raid_offload_debug > 0)
4808 dev_info(&h->pdev->dev,
4809 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4810 psa[0], psa[1], psa[2], psa[3],
4811 psa[4], psa[5], psa[6], psa[7]);
Webb Scales25163bd2015-04-23 09:32:00 -05004812 rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004813 if (rc != 0) {
4814 dev_warn(&h->pdev->dev,
4815 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4816 psa[0], psa[1], psa[2], psa[3],
4817 psa[4], psa[5], psa[6], psa[7]);
4818 return rc; /* failed to reset */
4819 }
4820
4821 /* wait for device to recover */
4822 if (wait_for_device_to_become_ready(h, psa) != 0) {
4823 dev_warn(&h->pdev->dev,
4824 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4825 psa[0], psa[1], psa[2], psa[3],
4826 psa[4], psa[5], psa[6], psa[7]);
4827 return -1; /* failed to recover */
4828 }
4829
4830 /* device recovered */
4831 dev_info(&h->pdev->dev,
4832 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4833 psa[0], psa[1], psa[2], psa[3],
4834 psa[4], psa[5], psa[6], psa[7]);
4835
4836 return rc; /* success */
4837}
4838
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004839static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05004840 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004841{
Scott Teel54b6e9e2014-02-18 13:56:45 -06004842 /* ioccelerator mode 2 commands should be aborted via the
4843 * accelerated path, since RAID path is unaware of these commands,
4844 * but underlying firmware can't handle abort TMF.
4845 * Change abort to physical device reset.
4846 */
4847 if (abort->cmd_type == CMD_IOACCEL2)
Webb Scales25163bd2015-04-23 09:32:00 -05004848 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
4849 abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004850 return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05004851}
4852
4853/* Find out which reply queue a command was meant to return on */
4854static int hpsa_extract_reply_queue(struct ctlr_info *h,
4855 struct CommandList *c)
4856{
4857 if (c->cmd_type == CMD_IOACCEL2)
4858 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
4859 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004860}
4861
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004862/*
4863 * Limit concurrency of abort commands to prevent
4864 * over-subscription of commands
4865 */
4866static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
4867{
4868#define ABORT_CMD_WAIT_MSECS 5000
4869 return !wait_event_timeout(h->abort_cmd_wait_queue,
4870 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
4871 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
4872}
4873
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004874/* Send an abort for the specified command.
4875 * If the device and controller support it,
4876 * send a task abort request.
4877 */
4878static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
4879{
4880
4881 int i, rc;
4882 struct ctlr_info *h;
4883 struct hpsa_scsi_dev_t *dev;
4884 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004885 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
4886 char msg[256]; /* For debug messaging. */
4887 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06004888 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05004889 int refcount, reply_queue;
4890
4891 if (sc == NULL)
4892 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004893
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004894 if (sc->device == NULL)
4895 return FAILED;
4896
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004897 /* Find the controller of the command to be aborted */
4898 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004899 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004900 return FAILED;
4901
Webb Scales25163bd2015-04-23 09:32:00 -05004902 /* Find the device of the command to be aborted */
4903 dev = sc->device->hostdata;
4904 if (!dev) {
4905 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
4906 msg);
Don Bracee3458932015-01-23 16:44:24 -06004907 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05004908 }
4909
4910 /* If controller locked up, we can guarantee command won't complete */
4911 if (lockup_detected(h)) {
4912 hpsa_show_dev_msg(KERN_WARNING, h, dev,
4913 "ABORT FAILED, lockup detected");
4914 return FAILED;
4915 }
4916
4917 /* This is a good time to check if controller lockup has occurred */
4918 if (detect_controller_lockup(h)) {
4919 hpsa_show_dev_msg(KERN_WARNING, h, dev,
4920 "ABORT FAILED, new lockup detected");
4921 return FAILED;
4922 }
Don Bracee3458932015-01-23 16:44:24 -06004923
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004924 /* Check that controller supports some kind of task abort */
4925 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
4926 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
4927 return FAILED;
4928
4929 memset(msg, 0, sizeof(msg));
Webb Scales0d96ef52015-04-23 09:31:55 -05004930 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004931 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05004932 sc->device->id, sc->device->lun,
4933 "Aborting command");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004934
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004935 /* Get SCSI command to be aborted */
4936 abort = (struct CommandList *) sc->host_scribble;
4937 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06004938 /* This can happen if the command already completed. */
4939 return SUCCESS;
4940 }
4941 refcount = atomic_inc_return(&abort->refcount);
4942 if (refcount == 1) { /* Command is done already. */
4943 cmd_free(h, abort);
4944 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004945 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004946
4947 /* Don't bother trying the abort if we know it won't work. */
4948 if (abort->cmd_type != CMD_IOACCEL2 &&
4949 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
4950 cmd_free(h, abort);
4951 return FAILED;
4952 }
4953
Scott Teel17eb87d2014-02-18 13:55:28 -06004954 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05004955 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06004956 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06004957 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004958 if (as != NULL)
4959 ml += sprintf(msg+ml, "Command:0x%x SN:0x%lx ",
4960 as->cmnd[0], as->serial_number);
4961 dev_dbg(&h->pdev->dev, "%s\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05004962 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004963 /*
4964 * Command is in flight, or possibly already completed
4965 * by the firmware (but not to the scsi mid layer) but we can't
4966 * distinguish which. Send the abort down.
4967 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004968 if (wait_for_available_abort_cmd(h)) {
4969 dev_warn(&h->pdev->dev,
4970 "Timed out waiting for an abort command to become available.\n");
4971 cmd_free(h, abort);
4972 return FAILED;
4973 }
Webb Scales25163bd2015-04-23 09:32:00 -05004974 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004975 atomic_inc(&h->abort_cmds_available);
4976 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004977 if (rc != 0) {
Webb Scales0d96ef52015-04-23 09:31:55 -05004978 hpsa_show_dev_msg(KERN_WARNING, h, dev,
4979 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06004980 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004981 return FAILED;
4982 }
4983 dev_info(&h->pdev->dev, "%s REQUEST SUCCEEDED.\n", msg);
4984
4985 /* If the abort(s) above completed and actually aborted the
4986 * command, then the command to be aborted should already be
4987 * completed. If not, wait around a bit more to see if they
4988 * manage to complete normally.
4989 */
4990#define ABORT_COMPLETE_WAIT_SECS 30
4991 for (i = 0; i < ABORT_COMPLETE_WAIT_SECS * 10; i++) {
Webb Scales281a7fd2015-01-23 16:43:35 -06004992 refcount = atomic_read(&abort->refcount);
4993 if (refcount < 2) {
4994 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004995 return SUCCESS;
Webb Scales281a7fd2015-01-23 16:43:35 -06004996 } else {
4997 msleep(100);
4998 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004999 }
5000 dev_warn(&h->pdev->dev, "%s FAILED. Aborted command has not completed after %d seconds.\n",
5001 msg, ABORT_COMPLETE_WAIT_SECS);
Webb Scales281a7fd2015-01-23 16:43:35 -06005002 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005003 return FAILED;
5004}
5005
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005006/*
5007 * For operations that cannot sleep, a command block is allocated at init,
5008 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5009 * which ones are free or in use. Lock must be held when calling this.
5010 * cmd_free() is the complement.
5011 */
Webb Scales281a7fd2015-01-23 16:43:35 -06005012
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005013static struct CommandList *cmd_alloc(struct ctlr_info *h)
5014{
5015 struct CommandList *c;
5016 int i;
5017 union u64bit temp64;
5018 dma_addr_t cmd_dma_handle, err_dma_handle;
Webb Scales281a7fd2015-01-23 16:43:35 -06005019 int refcount;
Robert Elliott33811022015-01-23 16:43:41 -06005020 unsigned long offset;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005021
Robert Elliott33811022015-01-23 16:43:41 -06005022 /*
5023 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005024 * multiple threads could get in here, and one thread could
5025 * be scanning through the list of bits looking for a free
5026 * one, but the free ones are always behind him, and other
5027 * threads sneak in behind him and eat them before he can
5028 * get to them, so that while there is always a free one, a
5029 * very unlucky thread might be starved anyway, never able to
5030 * beat the other threads. In reality, this happens so
5031 * infrequently as to be indistinguishable from never.
5032 */
5033
Robert Elliott33811022015-01-23 16:43:41 -06005034 offset = h->last_allocation; /* benignly racy */
Webb Scales281a7fd2015-01-23 16:43:35 -06005035 for (;;) {
5036 i = find_next_zero_bit(h->cmd_pool_bits, h->nr_cmds, offset);
5037 if (unlikely(i == h->nr_cmds)) {
5038 offset = 0;
5039 continue;
5040 }
5041 c = h->cmd_pool + i;
5042 refcount = atomic_inc_return(&c->refcount);
5043 if (unlikely(refcount > 1)) {
5044 cmd_free(h, c); /* already in use */
5045 offset = (i + 1) % h->nr_cmds;
5046 continue;
5047 }
5048 set_bit(i & (BITS_PER_LONG - 1),
5049 h->cmd_pool_bits + (i / BITS_PER_LONG));
5050 break; /* it's ours now. */
5051 }
Robert Elliott33811022015-01-23 16:43:41 -06005052 h->last_allocation = i; /* benignly racy */
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005053
Webb Scales281a7fd2015-01-23 16:43:35 -06005054 /* Zero out all of commandlist except the last field, refcount */
5055 memset(c, 0, offsetof(struct CommandList, refcount));
5056 c->Header.tag = cpu_to_le64((u64) (i << DIRECT_LOOKUP_SHIFT));
Don Bracef2405db2015-01-23 16:43:09 -06005057 cmd_dma_handle = h->cmd_pool_dhandle + i * sizeof(*c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005058 c->err_info = h->errinfo_pool + i;
5059 memset(c->err_info, 0, sizeof(*c->err_info));
5060 err_dma_handle = h->errinfo_pool_dhandle
5061 + i * sizeof(*c->err_info);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005062
5063 c->cmdindex = i;
5064
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005065 c->busaddr = (u32) cmd_dma_handle;
5066 temp64.val = (u64) err_dma_handle;
Webb Scales281a7fd2015-01-23 16:43:35 -06005067 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
5068 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005069
5070 c->h = h;
5071 return c;
5072}
5073
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005074static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5075{
Webb Scales281a7fd2015-01-23 16:43:35 -06005076 if (atomic_dec_and_test(&c->refcount)) {
5077 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005078
Webb Scales281a7fd2015-01-23 16:43:35 -06005079 i = c - h->cmd_pool;
5080 clear_bit(i & (BITS_PER_LONG - 1),
5081 h->cmd_pool_bits + (i / BITS_PER_LONG));
5082 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005083}
5084
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005085#ifdef CONFIG_COMPAT
5086
Don Brace42a91642014-11-14 17:26:27 -06005087static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
5088 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005089{
5090 IOCTL32_Command_struct __user *arg32 =
5091 (IOCTL32_Command_struct __user *) arg;
5092 IOCTL_Command_struct arg64;
5093 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5094 int err;
5095 u32 cp;
5096
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005097 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005098 err = 0;
5099 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5100 sizeof(arg64.LUN_info));
5101 err |= copy_from_user(&arg64.Request, &arg32->Request,
5102 sizeof(arg64.Request));
5103 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5104 sizeof(arg64.error_info));
5105 err |= get_user(arg64.buf_size, &arg32->buf_size);
5106 err |= get_user(cp, &arg32->buf);
5107 arg64.buf = compat_ptr(cp);
5108 err |= copy_to_user(p, &arg64, sizeof(arg64));
5109
5110 if (err)
5111 return -EFAULT;
5112
Don Brace42a91642014-11-14 17:26:27 -06005113 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005114 if (err)
5115 return err;
5116 err |= copy_in_user(&arg32->error_info, &p->error_info,
5117 sizeof(arg32->error_info));
5118 if (err)
5119 return -EFAULT;
5120 return err;
5121}
5122
5123static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06005124 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005125{
5126 BIG_IOCTL32_Command_struct __user *arg32 =
5127 (BIG_IOCTL32_Command_struct __user *) arg;
5128 BIG_IOCTL_Command_struct arg64;
5129 BIG_IOCTL_Command_struct __user *p =
5130 compat_alloc_user_space(sizeof(arg64));
5131 int err;
5132 u32 cp;
5133
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005134 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005135 err = 0;
5136 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5137 sizeof(arg64.LUN_info));
5138 err |= copy_from_user(&arg64.Request, &arg32->Request,
5139 sizeof(arg64.Request));
5140 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5141 sizeof(arg64.error_info));
5142 err |= get_user(arg64.buf_size, &arg32->buf_size);
5143 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5144 err |= get_user(cp, &arg32->buf);
5145 arg64.buf = compat_ptr(cp);
5146 err |= copy_to_user(p, &arg64, sizeof(arg64));
5147
5148 if (err)
5149 return -EFAULT;
5150
Don Brace42a91642014-11-14 17:26:27 -06005151 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005152 if (err)
5153 return err;
5154 err |= copy_in_user(&arg32->error_info, &p->error_info,
5155 sizeof(arg32->error_info));
5156 if (err)
5157 return -EFAULT;
5158 return err;
5159}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005160
Don Brace42a91642014-11-14 17:26:27 -06005161static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005162{
5163 switch (cmd) {
5164 case CCISS_GETPCIINFO:
5165 case CCISS_GETINTINFO:
5166 case CCISS_SETINTINFO:
5167 case CCISS_GETNODENAME:
5168 case CCISS_SETNODENAME:
5169 case CCISS_GETHEARTBEAT:
5170 case CCISS_GETBUSTYPES:
5171 case CCISS_GETFIRMVER:
5172 case CCISS_GETDRIVVER:
5173 case CCISS_REVALIDVOLS:
5174 case CCISS_DEREGDISK:
5175 case CCISS_REGNEWDISK:
5176 case CCISS_REGNEWD:
5177 case CCISS_RESCANDISK:
5178 case CCISS_GETLUNINFO:
5179 return hpsa_ioctl(dev, cmd, arg);
5180
5181 case CCISS_PASSTHRU32:
5182 return hpsa_ioctl32_passthru(dev, cmd, arg);
5183 case CCISS_BIG_PASSTHRU32:
5184 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
5185
5186 default:
5187 return -ENOIOCTLCMD;
5188 }
5189}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005190#endif
5191
5192static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5193{
5194 struct hpsa_pci_info pciinfo;
5195
5196 if (!argp)
5197 return -EINVAL;
5198 pciinfo.domain = pci_domain_nr(h->pdev->bus);
5199 pciinfo.bus = h->pdev->bus->number;
5200 pciinfo.dev_fn = h->pdev->devfn;
5201 pciinfo.board_id = h->board_id;
5202 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5203 return -EFAULT;
5204 return 0;
5205}
5206
5207static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
5208{
5209 DriverVer_type DriverVer;
5210 unsigned char vmaj, vmin, vsubmin;
5211 int rc;
5212
5213 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
5214 &vmaj, &vmin, &vsubmin);
5215 if (rc != 3) {
5216 dev_info(&h->pdev->dev, "driver version string '%s' "
5217 "unrecognized.", HPSA_DRIVER_VERSION);
5218 vmaj = 0;
5219 vmin = 0;
5220 vsubmin = 0;
5221 }
5222 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
5223 if (!argp)
5224 return -EINVAL;
5225 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
5226 return -EFAULT;
5227 return 0;
5228}
5229
5230static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5231{
5232 IOCTL_Command_struct iocommand;
5233 struct CommandList *c;
5234 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005235 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005236 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005237
5238 if (!argp)
5239 return -EINVAL;
5240 if (!capable(CAP_SYS_RAWIO))
5241 return -EPERM;
5242 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
5243 return -EFAULT;
5244 if ((iocommand.buf_size < 1) &&
5245 (iocommand.Request.Type.Direction != XFER_NONE)) {
5246 return -EINVAL;
5247 }
5248 if (iocommand.buf_size > 0) {
5249 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
5250 if (buff == NULL)
5251 return -EFAULT;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005252 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005253 /* Copy the data into the buffer we created */
5254 if (copy_from_user(buff, iocommand.buf,
5255 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005256 rc = -EFAULT;
5257 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005258 }
5259 } else {
5260 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005261 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005262 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005263 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005264 if (c == NULL) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005265 rc = -ENOMEM;
5266 goto out_kfree;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005267 }
5268 /* Fill in the command type */
5269 c->cmd_type = CMD_IOCTL_PEND;
5270 /* Fill in Command Header */
5271 c->Header.ReplyQueue = 0; /* unused in simple mode */
5272 if (iocommand.buf_size > 0) { /* buffer to fill */
5273 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005274 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005275 } else { /* no buffers to fill */
5276 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005277 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005278 }
5279 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005280
5281 /* Fill in Request block */
5282 memcpy(&c->Request, &iocommand.Request,
5283 sizeof(c->Request));
5284
5285 /* Fill in the scatter gather information */
5286 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005287 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005288 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005289 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
5290 c->SG[0].Addr = cpu_to_le64(0);
5291 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005292 rc = -ENOMEM;
5293 goto out;
5294 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005295 c->SG[0].Addr = cpu_to_le64(temp64);
5296 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
5297 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005298 }
Webb Scales25163bd2015-04-23 09:32:00 -05005299 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05005300 if (iocommand.buf_size > 0)
5301 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005302 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005303 if (rc) {
5304 rc = -EIO;
5305 goto out;
5306 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005307
5308 /* Copy the error information out */
5309 memcpy(&iocommand.error_info, c->err_info,
5310 sizeof(iocommand.error_info));
5311 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005312 rc = -EFAULT;
5313 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005314 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005315 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005316 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005317 /* Copy the data out of the buffer we created */
5318 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005319 rc = -EFAULT;
5320 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005321 }
5322 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005323out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005324 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005325out_kfree:
5326 kfree(buff);
5327 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005328}
5329
5330static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5331{
5332 BIG_IOCTL_Command_struct *ioc;
5333 struct CommandList *c;
5334 unsigned char **buff = NULL;
5335 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005336 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005337 BYTE sg_used = 0;
5338 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005339 u32 left;
5340 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005341 BYTE __user *data_ptr;
5342
5343 if (!argp)
5344 return -EINVAL;
5345 if (!capable(CAP_SYS_RAWIO))
5346 return -EPERM;
5347 ioc = (BIG_IOCTL_Command_struct *)
5348 kmalloc(sizeof(*ioc), GFP_KERNEL);
5349 if (!ioc) {
5350 status = -ENOMEM;
5351 goto cleanup1;
5352 }
5353 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
5354 status = -EFAULT;
5355 goto cleanup1;
5356 }
5357 if ((ioc->buf_size < 1) &&
5358 (ioc->Request.Type.Direction != XFER_NONE)) {
5359 status = -EINVAL;
5360 goto cleanup1;
5361 }
5362 /* Check kmalloc limits using all SGs */
5363 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
5364 status = -EINVAL;
5365 goto cleanup1;
5366 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005367 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005368 status = -EINVAL;
5369 goto cleanup1;
5370 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005371 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005372 if (!buff) {
5373 status = -ENOMEM;
5374 goto cleanup1;
5375 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005376 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005377 if (!buff_size) {
5378 status = -ENOMEM;
5379 goto cleanup1;
5380 }
5381 left = ioc->buf_size;
5382 data_ptr = ioc->buf;
5383 while (left) {
5384 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
5385 buff_size[sg_used] = sz;
5386 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
5387 if (buff[sg_used] == NULL) {
5388 status = -ENOMEM;
5389 goto cleanup1;
5390 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005391 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005392 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05005393 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005394 goto cleanup1;
5395 }
5396 } else
5397 memset(buff[sg_used], 0, sz);
5398 left -= sz;
5399 data_ptr += sz;
5400 sg_used++;
5401 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005402 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005403 if (c == NULL) {
5404 status = -ENOMEM;
5405 goto cleanup1;
5406 }
5407 c->cmd_type = CMD_IOCTL_PEND;
5408 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005409 c->Header.SGList = (u8) sg_used;
5410 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005411 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005412 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
5413 if (ioc->buf_size > 0) {
5414 int i;
5415 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005416 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005417 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005418 if (dma_mapping_error(&h->pdev->dev,
5419 (dma_addr_t) temp64)) {
5420 c->SG[i].Addr = cpu_to_le64(0);
5421 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005422 hpsa_pci_unmap(h->pdev, c, i,
5423 PCI_DMA_BIDIRECTIONAL);
5424 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005425 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005426 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005427 c->SG[i].Addr = cpu_to_le64(temp64);
5428 c->SG[i].Len = cpu_to_le32(buff_size[i]);
5429 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005430 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005431 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005432 }
Webb Scales25163bd2015-04-23 09:32:00 -05005433 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005434 if (sg_used)
5435 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005436 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005437 if (status) {
5438 status = -EIO;
5439 goto cleanup0;
5440 }
5441
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005442 /* Copy the error information out */
5443 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
5444 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005445 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005446 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005447 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005448 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005449 int i;
5450
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005451 /* Copy the data out of the buffer we created */
5452 BYTE __user *ptr = ioc->buf;
5453 for (i = 0; i < sg_used; i++) {
5454 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005455 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005456 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005457 }
5458 ptr += buff_size[i];
5459 }
5460 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005461 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005462cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005463 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005464cleanup1:
5465 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005466 int i;
5467
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005468 for (i = 0; i < sg_used; i++)
5469 kfree(buff[i]);
5470 kfree(buff);
5471 }
5472 kfree(buff_size);
5473 kfree(ioc);
5474 return status;
5475}
5476
5477static void check_ioctl_unit_attention(struct ctlr_info *h,
5478 struct CommandList *c)
5479{
5480 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5481 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
5482 (void) check_for_unit_attention(h, c);
5483}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005484
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005485/*
5486 * ioctl
5487 */
Don Brace42a91642014-11-14 17:26:27 -06005488static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005489{
5490 struct ctlr_info *h;
5491 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005492 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005493
5494 h = sdev_to_hba(dev);
5495
5496 switch (cmd) {
5497 case CCISS_DEREGDISK:
5498 case CCISS_REGNEWDISK:
5499 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005500 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005501 return 0;
5502 case CCISS_GETPCIINFO:
5503 return hpsa_getpciinfo_ioctl(h, argp);
5504 case CCISS_GETDRIVVER:
5505 return hpsa_getdrivver_ioctl(h, argp);
5506 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005507 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005508 return -EAGAIN;
5509 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005510 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005511 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005512 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005513 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005514 return -EAGAIN;
5515 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005516 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005517 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005518 default:
5519 return -ENOTTY;
5520 }
5521}
5522
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005523static int hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
5524 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005525{
5526 struct CommandList *c;
5527
5528 c = cmd_alloc(h);
5529 if (!c)
5530 return -ENOMEM;
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005531 /* fill_cmd can't fail here, no data buffer to map */
5532 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005533 RAID_CTLR_LUNID, TYPE_MSG);
5534 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
5535 c->waiting = NULL;
5536 enqueue_cmd_and_start_io(h, c);
5537 /* Don't wait for completion, the reset won't complete. Don't free
5538 * the command either. This is the last command we will send before
5539 * re-initializing everything, so it doesn't matter and won't leak.
5540 */
5541 return 0;
5542}
5543
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005544static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005545 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005546 int cmd_type)
5547{
5548 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005549 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005550
5551 c->cmd_type = CMD_IOCTL_PEND;
5552 c->Header.ReplyQueue = 0;
5553 if (buff != NULL && size > 0) {
5554 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005555 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005556 } else {
5557 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005558 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005559 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005560 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
5561
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005562 if (cmd_type == TYPE_CMD) {
5563 switch (cmd) {
5564 case HPSA_INQUIRY:
5565 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005566 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005567 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005568 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005569 }
5570 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005571 c->Request.type_attr_dir =
5572 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005573 c->Request.Timeout = 0;
5574 c->Request.CDB[0] = HPSA_INQUIRY;
5575 c->Request.CDB[4] = size & 0xFF;
5576 break;
5577 case HPSA_REPORT_LOG:
5578 case HPSA_REPORT_PHYS:
5579 /* Talking to controller so It's a physical command
5580 mode = 00 target = 0. Nothing to write.
5581 */
5582 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005583 c->Request.type_attr_dir =
5584 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005585 c->Request.Timeout = 0;
5586 c->Request.CDB[0] = cmd;
5587 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5588 c->Request.CDB[7] = (size >> 16) & 0xFF;
5589 c->Request.CDB[8] = (size >> 8) & 0xFF;
5590 c->Request.CDB[9] = size & 0xFF;
5591 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005592 case HPSA_CACHE_FLUSH:
5593 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005594 c->Request.type_attr_dir =
5595 TYPE_ATTR_DIR(cmd_type,
5596 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005597 c->Request.Timeout = 0;
5598 c->Request.CDB[0] = BMIC_WRITE;
5599 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05005600 c->Request.CDB[7] = (size >> 8) & 0xFF;
5601 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005602 break;
5603 case TEST_UNIT_READY:
5604 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005605 c->Request.type_attr_dir =
5606 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005607 c->Request.Timeout = 0;
5608 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005609 case HPSA_GET_RAID_MAP:
5610 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005611 c->Request.type_attr_dir =
5612 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005613 c->Request.Timeout = 0;
5614 c->Request.CDB[0] = HPSA_CISS_READ;
5615 c->Request.CDB[1] = cmd;
5616 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5617 c->Request.CDB[7] = (size >> 16) & 0xFF;
5618 c->Request.CDB[8] = (size >> 8) & 0xFF;
5619 c->Request.CDB[9] = size & 0xFF;
5620 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005621 case BMIC_SENSE_CONTROLLER_PARAMETERS:
5622 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005623 c->Request.type_attr_dir =
5624 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005625 c->Request.Timeout = 0;
5626 c->Request.CDB[0] = BMIC_READ;
5627 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
5628 c->Request.CDB[7] = (size >> 16) & 0xFF;
5629 c->Request.CDB[8] = (size >> 8) & 0xFF;
5630 break;
Don Brace03383732015-01-23 16:43:30 -06005631 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
5632 c->Request.CDBLen = 10;
5633 c->Request.type_attr_dir =
5634 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
5635 c->Request.Timeout = 0;
5636 c->Request.CDB[0] = BMIC_READ;
5637 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
5638 c->Request.CDB[7] = (size >> 16) & 0xFF;
5639 c->Request.CDB[8] = (size >> 8) & 0XFF;
5640 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005641 default:
5642 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
5643 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005644 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005645 }
5646 } else if (cmd_type == TYPE_MSG) {
5647 switch (cmd) {
5648
5649 case HPSA_DEVICE_RESET_MSG:
5650 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005651 c->Request.type_attr_dir =
5652 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005653 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005654 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
5655 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05005656 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005657 /* If bytes 4-7 are zero, it means reset the */
5658 /* LunID device */
5659 c->Request.CDB[4] = 0x00;
5660 c->Request.CDB[5] = 0x00;
5661 c->Request.CDB[6] = 0x00;
5662 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005663 break;
5664 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005665 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06005666 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005667 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
5668 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005669 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005670 c->Request.type_attr_dir =
5671 TYPE_ATTR_DIR(cmd_type,
5672 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005673 c->Request.Timeout = 0; /* Don't time out */
5674 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
5675 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
5676 c->Request.CDB[2] = 0x00; /* reserved */
5677 c->Request.CDB[3] = 0x00; /* reserved */
5678 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005679 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005680 c->Request.CDB[12] = 0x00; /* reserved */
5681 c->Request.CDB[13] = 0x00; /* reserved */
5682 c->Request.CDB[14] = 0x00; /* reserved */
5683 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005684 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005685 default:
5686 dev_warn(&h->pdev->dev, "unknown message type %d\n",
5687 cmd);
5688 BUG();
5689 }
5690 } else {
5691 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
5692 BUG();
5693 }
5694
Stephen M. Camerona505b862014-11-14 17:27:04 -06005695 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005696 case XFER_READ:
5697 pci_dir = PCI_DMA_FROMDEVICE;
5698 break;
5699 case XFER_WRITE:
5700 pci_dir = PCI_DMA_TODEVICE;
5701 break;
5702 case XFER_NONE:
5703 pci_dir = PCI_DMA_NONE;
5704 break;
5705 default:
5706 pci_dir = PCI_DMA_BIDIRECTIONAL;
5707 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005708 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
5709 return -1;
5710 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005711}
5712
5713/*
5714 * Map (physical) PCI mem into (virtual) kernel space
5715 */
5716static void __iomem *remap_pci_mem(ulong base, ulong size)
5717{
5718 ulong page_base = ((ulong) base) & PAGE_MASK;
5719 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05005720 void __iomem *page_remapped = ioremap_nocache(page_base,
5721 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005722
5723 return page_remapped ? (page_remapped + page_offs) : NULL;
5724}
5725
Matt Gates254f7962012-05-01 11:43:06 -05005726static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005727{
Matt Gates254f7962012-05-01 11:43:06 -05005728 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005729}
5730
Stephen M. Cameron900c5442010-02-04 08:42:35 -06005731static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005732{
5733 return h->access.intr_pending(h);
5734}
5735
5736static inline long interrupt_not_for_us(struct ctlr_info *h)
5737{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005738 return (h->access.intr_pending(h) == 0) ||
5739 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005740}
5741
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005742static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
5743 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005744{
5745 if (unlikely(tag_index >= h->nr_cmds)) {
5746 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
5747 return 1;
5748 }
5749 return 0;
5750}
5751
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05005752static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005753{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05005754 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06005755 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
5756 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05005757 complete_scsi_command(c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005758 else if (c->cmd_type == CMD_IOCTL_PEND)
5759 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06005760}
5761
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005762
5763static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06005764{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005765#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
5766#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06005767 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005768 return tag & ~HPSA_SIMPLE_ERROR_BITS;
5769 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06005770}
5771
Don Brace303932f2010-02-04 08:42:40 -06005772/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005773static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06005774 u32 raw_tag)
5775{
5776 u32 tag_index;
5777 struct CommandList *c;
5778
Don Bracef2405db2015-01-23 16:43:09 -06005779 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005780 if (!bad_tag(h, tag_index, raw_tag)) {
5781 c = h->cmd_pool + tag_index;
5782 finish_cmd(c);
5783 }
Don Brace303932f2010-02-04 08:42:40 -06005784}
5785
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005786/* Some controllers, like p400, will give us one interrupt
5787 * after a soft reset, even if we turned interrupts off.
5788 * Only need to check for this in the hpsa_xxx_discard_completions
5789 * functions.
5790 */
5791static int ignore_bogus_interrupt(struct ctlr_info *h)
5792{
5793 if (likely(!reset_devices))
5794 return 0;
5795
5796 if (likely(h->interrupts_enabled))
5797 return 0;
5798
5799 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
5800 "(known firmware bug.) Ignoring.\n");
5801
5802 return 1;
5803}
5804
Matt Gates254f7962012-05-01 11:43:06 -05005805/*
5806 * Convert &h->q[x] (passed to interrupt handlers) back to h.
5807 * Relies on (h-q[x] == x) being true for x such that
5808 * 0 <= x < MAX_REPLY_QUEUES.
5809 */
5810static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005811{
Matt Gates254f7962012-05-01 11:43:06 -05005812 return container_of((queue - *queue), struct ctlr_info, q[0]);
5813}
5814
5815static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
5816{
5817 struct ctlr_info *h = queue_to_hba(queue);
5818 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005819 u32 raw_tag;
5820
5821 if (ignore_bogus_interrupt(h))
5822 return IRQ_NONE;
5823
5824 if (interrupt_not_for_us(h))
5825 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005826 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005827 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005828 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005829 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005830 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005831 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005832 return IRQ_HANDLED;
5833}
5834
Matt Gates254f7962012-05-01 11:43:06 -05005835static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005836{
Matt Gates254f7962012-05-01 11:43:06 -05005837 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005838 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005839 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005840
5841 if (ignore_bogus_interrupt(h))
5842 return IRQ_NONE;
5843
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005844 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005845 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005846 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005847 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005848 return IRQ_HANDLED;
5849}
5850
Matt Gates254f7962012-05-01 11:43:06 -05005851static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005852{
Matt Gates254f7962012-05-01 11:43:06 -05005853 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06005854 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005855 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005856
5857 if (interrupt_not_for_us(h))
5858 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005859 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005860 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005861 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005862 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06005863 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005864 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005865 }
5866 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005867 return IRQ_HANDLED;
5868}
5869
Matt Gates254f7962012-05-01 11:43:06 -05005870static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005871{
Matt Gates254f7962012-05-01 11:43:06 -05005872 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005873 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005874 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005875
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005876 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005877 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06005878 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06005879 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005880 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005881 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005882 return IRQ_HANDLED;
5883}
5884
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005885/* Send a message CDB to the firmware. Careful, this only works
5886 * in simple mode, not performant mode due to the tag lookup.
5887 * We only ever use this immediately after a controller reset.
5888 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005889static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
5890 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005891{
5892 struct Command {
5893 struct CommandListHeader CommandHeader;
5894 struct RequestBlock Request;
5895 struct ErrDescriptor ErrorDescriptor;
5896 };
5897 struct Command *cmd;
5898 static const size_t cmd_sz = sizeof(*cmd) +
5899 sizeof(cmd->ErrorDescriptor);
5900 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06005901 __le32 paddr32;
5902 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005903 void __iomem *vaddr;
5904 int i, err;
5905
5906 vaddr = pci_ioremap_bar(pdev, 0);
5907 if (vaddr == NULL)
5908 return -ENOMEM;
5909
5910 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
5911 * CCISS commands, so they must be allocated from the lower 4GiB of
5912 * memory.
5913 */
5914 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
5915 if (err) {
5916 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06005917 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005918 }
5919
5920 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
5921 if (cmd == NULL) {
5922 iounmap(vaddr);
5923 return -ENOMEM;
5924 }
5925
5926 /* This must fit, because of the 32-bit consistent DMA mask. Also,
5927 * although there's no guarantee, we assume that the address is at
5928 * least 4-byte aligned (most likely, it's page-aligned).
5929 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005930 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005931
5932 cmd->CommandHeader.ReplyQueue = 0;
5933 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005934 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06005935 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005936 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
5937
5938 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005939 cmd->Request.type_attr_dir =
5940 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005941 cmd->Request.Timeout = 0; /* Don't time out */
5942 cmd->Request.CDB[0] = opcode;
5943 cmd->Request.CDB[1] = type;
5944 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005945 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06005946 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005947 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005948
Don Brace2b08b3e2015-01-23 16:41:09 -06005949 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005950
5951 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
5952 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06005953 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005954 break;
5955 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
5956 }
5957
5958 iounmap(vaddr);
5959
5960 /* we leak the DMA buffer here ... no choice since the controller could
5961 * still complete the command.
5962 */
5963 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
5964 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
5965 opcode, type);
5966 return -ETIMEDOUT;
5967 }
5968
5969 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
5970
5971 if (tag & HPSA_ERROR_BIT) {
5972 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
5973 opcode, type);
5974 return -EIO;
5975 }
5976
5977 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
5978 opcode, type);
5979 return 0;
5980}
5981
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005982#define hpsa_noop(p) hpsa_message(p, 3, 0)
5983
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005984static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06005985 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005986{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005987
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005988 if (use_doorbell) {
5989 /* For everything after the P600, the PCI power state method
5990 * of resetting the controller doesn't work, so we have this
5991 * other way using the doorbell register.
5992 */
5993 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005994 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05005995
Justin Lindley00701a92014-05-29 10:52:47 -05005996 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05005997 * doorbell reset and before any attempt to talk to the board
5998 * at all to ensure that this actually works and doesn't fall
5999 * over in some weird corner cases.
6000 */
Justin Lindley00701a92014-05-29 10:52:47 -05006001 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006002 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006003
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006004 /* Quoting from the Open CISS Specification: "The Power
6005 * Management Control/Status Register (CSR) controls the power
6006 * state of the device. The normal operating state is D0,
6007 * CSR=00h. The software off state is D3, CSR=03h. To reset
6008 * the controller, place the interface device in D3 then to D0,
6009 * this causes a secondary PCI reset which will reset the
6010 * controller." */
6011
Don Brace2662cab2015-01-23 16:41:25 -06006012 int rc = 0;
6013
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006014 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06006015
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006016 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006017 rc = pci_set_power_state(pdev, PCI_D3hot);
6018 if (rc)
6019 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006020
6021 msleep(500);
6022
6023 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006024 rc = pci_set_power_state(pdev, PCI_D0);
6025 if (rc)
6026 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02006027
6028 /*
6029 * The P600 requires a small delay when changing states.
6030 * Otherwise we may think the board did not reset and we bail.
6031 * This for kdump only and is particular to the P600.
6032 */
6033 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006034 }
6035 return 0;
6036}
6037
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006038static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006039{
6040 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006041 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006042}
6043
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006044static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006045{
6046 char *driver_version;
6047 int i, size = sizeof(cfgtable->driver_version);
6048
6049 driver_version = kmalloc(size, GFP_KERNEL);
6050 if (!driver_version)
6051 return -ENOMEM;
6052
6053 init_driver_version(driver_version, size);
6054 for (i = 0; i < size; i++)
6055 writeb(driver_version[i], &cfgtable->driver_version[i]);
6056 kfree(driver_version);
6057 return 0;
6058}
6059
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006060static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
6061 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006062{
6063 int i;
6064
6065 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6066 driver_ver[i] = readb(&cfgtable->driver_version[i]);
6067}
6068
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006069static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006070{
6071
6072 char *driver_ver, *old_driver_ver;
6073 int rc, size = sizeof(cfgtable->driver_version);
6074
6075 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6076 if (!old_driver_ver)
6077 return -ENOMEM;
6078 driver_ver = old_driver_ver + size;
6079
6080 /* After a reset, the 32 bytes of "driver version" in the cfgtable
6081 * should have been changed, otherwise we know the reset failed.
6082 */
6083 init_driver_version(old_driver_ver, size);
6084 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6085 rc = !memcmp(driver_ver, old_driver_ver, size);
6086 kfree(old_driver_ver);
6087 return rc;
6088}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006089/* This does a hard reset of the controller using PCI power management
6090 * states or the using the doorbell register.
6091 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006092static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006093{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006094 u64 cfg_offset;
6095 u32 cfg_base_addr;
6096 u64 cfg_base_addr_index;
6097 void __iomem *vaddr;
6098 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006099 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006100 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006101 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006102 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006103 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006104
6105 /* For controllers as old as the P600, this is very nearly
6106 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006107 *
6108 * pci_save_state(pci_dev);
6109 * pci_set_power_state(pci_dev, PCI_D3hot);
6110 * pci_set_power_state(pci_dev, PCI_D0);
6111 * pci_restore_state(pci_dev);
6112 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006113 * For controllers newer than the P600, the pci power state
6114 * method of resetting doesn't work so we have another way
6115 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006116 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006117
Robert Elliott60f923b2015-01-23 16:42:06 -06006118 if (!ctlr_is_resettable(board_id)) {
6119 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06006120 return -ENODEV;
6121 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05006122
6123 /* if controller is soft- but not hard resettable... */
6124 if (!ctlr_is_hard_resettable(board_id))
6125 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006126
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006127 /* Save the PCI command register */
6128 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006129 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006130
6131 /* find the first memory BAR, so we can find the cfg table */
6132 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
6133 if (rc)
6134 return rc;
6135 vaddr = remap_pci_mem(paddr, 0x250);
6136 if (!vaddr)
6137 return -ENOMEM;
6138
6139 /* find cfgtable in order to check if reset via doorbell is supported */
6140 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
6141 &cfg_base_addr_index, &cfg_offset);
6142 if (rc)
6143 goto unmap_vaddr;
6144 cfgtable = remap_pci_mem(pci_resource_start(pdev,
6145 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
6146 if (!cfgtable) {
6147 rc = -ENOMEM;
6148 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006149 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006150 rc = write_driver_ver_to_cfgtable(cfgtable);
6151 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06006152 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006153
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006154 /* If reset via doorbell register is supported, use that.
6155 * There are two such methods. Favor the newest method.
6156 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006157 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006158 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6159 if (use_doorbell) {
6160 use_doorbell = DOORBELL_CTLR_RESET2;
6161 } else {
6162 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6163 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006164 dev_warn(&pdev->dev,
6165 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006166 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006167 goto unmap_cfgtable;
6168 }
6169 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006170
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006171 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
6172 if (rc)
6173 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006174
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006175 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006176 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006177
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006178 /* Some devices (notably the HP Smart Array 5i Controller)
6179 need a little pause here */
6180 msleep(HPSA_POST_RESET_PAUSE_MSECS);
6181
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006182 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
6183 if (rc) {
6184 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06006185 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006186 goto unmap_cfgtable;
6187 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006188
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006189 rc = controller_reset_failed(vaddr);
6190 if (rc < 0)
6191 goto unmap_cfgtable;
6192 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006193 dev_warn(&pdev->dev, "Unable to successfully reset "
6194 "controller. Will try soft reset.\n");
6195 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006196 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006197 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006198 }
6199
6200unmap_cfgtable:
6201 iounmap(cfgtable);
6202
6203unmap_vaddr:
6204 iounmap(vaddr);
6205 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006206}
6207
6208/*
6209 * We cannot read the structure directly, for portability we must use
6210 * the io functions.
6211 * This is for debug only.
6212 */
Don Brace42a91642014-11-14 17:26:27 -06006213static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006214{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006215#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006216 int i;
6217 char temp_name[17];
6218
6219 dev_info(dev, "Controller Configuration information\n");
6220 dev_info(dev, "------------------------------------\n");
6221 for (i = 0; i < 4; i++)
6222 temp_name[i] = readb(&(tb->Signature[i]));
6223 temp_name[4] = '\0';
6224 dev_info(dev, " Signature = %s\n", temp_name);
6225 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
6226 dev_info(dev, " Transport methods supported = 0x%x\n",
6227 readl(&(tb->TransportSupport)));
6228 dev_info(dev, " Transport methods active = 0x%x\n",
6229 readl(&(tb->TransportActive)));
6230 dev_info(dev, " Requested transport Method = 0x%x\n",
6231 readl(&(tb->HostWrite.TransportRequest)));
6232 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
6233 readl(&(tb->HostWrite.CoalIntDelay)));
6234 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
6235 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06006236 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006237 readl(&(tb->CmdsOutMax)));
6238 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
6239 for (i = 0; i < 16; i++)
6240 temp_name[i] = readb(&(tb->ServerName[i]));
6241 temp_name[16] = '\0';
6242 dev_info(dev, " Server Name = %s\n", temp_name);
6243 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
6244 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006245#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006246}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006247
6248static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
6249{
6250 int i, offset, mem_type, bar_type;
6251
6252 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
6253 return 0;
6254 offset = 0;
6255 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
6256 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
6257 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
6258 offset += 4;
6259 else {
6260 mem_type = pci_resource_flags(pdev, i) &
6261 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
6262 switch (mem_type) {
6263 case PCI_BASE_ADDRESS_MEM_TYPE_32:
6264 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
6265 offset += 4; /* 32 bit */
6266 break;
6267 case PCI_BASE_ADDRESS_MEM_TYPE_64:
6268 offset += 8;
6269 break;
6270 default: /* reserved in PCI 2.2 */
6271 dev_warn(&pdev->dev,
6272 "base address is invalid\n");
6273 return -1;
6274 break;
6275 }
6276 }
6277 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
6278 return i + 1;
6279 }
6280 return -1;
6281}
6282
6283/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06006284 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006285 */
6286
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006287static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006288{
6289#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05006290 int err, i;
6291 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
6292
6293 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
6294 hpsa_msix_entries[i].vector = 0;
6295 hpsa_msix_entries[i].entry = i;
6296 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006297
6298 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006299 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
6300 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006301 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006302 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006303 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006304 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05006305 if (h->msix_vector > num_online_cpus())
6306 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006307 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
6308 1, h->msix_vector);
6309 if (err < 0) {
6310 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
6311 h->msix_vector = 0;
6312 goto single_msi_mode;
6313 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006314 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006315 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006316 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006317 h->msix_vector = err;
6318 for (i = 0; i < h->msix_vector; i++)
6319 h->intr[i] = hpsa_msix_entries[i].vector;
6320 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006321 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006322single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006323 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006324 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006325 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006326 h->msi_vector = 1;
6327 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006328 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006329 }
6330default_int_mode:
6331#endif /* CONFIG_PCI_MSI */
6332 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006333 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006334}
6335
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006336static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006337{
6338 int i;
6339 u32 subsystem_vendor_id, subsystem_device_id;
6340
6341 subsystem_vendor_id = pdev->subsystem_vendor;
6342 subsystem_device_id = pdev->subsystem_device;
6343 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
6344 subsystem_vendor_id;
6345
6346 for (i = 0; i < ARRAY_SIZE(products); i++)
6347 if (*board_id == products[i].board_id)
6348 return i;
6349
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05006350 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
6351 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
6352 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006353 dev_warn(&pdev->dev, "unrecognized board ID: "
6354 "0x%08x, ignoring.\n", *board_id);
6355 return -ENODEV;
6356 }
6357 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
6358}
6359
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006360static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
6361 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006362{
6363 int i;
6364
6365 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006366 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006367 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006368 *memory_bar = pci_resource_start(pdev, i);
6369 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006370 *memory_bar);
6371 return 0;
6372 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006373 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006374 return -ENODEV;
6375}
6376
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006377static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
6378 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006379{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006380 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006381 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006382 if (wait_for_ready)
6383 iterations = HPSA_BOARD_READY_ITERATIONS;
6384 else
6385 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006386
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006387 for (i = 0; i < iterations; i++) {
6388 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
6389 if (wait_for_ready) {
6390 if (scratchpad == HPSA_FIRMWARE_READY)
6391 return 0;
6392 } else {
6393 if (scratchpad != HPSA_FIRMWARE_READY)
6394 return 0;
6395 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006396 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
6397 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006398 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006399 return -ENODEV;
6400}
6401
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006402static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
6403 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
6404 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006405{
6406 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
6407 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
6408 *cfg_base_addr &= (u32) 0x0000ffff;
6409 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
6410 if (*cfg_base_addr_index == -1) {
6411 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
6412 return -ENODEV;
6413 }
6414 return 0;
6415}
6416
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006417static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006418{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006419 u64 cfg_offset;
6420 u32 cfg_base_addr;
6421 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06006422 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006423 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006424
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006425 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
6426 &cfg_base_addr_index, &cfg_offset);
6427 if (rc)
6428 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006429 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006430 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006431 if (!h->cfgtable) {
6432 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006433 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006434 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006435 rc = write_driver_ver_to_cfgtable(h->cfgtable);
6436 if (rc)
6437 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006438 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006439 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006440 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
6441 cfg_base_addr_index)+cfg_offset+trans_offset,
6442 sizeof(*h->transtable));
6443 if (!h->transtable)
6444 return -ENOMEM;
6445 return 0;
6446}
6447
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006448static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006449{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006450#define MIN_MAX_COMMANDS 16
6451 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
6452
6453 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06006454
6455 /* Limit commands in memory limited kdump scenario. */
6456 if (reset_devices && h->max_commands > 32)
6457 h->max_commands = 32;
6458
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006459 if (h->max_commands < MIN_MAX_COMMANDS) {
6460 dev_warn(&h->pdev->dev,
6461 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
6462 h->max_commands,
6463 MIN_MAX_COMMANDS);
6464 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006465 }
6466}
6467
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006468/* If the controller reports that the total max sg entries is greater than 512,
6469 * then we know that chained SG blocks work. (Original smart arrays did not
6470 * support chained SG blocks and would return zero for max sg entries.)
6471 */
6472static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
6473{
6474 return h->maxsgentries > 512;
6475}
6476
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006477/* Interrogate the hardware for some limits:
6478 * max commands, max SG elements without chaining, and with chaining,
6479 * SG chain block size, etc.
6480 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006481static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006482{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006483 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06006484 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006485 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006486 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006487 if (hpsa_supports_chained_sg_blocks(h)) {
6488 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006489 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06006490 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006491 h->maxsgentries--; /* save one for chain pointer */
6492 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006493 /*
6494 * Original smart arrays supported at most 31 s/g entries
6495 * embedded inline in the command (trying to use more
6496 * would lock up the controller)
6497 */
6498 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06006499 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006500 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006501 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006502
6503 /* Find out what task management functions are supported and cache */
6504 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06006505 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
6506 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
6507 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6508 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006509}
6510
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006511static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
6512{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09006513 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006514 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006515 return false;
6516 }
6517 return true;
6518}
6519
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006520static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006521{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006522 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006523
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006524 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02006525 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
6526#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006527 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006528#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06006529 driver_support |= ENABLE_UNIT_ATTN;
6530 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006531}
6532
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006533/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
6534 * in a prefetch beyond physical memory.
6535 */
6536static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
6537{
6538 u32 dma_prefetch;
6539
6540 if (h->board_id != 0x3225103C)
6541 return;
6542 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
6543 dma_prefetch |= 0x8000;
6544 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
6545}
6546
Robert Elliottc706a792015-01-23 16:45:01 -06006547static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006548{
6549 int i;
6550 u32 doorbell_value;
6551 unsigned long flags;
6552 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006553 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006554 spin_lock_irqsave(&h->lock, flags);
6555 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6556 spin_unlock_irqrestore(&h->lock, flags);
6557 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06006558 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006559 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006560 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006561 }
Robert Elliottc706a792015-01-23 16:45:01 -06006562 return -ENODEV;
6563done:
6564 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006565}
6566
Robert Elliottc706a792015-01-23 16:45:01 -06006567static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006568{
6569 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006570 u32 doorbell_value;
6571 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006572
6573 /* under certain very rare conditions, this can take awhile.
6574 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
6575 * as we enter this code.)
6576 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006577 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05006578 if (h->remove_in_progress)
6579 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006580 spin_lock_irqsave(&h->lock, flags);
6581 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6582 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06006583 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06006584 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006585 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006586 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006587 }
Robert Elliottc706a792015-01-23 16:45:01 -06006588 return -ENODEV;
6589done:
6590 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006591}
6592
Robert Elliottc706a792015-01-23 16:45:01 -06006593/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006594static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006595{
6596 u32 trans_support;
6597
6598 trans_support = readl(&(h->cfgtable->TransportSupport));
6599 if (!(trans_support & SIMPLE_MODE))
6600 return -ENOTSUPP;
6601
6602 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006603
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006604 /* Update the field, and then ring the doorbell */
6605 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06006606 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006607 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06006608 if (hpsa_wait_for_mode_change_ack(h))
6609 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006610 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006611 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
6612 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006613 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006614 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006615error:
Stephen Cameron050f7142015-01-23 16:42:22 -06006616 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006617 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006618}
6619
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006620static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006621{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006622 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006623
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006624 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
6625 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06006626 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006627 h->product_name = products[prod_index].product_name;
6628 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006629
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006630 h->needs_abort_tags_swizzled =
6631 ctlr_needs_abort_tags_swizzled(h->board_id);
6632
Matthew Garrette5a44df2011-11-11 11:14:23 -05006633 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
6634 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
6635
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006636 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006637 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006638 dev_warn(&h->pdev->dev, "unable to enable PCI device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006639 return err;
6640 }
6641
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006642 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006643 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006644 dev_err(&h->pdev->dev,
6645 "cannot obtain PCI resources, aborting\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006646 return err;
6647 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006648
6649 pci_set_master(h->pdev);
6650
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006651 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006652 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006653 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006654 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006655 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006656 if (!h->vaddr) {
6657 err = -ENOMEM;
6658 goto err_out_free_res;
6659 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006660 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006661 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006662 goto err_out_free_res;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006663 err = hpsa_find_cfgtables(h);
6664 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006665 goto err_out_free_res;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006666 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006667
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006668 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006669 err = -ENODEV;
6670 goto err_out_free_res;
6671 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006672 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006673 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006674 err = hpsa_enter_simple_mode(h);
6675 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006676 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006677 return 0;
6678
6679err_out_free_res:
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006680 if (h->transtable)
6681 iounmap(h->transtable);
6682 if (h->cfgtable)
6683 iounmap(h->cfgtable);
6684 if (h->vaddr)
6685 iounmap(h->vaddr);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05006686 pci_disable_device(h->pdev);
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006687 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006688 return err;
6689}
6690
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006691static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006692{
6693 int rc;
6694
6695#define HBA_INQUIRY_BYTE_COUNT 64
6696 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
6697 if (!h->hba_inquiry_data)
6698 return;
6699 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
6700 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
6701 if (rc != 0) {
6702 kfree(h->hba_inquiry_data);
6703 h->hba_inquiry_data = NULL;
6704 }
6705}
6706
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006707static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006708{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006709 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06006710 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006711
6712 if (!reset_devices)
6713 return 0;
6714
Tomas Henzl132aa222014-08-14 16:12:39 +02006715 /* kdump kernel is loading, we don't know in which state is
6716 * the pci interface. The dev->enable_cnt is equal zero
6717 * so we call enable+disable, wait a while and switch it on.
6718 */
6719 rc = pci_enable_device(pdev);
6720 if (rc) {
6721 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
6722 return -ENODEV;
6723 }
6724 pci_disable_device(pdev);
6725 msleep(260); /* a randomly chosen number */
6726 rc = pci_enable_device(pdev);
6727 if (rc) {
6728 dev_warn(&pdev->dev, "failed to enable device.\n");
6729 return -ENODEV;
6730 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006731
Tomas Henzl859c75a2014-09-12 14:44:15 +02006732 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06006733
Tomas Henzl3b747292015-01-23 16:41:20 -06006734 vaddr = pci_ioremap_bar(pdev, 0);
6735 if (vaddr == NULL) {
6736 rc = -ENOMEM;
6737 goto out_disable;
6738 }
6739 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
6740 iounmap(vaddr);
6741
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006742 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006743 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006744
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006745 /* -ENOTSUPP here means we cannot reset the controller
6746 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05006747 * "performant mode". Or, it might be 640x, which can't reset
6748 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006749 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06006750 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02006751 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006752
6753 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06006754 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006755 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
6756 if (hpsa_noop(pdev) == 0)
6757 break;
6758 else
6759 dev_warn(&pdev->dev, "no-op failed%s\n",
6760 (i < 11 ? "; re-trying" : ""));
6761 }
Tomas Henzl132aa222014-08-14 16:12:39 +02006762
6763out_disable:
6764
6765 pci_disable_device(pdev);
6766 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006767}
6768
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006769static int hpsa_allocate_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006770{
6771 h->cmd_pool_bits = kzalloc(
6772 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
6773 sizeof(unsigned long), GFP_KERNEL);
6774 h->cmd_pool = pci_alloc_consistent(h->pdev,
6775 h->nr_cmds * sizeof(*h->cmd_pool),
6776 &(h->cmd_pool_dhandle));
6777 h->errinfo_pool = pci_alloc_consistent(h->pdev,
6778 h->nr_cmds * sizeof(*h->errinfo_pool),
6779 &(h->errinfo_pool_dhandle));
6780 if ((h->cmd_pool_bits == NULL)
6781 || (h->cmd_pool == NULL)
6782 || (h->errinfo_pool == NULL)) {
6783 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06006784 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006785 }
6786 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06006787clean_up:
6788 hpsa_free_cmd_pool(h);
6789 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006790}
6791
6792static void hpsa_free_cmd_pool(struct ctlr_info *h)
6793{
6794 kfree(h->cmd_pool_bits);
6795 if (h->cmd_pool)
6796 pci_free_consistent(h->pdev,
6797 h->nr_cmds * sizeof(struct CommandList),
6798 h->cmd_pool, h->cmd_pool_dhandle);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06006799 if (h->ioaccel2_cmd_pool)
6800 pci_free_consistent(h->pdev,
6801 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
6802 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006803 if (h->errinfo_pool)
6804 pci_free_consistent(h->pdev,
6805 h->nr_cmds * sizeof(struct ErrorInfo),
6806 h->errinfo_pool,
6807 h->errinfo_pool_dhandle);
Matt Gatese1f7de02014-02-18 13:55:17 -06006808 if (h->ioaccel_cmd_pool)
6809 pci_free_consistent(h->pdev,
6810 h->nr_cmds * sizeof(struct io_accel1_cmd),
6811 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006812}
6813
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006814static void hpsa_irq_affinity_hints(struct ctlr_info *h)
6815{
Fabian Frederickec429952015-01-23 16:41:46 -06006816 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006817
6818 cpu = cpumask_first(cpu_online_mask);
6819 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06006820 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006821 cpu = cpumask_next(cpu, cpu_online_mask);
6822 }
6823}
6824
Robert Elliottec501a12015-01-23 16:41:40 -06006825/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
6826static void hpsa_free_irqs(struct ctlr_info *h)
6827{
6828 int i;
6829
6830 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
6831 /* Single reply queue, only one irq to free */
6832 i = h->intr_mode;
6833 irq_set_affinity_hint(h->intr[i], NULL);
6834 free_irq(h->intr[i], &h->q[i]);
6835 return;
6836 }
6837
6838 for (i = 0; i < h->msix_vector; i++) {
6839 irq_set_affinity_hint(h->intr[i], NULL);
6840 free_irq(h->intr[i], &h->q[i]);
6841 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006842 for (; i < MAX_REPLY_QUEUES; i++)
6843 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06006844}
6845
Robert Elliott9ee61792015-01-23 16:42:32 -06006846/* returns 0 on success; cleans up and returns -Enn on error */
6847static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006848 irqreturn_t (*msixhandler)(int, void *),
6849 irqreturn_t (*intxhandler)(int, void *))
6850{
Matt Gates254f7962012-05-01 11:43:06 -05006851 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006852
Matt Gates254f7962012-05-01 11:43:06 -05006853 /*
6854 * initialize h->q[x] = x so that interrupt handlers know which
6855 * queue to process.
6856 */
6857 for (i = 0; i < MAX_REPLY_QUEUES; i++)
6858 h->q[i] = (u8) i;
6859
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006860 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05006861 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006862 for (i = 0; i < h->msix_vector; i++) {
Matt Gates254f7962012-05-01 11:43:06 -05006863 rc = request_irq(h->intr[i], msixhandler,
6864 0, h->devname,
6865 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006866 if (rc) {
6867 int j;
6868
6869 dev_err(&h->pdev->dev,
6870 "failed to get irq %d for %s\n",
6871 h->intr[i], h->devname);
6872 for (j = 0; j < i; j++) {
6873 free_irq(h->intr[j], &h->q[j]);
6874 h->q[j] = 0;
6875 }
6876 for (; j < MAX_REPLY_QUEUES; j++)
6877 h->q[j] = 0;
6878 return rc;
6879 }
6880 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006881 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05006882 } else {
6883 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006884 if (h->msix_vector > 0 || h->msi_vector) {
Matt Gates254f7962012-05-01 11:43:06 -05006885 rc = request_irq(h->intr[h->intr_mode],
6886 msixhandler, 0, h->devname,
6887 &h->q[h->intr_mode]);
6888 } else {
6889 rc = request_irq(h->intr[h->intr_mode],
6890 intxhandler, IRQF_SHARED, h->devname,
6891 &h->q[h->intr_mode]);
6892 }
6893 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006894 if (rc) {
6895 dev_err(&h->pdev->dev, "unable to get irq %d for %s\n",
6896 h->intr[h->intr_mode], h->devname);
6897 return -ENODEV;
6898 }
6899 return 0;
6900}
6901
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006902static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006903{
6904 if (hpsa_send_host_reset(h, RAID_CTLR_LUNID,
6905 HPSA_RESET_TYPE_CONTROLLER)) {
6906 dev_warn(&h->pdev->dev, "Resetting array controller failed.\n");
6907 return -EIO;
6908 }
6909
6910 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
6911 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) {
6912 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
6913 return -1;
6914 }
6915
6916 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
6917 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) {
6918 dev_warn(&h->pdev->dev, "Board failed to become ready "
6919 "after soft reset.\n");
6920 return -1;
6921 }
6922
6923 return 0;
6924}
6925
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006926static void hpsa_free_irqs_and_disable_msix(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006927{
Robert Elliottec501a12015-01-23 16:41:40 -06006928 hpsa_free_irqs(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006929#ifdef CONFIG_PCI_MSI
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006930 if (h->msix_vector) {
6931 if (h->pdev->msix_enabled)
6932 pci_disable_msix(h->pdev);
6933 } else if (h->msi_vector) {
6934 if (h->pdev->msi_enabled)
6935 pci_disable_msi(h->pdev);
6936 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006937#endif /* CONFIG_PCI_MSI */
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006938}
6939
Stephen M. Cameron072b0512014-05-29 10:53:07 -05006940static void hpsa_free_reply_queues(struct ctlr_info *h)
6941{
6942 int i;
6943
6944 for (i = 0; i < h->nreply_queues; i++) {
6945 if (!h->reply_queue[i].head)
6946 continue;
6947 pci_free_consistent(h->pdev, h->reply_queue_size,
6948 h->reply_queue[i].head, h->reply_queue[i].busaddr);
6949 h->reply_queue[i].head = NULL;
6950 h->reply_queue[i].busaddr = 0;
6951 }
6952}
6953
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006954static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
6955{
6956 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006957 hpsa_free_sg_chain_blocks(h);
6958 hpsa_free_cmd_pool(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06006959 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006960 kfree(h->blockFetchTable);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05006961 hpsa_free_reply_queues(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006962 if (h->vaddr)
6963 iounmap(h->vaddr);
6964 if (h->transtable)
6965 iounmap(h->transtable);
6966 if (h->cfgtable)
6967 iounmap(h->cfgtable);
Tomas Henzl132aa222014-08-14 16:12:39 +02006968 pci_disable_device(h->pdev);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006969 pci_release_regions(h->pdev);
6970 kfree(h);
6971}
6972
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006973/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06006974static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006975{
Webb Scales281a7fd2015-01-23 16:43:35 -06006976 int i, refcount;
6977 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05006978 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006979
Don Brace080ef1c2015-01-23 16:43:25 -06006980 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06006981 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06006982 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06006983 refcount = atomic_inc_return(&c->refcount);
6984 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05006985 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06006986 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05006987 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05006988 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06006989 }
6990 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006991 }
Webb Scales25163bd2015-04-23 09:32:00 -05006992 dev_warn(&h->pdev->dev,
6993 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006994}
6995
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006996static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
6997{
Rusty Russellc8ed0012015-03-05 10:49:19 +10306998 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006999
Rusty Russellc8ed0012015-03-05 10:49:19 +10307000 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007001 u32 *lockup_detected;
7002 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7003 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007004 }
7005 wmb(); /* be sure the per-cpu variables are out to memory */
7006}
7007
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007008static void controller_lockup_detected(struct ctlr_info *h)
7009{
7010 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007011 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007012
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007013 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7014 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007015 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7016 if (!lockup_detected) {
7017 /* no heartbeat, but controller gave us a zero. */
7018 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05007019 "lockup detected after %d but scratchpad register is zero\n",
7020 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007021 lockup_detected = 0xffffffff;
7022 }
7023 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007024 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05007025 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
7026 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007027 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06007028 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007029}
7030
Webb Scales25163bd2015-04-23 09:32:00 -05007031static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007032{
7033 u64 now;
7034 u32 heartbeat;
7035 unsigned long flags;
7036
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007037 now = get_jiffies_64();
7038 /* If we've received an interrupt recently, we're ok. */
7039 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007040 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007041 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007042
7043 /*
7044 * If we've already checked the heartbeat recently, we're ok.
7045 * This could happen if someone sends us a signal. We
7046 * otherwise don't care about signals in this thread.
7047 */
7048 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007049 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007050 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007051
7052 /* If heartbeat has not changed since we last looked, we're not ok. */
7053 spin_lock_irqsave(&h->lock, flags);
7054 heartbeat = readl(&h->cfgtable->HeartBeat);
7055 spin_unlock_irqrestore(&h->lock, flags);
7056 if (h->last_heartbeat == heartbeat) {
7057 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05007058 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007059 }
7060
7061 /* We're ok. */
7062 h->last_heartbeat = heartbeat;
7063 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05007064 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007065}
7066
Stephen M. Cameron98465902014-02-21 16:25:00 -06007067static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007068{
7069 int i;
7070 char *event_type;
7071
Stephen Camerone4aa3e62015-01-23 16:44:07 -06007072 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7073 return;
7074
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007075 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06007076 if ((h->transMethod & (CFGTBL_Trans_io_accel1
7077 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007078 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
7079 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
7080
7081 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
7082 event_type = "state change";
7083 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
7084 event_type = "configuration change";
7085 /* Stop sending new RAID offload reqs via the IO accelerator */
7086 scsi_block_requests(h->scsi_host);
7087 for (i = 0; i < h->ndevices; i++)
7088 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007089 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007090 /* Set 'accelerator path config change' bit */
7091 dev_warn(&h->pdev->dev,
7092 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
7093 h->events, event_type);
7094 writel(h->events, &(h->cfgtable->clear_event_notify));
7095 /* Set the "clear event notify field update" bit 6 */
7096 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7097 /* Wait until ctlr clears 'clear event notify field', bit 6 */
7098 hpsa_wait_for_clear_event_notify_ack(h);
7099 scsi_unblock_requests(h->scsi_host);
7100 } else {
7101 /* Acknowledge controller notification events. */
7102 writel(h->events, &(h->cfgtable->clear_event_notify));
7103 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7104 hpsa_wait_for_clear_event_notify_ack(h);
7105#if 0
7106 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7107 hpsa_wait_for_mode_change_ack(h);
7108#endif
7109 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007110 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007111}
7112
7113/* Check a register on the controller to see if there are configuration
7114 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06007115 * we should rescan the controller for devices.
7116 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007117 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06007118static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007119{
7120 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06007121 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007122
7123 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06007124 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007125}
7126
Stephen M. Cameron98465902014-02-21 16:25:00 -06007127/*
7128 * Check if any of the offline devices have become ready
7129 */
7130static int hpsa_offline_devices_ready(struct ctlr_info *h)
7131{
7132 unsigned long flags;
7133 struct offline_device_entry *d;
7134 struct list_head *this, *tmp;
7135
7136 spin_lock_irqsave(&h->offline_device_lock, flags);
7137 list_for_each_safe(this, tmp, &h->offline_device_list) {
7138 d = list_entry(this, struct offline_device_entry,
7139 offline_list);
7140 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007141 if (!hpsa_volume_offline(h, d->scsi3addr)) {
7142 spin_lock_irqsave(&h->offline_device_lock, flags);
7143 list_del(&d->offline_list);
7144 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007145 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007146 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007147 spin_lock_irqsave(&h->offline_device_lock, flags);
7148 }
7149 spin_unlock_irqrestore(&h->offline_device_lock, flags);
7150 return 0;
7151}
7152
Don Brace6636e7f2015-01-23 16:45:17 -06007153static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007154{
7155 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007156 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06007157 struct ctlr_info, rescan_ctlr_work);
7158
7159
7160 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007161 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007162
7163 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
7164 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007165 hpsa_ack_ctlr_events(h);
7166 hpsa_scan_start(h->scsi_host);
7167 scsi_host_put(h->scsi_host);
7168 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007169 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007170 if (!h->remove_in_progress)
7171 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007172 h->heartbeat_sample_interval);
7173 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007174}
7175
Don Brace6636e7f2015-01-23 16:45:17 -06007176static void hpsa_monitor_ctlr_worker(struct work_struct *work)
7177{
7178 unsigned long flags;
7179 struct ctlr_info *h = container_of(to_delayed_work(work),
7180 struct ctlr_info, monitor_ctlr_work);
7181
7182 detect_controller_lockup(h);
7183 if (lockup_detected(h))
7184 return;
7185
7186 spin_lock_irqsave(&h->lock, flags);
7187 if (!h->remove_in_progress)
7188 schedule_delayed_work(&h->monitor_ctlr_work,
7189 h->heartbeat_sample_interval);
7190 spin_unlock_irqrestore(&h->lock, flags);
7191}
7192
7193static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
7194 char *name)
7195{
7196 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06007197
Don Brace397ea9c2015-02-06 17:44:15 -06007198 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06007199 if (!wq)
7200 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
7201
7202 return wq;
7203}
7204
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007205static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007206{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007207 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007208 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007209 int try_soft_reset = 0;
7210 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007211 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007212
7213 if (number_of_controllers == 0)
7214 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007215
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007216 rc = hpsa_lookup_board_id(pdev, &board_id);
7217 if (rc < 0) {
7218 dev_warn(&pdev->dev, "Board ID not found\n");
7219 return rc;
7220 }
7221
7222 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007223 if (rc) {
7224 if (rc != -ENOTSUPP)
7225 return rc;
7226 /* If the reset fails in a particular way (it has no way to do
7227 * a proper hard reset, so returns -ENOTSUPP) we can try to do
7228 * a soft reset once we get the controller configured up to the
7229 * point that it can accept a command.
7230 */
7231 try_soft_reset = 1;
7232 rc = 0;
7233 }
7234
7235reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007236
Don Brace303932f2010-02-04 08:42:40 -06007237 /* Command structures must be aligned on a 32-byte boundary because
7238 * the 5 lower bits of the address are used by the hardware. and by
7239 * the driver. See comments in hpsa.h for more info.
7240 */
Don Brace303932f2010-02-04 08:42:40 -06007241 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007242 h = kzalloc(sizeof(*h), GFP_KERNEL);
7243 if (!h)
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007244 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007245
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007246 h->pdev = pdev;
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007247 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007248 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007249 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007250 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007251 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06007252 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007253 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007254
Don Brace6636e7f2015-01-23 16:45:17 -06007255 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
7256 if (!h->rescan_ctlr_wq) {
Don Brace080ef1c2015-01-23 16:43:25 -06007257 rc = -ENOMEM;
7258 goto clean1;
7259 }
Don Brace6636e7f2015-01-23 16:45:17 -06007260
7261 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
7262 if (!h->resubmit_wq) {
7263 rc = -ENOMEM;
7264 goto clean1;
7265 }
7266
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007267 /* Allocate and clear per-cpu variable lockup_detected */
7268 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007269 if (!h->lockup_detected) {
7270 rc = -ENOMEM;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007271 goto clean1;
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007272 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007273 set_lockup_detected_for_all_cpus(h, 0);
7274
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007275 rc = hpsa_pci_init(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007276 if (rc != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007277 goto clean1;
7278
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007279 sprintf(h->devname, HPSA "%d", number_of_controllers);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007280 h->ctlr = number_of_controllers;
7281 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007282
7283 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007284 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
7285 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007286 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007287 } else {
7288 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
7289 if (rc == 0) {
7290 dac = 0;
7291 } else {
7292 dev_err(&pdev->dev, "no suitable DMA available\n");
7293 goto clean1;
7294 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007295 }
7296
7297 /* make sure the board interrupts are off */
7298 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007299
Robert Elliott9ee61792015-01-23 16:42:32 -06007300 if (hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007301 goto clean2;
Don Brace303932f2010-02-04 08:42:40 -06007302 dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n",
7303 h->devname, pdev->device,
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007304 h->intr[h->intr_mode], dac ? "" : " not");
Robert Elliott8947fd12015-01-23 16:42:54 -06007305 rc = hpsa_allocate_cmd_pool(h);
7306 if (rc)
7307 goto clean2_and_free_irqs;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007308 if (hpsa_allocate_sg_chain_blocks(h))
7309 goto clean4;
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007310 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007311 init_waitqueue_head(&h->abort_cmd_wait_queue);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007312 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007313
7314 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007315 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007316 h->hba_mode_enabled = 0;
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007317 h->scsi_host = NULL;
7318 spin_lock_init(&h->devlock);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007319 hpsa_put_ctlr_into_performant_mode(h);
7320
7321 /* At this point, the controller is ready to take commands.
7322 * Now, if reset_devices and the hard reset didn't work, try
7323 * the soft reset and see if that works.
7324 */
7325 if (try_soft_reset) {
7326
7327 /* This is kind of gross. We may or may not get a completion
7328 * from the soft reset command, and if we do, then the value
7329 * from the fifo may or may not be valid. So, we wait 10 secs
7330 * after the reset throwing away any completions we get during
7331 * that time. Unregister the interrupt handler and register
7332 * fake ones to scoop up any residual completions.
7333 */
7334 spin_lock_irqsave(&h->lock, flags);
7335 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7336 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06007337 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06007338 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007339 hpsa_intx_discard_completions);
7340 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06007341 dev_warn(&h->pdev->dev,
7342 "Failed to request_irq after soft reset.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007343 goto clean4;
7344 }
7345
7346 rc = hpsa_kdump_soft_reset(h);
7347 if (rc)
7348 /* Neither hard nor soft reset worked, we're hosed. */
7349 goto clean4;
7350
7351 dev_info(&h->pdev->dev, "Board READY.\n");
7352 dev_info(&h->pdev->dev,
7353 "Waiting for stale completions to drain.\n");
7354 h->access.set_intr_mask(h, HPSA_INTR_ON);
7355 msleep(10000);
7356 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7357
7358 rc = controller_reset_failed(h->cfgtable);
7359 if (rc)
7360 dev_info(&h->pdev->dev,
7361 "Soft reset appears to have failed.\n");
7362
7363 /* since the controller's reset, we have to go back and re-init
7364 * everything. Easiest to just forget what we've done and do it
7365 * all over again.
7366 */
7367 hpsa_undo_allocations_after_kdump_soft_reset(h);
7368 try_soft_reset = 0;
7369 if (rc)
7370 /* don't go to clean4, we already unallocated */
7371 return -ENODEV;
7372
7373 goto reinit_after_soft_reset;
7374 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007375
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007376 /* Enable Accelerated IO path at driver layer */
7377 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06007378
Scott Teele863d682014-02-18 13:57:05 -06007379
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007380 /* Turn the interrupts on so we can service requests */
7381 h->access.set_intr_mask(h, HPSA_INTR_ON);
7382
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007383 hpsa_hba_inquiry(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007384 hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007385
7386 /* Monitor the controller for firmware lockups */
7387 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
7388 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
7389 schedule_delayed_work(&h->monitor_ctlr_work,
7390 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06007391 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
7392 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
7393 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05007394 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007395
7396clean4:
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007397 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007398 hpsa_free_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06007399clean2_and_free_irqs:
Robert Elliottec501a12015-01-23 16:41:40 -06007400 hpsa_free_irqs(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007401clean2:
7402clean1:
Don Brace080ef1c2015-01-23 16:43:25 -06007403 if (h->resubmit_wq)
7404 destroy_workqueue(h->resubmit_wq);
Don Brace6636e7f2015-01-23 16:45:17 -06007405 if (h->rescan_ctlr_wq)
7406 destroy_workqueue(h->rescan_ctlr_wq);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007407 if (h->lockup_detected)
7408 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007409 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007410 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007411}
7412
7413static void hpsa_flush_cache(struct ctlr_info *h)
7414{
7415 char *flush_buf;
7416 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007417 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007418
7419 /* Don't bother trying to flush the cache if locked up */
Webb Scales25163bd2015-04-23 09:32:00 -05007420 /* FIXME not necessary if do_simple_cmd does the check */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007421 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007422 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007423 flush_buf = kzalloc(4, GFP_KERNEL);
7424 if (!flush_buf)
7425 return;
7426
Stephen Cameron45fcb862015-01-23 16:43:04 -06007427 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007428 if (!c) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06007429 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007430 goto out_of_memory;
7431 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007432 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
7433 RAID_CTLR_LUNID, TYPE_CMD)) {
7434 goto out;
7435 }
Webb Scales25163bd2015-04-23 09:32:00 -05007436 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
7437 PCI_DMA_TODEVICE, NO_TIMEOUT);
7438 if (rc)
7439 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007440 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007441out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007442 dev_warn(&h->pdev->dev,
7443 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06007444 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007445out_of_memory:
7446 kfree(flush_buf);
7447}
7448
7449static void hpsa_shutdown(struct pci_dev *pdev)
7450{
7451 struct ctlr_info *h;
7452
7453 h = pci_get_drvdata(pdev);
7454 /* Turn board interrupts off and send the flush cache command
7455 * sendcmd will turn off interrupt, and send the flush...
7456 * To write all data in the battery backed cache to disks
7457 */
7458 hpsa_flush_cache(h);
7459 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007460 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007461}
7462
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007463static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007464{
7465 int i;
7466
7467 for (i = 0; i < h->ndevices; i++)
7468 kfree(h->dev[i]);
7469}
7470
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007471static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007472{
7473 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007474 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007475
7476 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007477 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007478 return;
7479 }
7480 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007481
7482 /* Get rid of any controller monitoring work items */
7483 spin_lock_irqsave(&h->lock, flags);
7484 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007485 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007486 cancel_delayed_work_sync(&h->monitor_ctlr_work);
7487 cancel_delayed_work_sync(&h->rescan_ctlr_work);
7488 destroy_workqueue(h->rescan_ctlr_wq);
7489 destroy_workqueue(h->resubmit_wq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007490 hpsa_unregister_scsi(h); /* unhook from SCSI subsystem */
7491 hpsa_shutdown(pdev);
7492 iounmap(h->vaddr);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007493 iounmap(h->transtable);
7494 iounmap(h->cfgtable);
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007495 hpsa_free_device_info(h);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007496 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007497 pci_free_consistent(h->pdev,
7498 h->nr_cmds * sizeof(struct CommandList),
7499 h->cmd_pool, h->cmd_pool_dhandle);
7500 pci_free_consistent(h->pdev,
7501 h->nr_cmds * sizeof(struct ErrorInfo),
7502 h->errinfo_pool, h->errinfo_pool_dhandle);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007503 hpsa_free_reply_queues(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007504 kfree(h->cmd_pool_bits);
Don Brace303932f2010-02-04 08:42:40 -06007505 kfree(h->blockFetchTable);
Matt Gatese1f7de02014-02-18 13:55:17 -06007506 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007507 kfree(h->ioaccel2_blockFetchTable);
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007508 kfree(h->hba_inquiry_data);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05007509 pci_disable_device(pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007510 pci_release_regions(pdev);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007511 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007512 kfree(h);
7513}
7514
7515static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
7516 __attribute__((unused)) pm_message_t state)
7517{
7518 return -ENOSYS;
7519}
7520
7521static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
7522{
7523 return -ENOSYS;
7524}
7525
7526static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007527 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007528 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007529 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007530 .id_table = hpsa_pci_device_id, /* id_table */
7531 .shutdown = hpsa_shutdown,
7532 .suspend = hpsa_suspend,
7533 .resume = hpsa_resume,
7534};
7535
Don Brace303932f2010-02-04 08:42:40 -06007536/* Fill in bucket_map[], given nsgs (the max number of
7537 * scatter gather elements supported) and bucket[],
7538 * which is an array of 8 integers. The bucket[] array
7539 * contains 8 different DMA transfer sizes (in 16
7540 * byte increments) which the controller uses to fetch
7541 * commands. This function fills in bucket_map[], which
7542 * maps a given number of scatter gather elements to one of
7543 * the 8 DMA transfer sizes. The point of it is to allow the
7544 * controller to only do as much DMA as needed to fetch the
7545 * command, with the DMA transfer size encoded in the lower
7546 * bits of the command address.
7547 */
7548static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06007549 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06007550{
7551 int i, j, b, size;
7552
Don Brace303932f2010-02-04 08:42:40 -06007553 /* Note, bucket_map must have nsgs+1 entries. */
7554 for (i = 0; i <= nsgs; i++) {
7555 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06007556 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06007557 b = num_buckets; /* Assume the biggest bucket */
7558 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06007559 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06007560 if (bucket[j] >= size) {
7561 b = j;
7562 break;
7563 }
7564 }
7565 /* for a command with i SG entries, use bucket b. */
7566 bucket_map[i] = b;
7567 }
7568}
7569
Robert Elliottc706a792015-01-23 16:45:01 -06007570/* return -ENODEV or other reason on error, 0 on success */
7571static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06007572{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007573 int i;
7574 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06007575 unsigned long transMethod = CFGTBL_Trans_Performant |
7576 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007577 CFGTBL_Trans_enable_directed_msix |
7578 (trans_support & (CFGTBL_Trans_io_accel1 |
7579 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06007580 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007581
7582 /* This is a bit complicated. There are 8 registers on
7583 * the controller which we write to to tell it 8 different
7584 * sizes of commands which there may be. It's a way of
7585 * reducing the DMA done to fetch each command. Encoded into
7586 * each command's tag are 3 bits which communicate to the controller
7587 * which of the eight sizes that command fits within. The size of
7588 * each command depends on how many scatter gather entries there are.
7589 * Each SG entry requires 16 bytes. The eight registers are programmed
7590 * with the number of 16-byte blocks a command of that size requires.
7591 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007592 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007593 * blocks. Note, this only extends to the SG entries contained
7594 * within the command block, and does not extend to chained blocks
7595 * of SG elements. bft[] contains the eight values we write to
7596 * the registers. They are not evenly distributed, but have more
7597 * sizes for small commands, and fewer sizes for larger commands.
7598 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007599 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007600#define MIN_IOACCEL2_BFT_ENTRY 5
7601#define HPSA_IOACCEL2_HEADER_SZ 4
7602 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
7603 13, 14, 15, 16, 17, 18, 19,
7604 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
7605 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
7606 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
7607 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
7608 16 * MIN_IOACCEL2_BFT_ENTRY);
7609 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007610 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06007611 /* 5 = 1 s/g entry or 4k
7612 * 6 = 2 s/g entry or 8k
7613 * 8 = 4 s/g entry or 16k
7614 * 10 = 6 s/g entry or 24k
7615 */
Don Brace303932f2010-02-04 08:42:40 -06007616
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05007617 /* If the controller supports either ioaccel method then
7618 * we can also use the RAID stack submit path that does not
7619 * perform the superfluous readl() after each command submission.
7620 */
7621 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
7622 access = SA5_performant_access_no_read;
7623
Don Brace303932f2010-02-04 08:42:40 -06007624 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007625 for (i = 0; i < h->nreply_queues; i++)
7626 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06007627
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007628 bft[7] = SG_ENTRIES_IN_CMD + 4;
7629 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06007630 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06007631 for (i = 0; i < 8; i++)
7632 writel(bft[i], &h->transtable->BlockFetch[i]);
7633
7634 /* size of controller ring buffer */
7635 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05007636 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06007637 writel(0, &h->transtable->RepQCtrAddrLow32);
7638 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05007639
7640 for (i = 0; i < h->nreply_queues; i++) {
7641 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007642 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05007643 &h->transtable->RepQAddr[i].lower);
7644 }
7645
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007646 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06007647 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
7648 /*
7649 * enable outbound interrupt coalescing in accelerator mode;
7650 */
7651 if (trans_support & CFGTBL_Trans_io_accel1) {
7652 access = SA5_ioaccel_mode1_access;
7653 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7654 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06007655 } else {
7656 if (trans_support & CFGTBL_Trans_io_accel2) {
7657 access = SA5_ioaccel_mode2_access;
7658 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7659 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
7660 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007661 }
Don Brace303932f2010-02-04 08:42:40 -06007662 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007663 if (hpsa_wait_for_mode_change_ack(h)) {
7664 dev_err(&h->pdev->dev,
7665 "performant mode problem - doorbell timeout\n");
7666 return -ENODEV;
7667 }
Don Brace303932f2010-02-04 08:42:40 -06007668 register_value = readl(&(h->cfgtable->TransportActive));
7669 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007670 dev_err(&h->pdev->dev,
7671 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06007672 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06007673 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007674 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06007675 h->access = access;
7676 h->transMethod = transMethod;
7677
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007678 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
7679 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06007680 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06007681
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007682 if (trans_support & CFGTBL_Trans_io_accel1) {
7683 /* Set up I/O accelerator mode */
7684 for (i = 0; i < h->nreply_queues; i++) {
7685 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
7686 h->reply_queue[i].current_entry =
7687 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
7688 }
7689 bft[7] = h->ioaccel_maxsg + 8;
7690 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
7691 h->ioaccel1_blockFetchTable);
7692
7693 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007694 for (i = 0; i < h->nreply_queues; i++)
7695 memset(h->reply_queue[i].head,
7696 (u8) IOACCEL_MODE1_REPLY_UNUSED,
7697 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007698
7699 /* set all the constant fields in the accelerator command
7700 * frames once at init time to save CPU cycles later.
7701 */
7702 for (i = 0; i < h->nr_cmds; i++) {
7703 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
7704
7705 cp->function = IOACCEL1_FUNCTION_SCSIIO;
7706 cp->err_info = (u32) (h->errinfo_pool_dhandle +
7707 (i * sizeof(struct ErrorInfo)));
7708 cp->err_info_len = sizeof(struct ErrorInfo);
7709 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06007710 cp->host_context_flags =
7711 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007712 cp->timeout_sec = 0;
7713 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007714 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06007715 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007716 cp->host_addr =
7717 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007718 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007719 }
7720 } else if (trans_support & CFGTBL_Trans_io_accel2) {
7721 u64 cfg_offset, cfg_base_addr_index;
7722 u32 bft2_offset, cfg_base_addr;
7723 int rc;
7724
7725 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7726 &cfg_base_addr_index, &cfg_offset);
7727 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
7728 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
7729 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
7730 4, h->ioaccel2_blockFetchTable);
7731 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
7732 BUILD_BUG_ON(offsetof(struct CfgTable,
7733 io_accel_request_size_offset) != 0xb8);
7734 h->ioaccel2_bft2_regs =
7735 remap_pci_mem(pci_resource_start(h->pdev,
7736 cfg_base_addr_index) +
7737 cfg_offset + bft2_offset,
7738 ARRAY_SIZE(bft2) *
7739 sizeof(*h->ioaccel2_bft2_regs));
7740 for (i = 0; i < ARRAY_SIZE(bft2); i++)
7741 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06007742 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007743 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007744 if (hpsa_wait_for_mode_change_ack(h)) {
7745 dev_err(&h->pdev->dev,
7746 "performant mode problem - enabling ioaccel mode\n");
7747 return -ENODEV;
7748 }
7749 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06007750}
7751
7752static int hpsa_alloc_ioaccel_cmd_and_bft(struct ctlr_info *h)
7753{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007754 h->ioaccel_maxsg =
7755 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7756 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
7757 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
7758
Matt Gatese1f7de02014-02-18 13:55:17 -06007759 /* Command structures must be aligned on a 128-byte boundary
7760 * because the 7 lower bits of the address are used by the
7761 * hardware.
7762 */
Matt Gatese1f7de02014-02-18 13:55:17 -06007763 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
7764 IOACCEL1_COMMANDLIST_ALIGNMENT);
7765 h->ioaccel_cmd_pool =
7766 pci_alloc_consistent(h->pdev,
7767 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7768 &(h->ioaccel_cmd_pool_dhandle));
7769
7770 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007771 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06007772 sizeof(u32)), GFP_KERNEL);
7773
7774 if ((h->ioaccel_cmd_pool == NULL) ||
7775 (h->ioaccel1_blockFetchTable == NULL))
7776 goto clean_up;
7777
7778 memset(h->ioaccel_cmd_pool, 0,
7779 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
7780 return 0;
7781
7782clean_up:
7783 if (h->ioaccel_cmd_pool)
7784 pci_free_consistent(h->pdev,
7785 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7786 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
7787 kfree(h->ioaccel1_blockFetchTable);
7788 return 1;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007789}
7790
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007791static int ioaccel2_alloc_cmds_and_bft(struct ctlr_info *h)
7792{
7793 /* Allocate ioaccel2 mode command blocks and block fetch table */
7794
7795 h->ioaccel_maxsg =
7796 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7797 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
7798 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
7799
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007800 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
7801 IOACCEL2_COMMANDLIST_ALIGNMENT);
7802 h->ioaccel2_cmd_pool =
7803 pci_alloc_consistent(h->pdev,
7804 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7805 &(h->ioaccel2_cmd_pool_dhandle));
7806
7807 h->ioaccel2_blockFetchTable =
7808 kmalloc(((h->ioaccel_maxsg + 1) *
7809 sizeof(u32)), GFP_KERNEL);
7810
7811 if ((h->ioaccel2_cmd_pool == NULL) ||
7812 (h->ioaccel2_blockFetchTable == NULL))
7813 goto clean_up;
7814
7815 memset(h->ioaccel2_cmd_pool, 0,
7816 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
7817 return 0;
7818
7819clean_up:
7820 if (h->ioaccel2_cmd_pool)
7821 pci_free_consistent(h->pdev,
7822 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7823 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
7824 kfree(h->ioaccel2_blockFetchTable);
7825 return 1;
7826}
7827
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007828static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007829{
7830 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06007831 unsigned long transMethod = CFGTBL_Trans_Performant |
7832 CFGTBL_Trans_use_short_tags;
Matt Gates254f7962012-05-01 11:43:06 -05007833 int i;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007834
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06007835 if (hpsa_simple_mode)
7836 return;
7837
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05007838 trans_support = readl(&(h->cfgtable->TransportSupport));
7839 if (!(trans_support & PERFORMANT_MODE))
7840 return;
7841
Matt Gatese1f7de02014-02-18 13:55:17 -06007842 /* Check for I/O accelerator mode support */
7843 if (trans_support & CFGTBL_Trans_io_accel1) {
7844 transMethod |= CFGTBL_Trans_io_accel1 |
7845 CFGTBL_Trans_enable_directed_msix;
7846 if (hpsa_alloc_ioaccel_cmd_and_bft(h))
7847 goto clean_up;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007848 } else {
7849 if (trans_support & CFGTBL_Trans_io_accel2) {
7850 transMethod |= CFGTBL_Trans_io_accel2 |
7851 CFGTBL_Trans_enable_directed_msix;
7852 if (ioaccel2_alloc_cmds_and_bft(h))
7853 goto clean_up;
7854 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007855 }
7856
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007857 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007858 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007859 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007860 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007861
Matt Gates254f7962012-05-01 11:43:06 -05007862 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007863 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
7864 h->reply_queue_size,
7865 &(h->reply_queue[i].busaddr));
7866 if (!h->reply_queue[i].head)
7867 goto clean_up;
Matt Gates254f7962012-05-01 11:43:06 -05007868 h->reply_queue[i].size = h->max_commands;
7869 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
7870 h->reply_queue[i].current_entry = 0;
7871 }
7872
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007873 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007874 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007875 sizeof(u32)), GFP_KERNEL);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007876 if (!h->blockFetchTable)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007877 goto clean_up;
7878
Matt Gatese1f7de02014-02-18 13:55:17 -06007879 hpsa_enter_performant_mode(h, trans_support);
Don Brace303932f2010-02-04 08:42:40 -06007880 return;
7881
7882clean_up:
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007883 hpsa_free_reply_queues(h);
Don Brace303932f2010-02-04 08:42:40 -06007884 kfree(h->blockFetchTable);
7885}
7886
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007887static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007888{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007889 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
7890}
7891
7892static void hpsa_drain_accel_commands(struct ctlr_info *h)
7893{
7894 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06007895 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06007896 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007897
Don Bracef2405db2015-01-23 16:43:09 -06007898 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007899 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06007900 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007901 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007902 refcount = atomic_inc_return(&c->refcount);
7903 if (refcount > 1) /* Command is allocated */
7904 accel_cmds_out += is_accelerated_cmd(c);
7905 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06007906 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007907 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06007908 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007909 msleep(100);
7910 } while (1);
7911}
7912
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007913/*
7914 * This is it. Register the PCI driver information for the cards we control
7915 * the OS will call our registered routines when it finds one of our cards.
7916 */
7917static int __init hpsa_init(void)
7918{
Mike Miller31468402010-02-25 14:03:12 -06007919 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007920}
7921
7922static void __exit hpsa_cleanup(void)
7923{
7924 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007925}
7926
Matt Gatese1f7de02014-02-18 13:55:17 -06007927static void __attribute__((unused)) verify_offsets(void)
7928{
7929#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06007930 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
7931
7932 VERIFY_OFFSET(structure_size, 0);
7933 VERIFY_OFFSET(volume_blk_size, 4);
7934 VERIFY_OFFSET(volume_blk_cnt, 8);
7935 VERIFY_OFFSET(phys_blk_shift, 16);
7936 VERIFY_OFFSET(parity_rotation_shift, 17);
7937 VERIFY_OFFSET(strip_size, 18);
7938 VERIFY_OFFSET(disk_starting_blk, 20);
7939 VERIFY_OFFSET(disk_blk_cnt, 28);
7940 VERIFY_OFFSET(data_disks_per_row, 36);
7941 VERIFY_OFFSET(metadata_disks_per_row, 38);
7942 VERIFY_OFFSET(row_cnt, 40);
7943 VERIFY_OFFSET(layout_map_count, 42);
7944 VERIFY_OFFSET(flags, 44);
7945 VERIFY_OFFSET(dekindex, 46);
7946 /* VERIFY_OFFSET(reserved, 48 */
7947 VERIFY_OFFSET(data, 64);
7948
7949#undef VERIFY_OFFSET
7950
7951#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06007952 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
7953
7954 VERIFY_OFFSET(IU_type, 0);
7955 VERIFY_OFFSET(direction, 1);
7956 VERIFY_OFFSET(reply_queue, 2);
7957 /* VERIFY_OFFSET(reserved1, 3); */
7958 VERIFY_OFFSET(scsi_nexus, 4);
7959 VERIFY_OFFSET(Tag, 8);
7960 VERIFY_OFFSET(cdb, 16);
7961 VERIFY_OFFSET(cciss_lun, 32);
7962 VERIFY_OFFSET(data_len, 40);
7963 VERIFY_OFFSET(cmd_priority_task_attr, 44);
7964 VERIFY_OFFSET(sg_count, 45);
7965 /* VERIFY_OFFSET(reserved3 */
7966 VERIFY_OFFSET(err_ptr, 48);
7967 VERIFY_OFFSET(err_len, 56);
7968 /* VERIFY_OFFSET(reserved4 */
7969 VERIFY_OFFSET(sg, 64);
7970
7971#undef VERIFY_OFFSET
7972
7973#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06007974 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
7975
7976 VERIFY_OFFSET(dev_handle, 0x00);
7977 VERIFY_OFFSET(reserved1, 0x02);
7978 VERIFY_OFFSET(function, 0x03);
7979 VERIFY_OFFSET(reserved2, 0x04);
7980 VERIFY_OFFSET(err_info, 0x0C);
7981 VERIFY_OFFSET(reserved3, 0x10);
7982 VERIFY_OFFSET(err_info_len, 0x12);
7983 VERIFY_OFFSET(reserved4, 0x13);
7984 VERIFY_OFFSET(sgl_offset, 0x14);
7985 VERIFY_OFFSET(reserved5, 0x15);
7986 VERIFY_OFFSET(transfer_len, 0x1C);
7987 VERIFY_OFFSET(reserved6, 0x20);
7988 VERIFY_OFFSET(io_flags, 0x24);
7989 VERIFY_OFFSET(reserved7, 0x26);
7990 VERIFY_OFFSET(LUN, 0x34);
7991 VERIFY_OFFSET(control, 0x3C);
7992 VERIFY_OFFSET(CDB, 0x40);
7993 VERIFY_OFFSET(reserved8, 0x50);
7994 VERIFY_OFFSET(host_context_flags, 0x60);
7995 VERIFY_OFFSET(timeout_sec, 0x62);
7996 VERIFY_OFFSET(ReplyQueue, 0x64);
7997 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007998 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06007999 VERIFY_OFFSET(host_addr, 0x70);
8000 VERIFY_OFFSET(CISS_LUN, 0x78);
8001 VERIFY_OFFSET(SG, 0x78 + 8);
8002#undef VERIFY_OFFSET
8003}
8004
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008005module_init(hpsa_init);
8006module_exit(hpsa_cleanup);