blob: b92f3bc21bf40e093cf700534aac0fc997527c44 [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);
Robert Elliott105a3db2015-04-23 09:33:48 -0500237static void hpsa_free_performant_mode(struct ctlr_info *h);
238static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500239static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800240static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
241 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
242 u64 *cfg_offset);
243static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
244 unsigned long *memory_bar);
245static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
246static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
247 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500248static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600249static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600250#define BOARD_NOT_READY 0
251#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600252static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600253static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600254static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
255 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600256 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600257static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500258static u32 lockup_detected(struct ctlr_info *h);
259static int detect_controller_lockup(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800260
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800261static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
262{
263 unsigned long *priv = shost_priv(sdev->host);
264 return (struct ctlr_info *) *priv;
265}
266
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600267static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
268{
269 unsigned long *priv = shost_priv(sh);
270 return (struct ctlr_info *) *priv;
271}
272
Stephen Cameron9437ac42015-04-23 09:32:16 -0500273/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
274static void decode_sense_data(const u8 *sense_data, int sense_data_len,
275 u8 *sense_key, u8 *asc, u8 *ascq)
276{
277 struct scsi_sense_hdr sshdr;
278 bool rc;
279
280 *sense_key = -1;
281 *asc = -1;
282 *ascq = -1;
283
284 if (sense_data_len < 1)
285 return;
286
287 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
288 if (rc) {
289 *sense_key = sshdr.sense_key;
290 *asc = sshdr.asc;
291 *ascq = sshdr.ascq;
292 }
293}
294
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800295static int check_for_unit_attention(struct ctlr_info *h,
296 struct CommandList *c)
297{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500298 u8 sense_key, asc, ascq;
299 int sense_len;
300
301 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
302 sense_len = sizeof(c->err_info->SenseInfo);
303 else
304 sense_len = c->err_info->SenseLen;
305
306 decode_sense_data(c->err_info->SenseInfo, sense_len,
307 &sense_key, &asc, &ascq);
308 if (sense_key != UNIT_ATTENTION || asc == -1)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800309 return 0;
310
Stephen Cameron9437ac42015-04-23 09:32:16 -0500311 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800312 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500313 dev_warn(&h->pdev->dev,
314 HPSA "%d: a state change detected, command retried\n",
315 h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800316 break;
317 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600318 dev_warn(&h->pdev->dev,
319 HPSA "%d: LUN failure detected\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800320 break;
321 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600322 dev_warn(&h->pdev->dev,
323 HPSA "%d: report LUN data changed\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800324 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600325 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
326 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800327 */
328 break;
329 case POWER_OR_RESET:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600330 dev_warn(&h->pdev->dev, HPSA "%d: a power on "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800331 "or device reset detected\n", h->ctlr);
332 break;
333 case UNIT_ATTENTION_CLEARED:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600334 dev_warn(&h->pdev->dev, HPSA "%d: unit attention "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800335 "cleared by another initiator\n", h->ctlr);
336 break;
337 default:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600338 dev_warn(&h->pdev->dev, HPSA "%d: unknown "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800339 "unit attention detected\n", h->ctlr);
340 break;
341 }
342 return 1;
343}
344
Matt Bondurant852af202012-05-01 11:42:35 -0500345static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
346{
347 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
348 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
349 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
350 return 0;
351 dev_warn(&h->pdev->dev, HPSA "device busy");
352 return 1;
353}
354
Stephen Camerone985c582015-04-23 09:32:22 -0500355static u32 lockup_detected(struct ctlr_info *h);
356static ssize_t host_show_lockup_detected(struct device *dev,
357 struct device_attribute *attr, char *buf)
358{
359 int ld;
360 struct ctlr_info *h;
361 struct Scsi_Host *shost = class_to_shost(dev);
362
363 h = shost_to_hba(shost);
364 ld = lockup_detected(h);
365
366 return sprintf(buf, "ld=%d\n", ld);
367}
368
Scott Teelda0697b2014-02-18 13:57:00 -0600369static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
370 struct device_attribute *attr,
371 const char *buf, size_t count)
372{
373 int status, len;
374 struct ctlr_info *h;
375 struct Scsi_Host *shost = class_to_shost(dev);
376 char tmpbuf[10];
377
378 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
379 return -EACCES;
380 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
381 strncpy(tmpbuf, buf, len);
382 tmpbuf[len] = '\0';
383 if (sscanf(tmpbuf, "%d", &status) != 1)
384 return -EINVAL;
385 h = shost_to_hba(shost);
386 h->acciopath_status = !!status;
387 dev_warn(&h->pdev->dev,
388 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
389 h->acciopath_status ? "enabled" : "disabled");
390 return count;
391}
392
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600393static ssize_t host_store_raid_offload_debug(struct device *dev,
394 struct device_attribute *attr,
395 const char *buf, size_t count)
396{
397 int debug_level, len;
398 struct ctlr_info *h;
399 struct Scsi_Host *shost = class_to_shost(dev);
400 char tmpbuf[10];
401
402 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
403 return -EACCES;
404 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
405 strncpy(tmpbuf, buf, len);
406 tmpbuf[len] = '\0';
407 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
408 return -EINVAL;
409 if (debug_level < 0)
410 debug_level = 0;
411 h = shost_to_hba(shost);
412 h->raid_offload_debug = debug_level;
413 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
414 h->raid_offload_debug);
415 return count;
416}
417
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800418static ssize_t host_store_rescan(struct device *dev,
419 struct device_attribute *attr,
420 const char *buf, size_t count)
421{
422 struct ctlr_info *h;
423 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600424 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600425 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800426 return count;
427}
428
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500429static ssize_t host_show_firmware_revision(struct device *dev,
430 struct device_attribute *attr, char *buf)
431{
432 struct ctlr_info *h;
433 struct Scsi_Host *shost = class_to_shost(dev);
434 unsigned char *fwrev;
435
436 h = shost_to_hba(shost);
437 if (!h->hba_inquiry_data)
438 return 0;
439 fwrev = &h->hba_inquiry_data[32];
440 return snprintf(buf, 20, "%c%c%c%c\n",
441 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
442}
443
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600444static ssize_t host_show_commands_outstanding(struct device *dev,
445 struct device_attribute *attr, char *buf)
446{
447 struct Scsi_Host *shost = class_to_shost(dev);
448 struct ctlr_info *h = shost_to_hba(shost);
449
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600450 return snprintf(buf, 20, "%d\n",
451 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600452}
453
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600454static ssize_t host_show_transport_mode(struct device *dev,
455 struct device_attribute *attr, char *buf)
456{
457 struct ctlr_info *h;
458 struct Scsi_Host *shost = class_to_shost(dev);
459
460 h = shost_to_hba(shost);
461 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600462 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600463 "performant" : "simple");
464}
465
Scott Teelda0697b2014-02-18 13:57:00 -0600466static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
467 struct device_attribute *attr, char *buf)
468{
469 struct ctlr_info *h;
470 struct Scsi_Host *shost = class_to_shost(dev);
471
472 h = shost_to_hba(shost);
473 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
474 (h->acciopath_status == 1) ? "enabled" : "disabled");
475}
476
Stephen M. Cameron46380782011-05-03 15:00:01 -0500477/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600478static u32 unresettable_controller[] = {
479 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500480 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600481 0x3223103C, /* Smart Array P800 */
482 0x3234103C, /* Smart Array P400 */
483 0x3235103C, /* Smart Array P400i */
484 0x3211103C, /* Smart Array E200i */
485 0x3212103C, /* Smart Array E200 */
486 0x3213103C, /* Smart Array E200i */
487 0x3214103C, /* Smart Array E200i */
488 0x3215103C, /* Smart Array E200i */
489 0x3237103C, /* Smart Array E500 */
490 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100491 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600492 0x409C0E11, /* Smart Array 6400 */
493 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100494 0x40700E11, /* Smart Array 5300 */
495 0x40820E11, /* Smart Array 532 */
496 0x40830E11, /* Smart Array 5312 */
497 0x409A0E11, /* Smart Array 641 */
498 0x409B0E11, /* Smart Array 642 */
499 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600500};
501
Stephen M. Cameron46380782011-05-03 15:00:01 -0500502/* List of controllers which cannot even be soft reset */
503static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100504 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100505 0x40700E11, /* Smart Array 5300 */
506 0x40820E11, /* Smart Array 532 */
507 0x40830E11, /* Smart Array 5312 */
508 0x409A0E11, /* Smart Array 641 */
509 0x409B0E11, /* Smart Array 642 */
510 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500511 /* Exclude 640x boards. These are two pci devices in one slot
512 * which share a battery backed cache module. One controls the
513 * cache, the other accesses the cache through the one that controls
514 * it. If we reset the one controlling the cache, the other will
515 * likely not be happy. Just forbid resetting this conjoined mess.
516 * The 640x isn't really supported by hpsa anyway.
517 */
518 0x409C0E11, /* Smart Array 6400 */
519 0x409D0E11, /* Smart Array 6400 EM */
520};
521
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500522static u32 needs_abort_tags_swizzled[] = {
523 0x323D103C, /* Smart Array P700m */
524 0x324a103C, /* Smart Array P712m */
525 0x324b103C, /* SmartArray P711m */
526};
527
528static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600529{
530 int i;
531
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500532 for (i = 0; i < nelems; i++)
533 if (a[i] == board_id)
534 return 1;
535 return 0;
536}
537
538static int ctlr_is_hard_resettable(u32 board_id)
539{
540 return !board_id_in_array(unresettable_controller,
541 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600542}
543
Stephen M. Cameron46380782011-05-03 15:00:01 -0500544static int ctlr_is_soft_resettable(u32 board_id)
545{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500546 return !board_id_in_array(soft_unresettable_controller,
547 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500548}
549
550static int ctlr_is_resettable(u32 board_id)
551{
552 return ctlr_is_hard_resettable(board_id) ||
553 ctlr_is_soft_resettable(board_id);
554}
555
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500556static int ctlr_needs_abort_tags_swizzled(u32 board_id)
557{
558 return board_id_in_array(needs_abort_tags_swizzled,
559 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
560}
561
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600562static ssize_t host_show_resettable(struct device *dev,
563 struct device_attribute *attr, char *buf)
564{
565 struct ctlr_info *h;
566 struct Scsi_Host *shost = class_to_shost(dev);
567
568 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500569 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600570}
571
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800572static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
573{
574 return (scsi3addr[3] & 0xC0) == 0x40;
575}
576
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600577static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
578 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800579};
Scott Teel6b80b182014-02-18 13:56:55 -0600580#define HPSA_RAID_0 0
581#define HPSA_RAID_4 1
582#define HPSA_RAID_1 2 /* also used for RAID 10 */
583#define HPSA_RAID_5 3 /* also used for RAID 50 */
584#define HPSA_RAID_51 4
585#define HPSA_RAID_6 5 /* also used for RAID 60 */
586#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800587#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
588
589static ssize_t raid_level_show(struct device *dev,
590 struct device_attribute *attr, char *buf)
591{
592 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600593 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800594 struct ctlr_info *h;
595 struct scsi_device *sdev;
596 struct hpsa_scsi_dev_t *hdev;
597 unsigned long flags;
598
599 sdev = to_scsi_device(dev);
600 h = sdev_to_hba(sdev);
601 spin_lock_irqsave(&h->lock, flags);
602 hdev = sdev->hostdata;
603 if (!hdev) {
604 spin_unlock_irqrestore(&h->lock, flags);
605 return -ENODEV;
606 }
607
608 /* Is this even a logical drive? */
609 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
610 spin_unlock_irqrestore(&h->lock, flags);
611 l = snprintf(buf, PAGE_SIZE, "N/A\n");
612 return l;
613 }
614
615 rlevel = hdev->raid_level;
616 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600617 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800618 rlevel = RAID_UNKNOWN;
619 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
620 return l;
621}
622
623static ssize_t lunid_show(struct device *dev,
624 struct device_attribute *attr, char *buf)
625{
626 struct ctlr_info *h;
627 struct scsi_device *sdev;
628 struct hpsa_scsi_dev_t *hdev;
629 unsigned long flags;
630 unsigned char lunid[8];
631
632 sdev = to_scsi_device(dev);
633 h = sdev_to_hba(sdev);
634 spin_lock_irqsave(&h->lock, flags);
635 hdev = sdev->hostdata;
636 if (!hdev) {
637 spin_unlock_irqrestore(&h->lock, flags);
638 return -ENODEV;
639 }
640 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
641 spin_unlock_irqrestore(&h->lock, flags);
642 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
643 lunid[0], lunid[1], lunid[2], lunid[3],
644 lunid[4], lunid[5], lunid[6], lunid[7]);
645}
646
647static ssize_t unique_id_show(struct device *dev,
648 struct device_attribute *attr, char *buf)
649{
650 struct ctlr_info *h;
651 struct scsi_device *sdev;
652 struct hpsa_scsi_dev_t *hdev;
653 unsigned long flags;
654 unsigned char sn[16];
655
656 sdev = to_scsi_device(dev);
657 h = sdev_to_hba(sdev);
658 spin_lock_irqsave(&h->lock, flags);
659 hdev = sdev->hostdata;
660 if (!hdev) {
661 spin_unlock_irqrestore(&h->lock, flags);
662 return -ENODEV;
663 }
664 memcpy(sn, hdev->device_id, sizeof(sn));
665 spin_unlock_irqrestore(&h->lock, flags);
666 return snprintf(buf, 16 * 2 + 2,
667 "%02X%02X%02X%02X%02X%02X%02X%02X"
668 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
669 sn[0], sn[1], sn[2], sn[3],
670 sn[4], sn[5], sn[6], sn[7],
671 sn[8], sn[9], sn[10], sn[11],
672 sn[12], sn[13], sn[14], sn[15]);
673}
674
Scott Teelc1988682014-02-18 13:55:54 -0600675static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
676 struct device_attribute *attr, char *buf)
677{
678 struct ctlr_info *h;
679 struct scsi_device *sdev;
680 struct hpsa_scsi_dev_t *hdev;
681 unsigned long flags;
682 int offload_enabled;
683
684 sdev = to_scsi_device(dev);
685 h = sdev_to_hba(sdev);
686 spin_lock_irqsave(&h->lock, flags);
687 hdev = sdev->hostdata;
688 if (!hdev) {
689 spin_unlock_irqrestore(&h->lock, flags);
690 return -ENODEV;
691 }
692 offload_enabled = hdev->offload_enabled;
693 spin_unlock_irqrestore(&h->lock, flags);
694 return snprintf(buf, 20, "%d\n", offload_enabled);
695}
696
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600697static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
698static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
699static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
700static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600701static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
702 host_show_hp_ssd_smart_path_enabled, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600703static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
704 host_show_hp_ssd_smart_path_status,
705 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600706static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
707 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600708static DEVICE_ATTR(firmware_revision, S_IRUGO,
709 host_show_firmware_revision, NULL);
710static DEVICE_ATTR(commands_outstanding, S_IRUGO,
711 host_show_commands_outstanding, NULL);
712static DEVICE_ATTR(transport_mode, S_IRUGO,
713 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600714static DEVICE_ATTR(resettable, S_IRUGO,
715 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500716static DEVICE_ATTR(lockup_detected, S_IRUGO,
717 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600718
719static struct device_attribute *hpsa_sdev_attrs[] = {
720 &dev_attr_raid_level,
721 &dev_attr_lunid,
722 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600723 &dev_attr_hp_ssd_smart_path_enabled,
Stephen Camerone985c582015-04-23 09:32:22 -0500724 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600725 NULL,
726};
727
728static struct device_attribute *hpsa_shost_attrs[] = {
729 &dev_attr_rescan,
730 &dev_attr_firmware_revision,
731 &dev_attr_commands_outstanding,
732 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600733 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600734 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600735 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600736 NULL,
737};
738
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500739#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
740 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
741
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600742static struct scsi_host_template hpsa_driver_template = {
743 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600744 .name = HPSA,
745 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600746 .queuecommand = hpsa_scsi_queue_command,
747 .scan_start = hpsa_scan_start,
748 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600749 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600750 .this_id = -1,
751 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500752 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600753 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
754 .ioctl = hpsa_ioctl,
755 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500756 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600757 .slave_destroy = hpsa_slave_destroy,
758#ifdef CONFIG_COMPAT
759 .compat_ioctl = hpsa_compat_ioctl,
760#endif
761 .sdev_attrs = hpsa_sdev_attrs,
762 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500763 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400764 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600765};
766
Matt Gates254f7962012-05-01 11:43:06 -0500767static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600768{
769 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500770 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600771
Matt Gatese1f7de02014-02-18 13:55:17 -0600772 if (h->transMethod & CFGTBL_Trans_io_accel1)
773 return h->access.command_completed(h, q);
774
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600775 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500776 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600777
Matt Gates254f7962012-05-01 11:43:06 -0500778 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
779 a = rq->head[rq->current_entry];
780 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600781 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600782 } else {
783 a = FIFO_EMPTY;
784 }
785 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500786 if (rq->current_entry == h->max_commands) {
787 rq->current_entry = 0;
788 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600789 }
790 return a;
791}
792
Scott Teelc3497752014-02-18 13:56:34 -0600793/*
794 * There are some special bits in the bus address of the
795 * command that we have to set for the controller to know
796 * how to process the command:
797 *
798 * Normal performant mode:
799 * bit 0: 1 means performant mode, 0 means simple mode.
800 * bits 1-3 = block fetch table entry
801 * bits 4-6 = command type (== 0)
802 *
803 * ioaccel1 mode:
804 * bit 0 = "performant mode" bit.
805 * bits 1-3 = block fetch table entry
806 * bits 4-6 = command type (== 110)
807 * (command type is needed because ioaccel1 mode
808 * commands are submitted through the same register as normal
809 * mode commands, so this is how the controller knows whether
810 * the command is normal mode or ioaccel1 mode.)
811 *
812 * ioaccel2 mode:
813 * bit 0 = "performant mode" bit.
814 * bits 1-4 = block fetch table entry (note extra bit)
815 * bits 4-6 = not needed, because ioaccel2 mode has
816 * a separate special register for submitting commands.
817 */
818
Webb Scales25163bd2015-04-23 09:32:00 -0500819/*
820 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600821 * set bit 0 for pull model, bits 3-1 for block fetch
822 * register number
823 */
Webb Scales25163bd2015-04-23 09:32:00 -0500824#define DEFAULT_REPLY_QUEUE (-1)
825static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
826 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600827{
Matt Gates254f7962012-05-01 11:43:06 -0500828 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600829 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -0500830 if (unlikely(!h->msix_vector))
831 return;
832 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -0500833 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200834 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -0500835 else
836 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500837 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600838}
839
Scott Teelc3497752014-02-18 13:56:34 -0600840static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500841 struct CommandList *c,
842 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600843{
844 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
845
Webb Scales25163bd2015-04-23 09:32:00 -0500846 /*
847 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600848 * processor. This seems to give the best I/O throughput.
849 */
Webb Scales25163bd2015-04-23 09:32:00 -0500850 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
851 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
852 else
853 cp->ReplyQueue = reply_queue % h->nreply_queues;
854 /*
855 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600856 * - performant mode bit (bit 0)
857 * - pull count (bits 1-3)
858 * - command type (bits 4-6)
859 */
860 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
861 IOACCEL1_BUSADDR_CMDTYPE;
862}
863
Stephen Cameron8be986c2015-04-23 09:34:06 -0500864static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
865 struct CommandList *c,
866 int reply_queue)
867{
868 struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
869 &h->ioaccel2_cmd_pool[c->cmdindex];
870
871 /* Tell the controller to post the reply to the queue for this
872 * processor. This seems to give the best I/O throughput.
873 */
874 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
875 cp->reply_queue = smp_processor_id() % h->nreply_queues;
876 else
877 cp->reply_queue = reply_queue % h->nreply_queues;
878 /* Set the bits in the address sent down to include:
879 * - 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[0];
884}
885
Scott Teelc3497752014-02-18 13:56:34 -0600886static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500887 struct CommandList *c,
888 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600889{
890 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
891
Webb Scales25163bd2015-04-23 09:32:00 -0500892 /*
893 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600894 * processor. This seems to give the best I/O throughput.
895 */
Webb Scales25163bd2015-04-23 09:32:00 -0500896 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
897 cp->reply_queue = smp_processor_id() % h->nreply_queues;
898 else
899 cp->reply_queue = reply_queue % h->nreply_queues;
900 /*
901 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600902 * - performant mode bit not used in ioaccel mode 2
903 * - pull count (bits 0-3)
904 * - command type isn't needed for ioaccel2
905 */
906 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
907}
908
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500909static int is_firmware_flash_cmd(u8 *cdb)
910{
911 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
912}
913
914/*
915 * During firmware flash, the heartbeat register may not update as frequently
916 * as it should. So we dial down lockup detection during firmware flash. and
917 * dial it back up when firmware flash completes.
918 */
919#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
920#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
921static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
922 struct CommandList *c)
923{
924 if (!is_firmware_flash_cmd(c->Request.CDB))
925 return;
926 atomic_inc(&h->firmware_flash_in_progress);
927 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
928}
929
930static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
931 struct CommandList *c)
932{
933 if (is_firmware_flash_cmd(c->Request.CDB) &&
934 atomic_dec_and_test(&h->firmware_flash_in_progress))
935 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
936}
937
Webb Scales25163bd2015-04-23 09:32:00 -0500938static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
939 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600940{
Stephen Cameronc05e8862015-01-23 16:44:40 -0600941 dial_down_lockup_detection_during_fw_flash(h, c);
942 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -0600943 switch (c->cmd_type) {
944 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -0500945 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600946 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -0600947 break;
948 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -0500949 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600950 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -0600951 break;
Stephen Cameron8be986c2015-04-23 09:34:06 -0500952 case IOACCEL2_TMF:
953 set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
954 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
955 break;
Scott Teelc3497752014-02-18 13:56:34 -0600956 default:
Webb Scales25163bd2015-04-23 09:32:00 -0500957 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600958 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -0600959 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600960}
961
Webb Scales25163bd2015-04-23 09:32:00 -0500962static void enqueue_cmd_and_start_io(struct ctlr_info *h,
963 struct CommandList *c)
964{
965 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
966}
967
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600968static inline int is_hba_lunid(unsigned char scsi3addr[])
969{
970 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
971}
972
973static inline int is_scsi_rev_5(struct ctlr_info *h)
974{
975 if (!h->hba_inquiry_data)
976 return 0;
977 if ((h->hba_inquiry_data[2] & 0x07) == 5)
978 return 1;
979 return 0;
980}
981
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800982static int hpsa_find_target_lun(struct ctlr_info *h,
983 unsigned char scsi3addr[], int bus, int *target, int *lun)
984{
985 /* finds an unused bus, target, lun for a new physical device
986 * assumes h->devlock is held
987 */
988 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -0500989 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800990
Akinobu Mita263d9402012-01-21 00:15:27 +0900991 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800992
993 for (i = 0; i < h->ndevices; i++) {
994 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +0900995 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800996 }
997
Akinobu Mita263d9402012-01-21 00:15:27 +0900998 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
999 if (i < HPSA_MAX_DEVICES) {
1000 /* *bus = 1; */
1001 *target = i;
1002 *lun = 0;
1003 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001004 }
1005 return !found;
1006}
1007
Webb Scales0d96ef52015-04-23 09:31:55 -05001008static inline void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
1009 struct hpsa_scsi_dev_t *dev, char *description)
1010{
1011 dev_printk(level, &h->pdev->dev,
1012 "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
1013 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
1014 description,
1015 scsi_device_type(dev->devtype),
1016 dev->vendor,
1017 dev->model,
1018 dev->raid_level > RAID_UNKNOWN ?
1019 "RAID-?" : raid_label[dev->raid_level],
1020 dev->offload_config ? '+' : '-',
1021 dev->offload_enabled ? '+' : '-',
1022 dev->expose_state);
1023}
1024
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001025/* Add an entry into h->dev[] array. */
1026static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
1027 struct hpsa_scsi_dev_t *device,
1028 struct hpsa_scsi_dev_t *added[], int *nadded)
1029{
1030 /* assumes h->devlock is held */
1031 int n = h->ndevices;
1032 int i;
1033 unsigned char addr1[8], addr2[8];
1034 struct hpsa_scsi_dev_t *sd;
1035
Scott Teelcfe5bad2011-10-26 16:21:07 -05001036 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001037 dev_err(&h->pdev->dev, "too many devices, some will be "
1038 "inaccessible.\n");
1039 return -1;
1040 }
1041
1042 /* physical devices do not have lun or target assigned until now. */
1043 if (device->lun != -1)
1044 /* Logical device, lun is already assigned. */
1045 goto lun_assigned;
1046
1047 /* If this device a non-zero lun of a multi-lun device
1048 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001049 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001050 */
1051 if (device->scsi3addr[4] == 0) {
1052 /* This is not a non-zero lun of a multi-lun device */
1053 if (hpsa_find_target_lun(h, device->scsi3addr,
1054 device->bus, &device->target, &device->lun) != 0)
1055 return -1;
1056 goto lun_assigned;
1057 }
1058
1059 /* This is a non-zero lun of a multi-lun device.
1060 * Search through our list and find the device which
1061 * has the same 8 byte LUN address, excepting byte 4.
1062 * Assign the same bus and target for this new LUN.
1063 * Use the logical unit number from the firmware.
1064 */
1065 memcpy(addr1, device->scsi3addr, 8);
1066 addr1[4] = 0;
1067 for (i = 0; i < n; i++) {
1068 sd = h->dev[i];
1069 memcpy(addr2, sd->scsi3addr, 8);
1070 addr2[4] = 0;
1071 /* differ only in byte 4? */
1072 if (memcmp(addr1, addr2, 8) == 0) {
1073 device->bus = sd->bus;
1074 device->target = sd->target;
1075 device->lun = device->scsi3addr[4];
1076 break;
1077 }
1078 }
1079 if (device->lun == -1) {
1080 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1081 " suspect firmware bug or unsupported hardware "
1082 "configuration.\n");
1083 return -1;
1084 }
1085
1086lun_assigned:
1087
1088 h->dev[n] = device;
1089 h->ndevices++;
1090 added[*nadded] = device;
1091 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001092 hpsa_show_dev_msg(KERN_INFO, h, device,
1093 device->expose_state & HPSA_SCSI_ADD ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001094 device->offload_to_be_enabled = device->offload_enabled;
1095 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001096 return 0;
1097}
1098
Scott Teelbd9244f2012-01-19 14:01:30 -06001099/* Update an entry in h->dev[] array. */
1100static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
1101 int entry, struct hpsa_scsi_dev_t *new_entry)
1102{
Robert Elliotta473d862015-04-23 09:32:54 -05001103 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001104 /* assumes h->devlock is held */
1105 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1106
1107 /* Raid level changed. */
1108 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001109
Don Brace03383732015-01-23 16:43:30 -06001110 /* Raid offload parameters changed. Careful about the ordering. */
1111 if (new_entry->offload_config && new_entry->offload_enabled) {
1112 /*
1113 * if drive is newly offload_enabled, we want to copy the
1114 * raid map data first. If previously offload_enabled and
1115 * offload_config were set, raid map data had better be
1116 * the same as it was before. if raid map data is changed
1117 * then it had better be the case that
1118 * h->dev[entry]->offload_enabled is currently 0.
1119 */
1120 h->dev[entry]->raid_map = new_entry->raid_map;
1121 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001122 }
Joe Handzika3144e02015-04-23 09:32:59 -05001123 if (new_entry->hba_ioaccel_enabled) {
1124 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1125 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1126 }
1127 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001128 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001129 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001130 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001131
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001132 /*
1133 * We can turn off ioaccel offload now, but need to delay turning
1134 * it on until we can update h->dev[entry]->phys_disk[], but we
1135 * can't do that until all the devices are updated.
1136 */
1137 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1138 if (!new_entry->offload_enabled)
1139 h->dev[entry]->offload_enabled = 0;
1140
Robert Elliotta473d862015-04-23 09:32:54 -05001141 offload_enabled = h->dev[entry]->offload_enabled;
1142 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001143 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001144 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001145}
1146
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001147/* Replace an entry from h->dev[] array. */
1148static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
1149 int entry, struct hpsa_scsi_dev_t *new_entry,
1150 struct hpsa_scsi_dev_t *added[], int *nadded,
1151 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1152{
1153 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001154 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001155 removed[*nremoved] = h->dev[entry];
1156 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001157
1158 /*
1159 * New physical devices won't have target/lun assigned yet
1160 * so we need to preserve the values in the slot we are replacing.
1161 */
1162 if (new_entry->target == -1) {
1163 new_entry->target = h->dev[entry]->target;
1164 new_entry->lun = h->dev[entry]->lun;
1165 }
1166
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001167 h->dev[entry] = new_entry;
1168 added[*nadded] = new_entry;
1169 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001170 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001171 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1172 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001173}
1174
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001175/* Remove an entry from h->dev[] array. */
1176static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1177 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1178{
1179 /* assumes h->devlock is held */
1180 int i;
1181 struct hpsa_scsi_dev_t *sd;
1182
Scott Teelcfe5bad2011-10-26 16:21:07 -05001183 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001184
1185 sd = h->dev[entry];
1186 removed[*nremoved] = h->dev[entry];
1187 (*nremoved)++;
1188
1189 for (i = entry; i < h->ndevices-1; i++)
1190 h->dev[i] = h->dev[i+1];
1191 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001192 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001193}
1194
1195#define SCSI3ADDR_EQ(a, b) ( \
1196 (a)[7] == (b)[7] && \
1197 (a)[6] == (b)[6] && \
1198 (a)[5] == (b)[5] && \
1199 (a)[4] == (b)[4] && \
1200 (a)[3] == (b)[3] && \
1201 (a)[2] == (b)[2] && \
1202 (a)[1] == (b)[1] && \
1203 (a)[0] == (b)[0])
1204
1205static void fixup_botched_add(struct ctlr_info *h,
1206 struct hpsa_scsi_dev_t *added)
1207{
1208 /* called when scsi_add_device fails in order to re-adjust
1209 * h->dev[] to match the mid layer's view.
1210 */
1211 unsigned long flags;
1212 int i, j;
1213
1214 spin_lock_irqsave(&h->lock, flags);
1215 for (i = 0; i < h->ndevices; i++) {
1216 if (h->dev[i] == added) {
1217 for (j = i; j < h->ndevices-1; j++)
1218 h->dev[j] = h->dev[j+1];
1219 h->ndevices--;
1220 break;
1221 }
1222 }
1223 spin_unlock_irqrestore(&h->lock, flags);
1224 kfree(added);
1225}
1226
1227static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1228 struct hpsa_scsi_dev_t *dev2)
1229{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001230 /* we compare everything except lun and target as these
1231 * are not yet assigned. Compare parts likely
1232 * to differ first
1233 */
1234 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1235 sizeof(dev1->scsi3addr)) != 0)
1236 return 0;
1237 if (memcmp(dev1->device_id, dev2->device_id,
1238 sizeof(dev1->device_id)) != 0)
1239 return 0;
1240 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1241 return 0;
1242 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1243 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001244 if (dev1->devtype != dev2->devtype)
1245 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001246 if (dev1->bus != dev2->bus)
1247 return 0;
1248 return 1;
1249}
1250
Scott Teelbd9244f2012-01-19 14:01:30 -06001251static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1252 struct hpsa_scsi_dev_t *dev2)
1253{
1254 /* Device attributes that can change, but don't mean
1255 * that the device is a different device, nor that the OS
1256 * needs to be told anything about the change.
1257 */
1258 if (dev1->raid_level != dev2->raid_level)
1259 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001260 if (dev1->offload_config != dev2->offload_config)
1261 return 1;
1262 if (dev1->offload_enabled != dev2->offload_enabled)
1263 return 1;
Don Brace03383732015-01-23 16:43:30 -06001264 if (dev1->queue_depth != dev2->queue_depth)
1265 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001266 return 0;
1267}
1268
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001269/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1270 * and return needle location in *index. If scsi3addr matches, but not
1271 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001272 * location in *index.
1273 * In the case of a minor device attribute change, such as RAID level, just
1274 * return DEVICE_UPDATED, along with the updated device's location in index.
1275 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001276 */
1277static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1278 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1279 int *index)
1280{
1281 int i;
1282#define DEVICE_NOT_FOUND 0
1283#define DEVICE_CHANGED 1
1284#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001285#define DEVICE_UPDATED 3
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001286 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001287 if (haystack[i] == NULL) /* previously removed. */
1288 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001289 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1290 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001291 if (device_is_the_same(needle, haystack[i])) {
1292 if (device_updated(needle, haystack[i]))
1293 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001294 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001295 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001296 /* Keep offline devices offline */
1297 if (needle->volume_offline)
1298 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001299 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001300 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001301 }
1302 }
1303 *index = -1;
1304 return DEVICE_NOT_FOUND;
1305}
1306
Stephen M. Cameron98465902014-02-21 16:25:00 -06001307static void hpsa_monitor_offline_device(struct ctlr_info *h,
1308 unsigned char scsi3addr[])
1309{
1310 struct offline_device_entry *device;
1311 unsigned long flags;
1312
1313 /* Check to see if device is already on the list */
1314 spin_lock_irqsave(&h->offline_device_lock, flags);
1315 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1316 if (memcmp(device->scsi3addr, scsi3addr,
1317 sizeof(device->scsi3addr)) == 0) {
1318 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1319 return;
1320 }
1321 }
1322 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1323
1324 /* Device is not on the list, add it. */
1325 device = kmalloc(sizeof(*device), GFP_KERNEL);
1326 if (!device) {
1327 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1328 return;
1329 }
1330 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1331 spin_lock_irqsave(&h->offline_device_lock, flags);
1332 list_add_tail(&device->offline_list, &h->offline_device_list);
1333 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1334}
1335
1336/* Print a message explaining various offline volume states */
1337static void hpsa_show_volume_status(struct ctlr_info *h,
1338 struct hpsa_scsi_dev_t *sd)
1339{
1340 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1341 dev_info(&h->pdev->dev,
1342 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1343 h->scsi_host->host_no,
1344 sd->bus, sd->target, sd->lun);
1345 switch (sd->volume_offline) {
1346 case HPSA_LV_OK:
1347 break;
1348 case HPSA_LV_UNDERGOING_ERASE:
1349 dev_info(&h->pdev->dev,
1350 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1351 h->scsi_host->host_no,
1352 sd->bus, sd->target, sd->lun);
1353 break;
1354 case HPSA_LV_UNDERGOING_RPI:
1355 dev_info(&h->pdev->dev,
1356 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
1357 h->scsi_host->host_no,
1358 sd->bus, sd->target, sd->lun);
1359 break;
1360 case HPSA_LV_PENDING_RPI:
1361 dev_info(&h->pdev->dev,
1362 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1363 h->scsi_host->host_no,
1364 sd->bus, sd->target, sd->lun);
1365 break;
1366 case HPSA_LV_ENCRYPTED_NO_KEY:
1367 dev_info(&h->pdev->dev,
1368 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1369 h->scsi_host->host_no,
1370 sd->bus, sd->target, sd->lun);
1371 break;
1372 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1373 dev_info(&h->pdev->dev,
1374 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1375 h->scsi_host->host_no,
1376 sd->bus, sd->target, sd->lun);
1377 break;
1378 case HPSA_LV_UNDERGOING_ENCRYPTION:
1379 dev_info(&h->pdev->dev,
1380 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1381 h->scsi_host->host_no,
1382 sd->bus, sd->target, sd->lun);
1383 break;
1384 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1385 dev_info(&h->pdev->dev,
1386 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1387 h->scsi_host->host_no,
1388 sd->bus, sd->target, sd->lun);
1389 break;
1390 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1391 dev_info(&h->pdev->dev,
1392 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1393 h->scsi_host->host_no,
1394 sd->bus, sd->target, sd->lun);
1395 break;
1396 case HPSA_LV_PENDING_ENCRYPTION:
1397 dev_info(&h->pdev->dev,
1398 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1399 h->scsi_host->host_no,
1400 sd->bus, sd->target, sd->lun);
1401 break;
1402 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1403 dev_info(&h->pdev->dev,
1404 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1405 h->scsi_host->host_no,
1406 sd->bus, sd->target, sd->lun);
1407 break;
1408 }
1409}
1410
Don Brace03383732015-01-23 16:43:30 -06001411/*
1412 * Figure the list of physical drive pointers for a logical drive with
1413 * raid offload configured.
1414 */
1415static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1416 struct hpsa_scsi_dev_t *dev[], int ndevices,
1417 struct hpsa_scsi_dev_t *logical_drive)
1418{
1419 struct raid_map_data *map = &logical_drive->raid_map;
1420 struct raid_map_disk_data *dd = &map->data[0];
1421 int i, j;
1422 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1423 le16_to_cpu(map->metadata_disks_per_row);
1424 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1425 le16_to_cpu(map->layout_map_count) *
1426 total_disks_per_row;
1427 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1428 total_disks_per_row;
1429 int qdepth;
1430
1431 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1432 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1433
1434 qdepth = 0;
1435 for (i = 0; i < nraid_map_entries; i++) {
1436 logical_drive->phys_disk[i] = NULL;
1437 if (!logical_drive->offload_config)
1438 continue;
1439 for (j = 0; j < ndevices; j++) {
1440 if (dev[j]->devtype != TYPE_DISK)
1441 continue;
1442 if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
1443 continue;
1444 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1445 continue;
1446
1447 logical_drive->phys_disk[i] = dev[j];
1448 if (i < nphys_disk)
1449 qdepth = min(h->nr_cmds, qdepth +
1450 logical_drive->phys_disk[i]->queue_depth);
1451 break;
1452 }
1453
1454 /*
1455 * This can happen if a physical drive is removed and
1456 * the logical drive is degraded. In that case, the RAID
1457 * map data will refer to a physical disk which isn't actually
1458 * present. And in that case offload_enabled should already
1459 * be 0, but we'll turn it off here just in case
1460 */
1461 if (!logical_drive->phys_disk[i]) {
1462 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001463 logical_drive->offload_to_be_enabled = 0;
1464 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001465 }
1466 }
1467 if (nraid_map_entries)
1468 /*
1469 * This is correct for reads, too high for full stripe writes,
1470 * way too high for partial stripe writes
1471 */
1472 logical_drive->queue_depth = qdepth;
1473 else
1474 logical_drive->queue_depth = h->nr_cmds;
1475}
1476
1477static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1478 struct hpsa_scsi_dev_t *dev[], int ndevices)
1479{
1480 int i;
1481
1482 for (i = 0; i < ndevices; i++) {
1483 if (dev[i]->devtype != TYPE_DISK)
1484 continue;
1485 if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
1486 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001487
1488 /*
1489 * If offload is currently enabled, the RAID map and
1490 * phys_disk[] assignment *better* not be changing
1491 * and since it isn't changing, we do not need to
1492 * update it.
1493 */
1494 if (dev[i]->offload_enabled)
1495 continue;
1496
Don Brace03383732015-01-23 16:43:30 -06001497 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1498 }
1499}
1500
Stephen M. Cameron4967bd32010-02-04 08:41:49 -06001501static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001502 struct hpsa_scsi_dev_t *sd[], int nsds)
1503{
1504 /* sd contains scsi3 addresses and devtypes, and inquiry
1505 * data. This function takes what's in sd to be the current
1506 * reality and updates h->dev[] to reflect that reality.
1507 */
1508 int i, entry, device_change, changes = 0;
1509 struct hpsa_scsi_dev_t *csd;
1510 unsigned long flags;
1511 struct hpsa_scsi_dev_t **added, **removed;
1512 int nadded, nremoved;
1513 struct Scsi_Host *sh = NULL;
1514
Scott Teelcfe5bad2011-10-26 16:21:07 -05001515 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1516 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001517
1518 if (!added || !removed) {
1519 dev_warn(&h->pdev->dev, "out of memory in "
1520 "adjust_hpsa_scsi_table\n");
1521 goto free_and_out;
1522 }
1523
1524 spin_lock_irqsave(&h->devlock, flags);
1525
1526 /* find any devices in h->dev[] that are not in
1527 * sd[] and remove them from h->dev[], and for any
1528 * devices which have changed, remove the old device
1529 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001530 * If minor device attributes change, just update
1531 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001532 */
1533 i = 0;
1534 nremoved = 0;
1535 nadded = 0;
1536 while (i < h->ndevices) {
1537 csd = h->dev[i];
1538 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1539 if (device_change == DEVICE_NOT_FOUND) {
1540 changes++;
1541 hpsa_scsi_remove_entry(h, hostno, i,
1542 removed, &nremoved);
1543 continue; /* remove ^^^, hence i not incremented */
1544 } else if (device_change == DEVICE_CHANGED) {
1545 changes++;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001546 hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
1547 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001548 /* Set it to NULL to prevent it from being freed
1549 * at the bottom of hpsa_update_scsi_devices()
1550 */
1551 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001552 } else if (device_change == DEVICE_UPDATED) {
1553 hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001554 }
1555 i++;
1556 }
1557
1558 /* Now, make sure every device listed in sd[] is also
1559 * listed in h->dev[], adding them if they aren't found
1560 */
1561
1562 for (i = 0; i < nsds; i++) {
1563 if (!sd[i]) /* if already added above. */
1564 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001565
1566 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1567 * as the SCSI mid-layer does not handle such devices well.
1568 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1569 * at 160Hz, and prevents the system from coming up.
1570 */
1571 if (sd[i]->volume_offline) {
1572 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001573 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001574 continue;
1575 }
1576
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001577 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1578 h->ndevices, &entry);
1579 if (device_change == DEVICE_NOT_FOUND) {
1580 changes++;
1581 if (hpsa_scsi_add_entry(h, hostno, sd[i],
1582 added, &nadded) != 0)
1583 break;
1584 sd[i] = NULL; /* prevent from being freed later. */
1585 } else if (device_change == DEVICE_CHANGED) {
1586 /* should never happen... */
1587 changes++;
1588 dev_warn(&h->pdev->dev,
1589 "device unexpectedly changed.\n");
1590 /* but if it does happen, we just ignore that device */
1591 }
1592 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001593 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1594
1595 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1596 * any logical drives that need it enabled.
1597 */
1598 for (i = 0; i < h->ndevices; i++)
1599 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
1600
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001601 spin_unlock_irqrestore(&h->devlock, flags);
1602
Stephen M. Cameron98465902014-02-21 16:25:00 -06001603 /* Monitor devices which are in one of several NOT READY states to be
1604 * brought online later. This must be done without holding h->devlock,
1605 * so don't touch h->dev[]
1606 */
1607 for (i = 0; i < nsds; i++) {
1608 if (!sd[i]) /* if already added above. */
1609 continue;
1610 if (sd[i]->volume_offline)
1611 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1612 }
1613
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001614 /* Don't notify scsi mid layer of any changes the first time through
1615 * (or if there are no changes) scsi_scan_host will do it later the
1616 * first time through.
1617 */
1618 if (hostno == -1 || !changes)
1619 goto free_and_out;
1620
1621 sh = h->scsi_host;
1622 /* Notify scsi mid layer of any removed devices */
1623 for (i = 0; i < nremoved; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001624 if (removed[i]->expose_state & HPSA_SCSI_ADD) {
1625 struct scsi_device *sdev =
1626 scsi_device_lookup(sh, removed[i]->bus,
1627 removed[i]->target, removed[i]->lun);
1628 if (sdev != NULL) {
1629 scsi_remove_device(sdev);
1630 scsi_device_put(sdev);
1631 } else {
1632 /*
1633 * We don't expect to get here.
1634 * future cmds to this device will get selection
1635 * timeout as if the device was gone.
1636 */
Webb Scales0d96ef52015-04-23 09:31:55 -05001637 hpsa_show_dev_msg(KERN_WARNING, h, removed[i],
1638 "didn't find device for removal.");
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001639 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001640 }
1641 kfree(removed[i]);
1642 removed[i] = NULL;
1643 }
1644
1645 /* Notify scsi mid layer of any added devices */
1646 for (i = 0; i < nadded; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001647 if (!(added[i]->expose_state & HPSA_SCSI_ADD))
1648 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001649 if (scsi_add_device(sh, added[i]->bus,
1650 added[i]->target, added[i]->lun) == 0)
1651 continue;
Webb Scales0d96ef52015-04-23 09:31:55 -05001652 hpsa_show_dev_msg(KERN_WARNING, h, added[i],
1653 "addition failed, device not added.");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001654 /* now we have to remove it from h->dev,
1655 * since it didn't get added to scsi mid layer
1656 */
1657 fixup_botched_add(h, added[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05001658 added[i] = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001659 }
1660
1661free_and_out:
1662 kfree(added);
1663 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001664}
1665
1666/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001667 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001668 * Assume's h->devlock is held.
1669 */
1670static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1671 int bus, int target, int lun)
1672{
1673 int i;
1674 struct hpsa_scsi_dev_t *sd;
1675
1676 for (i = 0; i < h->ndevices; i++) {
1677 sd = h->dev[i];
1678 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1679 return sd;
1680 }
1681 return NULL;
1682}
1683
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001684static int hpsa_slave_alloc(struct scsi_device *sdev)
1685{
1686 struct hpsa_scsi_dev_t *sd;
1687 unsigned long flags;
1688 struct ctlr_info *h;
1689
1690 h = sdev_to_hba(sdev);
1691 spin_lock_irqsave(&h->devlock, flags);
1692 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1693 sdev_id(sdev), sdev->lun);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001694 if (likely(sd)) {
Don Brace03383732015-01-23 16:43:30 -06001695 atomic_set(&sd->ioaccel_cmds_out, 0);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001696 sdev->hostdata = (sd->expose_state & HPSA_SCSI_ADD) ? sd : NULL;
1697 } else
1698 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001699 spin_unlock_irqrestore(&h->devlock, flags);
1700 return 0;
1701}
1702
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001703/* configure scsi device based on internal per-device structure */
1704static int hpsa_slave_configure(struct scsi_device *sdev)
1705{
1706 struct hpsa_scsi_dev_t *sd;
1707 int queue_depth;
1708
1709 sd = sdev->hostdata;
1710 sdev->no_uld_attach = !sd || !(sd->expose_state & HPSA_ULD_ATTACH);
1711
1712 if (sd)
1713 queue_depth = sd->queue_depth != 0 ?
1714 sd->queue_depth : sdev->host->can_queue;
1715 else
1716 queue_depth = sdev->host->can_queue;
1717
1718 scsi_change_queue_depth(sdev, queue_depth);
1719
1720 return 0;
1721}
1722
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001723static void hpsa_slave_destroy(struct scsi_device *sdev)
1724{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001725 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001726}
1727
Webb Scalesd9a729f2015-04-23 09:33:27 -05001728static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1729{
1730 int i;
1731
1732 if (!h->ioaccel2_cmd_sg_list)
1733 return;
1734 for (i = 0; i < h->nr_cmds; i++) {
1735 kfree(h->ioaccel2_cmd_sg_list[i]);
1736 h->ioaccel2_cmd_sg_list[i] = NULL;
1737 }
1738 kfree(h->ioaccel2_cmd_sg_list);
1739 h->ioaccel2_cmd_sg_list = NULL;
1740}
1741
1742static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1743{
1744 int i;
1745
1746 if (h->chainsize <= 0)
1747 return 0;
1748
1749 h->ioaccel2_cmd_sg_list =
1750 kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
1751 GFP_KERNEL);
1752 if (!h->ioaccel2_cmd_sg_list)
1753 return -ENOMEM;
1754 for (i = 0; i < h->nr_cmds; i++) {
1755 h->ioaccel2_cmd_sg_list[i] =
1756 kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
1757 h->maxsgentries, GFP_KERNEL);
1758 if (!h->ioaccel2_cmd_sg_list[i])
1759 goto clean;
1760 }
1761 return 0;
1762
1763clean:
1764 hpsa_free_ioaccel2_sg_chain_blocks(h);
1765 return -ENOMEM;
1766}
1767
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001768static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1769{
1770 int i;
1771
1772 if (!h->cmd_sg_list)
1773 return;
1774 for (i = 0; i < h->nr_cmds; i++) {
1775 kfree(h->cmd_sg_list[i]);
1776 h->cmd_sg_list[i] = NULL;
1777 }
1778 kfree(h->cmd_sg_list);
1779 h->cmd_sg_list = NULL;
1780}
1781
Robert Elliott105a3db2015-04-23 09:33:48 -05001782static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001783{
1784 int i;
1785
1786 if (h->chainsize <= 0)
1787 return 0;
1788
1789 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1790 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001791 if (!h->cmd_sg_list) {
1792 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001793 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001794 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001795 for (i = 0; i < h->nr_cmds; i++) {
1796 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1797 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001798 if (!h->cmd_sg_list[i]) {
1799 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001800 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001801 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001802 }
1803 return 0;
1804
1805clean:
1806 hpsa_free_sg_chain_blocks(h);
1807 return -ENOMEM;
1808}
1809
Webb Scalesd9a729f2015-04-23 09:33:27 -05001810static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
1811 struct io_accel2_cmd *cp, struct CommandList *c)
1812{
1813 struct ioaccel2_sg_element *chain_block;
1814 u64 temp64;
1815 u32 chain_size;
1816
1817 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
1818 chain_size = le32_to_cpu(cp->data_len);
1819 temp64 = pci_map_single(h->pdev, chain_block, chain_size,
1820 PCI_DMA_TODEVICE);
1821 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1822 /* prevent subsequent unmapping */
1823 cp->sg->address = 0;
1824 return -1;
1825 }
1826 cp->sg->address = cpu_to_le64(temp64);
1827 return 0;
1828}
1829
1830static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
1831 struct io_accel2_cmd *cp)
1832{
1833 struct ioaccel2_sg_element *chain_sg;
1834 u64 temp64;
1835 u32 chain_size;
1836
1837 chain_sg = cp->sg;
1838 temp64 = le64_to_cpu(chain_sg->address);
1839 chain_size = le32_to_cpu(cp->data_len);
1840 pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
1841}
1842
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001843static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001844 struct CommandList *c)
1845{
1846 struct SGDescriptor *chain_sg, *chain_block;
1847 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001848 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001849
1850 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
1851 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001852 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
1853 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06001854 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001855 chain_sg->Len = cpu_to_le32(chain_len);
1856 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001857 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001858 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1859 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001860 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001861 return -1;
1862 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001863 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001864 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001865}
1866
1867static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
1868 struct CommandList *c)
1869{
1870 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001871
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001872 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001873 return;
1874
1875 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001876 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
1877 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001878}
1879
Scott Teela09c1442014-02-18 13:57:21 -06001880
1881/* Decode the various types of errors on ioaccel2 path.
1882 * Return 1 for any error that should generate a RAID path retry.
1883 * Return 0 for errors that don't require a RAID path retry.
1884 */
1885static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06001886 struct CommandList *c,
1887 struct scsi_cmnd *cmd,
1888 struct io_accel2_cmd *c2)
1889{
1890 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06001891 int retry = 0;
Joe Handzikc40820d2015-04-23 09:33:32 -05001892 u32 ioaccel2_resid = 0;
Scott Teelc3497752014-02-18 13:56:34 -06001893
1894 switch (c2->error_data.serv_response) {
1895 case IOACCEL2_SERV_RESPONSE_COMPLETE:
1896 switch (c2->error_data.status) {
1897 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
1898 break;
1899 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001900 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06001901 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001902 IOACCEL2_SENSE_DATA_PRESENT) {
1903 memset(cmd->sense_buffer, 0,
1904 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06001905 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001906 }
Scott Teelc3497752014-02-18 13:56:34 -06001907 /* copy the sense data */
1908 data_len = c2->error_data.sense_data_len;
1909 if (data_len > SCSI_SENSE_BUFFERSIZE)
1910 data_len = SCSI_SENSE_BUFFERSIZE;
1911 if (data_len > sizeof(c2->error_data.sense_data_buff))
1912 data_len =
1913 sizeof(c2->error_data.sense_data_buff);
1914 memcpy(cmd->sense_buffer,
1915 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06001916 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001917 break;
1918 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
Scott Teela09c1442014-02-18 13:57:21 -06001919 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001920 break;
1921 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
Scott Teela09c1442014-02-18 13:57:21 -06001922 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001923 break;
1924 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05001925 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001926 break;
1927 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
Scott Teela09c1442014-02-18 13:57:21 -06001928 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001929 break;
1930 default:
Scott Teela09c1442014-02-18 13:57:21 -06001931 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001932 break;
1933 }
1934 break;
1935 case IOACCEL2_SERV_RESPONSE_FAILURE:
Joe Handzikc40820d2015-04-23 09:33:32 -05001936 switch (c2->error_data.status) {
1937 case IOACCEL2_STATUS_SR_IO_ERROR:
1938 case IOACCEL2_STATUS_SR_IO_ABORTED:
1939 case IOACCEL2_STATUS_SR_OVERRUN:
1940 retry = 1;
1941 break;
1942 case IOACCEL2_STATUS_SR_UNDERRUN:
1943 cmd->result = (DID_OK << 16); /* host byte */
1944 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
1945 ioaccel2_resid = get_unaligned_le32(
1946 &c2->error_data.resid_cnt[0]);
1947 scsi_set_resid(cmd, ioaccel2_resid);
1948 break;
1949 case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
1950 case IOACCEL2_STATUS_SR_INVALID_DEVICE:
1951 case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
1952 /* We will get an event from ctlr to trigger rescan */
1953 retry = 1;
1954 break;
1955 default:
1956 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05001957 }
Scott Teelc3497752014-02-18 13:56:34 -06001958 break;
1959 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
1960 break;
1961 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
1962 break;
1963 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
Scott Teela09c1442014-02-18 13:57:21 -06001964 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001965 break;
1966 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
Scott Teelc3497752014-02-18 13:56:34 -06001967 break;
1968 default:
Scott Teela09c1442014-02-18 13:57:21 -06001969 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001970 break;
1971 }
Scott Teela09c1442014-02-18 13:57:21 -06001972
1973 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06001974}
1975
1976static void process_ioaccel2_completion(struct ctlr_info *h,
1977 struct CommandList *c, struct scsi_cmnd *cmd,
1978 struct hpsa_scsi_dev_t *dev)
1979{
1980 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
1981
1982 /* check for good status */
1983 if (likely(c2->error_data.serv_response == 0 &&
1984 c2->error_data.status == 0)) {
1985 cmd_free(h, c);
1986 cmd->scsi_done(cmd);
1987 return;
1988 }
1989
1990 /* Any RAID offload error results in retry which will use
1991 * the normal I/O path so the controller can handle whatever's
1992 * wrong.
1993 */
1994 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
1995 c2->error_data.serv_response ==
1996 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06001997 if (c2->error_data.status ==
1998 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
1999 dev->offload_enabled = 0;
2000 goto retry_cmd;
Scott Teelc3497752014-02-18 13:56:34 -06002001 }
Don Brace080ef1c2015-01-23 16:43:25 -06002002
2003 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
2004 goto retry_cmd;
2005
Scott Teelc3497752014-02-18 13:56:34 -06002006 cmd_free(h, c);
2007 cmd->scsi_done(cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06002008 return;
2009
2010retry_cmd:
2011 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
2012 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
Scott Teelc3497752014-02-18 13:56:34 -06002013}
2014
Stephen Cameron9437ac42015-04-23 09:32:16 -05002015/* Returns 0 on success, < 0 otherwise. */
2016static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
2017 struct CommandList *cp)
2018{
2019 u8 tmf_status = cp->err_info->ScsiStatus;
2020
2021 switch (tmf_status) {
2022 case CISS_TMF_COMPLETE:
2023 /*
2024 * CISS_TMF_COMPLETE never happens, instead,
2025 * ei->CommandStatus == 0 for this case.
2026 */
2027 case CISS_TMF_SUCCESS:
2028 return 0;
2029 case CISS_TMF_INVALID_FRAME:
2030 case CISS_TMF_NOT_SUPPORTED:
2031 case CISS_TMF_FAILED:
2032 case CISS_TMF_WRONG_LUN:
2033 case CISS_TMF_OVERLAPPED_TAG:
2034 break;
2035 default:
2036 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2037 tmf_status);
2038 break;
2039 }
2040 return -tmf_status;
2041}
2042
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002043static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002044{
2045 struct scsi_cmnd *cmd;
2046 struct ctlr_info *h;
2047 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002048 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002049 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002050
Stephen Cameron9437ac42015-04-23 09:32:16 -05002051 u8 sense_key;
2052 u8 asc; /* additional sense code */
2053 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002054 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002055
2056 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002057 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002058 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002059 dev = cmd->device->hostdata;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002060 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002061
2062 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002063 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002064 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002065 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002066
Webb Scalesd9a729f2015-04-23 09:33:27 -05002067 if ((cp->cmd_type == CMD_IOACCEL2) &&
2068 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2069 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2070
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002071 cmd->result = (DID_OK << 16); /* host byte */
2072 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002073
Don Brace03383732015-01-23 16:43:30 -06002074 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
2075 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2076
Webb Scales25163bd2015-04-23 09:32:00 -05002077 /*
2078 * We check for lockup status here as it may be set for
2079 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2080 * fail_all_oustanding_cmds()
2081 */
2082 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2083 /* DID_NO_CONNECT will prevent a retry */
2084 cmd->result = DID_NO_CONNECT << 16;
2085 cmd_free(h, cp);
2086 cmd->scsi_done(cmd);
2087 return;
2088 }
2089
Scott Teelc3497752014-02-18 13:56:34 -06002090 if (cp->cmd_type == CMD_IOACCEL2)
2091 return process_ioaccel2_completion(h, cp, cmd, dev);
2092
Robert Elliott6aa4c362014-07-03 10:18:19 -05002093 scsi_set_resid(cmd, ei->ResidualCnt);
2094 if (ei->CommandStatus == 0) {
Don Brace03383732015-01-23 16:43:30 -06002095 if (cp->cmd_type == CMD_IOACCEL1)
2096 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002097 cmd_free(h, cp);
2098 cmd->scsi_done(cmd);
2099 return;
2100 }
2101
Matt Gatese1f7de02014-02-18 13:55:17 -06002102 /* For I/O accelerator commands, copy over some fields to the normal
2103 * CISS header used below for error handling.
2104 */
2105 if (cp->cmd_type == CMD_IOACCEL1) {
2106 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002107 cp->Header.SGList = scsi_sg_count(cmd);
2108 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2109 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2110 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002111 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002112 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2113 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002114
2115 /* Any RAID offload error results in retry which will use
2116 * the normal I/O path so the controller can handle whatever's
2117 * wrong.
2118 */
2119 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
2120 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2121 dev->offload_enabled = 0;
Don Brace080ef1c2015-01-23 16:43:25 -06002122 INIT_WORK(&cp->work, hpsa_command_resubmit_worker);
2123 queue_work_on(raw_smp_processor_id(),
2124 h->resubmit_wq, &cp->work);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002125 return;
2126 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002127 }
2128
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002129 /* an error has occurred */
2130 switch (ei->CommandStatus) {
2131
2132 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002133 cmd->result |= ei->ScsiStatus;
2134 /* copy the sense data */
2135 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2136 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2137 else
2138 sense_data_size = sizeof(ei->SenseInfo);
2139 if (ei->SenseLen < sense_data_size)
2140 sense_data_size = ei->SenseLen;
2141 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2142 if (ei->ScsiStatus)
2143 decode_sense_data(ei->SenseInfo, sense_data_size,
2144 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002145 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002146 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002147 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002148 break;
2149 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002150 break;
2151 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002152 /* Problem was not a check condition
2153 * Pass it up to the upper layers...
2154 */
2155 if (ei->ScsiStatus) {
2156 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2157 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2158 "Returning result: 0x%x\n",
2159 cp, ei->ScsiStatus,
2160 sense_key, asc, ascq,
2161 cmd->result);
2162 } else { /* scsi status is zero??? How??? */
2163 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2164 "Returning no connection.\n", cp),
2165
2166 /* Ordinarily, this case should never happen,
2167 * but there is a bug in some released firmware
2168 * revisions that allows it to happen if, for
2169 * example, a 4100 backplane loses power and
2170 * the tape drive is in it. We assume that
2171 * it's a fatal error of some kind because we
2172 * can't show that it wasn't. We will make it
2173 * look like selection timeout since that is
2174 * the most common reason for this to occur,
2175 * and it's severe enough.
2176 */
2177
2178 cmd->result = DID_NO_CONNECT << 16;
2179 }
2180 break;
2181
2182 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2183 break;
2184 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002185 dev_warn(&h->pdev->dev,
2186 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002187 break;
2188 case CMD_INVALID: {
2189 /* print_bytes(cp, sizeof(*cp), 1, 0);
2190 print_cmd(cp); */
2191 /* We get CMD_INVALID if you address a non-existent device
2192 * instead of a selection timeout (no response). You will
2193 * see this if you yank out a drive, then try to access it.
2194 * This is kind of a shame because it means that any other
2195 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2196 * missing target. */
2197 cmd->result = DID_NO_CONNECT << 16;
2198 }
2199 break;
2200 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002201 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002202 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2203 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002204 break;
2205 case CMD_HARDWARE_ERR:
2206 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002207 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2208 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002209 break;
2210 case CMD_CONNECTION_LOST:
2211 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002212 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2213 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002214 break;
2215 case CMD_ABORTED:
2216 cmd->result = DID_ABORT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002217 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2218 cp->Request.CDB, ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002219 break;
2220 case CMD_ABORT_FAILED:
2221 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002222 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2223 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002224 break;
2225 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002226 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002227 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2228 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002229 break;
2230 case CMD_TIMEOUT:
2231 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002232 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2233 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002234 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002235 case CMD_UNABORTABLE:
2236 cmd->result = DID_ERROR << 16;
2237 dev_warn(&h->pdev->dev, "Command unabortable\n");
2238 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002239 case CMD_TMF_STATUS:
2240 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2241 cmd->result = DID_ERROR << 16;
2242 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002243 case CMD_IOACCEL_DISABLED:
2244 /* This only handles the direct pass-through case since RAID
2245 * offload is handled above. Just attempt a retry.
2246 */
2247 cmd->result = DID_SOFT_ERROR << 16;
2248 dev_warn(&h->pdev->dev,
2249 "cp %p had HP SSD Smart Path error\n", cp);
2250 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002251 default:
2252 cmd->result = DID_ERROR << 16;
2253 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2254 cp, ei->CommandStatus);
2255 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002256 cmd_free(h, cp);
Tomas Henzl2cc5bfa2013-08-01 15:14:00 +02002257 cmd->scsi_done(cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002258}
2259
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002260static void hpsa_pci_unmap(struct pci_dev *pdev,
2261 struct CommandList *c, int sg_used, int data_direction)
2262{
2263 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002264
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002265 for (i = 0; i < sg_used; i++)
2266 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2267 le32_to_cpu(c->SG[i].Len),
2268 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002269}
2270
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002271static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002272 struct CommandList *cp,
2273 unsigned char *buf,
2274 size_t buflen,
2275 int data_direction)
2276{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002277 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002278
2279 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2280 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002281 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002282 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002283 }
2284
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002285 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002286 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002287 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002288 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002289 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002290 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002291 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002292 cp->SG[0].Addr = cpu_to_le64(addr64);
2293 cp->SG[0].Len = cpu_to_le32(buflen);
2294 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2295 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2296 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002297 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002298}
2299
Webb Scales25163bd2015-04-23 09:32:00 -05002300#define NO_TIMEOUT ((unsigned long) -1)
2301#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2302static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2303 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002304{
2305 DECLARE_COMPLETION_ONSTACK(wait);
2306
2307 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002308 __enqueue_cmd_and_start_io(h, c, reply_queue);
2309 if (timeout_msecs == NO_TIMEOUT) {
2310 /* TODO: get rid of this no-timeout thing */
2311 wait_for_completion_io(&wait);
2312 return IO_OK;
2313 }
2314 if (!wait_for_completion_io_timeout(&wait,
2315 msecs_to_jiffies(timeout_msecs))) {
2316 dev_warn(&h->pdev->dev, "Command timed out.\n");
2317 return -ETIMEDOUT;
2318 }
2319 return IO_OK;
2320}
2321
2322static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2323 int reply_queue, unsigned long timeout_msecs)
2324{
2325 if (unlikely(lockup_detected(h))) {
2326 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2327 return IO_OK;
2328 }
2329 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002330}
2331
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002332static u32 lockup_detected(struct ctlr_info *h)
2333{
2334 int cpu;
2335 u32 rc, *lockup_detected;
2336
2337 cpu = get_cpu();
2338 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2339 rc = *lockup_detected;
2340 put_cpu();
2341 return rc;
2342}
2343
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002344#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002345static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2346 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002347{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002348 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002349 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002350
2351 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002352 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002353 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2354 timeout_msecs);
2355 if (rc)
2356 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002357 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002358 if (retry_count > 3) {
2359 msleep(backoff_time);
2360 if (backoff_time < 1000)
2361 backoff_time *= 2;
2362 }
Matt Bondurant852af202012-05-01 11:42:35 -05002363 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002364 check_for_busy(h, c)) &&
2365 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002366 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002367 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2368 rc = -EIO;
2369 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002370}
2371
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002372static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2373 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002374{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002375 const u8 *cdb = c->Request.CDB;
2376 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002377
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002378 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2379 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2380 txt, lun[0], lun[1], lun[2], lun[3],
2381 lun[4], lun[5], lun[6], lun[7],
2382 cdb[0], cdb[1], cdb[2], cdb[3],
2383 cdb[4], cdb[5], cdb[6], cdb[7],
2384 cdb[8], cdb[9], cdb[10], cdb[11],
2385 cdb[12], cdb[13], cdb[14], cdb[15]);
2386}
2387
2388static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2389 struct CommandList *cp)
2390{
2391 const struct ErrorInfo *ei = cp->err_info;
2392 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002393 u8 sense_key, asc, ascq;
2394 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002395
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002396 switch (ei->CommandStatus) {
2397 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002398 if (ei->SenseLen > sizeof(ei->SenseInfo))
2399 sense_len = sizeof(ei->SenseInfo);
2400 else
2401 sense_len = ei->SenseLen;
2402 decode_sense_data(ei->SenseInfo, sense_len,
2403 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002404 hpsa_print_cmd(h, "SCSI status", cp);
2405 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002406 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2407 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002408 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002409 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002410 if (ei->ScsiStatus == 0)
2411 dev_warn(d, "SCSI status is abnormally zero. "
2412 "(probably indicates selection timeout "
2413 "reported incorrectly due to a known "
2414 "firmware bug, circa July, 2001.)\n");
2415 break;
2416 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002417 break;
2418 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002419 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002420 break;
2421 case CMD_INVALID: {
2422 /* controller unfortunately reports SCSI passthru's
2423 * to non-existent targets as invalid commands.
2424 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002425 hpsa_print_cmd(h, "invalid command", cp);
2426 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002427 }
2428 break;
2429 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002430 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002431 break;
2432 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002433 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002434 break;
2435 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002436 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002437 break;
2438 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002439 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002440 break;
2441 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002442 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002443 break;
2444 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002445 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002446 break;
2447 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002448 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002449 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002450 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002451 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002452 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002453 case CMD_CTLR_LOCKUP:
2454 hpsa_print_cmd(h, "controller lockup detected", cp);
2455 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002456 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002457 hpsa_print_cmd(h, "unknown status", cp);
2458 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002459 ei->CommandStatus);
2460 }
2461}
2462
2463static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002464 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002465 unsigned char bufsize)
2466{
2467 int rc = IO_OK;
2468 struct CommandList *c;
2469 struct ErrorInfo *ei;
2470
Stephen Cameron45fcb862015-01-23 16:43:04 -06002471 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002472
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002473 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2474 page, scsi3addr, TYPE_CMD)) {
2475 rc = -1;
2476 goto out;
2477 }
Webb Scales25163bd2015-04-23 09:32:00 -05002478 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2479 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2480 if (rc)
2481 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002482 ei = c->err_info;
2483 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002484 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002485 rc = -1;
2486 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002487out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002488 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002489 return rc;
2490}
2491
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002492static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
2493 unsigned char *scsi3addr, unsigned char page,
2494 struct bmic_controller_parameters *buf, size_t bufsize)
2495{
2496 int rc = IO_OK;
2497 struct CommandList *c;
2498 struct ErrorInfo *ei;
2499
Stephen Cameron45fcb862015-01-23 16:43:04 -06002500 c = cmd_alloc(h);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002501 if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize,
2502 page, scsi3addr, TYPE_CMD)) {
2503 rc = -1;
2504 goto out;
2505 }
Webb Scales25163bd2015-04-23 09:32:00 -05002506 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2507 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2508 if (rc)
2509 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002510 ei = c->err_info;
2511 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2512 hpsa_scsi_interpret_error(h, c);
2513 rc = -1;
2514 }
2515out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002516 cmd_free(h, c);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002517 return rc;
Robert Elliottbf43caf2015-04-23 09:33:38 -05002518}
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002519
Scott Teelbf711ac2014-02-18 13:56:39 -06002520static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002521 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002522{
2523 int rc = IO_OK;
2524 struct CommandList *c;
2525 struct ErrorInfo *ei;
2526
Stephen Cameron45fcb862015-01-23 16:43:04 -06002527 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002528
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002529
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002530 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teelbf711ac2014-02-18 13:56:39 -06002531 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2532 scsi3addr, TYPE_MSG);
2533 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
Webb Scales25163bd2015-04-23 09:32:00 -05002534 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
2535 if (rc) {
2536 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2537 goto out;
2538 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002539 /* no unmap needed here because no data xfer. */
2540
2541 ei = c->err_info;
2542 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002543 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002544 rc = -1;
2545 }
Webb Scales25163bd2015-04-23 09:32:00 -05002546out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002547 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002548 return rc;
2549}
2550
2551static void hpsa_get_raid_level(struct ctlr_info *h,
2552 unsigned char *scsi3addr, unsigned char *raid_level)
2553{
2554 int rc;
2555 unsigned char *buf;
2556
2557 *raid_level = RAID_UNKNOWN;
2558 buf = kzalloc(64, GFP_KERNEL);
2559 if (!buf)
2560 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002561 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002562 if (rc == 0)
2563 *raid_level = buf[8];
2564 if (*raid_level > RAID_UNKNOWN)
2565 *raid_level = RAID_UNKNOWN;
2566 kfree(buf);
2567 return;
2568}
2569
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002570#define HPSA_MAP_DEBUG
2571#ifdef HPSA_MAP_DEBUG
2572static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2573 struct raid_map_data *map_buff)
2574{
2575 struct raid_map_disk_data *dd = &map_buff->data[0];
2576 int map, row, col;
2577 u16 map_cnt, row_cnt, disks_per_row;
2578
2579 if (rc != 0)
2580 return;
2581
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002582 /* Show details only if debugging has been activated. */
2583 if (h->raid_offload_debug < 2)
2584 return;
2585
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002586 dev_info(&h->pdev->dev, "structure_size = %u\n",
2587 le32_to_cpu(map_buff->structure_size));
2588 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2589 le32_to_cpu(map_buff->volume_blk_size));
2590 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2591 le64_to_cpu(map_buff->volume_blk_cnt));
2592 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2593 map_buff->phys_blk_shift);
2594 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2595 map_buff->parity_rotation_shift);
2596 dev_info(&h->pdev->dev, "strip_size = %u\n",
2597 le16_to_cpu(map_buff->strip_size));
2598 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2599 le64_to_cpu(map_buff->disk_starting_blk));
2600 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2601 le64_to_cpu(map_buff->disk_blk_cnt));
2602 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2603 le16_to_cpu(map_buff->data_disks_per_row));
2604 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2605 le16_to_cpu(map_buff->metadata_disks_per_row));
2606 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2607 le16_to_cpu(map_buff->row_cnt));
2608 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2609 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002610 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002611 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002612 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2613 le16_to_cpu(map_buff->flags) &
2614 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002615 dev_info(&h->pdev->dev, "dekindex = %u\n",
2616 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002617 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2618 for (map = 0; map < map_cnt; map++) {
2619 dev_info(&h->pdev->dev, "Map%u:\n", map);
2620 row_cnt = le16_to_cpu(map_buff->row_cnt);
2621 for (row = 0; row < row_cnt; row++) {
2622 dev_info(&h->pdev->dev, " Row%u:\n", row);
2623 disks_per_row =
2624 le16_to_cpu(map_buff->data_disks_per_row);
2625 for (col = 0; col < disks_per_row; col++, dd++)
2626 dev_info(&h->pdev->dev,
2627 " D%02u: h=0x%04x xor=%u,%u\n",
2628 col, dd->ioaccel_handle,
2629 dd->xor_mult[0], dd->xor_mult[1]);
2630 disks_per_row =
2631 le16_to_cpu(map_buff->metadata_disks_per_row);
2632 for (col = 0; col < disks_per_row; col++, dd++)
2633 dev_info(&h->pdev->dev,
2634 " M%02u: h=0x%04x xor=%u,%u\n",
2635 col, dd->ioaccel_handle,
2636 dd->xor_mult[0], dd->xor_mult[1]);
2637 }
2638 }
2639}
2640#else
2641static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2642 __attribute__((unused)) int rc,
2643 __attribute__((unused)) struct raid_map_data *map_buff)
2644{
2645}
2646#endif
2647
2648static int hpsa_get_raid_map(struct ctlr_info *h,
2649 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2650{
2651 int rc = 0;
2652 struct CommandList *c;
2653 struct ErrorInfo *ei;
2654
Stephen Cameron45fcb862015-01-23 16:43:04 -06002655 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05002656
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002657 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2658 sizeof(this_device->raid_map), 0,
2659 scsi3addr, TYPE_CMD)) {
Robert Elliott2dd02d72015-04-23 09:33:43 -05002660 dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
2661 cmd_free(h, c);
2662 return -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002663 }
Webb Scales25163bd2015-04-23 09:32:00 -05002664 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2665 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2666 if (rc)
2667 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002668 ei = c->err_info;
2669 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002670 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05002671 rc = -1;
2672 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002673 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002674 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002675
2676 /* @todo in the future, dynamically allocate RAID map memory */
2677 if (le32_to_cpu(this_device->raid_map.structure_size) >
2678 sizeof(this_device->raid_map)) {
2679 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2680 rc = -1;
2681 }
2682 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
2683 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05002684out:
2685 cmd_free(h, c);
2686 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002687}
2688
Don Brace03383732015-01-23 16:43:30 -06002689static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
2690 unsigned char scsi3addr[], u16 bmic_device_index,
2691 struct bmic_identify_physical_device *buf, size_t bufsize)
2692{
2693 int rc = IO_OK;
2694 struct CommandList *c;
2695 struct ErrorInfo *ei;
2696
2697 c = cmd_alloc(h);
2698 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
2699 0, RAID_CTLR_LUNID, TYPE_CMD);
2700 if (rc)
2701 goto out;
2702
2703 c->Request.CDB[2] = bmic_device_index & 0xff;
2704 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
2705
Webb Scales25163bd2015-04-23 09:32:00 -05002706 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
2707 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06002708 ei = c->err_info;
2709 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2710 hpsa_scsi_interpret_error(h, c);
2711 rc = -1;
2712 }
2713out:
2714 cmd_free(h, c);
2715 return rc;
2716}
2717
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002718static int hpsa_vpd_page_supported(struct ctlr_info *h,
2719 unsigned char scsi3addr[], u8 page)
2720{
2721 int rc;
2722 int i;
2723 int pages;
2724 unsigned char *buf, bufsize;
2725
2726 buf = kzalloc(256, GFP_KERNEL);
2727 if (!buf)
2728 return 0;
2729
2730 /* Get the size of the page list first */
2731 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2732 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2733 buf, HPSA_VPD_HEADER_SZ);
2734 if (rc != 0)
2735 goto exit_unsupported;
2736 pages = buf[3];
2737 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
2738 bufsize = pages + HPSA_VPD_HEADER_SZ;
2739 else
2740 bufsize = 255;
2741
2742 /* Get the whole VPD page list */
2743 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2744 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2745 buf, bufsize);
2746 if (rc != 0)
2747 goto exit_unsupported;
2748
2749 pages = buf[3];
2750 for (i = 1; i <= pages; i++)
2751 if (buf[3 + i] == page)
2752 goto exit_supported;
2753exit_unsupported:
2754 kfree(buf);
2755 return 0;
2756exit_supported:
2757 kfree(buf);
2758 return 1;
2759}
2760
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002761static void hpsa_get_ioaccel_status(struct ctlr_info *h,
2762 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2763{
2764 int rc;
2765 unsigned char *buf;
2766 u8 ioaccel_status;
2767
2768 this_device->offload_config = 0;
2769 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002770 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002771
2772 buf = kzalloc(64, GFP_KERNEL);
2773 if (!buf)
2774 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002775 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
2776 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002777 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002778 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002779 if (rc != 0)
2780 goto out;
2781
2782#define IOACCEL_STATUS_BYTE 4
2783#define OFFLOAD_CONFIGURED_BIT 0x01
2784#define OFFLOAD_ENABLED_BIT 0x02
2785 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
2786 this_device->offload_config =
2787 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
2788 if (this_device->offload_config) {
2789 this_device->offload_enabled =
2790 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
2791 if (hpsa_get_raid_map(h, scsi3addr, this_device))
2792 this_device->offload_enabled = 0;
2793 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002794 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002795out:
2796 kfree(buf);
2797 return;
2798}
2799
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002800/* Get the device id from inquiry page 0x83 */
2801static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
2802 unsigned char *device_id, int buflen)
2803{
2804 int rc;
2805 unsigned char *buf;
2806
2807 if (buflen > 16)
2808 buflen = 16;
2809 buf = kzalloc(64, GFP_KERNEL);
2810 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05002811 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002812 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002813 if (rc == 0)
2814 memcpy(device_id, &buf[8], buflen);
2815 kfree(buf);
2816 return rc != 0;
2817}
2818
2819static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06002820 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002821 int extended_response)
2822{
2823 int rc = IO_OK;
2824 struct CommandList *c;
2825 unsigned char scsi3addr[8];
2826 struct ErrorInfo *ei;
2827
Stephen Cameron45fcb862015-01-23 16:43:04 -06002828 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05002829
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06002830 /* address the controller */
2831 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002832 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
2833 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
2834 rc = -1;
2835 goto out;
2836 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002837 if (extended_response)
2838 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05002839 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2840 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2841 if (rc)
2842 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002843 ei = c->err_info;
2844 if (ei->CommandStatus != 0 &&
2845 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002846 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002847 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002848 } else {
Don Brace03383732015-01-23 16:43:30 -06002849 struct ReportLUNdata *rld = buf;
2850
2851 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002852 dev_err(&h->pdev->dev,
2853 "report luns requested format %u, got %u\n",
2854 extended_response,
Don Brace03383732015-01-23 16:43:30 -06002855 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002856 rc = -1;
2857 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002858 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002859out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002860 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002861 return rc;
2862}
2863
2864static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06002865 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002866{
Don Brace03383732015-01-23 16:43:30 -06002867 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
2868 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002869}
2870
2871static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
2872 struct ReportLUNdata *buf, int bufsize)
2873{
2874 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
2875}
2876
2877static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
2878 int bus, int target, int lun)
2879{
2880 device->bus = bus;
2881 device->target = target;
2882 device->lun = lun;
2883}
2884
Stephen M. Cameron98465902014-02-21 16:25:00 -06002885/* Use VPD inquiry to get details of volume status */
2886static int hpsa_get_volume_status(struct ctlr_info *h,
2887 unsigned char scsi3addr[])
2888{
2889 int rc;
2890 int status;
2891 int size;
2892 unsigned char *buf;
2893
2894 buf = kzalloc(64, GFP_KERNEL);
2895 if (!buf)
2896 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2897
2898 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002899 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06002900 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002901
2902 /* Get the size of the VPD return buffer */
2903 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2904 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002905 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002906 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002907 size = buf[3];
2908
2909 /* Now get the whole VPD buffer */
2910 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2911 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002912 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002913 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002914 status = buf[4]; /* status byte */
2915
2916 kfree(buf);
2917 return status;
2918exit_failed:
2919 kfree(buf);
2920 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2921}
2922
2923/* Determine offline status of a volume.
2924 * Return either:
2925 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002926 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002927 * # (integer code indicating one of several NOT READY states
2928 * describing why a volume is to be kept offline)
2929 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002930static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06002931 unsigned char scsi3addr[])
2932{
2933 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002934 unsigned char *sense;
2935 u8 sense_key, asc, ascq;
2936 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05002937 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002938 u16 cmd_status;
2939 u8 scsi_status;
2940#define ASC_LUN_NOT_READY 0x04
2941#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
2942#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
2943
2944 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05002945
Stephen M. Cameron98465902014-02-21 16:25:00 -06002946 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05002947 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
2948 if (rc) {
2949 cmd_free(h, c);
2950 return 0;
2951 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06002952 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002953 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
2954 sense_len = sizeof(c->err_info->SenseInfo);
2955 else
2956 sense_len = c->err_info->SenseLen;
2957 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06002958 cmd_status = c->err_info->CommandStatus;
2959 scsi_status = c->err_info->ScsiStatus;
2960 cmd_free(h, c);
2961 /* Is the volume 'not ready'? */
2962 if (cmd_status != CMD_TARGET_STATUS ||
2963 scsi_status != SAM_STAT_CHECK_CONDITION ||
2964 sense_key != NOT_READY ||
2965 asc != ASC_LUN_NOT_READY) {
2966 return 0;
2967 }
2968
2969 /* Determine the reason for not ready state */
2970 ldstat = hpsa_get_volume_status(h, scsi3addr);
2971
2972 /* Keep volume offline in certain cases: */
2973 switch (ldstat) {
2974 case HPSA_LV_UNDERGOING_ERASE:
2975 case HPSA_LV_UNDERGOING_RPI:
2976 case HPSA_LV_PENDING_RPI:
2977 case HPSA_LV_ENCRYPTED_NO_KEY:
2978 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
2979 case HPSA_LV_UNDERGOING_ENCRYPTION:
2980 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
2981 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
2982 return ldstat;
2983 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
2984 /* If VPD status page isn't available,
2985 * use ASC/ASCQ to determine state
2986 */
2987 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
2988 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
2989 return ldstat;
2990 break;
2991 default:
2992 break;
2993 }
2994 return 0;
2995}
2996
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05002997/*
2998 * Find out if a logical device supports aborts by simply trying one.
2999 * Smart Array may claim not to support aborts on logical drives, but
3000 * if a MSA2000 * is connected, the drives on that will be presented
3001 * by the Smart Array as logical drives, and aborts may be sent to
3002 * those devices successfully. So the simplest way to find out is
3003 * to simply try an abort and see how the device responds.
3004 */
3005static int hpsa_device_supports_aborts(struct ctlr_info *h,
3006 unsigned char *scsi3addr)
3007{
3008 struct CommandList *c;
3009 struct ErrorInfo *ei;
3010 int rc = 0;
3011
3012 u64 tag = (u64) -1; /* bogus tag */
3013
3014 /* Assume that physical devices support aborts */
3015 if (!is_logical_dev_addr_mode(scsi3addr))
3016 return 1;
3017
3018 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003019
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003020 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
3021 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3022 /* no unmap needed here because no data xfer. */
3023 ei = c->err_info;
3024 switch (ei->CommandStatus) {
3025 case CMD_INVALID:
3026 rc = 0;
3027 break;
3028 case CMD_UNABORTABLE:
3029 case CMD_ABORT_FAILED:
3030 rc = 1;
3031 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003032 case CMD_TMF_STATUS:
3033 rc = hpsa_evaluate_tmf_status(h, c);
3034 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003035 default:
3036 rc = 0;
3037 break;
3038 }
3039 cmd_free(h, c);
3040 return rc;
3041}
3042
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003043static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003044 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3045 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003046{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003047
3048#define OBDR_SIG_OFFSET 43
3049#define OBDR_TAPE_SIG "$DR-10"
3050#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3051#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3052
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003053 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003054 unsigned char *obdr_sig;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003055
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003056 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003057 if (!inq_buff)
3058 goto bail_out;
3059
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003060 /* Do an inquiry to the device to see what it is. */
3061 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3062 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
3063 /* Inquiry failed (msg printed already) */
3064 dev_err(&h->pdev->dev,
3065 "hpsa_update_device_info: inquiry failed\n");
3066 goto bail_out;
3067 }
3068
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003069 this_device->devtype = (inq_buff[0] & 0x1f);
3070 memcpy(this_device->scsi3addr, scsi3addr, 8);
3071 memcpy(this_device->vendor, &inq_buff[8],
3072 sizeof(this_device->vendor));
3073 memcpy(this_device->model, &inq_buff[16],
3074 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003075 memset(this_device->device_id, 0,
3076 sizeof(this_device->device_id));
3077 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
3078 sizeof(this_device->device_id));
3079
3080 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003081 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003082 int volume_offline;
3083
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003084 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003085 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3086 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003087 volume_offline = hpsa_volume_offline(h, scsi3addr);
3088 if (volume_offline < 0 || volume_offline > 0xff)
3089 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3090 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003091 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003092 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003093 this_device->offload_config = 0;
3094 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003095 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003096 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003097 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003098 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003099 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003100
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003101 if (is_OBDR_device) {
3102 /* See if this is a One-Button-Disaster-Recovery device
3103 * by looking for "$DR-10" at offset 43 in inquiry data.
3104 */
3105 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3106 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3107 strncmp(obdr_sig, OBDR_TAPE_SIG,
3108 OBDR_SIG_LEN) == 0);
3109 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003110 kfree(inq_buff);
3111 return 0;
3112
3113bail_out:
3114 kfree(inq_buff);
3115 return 1;
3116}
3117
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003118static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3119 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3120{
3121 unsigned long flags;
3122 int rc, entry;
3123 /*
3124 * See if this device supports aborts. If we already know
3125 * the device, we already know if it supports aborts, otherwise
3126 * we have to find out if it supports aborts by trying one.
3127 */
3128 spin_lock_irqsave(&h->devlock, flags);
3129 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3130 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3131 entry >= 0 && entry < h->ndevices) {
3132 dev->supports_aborts = h->dev[entry]->supports_aborts;
3133 spin_unlock_irqrestore(&h->devlock, flags);
3134 } else {
3135 spin_unlock_irqrestore(&h->devlock, flags);
3136 dev->supports_aborts =
3137 hpsa_device_supports_aborts(h, scsi3addr);
3138 if (dev->supports_aborts < 0)
3139 dev->supports_aborts = 0;
3140 }
3141}
3142
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003143static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003144 "MSA2012",
3145 "MSA2024",
3146 "MSA2312",
3147 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05003148 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05003149 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003150 NULL,
3151};
3152
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003153static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003154{
3155 int i;
3156
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003157 for (i = 0; ext_target_model[i]; i++)
3158 if (strncmp(device->model, ext_target_model[i],
3159 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003160 return 1;
3161 return 0;
3162}
3163
3164/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003165 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003166 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
3167 * Logical drive target and lun are assigned at this time, but
3168 * physical device lun and target assignment are deferred (assigned
3169 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
3170 */
3171static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003172 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003173{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003174 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003175
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003176 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3177 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003178 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003179 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003180 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003181 /* defer target, lun assignment for physical devices */
3182 hpsa_set_bus_target_lun(device, 2, -1, -1);
3183 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003184 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003185 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003186 if (is_ext_target(h, device)) {
3187 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003188 * and match target/lun numbers box
3189 * reports, other smart array, bus 0, target 0, match lunid
3190 */
3191 hpsa_set_bus_target_lun(device,
3192 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
3193 return;
3194 }
3195 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003196}
3197
3198/*
3199 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003200 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003201 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
3202 * it for some reason. *tmpdevice is the target we're adding,
3203 * this_device is a pointer into the current element of currentsd[]
3204 * that we're building up in update_scsi_devices(), below.
3205 * lunzerobits is a bitmap that tracks which targets already have a
3206 * lun 0 assigned.
3207 * Returns 1 if an enclosure was added, 0 if not.
3208 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003209static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003210 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003211 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003212 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003213{
3214 unsigned char scsi3addr[8];
3215
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003216 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003217 return 0; /* There is already a lun 0 on this target. */
3218
3219 if (!is_logical_dev_addr_mode(lunaddrbytes))
3220 return 0; /* It's the logical targets that may lack lun 0. */
3221
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003222 if (!is_ext_target(h, tmpdevice))
3223 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003224
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003225 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003226 return 0;
3227
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06003228 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003229 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003230 if (is_hba_lunid(scsi3addr))
3231 return 0; /* Don't add the RAID controller here. */
3232
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003233 if (is_scsi_rev_5(h))
3234 return 0; /* p1210m doesn't need to do this. */
3235
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003236 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06003237 dev_warn(&h->pdev->dev, "Maximum number of external "
3238 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003239 "configuration.");
3240 return 0;
3241 }
3242
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003243 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003244 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003245 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003246 hpsa_set_bus_target_lun(this_device,
3247 tmpdevice->bus, tmpdevice->target, 0);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003248 hpsa_update_device_supports_aborts(h, this_device, scsi3addr);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003249 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003250 return 1;
3251}
3252
3253/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003254 * Get address of physical disk used for an ioaccel2 mode command:
3255 * 1. Extract ioaccel2 handle from the command.
3256 * 2. Find a matching ioaccel2 handle from list of physical disks.
3257 * 3. Return:
3258 * 1 and set scsi3addr to address of matching physical
3259 * 0 if no matching physical disk was found.
3260 */
3261static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3262 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3263{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003264 struct io_accel2_cmd *c2 =
3265 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3266 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003267 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003268
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003269 spin_lock_irqsave(&h->devlock, flags);
3270 for (i = 0; i < h->ndevices; i++)
3271 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3272 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3273 sizeof(h->dev[i]->scsi3addr));
3274 spin_unlock_irqrestore(&h->devlock, flags);
3275 return 1;
3276 }
3277 spin_unlock_irqrestore(&h->devlock, flags);
3278 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003279}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003280
Scott Teel54b6e9e2014-02-18 13:56:45 -06003281/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003282 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
3283 * logdev. The number of luns in physdev and logdev are returned in
3284 * *nphysicals and *nlogicals, respectively.
3285 * Returns 0 on success, -1 otherwise.
3286 */
3287static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003288 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003289 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003290{
Don Brace03383732015-01-23 16:43:30 -06003291 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003292 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3293 return -1;
3294 }
Don Brace03383732015-01-23 16:43:30 -06003295 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003296 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06003297 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
3298 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003299 *nphysicals = HPSA_MAX_PHYS_LUN;
3300 }
Don Brace03383732015-01-23 16:43:30 -06003301 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003302 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3303 return -1;
3304 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06003305 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003306 /* Reject Logicals in excess of our max capability. */
3307 if (*nlogicals > HPSA_MAX_LUN) {
3308 dev_warn(&h->pdev->dev,
3309 "maximum logical LUNs (%d) exceeded. "
3310 "%d LUNs ignored.\n", HPSA_MAX_LUN,
3311 *nlogicals - HPSA_MAX_LUN);
3312 *nlogicals = HPSA_MAX_LUN;
3313 }
3314 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3315 dev_warn(&h->pdev->dev,
3316 "maximum logical + physical LUNs (%d) exceeded. "
3317 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3318 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3319 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3320 }
3321 return 0;
3322}
3323
Don Brace42a91642014-11-14 17:26:27 -06003324static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
3325 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003326 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003327 struct ReportLUNdata *logdev_list)
3328{
3329 /* Helper function, figure out where the LUN ID info is coming from
3330 * given index i, lists of physical and logical devices, where in
3331 * the list the raid controller is supposed to appear (first or last)
3332 */
3333
3334 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3335 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3336
3337 if (i == raid_ctlr_position)
3338 return RAID_CTLR_LUNID;
3339
3340 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05003341 return &physdev_list->LUN[i -
3342 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003343
3344 if (i < last_device)
3345 return &logdev_list->LUN[i - nphysicals -
3346 (raid_ctlr_position == 0)][0];
3347 BUG();
3348 return NULL;
3349}
3350
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003351static int hpsa_hba_mode_enabled(struct ctlr_info *h)
3352{
3353 int rc;
Joe Handzik6e8e8082014-05-15 15:44:42 -05003354 int hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003355 struct bmic_controller_parameters *ctlr_params;
3356 ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters),
3357 GFP_KERNEL);
3358
3359 if (!ctlr_params)
Joe Handzik96444fb2014-05-15 15:44:47 -05003360 return -ENOMEM;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003361 rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params,
3362 sizeof(struct bmic_controller_parameters));
Joe Handzik96444fb2014-05-15 15:44:47 -05003363 if (rc) {
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003364 kfree(ctlr_params);
Joe Handzik96444fb2014-05-15 15:44:47 -05003365 return rc;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003366 }
Joe Handzik6e8e8082014-05-15 15:44:42 -05003367
3368 hba_mode_enabled =
3369 ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0);
3370 kfree(ctlr_params);
3371 return hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003372}
3373
Don Brace03383732015-01-23 16:43:30 -06003374/* get physical drive ioaccel handle and queue depth */
3375static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3376 struct hpsa_scsi_dev_t *dev,
3377 u8 *lunaddrbytes,
3378 struct bmic_identify_physical_device *id_phys)
3379{
3380 int rc;
3381 struct ext_report_lun_entry *rle =
3382 (struct ext_report_lun_entry *) lunaddrbytes;
3383
3384 dev->ioaccel_handle = rle->ioaccel_handle;
Joe Handzika3144e02015-04-23 09:32:59 -05003385 if (PHYS_IOACCEL(lunaddrbytes) && dev->ioaccel_handle)
3386 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06003387 memset(id_phys, 0, sizeof(*id_phys));
3388 rc = hpsa_bmic_id_physical_device(h, lunaddrbytes,
3389 GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys,
3390 sizeof(*id_phys));
3391 if (!rc)
3392 /* Reserve space for FW operations */
3393#define DRIVE_CMDS_RESERVED_FOR_FW 2
3394#define DRIVE_QUEUE_DEPTH 7
3395 dev->queue_depth =
3396 le16_to_cpu(id_phys->current_queue_depth_limit) -
3397 DRIVE_CMDS_RESERVED_FOR_FW;
3398 else
3399 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
3400 atomic_set(&dev->ioaccel_cmds_out, 0);
3401}
3402
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003403static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
3404{
3405 /* the idea here is we could get notified
3406 * that some devices have changed, so we do a report
3407 * physical luns and report logical luns cmd, and adjust
3408 * our list of devices accordingly.
3409 *
3410 * The scsi3addr's of devices won't change so long as the
3411 * adapter is not reset. That means we can rescan and
3412 * tell which devices we already know about, vs. new
3413 * devices, vs. disappearing devices.
3414 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003415 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003416 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003417 struct bmic_identify_physical_device *id_phys = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003418 u32 nphysicals = 0;
3419 u32 nlogicals = 0;
3420 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003421 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3422 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003423 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003424 int raid_ctlr_position;
Joe Handzik2bbf5c72014-05-21 11:16:01 -05003425 int rescan_hba_mode;
Scott Teelaca4a522012-01-19 14:01:19 -06003426 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003427
Scott Teelcfe5bad2011-10-26 16:21:07 -05003428 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003429 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3430 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003431 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003432 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003433
Don Brace03383732015-01-23 16:43:30 -06003434 if (!currentsd || !physdev_list || !logdev_list ||
3435 !tmpdevice || !id_phys) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003436 dev_err(&h->pdev->dev, "out of memory\n");
3437 goto out;
3438 }
3439 memset(lunzerobits, 0, sizeof(lunzerobits));
3440
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003441 rescan_hba_mode = hpsa_hba_mode_enabled(h);
Joe Handzik96444fb2014-05-15 15:44:47 -05003442 if (rescan_hba_mode < 0)
3443 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003444
3445 if (!h->hba_mode_enabled && rescan_hba_mode)
3446 dev_warn(&h->pdev->dev, "HBA mode enabled\n");
3447 else if (h->hba_mode_enabled && !rescan_hba_mode)
3448 dev_warn(&h->pdev->dev, "HBA mode disabled\n");
3449
3450 h->hba_mode_enabled = rescan_hba_mode;
3451
Don Brace03383732015-01-23 16:43:30 -06003452 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
3453 logdev_list, &nlogicals))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003454 goto out;
3455
Scott Teelaca4a522012-01-19 14:01:19 -06003456 /* We might see up to the maximum number of logical and physical disks
3457 * plus external target devices, and a device for the local RAID
3458 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003459 */
Scott Teelaca4a522012-01-19 14:01:19 -06003460 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003461
3462 /* Allocate the per device structures */
3463 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003464 if (i >= HPSA_MAX_DEVICES) {
3465 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3466 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3467 ndevs_to_allocate - HPSA_MAX_DEVICES);
3468 break;
3469 }
3470
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003471 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3472 if (!currentsd[i]) {
3473 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3474 __FILE__, __LINE__);
3475 goto out;
3476 }
3477 ndev_allocated++;
3478 }
3479
Stephen M. Cameron86452912014-05-29 10:53:49 -05003480 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003481 raid_ctlr_position = 0;
3482 else
3483 raid_ctlr_position = nphysicals + nlogicals;
3484
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003485 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003486 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003487 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003488 u8 *lunaddrbytes, is_OBDR = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003489
3490 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003491 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3492 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003493
3494 /* skip masked non-disk devices */
3495 if (MASKED_DEVICE(lunaddrbytes))
3496 if (i < nphysicals + (raid_ctlr_position == 0) &&
3497 NON_DISK_PHYS_DEV(lunaddrbytes))
3498 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003499
3500 /* Get device type, vendor, model, device id */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003501 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3502 &is_OBDR))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003503 continue; /* skip it if we can't talk to it. */
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003504 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003505 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003506 this_device = currentsd[ncurrent];
3507
3508 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003509 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003510 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3511 * is nonetheless an enclosure device there. We have to
3512 * present that otherwise linux won't find anything if
3513 * there is no lun 0.
3514 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003515 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003516 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003517 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003518 ncurrent++;
3519 this_device = currentsd[ncurrent];
3520 }
3521
3522 *this_device = *tmpdevice;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003523
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003524 /* do not expose masked devices */
3525 if (MASKED_DEVICE(lunaddrbytes) &&
3526 i < nphysicals + (raid_ctlr_position == 0)) {
3527 if (h->hba_mode_enabled)
3528 dev_warn(&h->pdev->dev,
3529 "Masked physical device detected\n");
3530 this_device->expose_state = HPSA_DO_NOT_EXPOSE;
3531 } else {
3532 this_device->expose_state =
3533 HPSA_SG_ATTACH | HPSA_ULD_ATTACH;
3534 }
3535
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003536 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003537 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003538 /* We don't *really* support actual CD-ROM devices,
3539 * just "One Button Disaster Recovery" tape drive
3540 * which temporarily pretends to be a CD-ROM drive.
3541 * So we check that the device is really an OBDR tape
3542 * device by checking for "$DR-10" in bytes 43-48 of
3543 * the inquiry data.
3544 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003545 if (is_OBDR)
3546 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003547 break;
3548 case TYPE_DISK:
Joe Handzikecf418d12015-04-23 09:33:04 -05003549 if (i >= nphysicals) {
3550 ncurrent++;
3551 break;
3552 }
3553
3554 if (h->hba_mode_enabled)
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003555 /* never use raid mapper in HBA mode */
3556 this_device->offload_enabled = 0;
Joe Handzikecf418d12015-04-23 09:33:04 -05003557 else if (!(h->transMethod & CFGTBL_Trans_io_accel1 ||
3558 h->transMethod & CFGTBL_Trans_io_accel2))
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003559 break;
Joe Handzikecf418d12015-04-23 09:33:04 -05003560
3561 hpsa_get_ioaccel_drive_info(h, this_device,
3562 lunaddrbytes, id_phys);
3563 atomic_set(&this_device->ioaccel_cmds_out, 0);
3564 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003565 break;
3566 case TYPE_TAPE:
3567 case TYPE_MEDIUM_CHANGER:
3568 ncurrent++;
3569 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003570 case TYPE_ENCLOSURE:
3571 if (h->hba_mode_enabled)
3572 ncurrent++;
3573 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003574 case TYPE_RAID:
3575 /* Only present the Smartarray HBA as a RAID controller.
3576 * If it's a RAID controller other than the HBA itself
3577 * (an external RAID controller, MSA500 or similar)
3578 * don't present it.
3579 */
3580 if (!is_hba_lunid(lunaddrbytes))
3581 break;
3582 ncurrent++;
3583 break;
3584 default:
3585 break;
3586 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003587 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003588 break;
3589 }
3590 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3591out:
3592 kfree(tmpdevice);
3593 for (i = 0; i < ndev_allocated; i++)
3594 kfree(currentsd[i]);
3595 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003596 kfree(physdev_list);
3597 kfree(logdev_list);
Don Brace03383732015-01-23 16:43:30 -06003598 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003599}
3600
Webb Scalesec5cbf02015-01-23 16:44:45 -06003601static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3602 struct scatterlist *sg)
3603{
3604 u64 addr64 = (u64) sg_dma_address(sg);
3605 unsigned int len = sg_dma_len(sg);
3606
3607 desc->Addr = cpu_to_le64(addr64);
3608 desc->Len = cpu_to_le32(len);
3609 desc->Ext = 0;
3610}
3611
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003612/*
3613 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003614 * dma mapping and fills in the scatter gather entries of the
3615 * hpsa command, cp.
3616 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003617static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003618 struct CommandList *cp,
3619 struct scsi_cmnd *cmd)
3620{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003621 struct scatterlist *sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003622 int use_sg, i, sg_index, chained;
3623 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003624
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003625 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003626
3627 use_sg = scsi_dma_map(cmd);
3628 if (use_sg < 0)
3629 return use_sg;
3630
3631 if (!use_sg)
3632 goto sglist_finished;
3633
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003634 curr_sg = cp->SG;
3635 chained = 0;
3636 sg_index = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003637 scsi_for_each_sg(cmd, sg, use_sg, i) {
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003638 if (i == h->max_cmd_sg_entries - 1 &&
3639 use_sg > h->max_cmd_sg_entries) {
3640 chained = 1;
3641 curr_sg = h->cmd_sg_list[cp->cmdindex];
3642 sg_index = 0;
3643 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003644 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003645 curr_sg++;
3646 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003647
3648 /* Back the pointer up to the last entry and mark it as "last". */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003649 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003650
3651 if (use_sg + chained > h->maxSG)
3652 h->maxSG = use_sg + chained;
3653
3654 if (chained) {
3655 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003656 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06003657 if (hpsa_map_sg_chain_block(h, cp)) {
3658 scsi_dma_unmap(cmd);
3659 return -1;
3660 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003661 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003662 }
3663
3664sglist_finished:
3665
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003666 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003667 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003668 return 0;
3669}
3670
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003671#define IO_ACCEL_INELIGIBLE (1)
3672static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
3673{
3674 int is_write = 0;
3675 u32 block;
3676 u32 block_cnt;
3677
3678 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
3679 switch (cdb[0]) {
3680 case WRITE_6:
3681 case WRITE_12:
3682 is_write = 1;
3683 case READ_6:
3684 case READ_12:
3685 if (*cdb_len == 6) {
3686 block = (((u32) cdb[2]) << 8) | cdb[3];
3687 block_cnt = cdb[4];
3688 } else {
3689 BUG_ON(*cdb_len != 12);
3690 block = (((u32) cdb[2]) << 24) |
3691 (((u32) cdb[3]) << 16) |
3692 (((u32) cdb[4]) << 8) |
3693 cdb[5];
3694 block_cnt =
3695 (((u32) cdb[6]) << 24) |
3696 (((u32) cdb[7]) << 16) |
3697 (((u32) cdb[8]) << 8) |
3698 cdb[9];
3699 }
3700 if (block_cnt > 0xffff)
3701 return IO_ACCEL_INELIGIBLE;
3702
3703 cdb[0] = is_write ? WRITE_10 : READ_10;
3704 cdb[1] = 0;
3705 cdb[2] = (u8) (block >> 24);
3706 cdb[3] = (u8) (block >> 16);
3707 cdb[4] = (u8) (block >> 8);
3708 cdb[5] = (u8) (block);
3709 cdb[6] = 0;
3710 cdb[7] = (u8) (block_cnt >> 8);
3711 cdb[8] = (u8) (block_cnt);
3712 cdb[9] = 0;
3713 *cdb_len = 10;
3714 break;
3715 }
3716 return 0;
3717}
3718
Scott Teelc3497752014-02-18 13:56:34 -06003719static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003720 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003721 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06003722{
3723 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06003724 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
3725 unsigned int len;
3726 unsigned int total_len = 0;
3727 struct scatterlist *sg;
3728 u64 addr64;
3729 int use_sg, i;
3730 struct SGDescriptor *curr_sg;
3731 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
3732
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003733 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06003734 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3735 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003736 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003737 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003738
Matt Gatese1f7de02014-02-18 13:55:17 -06003739 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
3740
Don Brace03383732015-01-23 16:43:30 -06003741 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3742 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003743 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003744 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003745
Matt Gatese1f7de02014-02-18 13:55:17 -06003746 c->cmd_type = CMD_IOACCEL1;
3747
3748 /* Adjust the DMA address to point to the accelerated command buffer */
3749 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
3750 (c->cmdindex * sizeof(*cp));
3751 BUG_ON(c->busaddr & 0x0000007F);
3752
3753 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003754 if (use_sg < 0) {
3755 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06003756 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003757 }
Matt Gatese1f7de02014-02-18 13:55:17 -06003758
3759 if (use_sg) {
3760 curr_sg = cp->SG;
3761 scsi_for_each_sg(cmd, sg, use_sg, i) {
3762 addr64 = (u64) sg_dma_address(sg);
3763 len = sg_dma_len(sg);
3764 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003765 curr_sg->Addr = cpu_to_le64(addr64);
3766 curr_sg->Len = cpu_to_le32(len);
3767 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06003768 curr_sg++;
3769 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003770 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06003771
3772 switch (cmd->sc_data_direction) {
3773 case DMA_TO_DEVICE:
3774 control |= IOACCEL1_CONTROL_DATA_OUT;
3775 break;
3776 case DMA_FROM_DEVICE:
3777 control |= IOACCEL1_CONTROL_DATA_IN;
3778 break;
3779 case DMA_NONE:
3780 control |= IOACCEL1_CONTROL_NODATAXFER;
3781 break;
3782 default:
3783 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3784 cmd->sc_data_direction);
3785 BUG();
3786 break;
3787 }
3788 } else {
3789 control |= IOACCEL1_CONTROL_NODATAXFER;
3790 }
3791
Scott Teelc3497752014-02-18 13:56:34 -06003792 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06003793 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06003794 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
3795 cp->transfer_len = cpu_to_le32(total_len);
3796 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
3797 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
3798 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003799 memcpy(cp->CDB, cdb, cdb_len);
3800 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06003801 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003802 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06003803 return 0;
3804}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003805
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003806/*
3807 * Queue a command directly to a device behind the controller using the
3808 * I/O accelerator path.
3809 */
3810static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
3811 struct CommandList *c)
3812{
3813 struct scsi_cmnd *cmd = c->scsi_cmd;
3814 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3815
Don Brace03383732015-01-23 16:43:30 -06003816 c->phys_disk = dev;
3817
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003818 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003819 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003820}
3821
Scott Teeldd0e19f2014-02-18 13:57:31 -06003822/*
3823 * Set encryption parameters for the ioaccel2 request
3824 */
3825static void set_encrypt_ioaccel2(struct ctlr_info *h,
3826 struct CommandList *c, struct io_accel2_cmd *cp)
3827{
3828 struct scsi_cmnd *cmd = c->scsi_cmd;
3829 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3830 struct raid_map_data *map = &dev->raid_map;
3831 u64 first_block;
3832
Scott Teeldd0e19f2014-02-18 13:57:31 -06003833 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06003834 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06003835 return;
3836 /* Set the data encryption key index. */
3837 cp->dekindex = map->dekindex;
3838
3839 /* Set the encryption enable flag, encoded into direction field. */
3840 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
3841
3842 /* Set encryption tweak values based on logical block address
3843 * If block size is 512, tweak value is LBA.
3844 * For other block sizes, tweak is (LBA * block size)/ 512)
3845 */
3846 switch (cmd->cmnd[0]) {
3847 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
3848 case WRITE_6:
3849 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06003850 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003851 break;
3852 case WRITE_10:
3853 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003854 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
3855 case WRITE_12:
3856 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06003857 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003858 break;
3859 case WRITE_16:
3860 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06003861 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003862 break;
3863 default:
3864 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06003865 "ERROR: %s: size (0x%x) not supported for encryption\n",
3866 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003867 BUG();
3868 break;
3869 }
Don Brace2b08b3e2015-01-23 16:41:09 -06003870
3871 if (le32_to_cpu(map->volume_blk_size) != 512)
3872 first_block = first_block *
3873 le32_to_cpu(map->volume_blk_size)/512;
3874
3875 cp->tweak_lower = cpu_to_le32(first_block);
3876 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003877}
3878
Scott Teelc3497752014-02-18 13:56:34 -06003879static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
3880 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003881 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003882{
3883 struct scsi_cmnd *cmd = c->scsi_cmd;
3884 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
3885 struct ioaccel2_sg_element *curr_sg;
3886 int use_sg, i;
3887 struct scatterlist *sg;
3888 u64 addr64;
3889 u32 len;
3890 u32 total_len = 0;
3891
Webb Scalesd9a729f2015-04-23 09:33:27 -05003892 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06003893
Don Brace03383732015-01-23 16:43:30 -06003894 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3895 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003896 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003897 }
3898
Scott Teelc3497752014-02-18 13:56:34 -06003899 c->cmd_type = CMD_IOACCEL2;
3900 /* Adjust the DMA address to point to the accelerated command buffer */
3901 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
3902 (c->cmdindex * sizeof(*cp));
3903 BUG_ON(c->busaddr & 0x0000007F);
3904
3905 memset(cp, 0, sizeof(*cp));
3906 cp->IU_type = IOACCEL2_IU_TYPE;
3907
3908 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003909 if (use_sg < 0) {
3910 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003911 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003912 }
Scott Teelc3497752014-02-18 13:56:34 -06003913
3914 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06003915 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05003916 if (use_sg > h->ioaccel_maxsg) {
3917 addr64 = le64_to_cpu(
3918 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
3919 curr_sg->address = cpu_to_le64(addr64);
3920 curr_sg->length = 0;
3921 curr_sg->reserved[0] = 0;
3922 curr_sg->reserved[1] = 0;
3923 curr_sg->reserved[2] = 0;
3924 curr_sg->chain_indicator = 0x80;
3925
3926 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
3927 }
Scott Teelc3497752014-02-18 13:56:34 -06003928 scsi_for_each_sg(cmd, sg, use_sg, i) {
3929 addr64 = (u64) sg_dma_address(sg);
3930 len = sg_dma_len(sg);
3931 total_len += len;
3932 curr_sg->address = cpu_to_le64(addr64);
3933 curr_sg->length = cpu_to_le32(len);
3934 curr_sg->reserved[0] = 0;
3935 curr_sg->reserved[1] = 0;
3936 curr_sg->reserved[2] = 0;
3937 curr_sg->chain_indicator = 0;
3938 curr_sg++;
3939 }
3940
3941 switch (cmd->sc_data_direction) {
3942 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003943 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3944 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06003945 break;
3946 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003947 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3948 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06003949 break;
3950 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003951 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3952 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003953 break;
3954 default:
3955 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3956 cmd->sc_data_direction);
3957 BUG();
3958 break;
3959 }
3960 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06003961 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3962 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003963 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06003964
3965 /* Set encryption parameters, if necessary */
3966 set_encrypt_ioaccel2(h, c, cp);
3967
Don Brace2b08b3e2015-01-23 16:41:09 -06003968 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06003969 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06003970 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06003971
Scott Teelc3497752014-02-18 13:56:34 -06003972 cp->data_len = cpu_to_le32(total_len);
3973 cp->err_ptr = cpu_to_le64(c->busaddr +
3974 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003975 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06003976
Webb Scalesd9a729f2015-04-23 09:33:27 -05003977 /* fill in sg elements */
3978 if (use_sg > h->ioaccel_maxsg) {
3979 cp->sg_count = 1;
3980 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
3981 atomic_dec(&phys_disk->ioaccel_cmds_out);
3982 scsi_dma_unmap(cmd);
3983 return -1;
3984 }
3985 } else
3986 cp->sg_count = (u8) use_sg;
3987
Scott Teelc3497752014-02-18 13:56:34 -06003988 enqueue_cmd_and_start_io(h, c);
3989 return 0;
3990}
3991
3992/*
3993 * Queue a command to the correct I/O accelerator path.
3994 */
3995static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
3996 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003997 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003998{
Don Brace03383732015-01-23 16:43:30 -06003999 /* Try to honor the device's queue depth */
4000 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
4001 phys_disk->queue_depth) {
4002 atomic_dec(&phys_disk->ioaccel_cmds_out);
4003 return IO_ACCEL_INELIGIBLE;
4004 }
Scott Teelc3497752014-02-18 13:56:34 -06004005 if (h->transMethod & CFGTBL_Trans_io_accel1)
4006 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004007 cdb, cdb_len, scsi3addr,
4008 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004009 else
4010 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004011 cdb, cdb_len, scsi3addr,
4012 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004013}
4014
Scott Teel6b80b182014-02-18 13:56:55 -06004015static void raid_map_helper(struct raid_map_data *map,
4016 int offload_to_mirror, u32 *map_index, u32 *current_group)
4017{
4018 if (offload_to_mirror == 0) {
4019 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06004020 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004021 return;
4022 }
4023 do {
4024 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06004025 *current_group = *map_index /
4026 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004027 if (offload_to_mirror == *current_group)
4028 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06004029 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06004030 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004031 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004032 (*current_group)++;
4033 } else {
4034 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004035 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004036 *current_group = 0;
4037 }
4038 } while (offload_to_mirror != *current_group);
4039}
4040
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004041/*
4042 * Attempt to perform offload RAID mapping for a logical volume I/O.
4043 */
4044static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4045 struct CommandList *c)
4046{
4047 struct scsi_cmnd *cmd = c->scsi_cmd;
4048 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4049 struct raid_map_data *map = &dev->raid_map;
4050 struct raid_map_disk_data *dd = &map->data[0];
4051 int is_write = 0;
4052 u32 map_index;
4053 u64 first_block, last_block;
4054 u32 block_cnt;
4055 u32 blocks_per_row;
4056 u64 first_row, last_row;
4057 u32 first_row_offset, last_row_offset;
4058 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06004059 u64 r0_first_row, r0_last_row;
4060 u32 r5or6_blocks_per_row;
4061 u64 r5or6_first_row, r5or6_last_row;
4062 u32 r5or6_first_row_offset, r5or6_last_row_offset;
4063 u32 r5or6_first_column, r5or6_last_column;
4064 u32 total_disks_per_row;
4065 u32 stripesize;
4066 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004067 u32 map_row;
4068 u32 disk_handle;
4069 u64 disk_block;
4070 u32 disk_block_cnt;
4071 u8 cdb[16];
4072 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06004073 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004074#if BITS_PER_LONG == 32
4075 u64 tmpdiv;
4076#endif
Scott Teel6b80b182014-02-18 13:56:55 -06004077 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004078
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004079 /* check for valid opcode, get LBA and block count */
4080 switch (cmd->cmnd[0]) {
4081 case WRITE_6:
4082 is_write = 1;
4083 case READ_6:
4084 first_block =
4085 (((u64) cmd->cmnd[2]) << 8) |
4086 cmd->cmnd[3];
4087 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05004088 if (block_cnt == 0)
4089 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004090 break;
4091 case WRITE_10:
4092 is_write = 1;
4093 case READ_10:
4094 first_block =
4095 (((u64) cmd->cmnd[2]) << 24) |
4096 (((u64) cmd->cmnd[3]) << 16) |
4097 (((u64) cmd->cmnd[4]) << 8) |
4098 cmd->cmnd[5];
4099 block_cnt =
4100 (((u32) cmd->cmnd[7]) << 8) |
4101 cmd->cmnd[8];
4102 break;
4103 case WRITE_12:
4104 is_write = 1;
4105 case READ_12:
4106 first_block =
4107 (((u64) cmd->cmnd[2]) << 24) |
4108 (((u64) cmd->cmnd[3]) << 16) |
4109 (((u64) cmd->cmnd[4]) << 8) |
4110 cmd->cmnd[5];
4111 block_cnt =
4112 (((u32) cmd->cmnd[6]) << 24) |
4113 (((u32) cmd->cmnd[7]) << 16) |
4114 (((u32) cmd->cmnd[8]) << 8) |
4115 cmd->cmnd[9];
4116 break;
4117 case WRITE_16:
4118 is_write = 1;
4119 case READ_16:
4120 first_block =
4121 (((u64) cmd->cmnd[2]) << 56) |
4122 (((u64) cmd->cmnd[3]) << 48) |
4123 (((u64) cmd->cmnd[4]) << 40) |
4124 (((u64) cmd->cmnd[5]) << 32) |
4125 (((u64) cmd->cmnd[6]) << 24) |
4126 (((u64) cmd->cmnd[7]) << 16) |
4127 (((u64) cmd->cmnd[8]) << 8) |
4128 cmd->cmnd[9];
4129 block_cnt =
4130 (((u32) cmd->cmnd[10]) << 24) |
4131 (((u32) cmd->cmnd[11]) << 16) |
4132 (((u32) cmd->cmnd[12]) << 8) |
4133 cmd->cmnd[13];
4134 break;
4135 default:
4136 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4137 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004138 last_block = first_block + block_cnt - 1;
4139
4140 /* check for write to non-RAID-0 */
4141 if (is_write && dev->raid_level != 0)
4142 return IO_ACCEL_INELIGIBLE;
4143
4144 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06004145 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
4146 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004147 return IO_ACCEL_INELIGIBLE;
4148
4149 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06004150 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
4151 le16_to_cpu(map->strip_size);
4152 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004153#if BITS_PER_LONG == 32
4154 tmpdiv = first_block;
4155 (void) do_div(tmpdiv, blocks_per_row);
4156 first_row = tmpdiv;
4157 tmpdiv = last_block;
4158 (void) do_div(tmpdiv, blocks_per_row);
4159 last_row = tmpdiv;
4160 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4161 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4162 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004163 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004164 first_column = tmpdiv;
4165 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004166 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004167 last_column = tmpdiv;
4168#else
4169 first_row = first_block / blocks_per_row;
4170 last_row = last_block / blocks_per_row;
4171 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4172 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06004173 first_column = first_row_offset / strip_size;
4174 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004175#endif
4176
4177 /* if this isn't a single row/column then give to the controller */
4178 if ((first_row != last_row) || (first_column != last_column))
4179 return IO_ACCEL_INELIGIBLE;
4180
4181 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06004182 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
4183 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004184 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004185 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004186 map_index = (map_row * total_disks_per_row) + first_column;
4187
4188 switch (dev->raid_level) {
4189 case HPSA_RAID_0:
4190 break; /* nothing special to do */
4191 case HPSA_RAID_1:
4192 /* Handles load balance across RAID 1 members.
4193 * (2-drive R1 and R10 with even # of drives.)
4194 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004195 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004196 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004197 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06004198 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004199 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06004200 break;
4201 case HPSA_RAID_ADM:
4202 /* Handles N-way mirrors (R1-ADM)
4203 * and R10 with # of drives divisible by 3.)
4204 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004205 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06004206
4207 offload_to_mirror = dev->offload_to_mirror;
4208 raid_map_helper(map, offload_to_mirror,
4209 &map_index, &current_group);
4210 /* set mirror group to use next time */
4211 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06004212 (offload_to_mirror >=
4213 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004214 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06004215 dev->offload_to_mirror = offload_to_mirror;
4216 /* Avoid direct use of dev->offload_to_mirror within this
4217 * function since multiple threads might simultaneously
4218 * increment it beyond the range of dev->layout_map_count -1.
4219 */
4220 break;
4221 case HPSA_RAID_5:
4222 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004223 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004224 break;
4225
4226 /* Verify first and last block are in same RAID group */
4227 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06004228 le16_to_cpu(map->strip_size) *
4229 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004230 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06004231 stripesize = r5or6_blocks_per_row *
4232 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06004233#if BITS_PER_LONG == 32
4234 tmpdiv = first_block;
4235 first_group = do_div(tmpdiv, stripesize);
4236 tmpdiv = first_group;
4237 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4238 first_group = tmpdiv;
4239 tmpdiv = last_block;
4240 last_group = do_div(tmpdiv, stripesize);
4241 tmpdiv = last_group;
4242 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4243 last_group = tmpdiv;
4244#else
4245 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
4246 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06004247#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05004248 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06004249 return IO_ACCEL_INELIGIBLE;
4250
4251 /* Verify request is in a single row of RAID 5/6 */
4252#if BITS_PER_LONG == 32
4253 tmpdiv = first_block;
4254 (void) do_div(tmpdiv, stripesize);
4255 first_row = r5or6_first_row = r0_first_row = tmpdiv;
4256 tmpdiv = last_block;
4257 (void) do_div(tmpdiv, stripesize);
4258 r5or6_last_row = r0_last_row = tmpdiv;
4259#else
4260 first_row = r5or6_first_row = r0_first_row =
4261 first_block / stripesize;
4262 r5or6_last_row = r0_last_row = last_block / stripesize;
4263#endif
4264 if (r5or6_first_row != r5or6_last_row)
4265 return IO_ACCEL_INELIGIBLE;
4266
4267
4268 /* Verify request is in a single column */
4269#if BITS_PER_LONG == 32
4270 tmpdiv = first_block;
4271 first_row_offset = do_div(tmpdiv, stripesize);
4272 tmpdiv = first_row_offset;
4273 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
4274 r5or6_first_row_offset = first_row_offset;
4275 tmpdiv = last_block;
4276 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
4277 tmpdiv = r5or6_last_row_offset;
4278 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
4279 tmpdiv = r5or6_first_row_offset;
4280 (void) do_div(tmpdiv, map->strip_size);
4281 first_column = r5or6_first_column = tmpdiv;
4282 tmpdiv = r5or6_last_row_offset;
4283 (void) do_div(tmpdiv, map->strip_size);
4284 r5or6_last_column = tmpdiv;
4285#else
4286 first_row_offset = r5or6_first_row_offset =
4287 (u32)((first_block % stripesize) %
4288 r5or6_blocks_per_row);
4289
4290 r5or6_last_row_offset =
4291 (u32)((last_block % stripesize) %
4292 r5or6_blocks_per_row);
4293
4294 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004295 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004296 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004297 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004298#endif
4299 if (r5or6_first_column != r5or6_last_column)
4300 return IO_ACCEL_INELIGIBLE;
4301
4302 /* Request is eligible */
4303 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004304 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004305
4306 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06004307 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06004308 (map_row * total_disks_per_row) + first_column;
4309 break;
4310 default:
4311 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004312 }
Scott Teel6b80b182014-02-18 13:56:55 -06004313
Stephen Cameron07543e02015-01-23 16:44:14 -06004314 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
4315 return IO_ACCEL_INELIGIBLE;
4316
Don Brace03383732015-01-23 16:43:30 -06004317 c->phys_disk = dev->phys_disk[map_index];
4318
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004319 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06004320 disk_block = le64_to_cpu(map->disk_starting_blk) +
4321 first_row * le16_to_cpu(map->strip_size) +
4322 (first_row_offset - first_column *
4323 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004324 disk_block_cnt = block_cnt;
4325
4326 /* handle differing logical/physical block sizes */
4327 if (map->phys_blk_shift) {
4328 disk_block <<= map->phys_blk_shift;
4329 disk_block_cnt <<= map->phys_blk_shift;
4330 }
4331 BUG_ON(disk_block_cnt > 0xffff);
4332
4333 /* build the new CDB for the physical disk I/O */
4334 if (disk_block > 0xffffffff) {
4335 cdb[0] = is_write ? WRITE_16 : READ_16;
4336 cdb[1] = 0;
4337 cdb[2] = (u8) (disk_block >> 56);
4338 cdb[3] = (u8) (disk_block >> 48);
4339 cdb[4] = (u8) (disk_block >> 40);
4340 cdb[5] = (u8) (disk_block >> 32);
4341 cdb[6] = (u8) (disk_block >> 24);
4342 cdb[7] = (u8) (disk_block >> 16);
4343 cdb[8] = (u8) (disk_block >> 8);
4344 cdb[9] = (u8) (disk_block);
4345 cdb[10] = (u8) (disk_block_cnt >> 24);
4346 cdb[11] = (u8) (disk_block_cnt >> 16);
4347 cdb[12] = (u8) (disk_block_cnt >> 8);
4348 cdb[13] = (u8) (disk_block_cnt);
4349 cdb[14] = 0;
4350 cdb[15] = 0;
4351 cdb_len = 16;
4352 } else {
4353 cdb[0] = is_write ? WRITE_10 : READ_10;
4354 cdb[1] = 0;
4355 cdb[2] = (u8) (disk_block >> 24);
4356 cdb[3] = (u8) (disk_block >> 16);
4357 cdb[4] = (u8) (disk_block >> 8);
4358 cdb[5] = (u8) (disk_block);
4359 cdb[6] = 0;
4360 cdb[7] = (u8) (disk_block_cnt >> 8);
4361 cdb[8] = (u8) (disk_block_cnt);
4362 cdb[9] = 0;
4363 cdb_len = 10;
4364 }
4365 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004366 dev->scsi3addr,
4367 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004368}
4369
Webb Scales25163bd2015-04-23 09:32:00 -05004370/*
4371 * Submit commands down the "normal" RAID stack path
4372 * All callers to hpsa_ciss_submit must check lockup_detected
4373 * beforehand, before (opt.) and after calling cmd_alloc
4374 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06004375static int hpsa_ciss_submit(struct ctlr_info *h,
4376 struct CommandList *c, struct scsi_cmnd *cmd,
4377 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004378{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004379 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004380 c->cmd_type = CMD_SCSI;
4381 c->scsi_cmd = cmd;
4382 c->Header.ReplyQueue = 0; /* unused in simple mode */
4383 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004384 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004385
4386 /* Fill in the request block... */
4387
4388 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004389 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4390 c->Request.CDBLen = cmd->cmd_len;
4391 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004392 switch (cmd->sc_data_direction) {
4393 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004394 c->Request.type_attr_dir =
4395 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004396 break;
4397 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004398 c->Request.type_attr_dir =
4399 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004400 break;
4401 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004402 c->Request.type_attr_dir =
4403 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004404 break;
4405 case DMA_BIDIRECTIONAL:
4406 /* This can happen if a buggy application does a scsi passthru
4407 * and sets both inlen and outlen to non-zero. ( see
4408 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4409 */
4410
Stephen M. Camerona505b862014-11-14 17:27:04 -06004411 c->Request.type_attr_dir =
4412 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004413 /* This is technically wrong, and hpsa controllers should
4414 * reject it with CMD_INVALID, which is the most correct
4415 * response, but non-fibre backends appear to let it
4416 * slide by, and give the same results as if this field
4417 * were set correctly. Either way is acceptable for
4418 * our purposes here.
4419 */
4420
4421 break;
4422
4423 default:
4424 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4425 cmd->sc_data_direction);
4426 BUG();
4427 break;
4428 }
4429
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004430 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004431 cmd_free(h, c);
4432 return SCSI_MLQUEUE_HOST_BUSY;
4433 }
4434 enqueue_cmd_and_start_io(h, c);
4435 /* the cmd'll come back via intr handler in complete_scsi_command() */
4436 return 0;
4437}
4438
Stephen Cameron360c73b2015-04-23 09:32:32 -05004439static void hpsa_cmd_init(struct ctlr_info *h, int index,
4440 struct CommandList *c)
4441{
4442 dma_addr_t cmd_dma_handle, err_dma_handle;
4443
4444 /* Zero out all of commandlist except the last field, refcount */
4445 memset(c, 0, offsetof(struct CommandList, refcount));
4446 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
4447 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4448 c->err_info = h->errinfo_pool + index;
4449 memset(c->err_info, 0, sizeof(*c->err_info));
4450 err_dma_handle = h->errinfo_pool_dhandle
4451 + index * sizeof(*c->err_info);
4452 c->cmdindex = index;
4453 c->busaddr = (u32) cmd_dma_handle;
4454 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4455 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
4456 c->h = h;
4457}
4458
4459static void hpsa_preinitialize_commands(struct ctlr_info *h)
4460{
4461 int i;
4462
4463 for (i = 0; i < h->nr_cmds; i++) {
4464 struct CommandList *c = h->cmd_pool + i;
4465
4466 hpsa_cmd_init(h, i, c);
4467 atomic_set(&c->refcount, 0);
4468 }
4469}
4470
4471static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
4472 struct CommandList *c)
4473{
4474 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4475
4476 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4477 memset(c->err_info, 0, sizeof(*c->err_info));
4478 c->busaddr = (u32) cmd_dma_handle;
4479}
4480
Webb Scales592a0ad2015-04-23 09:32:48 -05004481static int hpsa_ioaccel_submit(struct ctlr_info *h,
4482 struct CommandList *c, struct scsi_cmnd *cmd,
4483 unsigned char *scsi3addr)
4484{
4485 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4486 int rc = IO_ACCEL_INELIGIBLE;
4487
4488 cmd->host_scribble = (unsigned char *) c;
4489
4490 if (dev->offload_enabled) {
4491 hpsa_cmd_init(h, c->cmdindex, c);
4492 c->cmd_type = CMD_SCSI;
4493 c->scsi_cmd = cmd;
4494 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4495 if (rc < 0) /* scsi_dma_map failed. */
4496 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05004497 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004498 hpsa_cmd_init(h, c->cmdindex, c);
4499 c->cmd_type = CMD_SCSI;
4500 c->scsi_cmd = cmd;
4501 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4502 if (rc < 0) /* scsi_dma_map failed. */
4503 rc = SCSI_MLQUEUE_HOST_BUSY;
4504 }
4505 return rc;
4506}
4507
Don Brace080ef1c2015-01-23 16:43:25 -06004508static void hpsa_command_resubmit_worker(struct work_struct *work)
4509{
4510 struct scsi_cmnd *cmd;
4511 struct hpsa_scsi_dev_t *dev;
4512 struct CommandList *c =
4513 container_of(work, struct CommandList, work);
4514
4515 cmd = c->scsi_cmd;
4516 dev = cmd->device->hostdata;
4517 if (!dev) {
4518 cmd->result = DID_NO_CONNECT << 16;
Webb Scales592a0ad2015-04-23 09:32:48 -05004519 cmd_free(c->h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004520 cmd->scsi_done(cmd);
4521 return;
4522 }
Webb Scales592a0ad2015-04-23 09:32:48 -05004523 if (c->cmd_type == CMD_IOACCEL2) {
4524 struct ctlr_info *h = c->h;
4525 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4526 int rc;
4527
4528 if (c2->error_data.serv_response ==
4529 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
4530 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
4531 if (rc == 0)
4532 return;
4533 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4534 /*
4535 * If we get here, it means dma mapping failed.
4536 * Try again via scsi mid layer, which will
4537 * then get SCSI_MLQUEUE_HOST_BUSY.
4538 */
4539 cmd->result = DID_IMM_RETRY << 16;
4540 cmd->scsi_done(cmd);
4541 cmd_free(h, c); /* FIX-ME: on merge, change
4542 * to cmd_tagged_free() and
4543 * ultimately to
4544 * hpsa_cmd_free_and_done(). */
4545 return;
4546 }
4547 /* else, fall thru and resubmit down CISS path */
4548 }
4549 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05004550 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004551 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4552 /*
4553 * If we get here, it means dma mapping failed. Try
4554 * again via scsi mid layer, which will then get
4555 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05004556 *
4557 * hpsa_ciss_submit will have already freed c
4558 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06004559 */
4560 cmd->result = DID_IMM_RETRY << 16;
4561 cmd->scsi_done(cmd);
4562 }
4563}
4564
Stephen Cameron574f05d2015-01-23 16:43:20 -06004565/* Running in struct Scsi_Host->host_lock less mode */
4566static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4567{
4568 struct ctlr_info *h;
4569 struct hpsa_scsi_dev_t *dev;
4570 unsigned char scsi3addr[8];
4571 struct CommandList *c;
4572 int rc = 0;
4573
4574 /* Get the ptr to our adapter structure out of cmd->host. */
4575 h = sdev_to_hba(cmd->device);
4576 dev = cmd->device->hostdata;
4577 if (!dev) {
4578 cmd->result = DID_NO_CONNECT << 16;
4579 cmd->scsi_done(cmd);
4580 return 0;
4581 }
4582 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4583
4584 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004585 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004586 cmd->scsi_done(cmd);
4587 return 0;
4588 }
4589 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05004590
Stephen Cameron407863c2015-01-23 16:44:19 -06004591 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004592 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron407863c2015-01-23 16:44:19 -06004593 cmd_free(h, c);
4594 cmd->scsi_done(cmd);
4595 return 0;
4596 }
Stephen Cameron574f05d2015-01-23 16:43:20 -06004597
Stephen Cameron407863c2015-01-23 16:44:19 -06004598 /*
4599 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004600 * Retries always go down the normal I/O path.
4601 */
4602 if (likely(cmd->retries == 0 &&
4603 cmd->request->cmd_type == REQ_TYPE_FS &&
4604 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004605 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
4606 if (rc == 0)
4607 return 0;
4608 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4609 cmd_free(h, c); /* FIX-ME: on merge, change to
4610 * cmd_tagged_free(), and ultimately
4611 * to hpsa_cmd_resolve_and_free(). */
4612 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004613 }
4614 }
4615 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4616}
4617
Webb Scales8ebc9242015-01-23 16:44:50 -06004618static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004619{
4620 unsigned long flags;
4621
Webb Scales8ebc9242015-01-23 16:44:50 -06004622 spin_lock_irqsave(&h->scan_lock, flags);
4623 h->scan_finished = 1;
4624 wake_up_all(&h->scan_wait_queue);
4625 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004626}
4627
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004628static void hpsa_scan_start(struct Scsi_Host *sh)
4629{
4630 struct ctlr_info *h = shost_to_hba(sh);
4631 unsigned long flags;
4632
Webb Scales8ebc9242015-01-23 16:44:50 -06004633 /*
4634 * Don't let rescans be initiated on a controller known to be locked
4635 * up. If the controller locks up *during* a rescan, that thread is
4636 * probably hosed, but at least we can prevent new rescan threads from
4637 * piling up on a locked up controller.
4638 */
4639 if (unlikely(lockup_detected(h)))
4640 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004641
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004642 /* wait until any scan already in progress is finished. */
4643 while (1) {
4644 spin_lock_irqsave(&h->scan_lock, flags);
4645 if (h->scan_finished)
4646 break;
4647 spin_unlock_irqrestore(&h->scan_lock, flags);
4648 wait_event(h->scan_wait_queue, h->scan_finished);
4649 /* Note: We don't need to worry about a race between this
4650 * thread and driver unload because the midlayer will
4651 * have incremented the reference count, so unload won't
4652 * happen if we're in here.
4653 */
4654 }
4655 h->scan_finished = 0; /* mark scan as in progress */
4656 spin_unlock_irqrestore(&h->scan_lock, flags);
4657
Webb Scales8ebc9242015-01-23 16:44:50 -06004658 if (unlikely(lockup_detected(h)))
4659 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004660
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004661 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4662
Webb Scales8ebc9242015-01-23 16:44:50 -06004663 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004664}
4665
Don Brace7c0a0222015-01-23 16:41:30 -06004666static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
4667{
Don Brace03383732015-01-23 16:43:30 -06004668 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
4669
4670 if (!logical_drive)
4671 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06004672
4673 if (qdepth < 1)
4674 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06004675 else if (qdepth > logical_drive->queue_depth)
4676 qdepth = logical_drive->queue_depth;
4677
4678 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06004679}
4680
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004681static int hpsa_scan_finished(struct Scsi_Host *sh,
4682 unsigned long elapsed_time)
4683{
4684 struct ctlr_info *h = shost_to_hba(sh);
4685 unsigned long flags;
4686 int finished;
4687
4688 spin_lock_irqsave(&h->scan_lock, flags);
4689 finished = h->scan_finished;
4690 spin_unlock_irqrestore(&h->scan_lock, flags);
4691 return finished;
4692}
4693
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004694static void hpsa_unregister_scsi(struct ctlr_info *h)
4695{
4696 /* we are being forcibly unloaded, and may not refuse. */
4697 scsi_remove_host(h->scsi_host);
4698 scsi_host_put(h->scsi_host);
4699 h->scsi_host = NULL;
4700}
4701
4702static int hpsa_register_scsi(struct ctlr_info *h)
4703{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004704 struct Scsi_Host *sh;
4705 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004706
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004707 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
4708 if (sh == NULL)
4709 goto fail;
4710
4711 sh->io_port = 0;
4712 sh->n_io_port = 0;
4713 sh->this_id = -1;
4714 sh->max_channel = 3;
4715 sh->max_cmd_len = MAX_COMMAND_SIZE;
4716 sh->max_lun = HPSA_MAX_LUN;
4717 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004718 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06004719 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004720 sh->sg_tablesize = h->maxsgentries;
4721 h->scsi_host = sh;
4722 sh->hostdata[0] = (unsigned long) h;
4723 sh->irq = h->intr[h->intr_mode];
4724 sh->unique_id = sh->irq;
4725 error = scsi_add_host(sh, &h->pdev->dev);
4726 if (error)
4727 goto fail_host_put;
4728 scsi_scan_host(sh);
4729 return 0;
4730
4731 fail_host_put:
4732 dev_err(&h->pdev->dev, "%s: scsi_add_host"
4733 " failed for controller %d\n", __func__, h->ctlr);
4734 scsi_host_put(sh);
4735 return error;
4736 fail:
4737 dev_err(&h->pdev->dev, "%s: scsi_host_alloc"
4738 " failed for controller %d\n", __func__, h->ctlr);
4739 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004740}
4741
4742static int wait_for_device_to_become_ready(struct ctlr_info *h,
4743 unsigned char lunaddr[])
4744{
Tomas Henzl89193582014-02-21 16:25:05 -06004745 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004746 int count = 0;
4747 int waittime = 1; /* seconds */
4748 struct CommandList *c;
4749
Stephen Cameron45fcb862015-01-23 16:43:04 -06004750 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004751
4752 /* Send test unit ready until device ready, or give up. */
4753 while (count < HPSA_TUR_RETRY_LIMIT) {
4754
4755 /* Wait for a bit. do this first, because if we send
4756 * the TUR right away, the reset will just abort it.
4757 */
4758 msleep(1000 * waittime);
4759 count++;
Tomas Henzl89193582014-02-21 16:25:05 -06004760 rc = 0; /* Device ready. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004761
4762 /* Increase wait time with each try, up to a point. */
4763 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
4764 waittime = waittime * 2;
4765
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004766 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
4767 (void) fill_cmd(c, TEST_UNIT_READY, h,
4768 NULL, 0, 0, lunaddr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05004769 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
4770 NO_TIMEOUT);
4771 if (rc)
4772 goto do_it_again;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004773 /* no unmap needed here because no data xfer. */
4774
4775 if (c->err_info->CommandStatus == CMD_SUCCESS)
4776 break;
4777
4778 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
4779 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
4780 (c->err_info->SenseInfo[2] == NO_SENSE ||
4781 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
4782 break;
Webb Scales25163bd2015-04-23 09:32:00 -05004783do_it_again:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004784 dev_warn(&h->pdev->dev, "waiting %d secs "
4785 "for device to become ready.\n", waittime);
4786 rc = 1; /* device not ready. */
4787 }
4788
4789 if (rc)
4790 dev_warn(&h->pdev->dev, "giving up on device.\n");
4791 else
4792 dev_warn(&h->pdev->dev, "device is ready.\n");
4793
Stephen Cameron45fcb862015-01-23 16:43:04 -06004794 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004795 return rc;
4796}
4797
4798/* Need at least one of these error handlers to keep ../scsi/hosts.c from
4799 * complaining. Doing a host- or bus-reset can't do anything good here.
4800 */
4801static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
4802{
4803 int rc;
4804 struct ctlr_info *h;
4805 struct hpsa_scsi_dev_t *dev;
4806
4807 /* find the controller to which the command to be aborted was sent */
4808 h = sdev_to_hba(scsicmd->device);
4809 if (h == NULL) /* paranoia */
4810 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06004811
4812 if (lockup_detected(h))
4813 return FAILED;
4814
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004815 dev = scsicmd->device->hostdata;
4816 if (!dev) {
4817 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
4818 "device lookup failed.\n");
4819 return FAILED;
4820 }
Webb Scales25163bd2015-04-23 09:32:00 -05004821
4822 /* if controller locked up, we can guarantee command won't complete */
4823 if (lockup_detected(h)) {
4824 dev_warn(&h->pdev->dev,
4825 "scsi %d:%d:%d:%d RESET FAILED, lockup detected\n",
4826 h->scsi_host->host_no, dev->bus, dev->target,
4827 dev->lun);
4828 return FAILED;
4829 }
4830
4831 /* this reset request might be the result of a lockup; check */
4832 if (detect_controller_lockup(h)) {
4833 dev_warn(&h->pdev->dev,
4834 "scsi %d:%d:%d:%d RESET FAILED, new lockup detected\n",
4835 h->scsi_host->host_no, dev->bus, dev->target,
4836 dev->lun);
4837 return FAILED;
4838 }
4839
4840 hpsa_show_dev_msg(KERN_WARNING, h, dev, "resetting");
4841
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004842 /* send a reset to the SCSI LUN which the command was sent to */
Webb Scales25163bd2015-04-23 09:32:00 -05004843 rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN,
4844 DEFAULT_REPLY_QUEUE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004845 if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0)
4846 return SUCCESS;
4847
Webb Scales25163bd2015-04-23 09:32:00 -05004848 dev_warn(&h->pdev->dev,
4849 "scsi %d:%d:%d:%d reset failed\n",
4850 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004851 return FAILED;
4852}
4853
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004854static void swizzle_abort_tag(u8 *tag)
4855{
4856 u8 original_tag[8];
4857
4858 memcpy(original_tag, tag, 8);
4859 tag[0] = original_tag[3];
4860 tag[1] = original_tag[2];
4861 tag[2] = original_tag[1];
4862 tag[3] = original_tag[0];
4863 tag[4] = original_tag[7];
4864 tag[5] = original_tag[6];
4865 tag[6] = original_tag[5];
4866 tag[7] = original_tag[4];
4867}
4868
Scott Teel17eb87d2014-02-18 13:55:28 -06004869static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06004870 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06004871{
Don Brace2b08b3e2015-01-23 16:41:09 -06004872 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06004873 if (c->cmd_type == CMD_IOACCEL1) {
4874 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
4875 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06004876 tag = le64_to_cpu(cm1->tag);
4877 *tagupper = cpu_to_le32(tag >> 32);
4878 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004879 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06004880 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06004881 if (c->cmd_type == CMD_IOACCEL2) {
4882 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
4883 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06004884 /* upper tag not used in ioaccel2 mode */
4885 memset(tagupper, 0, sizeof(*tagupper));
4886 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004887 return;
4888 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004889 tag = le64_to_cpu(c->Header.tag);
4890 *tagupper = cpu_to_le32(tag >> 32);
4891 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06004892}
4893
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004894static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004895 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004896{
4897 int rc = IO_OK;
4898 struct CommandList *c;
4899 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06004900 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004901
Stephen Cameron45fcb862015-01-23 16:43:04 -06004902 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004903
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004904 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004905 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004906 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004907 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004908 swizzle_abort_tag(&c->Request.CDB[4]);
Webb Scales25163bd2015-04-23 09:32:00 -05004909 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06004910 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05004911 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004912 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004913 /* no unmap needed here because no data xfer. */
4914
4915 ei = c->err_info;
4916 switch (ei->CommandStatus) {
4917 case CMD_SUCCESS:
4918 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05004919 case CMD_TMF_STATUS:
4920 rc = hpsa_evaluate_tmf_status(h, c);
4921 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004922 case CMD_UNABORTABLE: /* Very common, don't make noise. */
4923 rc = -1;
4924 break;
4925 default:
4926 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004927 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06004928 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004929 rc = -1;
4930 break;
4931 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06004932 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004933 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
4934 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004935 return rc;
4936}
4937
Stephen Cameron8be986c2015-04-23 09:34:06 -05004938static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h,
4939 struct CommandList *command_to_abort, int reply_queue)
4940{
4941 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4942 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
4943 struct io_accel2_cmd *c2a =
4944 &h->ioaccel2_cmd_pool[command_to_abort->cmdindex];
4945 struct scsi_cmnd *scmd =
4946 (struct scsi_cmnd *) command_to_abort->scsi_cmd;
4947 struct hpsa_scsi_dev_t *dev = scmd->device->hostdata;
4948
4949 /*
4950 * We're overlaying struct hpsa_tmf_struct on top of something which
4951 * was allocated as a struct io_accel2_cmd, so we better be sure it
4952 * actually fits, and doesn't overrun the error info space.
4953 */
4954 BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) >
4955 sizeof(struct io_accel2_cmd));
4956 BUG_ON(offsetof(struct io_accel2_cmd, error_data) <
4957 offsetof(struct hpsa_tmf_struct, error_len) +
4958 sizeof(ac->error_len));
4959
4960 c->cmd_type = IOACCEL2_TMF;
4961 /* Adjust the DMA address to point to the accelerated command buffer */
4962 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
4963 (c->cmdindex * sizeof(struct io_accel2_cmd));
4964 BUG_ON(c->busaddr & 0x0000007F);
4965
4966 memset(ac, 0, sizeof(*c2)); /* yes this is correct */
4967 ac->iu_type = IOACCEL2_IU_TMF_TYPE;
4968 ac->reply_queue = reply_queue;
4969 ac->tmf = IOACCEL2_TMF_ABORT;
4970 ac->it_nexus = cpu_to_le32(dev->ioaccel_handle);
4971 memset(ac->lun_id, 0, sizeof(ac->lun_id));
4972 ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT);
4973 ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag));
4974 ac->error_ptr = cpu_to_le64(c->busaddr +
4975 offsetof(struct io_accel2_cmd, error_data));
4976 ac->error_len = cpu_to_le32(sizeof(c2->error_data));
4977}
4978
Scott Teel54b6e9e2014-02-18 13:56:45 -06004979/* ioaccel2 path firmware cannot handle abort task requests.
4980 * Change abort requests to physical target reset, and send to the
4981 * address of the physical disk used for the ioaccel 2 command.
4982 * Return 0 on success (IO_OK)
4983 * -1 on failure
4984 */
4985
4986static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05004987 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06004988{
4989 int rc = IO_OK;
4990 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
4991 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
4992 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
4993 unsigned char *psa = &phys_scsi3addr[0];
4994
4995 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06004996 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004997 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
4998 if (dev == NULL) {
4999 dev_warn(&h->pdev->dev,
5000 "Cannot abort: no device pointer for command.\n");
5001 return -1; /* not abortable */
5002 }
5003
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005004 if (h->raid_offload_debug > 0)
5005 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05005006 "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 -06005007 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05005008 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005009 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
5010 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
5011
Scott Teel54b6e9e2014-02-18 13:56:45 -06005012 if (!dev->offload_enabled) {
5013 dev_warn(&h->pdev->dev,
5014 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
5015 return -1; /* not abortable */
5016 }
5017
5018 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
5019 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
5020 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
5021 return -1; /* not abortable */
5022 }
5023
5024 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005025 if (h->raid_offload_debug > 0)
5026 dev_info(&h->pdev->dev,
5027 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5028 psa[0], psa[1], psa[2], psa[3],
5029 psa[4], psa[5], psa[6], psa[7]);
Webb Scales25163bd2015-04-23 09:32:00 -05005030 rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005031 if (rc != 0) {
5032 dev_warn(&h->pdev->dev,
5033 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5034 psa[0], psa[1], psa[2], psa[3],
5035 psa[4], psa[5], psa[6], psa[7]);
5036 return rc; /* failed to reset */
5037 }
5038
5039 /* wait for device to recover */
5040 if (wait_for_device_to_become_ready(h, psa) != 0) {
5041 dev_warn(&h->pdev->dev,
5042 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5043 psa[0], psa[1], psa[2], psa[3],
5044 psa[4], psa[5], psa[6], psa[7]);
5045 return -1; /* failed to recover */
5046 }
5047
5048 /* device recovered */
5049 dev_info(&h->pdev->dev,
5050 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5051 psa[0], psa[1], psa[2], psa[3],
5052 psa[4], psa[5], psa[6], psa[7]);
5053
5054 return rc; /* success */
5055}
5056
Stephen Cameron8be986c2015-04-23 09:34:06 -05005057static int hpsa_send_abort_ioaccel2(struct ctlr_info *h,
5058 struct CommandList *abort, int reply_queue)
5059{
5060 int rc = IO_OK;
5061 struct CommandList *c;
5062 __le32 taglower, tagupper;
5063 struct hpsa_scsi_dev_t *dev;
5064 struct io_accel2_cmd *c2;
5065
5066 dev = abort->scsi_cmd->device->hostdata;
5067 if (!dev->offload_enabled && !dev->hba_ioaccel_enabled)
5068 return -1;
5069
5070 c = cmd_alloc(h);
5071 setup_ioaccel2_abort_cmd(c, h, abort, reply_queue);
5072 c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5073 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
5074 hpsa_get_tag(h, abort, &taglower, &tagupper);
5075 dev_dbg(&h->pdev->dev,
5076 "%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n",
5077 __func__, tagupper, taglower);
5078 /* no unmap needed here because no data xfer. */
5079
5080 dev_dbg(&h->pdev->dev,
5081 "%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n",
5082 __func__, tagupper, taglower, c2->error_data.serv_response);
5083 switch (c2->error_data.serv_response) {
5084 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
5085 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
5086 rc = 0;
5087 break;
5088 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
5089 case IOACCEL2_SERV_RESPONSE_FAILURE:
5090 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
5091 rc = -1;
5092 break;
5093 default:
5094 dev_warn(&h->pdev->dev,
5095 "%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n",
5096 __func__, tagupper, taglower,
5097 c2->error_data.serv_response);
5098 rc = -1;
5099 }
5100 cmd_free(h, c);
5101 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__,
5102 tagupper, taglower);
5103 return rc;
5104}
5105
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005106static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005107 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005108{
Stephen Cameron8be986c2015-04-23 09:34:06 -05005109 /*
5110 * ioccelerator mode 2 commands should be aborted via the
Scott Teel54b6e9e2014-02-18 13:56:45 -06005111 * accelerated path, since RAID path is unaware of these commands,
Stephen Cameron8be986c2015-04-23 09:34:06 -05005112 * but not all underlying firmware can handle abort TMF.
5113 * Change abort to physical device reset when abort TMF is unsupported.
Scott Teel54b6e9e2014-02-18 13:56:45 -06005114 */
Stephen Cameron8be986c2015-04-23 09:34:06 -05005115 if (abort->cmd_type == CMD_IOACCEL2) {
5116 if (HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags)
5117 return hpsa_send_abort_ioaccel2(h, abort,
5118 reply_queue);
5119 else
5120 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05005121 abort, reply_queue);
Stephen Cameron8be986c2015-04-23 09:34:06 -05005122 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005123 return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05005124}
5125
5126/* Find out which reply queue a command was meant to return on */
5127static int hpsa_extract_reply_queue(struct ctlr_info *h,
5128 struct CommandList *c)
5129{
5130 if (c->cmd_type == CMD_IOACCEL2)
5131 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
5132 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005133}
5134
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005135/*
5136 * Limit concurrency of abort commands to prevent
5137 * over-subscription of commands
5138 */
5139static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
5140{
5141#define ABORT_CMD_WAIT_MSECS 5000
5142 return !wait_event_timeout(h->abort_cmd_wait_queue,
5143 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
5144 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
5145}
5146
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005147/* Send an abort for the specified command.
5148 * If the device and controller support it,
5149 * send a task abort request.
5150 */
5151static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
5152{
5153
5154 int i, rc;
5155 struct ctlr_info *h;
5156 struct hpsa_scsi_dev_t *dev;
5157 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005158 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
5159 char msg[256]; /* For debug messaging. */
5160 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06005161 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05005162 int refcount, reply_queue;
5163
5164 if (sc == NULL)
5165 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005166
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005167 if (sc->device == NULL)
5168 return FAILED;
5169
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005170 /* Find the controller of the command to be aborted */
5171 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005172 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005173 return FAILED;
5174
Webb Scales25163bd2015-04-23 09:32:00 -05005175 /* Find the device of the command to be aborted */
5176 dev = sc->device->hostdata;
5177 if (!dev) {
5178 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
5179 msg);
Don Bracee3458932015-01-23 16:44:24 -06005180 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05005181 }
5182
5183 /* If controller locked up, we can guarantee command won't complete */
5184 if (lockup_detected(h)) {
5185 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5186 "ABORT FAILED, lockup detected");
5187 return FAILED;
5188 }
5189
5190 /* This is a good time to check if controller lockup has occurred */
5191 if (detect_controller_lockup(h)) {
5192 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5193 "ABORT FAILED, new lockup detected");
5194 return FAILED;
5195 }
Don Bracee3458932015-01-23 16:44:24 -06005196
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005197 /* Check that controller supports some kind of task abort */
5198 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
5199 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
5200 return FAILED;
5201
5202 memset(msg, 0, sizeof(msg));
Robert Elliott4b761552015-04-23 09:33:54 -05005203 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005204 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05005205 sc->device->id, sc->device->lun,
Robert Elliott4b761552015-04-23 09:33:54 -05005206 "Aborting command", sc);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005207
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005208 /* Get SCSI command to be aborted */
5209 abort = (struct CommandList *) sc->host_scribble;
5210 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005211 /* This can happen if the command already completed. */
5212 return SUCCESS;
5213 }
5214 refcount = atomic_inc_return(&abort->refcount);
5215 if (refcount == 1) { /* Command is done already. */
5216 cmd_free(h, abort);
5217 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005218 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005219
5220 /* Don't bother trying the abort if we know it won't work. */
5221 if (abort->cmd_type != CMD_IOACCEL2 &&
5222 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
5223 cmd_free(h, abort);
5224 return FAILED;
5225 }
5226
Scott Teel17eb87d2014-02-18 13:55:28 -06005227 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005228 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06005229 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06005230 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005231 if (as != NULL)
Robert Elliott4b761552015-04-23 09:33:54 -05005232 ml += sprintf(msg+ml,
5233 "CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ",
5234 as->cmd_len, as->cmnd[0], as->cmnd[1],
5235 as->serial_number);
5236 dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005237 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Robert Elliott4b761552015-04-23 09:33:54 -05005238
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005239 /*
5240 * Command is in flight, or possibly already completed
5241 * by the firmware (but not to the scsi mid layer) but we can't
5242 * distinguish which. Send the abort down.
5243 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005244 if (wait_for_available_abort_cmd(h)) {
5245 dev_warn(&h->pdev->dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005246 "%s FAILED, timeout waiting for an abort command to become available.\n",
5247 msg);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005248 cmd_free(h, abort);
5249 return FAILED;
5250 }
Webb Scales25163bd2015-04-23 09:32:00 -05005251 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005252 atomic_inc(&h->abort_cmds_available);
5253 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005254 if (rc != 0) {
Robert Elliott4b761552015-04-23 09:33:54 -05005255 dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005256 hpsa_show_dev_msg(KERN_WARNING, h, dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005257 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06005258 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005259 return FAILED;
5260 }
Robert Elliott4b761552015-04-23 09:33:54 -05005261 dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005262
Robert Elliott4b761552015-04-23 09:33:54 -05005263 /*
5264 * If the abort(s) above completed and actually aborted the
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005265 * command, then the command to be aborted should already be
5266 * completed. If not, wait around a bit more to see if they
5267 * manage to complete normally.
5268 */
5269#define ABORT_COMPLETE_WAIT_SECS 30
5270 for (i = 0; i < ABORT_COMPLETE_WAIT_SECS * 10; i++) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005271 refcount = atomic_read(&abort->refcount);
5272 if (refcount < 2) {
5273 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005274 return SUCCESS;
Webb Scales281a7fd2015-01-23 16:43:35 -06005275 } else {
5276 msleep(100);
5277 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005278 }
5279 dev_warn(&h->pdev->dev, "%s FAILED. Aborted command has not completed after %d seconds.\n",
5280 msg, ABORT_COMPLETE_WAIT_SECS);
Webb Scales281a7fd2015-01-23 16:43:35 -06005281 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005282 return FAILED;
5283}
5284
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005285/*
5286 * For operations that cannot sleep, a command block is allocated at init,
5287 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5288 * which ones are free or in use. Lock must be held when calling this.
5289 * cmd_free() is the complement.
Robert Elliottbf43caf2015-04-23 09:33:38 -05005290 * This function never gives up and returns NULL. If it hangs,
5291 * another thread must call cmd_free() to free some tags.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005292 */
Webb Scales281a7fd2015-01-23 16:43:35 -06005293
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005294static struct CommandList *cmd_alloc(struct ctlr_info *h)
5295{
5296 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005297 int refcount, i;
Robert Elliott33811022015-01-23 16:43:41 -06005298 unsigned long offset;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005299
Robert Elliott33811022015-01-23 16:43:41 -06005300 /*
5301 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005302 * multiple threads could get in here, and one thread could
5303 * be scanning through the list of bits looking for a free
5304 * one, but the free ones are always behind him, and other
5305 * threads sneak in behind him and eat them before he can
5306 * get to them, so that while there is always a free one, a
5307 * very unlucky thread might be starved anyway, never able to
5308 * beat the other threads. In reality, this happens so
5309 * infrequently as to be indistinguishable from never.
5310 */
5311
Robert Elliott33811022015-01-23 16:43:41 -06005312 offset = h->last_allocation; /* benignly racy */
Webb Scales281a7fd2015-01-23 16:43:35 -06005313 for (;;) {
5314 i = find_next_zero_bit(h->cmd_pool_bits, h->nr_cmds, offset);
5315 if (unlikely(i == h->nr_cmds)) {
5316 offset = 0;
5317 continue;
5318 }
5319 c = h->cmd_pool + i;
5320 refcount = atomic_inc_return(&c->refcount);
5321 if (unlikely(refcount > 1)) {
5322 cmd_free(h, c); /* already in use */
5323 offset = (i + 1) % h->nr_cmds;
5324 continue;
5325 }
5326 set_bit(i & (BITS_PER_LONG - 1),
5327 h->cmd_pool_bits + (i / BITS_PER_LONG));
5328 break; /* it's ours now. */
5329 }
Robert Elliott33811022015-01-23 16:43:41 -06005330 h->last_allocation = i; /* benignly racy */
Stephen Cameron360c73b2015-04-23 09:32:32 -05005331 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005332 return c;
5333}
5334
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005335static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5336{
Webb Scales281a7fd2015-01-23 16:43:35 -06005337 if (atomic_dec_and_test(&c->refcount)) {
5338 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005339
Webb Scales281a7fd2015-01-23 16:43:35 -06005340 i = c - h->cmd_pool;
5341 clear_bit(i & (BITS_PER_LONG - 1),
5342 h->cmd_pool_bits + (i / BITS_PER_LONG));
5343 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005344}
5345
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005346#ifdef CONFIG_COMPAT
5347
Don Brace42a91642014-11-14 17:26:27 -06005348static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
5349 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005350{
5351 IOCTL32_Command_struct __user *arg32 =
5352 (IOCTL32_Command_struct __user *) arg;
5353 IOCTL_Command_struct arg64;
5354 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5355 int err;
5356 u32 cp;
5357
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005358 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005359 err = 0;
5360 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5361 sizeof(arg64.LUN_info));
5362 err |= copy_from_user(&arg64.Request, &arg32->Request,
5363 sizeof(arg64.Request));
5364 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5365 sizeof(arg64.error_info));
5366 err |= get_user(arg64.buf_size, &arg32->buf_size);
5367 err |= get_user(cp, &arg32->buf);
5368 arg64.buf = compat_ptr(cp);
5369 err |= copy_to_user(p, &arg64, sizeof(arg64));
5370
5371 if (err)
5372 return -EFAULT;
5373
Don Brace42a91642014-11-14 17:26:27 -06005374 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005375 if (err)
5376 return err;
5377 err |= copy_in_user(&arg32->error_info, &p->error_info,
5378 sizeof(arg32->error_info));
5379 if (err)
5380 return -EFAULT;
5381 return err;
5382}
5383
5384static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06005385 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005386{
5387 BIG_IOCTL32_Command_struct __user *arg32 =
5388 (BIG_IOCTL32_Command_struct __user *) arg;
5389 BIG_IOCTL_Command_struct arg64;
5390 BIG_IOCTL_Command_struct __user *p =
5391 compat_alloc_user_space(sizeof(arg64));
5392 int err;
5393 u32 cp;
5394
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005395 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005396 err = 0;
5397 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5398 sizeof(arg64.LUN_info));
5399 err |= copy_from_user(&arg64.Request, &arg32->Request,
5400 sizeof(arg64.Request));
5401 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5402 sizeof(arg64.error_info));
5403 err |= get_user(arg64.buf_size, &arg32->buf_size);
5404 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5405 err |= get_user(cp, &arg32->buf);
5406 arg64.buf = compat_ptr(cp);
5407 err |= copy_to_user(p, &arg64, sizeof(arg64));
5408
5409 if (err)
5410 return -EFAULT;
5411
Don Brace42a91642014-11-14 17:26:27 -06005412 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005413 if (err)
5414 return err;
5415 err |= copy_in_user(&arg32->error_info, &p->error_info,
5416 sizeof(arg32->error_info));
5417 if (err)
5418 return -EFAULT;
5419 return err;
5420}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005421
Don Brace42a91642014-11-14 17:26:27 -06005422static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005423{
5424 switch (cmd) {
5425 case CCISS_GETPCIINFO:
5426 case CCISS_GETINTINFO:
5427 case CCISS_SETINTINFO:
5428 case CCISS_GETNODENAME:
5429 case CCISS_SETNODENAME:
5430 case CCISS_GETHEARTBEAT:
5431 case CCISS_GETBUSTYPES:
5432 case CCISS_GETFIRMVER:
5433 case CCISS_GETDRIVVER:
5434 case CCISS_REVALIDVOLS:
5435 case CCISS_DEREGDISK:
5436 case CCISS_REGNEWDISK:
5437 case CCISS_REGNEWD:
5438 case CCISS_RESCANDISK:
5439 case CCISS_GETLUNINFO:
5440 return hpsa_ioctl(dev, cmd, arg);
5441
5442 case CCISS_PASSTHRU32:
5443 return hpsa_ioctl32_passthru(dev, cmd, arg);
5444 case CCISS_BIG_PASSTHRU32:
5445 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
5446
5447 default:
5448 return -ENOIOCTLCMD;
5449 }
5450}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005451#endif
5452
5453static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5454{
5455 struct hpsa_pci_info pciinfo;
5456
5457 if (!argp)
5458 return -EINVAL;
5459 pciinfo.domain = pci_domain_nr(h->pdev->bus);
5460 pciinfo.bus = h->pdev->bus->number;
5461 pciinfo.dev_fn = h->pdev->devfn;
5462 pciinfo.board_id = h->board_id;
5463 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5464 return -EFAULT;
5465 return 0;
5466}
5467
5468static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
5469{
5470 DriverVer_type DriverVer;
5471 unsigned char vmaj, vmin, vsubmin;
5472 int rc;
5473
5474 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
5475 &vmaj, &vmin, &vsubmin);
5476 if (rc != 3) {
5477 dev_info(&h->pdev->dev, "driver version string '%s' "
5478 "unrecognized.", HPSA_DRIVER_VERSION);
5479 vmaj = 0;
5480 vmin = 0;
5481 vsubmin = 0;
5482 }
5483 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
5484 if (!argp)
5485 return -EINVAL;
5486 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
5487 return -EFAULT;
5488 return 0;
5489}
5490
5491static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5492{
5493 IOCTL_Command_struct iocommand;
5494 struct CommandList *c;
5495 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005496 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005497 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005498
5499 if (!argp)
5500 return -EINVAL;
5501 if (!capable(CAP_SYS_RAWIO))
5502 return -EPERM;
5503 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
5504 return -EFAULT;
5505 if ((iocommand.buf_size < 1) &&
5506 (iocommand.Request.Type.Direction != XFER_NONE)) {
5507 return -EINVAL;
5508 }
5509 if (iocommand.buf_size > 0) {
5510 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
5511 if (buff == NULL)
Robert Elliott2dd02d72015-04-23 09:33:43 -05005512 return -ENOMEM;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005513 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005514 /* Copy the data into the buffer we created */
5515 if (copy_from_user(buff, iocommand.buf,
5516 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005517 rc = -EFAULT;
5518 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005519 }
5520 } else {
5521 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005522 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005523 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005524 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05005525
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005526 /* Fill in the command type */
5527 c->cmd_type = CMD_IOCTL_PEND;
5528 /* Fill in Command Header */
5529 c->Header.ReplyQueue = 0; /* unused in simple mode */
5530 if (iocommand.buf_size > 0) { /* buffer to fill */
5531 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005532 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005533 } else { /* no buffers to fill */
5534 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005535 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005536 }
5537 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005538
5539 /* Fill in Request block */
5540 memcpy(&c->Request, &iocommand.Request,
5541 sizeof(c->Request));
5542
5543 /* Fill in the scatter gather information */
5544 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005545 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005546 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005547 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
5548 c->SG[0].Addr = cpu_to_le64(0);
5549 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005550 rc = -ENOMEM;
5551 goto out;
5552 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005553 c->SG[0].Addr = cpu_to_le64(temp64);
5554 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
5555 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005556 }
Webb Scales25163bd2015-04-23 09:32:00 -05005557 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05005558 if (iocommand.buf_size > 0)
5559 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005560 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005561 if (rc) {
5562 rc = -EIO;
5563 goto out;
5564 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005565
5566 /* Copy the error information out */
5567 memcpy(&iocommand.error_info, c->err_info,
5568 sizeof(iocommand.error_info));
5569 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005570 rc = -EFAULT;
5571 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005572 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005573 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005574 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005575 /* Copy the data out of the buffer we created */
5576 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005577 rc = -EFAULT;
5578 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005579 }
5580 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005581out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005582 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005583out_kfree:
5584 kfree(buff);
5585 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005586}
5587
5588static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5589{
5590 BIG_IOCTL_Command_struct *ioc;
5591 struct CommandList *c;
5592 unsigned char **buff = NULL;
5593 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005594 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005595 BYTE sg_used = 0;
5596 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005597 u32 left;
5598 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005599 BYTE __user *data_ptr;
5600
5601 if (!argp)
5602 return -EINVAL;
5603 if (!capable(CAP_SYS_RAWIO))
5604 return -EPERM;
5605 ioc = (BIG_IOCTL_Command_struct *)
5606 kmalloc(sizeof(*ioc), GFP_KERNEL);
5607 if (!ioc) {
5608 status = -ENOMEM;
5609 goto cleanup1;
5610 }
5611 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
5612 status = -EFAULT;
5613 goto cleanup1;
5614 }
5615 if ((ioc->buf_size < 1) &&
5616 (ioc->Request.Type.Direction != XFER_NONE)) {
5617 status = -EINVAL;
5618 goto cleanup1;
5619 }
5620 /* Check kmalloc limits using all SGs */
5621 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
5622 status = -EINVAL;
5623 goto cleanup1;
5624 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005625 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005626 status = -EINVAL;
5627 goto cleanup1;
5628 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005629 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005630 if (!buff) {
5631 status = -ENOMEM;
5632 goto cleanup1;
5633 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005634 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005635 if (!buff_size) {
5636 status = -ENOMEM;
5637 goto cleanup1;
5638 }
5639 left = ioc->buf_size;
5640 data_ptr = ioc->buf;
5641 while (left) {
5642 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
5643 buff_size[sg_used] = sz;
5644 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
5645 if (buff[sg_used] == NULL) {
5646 status = -ENOMEM;
5647 goto cleanup1;
5648 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005649 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005650 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05005651 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005652 goto cleanup1;
5653 }
5654 } else
5655 memset(buff[sg_used], 0, sz);
5656 left -= sz;
5657 data_ptr += sz;
5658 sg_used++;
5659 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005660 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05005661
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005662 c->cmd_type = CMD_IOCTL_PEND;
5663 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005664 c->Header.SGList = (u8) sg_used;
5665 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005666 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005667 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
5668 if (ioc->buf_size > 0) {
5669 int i;
5670 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005671 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005672 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005673 if (dma_mapping_error(&h->pdev->dev,
5674 (dma_addr_t) temp64)) {
5675 c->SG[i].Addr = cpu_to_le64(0);
5676 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005677 hpsa_pci_unmap(h->pdev, c, i,
5678 PCI_DMA_BIDIRECTIONAL);
5679 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005680 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005681 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005682 c->SG[i].Addr = cpu_to_le64(temp64);
5683 c->SG[i].Len = cpu_to_le32(buff_size[i]);
5684 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005685 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005686 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005687 }
Webb Scales25163bd2015-04-23 09:32:00 -05005688 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005689 if (sg_used)
5690 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005691 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005692 if (status) {
5693 status = -EIO;
5694 goto cleanup0;
5695 }
5696
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005697 /* Copy the error information out */
5698 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
5699 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005700 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005701 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005702 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005703 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005704 int i;
5705
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005706 /* Copy the data out of the buffer we created */
5707 BYTE __user *ptr = ioc->buf;
5708 for (i = 0; i < sg_used; i++) {
5709 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005710 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005711 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005712 }
5713 ptr += buff_size[i];
5714 }
5715 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005716 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005717cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005718 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005719cleanup1:
5720 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005721 int i;
5722
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005723 for (i = 0; i < sg_used; i++)
5724 kfree(buff[i]);
5725 kfree(buff);
5726 }
5727 kfree(buff_size);
5728 kfree(ioc);
5729 return status;
5730}
5731
5732static void check_ioctl_unit_attention(struct ctlr_info *h,
5733 struct CommandList *c)
5734{
5735 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5736 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
5737 (void) check_for_unit_attention(h, c);
5738}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005739
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005740/*
5741 * ioctl
5742 */
Don Brace42a91642014-11-14 17:26:27 -06005743static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005744{
5745 struct ctlr_info *h;
5746 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005747 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005748
5749 h = sdev_to_hba(dev);
5750
5751 switch (cmd) {
5752 case CCISS_DEREGDISK:
5753 case CCISS_REGNEWDISK:
5754 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005755 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005756 return 0;
5757 case CCISS_GETPCIINFO:
5758 return hpsa_getpciinfo_ioctl(h, argp);
5759 case CCISS_GETDRIVVER:
5760 return hpsa_getdrivver_ioctl(h, argp);
5761 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005762 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005763 return -EAGAIN;
5764 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005765 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005766 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005767 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005768 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005769 return -EAGAIN;
5770 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005771 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005772 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005773 default:
5774 return -ENOTTY;
5775 }
5776}
5777
Robert Elliottbf43caf2015-04-23 09:33:38 -05005778static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005779 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005780{
5781 struct CommandList *c;
5782
5783 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05005784
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005785 /* fill_cmd can't fail here, no data buffer to map */
5786 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005787 RAID_CTLR_LUNID, TYPE_MSG);
5788 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
5789 c->waiting = NULL;
5790 enqueue_cmd_and_start_io(h, c);
5791 /* Don't wait for completion, the reset won't complete. Don't free
5792 * the command either. This is the last command we will send before
5793 * re-initializing everything, so it doesn't matter and won't leak.
5794 */
Robert Elliottbf43caf2015-04-23 09:33:38 -05005795 return;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005796}
5797
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005798static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005799 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005800 int cmd_type)
5801{
5802 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005803 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005804
5805 c->cmd_type = CMD_IOCTL_PEND;
5806 c->Header.ReplyQueue = 0;
5807 if (buff != NULL && size > 0) {
5808 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005809 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005810 } else {
5811 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005812 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005813 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005814 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
5815
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005816 if (cmd_type == TYPE_CMD) {
5817 switch (cmd) {
5818 case HPSA_INQUIRY:
5819 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005820 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005821 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005822 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005823 }
5824 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005825 c->Request.type_attr_dir =
5826 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005827 c->Request.Timeout = 0;
5828 c->Request.CDB[0] = HPSA_INQUIRY;
5829 c->Request.CDB[4] = size & 0xFF;
5830 break;
5831 case HPSA_REPORT_LOG:
5832 case HPSA_REPORT_PHYS:
5833 /* Talking to controller so It's a physical command
5834 mode = 00 target = 0. Nothing to write.
5835 */
5836 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005837 c->Request.type_attr_dir =
5838 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005839 c->Request.Timeout = 0;
5840 c->Request.CDB[0] = cmd;
5841 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5842 c->Request.CDB[7] = (size >> 16) & 0xFF;
5843 c->Request.CDB[8] = (size >> 8) & 0xFF;
5844 c->Request.CDB[9] = size & 0xFF;
5845 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005846 case HPSA_CACHE_FLUSH:
5847 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005848 c->Request.type_attr_dir =
5849 TYPE_ATTR_DIR(cmd_type,
5850 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005851 c->Request.Timeout = 0;
5852 c->Request.CDB[0] = BMIC_WRITE;
5853 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05005854 c->Request.CDB[7] = (size >> 8) & 0xFF;
5855 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005856 break;
5857 case TEST_UNIT_READY:
5858 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005859 c->Request.type_attr_dir =
5860 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005861 c->Request.Timeout = 0;
5862 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005863 case HPSA_GET_RAID_MAP:
5864 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005865 c->Request.type_attr_dir =
5866 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005867 c->Request.Timeout = 0;
5868 c->Request.CDB[0] = HPSA_CISS_READ;
5869 c->Request.CDB[1] = cmd;
5870 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5871 c->Request.CDB[7] = (size >> 16) & 0xFF;
5872 c->Request.CDB[8] = (size >> 8) & 0xFF;
5873 c->Request.CDB[9] = size & 0xFF;
5874 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005875 case BMIC_SENSE_CONTROLLER_PARAMETERS:
5876 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005877 c->Request.type_attr_dir =
5878 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005879 c->Request.Timeout = 0;
5880 c->Request.CDB[0] = BMIC_READ;
5881 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
5882 c->Request.CDB[7] = (size >> 16) & 0xFF;
5883 c->Request.CDB[8] = (size >> 8) & 0xFF;
5884 break;
Don Brace03383732015-01-23 16:43:30 -06005885 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
5886 c->Request.CDBLen = 10;
5887 c->Request.type_attr_dir =
5888 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
5889 c->Request.Timeout = 0;
5890 c->Request.CDB[0] = BMIC_READ;
5891 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
5892 c->Request.CDB[7] = (size >> 16) & 0xFF;
5893 c->Request.CDB[8] = (size >> 8) & 0XFF;
5894 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005895 default:
5896 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
5897 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005898 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005899 }
5900 } else if (cmd_type == TYPE_MSG) {
5901 switch (cmd) {
5902
5903 case HPSA_DEVICE_RESET_MSG:
5904 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005905 c->Request.type_attr_dir =
5906 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005907 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005908 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
5909 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05005910 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005911 /* If bytes 4-7 are zero, it means reset the */
5912 /* LunID device */
5913 c->Request.CDB[4] = 0x00;
5914 c->Request.CDB[5] = 0x00;
5915 c->Request.CDB[6] = 0x00;
5916 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005917 break;
5918 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005919 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06005920 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005921 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
5922 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005923 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005924 c->Request.type_attr_dir =
5925 TYPE_ATTR_DIR(cmd_type,
5926 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005927 c->Request.Timeout = 0; /* Don't time out */
5928 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
5929 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
5930 c->Request.CDB[2] = 0x00; /* reserved */
5931 c->Request.CDB[3] = 0x00; /* reserved */
5932 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005933 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005934 c->Request.CDB[12] = 0x00; /* reserved */
5935 c->Request.CDB[13] = 0x00; /* reserved */
5936 c->Request.CDB[14] = 0x00; /* reserved */
5937 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005938 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005939 default:
5940 dev_warn(&h->pdev->dev, "unknown message type %d\n",
5941 cmd);
5942 BUG();
5943 }
5944 } else {
5945 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
5946 BUG();
5947 }
5948
Stephen M. Camerona505b862014-11-14 17:27:04 -06005949 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005950 case XFER_READ:
5951 pci_dir = PCI_DMA_FROMDEVICE;
5952 break;
5953 case XFER_WRITE:
5954 pci_dir = PCI_DMA_TODEVICE;
5955 break;
5956 case XFER_NONE:
5957 pci_dir = PCI_DMA_NONE;
5958 break;
5959 default:
5960 pci_dir = PCI_DMA_BIDIRECTIONAL;
5961 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005962 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
5963 return -1;
5964 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005965}
5966
5967/*
5968 * Map (physical) PCI mem into (virtual) kernel space
5969 */
5970static void __iomem *remap_pci_mem(ulong base, ulong size)
5971{
5972 ulong page_base = ((ulong) base) & PAGE_MASK;
5973 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba34c2012-07-26 11:34:23 -05005974 void __iomem *page_remapped = ioremap_nocache(page_base,
5975 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005976
5977 return page_remapped ? (page_remapped + page_offs) : NULL;
5978}
5979
Matt Gates254f7962012-05-01 11:43:06 -05005980static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005981{
Matt Gates254f7962012-05-01 11:43:06 -05005982 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005983}
5984
Stephen M. Cameron900c5442010-02-04 08:42:35 -06005985static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005986{
5987 return h->access.intr_pending(h);
5988}
5989
5990static inline long interrupt_not_for_us(struct ctlr_info *h)
5991{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005992 return (h->access.intr_pending(h) == 0) ||
5993 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005994}
5995
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005996static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
5997 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005998{
5999 if (unlikely(tag_index >= h->nr_cmds)) {
6000 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
6001 return 1;
6002 }
6003 return 0;
6004}
6005
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05006006static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006007{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006008 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06006009 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
6010 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05006011 complete_scsi_command(c);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006012 else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006013 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06006014}
6015
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006016
6017static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06006018{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006019#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
6020#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006021 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006022 return tag & ~HPSA_SIMPLE_ERROR_BITS;
6023 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06006024}
6025
Don Brace303932f2010-02-04 08:42:40 -06006026/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006027static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06006028 u32 raw_tag)
6029{
6030 u32 tag_index;
6031 struct CommandList *c;
6032
Don Bracef2405db2015-01-23 16:43:09 -06006033 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006034 if (!bad_tag(h, tag_index, raw_tag)) {
6035 c = h->cmd_pool + tag_index;
6036 finish_cmd(c);
6037 }
Don Brace303932f2010-02-04 08:42:40 -06006038}
6039
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006040/* Some controllers, like p400, will give us one interrupt
6041 * after a soft reset, even if we turned interrupts off.
6042 * Only need to check for this in the hpsa_xxx_discard_completions
6043 * functions.
6044 */
6045static int ignore_bogus_interrupt(struct ctlr_info *h)
6046{
6047 if (likely(!reset_devices))
6048 return 0;
6049
6050 if (likely(h->interrupts_enabled))
6051 return 0;
6052
6053 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
6054 "(known firmware bug.) Ignoring.\n");
6055
6056 return 1;
6057}
6058
Matt Gates254f7962012-05-01 11:43:06 -05006059/*
6060 * Convert &h->q[x] (passed to interrupt handlers) back to h.
6061 * Relies on (h-q[x] == x) being true for x such that
6062 * 0 <= x < MAX_REPLY_QUEUES.
6063 */
6064static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006065{
Matt Gates254f7962012-05-01 11:43:06 -05006066 return container_of((queue - *queue), struct ctlr_info, q[0]);
6067}
6068
6069static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
6070{
6071 struct ctlr_info *h = queue_to_hba(queue);
6072 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006073 u32 raw_tag;
6074
6075 if (ignore_bogus_interrupt(h))
6076 return IRQ_NONE;
6077
6078 if (interrupt_not_for_us(h))
6079 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006080 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006081 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006082 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006083 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006084 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006085 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006086 return IRQ_HANDLED;
6087}
6088
Matt Gates254f7962012-05-01 11:43:06 -05006089static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006090{
Matt Gates254f7962012-05-01 11:43:06 -05006091 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006092 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006093 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006094
6095 if (ignore_bogus_interrupt(h))
6096 return IRQ_NONE;
6097
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006098 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006099 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006100 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006101 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006102 return IRQ_HANDLED;
6103}
6104
Matt Gates254f7962012-05-01 11:43:06 -05006105static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006106{
Matt Gates254f7962012-05-01 11:43:06 -05006107 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06006108 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006109 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006110
6111 if (interrupt_not_for_us(h))
6112 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006113 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006114 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006115 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006116 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006117 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006118 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006119 }
6120 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006121 return IRQ_HANDLED;
6122}
6123
Matt Gates254f7962012-05-01 11:43:06 -05006124static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006125{
Matt Gates254f7962012-05-01 11:43:06 -05006126 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006127 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006128 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006129
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006130 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006131 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06006132 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006133 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006134 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006135 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006136 return IRQ_HANDLED;
6137}
6138
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006139/* Send a message CDB to the firmware. Careful, this only works
6140 * in simple mode, not performant mode due to the tag lookup.
6141 * We only ever use this immediately after a controller reset.
6142 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006143static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
6144 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006145{
6146 struct Command {
6147 struct CommandListHeader CommandHeader;
6148 struct RequestBlock Request;
6149 struct ErrDescriptor ErrorDescriptor;
6150 };
6151 struct Command *cmd;
6152 static const size_t cmd_sz = sizeof(*cmd) +
6153 sizeof(cmd->ErrorDescriptor);
6154 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06006155 __le32 paddr32;
6156 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006157 void __iomem *vaddr;
6158 int i, err;
6159
6160 vaddr = pci_ioremap_bar(pdev, 0);
6161 if (vaddr == NULL)
6162 return -ENOMEM;
6163
6164 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
6165 * CCISS commands, so they must be allocated from the lower 4GiB of
6166 * memory.
6167 */
6168 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6169 if (err) {
6170 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06006171 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006172 }
6173
6174 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
6175 if (cmd == NULL) {
6176 iounmap(vaddr);
6177 return -ENOMEM;
6178 }
6179
6180 /* This must fit, because of the 32-bit consistent DMA mask. Also,
6181 * although there's no guarantee, we assume that the address is at
6182 * least 4-byte aligned (most likely, it's page-aligned).
6183 */
Don Brace2b08b3e2015-01-23 16:41:09 -06006184 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006185
6186 cmd->CommandHeader.ReplyQueue = 0;
6187 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006188 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06006189 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006190 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
6191
6192 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006193 cmd->Request.type_attr_dir =
6194 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006195 cmd->Request.Timeout = 0; /* Don't time out */
6196 cmd->Request.CDB[0] = opcode;
6197 cmd->Request.CDB[1] = type;
6198 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006199 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06006200 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006201 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006202
Don Brace2b08b3e2015-01-23 16:41:09 -06006203 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006204
6205 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
6206 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06006207 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006208 break;
6209 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
6210 }
6211
6212 iounmap(vaddr);
6213
6214 /* we leak the DMA buffer here ... no choice since the controller could
6215 * still complete the command.
6216 */
6217 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
6218 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
6219 opcode, type);
6220 return -ETIMEDOUT;
6221 }
6222
6223 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
6224
6225 if (tag & HPSA_ERROR_BIT) {
6226 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
6227 opcode, type);
6228 return -EIO;
6229 }
6230
6231 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
6232 opcode, type);
6233 return 0;
6234}
6235
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006236#define hpsa_noop(p) hpsa_message(p, 3, 0)
6237
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006238static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06006239 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006240{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006241
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006242 if (use_doorbell) {
6243 /* For everything after the P600, the PCI power state method
6244 * of resetting the controller doesn't work, so we have this
6245 * other way using the doorbell register.
6246 */
6247 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006248 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05006249
Justin Lindley00701a92014-05-29 10:52:47 -05006250 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05006251 * doorbell reset and before any attempt to talk to the board
6252 * at all to ensure that this actually works and doesn't fall
6253 * over in some weird corner cases.
6254 */
Justin Lindley00701a92014-05-29 10:52:47 -05006255 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006256 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006257
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006258 /* Quoting from the Open CISS Specification: "The Power
6259 * Management Control/Status Register (CSR) controls the power
6260 * state of the device. The normal operating state is D0,
6261 * CSR=00h. The software off state is D3, CSR=03h. To reset
6262 * the controller, place the interface device in D3 then to D0,
6263 * this causes a secondary PCI reset which will reset the
6264 * controller." */
6265
Don Brace2662cab2015-01-23 16:41:25 -06006266 int rc = 0;
6267
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006268 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06006269
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006270 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006271 rc = pci_set_power_state(pdev, PCI_D3hot);
6272 if (rc)
6273 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006274
6275 msleep(500);
6276
6277 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006278 rc = pci_set_power_state(pdev, PCI_D0);
6279 if (rc)
6280 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02006281
6282 /*
6283 * The P600 requires a small delay when changing states.
6284 * Otherwise we may think the board did not reset and we bail.
6285 * This for kdump only and is particular to the P600.
6286 */
6287 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006288 }
6289 return 0;
6290}
6291
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006292static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006293{
6294 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006295 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006296}
6297
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006298static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006299{
6300 char *driver_version;
6301 int i, size = sizeof(cfgtable->driver_version);
6302
6303 driver_version = kmalloc(size, GFP_KERNEL);
6304 if (!driver_version)
6305 return -ENOMEM;
6306
6307 init_driver_version(driver_version, size);
6308 for (i = 0; i < size; i++)
6309 writeb(driver_version[i], &cfgtable->driver_version[i]);
6310 kfree(driver_version);
6311 return 0;
6312}
6313
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006314static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
6315 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006316{
6317 int i;
6318
6319 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6320 driver_ver[i] = readb(&cfgtable->driver_version[i]);
6321}
6322
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006323static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006324{
6325
6326 char *driver_ver, *old_driver_ver;
6327 int rc, size = sizeof(cfgtable->driver_version);
6328
6329 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6330 if (!old_driver_ver)
6331 return -ENOMEM;
6332 driver_ver = old_driver_ver + size;
6333
6334 /* After a reset, the 32 bytes of "driver version" in the cfgtable
6335 * should have been changed, otherwise we know the reset failed.
6336 */
6337 init_driver_version(old_driver_ver, size);
6338 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6339 rc = !memcmp(driver_ver, old_driver_ver, size);
6340 kfree(old_driver_ver);
6341 return rc;
6342}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006343/* This does a hard reset of the controller using PCI power management
6344 * states or the using the doorbell register.
6345 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006346static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006347{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006348 u64 cfg_offset;
6349 u32 cfg_base_addr;
6350 u64 cfg_base_addr_index;
6351 void __iomem *vaddr;
6352 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006353 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006354 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006355 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006356 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006357 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006358
6359 /* For controllers as old as the P600, this is very nearly
6360 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006361 *
6362 * pci_save_state(pci_dev);
6363 * pci_set_power_state(pci_dev, PCI_D3hot);
6364 * pci_set_power_state(pci_dev, PCI_D0);
6365 * pci_restore_state(pci_dev);
6366 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006367 * For controllers newer than the P600, the pci power state
6368 * method of resetting doesn't work so we have another way
6369 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006370 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006371
Robert Elliott60f923b2015-01-23 16:42:06 -06006372 if (!ctlr_is_resettable(board_id)) {
6373 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06006374 return -ENODEV;
6375 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05006376
6377 /* if controller is soft- but not hard resettable... */
6378 if (!ctlr_is_hard_resettable(board_id))
6379 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006380
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006381 /* Save the PCI command register */
6382 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006383 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006384
6385 /* find the first memory BAR, so we can find the cfg table */
6386 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
6387 if (rc)
6388 return rc;
6389 vaddr = remap_pci_mem(paddr, 0x250);
6390 if (!vaddr)
6391 return -ENOMEM;
6392
6393 /* find cfgtable in order to check if reset via doorbell is supported */
6394 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
6395 &cfg_base_addr_index, &cfg_offset);
6396 if (rc)
6397 goto unmap_vaddr;
6398 cfgtable = remap_pci_mem(pci_resource_start(pdev,
6399 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
6400 if (!cfgtable) {
6401 rc = -ENOMEM;
6402 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006403 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006404 rc = write_driver_ver_to_cfgtable(cfgtable);
6405 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06006406 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006407
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006408 /* If reset via doorbell register is supported, use that.
6409 * There are two such methods. Favor the newest method.
6410 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006411 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006412 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6413 if (use_doorbell) {
6414 use_doorbell = DOORBELL_CTLR_RESET2;
6415 } else {
6416 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6417 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006418 dev_warn(&pdev->dev,
6419 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006420 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006421 goto unmap_cfgtable;
6422 }
6423 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006424
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006425 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
6426 if (rc)
6427 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006428
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006429 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006430 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006431
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006432 /* Some devices (notably the HP Smart Array 5i Controller)
6433 need a little pause here */
6434 msleep(HPSA_POST_RESET_PAUSE_MSECS);
6435
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006436 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
6437 if (rc) {
6438 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06006439 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006440 goto unmap_cfgtable;
6441 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006442
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006443 rc = controller_reset_failed(vaddr);
6444 if (rc < 0)
6445 goto unmap_cfgtable;
6446 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006447 dev_warn(&pdev->dev, "Unable to successfully reset "
6448 "controller. Will try soft reset.\n");
6449 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006450 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006451 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006452 }
6453
6454unmap_cfgtable:
6455 iounmap(cfgtable);
6456
6457unmap_vaddr:
6458 iounmap(vaddr);
6459 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006460}
6461
6462/*
6463 * We cannot read the structure directly, for portability we must use
6464 * the io functions.
6465 * This is for debug only.
6466 */
Don Brace42a91642014-11-14 17:26:27 -06006467static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006468{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006469#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006470 int i;
6471 char temp_name[17];
6472
6473 dev_info(dev, "Controller Configuration information\n");
6474 dev_info(dev, "------------------------------------\n");
6475 for (i = 0; i < 4; i++)
6476 temp_name[i] = readb(&(tb->Signature[i]));
6477 temp_name[4] = '\0';
6478 dev_info(dev, " Signature = %s\n", temp_name);
6479 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
6480 dev_info(dev, " Transport methods supported = 0x%x\n",
6481 readl(&(tb->TransportSupport)));
6482 dev_info(dev, " Transport methods active = 0x%x\n",
6483 readl(&(tb->TransportActive)));
6484 dev_info(dev, " Requested transport Method = 0x%x\n",
6485 readl(&(tb->HostWrite.TransportRequest)));
6486 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
6487 readl(&(tb->HostWrite.CoalIntDelay)));
6488 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
6489 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06006490 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006491 readl(&(tb->CmdsOutMax)));
6492 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
6493 for (i = 0; i < 16; i++)
6494 temp_name[i] = readb(&(tb->ServerName[i]));
6495 temp_name[16] = '\0';
6496 dev_info(dev, " Server Name = %s\n", temp_name);
6497 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
6498 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006499#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006500}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006501
6502static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
6503{
6504 int i, offset, mem_type, bar_type;
6505
6506 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
6507 return 0;
6508 offset = 0;
6509 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
6510 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
6511 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
6512 offset += 4;
6513 else {
6514 mem_type = pci_resource_flags(pdev, i) &
6515 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
6516 switch (mem_type) {
6517 case PCI_BASE_ADDRESS_MEM_TYPE_32:
6518 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
6519 offset += 4; /* 32 bit */
6520 break;
6521 case PCI_BASE_ADDRESS_MEM_TYPE_64:
6522 offset += 8;
6523 break;
6524 default: /* reserved in PCI 2.2 */
6525 dev_warn(&pdev->dev,
6526 "base address is invalid\n");
6527 return -1;
6528 break;
6529 }
6530 }
6531 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
6532 return i + 1;
6533 }
6534 return -1;
6535}
6536
Robert Elliottcc64c812015-04-23 09:33:12 -05006537static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
6538{
6539 if (h->msix_vector) {
6540 if (h->pdev->msix_enabled)
6541 pci_disable_msix(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05006542 h->msix_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05006543 } else if (h->msi_vector) {
6544 if (h->pdev->msi_enabled)
6545 pci_disable_msi(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05006546 h->msi_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05006547 }
6548}
6549
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006550/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06006551 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006552 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006553static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006554{
6555#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05006556 int err, i;
6557 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
6558
6559 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
6560 hpsa_msix_entries[i].vector = 0;
6561 hpsa_msix_entries[i].entry = i;
6562 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006563
6564 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006565 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
6566 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006567 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006568 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006569 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006570 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05006571 if (h->msix_vector > num_online_cpus())
6572 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006573 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
6574 1, h->msix_vector);
6575 if (err < 0) {
6576 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
6577 h->msix_vector = 0;
6578 goto single_msi_mode;
6579 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006580 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006581 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006582 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006583 h->msix_vector = err;
6584 for (i = 0; i < h->msix_vector; i++)
6585 h->intr[i] = hpsa_msix_entries[i].vector;
6586 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006587 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006588single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006589 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006590 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006591 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006592 h->msi_vector = 1;
6593 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006594 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006595 }
6596default_int_mode:
6597#endif /* CONFIG_PCI_MSI */
6598 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006599 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006600}
6601
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006602static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006603{
6604 int i;
6605 u32 subsystem_vendor_id, subsystem_device_id;
6606
6607 subsystem_vendor_id = pdev->subsystem_vendor;
6608 subsystem_device_id = pdev->subsystem_device;
6609 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
6610 subsystem_vendor_id;
6611
6612 for (i = 0; i < ARRAY_SIZE(products); i++)
6613 if (*board_id == products[i].board_id)
6614 return i;
6615
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05006616 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
6617 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
6618 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006619 dev_warn(&pdev->dev, "unrecognized board ID: "
6620 "0x%08x, ignoring.\n", *board_id);
6621 return -ENODEV;
6622 }
6623 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
6624}
6625
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006626static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
6627 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006628{
6629 int i;
6630
6631 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006632 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006633 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006634 *memory_bar = pci_resource_start(pdev, i);
6635 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006636 *memory_bar);
6637 return 0;
6638 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006639 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006640 return -ENODEV;
6641}
6642
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006643static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
6644 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006645{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006646 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006647 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006648 if (wait_for_ready)
6649 iterations = HPSA_BOARD_READY_ITERATIONS;
6650 else
6651 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006652
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006653 for (i = 0; i < iterations; i++) {
6654 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
6655 if (wait_for_ready) {
6656 if (scratchpad == HPSA_FIRMWARE_READY)
6657 return 0;
6658 } else {
6659 if (scratchpad != HPSA_FIRMWARE_READY)
6660 return 0;
6661 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006662 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
6663 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006664 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006665 return -ENODEV;
6666}
6667
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006668static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
6669 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
6670 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006671{
6672 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
6673 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
6674 *cfg_base_addr &= (u32) 0x0000ffff;
6675 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
6676 if (*cfg_base_addr_index == -1) {
6677 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
6678 return -ENODEV;
6679 }
6680 return 0;
6681}
6682
Robert Elliott195f2c62015-04-23 09:33:17 -05006683static void hpsa_free_cfgtables(struct ctlr_info *h)
6684{
Robert Elliott105a3db2015-04-23 09:33:48 -05006685 if (h->transtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05006686 iounmap(h->transtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05006687 h->transtable = NULL;
6688 }
6689 if (h->cfgtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05006690 iounmap(h->cfgtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05006691 h->cfgtable = NULL;
6692 }
Robert Elliott195f2c62015-04-23 09:33:17 -05006693}
6694
6695/* Find and map CISS config table and transfer table
6696+ * several items must be unmapped (freed) later
6697+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006698static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006699{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006700 u64 cfg_offset;
6701 u32 cfg_base_addr;
6702 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06006703 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006704 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006705
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006706 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
6707 &cfg_base_addr_index, &cfg_offset);
6708 if (rc)
6709 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006710 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006711 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006712 if (!h->cfgtable) {
6713 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006714 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006715 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006716 rc = write_driver_ver_to_cfgtable(h->cfgtable);
6717 if (rc)
6718 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006719 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006720 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006721 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
6722 cfg_base_addr_index)+cfg_offset+trans_offset,
6723 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05006724 if (!h->transtable) {
6725 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
6726 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006727 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05006728 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006729 return 0;
6730}
6731
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006732static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006733{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006734#define MIN_MAX_COMMANDS 16
6735 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
6736
6737 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06006738
6739 /* Limit commands in memory limited kdump scenario. */
6740 if (reset_devices && h->max_commands > 32)
6741 h->max_commands = 32;
6742
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006743 if (h->max_commands < MIN_MAX_COMMANDS) {
6744 dev_warn(&h->pdev->dev,
6745 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
6746 h->max_commands,
6747 MIN_MAX_COMMANDS);
6748 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006749 }
6750}
6751
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006752/* If the controller reports that the total max sg entries is greater than 512,
6753 * then we know that chained SG blocks work. (Original smart arrays did not
6754 * support chained SG blocks and would return zero for max sg entries.)
6755 */
6756static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
6757{
6758 return h->maxsgentries > 512;
6759}
6760
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006761/* Interrogate the hardware for some limits:
6762 * max commands, max SG elements without chaining, and with chaining,
6763 * SG chain block size, etc.
6764 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006765static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006766{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006767 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06006768 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006769 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006770 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006771 if (hpsa_supports_chained_sg_blocks(h)) {
6772 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006773 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06006774 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006775 h->maxsgentries--; /* save one for chain pointer */
6776 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006777 /*
6778 * Original smart arrays supported at most 31 s/g entries
6779 * embedded inline in the command (trying to use more
6780 * would lock up the controller)
6781 */
6782 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06006783 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006784 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006785 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006786
6787 /* Find out what task management functions are supported and cache */
6788 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06006789 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
6790 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
6791 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6792 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen Cameron8be986c2015-04-23 09:34:06 -05006793 if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
6794 dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006795}
6796
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006797static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
6798{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09006799 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006800 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006801 return false;
6802 }
6803 return true;
6804}
6805
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006806static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006807{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006808 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006809
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006810 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02006811 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
6812#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006813 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006814#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06006815 driver_support |= ENABLE_UNIT_ATTN;
6816 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006817}
6818
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006819/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
6820 * in a prefetch beyond physical memory.
6821 */
6822static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
6823{
6824 u32 dma_prefetch;
6825
6826 if (h->board_id != 0x3225103C)
6827 return;
6828 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
6829 dma_prefetch |= 0x8000;
6830 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
6831}
6832
Robert Elliottc706a792015-01-23 16:45:01 -06006833static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006834{
6835 int i;
6836 u32 doorbell_value;
6837 unsigned long flags;
6838 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006839 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006840 spin_lock_irqsave(&h->lock, flags);
6841 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6842 spin_unlock_irqrestore(&h->lock, flags);
6843 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06006844 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006845 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006846 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006847 }
Robert Elliottc706a792015-01-23 16:45:01 -06006848 return -ENODEV;
6849done:
6850 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006851}
6852
Robert Elliottc706a792015-01-23 16:45:01 -06006853static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006854{
6855 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006856 u32 doorbell_value;
6857 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006858
6859 /* under certain very rare conditions, this can take awhile.
6860 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
6861 * as we enter this code.)
6862 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006863 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05006864 if (h->remove_in_progress)
6865 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006866 spin_lock_irqsave(&h->lock, flags);
6867 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6868 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06006869 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06006870 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006871 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006872 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006873 }
Robert Elliottc706a792015-01-23 16:45:01 -06006874 return -ENODEV;
6875done:
6876 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006877}
6878
Robert Elliottc706a792015-01-23 16:45:01 -06006879/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006880static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006881{
6882 u32 trans_support;
6883
6884 trans_support = readl(&(h->cfgtable->TransportSupport));
6885 if (!(trans_support & SIMPLE_MODE))
6886 return -ENOTSUPP;
6887
6888 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006889
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006890 /* Update the field, and then ring the doorbell */
6891 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06006892 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006893 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06006894 if (hpsa_wait_for_mode_change_ack(h))
6895 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006896 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006897 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
6898 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006899 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006900 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006901error:
Stephen Cameron050f7142015-01-23 16:42:22 -06006902 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006903 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006904}
6905
Robert Elliott195f2c62015-04-23 09:33:17 -05006906/* free items allocated or mapped by hpsa_pci_init */
6907static void hpsa_free_pci_init(struct ctlr_info *h)
6908{
6909 hpsa_free_cfgtables(h); /* pci_init 4 */
6910 iounmap(h->vaddr); /* pci_init 3 */
Robert Elliott105a3db2015-04-23 09:33:48 -05006911 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05006912 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
6913 pci_release_regions(h->pdev); /* pci_init 2 */
6914 pci_disable_device(h->pdev); /* pci_init 1 */
6915}
6916
6917/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006918static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006919{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006920 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006921
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006922 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
6923 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06006924 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006925 h->product_name = products[prod_index].product_name;
6926 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006927
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006928 h->needs_abort_tags_swizzled =
6929 ctlr_needs_abort_tags_swizzled(h->board_id);
6930
Matthew Garrette5a44df2011-11-11 11:14:23 -05006931 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
6932 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
6933
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006934 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006935 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05006936 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006937 return err;
6938 }
6939
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006940 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006941 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006942 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05006943 "failed to obtain PCI resources\n");
6944 goto clean1; /* pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006945 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006946
6947 pci_set_master(h->pdev);
6948
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006949 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006950 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006951 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05006952 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006953 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006954 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05006955 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006956 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05006957 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006958 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006959 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006960 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05006961 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006962 err = hpsa_find_cfgtables(h);
6963 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05006964 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006965 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006966
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006967 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006968 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05006969 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006970 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006971 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006972 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006973 err = hpsa_enter_simple_mode(h);
6974 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05006975 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006976 return 0;
6977
Robert Elliott195f2c62015-04-23 09:33:17 -05006978clean4: /* cfgtables, vaddr, intmode+region, pci */
6979 hpsa_free_cfgtables(h);
6980clean3: /* vaddr, intmode+region, pci */
6981 iounmap(h->vaddr);
Robert Elliott105a3db2015-04-23 09:33:48 -05006982 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05006983clean2: /* intmode+region, pci */
6984 hpsa_disable_interrupt_mode(h);
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006985 pci_release_regions(h->pdev);
Robert Elliott195f2c62015-04-23 09:33:17 -05006986clean1: /* pci */
6987 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006988 return err;
6989}
6990
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006991static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006992{
6993 int rc;
6994
6995#define HBA_INQUIRY_BYTE_COUNT 64
6996 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
6997 if (!h->hba_inquiry_data)
6998 return;
6999 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
7000 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
7001 if (rc != 0) {
7002 kfree(h->hba_inquiry_data);
7003 h->hba_inquiry_data = NULL;
7004 }
7005}
7006
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007007static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007008{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007009 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06007010 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007011
7012 if (!reset_devices)
7013 return 0;
7014
Tomas Henzl132aa222014-08-14 16:12:39 +02007015 /* kdump kernel is loading, we don't know in which state is
7016 * the pci interface. The dev->enable_cnt is equal zero
7017 * so we call enable+disable, wait a while and switch it on.
7018 */
7019 rc = pci_enable_device(pdev);
7020 if (rc) {
7021 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
7022 return -ENODEV;
7023 }
7024 pci_disable_device(pdev);
7025 msleep(260); /* a randomly chosen number */
7026 rc = pci_enable_device(pdev);
7027 if (rc) {
7028 dev_warn(&pdev->dev, "failed to enable device.\n");
7029 return -ENODEV;
7030 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007031
Tomas Henzl859c75a2014-09-12 14:44:15 +02007032 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06007033
Tomas Henzl3b747292015-01-23 16:41:20 -06007034 vaddr = pci_ioremap_bar(pdev, 0);
7035 if (vaddr == NULL) {
7036 rc = -ENOMEM;
7037 goto out_disable;
7038 }
7039 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
7040 iounmap(vaddr);
7041
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007042 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007043 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007044
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007045 /* -ENOTSUPP here means we cannot reset the controller
7046 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05007047 * "performant mode". Or, it might be 640x, which can't reset
7048 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007049 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06007050 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02007051 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007052
7053 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06007054 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007055 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
7056 if (hpsa_noop(pdev) == 0)
7057 break;
7058 else
7059 dev_warn(&pdev->dev, "no-op failed%s\n",
7060 (i < 11 ? "; re-trying" : ""));
7061 }
Tomas Henzl132aa222014-08-14 16:12:39 +02007062
7063out_disable:
7064
7065 pci_disable_device(pdev);
7066 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007067}
7068
Robert Elliott1fb7c982015-04-23 09:33:22 -05007069static void hpsa_free_cmd_pool(struct ctlr_info *h)
7070{
7071 kfree(h->cmd_pool_bits);
Robert Elliott105a3db2015-04-23 09:33:48 -05007072 h->cmd_pool_bits = NULL;
7073 if (h->cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007074 pci_free_consistent(h->pdev,
7075 h->nr_cmds * sizeof(struct CommandList),
7076 h->cmd_pool,
7077 h->cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007078 h->cmd_pool = NULL;
7079 h->cmd_pool_dhandle = 0;
7080 }
7081 if (h->errinfo_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007082 pci_free_consistent(h->pdev,
7083 h->nr_cmds * sizeof(struct ErrorInfo),
7084 h->errinfo_pool,
7085 h->errinfo_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007086 h->errinfo_pool = NULL;
7087 h->errinfo_pool_dhandle = 0;
7088 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05007089}
7090
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007091static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007092{
7093 h->cmd_pool_bits = kzalloc(
7094 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
7095 sizeof(unsigned long), GFP_KERNEL);
7096 h->cmd_pool = pci_alloc_consistent(h->pdev,
7097 h->nr_cmds * sizeof(*h->cmd_pool),
7098 &(h->cmd_pool_dhandle));
7099 h->errinfo_pool = pci_alloc_consistent(h->pdev,
7100 h->nr_cmds * sizeof(*h->errinfo_pool),
7101 &(h->errinfo_pool_dhandle));
7102 if ((h->cmd_pool_bits == NULL)
7103 || (h->cmd_pool == NULL)
7104 || (h->errinfo_pool == NULL)) {
7105 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06007106 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007107 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05007108 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007109 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06007110clean_up:
7111 hpsa_free_cmd_pool(h);
7112 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007113}
7114
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007115static void hpsa_irq_affinity_hints(struct ctlr_info *h)
7116{
Fabian Frederickec429952015-01-23 16:41:46 -06007117 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007118
7119 cpu = cpumask_first(cpu_online_mask);
7120 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06007121 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007122 cpu = cpumask_next(cpu, cpu_online_mask);
7123 }
7124}
7125
Robert Elliottec501a12015-01-23 16:41:40 -06007126/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
7127static void hpsa_free_irqs(struct ctlr_info *h)
7128{
7129 int i;
7130
7131 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
7132 /* Single reply queue, only one irq to free */
7133 i = h->intr_mode;
7134 irq_set_affinity_hint(h->intr[i], NULL);
7135 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007136 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007137 return;
7138 }
7139
7140 for (i = 0; i < h->msix_vector; i++) {
7141 irq_set_affinity_hint(h->intr[i], NULL);
7142 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007143 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007144 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007145 for (; i < MAX_REPLY_QUEUES; i++)
7146 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007147}
7148
Robert Elliott9ee61792015-01-23 16:42:32 -06007149/* returns 0 on success; cleans up and returns -Enn on error */
7150static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007151 irqreturn_t (*msixhandler)(int, void *),
7152 irqreturn_t (*intxhandler)(int, void *))
7153{
Matt Gates254f7962012-05-01 11:43:06 -05007154 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007155
Matt Gates254f7962012-05-01 11:43:06 -05007156 /*
7157 * initialize h->q[x] = x so that interrupt handlers know which
7158 * queue to process.
7159 */
7160 for (i = 0; i < MAX_REPLY_QUEUES; i++)
7161 h->q[i] = (u8) i;
7162
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007163 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05007164 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007165 for (i = 0; i < h->msix_vector; i++) {
Matt Gates254f7962012-05-01 11:43:06 -05007166 rc = request_irq(h->intr[i], msixhandler,
7167 0, h->devname,
7168 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007169 if (rc) {
7170 int j;
7171
7172 dev_err(&h->pdev->dev,
7173 "failed to get irq %d for %s\n",
7174 h->intr[i], h->devname);
7175 for (j = 0; j < i; j++) {
7176 free_irq(h->intr[j], &h->q[j]);
7177 h->q[j] = 0;
7178 }
7179 for (; j < MAX_REPLY_QUEUES; j++)
7180 h->q[j] = 0;
7181 return rc;
7182 }
7183 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007184 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05007185 } else {
7186 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007187 if (h->msix_vector > 0 || h->msi_vector) {
Matt Gates254f7962012-05-01 11:43:06 -05007188 rc = request_irq(h->intr[h->intr_mode],
7189 msixhandler, 0, h->devname,
7190 &h->q[h->intr_mode]);
7191 } else {
7192 rc = request_irq(h->intr[h->intr_mode],
7193 intxhandler, IRQF_SHARED, h->devname,
7194 &h->q[h->intr_mode]);
7195 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007196 irq_set_affinity_hint(h->intr[h->intr_mode], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05007197 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007198 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007199 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007200 h->intr[h->intr_mode], h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05007201 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007202 return -ENODEV;
7203 }
7204 return 0;
7205}
7206
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007207static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007208{
Robert Elliottbf43caf2015-04-23 09:33:38 -05007209 hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007210
7211 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
7212 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) {
7213 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
7214 return -1;
7215 }
7216
7217 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
7218 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) {
7219 dev_warn(&h->pdev->dev, "Board failed to become ready "
7220 "after soft reset.\n");
7221 return -1;
7222 }
7223
7224 return 0;
7225}
7226
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007227static void hpsa_free_reply_queues(struct ctlr_info *h)
7228{
7229 int i;
7230
7231 for (i = 0; i < h->nreply_queues; i++) {
7232 if (!h->reply_queue[i].head)
7233 continue;
Robert Elliott1fb7c982015-04-23 09:33:22 -05007234 pci_free_consistent(h->pdev,
7235 h->reply_queue_size,
7236 h->reply_queue[i].head,
7237 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007238 h->reply_queue[i].head = NULL;
7239 h->reply_queue[i].busaddr = 0;
7240 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007241 h->reply_queue_size = 0;
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007242}
7243
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007244static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
7245{
Robert Elliott105a3db2015-04-23 09:33:48 -05007246 hpsa_free_performant_mode(h); /* init_one 7 */
7247 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
7248 hpsa_free_cmd_pool(h); /* init_one 5 */
7249 hpsa_free_irqs(h); /* init_one 4 */
7250 hpsa_free_pci_init(h); /* init_one 3 */
7251 kfree(h); /* init_one 1 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007252}
7253
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007254/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06007255static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007256{
Webb Scales281a7fd2015-01-23 16:43:35 -06007257 int i, refcount;
7258 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007259 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007260
Don Brace080ef1c2015-01-23 16:43:25 -06007261 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06007262 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007263 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007264 refcount = atomic_inc_return(&c->refcount);
7265 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05007266 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06007267 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05007268 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05007269 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06007270 }
7271 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007272 }
Webb Scales25163bd2015-04-23 09:32:00 -05007273 dev_warn(&h->pdev->dev,
7274 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007275}
7276
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007277static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
7278{
Rusty Russellc8ed0012015-03-05 10:49:19 +10307279 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007280
Rusty Russellc8ed0012015-03-05 10:49:19 +10307281 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007282 u32 *lockup_detected;
7283 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7284 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007285 }
7286 wmb(); /* be sure the per-cpu variables are out to memory */
7287}
7288
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007289static void controller_lockup_detected(struct ctlr_info *h)
7290{
7291 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007292 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007293
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007294 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7295 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007296 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7297 if (!lockup_detected) {
7298 /* no heartbeat, but controller gave us a zero. */
7299 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05007300 "lockup detected after %d but scratchpad register is zero\n",
7301 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007302 lockup_detected = 0xffffffff;
7303 }
7304 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007305 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05007306 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
7307 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007308 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06007309 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007310}
7311
Webb Scales25163bd2015-04-23 09:32:00 -05007312static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007313{
7314 u64 now;
7315 u32 heartbeat;
7316 unsigned long flags;
7317
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007318 now = get_jiffies_64();
7319 /* If we've received an interrupt recently, we're ok. */
7320 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007321 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007322 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007323
7324 /*
7325 * If we've already checked the heartbeat recently, we're ok.
7326 * This could happen if someone sends us a signal. We
7327 * otherwise don't care about signals in this thread.
7328 */
7329 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007330 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007331 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007332
7333 /* If heartbeat has not changed since we last looked, we're not ok. */
7334 spin_lock_irqsave(&h->lock, flags);
7335 heartbeat = readl(&h->cfgtable->HeartBeat);
7336 spin_unlock_irqrestore(&h->lock, flags);
7337 if (h->last_heartbeat == heartbeat) {
7338 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05007339 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007340 }
7341
7342 /* We're ok. */
7343 h->last_heartbeat = heartbeat;
7344 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05007345 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007346}
7347
Stephen M. Cameron98465902014-02-21 16:25:00 -06007348static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007349{
7350 int i;
7351 char *event_type;
7352
Stephen Camerone4aa3e62015-01-23 16:44:07 -06007353 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7354 return;
7355
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007356 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06007357 if ((h->transMethod & (CFGTBL_Trans_io_accel1
7358 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007359 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
7360 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
7361
7362 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
7363 event_type = "state change";
7364 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
7365 event_type = "configuration change";
7366 /* Stop sending new RAID offload reqs via the IO accelerator */
7367 scsi_block_requests(h->scsi_host);
7368 for (i = 0; i < h->ndevices; i++)
7369 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007370 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007371 /* Set 'accelerator path config change' bit */
7372 dev_warn(&h->pdev->dev,
7373 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
7374 h->events, event_type);
7375 writel(h->events, &(h->cfgtable->clear_event_notify));
7376 /* Set the "clear event notify field update" bit 6 */
7377 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7378 /* Wait until ctlr clears 'clear event notify field', bit 6 */
7379 hpsa_wait_for_clear_event_notify_ack(h);
7380 scsi_unblock_requests(h->scsi_host);
7381 } else {
7382 /* Acknowledge controller notification events. */
7383 writel(h->events, &(h->cfgtable->clear_event_notify));
7384 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7385 hpsa_wait_for_clear_event_notify_ack(h);
7386#if 0
7387 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7388 hpsa_wait_for_mode_change_ack(h);
7389#endif
7390 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007391 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007392}
7393
7394/* Check a register on the controller to see if there are configuration
7395 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06007396 * we should rescan the controller for devices.
7397 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007398 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06007399static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007400{
7401 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06007402 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007403
7404 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06007405 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007406}
7407
Stephen M. Cameron98465902014-02-21 16:25:00 -06007408/*
7409 * Check if any of the offline devices have become ready
7410 */
7411static int hpsa_offline_devices_ready(struct ctlr_info *h)
7412{
7413 unsigned long flags;
7414 struct offline_device_entry *d;
7415 struct list_head *this, *tmp;
7416
7417 spin_lock_irqsave(&h->offline_device_lock, flags);
7418 list_for_each_safe(this, tmp, &h->offline_device_list) {
7419 d = list_entry(this, struct offline_device_entry,
7420 offline_list);
7421 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007422 if (!hpsa_volume_offline(h, d->scsi3addr)) {
7423 spin_lock_irqsave(&h->offline_device_lock, flags);
7424 list_del(&d->offline_list);
7425 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007426 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007427 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007428 spin_lock_irqsave(&h->offline_device_lock, flags);
7429 }
7430 spin_unlock_irqrestore(&h->offline_device_lock, flags);
7431 return 0;
7432}
7433
Don Brace6636e7f2015-01-23 16:45:17 -06007434static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007435{
7436 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007437 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06007438 struct ctlr_info, rescan_ctlr_work);
7439
7440
7441 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007442 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007443
7444 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
7445 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007446 hpsa_ack_ctlr_events(h);
7447 hpsa_scan_start(h->scsi_host);
7448 scsi_host_put(h->scsi_host);
7449 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007450 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007451 if (!h->remove_in_progress)
7452 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007453 h->heartbeat_sample_interval);
7454 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007455}
7456
Don Brace6636e7f2015-01-23 16:45:17 -06007457static void hpsa_monitor_ctlr_worker(struct work_struct *work)
7458{
7459 unsigned long flags;
7460 struct ctlr_info *h = container_of(to_delayed_work(work),
7461 struct ctlr_info, monitor_ctlr_work);
7462
7463 detect_controller_lockup(h);
7464 if (lockup_detected(h))
7465 return;
7466
7467 spin_lock_irqsave(&h->lock, flags);
7468 if (!h->remove_in_progress)
7469 schedule_delayed_work(&h->monitor_ctlr_work,
7470 h->heartbeat_sample_interval);
7471 spin_unlock_irqrestore(&h->lock, flags);
7472}
7473
7474static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
7475 char *name)
7476{
7477 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06007478
Don Brace397ea9c2015-02-06 17:44:15 -06007479 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06007480 if (!wq)
7481 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
7482
7483 return wq;
7484}
7485
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007486static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007487{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007488 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007489 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007490 int try_soft_reset = 0;
7491 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007492 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007493
7494 if (number_of_controllers == 0)
7495 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007496
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007497 rc = hpsa_lookup_board_id(pdev, &board_id);
7498 if (rc < 0) {
7499 dev_warn(&pdev->dev, "Board ID not found\n");
7500 return rc;
7501 }
7502
7503 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007504 if (rc) {
7505 if (rc != -ENOTSUPP)
7506 return rc;
7507 /* If the reset fails in a particular way (it has no way to do
7508 * a proper hard reset, so returns -ENOTSUPP) we can try to do
7509 * a soft reset once we get the controller configured up to the
7510 * point that it can accept a command.
7511 */
7512 try_soft_reset = 1;
7513 rc = 0;
7514 }
7515
7516reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007517
Don Brace303932f2010-02-04 08:42:40 -06007518 /* Command structures must be aligned on a 32-byte boundary because
7519 * the 5 lower bits of the address are used by the hardware. and by
7520 * the driver. See comments in hpsa.h for more info.
7521 */
Don Brace303932f2010-02-04 08:42:40 -06007522 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007523 h = kzalloc(sizeof(*h), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05007524 if (!h) {
7525 dev_err(&pdev->dev, "Failed to allocate controller head\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007526 return -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05007527 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007528
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007529 h->pdev = pdev;
Robert Elliott105a3db2015-04-23 09:33:48 -05007530
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007531 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007532 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007533 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007534 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007535 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06007536 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007537 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007538
Don Brace6636e7f2015-01-23 16:45:17 -06007539 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
7540 if (!h->rescan_ctlr_wq) {
Don Brace080ef1c2015-01-23 16:43:25 -06007541 rc = -ENOMEM;
7542 goto clean1;
7543 }
Don Brace6636e7f2015-01-23 16:45:17 -06007544
7545 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
7546 if (!h->resubmit_wq) {
7547 rc = -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05007548 goto clean1; /* aer/h */
Don Brace6636e7f2015-01-23 16:45:17 -06007549 }
7550
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007551 /* Allocate and clear per-cpu variable lockup_detected */
7552 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007553 if (!h->lockup_detected) {
Robert Elliott105a3db2015-04-23 09:33:48 -05007554 dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007555 rc = -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05007556 goto clean1; /* wq/aer/h */
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007557 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007558 set_lockup_detected_for_all_cpus(h, 0);
7559
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007560 rc = hpsa_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05007561 if (rc)
7562 goto clean2; /* lockup, wq/aer/h */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007563
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007564 sprintf(h->devname, HPSA "%d", number_of_controllers);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007565 h->ctlr = number_of_controllers;
7566 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007567
7568 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007569 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
7570 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007571 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007572 } else {
7573 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
7574 if (rc == 0) {
7575 dac = 0;
7576 } else {
7577 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott105a3db2015-04-23 09:33:48 -05007578 goto clean3; /* pci, lockup, wq/aer/h */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007579 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007580 }
7581
7582 /* make sure the board interrupts are off */
7583 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007584
Robert Elliott105a3db2015-04-23 09:33:48 -05007585 rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
7586 if (rc)
7587 goto clean3; /* pci, lockup, wq/aer/h */
Don Brace303932f2010-02-04 08:42:40 -06007588 dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n",
7589 h->devname, pdev->device,
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007590 h->intr[h->intr_mode], dac ? "" : " not");
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007591 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06007592 if (rc)
Robert Elliott105a3db2015-04-23 09:33:48 -05007593 goto clean4; /* irq, pci, lockup, wq/aer/h */
7594 rc = hpsa_alloc_sg_chain_blocks(h);
7595 if (rc)
7596 goto clean5; /* cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007597 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007598 init_waitqueue_head(&h->abort_cmd_wait_queue);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007599 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007600
7601 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007602 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007603 h->hba_mode_enabled = 0;
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007604 h->scsi_host = NULL;
7605 spin_lock_init(&h->devlock);
Robert Elliott105a3db2015-04-23 09:33:48 -05007606 rc = hpsa_put_ctlr_into_performant_mode(h);
7607 if (rc)
7608 goto clean6; /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007609
Robert Elliott105a3db2015-04-23 09:33:48 -05007610 /*
7611 * At this point, the controller is ready to take commands.
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007612 * Now, if reset_devices and the hard reset didn't work, try
7613 * the soft reset and see if that works.
7614 */
7615 if (try_soft_reset) {
7616
7617 /* This is kind of gross. We may or may not get a completion
7618 * from the soft reset command, and if we do, then the value
7619 * from the fifo may or may not be valid. So, we wait 10 secs
7620 * after the reset throwing away any completions we get during
7621 * that time. Unregister the interrupt handler and register
7622 * fake ones to scoop up any residual completions.
7623 */
7624 spin_lock_irqsave(&h->lock, flags);
7625 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7626 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06007627 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06007628 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007629 hpsa_intx_discard_completions);
7630 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06007631 dev_warn(&h->pdev->dev,
7632 "Failed to request_irq after soft reset.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007633 goto clean4;
7634 }
7635
7636 rc = hpsa_kdump_soft_reset(h);
7637 if (rc)
7638 /* Neither hard nor soft reset worked, we're hosed. */
7639 goto clean4;
7640
7641 dev_info(&h->pdev->dev, "Board READY.\n");
7642 dev_info(&h->pdev->dev,
7643 "Waiting for stale completions to drain.\n");
7644 h->access.set_intr_mask(h, HPSA_INTR_ON);
7645 msleep(10000);
7646 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7647
7648 rc = controller_reset_failed(h->cfgtable);
7649 if (rc)
7650 dev_info(&h->pdev->dev,
7651 "Soft reset appears to have failed.\n");
7652
7653 /* since the controller's reset, we have to go back and re-init
7654 * everything. Easiest to just forget what we've done and do it
7655 * all over again.
7656 */
7657 hpsa_undo_allocations_after_kdump_soft_reset(h);
7658 try_soft_reset = 0;
7659 if (rc)
7660 /* don't go to clean4, we already unallocated */
7661 return -ENODEV;
7662
7663 goto reinit_after_soft_reset;
7664 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007665
Robert Elliott105a3db2015-04-23 09:33:48 -05007666 /* Enable Accelerated IO path at driver layer */
7667 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06007668
Scott Teele863d682014-02-18 13:57:05 -06007669
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007670 /* Turn the interrupts on so we can service requests */
7671 h->access.set_intr_mask(h, HPSA_INTR_ON);
7672
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007673 hpsa_hba_inquiry(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05007674 rc = hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
Stephen Cameron4a4384c2015-04-23 09:32:37 -05007675 if (rc)
Robert Elliott105a3db2015-04-23 09:33:48 -05007676 goto clean7;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007677
7678 /* Monitor the controller for firmware lockups */
7679 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
7680 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
7681 schedule_delayed_work(&h->monitor_ctlr_work,
7682 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06007683 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
7684 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
7685 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05007686 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007687
Robert Elliott105a3db2015-04-23 09:33:48 -05007688clean7: /* perf, sg, cmd, irq, pci, lockup, wq/aer/h */
7689 kfree(h->hba_inquiry_data);
7690 hpsa_free_performant_mode(h);
7691 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7692clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007693 hpsa_free_sg_chain_blocks(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05007694clean5: /* cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007695 hpsa_free_cmd_pool(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05007696clean4: /* irq, pci, lockup, wq/aer/h */
Robert Elliottec501a12015-01-23 16:41:40 -06007697 hpsa_free_irqs(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05007698clean3: /* pci, lockup, wq/aer/h */
Robert Elliott195f2c62015-04-23 09:33:17 -05007699 hpsa_free_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05007700clean2: /* lockup, wq/aer/h */
7701 if (h->lockup_detected) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007702 free_percpu(h->lockup_detected);
Robert Elliott105a3db2015-04-23 09:33:48 -05007703 h->lockup_detected = NULL;
7704 }
7705clean1: /* wq/aer/h */
7706 if (h->resubmit_wq) {
7707 destroy_workqueue(h->resubmit_wq);
7708 h->resubmit_wq = NULL;
7709 }
7710 if (h->rescan_ctlr_wq) {
7711 destroy_workqueue(h->rescan_ctlr_wq);
7712 h->rescan_ctlr_wq = NULL;
7713 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007714 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007715 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007716}
7717
7718static void hpsa_flush_cache(struct ctlr_info *h)
7719{
7720 char *flush_buf;
7721 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007722 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007723
7724 /* Don't bother trying to flush the cache if locked up */
Webb Scales25163bd2015-04-23 09:32:00 -05007725 /* FIXME not necessary if do_simple_cmd does the check */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007726 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007727 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007728 flush_buf = kzalloc(4, GFP_KERNEL);
7729 if (!flush_buf)
7730 return;
7731
Stephen Cameron45fcb862015-01-23 16:43:04 -06007732 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05007733
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007734 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
7735 RAID_CTLR_LUNID, TYPE_CMD)) {
7736 goto out;
7737 }
Webb Scales25163bd2015-04-23 09:32:00 -05007738 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
7739 PCI_DMA_TODEVICE, NO_TIMEOUT);
7740 if (rc)
7741 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007742 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007743out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007744 dev_warn(&h->pdev->dev,
7745 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06007746 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007747 kfree(flush_buf);
7748}
7749
7750static void hpsa_shutdown(struct pci_dev *pdev)
7751{
7752 struct ctlr_info *h;
7753
7754 h = pci_get_drvdata(pdev);
7755 /* Turn board interrupts off and send the flush cache command
7756 * sendcmd will turn off interrupt, and send the flush...
7757 * To write all data in the battery backed cache to disks
7758 */
7759 hpsa_flush_cache(h);
7760 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliott105a3db2015-04-23 09:33:48 -05007761 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliottcc64c812015-04-23 09:33:12 -05007762 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007763}
7764
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007765static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007766{
7767 int i;
7768
Robert Elliott105a3db2015-04-23 09:33:48 -05007769 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007770 kfree(h->dev[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007771 h->dev[i] = NULL;
7772 }
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007773}
7774
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007775static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007776{
7777 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007778 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007779
7780 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007781 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007782 return;
7783 }
7784 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007785
7786 /* Get rid of any controller monitoring work items */
7787 spin_lock_irqsave(&h->lock, flags);
7788 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007789 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007790 cancel_delayed_work_sync(&h->monitor_ctlr_work);
7791 cancel_delayed_work_sync(&h->rescan_ctlr_work);
7792 destroy_workqueue(h->rescan_ctlr_wq);
7793 destroy_workqueue(h->resubmit_wq);
Robert Elliottcc64c812015-04-23 09:33:12 -05007794
Robert Elliott105a3db2015-04-23 09:33:48 -05007795 /* includes hpsa_free_irqs - init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007796 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007797 hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05007798
Robert Elliott105a3db2015-04-23 09:33:48 -05007799 hpsa_free_device_info(h); /* scan */
7800
7801 hpsa_unregister_scsi(h); /* init_one "8" */
7802 kfree(h->hba_inquiry_data); /* init_one "8" */
7803 h->hba_inquiry_data = NULL; /* init_one "8" */
7804 hpsa_free_performant_mode(h); /* init_one 7 */
7805 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
7806 hpsa_free_cmd_pool(h); /* init_one 5 */
7807
7808 /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007809
7810 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Robert Elliott105a3db2015-04-23 09:33:48 -05007811 hpsa_free_pci_init(h); /* init_one 3 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007812
Robert Elliott105a3db2015-04-23 09:33:48 -05007813 free_percpu(h->lockup_detected); /* init_one 2 */
7814 h->lockup_detected = NULL; /* init_one 2 */
7815 /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */
7816 kfree(h); /* init_one 1 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007817}
7818
7819static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
7820 __attribute__((unused)) pm_message_t state)
7821{
7822 return -ENOSYS;
7823}
7824
7825static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
7826{
7827 return -ENOSYS;
7828}
7829
7830static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007831 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007832 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007833 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007834 .id_table = hpsa_pci_device_id, /* id_table */
7835 .shutdown = hpsa_shutdown,
7836 .suspend = hpsa_suspend,
7837 .resume = hpsa_resume,
7838};
7839
Don Brace303932f2010-02-04 08:42:40 -06007840/* Fill in bucket_map[], given nsgs (the max number of
7841 * scatter gather elements supported) and bucket[],
7842 * which is an array of 8 integers. The bucket[] array
7843 * contains 8 different DMA transfer sizes (in 16
7844 * byte increments) which the controller uses to fetch
7845 * commands. This function fills in bucket_map[], which
7846 * maps a given number of scatter gather elements to one of
7847 * the 8 DMA transfer sizes. The point of it is to allow the
7848 * controller to only do as much DMA as needed to fetch the
7849 * command, with the DMA transfer size encoded in the lower
7850 * bits of the command address.
7851 */
7852static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06007853 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06007854{
7855 int i, j, b, size;
7856
Don Brace303932f2010-02-04 08:42:40 -06007857 /* Note, bucket_map must have nsgs+1 entries. */
7858 for (i = 0; i <= nsgs; i++) {
7859 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06007860 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06007861 b = num_buckets; /* Assume the biggest bucket */
7862 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06007863 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06007864 if (bucket[j] >= size) {
7865 b = j;
7866 break;
7867 }
7868 }
7869 /* for a command with i SG entries, use bucket b. */
7870 bucket_map[i] = b;
7871 }
7872}
7873
Robert Elliott105a3db2015-04-23 09:33:48 -05007874/*
7875 * return -ENODEV on err, 0 on success (or no action)
7876 * allocates numerous items that must be freed later
7877 */
Robert Elliottc706a792015-01-23 16:45:01 -06007878static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06007879{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007880 int i;
7881 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06007882 unsigned long transMethod = CFGTBL_Trans_Performant |
7883 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007884 CFGTBL_Trans_enable_directed_msix |
7885 (trans_support & (CFGTBL_Trans_io_accel1 |
7886 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06007887 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007888
7889 /* This is a bit complicated. There are 8 registers on
7890 * the controller which we write to to tell it 8 different
7891 * sizes of commands which there may be. It's a way of
7892 * reducing the DMA done to fetch each command. Encoded into
7893 * each command's tag are 3 bits which communicate to the controller
7894 * which of the eight sizes that command fits within. The size of
7895 * each command depends on how many scatter gather entries there are.
7896 * Each SG entry requires 16 bytes. The eight registers are programmed
7897 * with the number of 16-byte blocks a command of that size requires.
7898 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007899 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007900 * blocks. Note, this only extends to the SG entries contained
7901 * within the command block, and does not extend to chained blocks
7902 * of SG elements. bft[] contains the eight values we write to
7903 * the registers. They are not evenly distributed, but have more
7904 * sizes for small commands, and fewer sizes for larger commands.
7905 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007906 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007907#define MIN_IOACCEL2_BFT_ENTRY 5
7908#define HPSA_IOACCEL2_HEADER_SZ 4
7909 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
7910 13, 14, 15, 16, 17, 18, 19,
7911 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
7912 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
7913 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
7914 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
7915 16 * MIN_IOACCEL2_BFT_ENTRY);
7916 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007917 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06007918 /* 5 = 1 s/g entry or 4k
7919 * 6 = 2 s/g entry or 8k
7920 * 8 = 4 s/g entry or 16k
7921 * 10 = 6 s/g entry or 24k
7922 */
Don Brace303932f2010-02-04 08:42:40 -06007923
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05007924 /* If the controller supports either ioaccel method then
7925 * we can also use the RAID stack submit path that does not
7926 * perform the superfluous readl() after each command submission.
7927 */
7928 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
7929 access = SA5_performant_access_no_read;
7930
Don Brace303932f2010-02-04 08:42:40 -06007931 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007932 for (i = 0; i < h->nreply_queues; i++)
7933 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06007934
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007935 bft[7] = SG_ENTRIES_IN_CMD + 4;
7936 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06007937 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06007938 for (i = 0; i < 8; i++)
7939 writel(bft[i], &h->transtable->BlockFetch[i]);
7940
7941 /* size of controller ring buffer */
7942 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05007943 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06007944 writel(0, &h->transtable->RepQCtrAddrLow32);
7945 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05007946
7947 for (i = 0; i < h->nreply_queues; i++) {
7948 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007949 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05007950 &h->transtable->RepQAddr[i].lower);
7951 }
7952
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007953 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06007954 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
7955 /*
7956 * enable outbound interrupt coalescing in accelerator mode;
7957 */
7958 if (trans_support & CFGTBL_Trans_io_accel1) {
7959 access = SA5_ioaccel_mode1_access;
7960 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7961 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06007962 } else {
7963 if (trans_support & CFGTBL_Trans_io_accel2) {
7964 access = SA5_ioaccel_mode2_access;
7965 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7966 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
7967 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007968 }
Don Brace303932f2010-02-04 08:42:40 -06007969 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007970 if (hpsa_wait_for_mode_change_ack(h)) {
7971 dev_err(&h->pdev->dev,
7972 "performant mode problem - doorbell timeout\n");
7973 return -ENODEV;
7974 }
Don Brace303932f2010-02-04 08:42:40 -06007975 register_value = readl(&(h->cfgtable->TransportActive));
7976 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007977 dev_err(&h->pdev->dev,
7978 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06007979 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06007980 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007981 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06007982 h->access = access;
7983 h->transMethod = transMethod;
7984
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007985 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
7986 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06007987 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06007988
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007989 if (trans_support & CFGTBL_Trans_io_accel1) {
7990 /* Set up I/O accelerator mode */
7991 for (i = 0; i < h->nreply_queues; i++) {
7992 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
7993 h->reply_queue[i].current_entry =
7994 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
7995 }
7996 bft[7] = h->ioaccel_maxsg + 8;
7997 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
7998 h->ioaccel1_blockFetchTable);
7999
8000 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008001 for (i = 0; i < h->nreply_queues; i++)
8002 memset(h->reply_queue[i].head,
8003 (u8) IOACCEL_MODE1_REPLY_UNUSED,
8004 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008005
8006 /* set all the constant fields in the accelerator command
8007 * frames once at init time to save CPU cycles later.
8008 */
8009 for (i = 0; i < h->nr_cmds; i++) {
8010 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
8011
8012 cp->function = IOACCEL1_FUNCTION_SCSIIO;
8013 cp->err_info = (u32) (h->errinfo_pool_dhandle +
8014 (i * sizeof(struct ErrorInfo)));
8015 cp->err_info_len = sizeof(struct ErrorInfo);
8016 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06008017 cp->host_context_flags =
8018 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008019 cp->timeout_sec = 0;
8020 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008021 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06008022 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008023 cp->host_addr =
8024 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008025 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008026 }
8027 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8028 u64 cfg_offset, cfg_base_addr_index;
8029 u32 bft2_offset, cfg_base_addr;
8030 int rc;
8031
8032 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
8033 &cfg_base_addr_index, &cfg_offset);
8034 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
8035 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
8036 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
8037 4, h->ioaccel2_blockFetchTable);
8038 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
8039 BUILD_BUG_ON(offsetof(struct CfgTable,
8040 io_accel_request_size_offset) != 0xb8);
8041 h->ioaccel2_bft2_regs =
8042 remap_pci_mem(pci_resource_start(h->pdev,
8043 cfg_base_addr_index) +
8044 cfg_offset + bft2_offset,
8045 ARRAY_SIZE(bft2) *
8046 sizeof(*h->ioaccel2_bft2_regs));
8047 for (i = 0; i < ARRAY_SIZE(bft2); i++)
8048 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06008049 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008050 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008051 if (hpsa_wait_for_mode_change_ack(h)) {
8052 dev_err(&h->pdev->dev,
8053 "performant mode problem - enabling ioaccel mode\n");
8054 return -ENODEV;
8055 }
8056 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008057}
8058
Robert Elliott1fb7c982015-04-23 09:33:22 -05008059/* Free ioaccel1 mode command blocks and block fetch table */
8060static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
8061{
Robert Elliott105a3db2015-04-23 09:33:48 -05008062 if (h->ioaccel_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008063 pci_free_consistent(h->pdev,
8064 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8065 h->ioaccel_cmd_pool,
8066 h->ioaccel_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008067 h->ioaccel_cmd_pool = NULL;
8068 h->ioaccel_cmd_pool_dhandle = 0;
8069 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008070 kfree(h->ioaccel1_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008071 h->ioaccel1_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008072}
8073
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008074/* Allocate ioaccel1 mode command blocks and block fetch table */
8075static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06008076{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008077 h->ioaccel_maxsg =
8078 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8079 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
8080 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
8081
Matt Gatese1f7de02014-02-18 13:55:17 -06008082 /* Command structures must be aligned on a 128-byte boundary
8083 * because the 7 lower bits of the address are used by the
8084 * hardware.
8085 */
Matt Gatese1f7de02014-02-18 13:55:17 -06008086 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
8087 IOACCEL1_COMMANDLIST_ALIGNMENT);
8088 h->ioaccel_cmd_pool =
8089 pci_alloc_consistent(h->pdev,
8090 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8091 &(h->ioaccel_cmd_pool_dhandle));
8092
8093 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008094 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06008095 sizeof(u32)), GFP_KERNEL);
8096
8097 if ((h->ioaccel_cmd_pool == NULL) ||
8098 (h->ioaccel1_blockFetchTable == NULL))
8099 goto clean_up;
8100
8101 memset(h->ioaccel_cmd_pool, 0,
8102 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
8103 return 0;
8104
8105clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008106 hpsa_free_ioaccel1_cmd_and_bft(h);
Robert Elliott2dd02d72015-04-23 09:33:43 -05008107 return -ENOMEM;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008108}
8109
Robert Elliott1fb7c982015-04-23 09:33:22 -05008110/* Free ioaccel2 mode command blocks and block fetch table */
8111static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
8112{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008113 hpsa_free_ioaccel2_sg_chain_blocks(h);
8114
Robert Elliott105a3db2015-04-23 09:33:48 -05008115 if (h->ioaccel2_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008116 pci_free_consistent(h->pdev,
8117 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8118 h->ioaccel2_cmd_pool,
8119 h->ioaccel2_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008120 h->ioaccel2_cmd_pool = NULL;
8121 h->ioaccel2_cmd_pool_dhandle = 0;
8122 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008123 kfree(h->ioaccel2_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008124 h->ioaccel2_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008125}
8126
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008127/* Allocate ioaccel2 mode command blocks and block fetch table */
8128static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008129{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008130 int rc;
8131
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008132 /* Allocate ioaccel2 mode command blocks and block fetch table */
8133
8134 h->ioaccel_maxsg =
8135 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8136 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
8137 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
8138
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008139 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
8140 IOACCEL2_COMMANDLIST_ALIGNMENT);
8141 h->ioaccel2_cmd_pool =
8142 pci_alloc_consistent(h->pdev,
8143 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8144 &(h->ioaccel2_cmd_pool_dhandle));
8145
8146 h->ioaccel2_blockFetchTable =
8147 kmalloc(((h->ioaccel_maxsg + 1) *
8148 sizeof(u32)), GFP_KERNEL);
8149
8150 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05008151 (h->ioaccel2_blockFetchTable == NULL)) {
8152 rc = -ENOMEM;
8153 goto clean_up;
8154 }
8155
8156 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
8157 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008158 goto clean_up;
8159
8160 memset(h->ioaccel2_cmd_pool, 0,
8161 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
8162 return 0;
8163
8164clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008165 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05008166 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008167}
8168
Robert Elliott105a3db2015-04-23 09:33:48 -05008169/* Free items allocated by hpsa_put_ctlr_into_performant_mode */
8170static void hpsa_free_performant_mode(struct ctlr_info *h)
8171{
8172 kfree(h->blockFetchTable);
8173 h->blockFetchTable = NULL;
8174 hpsa_free_reply_queues(h);
8175 hpsa_free_ioaccel1_cmd_and_bft(h);
8176 hpsa_free_ioaccel2_cmd_and_bft(h);
8177}
8178
8179/* return -ENODEV on error, 0 on success (or no action)
8180 * allocates numerous items that must be freed later
8181 */
8182static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008183{
8184 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06008185 unsigned long transMethod = CFGTBL_Trans_Performant |
8186 CFGTBL_Trans_use_short_tags;
Robert Elliott105a3db2015-04-23 09:33:48 -05008187 int i, rc;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008188
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008189 if (hpsa_simple_mode)
Robert Elliott105a3db2015-04-23 09:33:48 -05008190 return 0;
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008191
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008192 trans_support = readl(&(h->cfgtable->TransportSupport));
8193 if (!(trans_support & PERFORMANT_MODE))
Robert Elliott105a3db2015-04-23 09:33:48 -05008194 return 0;
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008195
Matt Gatese1f7de02014-02-18 13:55:17 -06008196 /* Check for I/O accelerator mode support */
8197 if (trans_support & CFGTBL_Trans_io_accel1) {
8198 transMethod |= CFGTBL_Trans_io_accel1 |
8199 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008200 rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
8201 if (rc)
8202 return rc;
8203 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8204 transMethod |= CFGTBL_Trans_io_accel2 |
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008205 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008206 rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
8207 if (rc)
8208 return rc;
Matt Gatese1f7de02014-02-18 13:55:17 -06008209 }
8210
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008211 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05008212 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008213 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008214 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008215
Matt Gates254f7962012-05-01 11:43:06 -05008216 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008217 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
8218 h->reply_queue_size,
8219 &(h->reply_queue[i].busaddr));
Robert Elliott105a3db2015-04-23 09:33:48 -05008220 if (!h->reply_queue[i].head) {
8221 rc = -ENOMEM;
8222 goto clean1; /* rq, ioaccel */
8223 }
Matt Gates254f7962012-05-01 11:43:06 -05008224 h->reply_queue[i].size = h->max_commands;
8225 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
8226 h->reply_queue[i].current_entry = 0;
8227 }
8228
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008229 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008230 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008231 sizeof(u32)), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008232 if (!h->blockFetchTable) {
8233 rc = -ENOMEM;
8234 goto clean1; /* rq, ioaccel */
8235 }
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008236
Robert Elliott105a3db2015-04-23 09:33:48 -05008237 rc = hpsa_enter_performant_mode(h, trans_support);
8238 if (rc)
8239 goto clean2; /* bft, rq, ioaccel */
8240 return 0;
Don Brace303932f2010-02-04 08:42:40 -06008241
Robert Elliott105a3db2015-04-23 09:33:48 -05008242clean2: /* bft, rq, ioaccel */
Don Brace303932f2010-02-04 08:42:40 -06008243 kfree(h->blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008244 h->blockFetchTable = NULL;
8245clean1: /* rq, ioaccel */
8246 hpsa_free_reply_queues(h);
8247 hpsa_free_ioaccel1_cmd_and_bft(h);
8248 hpsa_free_ioaccel2_cmd_and_bft(h);
8249 return rc;
Don Brace303932f2010-02-04 08:42:40 -06008250}
8251
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008252static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008253{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008254 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
8255}
8256
8257static void hpsa_drain_accel_commands(struct ctlr_info *h)
8258{
8259 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06008260 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06008261 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008262
Don Bracef2405db2015-01-23 16:43:09 -06008263 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008264 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06008265 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06008266 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06008267 refcount = atomic_inc_return(&c->refcount);
8268 if (refcount > 1) /* Command is allocated */
8269 accel_cmds_out += is_accelerated_cmd(c);
8270 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06008271 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008272 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06008273 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008274 msleep(100);
8275 } while (1);
8276}
8277
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008278/*
8279 * This is it. Register the PCI driver information for the cards we control
8280 * the OS will call our registered routines when it finds one of our cards.
8281 */
8282static int __init hpsa_init(void)
8283{
Mike Miller31468402010-02-25 14:03:12 -06008284 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008285}
8286
8287static void __exit hpsa_cleanup(void)
8288{
8289 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008290}
8291
Matt Gatese1f7de02014-02-18 13:55:17 -06008292static void __attribute__((unused)) verify_offsets(void)
8293{
8294#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06008295 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
8296
8297 VERIFY_OFFSET(structure_size, 0);
8298 VERIFY_OFFSET(volume_blk_size, 4);
8299 VERIFY_OFFSET(volume_blk_cnt, 8);
8300 VERIFY_OFFSET(phys_blk_shift, 16);
8301 VERIFY_OFFSET(parity_rotation_shift, 17);
8302 VERIFY_OFFSET(strip_size, 18);
8303 VERIFY_OFFSET(disk_starting_blk, 20);
8304 VERIFY_OFFSET(disk_blk_cnt, 28);
8305 VERIFY_OFFSET(data_disks_per_row, 36);
8306 VERIFY_OFFSET(metadata_disks_per_row, 38);
8307 VERIFY_OFFSET(row_cnt, 40);
8308 VERIFY_OFFSET(layout_map_count, 42);
8309 VERIFY_OFFSET(flags, 44);
8310 VERIFY_OFFSET(dekindex, 46);
8311 /* VERIFY_OFFSET(reserved, 48 */
8312 VERIFY_OFFSET(data, 64);
8313
8314#undef VERIFY_OFFSET
8315
8316#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06008317 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
8318
8319 VERIFY_OFFSET(IU_type, 0);
8320 VERIFY_OFFSET(direction, 1);
8321 VERIFY_OFFSET(reply_queue, 2);
8322 /* VERIFY_OFFSET(reserved1, 3); */
8323 VERIFY_OFFSET(scsi_nexus, 4);
8324 VERIFY_OFFSET(Tag, 8);
8325 VERIFY_OFFSET(cdb, 16);
8326 VERIFY_OFFSET(cciss_lun, 32);
8327 VERIFY_OFFSET(data_len, 40);
8328 VERIFY_OFFSET(cmd_priority_task_attr, 44);
8329 VERIFY_OFFSET(sg_count, 45);
8330 /* VERIFY_OFFSET(reserved3 */
8331 VERIFY_OFFSET(err_ptr, 48);
8332 VERIFY_OFFSET(err_len, 56);
8333 /* VERIFY_OFFSET(reserved4 */
8334 VERIFY_OFFSET(sg, 64);
8335
8336#undef VERIFY_OFFSET
8337
8338#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06008339 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
8340
8341 VERIFY_OFFSET(dev_handle, 0x00);
8342 VERIFY_OFFSET(reserved1, 0x02);
8343 VERIFY_OFFSET(function, 0x03);
8344 VERIFY_OFFSET(reserved2, 0x04);
8345 VERIFY_OFFSET(err_info, 0x0C);
8346 VERIFY_OFFSET(reserved3, 0x10);
8347 VERIFY_OFFSET(err_info_len, 0x12);
8348 VERIFY_OFFSET(reserved4, 0x13);
8349 VERIFY_OFFSET(sgl_offset, 0x14);
8350 VERIFY_OFFSET(reserved5, 0x15);
8351 VERIFY_OFFSET(transfer_len, 0x1C);
8352 VERIFY_OFFSET(reserved6, 0x20);
8353 VERIFY_OFFSET(io_flags, 0x24);
8354 VERIFY_OFFSET(reserved7, 0x26);
8355 VERIFY_OFFSET(LUN, 0x34);
8356 VERIFY_OFFSET(control, 0x3C);
8357 VERIFY_OFFSET(CDB, 0x40);
8358 VERIFY_OFFSET(reserved8, 0x50);
8359 VERIFY_OFFSET(host_context_flags, 0x60);
8360 VERIFY_OFFSET(timeout_sec, 0x62);
8361 VERIFY_OFFSET(ReplyQueue, 0x64);
8362 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008363 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06008364 VERIFY_OFFSET(host_addr, 0x70);
8365 VERIFY_OFFSET(CISS_LUN, 0x78);
8366 VERIFY_OFFSET(SG, 0x78 + 8);
8367#undef VERIFY_OFFSET
8368}
8369
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008370module_init(hpsa_init);
8371module_exit(hpsa_cleanup);