blob: d09333ad20b96b8b2321450219d2d12bf1db6e6c [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
Scott Teel51c35132014-02-18 13:57:26 -06003 * Copyright 2000, 2014 Hewlett-Packard Development Company, L.P.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
12 * NON INFRINGEMENT. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/interrupt.h>
24#include <linux/types.h>
25#include <linux/pci.h>
Matthew Garrette5a44df2011-11-11 11:14:23 -050026#include <linux/pci-aspm.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080027#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/delay.h>
30#include <linux/fs.h>
31#include <linux/timer.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080032#include <linux/init.h>
33#include <linux/spinlock.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080034#include <linux/compat.h>
35#include <linux/blktrace_api.h>
36#include <linux/uaccess.h>
37#include <linux/io.h>
38#include <linux/dma-mapping.h>
39#include <linux/completion.h>
40#include <linux/moduleparam.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_cmnd.h>
43#include <scsi/scsi_device.h>
44#include <scsi/scsi_host.h>
Stephen M. Cameron667e23d2010-02-25 14:02:51 -060045#include <scsi/scsi_tcq.h>
Stephen Cameron9437ac42015-04-23 09:32:16 -050046#include <scsi/scsi_eh.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080047#include <linux/cciss_ioctl.h>
48#include <linux/string.h>
49#include <linux/bitmap.h>
Arun Sharma600634972011-07-26 16:09:06 -070050#include <linux/atomic.h>
Stephen M. Camerona0c12412011-10-26 16:22:04 -050051#include <linux/jiffies.h>
Don Brace42a91642014-11-14 17:26:27 -060052#include <linux/percpu-defs.h>
Stephen M. Cameron094963d2014-05-29 10:53:18 -050053#include <linux/percpu.h>
Don Brace2b08b3e2015-01-23 16:41:09 -060054#include <asm/unaligned.h>
Stephen M. Cameron283b4a92014-02-18 13:55:33 -060055#include <asm/div64.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080056#include "hpsa_cmd.h"
57#include "hpsa.h"
58
59/* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */
Stephen M. Cameron9a993302014-03-13 17:13:06 -050060#define HPSA_DRIVER_VERSION "3.4.4-1"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080061#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -060062#define HPSA "hpsa"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080063
Robert Elliott007e7aa2015-01-23 16:44:56 -060064/* How long to wait for CISS doorbell communication */
65#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */
66#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */
67#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */
68#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */
Stephen M. Cameronedd16362009-12-08 14:09:11 -080069#define MAX_IOCTL_CONFIG_WAIT 1000
70
71/*define how many times we will try a command because of bus resets */
72#define MAX_CMD_RETRIES 3
73
74/* Embedded module documentation macros - see modules.h */
75MODULE_AUTHOR("Hewlett-Packard Company");
76MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
77 HPSA_DRIVER_VERSION);
78MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
79MODULE_VERSION(HPSA_DRIVER_VERSION);
80MODULE_LICENSE("GPL");
81
82static int hpsa_allow_any;
83module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
84MODULE_PARM_DESC(hpsa_allow_any,
85 "Allow hpsa driver to access unknown HP Smart Array hardware");
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060086static int hpsa_simple_mode;
87module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
88MODULE_PARM_DESC(hpsa_simple_mode,
89 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080090
91/* define the PCI info for the cards we can control */
92static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080093 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
94 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
95 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
96 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
97 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -050098 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
99 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -0600100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -0600101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Mike Millerfe0c9612012-09-20 16:05:18 -0500108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Mike Millerfe0c9612012-09-20 16:05:18 -0500112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926},
113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928},
Mike Miller97b9f532013-09-04 15:05:55 -0500114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929},
115 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD},
116 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE},
117 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF},
118 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0},
119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1},
120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2},
121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3},
122 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4},
123 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500124 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6},
Mike Miller97b9f532013-09-04 15:05:55 -0500125 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
126 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
127 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500128 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA},
129 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB},
130 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC},
131 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD},
132 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600133 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
134 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
135 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
136 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
137 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
Mike Miller7c03b872010-12-01 11:16:07 -0600138 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Stephen M. Cameron6798cc02010-06-16 13:51:20 -0500139 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800140 {0,}
141};
142
143MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
144
145/* board_id = Subsystem Device ID & Vendor ID
146 * product = Marketing Name for the board
147 * access = Address of the struct of function pointers
148 */
149static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800150 {0x3241103C, "Smart Array P212", &SA5_access},
151 {0x3243103C, "Smart Array P410", &SA5_access},
152 {0x3245103C, "Smart Array P410i", &SA5_access},
153 {0x3247103C, "Smart Array P411", &SA5_access},
154 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500155 {0x324A103C, "Smart Array P712m", &SA5_access},
156 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600157 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500158 {0x3350103C, "Smart Array P222", &SA5_access},
159 {0x3351103C, "Smart Array P420", &SA5_access},
160 {0x3352103C, "Smart Array P421", &SA5_access},
161 {0x3353103C, "Smart Array P822", &SA5_access},
162 {0x3354103C, "Smart Array P420i", &SA5_access},
163 {0x3355103C, "Smart Array P220i", &SA5_access},
164 {0x3356103C, "Smart Array P721m", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500165 {0x1921103C, "Smart Array P830i", &SA5_access},
166 {0x1922103C, "Smart Array P430", &SA5_access},
167 {0x1923103C, "Smart Array P431", &SA5_access},
168 {0x1924103C, "Smart Array P830", &SA5_access},
169 {0x1926103C, "Smart Array P731m", &SA5_access},
170 {0x1928103C, "Smart Array P230i", &SA5_access},
171 {0x1929103C, "Smart Array P530", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600172 {0x21BD103C, "Smart Array P244br", &SA5_access},
173 {0x21BE103C, "Smart Array P741m", &SA5_access},
174 {0x21BF103C, "Smart HBA H240ar", &SA5_access},
175 {0x21C0103C, "Smart Array P440ar", &SA5_access},
Don Bracec8ae0ab2015-01-23 16:45:12 -0600176 {0x21C1103C, "Smart Array P840ar", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600177 {0x21C2103C, "Smart Array P440", &SA5_access},
178 {0x21C3103C, "Smart Array P441", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500179 {0x21C4103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600180 {0x21C5103C, "Smart Array P841", &SA5_access},
181 {0x21C6103C, "Smart HBA H244br", &SA5_access},
182 {0x21C7103C, "Smart HBA H240", &SA5_access},
183 {0x21C8103C, "Smart HBA H241", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500184 {0x21C9103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600185 {0x21CA103C, "Smart Array P246br", &SA5_access},
186 {0x21CB103C, "Smart Array P840", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500187 {0x21CC103C, "Smart Array", &SA5_access},
188 {0x21CD103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600189 {0x21CE103C, "Smart HBA", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600190 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
191 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
192 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
193 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
194 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800195 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
196};
197
198static int number_of_controllers;
199
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500200static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
201static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Don Brace42a91642014-11-14 17:26:27 -0600202static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800203
204#ifdef CONFIG_COMPAT
Don Brace42a91642014-11-14 17:26:27 -0600205static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
206 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800207#endif
208
209static void cmd_free(struct ctlr_info *h, struct CommandList *c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800210static struct CommandList *cmd_alloc(struct ctlr_info *h);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600211static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600212 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800213 int cmd_type);
Robert Elliott2c143342015-01-23 16:42:48 -0600214static void hpsa_free_cmd_pool(struct ctlr_info *h);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600215#define VPD_PAGE (1 << 8)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800216
Jeff Garzikf2812332010-11-16 02:10:29 -0500217static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600218static void hpsa_scan_start(struct Scsi_Host *);
219static int hpsa_scan_finished(struct Scsi_Host *sh,
220 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600221static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800222
223static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500224static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800225static int hpsa_slave_alloc(struct scsi_device *sdev);
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500226static int hpsa_slave_configure(struct scsi_device *sdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800227static void hpsa_slave_destroy(struct scsi_device *sdev);
228
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800229static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800230static int check_for_unit_attention(struct ctlr_info *h,
231 struct CommandList *c);
232static void check_ioctl_unit_attention(struct ctlr_info *h,
233 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600234/* performant mode helper functions */
235static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600236 int nsgs, int min_blocks, u32 *bucket_map);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800237static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500238static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800239static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
240 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
241 u64 *cfg_offset);
242static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
243 unsigned long *memory_bar);
244static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
245static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
246 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500247static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600248static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600249#define BOARD_NOT_READY 0
250#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600251static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600252static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600253static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
254 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600255 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600256static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500257static u32 lockup_detected(struct ctlr_info *h);
258static int detect_controller_lockup(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800259
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800260static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
261{
262 unsigned long *priv = shost_priv(sdev->host);
263 return (struct ctlr_info *) *priv;
264}
265
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600266static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
267{
268 unsigned long *priv = shost_priv(sh);
269 return (struct ctlr_info *) *priv;
270}
271
Stephen Cameron9437ac42015-04-23 09:32:16 -0500272/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
273static void decode_sense_data(const u8 *sense_data, int sense_data_len,
274 u8 *sense_key, u8 *asc, u8 *ascq)
275{
276 struct scsi_sense_hdr sshdr;
277 bool rc;
278
279 *sense_key = -1;
280 *asc = -1;
281 *ascq = -1;
282
283 if (sense_data_len < 1)
284 return;
285
286 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
287 if (rc) {
288 *sense_key = sshdr.sense_key;
289 *asc = sshdr.asc;
290 *ascq = sshdr.ascq;
291 }
292}
293
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800294static int check_for_unit_attention(struct ctlr_info *h,
295 struct CommandList *c)
296{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500297 u8 sense_key, asc, ascq;
298 int sense_len;
299
300 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
301 sense_len = sizeof(c->err_info->SenseInfo);
302 else
303 sense_len = c->err_info->SenseLen;
304
305 decode_sense_data(c->err_info->SenseInfo, sense_len,
306 &sense_key, &asc, &ascq);
307 if (sense_key != UNIT_ATTENTION || asc == -1)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800308 return 0;
309
Stephen Cameron9437ac42015-04-23 09:32:16 -0500310 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800311 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500312 dev_warn(&h->pdev->dev,
313 HPSA "%d: a state change detected, command retried\n",
314 h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800315 break;
316 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600317 dev_warn(&h->pdev->dev,
318 HPSA "%d: LUN failure detected\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800319 break;
320 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600321 dev_warn(&h->pdev->dev,
322 HPSA "%d: report LUN data changed\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800323 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600324 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
325 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800326 */
327 break;
328 case POWER_OR_RESET:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600329 dev_warn(&h->pdev->dev, HPSA "%d: a power on "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800330 "or device reset detected\n", h->ctlr);
331 break;
332 case UNIT_ATTENTION_CLEARED:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600333 dev_warn(&h->pdev->dev, HPSA "%d: unit attention "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800334 "cleared by another initiator\n", h->ctlr);
335 break;
336 default:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600337 dev_warn(&h->pdev->dev, HPSA "%d: unknown "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800338 "unit attention detected\n", h->ctlr);
339 break;
340 }
341 return 1;
342}
343
Matt Bondurant852af202012-05-01 11:42:35 -0500344static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
345{
346 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
347 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
348 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
349 return 0;
350 dev_warn(&h->pdev->dev, HPSA "device busy");
351 return 1;
352}
353
Stephen Camerone985c582015-04-23 09:32:22 -0500354static u32 lockup_detected(struct ctlr_info *h);
355static ssize_t host_show_lockup_detected(struct device *dev,
356 struct device_attribute *attr, char *buf)
357{
358 int ld;
359 struct ctlr_info *h;
360 struct Scsi_Host *shost = class_to_shost(dev);
361
362 h = shost_to_hba(shost);
363 ld = lockup_detected(h);
364
365 return sprintf(buf, "ld=%d\n", ld);
366}
367
Scott Teelda0697b2014-02-18 13:57:00 -0600368static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
369 struct device_attribute *attr,
370 const char *buf, size_t count)
371{
372 int status, len;
373 struct ctlr_info *h;
374 struct Scsi_Host *shost = class_to_shost(dev);
375 char tmpbuf[10];
376
377 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
378 return -EACCES;
379 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
380 strncpy(tmpbuf, buf, len);
381 tmpbuf[len] = '\0';
382 if (sscanf(tmpbuf, "%d", &status) != 1)
383 return -EINVAL;
384 h = shost_to_hba(shost);
385 h->acciopath_status = !!status;
386 dev_warn(&h->pdev->dev,
387 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
388 h->acciopath_status ? "enabled" : "disabled");
389 return count;
390}
391
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600392static ssize_t host_store_raid_offload_debug(struct device *dev,
393 struct device_attribute *attr,
394 const char *buf, size_t count)
395{
396 int debug_level, len;
397 struct ctlr_info *h;
398 struct Scsi_Host *shost = class_to_shost(dev);
399 char tmpbuf[10];
400
401 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
402 return -EACCES;
403 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
404 strncpy(tmpbuf, buf, len);
405 tmpbuf[len] = '\0';
406 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
407 return -EINVAL;
408 if (debug_level < 0)
409 debug_level = 0;
410 h = shost_to_hba(shost);
411 h->raid_offload_debug = debug_level;
412 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
413 h->raid_offload_debug);
414 return count;
415}
416
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800417static ssize_t host_store_rescan(struct device *dev,
418 struct device_attribute *attr,
419 const char *buf, size_t count)
420{
421 struct ctlr_info *h;
422 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600423 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600424 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800425 return count;
426}
427
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500428static ssize_t host_show_firmware_revision(struct device *dev,
429 struct device_attribute *attr, char *buf)
430{
431 struct ctlr_info *h;
432 struct Scsi_Host *shost = class_to_shost(dev);
433 unsigned char *fwrev;
434
435 h = shost_to_hba(shost);
436 if (!h->hba_inquiry_data)
437 return 0;
438 fwrev = &h->hba_inquiry_data[32];
439 return snprintf(buf, 20, "%c%c%c%c\n",
440 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
441}
442
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600443static ssize_t host_show_commands_outstanding(struct device *dev,
444 struct device_attribute *attr, char *buf)
445{
446 struct Scsi_Host *shost = class_to_shost(dev);
447 struct ctlr_info *h = shost_to_hba(shost);
448
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600449 return snprintf(buf, 20, "%d\n",
450 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600451}
452
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600453static ssize_t host_show_transport_mode(struct device *dev,
454 struct device_attribute *attr, char *buf)
455{
456 struct ctlr_info *h;
457 struct Scsi_Host *shost = class_to_shost(dev);
458
459 h = shost_to_hba(shost);
460 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600461 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600462 "performant" : "simple");
463}
464
Scott Teelda0697b2014-02-18 13:57:00 -0600465static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
466 struct device_attribute *attr, char *buf)
467{
468 struct ctlr_info *h;
469 struct Scsi_Host *shost = class_to_shost(dev);
470
471 h = shost_to_hba(shost);
472 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
473 (h->acciopath_status == 1) ? "enabled" : "disabled");
474}
475
Stephen M. Cameron46380782011-05-03 15:00:01 -0500476/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600477static u32 unresettable_controller[] = {
478 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500479 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600480 0x3223103C, /* Smart Array P800 */
481 0x3234103C, /* Smart Array P400 */
482 0x3235103C, /* Smart Array P400i */
483 0x3211103C, /* Smart Array E200i */
484 0x3212103C, /* Smart Array E200 */
485 0x3213103C, /* Smart Array E200i */
486 0x3214103C, /* Smart Array E200i */
487 0x3215103C, /* Smart Array E200i */
488 0x3237103C, /* Smart Array E500 */
489 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100490 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600491 0x409C0E11, /* Smart Array 6400 */
492 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100493 0x40700E11, /* Smart Array 5300 */
494 0x40820E11, /* Smart Array 532 */
495 0x40830E11, /* Smart Array 5312 */
496 0x409A0E11, /* Smart Array 641 */
497 0x409B0E11, /* Smart Array 642 */
498 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600499};
500
Stephen M. Cameron46380782011-05-03 15:00:01 -0500501/* List of controllers which cannot even be soft reset */
502static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100503 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100504 0x40700E11, /* Smart Array 5300 */
505 0x40820E11, /* Smart Array 532 */
506 0x40830E11, /* Smart Array 5312 */
507 0x409A0E11, /* Smart Array 641 */
508 0x409B0E11, /* Smart Array 642 */
509 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500510 /* Exclude 640x boards. These are two pci devices in one slot
511 * which share a battery backed cache module. One controls the
512 * cache, the other accesses the cache through the one that controls
513 * it. If we reset the one controlling the cache, the other will
514 * likely not be happy. Just forbid resetting this conjoined mess.
515 * The 640x isn't really supported by hpsa anyway.
516 */
517 0x409C0E11, /* Smart Array 6400 */
518 0x409D0E11, /* Smart Array 6400 EM */
519};
520
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500521static u32 needs_abort_tags_swizzled[] = {
522 0x323D103C, /* Smart Array P700m */
523 0x324a103C, /* Smart Array P712m */
524 0x324b103C, /* SmartArray P711m */
525};
526
527static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600528{
529 int i;
530
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500531 for (i = 0; i < nelems; i++)
532 if (a[i] == board_id)
533 return 1;
534 return 0;
535}
536
537static int ctlr_is_hard_resettable(u32 board_id)
538{
539 return !board_id_in_array(unresettable_controller,
540 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600541}
542
Stephen M. Cameron46380782011-05-03 15:00:01 -0500543static int ctlr_is_soft_resettable(u32 board_id)
544{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500545 return !board_id_in_array(soft_unresettable_controller,
546 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500547}
548
549static int ctlr_is_resettable(u32 board_id)
550{
551 return ctlr_is_hard_resettable(board_id) ||
552 ctlr_is_soft_resettable(board_id);
553}
554
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500555static int ctlr_needs_abort_tags_swizzled(u32 board_id)
556{
557 return board_id_in_array(needs_abort_tags_swizzled,
558 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
559}
560
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600561static ssize_t host_show_resettable(struct device *dev,
562 struct device_attribute *attr, char *buf)
563{
564 struct ctlr_info *h;
565 struct Scsi_Host *shost = class_to_shost(dev);
566
567 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500568 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600569}
570
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800571static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
572{
573 return (scsi3addr[3] & 0xC0) == 0x40;
574}
575
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600576static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
577 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800578};
Scott Teel6b80b182014-02-18 13:56:55 -0600579#define HPSA_RAID_0 0
580#define HPSA_RAID_4 1
581#define HPSA_RAID_1 2 /* also used for RAID 10 */
582#define HPSA_RAID_5 3 /* also used for RAID 50 */
583#define HPSA_RAID_51 4
584#define HPSA_RAID_6 5 /* also used for RAID 60 */
585#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800586#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
587
588static ssize_t raid_level_show(struct device *dev,
589 struct device_attribute *attr, char *buf)
590{
591 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600592 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800593 struct ctlr_info *h;
594 struct scsi_device *sdev;
595 struct hpsa_scsi_dev_t *hdev;
596 unsigned long flags;
597
598 sdev = to_scsi_device(dev);
599 h = sdev_to_hba(sdev);
600 spin_lock_irqsave(&h->lock, flags);
601 hdev = sdev->hostdata;
602 if (!hdev) {
603 spin_unlock_irqrestore(&h->lock, flags);
604 return -ENODEV;
605 }
606
607 /* Is this even a logical drive? */
608 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
609 spin_unlock_irqrestore(&h->lock, flags);
610 l = snprintf(buf, PAGE_SIZE, "N/A\n");
611 return l;
612 }
613
614 rlevel = hdev->raid_level;
615 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600616 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800617 rlevel = RAID_UNKNOWN;
618 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
619 return l;
620}
621
622static ssize_t lunid_show(struct device *dev,
623 struct device_attribute *attr, char *buf)
624{
625 struct ctlr_info *h;
626 struct scsi_device *sdev;
627 struct hpsa_scsi_dev_t *hdev;
628 unsigned long flags;
629 unsigned char lunid[8];
630
631 sdev = to_scsi_device(dev);
632 h = sdev_to_hba(sdev);
633 spin_lock_irqsave(&h->lock, flags);
634 hdev = sdev->hostdata;
635 if (!hdev) {
636 spin_unlock_irqrestore(&h->lock, flags);
637 return -ENODEV;
638 }
639 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
640 spin_unlock_irqrestore(&h->lock, flags);
641 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
642 lunid[0], lunid[1], lunid[2], lunid[3],
643 lunid[4], lunid[5], lunid[6], lunid[7]);
644}
645
646static ssize_t unique_id_show(struct device *dev,
647 struct device_attribute *attr, char *buf)
648{
649 struct ctlr_info *h;
650 struct scsi_device *sdev;
651 struct hpsa_scsi_dev_t *hdev;
652 unsigned long flags;
653 unsigned char sn[16];
654
655 sdev = to_scsi_device(dev);
656 h = sdev_to_hba(sdev);
657 spin_lock_irqsave(&h->lock, flags);
658 hdev = sdev->hostdata;
659 if (!hdev) {
660 spin_unlock_irqrestore(&h->lock, flags);
661 return -ENODEV;
662 }
663 memcpy(sn, hdev->device_id, sizeof(sn));
664 spin_unlock_irqrestore(&h->lock, flags);
665 return snprintf(buf, 16 * 2 + 2,
666 "%02X%02X%02X%02X%02X%02X%02X%02X"
667 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
668 sn[0], sn[1], sn[2], sn[3],
669 sn[4], sn[5], sn[6], sn[7],
670 sn[8], sn[9], sn[10], sn[11],
671 sn[12], sn[13], sn[14], sn[15]);
672}
673
Scott Teelc1988682014-02-18 13:55:54 -0600674static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
675 struct device_attribute *attr, char *buf)
676{
677 struct ctlr_info *h;
678 struct scsi_device *sdev;
679 struct hpsa_scsi_dev_t *hdev;
680 unsigned long flags;
681 int offload_enabled;
682
683 sdev = to_scsi_device(dev);
684 h = sdev_to_hba(sdev);
685 spin_lock_irqsave(&h->lock, flags);
686 hdev = sdev->hostdata;
687 if (!hdev) {
688 spin_unlock_irqrestore(&h->lock, flags);
689 return -ENODEV;
690 }
691 offload_enabled = hdev->offload_enabled;
692 spin_unlock_irqrestore(&h->lock, flags);
693 return snprintf(buf, 20, "%d\n", offload_enabled);
694}
695
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600696static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
697static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
698static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
699static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600700static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
701 host_show_hp_ssd_smart_path_enabled, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600702static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
703 host_show_hp_ssd_smart_path_status,
704 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600705static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
706 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600707static DEVICE_ATTR(firmware_revision, S_IRUGO,
708 host_show_firmware_revision, NULL);
709static DEVICE_ATTR(commands_outstanding, S_IRUGO,
710 host_show_commands_outstanding, NULL);
711static DEVICE_ATTR(transport_mode, S_IRUGO,
712 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600713static DEVICE_ATTR(resettable, S_IRUGO,
714 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500715static DEVICE_ATTR(lockup_detected, S_IRUGO,
716 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600717
718static struct device_attribute *hpsa_sdev_attrs[] = {
719 &dev_attr_raid_level,
720 &dev_attr_lunid,
721 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600722 &dev_attr_hp_ssd_smart_path_enabled,
Stephen Camerone985c582015-04-23 09:32:22 -0500723 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600724 NULL,
725};
726
727static struct device_attribute *hpsa_shost_attrs[] = {
728 &dev_attr_rescan,
729 &dev_attr_firmware_revision,
730 &dev_attr_commands_outstanding,
731 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600732 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600733 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600734 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600735 NULL,
736};
737
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500738#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
739 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
740
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600741static struct scsi_host_template hpsa_driver_template = {
742 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600743 .name = HPSA,
744 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600745 .queuecommand = hpsa_scsi_queue_command,
746 .scan_start = hpsa_scan_start,
747 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600748 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600749 .this_id = -1,
750 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500751 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600752 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
753 .ioctl = hpsa_ioctl,
754 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500755 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600756 .slave_destroy = hpsa_slave_destroy,
757#ifdef CONFIG_COMPAT
758 .compat_ioctl = hpsa_compat_ioctl,
759#endif
760 .sdev_attrs = hpsa_sdev_attrs,
761 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500762 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400763 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600764};
765
Matt Gates254f7962012-05-01 11:43:06 -0500766static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600767{
768 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500769 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600770
Matt Gatese1f7de02014-02-18 13:55:17 -0600771 if (h->transMethod & CFGTBL_Trans_io_accel1)
772 return h->access.command_completed(h, q);
773
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600774 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500775 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600776
Matt Gates254f7962012-05-01 11:43:06 -0500777 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
778 a = rq->head[rq->current_entry];
779 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600780 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600781 } else {
782 a = FIFO_EMPTY;
783 }
784 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500785 if (rq->current_entry == h->max_commands) {
786 rq->current_entry = 0;
787 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600788 }
789 return a;
790}
791
Scott Teelc3497752014-02-18 13:56:34 -0600792/*
793 * There are some special bits in the bus address of the
794 * command that we have to set for the controller to know
795 * how to process the command:
796 *
797 * Normal performant mode:
798 * bit 0: 1 means performant mode, 0 means simple mode.
799 * bits 1-3 = block fetch table entry
800 * bits 4-6 = command type (== 0)
801 *
802 * ioaccel1 mode:
803 * bit 0 = "performant mode" bit.
804 * bits 1-3 = block fetch table entry
805 * bits 4-6 = command type (== 110)
806 * (command type is needed because ioaccel1 mode
807 * commands are submitted through the same register as normal
808 * mode commands, so this is how the controller knows whether
809 * the command is normal mode or ioaccel1 mode.)
810 *
811 * ioaccel2 mode:
812 * bit 0 = "performant mode" bit.
813 * bits 1-4 = block fetch table entry (note extra bit)
814 * bits 4-6 = not needed, because ioaccel2 mode has
815 * a separate special register for submitting commands.
816 */
817
Webb Scales25163bd2015-04-23 09:32:00 -0500818/*
819 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600820 * set bit 0 for pull model, bits 3-1 for block fetch
821 * register number
822 */
Webb Scales25163bd2015-04-23 09:32:00 -0500823#define DEFAULT_REPLY_QUEUE (-1)
824static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
825 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600826{
Matt Gates254f7962012-05-01 11:43:06 -0500827 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600828 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -0500829 if (unlikely(!h->msix_vector))
830 return;
831 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -0500832 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200833 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -0500834 else
835 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500836 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600837}
838
Scott Teelc3497752014-02-18 13:56:34 -0600839static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500840 struct CommandList *c,
841 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600842{
843 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
844
Webb Scales25163bd2015-04-23 09:32:00 -0500845 /*
846 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600847 * processor. This seems to give the best I/O throughput.
848 */
Webb Scales25163bd2015-04-23 09:32:00 -0500849 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
850 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
851 else
852 cp->ReplyQueue = reply_queue % h->nreply_queues;
853 /*
854 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600855 * - performant mode bit (bit 0)
856 * - pull count (bits 1-3)
857 * - command type (bits 4-6)
858 */
859 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
860 IOACCEL1_BUSADDR_CMDTYPE;
861}
862
863static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500864 struct CommandList *c,
865 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600866{
867 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
868
Webb Scales25163bd2015-04-23 09:32:00 -0500869 /*
870 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600871 * processor. This seems to give the best I/O throughput.
872 */
Webb Scales25163bd2015-04-23 09:32:00 -0500873 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
874 cp->reply_queue = smp_processor_id() % h->nreply_queues;
875 else
876 cp->reply_queue = reply_queue % h->nreply_queues;
877 /*
878 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600879 * - performant mode bit not used in ioaccel mode 2
880 * - pull count (bits 0-3)
881 * - command type isn't needed for ioaccel2
882 */
883 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
884}
885
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500886static int is_firmware_flash_cmd(u8 *cdb)
887{
888 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
889}
890
891/*
892 * During firmware flash, the heartbeat register may not update as frequently
893 * as it should. So we dial down lockup detection during firmware flash. and
894 * dial it back up when firmware flash completes.
895 */
896#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
897#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
898static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
899 struct CommandList *c)
900{
901 if (!is_firmware_flash_cmd(c->Request.CDB))
902 return;
903 atomic_inc(&h->firmware_flash_in_progress);
904 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
905}
906
907static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
908 struct CommandList *c)
909{
910 if (is_firmware_flash_cmd(c->Request.CDB) &&
911 atomic_dec_and_test(&h->firmware_flash_in_progress))
912 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
913}
914
Webb Scales25163bd2015-04-23 09:32:00 -0500915static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
916 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600917{
Stephen Cameronc05e8862015-01-23 16:44:40 -0600918 dial_down_lockup_detection_during_fw_flash(h, c);
919 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -0600920 switch (c->cmd_type) {
921 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -0500922 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600923 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -0600924 break;
925 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -0500926 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600927 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -0600928 break;
929 default:
Webb Scales25163bd2015-04-23 09:32:00 -0500930 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600931 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -0600932 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600933}
934
Webb Scales25163bd2015-04-23 09:32:00 -0500935static void enqueue_cmd_and_start_io(struct ctlr_info *h,
936 struct CommandList *c)
937{
938 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
939}
940
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600941static inline int is_hba_lunid(unsigned char scsi3addr[])
942{
943 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
944}
945
946static inline int is_scsi_rev_5(struct ctlr_info *h)
947{
948 if (!h->hba_inquiry_data)
949 return 0;
950 if ((h->hba_inquiry_data[2] & 0x07) == 5)
951 return 1;
952 return 0;
953}
954
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800955static int hpsa_find_target_lun(struct ctlr_info *h,
956 unsigned char scsi3addr[], int bus, int *target, int *lun)
957{
958 /* finds an unused bus, target, lun for a new physical device
959 * assumes h->devlock is held
960 */
961 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -0500962 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800963
Akinobu Mita263d9402012-01-21 00:15:27 +0900964 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800965
966 for (i = 0; i < h->ndevices; i++) {
967 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +0900968 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800969 }
970
Akinobu Mita263d9402012-01-21 00:15:27 +0900971 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
972 if (i < HPSA_MAX_DEVICES) {
973 /* *bus = 1; */
974 *target = i;
975 *lun = 0;
976 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800977 }
978 return !found;
979}
980
Webb Scales0d96ef52015-04-23 09:31:55 -0500981static inline void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
982 struct hpsa_scsi_dev_t *dev, char *description)
983{
984 dev_printk(level, &h->pdev->dev,
985 "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
986 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
987 description,
988 scsi_device_type(dev->devtype),
989 dev->vendor,
990 dev->model,
991 dev->raid_level > RAID_UNKNOWN ?
992 "RAID-?" : raid_label[dev->raid_level],
993 dev->offload_config ? '+' : '-',
994 dev->offload_enabled ? '+' : '-',
995 dev->expose_state);
996}
997
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800998/* Add an entry into h->dev[] array. */
999static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
1000 struct hpsa_scsi_dev_t *device,
1001 struct hpsa_scsi_dev_t *added[], int *nadded)
1002{
1003 /* assumes h->devlock is held */
1004 int n = h->ndevices;
1005 int i;
1006 unsigned char addr1[8], addr2[8];
1007 struct hpsa_scsi_dev_t *sd;
1008
Scott Teelcfe5bad2011-10-26 16:21:07 -05001009 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001010 dev_err(&h->pdev->dev, "too many devices, some will be "
1011 "inaccessible.\n");
1012 return -1;
1013 }
1014
1015 /* physical devices do not have lun or target assigned until now. */
1016 if (device->lun != -1)
1017 /* Logical device, lun is already assigned. */
1018 goto lun_assigned;
1019
1020 /* If this device a non-zero lun of a multi-lun device
1021 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001022 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001023 */
1024 if (device->scsi3addr[4] == 0) {
1025 /* This is not a non-zero lun of a multi-lun device */
1026 if (hpsa_find_target_lun(h, device->scsi3addr,
1027 device->bus, &device->target, &device->lun) != 0)
1028 return -1;
1029 goto lun_assigned;
1030 }
1031
1032 /* This is a non-zero lun of a multi-lun device.
1033 * Search through our list and find the device which
1034 * has the same 8 byte LUN address, excepting byte 4.
1035 * Assign the same bus and target for this new LUN.
1036 * Use the logical unit number from the firmware.
1037 */
1038 memcpy(addr1, device->scsi3addr, 8);
1039 addr1[4] = 0;
1040 for (i = 0; i < n; i++) {
1041 sd = h->dev[i];
1042 memcpy(addr2, sd->scsi3addr, 8);
1043 addr2[4] = 0;
1044 /* differ only in byte 4? */
1045 if (memcmp(addr1, addr2, 8) == 0) {
1046 device->bus = sd->bus;
1047 device->target = sd->target;
1048 device->lun = device->scsi3addr[4];
1049 break;
1050 }
1051 }
1052 if (device->lun == -1) {
1053 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1054 " suspect firmware bug or unsupported hardware "
1055 "configuration.\n");
1056 return -1;
1057 }
1058
1059lun_assigned:
1060
1061 h->dev[n] = device;
1062 h->ndevices++;
1063 added[*nadded] = device;
1064 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001065 hpsa_show_dev_msg(KERN_INFO, h, device,
1066 device->expose_state & HPSA_SCSI_ADD ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001067 device->offload_to_be_enabled = device->offload_enabled;
1068 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001069 return 0;
1070}
1071
Scott Teelbd9244f2012-01-19 14:01:30 -06001072/* Update an entry in h->dev[] array. */
1073static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
1074 int entry, struct hpsa_scsi_dev_t *new_entry)
1075{
Robert Elliotta473d862015-04-23 09:32:54 -05001076 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001077 /* assumes h->devlock is held */
1078 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1079
1080 /* Raid level changed. */
1081 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001082
Don Brace03383732015-01-23 16:43:30 -06001083 /* Raid offload parameters changed. Careful about the ordering. */
1084 if (new_entry->offload_config && new_entry->offload_enabled) {
1085 /*
1086 * if drive is newly offload_enabled, we want to copy the
1087 * raid map data first. If previously offload_enabled and
1088 * offload_config were set, raid map data had better be
1089 * the same as it was before. if raid map data is changed
1090 * then it had better be the case that
1091 * h->dev[entry]->offload_enabled is currently 0.
1092 */
1093 h->dev[entry]->raid_map = new_entry->raid_map;
1094 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001095 }
Joe Handzika3144e02015-04-23 09:32:59 -05001096 if (new_entry->hba_ioaccel_enabled) {
1097 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1098 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1099 }
1100 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001101 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001102 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001103 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001104
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001105 /*
1106 * We can turn off ioaccel offload now, but need to delay turning
1107 * it on until we can update h->dev[entry]->phys_disk[], but we
1108 * can't do that until all the devices are updated.
1109 */
1110 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1111 if (!new_entry->offload_enabled)
1112 h->dev[entry]->offload_enabled = 0;
1113
Robert Elliotta473d862015-04-23 09:32:54 -05001114 offload_enabled = h->dev[entry]->offload_enabled;
1115 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001116 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001117 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001118}
1119
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001120/* Replace an entry from h->dev[] array. */
1121static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
1122 int entry, struct hpsa_scsi_dev_t *new_entry,
1123 struct hpsa_scsi_dev_t *added[], int *nadded,
1124 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1125{
1126 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001127 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001128 removed[*nremoved] = h->dev[entry];
1129 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001130
1131 /*
1132 * New physical devices won't have target/lun assigned yet
1133 * so we need to preserve the values in the slot we are replacing.
1134 */
1135 if (new_entry->target == -1) {
1136 new_entry->target = h->dev[entry]->target;
1137 new_entry->lun = h->dev[entry]->lun;
1138 }
1139
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001140 h->dev[entry] = new_entry;
1141 added[*nadded] = new_entry;
1142 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001143 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001144 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1145 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001146}
1147
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001148/* Remove an entry from h->dev[] array. */
1149static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1150 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1151{
1152 /* assumes h->devlock is held */
1153 int i;
1154 struct hpsa_scsi_dev_t *sd;
1155
Scott Teelcfe5bad2011-10-26 16:21:07 -05001156 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001157
1158 sd = h->dev[entry];
1159 removed[*nremoved] = h->dev[entry];
1160 (*nremoved)++;
1161
1162 for (i = entry; i < h->ndevices-1; i++)
1163 h->dev[i] = h->dev[i+1];
1164 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001165 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001166}
1167
1168#define SCSI3ADDR_EQ(a, b) ( \
1169 (a)[7] == (b)[7] && \
1170 (a)[6] == (b)[6] && \
1171 (a)[5] == (b)[5] && \
1172 (a)[4] == (b)[4] && \
1173 (a)[3] == (b)[3] && \
1174 (a)[2] == (b)[2] && \
1175 (a)[1] == (b)[1] && \
1176 (a)[0] == (b)[0])
1177
1178static void fixup_botched_add(struct ctlr_info *h,
1179 struct hpsa_scsi_dev_t *added)
1180{
1181 /* called when scsi_add_device fails in order to re-adjust
1182 * h->dev[] to match the mid layer's view.
1183 */
1184 unsigned long flags;
1185 int i, j;
1186
1187 spin_lock_irqsave(&h->lock, flags);
1188 for (i = 0; i < h->ndevices; i++) {
1189 if (h->dev[i] == added) {
1190 for (j = i; j < h->ndevices-1; j++)
1191 h->dev[j] = h->dev[j+1];
1192 h->ndevices--;
1193 break;
1194 }
1195 }
1196 spin_unlock_irqrestore(&h->lock, flags);
1197 kfree(added);
1198}
1199
1200static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1201 struct hpsa_scsi_dev_t *dev2)
1202{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001203 /* we compare everything except lun and target as these
1204 * are not yet assigned. Compare parts likely
1205 * to differ first
1206 */
1207 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1208 sizeof(dev1->scsi3addr)) != 0)
1209 return 0;
1210 if (memcmp(dev1->device_id, dev2->device_id,
1211 sizeof(dev1->device_id)) != 0)
1212 return 0;
1213 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1214 return 0;
1215 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1216 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001217 if (dev1->devtype != dev2->devtype)
1218 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001219 if (dev1->bus != dev2->bus)
1220 return 0;
1221 return 1;
1222}
1223
Scott Teelbd9244f2012-01-19 14:01:30 -06001224static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1225 struct hpsa_scsi_dev_t *dev2)
1226{
1227 /* Device attributes that can change, but don't mean
1228 * that the device is a different device, nor that the OS
1229 * needs to be told anything about the change.
1230 */
1231 if (dev1->raid_level != dev2->raid_level)
1232 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001233 if (dev1->offload_config != dev2->offload_config)
1234 return 1;
1235 if (dev1->offload_enabled != dev2->offload_enabled)
1236 return 1;
Don Brace03383732015-01-23 16:43:30 -06001237 if (dev1->queue_depth != dev2->queue_depth)
1238 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001239 return 0;
1240}
1241
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001242/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1243 * and return needle location in *index. If scsi3addr matches, but not
1244 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001245 * location in *index.
1246 * In the case of a minor device attribute change, such as RAID level, just
1247 * return DEVICE_UPDATED, along with the updated device's location in index.
1248 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001249 */
1250static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1251 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1252 int *index)
1253{
1254 int i;
1255#define DEVICE_NOT_FOUND 0
1256#define DEVICE_CHANGED 1
1257#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001258#define DEVICE_UPDATED 3
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001259 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001260 if (haystack[i] == NULL) /* previously removed. */
1261 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001262 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1263 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001264 if (device_is_the_same(needle, haystack[i])) {
1265 if (device_updated(needle, haystack[i]))
1266 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001267 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001268 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001269 /* Keep offline devices offline */
1270 if (needle->volume_offline)
1271 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001272 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001273 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001274 }
1275 }
1276 *index = -1;
1277 return DEVICE_NOT_FOUND;
1278}
1279
Stephen M. Cameron98465902014-02-21 16:25:00 -06001280static void hpsa_monitor_offline_device(struct ctlr_info *h,
1281 unsigned char scsi3addr[])
1282{
1283 struct offline_device_entry *device;
1284 unsigned long flags;
1285
1286 /* Check to see if device is already on the list */
1287 spin_lock_irqsave(&h->offline_device_lock, flags);
1288 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1289 if (memcmp(device->scsi3addr, scsi3addr,
1290 sizeof(device->scsi3addr)) == 0) {
1291 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1292 return;
1293 }
1294 }
1295 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1296
1297 /* Device is not on the list, add it. */
1298 device = kmalloc(sizeof(*device), GFP_KERNEL);
1299 if (!device) {
1300 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1301 return;
1302 }
1303 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1304 spin_lock_irqsave(&h->offline_device_lock, flags);
1305 list_add_tail(&device->offline_list, &h->offline_device_list);
1306 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1307}
1308
1309/* Print a message explaining various offline volume states */
1310static void hpsa_show_volume_status(struct ctlr_info *h,
1311 struct hpsa_scsi_dev_t *sd)
1312{
1313 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1314 dev_info(&h->pdev->dev,
1315 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1316 h->scsi_host->host_no,
1317 sd->bus, sd->target, sd->lun);
1318 switch (sd->volume_offline) {
1319 case HPSA_LV_OK:
1320 break;
1321 case HPSA_LV_UNDERGOING_ERASE:
1322 dev_info(&h->pdev->dev,
1323 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1324 h->scsi_host->host_no,
1325 sd->bus, sd->target, sd->lun);
1326 break;
1327 case HPSA_LV_UNDERGOING_RPI:
1328 dev_info(&h->pdev->dev,
1329 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
1330 h->scsi_host->host_no,
1331 sd->bus, sd->target, sd->lun);
1332 break;
1333 case HPSA_LV_PENDING_RPI:
1334 dev_info(&h->pdev->dev,
1335 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1336 h->scsi_host->host_no,
1337 sd->bus, sd->target, sd->lun);
1338 break;
1339 case HPSA_LV_ENCRYPTED_NO_KEY:
1340 dev_info(&h->pdev->dev,
1341 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1342 h->scsi_host->host_no,
1343 sd->bus, sd->target, sd->lun);
1344 break;
1345 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1346 dev_info(&h->pdev->dev,
1347 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1348 h->scsi_host->host_no,
1349 sd->bus, sd->target, sd->lun);
1350 break;
1351 case HPSA_LV_UNDERGOING_ENCRYPTION:
1352 dev_info(&h->pdev->dev,
1353 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1354 h->scsi_host->host_no,
1355 sd->bus, sd->target, sd->lun);
1356 break;
1357 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1358 dev_info(&h->pdev->dev,
1359 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1360 h->scsi_host->host_no,
1361 sd->bus, sd->target, sd->lun);
1362 break;
1363 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1364 dev_info(&h->pdev->dev,
1365 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1366 h->scsi_host->host_no,
1367 sd->bus, sd->target, sd->lun);
1368 break;
1369 case HPSA_LV_PENDING_ENCRYPTION:
1370 dev_info(&h->pdev->dev,
1371 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1372 h->scsi_host->host_no,
1373 sd->bus, sd->target, sd->lun);
1374 break;
1375 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1376 dev_info(&h->pdev->dev,
1377 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1378 h->scsi_host->host_no,
1379 sd->bus, sd->target, sd->lun);
1380 break;
1381 }
1382}
1383
Don Brace03383732015-01-23 16:43:30 -06001384/*
1385 * Figure the list of physical drive pointers for a logical drive with
1386 * raid offload configured.
1387 */
1388static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1389 struct hpsa_scsi_dev_t *dev[], int ndevices,
1390 struct hpsa_scsi_dev_t *logical_drive)
1391{
1392 struct raid_map_data *map = &logical_drive->raid_map;
1393 struct raid_map_disk_data *dd = &map->data[0];
1394 int i, j;
1395 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1396 le16_to_cpu(map->metadata_disks_per_row);
1397 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1398 le16_to_cpu(map->layout_map_count) *
1399 total_disks_per_row;
1400 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1401 total_disks_per_row;
1402 int qdepth;
1403
1404 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1405 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1406
1407 qdepth = 0;
1408 for (i = 0; i < nraid_map_entries; i++) {
1409 logical_drive->phys_disk[i] = NULL;
1410 if (!logical_drive->offload_config)
1411 continue;
1412 for (j = 0; j < ndevices; j++) {
1413 if (dev[j]->devtype != TYPE_DISK)
1414 continue;
1415 if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
1416 continue;
1417 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1418 continue;
1419
1420 logical_drive->phys_disk[i] = dev[j];
1421 if (i < nphys_disk)
1422 qdepth = min(h->nr_cmds, qdepth +
1423 logical_drive->phys_disk[i]->queue_depth);
1424 break;
1425 }
1426
1427 /*
1428 * This can happen if a physical drive is removed and
1429 * the logical drive is degraded. In that case, the RAID
1430 * map data will refer to a physical disk which isn't actually
1431 * present. And in that case offload_enabled should already
1432 * be 0, but we'll turn it off here just in case
1433 */
1434 if (!logical_drive->phys_disk[i]) {
1435 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001436 logical_drive->offload_to_be_enabled = 0;
1437 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001438 }
1439 }
1440 if (nraid_map_entries)
1441 /*
1442 * This is correct for reads, too high for full stripe writes,
1443 * way too high for partial stripe writes
1444 */
1445 logical_drive->queue_depth = qdepth;
1446 else
1447 logical_drive->queue_depth = h->nr_cmds;
1448}
1449
1450static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1451 struct hpsa_scsi_dev_t *dev[], int ndevices)
1452{
1453 int i;
1454
1455 for (i = 0; i < ndevices; i++) {
1456 if (dev[i]->devtype != TYPE_DISK)
1457 continue;
1458 if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
1459 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001460
1461 /*
1462 * If offload is currently enabled, the RAID map and
1463 * phys_disk[] assignment *better* not be changing
1464 * and since it isn't changing, we do not need to
1465 * update it.
1466 */
1467 if (dev[i]->offload_enabled)
1468 continue;
1469
Don Brace03383732015-01-23 16:43:30 -06001470 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1471 }
1472}
1473
Stephen M. Cameron4967bd32010-02-04 08:41:49 -06001474static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001475 struct hpsa_scsi_dev_t *sd[], int nsds)
1476{
1477 /* sd contains scsi3 addresses and devtypes, and inquiry
1478 * data. This function takes what's in sd to be the current
1479 * reality and updates h->dev[] to reflect that reality.
1480 */
1481 int i, entry, device_change, changes = 0;
1482 struct hpsa_scsi_dev_t *csd;
1483 unsigned long flags;
1484 struct hpsa_scsi_dev_t **added, **removed;
1485 int nadded, nremoved;
1486 struct Scsi_Host *sh = NULL;
1487
Scott Teelcfe5bad2011-10-26 16:21:07 -05001488 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1489 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001490
1491 if (!added || !removed) {
1492 dev_warn(&h->pdev->dev, "out of memory in "
1493 "adjust_hpsa_scsi_table\n");
1494 goto free_and_out;
1495 }
1496
1497 spin_lock_irqsave(&h->devlock, flags);
1498
1499 /* find any devices in h->dev[] that are not in
1500 * sd[] and remove them from h->dev[], and for any
1501 * devices which have changed, remove the old device
1502 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001503 * If minor device attributes change, just update
1504 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001505 */
1506 i = 0;
1507 nremoved = 0;
1508 nadded = 0;
1509 while (i < h->ndevices) {
1510 csd = h->dev[i];
1511 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1512 if (device_change == DEVICE_NOT_FOUND) {
1513 changes++;
1514 hpsa_scsi_remove_entry(h, hostno, i,
1515 removed, &nremoved);
1516 continue; /* remove ^^^, hence i not incremented */
1517 } else if (device_change == DEVICE_CHANGED) {
1518 changes++;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001519 hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
1520 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001521 /* Set it to NULL to prevent it from being freed
1522 * at the bottom of hpsa_update_scsi_devices()
1523 */
1524 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001525 } else if (device_change == DEVICE_UPDATED) {
1526 hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001527 }
1528 i++;
1529 }
1530
1531 /* Now, make sure every device listed in sd[] is also
1532 * listed in h->dev[], adding them if they aren't found
1533 */
1534
1535 for (i = 0; i < nsds; i++) {
1536 if (!sd[i]) /* if already added above. */
1537 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001538
1539 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1540 * as the SCSI mid-layer does not handle such devices well.
1541 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1542 * at 160Hz, and prevents the system from coming up.
1543 */
1544 if (sd[i]->volume_offline) {
1545 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001546 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001547 continue;
1548 }
1549
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001550 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1551 h->ndevices, &entry);
1552 if (device_change == DEVICE_NOT_FOUND) {
1553 changes++;
1554 if (hpsa_scsi_add_entry(h, hostno, sd[i],
1555 added, &nadded) != 0)
1556 break;
1557 sd[i] = NULL; /* prevent from being freed later. */
1558 } else if (device_change == DEVICE_CHANGED) {
1559 /* should never happen... */
1560 changes++;
1561 dev_warn(&h->pdev->dev,
1562 "device unexpectedly changed.\n");
1563 /* but if it does happen, we just ignore that device */
1564 }
1565 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001566 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1567
1568 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1569 * any logical drives that need it enabled.
1570 */
1571 for (i = 0; i < h->ndevices; i++)
1572 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
1573
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001574 spin_unlock_irqrestore(&h->devlock, flags);
1575
Stephen M. Cameron98465902014-02-21 16:25:00 -06001576 /* Monitor devices which are in one of several NOT READY states to be
1577 * brought online later. This must be done without holding h->devlock,
1578 * so don't touch h->dev[]
1579 */
1580 for (i = 0; i < nsds; i++) {
1581 if (!sd[i]) /* if already added above. */
1582 continue;
1583 if (sd[i]->volume_offline)
1584 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1585 }
1586
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001587 /* Don't notify scsi mid layer of any changes the first time through
1588 * (or if there are no changes) scsi_scan_host will do it later the
1589 * first time through.
1590 */
1591 if (hostno == -1 || !changes)
1592 goto free_and_out;
1593
1594 sh = h->scsi_host;
1595 /* Notify scsi mid layer of any removed devices */
1596 for (i = 0; i < nremoved; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001597 if (removed[i]->expose_state & HPSA_SCSI_ADD) {
1598 struct scsi_device *sdev =
1599 scsi_device_lookup(sh, removed[i]->bus,
1600 removed[i]->target, removed[i]->lun);
1601 if (sdev != NULL) {
1602 scsi_remove_device(sdev);
1603 scsi_device_put(sdev);
1604 } else {
1605 /*
1606 * We don't expect to get here.
1607 * future cmds to this device will get selection
1608 * timeout as if the device was gone.
1609 */
Webb Scales0d96ef52015-04-23 09:31:55 -05001610 hpsa_show_dev_msg(KERN_WARNING, h, removed[i],
1611 "didn't find device for removal.");
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001612 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001613 }
1614 kfree(removed[i]);
1615 removed[i] = NULL;
1616 }
1617
1618 /* Notify scsi mid layer of any added devices */
1619 for (i = 0; i < nadded; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001620 if (!(added[i]->expose_state & HPSA_SCSI_ADD))
1621 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001622 if (scsi_add_device(sh, added[i]->bus,
1623 added[i]->target, added[i]->lun) == 0)
1624 continue;
Webb Scales0d96ef52015-04-23 09:31:55 -05001625 hpsa_show_dev_msg(KERN_WARNING, h, added[i],
1626 "addition failed, device not added.");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001627 /* now we have to remove it from h->dev,
1628 * since it didn't get added to scsi mid layer
1629 */
1630 fixup_botched_add(h, added[i]);
1631 }
1632
1633free_and_out:
1634 kfree(added);
1635 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001636}
1637
1638/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001639 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001640 * Assume's h->devlock is held.
1641 */
1642static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1643 int bus, int target, int lun)
1644{
1645 int i;
1646 struct hpsa_scsi_dev_t *sd;
1647
1648 for (i = 0; i < h->ndevices; i++) {
1649 sd = h->dev[i];
1650 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1651 return sd;
1652 }
1653 return NULL;
1654}
1655
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001656static int hpsa_slave_alloc(struct scsi_device *sdev)
1657{
1658 struct hpsa_scsi_dev_t *sd;
1659 unsigned long flags;
1660 struct ctlr_info *h;
1661
1662 h = sdev_to_hba(sdev);
1663 spin_lock_irqsave(&h->devlock, flags);
1664 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1665 sdev_id(sdev), sdev->lun);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001666 if (likely(sd)) {
Don Brace03383732015-01-23 16:43:30 -06001667 atomic_set(&sd->ioaccel_cmds_out, 0);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001668 sdev->hostdata = (sd->expose_state & HPSA_SCSI_ADD) ? sd : NULL;
1669 } else
1670 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001671 spin_unlock_irqrestore(&h->devlock, flags);
1672 return 0;
1673}
1674
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001675/* configure scsi device based on internal per-device structure */
1676static int hpsa_slave_configure(struct scsi_device *sdev)
1677{
1678 struct hpsa_scsi_dev_t *sd;
1679 int queue_depth;
1680
1681 sd = sdev->hostdata;
1682 sdev->no_uld_attach = !sd || !(sd->expose_state & HPSA_ULD_ATTACH);
1683
1684 if (sd)
1685 queue_depth = sd->queue_depth != 0 ?
1686 sd->queue_depth : sdev->host->can_queue;
1687 else
1688 queue_depth = sdev->host->can_queue;
1689
1690 scsi_change_queue_depth(sdev, queue_depth);
1691
1692 return 0;
1693}
1694
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001695static void hpsa_slave_destroy(struct scsi_device *sdev)
1696{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001697 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001698}
1699
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001700static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1701{
1702 int i;
1703
1704 if (!h->cmd_sg_list)
1705 return;
1706 for (i = 0; i < h->nr_cmds; i++) {
1707 kfree(h->cmd_sg_list[i]);
1708 h->cmd_sg_list[i] = NULL;
1709 }
1710 kfree(h->cmd_sg_list);
1711 h->cmd_sg_list = NULL;
1712}
1713
1714static int hpsa_allocate_sg_chain_blocks(struct ctlr_info *h)
1715{
1716 int i;
1717
1718 if (h->chainsize <= 0)
1719 return 0;
1720
1721 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1722 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001723 if (!h->cmd_sg_list) {
1724 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001725 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001726 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001727 for (i = 0; i < h->nr_cmds; i++) {
1728 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1729 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001730 if (!h->cmd_sg_list[i]) {
1731 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001732 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001733 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001734 }
1735 return 0;
1736
1737clean:
1738 hpsa_free_sg_chain_blocks(h);
1739 return -ENOMEM;
1740}
1741
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001742static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001743 struct CommandList *c)
1744{
1745 struct SGDescriptor *chain_sg, *chain_block;
1746 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001747 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001748
1749 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
1750 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001751 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
1752 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06001753 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001754 chain_sg->Len = cpu_to_le32(chain_len);
1755 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001756 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001757 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1758 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001759 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001760 return -1;
1761 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001762 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001763 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001764}
1765
1766static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
1767 struct CommandList *c)
1768{
1769 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001770
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001771 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001772 return;
1773
1774 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001775 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
1776 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001777}
1778
Scott Teela09c1442014-02-18 13:57:21 -06001779
1780/* Decode the various types of errors on ioaccel2 path.
1781 * Return 1 for any error that should generate a RAID path retry.
1782 * Return 0 for errors that don't require a RAID path retry.
1783 */
1784static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06001785 struct CommandList *c,
1786 struct scsi_cmnd *cmd,
1787 struct io_accel2_cmd *c2)
1788{
1789 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06001790 int retry = 0;
Scott Teelc3497752014-02-18 13:56:34 -06001791
1792 switch (c2->error_data.serv_response) {
1793 case IOACCEL2_SERV_RESPONSE_COMPLETE:
1794 switch (c2->error_data.status) {
1795 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
1796 break;
1797 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
1798 dev_warn(&h->pdev->dev,
1799 "%s: task complete with check condition.\n",
1800 "HP SSD Smart Path");
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001801 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06001802 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001803 IOACCEL2_SENSE_DATA_PRESENT) {
1804 memset(cmd->sense_buffer, 0,
1805 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06001806 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001807 }
Scott Teelc3497752014-02-18 13:56:34 -06001808 /* copy the sense data */
1809 data_len = c2->error_data.sense_data_len;
1810 if (data_len > SCSI_SENSE_BUFFERSIZE)
1811 data_len = SCSI_SENSE_BUFFERSIZE;
1812 if (data_len > sizeof(c2->error_data.sense_data_buff))
1813 data_len =
1814 sizeof(c2->error_data.sense_data_buff);
1815 memcpy(cmd->sense_buffer,
1816 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06001817 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001818 break;
1819 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
1820 dev_warn(&h->pdev->dev,
1821 "%s: task complete with BUSY status.\n",
1822 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001823 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001824 break;
1825 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
1826 dev_warn(&h->pdev->dev,
1827 "%s: task complete with reservation conflict.\n",
1828 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001829 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001830 break;
1831 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05001832 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001833 break;
1834 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
1835 dev_warn(&h->pdev->dev,
1836 "%s: task complete with aborted status.\n",
1837 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001838 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001839 break;
1840 default:
1841 dev_warn(&h->pdev->dev,
1842 "%s: task complete with unrecognized status: 0x%02x\n",
1843 "HP SSD Smart Path", c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001844 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001845 break;
1846 }
1847 break;
1848 case IOACCEL2_SERV_RESPONSE_FAILURE:
1849 /* don't expect to get here. */
1850 dev_warn(&h->pdev->dev,
1851 "unexpected delivery or target failure, status = 0x%02x\n",
1852 c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001853 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001854 break;
1855 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
1856 break;
1857 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
1858 break;
1859 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
1860 dev_warn(&h->pdev->dev, "task management function rejected.\n");
Scott Teela09c1442014-02-18 13:57:21 -06001861 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001862 break;
1863 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
1864 dev_warn(&h->pdev->dev, "task management function invalid LUN\n");
1865 break;
1866 default:
1867 dev_warn(&h->pdev->dev,
1868 "%s: Unrecognized server response: 0x%02x\n",
Scott Teela09c1442014-02-18 13:57:21 -06001869 "HP SSD Smart Path",
1870 c2->error_data.serv_response);
1871 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001872 break;
1873 }
Scott Teela09c1442014-02-18 13:57:21 -06001874
1875 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06001876}
1877
1878static void process_ioaccel2_completion(struct ctlr_info *h,
1879 struct CommandList *c, struct scsi_cmnd *cmd,
1880 struct hpsa_scsi_dev_t *dev)
1881{
1882 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
1883
1884 /* check for good status */
1885 if (likely(c2->error_data.serv_response == 0 &&
1886 c2->error_data.status == 0)) {
1887 cmd_free(h, c);
1888 cmd->scsi_done(cmd);
1889 return;
1890 }
1891
1892 /* Any RAID offload error results in retry which will use
1893 * the normal I/O path so the controller can handle whatever's
1894 * wrong.
1895 */
1896 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
1897 c2->error_data.serv_response ==
1898 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06001899 if (c2->error_data.status ==
1900 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
1901 dev->offload_enabled = 0;
1902 goto retry_cmd;
Scott Teelc3497752014-02-18 13:56:34 -06001903 }
Don Brace080ef1c2015-01-23 16:43:25 -06001904
1905 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
1906 goto retry_cmd;
1907
Scott Teelc3497752014-02-18 13:56:34 -06001908 cmd_free(h, c);
1909 cmd->scsi_done(cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06001910 return;
1911
1912retry_cmd:
1913 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
1914 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
Scott Teelc3497752014-02-18 13:56:34 -06001915}
1916
Stephen Cameron9437ac42015-04-23 09:32:16 -05001917/* Returns 0 on success, < 0 otherwise. */
1918static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
1919 struct CommandList *cp)
1920{
1921 u8 tmf_status = cp->err_info->ScsiStatus;
1922
1923 switch (tmf_status) {
1924 case CISS_TMF_COMPLETE:
1925 /*
1926 * CISS_TMF_COMPLETE never happens, instead,
1927 * ei->CommandStatus == 0 for this case.
1928 */
1929 case CISS_TMF_SUCCESS:
1930 return 0;
1931 case CISS_TMF_INVALID_FRAME:
1932 case CISS_TMF_NOT_SUPPORTED:
1933 case CISS_TMF_FAILED:
1934 case CISS_TMF_WRONG_LUN:
1935 case CISS_TMF_OVERLAPPED_TAG:
1936 break;
1937 default:
1938 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
1939 tmf_status);
1940 break;
1941 }
1942 return -tmf_status;
1943}
1944
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05001945static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001946{
1947 struct scsi_cmnd *cmd;
1948 struct ctlr_info *h;
1949 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001950 struct hpsa_scsi_dev_t *dev;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001951
Stephen Cameron9437ac42015-04-23 09:32:16 -05001952 u8 sense_key;
1953 u8 asc; /* additional sense code */
1954 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05001955 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001956
1957 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06001958 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001959 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001960 dev = cmd->device->hostdata;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001961
1962 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06001963 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06001964 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001965 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001966
1967 cmd->result = (DID_OK << 16); /* host byte */
1968 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06001969
Don Brace03383732015-01-23 16:43:30 -06001970 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
1971 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
1972
Webb Scales25163bd2015-04-23 09:32:00 -05001973 /*
1974 * We check for lockup status here as it may be set for
1975 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
1976 * fail_all_oustanding_cmds()
1977 */
1978 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
1979 /* DID_NO_CONNECT will prevent a retry */
1980 cmd->result = DID_NO_CONNECT << 16;
1981 cmd_free(h, cp);
1982 cmd->scsi_done(cmd);
1983 return;
1984 }
1985
Scott Teelc3497752014-02-18 13:56:34 -06001986 if (cp->cmd_type == CMD_IOACCEL2)
1987 return process_ioaccel2_completion(h, cp, cmd, dev);
1988
Robert Elliott6aa4c362014-07-03 10:18:19 -05001989 scsi_set_resid(cmd, ei->ResidualCnt);
1990 if (ei->CommandStatus == 0) {
Don Brace03383732015-01-23 16:43:30 -06001991 if (cp->cmd_type == CMD_IOACCEL1)
1992 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
Robert Elliott6aa4c362014-07-03 10:18:19 -05001993 cmd_free(h, cp);
1994 cmd->scsi_done(cmd);
1995 return;
1996 }
1997
Matt Gatese1f7de02014-02-18 13:55:17 -06001998 /* For I/O accelerator commands, copy over some fields to the normal
1999 * CISS header used below for error handling.
2000 */
2001 if (cp->cmd_type == CMD_IOACCEL1) {
2002 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002003 cp->Header.SGList = scsi_sg_count(cmd);
2004 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2005 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2006 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002007 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002008 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2009 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002010
2011 /* Any RAID offload error results in retry which will use
2012 * the normal I/O path so the controller can handle whatever's
2013 * wrong.
2014 */
2015 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
2016 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2017 dev->offload_enabled = 0;
Don Brace080ef1c2015-01-23 16:43:25 -06002018 INIT_WORK(&cp->work, hpsa_command_resubmit_worker);
2019 queue_work_on(raw_smp_processor_id(),
2020 h->resubmit_wq, &cp->work);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002021 return;
2022 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002023 }
2024
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002025 /* an error has occurred */
2026 switch (ei->CommandStatus) {
2027
2028 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002029 cmd->result |= ei->ScsiStatus;
2030 /* copy the sense data */
2031 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2032 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2033 else
2034 sense_data_size = sizeof(ei->SenseInfo);
2035 if (ei->SenseLen < sense_data_size)
2036 sense_data_size = ei->SenseLen;
2037 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2038 if (ei->ScsiStatus)
2039 decode_sense_data(ei->SenseInfo, sense_data_size,
2040 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002041 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002042 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002043 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002044 break;
2045 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002046 break;
2047 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002048 /* Problem was not a check condition
2049 * Pass it up to the upper layers...
2050 */
2051 if (ei->ScsiStatus) {
2052 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2053 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2054 "Returning result: 0x%x\n",
2055 cp, ei->ScsiStatus,
2056 sense_key, asc, ascq,
2057 cmd->result);
2058 } else { /* scsi status is zero??? How??? */
2059 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2060 "Returning no connection.\n", cp),
2061
2062 /* Ordinarily, this case should never happen,
2063 * but there is a bug in some released firmware
2064 * revisions that allows it to happen if, for
2065 * example, a 4100 backplane loses power and
2066 * the tape drive is in it. We assume that
2067 * it's a fatal error of some kind because we
2068 * can't show that it wasn't. We will make it
2069 * look like selection timeout since that is
2070 * the most common reason for this to occur,
2071 * and it's severe enough.
2072 */
2073
2074 cmd->result = DID_NO_CONNECT << 16;
2075 }
2076 break;
2077
2078 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2079 break;
2080 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002081 dev_warn(&h->pdev->dev,
2082 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002083 break;
2084 case CMD_INVALID: {
2085 /* print_bytes(cp, sizeof(*cp), 1, 0);
2086 print_cmd(cp); */
2087 /* We get CMD_INVALID if you address a non-existent device
2088 * instead of a selection timeout (no response). You will
2089 * see this if you yank out a drive, then try to access it.
2090 * This is kind of a shame because it means that any other
2091 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2092 * missing target. */
2093 cmd->result = DID_NO_CONNECT << 16;
2094 }
2095 break;
2096 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002097 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002098 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2099 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002100 break;
2101 case CMD_HARDWARE_ERR:
2102 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002103 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2104 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002105 break;
2106 case CMD_CONNECTION_LOST:
2107 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002108 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2109 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002110 break;
2111 case CMD_ABORTED:
2112 cmd->result = DID_ABORT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002113 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2114 cp->Request.CDB, ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002115 break;
2116 case CMD_ABORT_FAILED:
2117 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002118 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2119 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002120 break;
2121 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002122 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002123 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2124 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002125 break;
2126 case CMD_TIMEOUT:
2127 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002128 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2129 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002130 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002131 case CMD_UNABORTABLE:
2132 cmd->result = DID_ERROR << 16;
2133 dev_warn(&h->pdev->dev, "Command unabortable\n");
2134 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002135 case CMD_TMF_STATUS:
2136 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2137 cmd->result = DID_ERROR << 16;
2138 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002139 case CMD_IOACCEL_DISABLED:
2140 /* This only handles the direct pass-through case since RAID
2141 * offload is handled above. Just attempt a retry.
2142 */
2143 cmd->result = DID_SOFT_ERROR << 16;
2144 dev_warn(&h->pdev->dev,
2145 "cp %p had HP SSD Smart Path error\n", cp);
2146 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002147 default:
2148 cmd->result = DID_ERROR << 16;
2149 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2150 cp, ei->CommandStatus);
2151 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002152 cmd_free(h, cp);
Tomas Henzl2cc5bfa2013-08-01 15:14:00 +02002153 cmd->scsi_done(cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002154}
2155
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002156static void hpsa_pci_unmap(struct pci_dev *pdev,
2157 struct CommandList *c, int sg_used, int data_direction)
2158{
2159 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002160
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002161 for (i = 0; i < sg_used; i++)
2162 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2163 le32_to_cpu(c->SG[i].Len),
2164 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002165}
2166
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002167static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002168 struct CommandList *cp,
2169 unsigned char *buf,
2170 size_t buflen,
2171 int data_direction)
2172{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002173 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002174
2175 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2176 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002177 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002178 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002179 }
2180
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002181 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002182 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002183 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002184 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002185 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002186 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002187 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002188 cp->SG[0].Addr = cpu_to_le64(addr64);
2189 cp->SG[0].Len = cpu_to_le32(buflen);
2190 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2191 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2192 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002193 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002194}
2195
Webb Scales25163bd2015-04-23 09:32:00 -05002196#define NO_TIMEOUT ((unsigned long) -1)
2197#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2198static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2199 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002200{
2201 DECLARE_COMPLETION_ONSTACK(wait);
2202
2203 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002204 __enqueue_cmd_and_start_io(h, c, reply_queue);
2205 if (timeout_msecs == NO_TIMEOUT) {
2206 /* TODO: get rid of this no-timeout thing */
2207 wait_for_completion_io(&wait);
2208 return IO_OK;
2209 }
2210 if (!wait_for_completion_io_timeout(&wait,
2211 msecs_to_jiffies(timeout_msecs))) {
2212 dev_warn(&h->pdev->dev, "Command timed out.\n");
2213 return -ETIMEDOUT;
2214 }
2215 return IO_OK;
2216}
2217
2218static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2219 int reply_queue, unsigned long timeout_msecs)
2220{
2221 if (unlikely(lockup_detected(h))) {
2222 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2223 return IO_OK;
2224 }
2225 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002226}
2227
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002228static u32 lockup_detected(struct ctlr_info *h)
2229{
2230 int cpu;
2231 u32 rc, *lockup_detected;
2232
2233 cpu = get_cpu();
2234 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2235 rc = *lockup_detected;
2236 put_cpu();
2237 return rc;
2238}
2239
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002240#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002241static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2242 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002243{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002244 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002245 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002246
2247 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002248 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002249 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2250 timeout_msecs);
2251 if (rc)
2252 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002253 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002254 if (retry_count > 3) {
2255 msleep(backoff_time);
2256 if (backoff_time < 1000)
2257 backoff_time *= 2;
2258 }
Matt Bondurant852af202012-05-01 11:42:35 -05002259 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002260 check_for_busy(h, c)) &&
2261 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002262 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002263 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2264 rc = -EIO;
2265 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002266}
2267
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002268static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2269 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002270{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002271 const u8 *cdb = c->Request.CDB;
2272 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002273
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002274 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2275 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2276 txt, lun[0], lun[1], lun[2], lun[3],
2277 lun[4], lun[5], lun[6], lun[7],
2278 cdb[0], cdb[1], cdb[2], cdb[3],
2279 cdb[4], cdb[5], cdb[6], cdb[7],
2280 cdb[8], cdb[9], cdb[10], cdb[11],
2281 cdb[12], cdb[13], cdb[14], cdb[15]);
2282}
2283
2284static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2285 struct CommandList *cp)
2286{
2287 const struct ErrorInfo *ei = cp->err_info;
2288 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002289 u8 sense_key, asc, ascq;
2290 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002291
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002292 switch (ei->CommandStatus) {
2293 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002294 if (ei->SenseLen > sizeof(ei->SenseInfo))
2295 sense_len = sizeof(ei->SenseInfo);
2296 else
2297 sense_len = ei->SenseLen;
2298 decode_sense_data(ei->SenseInfo, sense_len,
2299 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002300 hpsa_print_cmd(h, "SCSI status", cp);
2301 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002302 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2303 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002304 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002305 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002306 if (ei->ScsiStatus == 0)
2307 dev_warn(d, "SCSI status is abnormally zero. "
2308 "(probably indicates selection timeout "
2309 "reported incorrectly due to a known "
2310 "firmware bug, circa July, 2001.)\n");
2311 break;
2312 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002313 break;
2314 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002315 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002316 break;
2317 case CMD_INVALID: {
2318 /* controller unfortunately reports SCSI passthru's
2319 * to non-existent targets as invalid commands.
2320 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002321 hpsa_print_cmd(h, "invalid command", cp);
2322 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002323 }
2324 break;
2325 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002326 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002327 break;
2328 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002329 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002330 break;
2331 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002332 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002333 break;
2334 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002335 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002336 break;
2337 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002338 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002339 break;
2340 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002341 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002342 break;
2343 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002344 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002345 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002346 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002347 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002348 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002349 case CMD_CTLR_LOCKUP:
2350 hpsa_print_cmd(h, "controller lockup detected", cp);
2351 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002352 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002353 hpsa_print_cmd(h, "unknown status", cp);
2354 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002355 ei->CommandStatus);
2356 }
2357}
2358
2359static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002360 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002361 unsigned char bufsize)
2362{
2363 int rc = IO_OK;
2364 struct CommandList *c;
2365 struct ErrorInfo *ei;
2366
Stephen Cameron45fcb862015-01-23 16:43:04 -06002367 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002368
Stephen Cameron574f05d2015-01-23 16:43:20 -06002369 if (c == NULL) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06002370 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06002371 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002372 }
2373
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002374 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2375 page, scsi3addr, TYPE_CMD)) {
2376 rc = -1;
2377 goto out;
2378 }
Webb Scales25163bd2015-04-23 09:32:00 -05002379 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2380 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2381 if (rc)
2382 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002383 ei = c->err_info;
2384 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002385 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002386 rc = -1;
2387 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002388out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002389 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002390 return rc;
2391}
2392
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002393static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
2394 unsigned char *scsi3addr, unsigned char page,
2395 struct bmic_controller_parameters *buf, size_t bufsize)
2396{
2397 int rc = IO_OK;
2398 struct CommandList *c;
2399 struct ErrorInfo *ei;
2400
Stephen Cameron45fcb862015-01-23 16:43:04 -06002401 c = cmd_alloc(h);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002402 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002403 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002404 return -ENOMEM;
2405 }
2406
2407 if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize,
2408 page, scsi3addr, TYPE_CMD)) {
2409 rc = -1;
2410 goto out;
2411 }
Webb Scales25163bd2015-04-23 09:32:00 -05002412 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2413 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2414 if (rc)
2415 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002416 ei = c->err_info;
2417 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2418 hpsa_scsi_interpret_error(h, c);
2419 rc = -1;
2420 }
2421out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002422 cmd_free(h, c);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002423 return rc;
2424 }
2425
Scott Teelbf711ac2014-02-18 13:56:39 -06002426static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002427 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002428{
2429 int rc = IO_OK;
2430 struct CommandList *c;
2431 struct ErrorInfo *ei;
2432
Stephen Cameron45fcb862015-01-23 16:43:04 -06002433 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002434
2435 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002436 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Camerone9ea04a2010-02-25 14:03:06 -06002437 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002438 }
2439
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002440 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teelbf711ac2014-02-18 13:56:39 -06002441 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2442 scsi3addr, TYPE_MSG);
2443 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
Webb Scales25163bd2015-04-23 09:32:00 -05002444 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
2445 if (rc) {
2446 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2447 goto out;
2448 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002449 /* no unmap needed here because no data xfer. */
2450
2451 ei = c->err_info;
2452 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002453 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002454 rc = -1;
2455 }
Webb Scales25163bd2015-04-23 09:32:00 -05002456out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002457 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002458 return rc;
2459}
2460
2461static void hpsa_get_raid_level(struct ctlr_info *h,
2462 unsigned char *scsi3addr, unsigned char *raid_level)
2463{
2464 int rc;
2465 unsigned char *buf;
2466
2467 *raid_level = RAID_UNKNOWN;
2468 buf = kzalloc(64, GFP_KERNEL);
2469 if (!buf)
2470 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002471 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002472 if (rc == 0)
2473 *raid_level = buf[8];
2474 if (*raid_level > RAID_UNKNOWN)
2475 *raid_level = RAID_UNKNOWN;
2476 kfree(buf);
2477 return;
2478}
2479
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002480#define HPSA_MAP_DEBUG
2481#ifdef HPSA_MAP_DEBUG
2482static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2483 struct raid_map_data *map_buff)
2484{
2485 struct raid_map_disk_data *dd = &map_buff->data[0];
2486 int map, row, col;
2487 u16 map_cnt, row_cnt, disks_per_row;
2488
2489 if (rc != 0)
2490 return;
2491
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002492 /* Show details only if debugging has been activated. */
2493 if (h->raid_offload_debug < 2)
2494 return;
2495
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002496 dev_info(&h->pdev->dev, "structure_size = %u\n",
2497 le32_to_cpu(map_buff->structure_size));
2498 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2499 le32_to_cpu(map_buff->volume_blk_size));
2500 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2501 le64_to_cpu(map_buff->volume_blk_cnt));
2502 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2503 map_buff->phys_blk_shift);
2504 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2505 map_buff->parity_rotation_shift);
2506 dev_info(&h->pdev->dev, "strip_size = %u\n",
2507 le16_to_cpu(map_buff->strip_size));
2508 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2509 le64_to_cpu(map_buff->disk_starting_blk));
2510 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2511 le64_to_cpu(map_buff->disk_blk_cnt));
2512 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2513 le16_to_cpu(map_buff->data_disks_per_row));
2514 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2515 le16_to_cpu(map_buff->metadata_disks_per_row));
2516 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2517 le16_to_cpu(map_buff->row_cnt));
2518 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2519 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002520 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002521 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002522 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2523 le16_to_cpu(map_buff->flags) &
2524 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002525 dev_info(&h->pdev->dev, "dekindex = %u\n",
2526 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002527 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2528 for (map = 0; map < map_cnt; map++) {
2529 dev_info(&h->pdev->dev, "Map%u:\n", map);
2530 row_cnt = le16_to_cpu(map_buff->row_cnt);
2531 for (row = 0; row < row_cnt; row++) {
2532 dev_info(&h->pdev->dev, " Row%u:\n", row);
2533 disks_per_row =
2534 le16_to_cpu(map_buff->data_disks_per_row);
2535 for (col = 0; col < disks_per_row; col++, dd++)
2536 dev_info(&h->pdev->dev,
2537 " D%02u: h=0x%04x xor=%u,%u\n",
2538 col, dd->ioaccel_handle,
2539 dd->xor_mult[0], dd->xor_mult[1]);
2540 disks_per_row =
2541 le16_to_cpu(map_buff->metadata_disks_per_row);
2542 for (col = 0; col < disks_per_row; col++, dd++)
2543 dev_info(&h->pdev->dev,
2544 " M%02u: h=0x%04x xor=%u,%u\n",
2545 col, dd->ioaccel_handle,
2546 dd->xor_mult[0], dd->xor_mult[1]);
2547 }
2548 }
2549}
2550#else
2551static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2552 __attribute__((unused)) int rc,
2553 __attribute__((unused)) struct raid_map_data *map_buff)
2554{
2555}
2556#endif
2557
2558static int hpsa_get_raid_map(struct ctlr_info *h,
2559 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2560{
2561 int rc = 0;
2562 struct CommandList *c;
2563 struct ErrorInfo *ei;
2564
Stephen Cameron45fcb862015-01-23 16:43:04 -06002565 c = cmd_alloc(h);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002566 if (c == NULL) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06002567 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002568 return -ENOMEM;
2569 }
2570 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2571 sizeof(this_device->raid_map), 0,
2572 scsi3addr, TYPE_CMD)) {
2573 dev_warn(&h->pdev->dev, "Out of memory in hpsa_get_raid_map()\n");
Webb Scales25163bd2015-04-23 09:32:00 -05002574 rc = -ENOMEM;
2575 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002576 }
Webb Scales25163bd2015-04-23 09:32:00 -05002577 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2578 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2579 if (rc)
2580 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002581 ei = c->err_info;
2582 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002583 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05002584 rc = -1;
2585 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002586 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002587 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002588
2589 /* @todo in the future, dynamically allocate RAID map memory */
2590 if (le32_to_cpu(this_device->raid_map.structure_size) >
2591 sizeof(this_device->raid_map)) {
2592 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2593 rc = -1;
2594 }
2595 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
2596 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05002597out:
2598 cmd_free(h, c);
2599 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002600}
2601
Don Brace03383732015-01-23 16:43:30 -06002602static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
2603 unsigned char scsi3addr[], u16 bmic_device_index,
2604 struct bmic_identify_physical_device *buf, size_t bufsize)
2605{
2606 int rc = IO_OK;
2607 struct CommandList *c;
2608 struct ErrorInfo *ei;
2609
2610 c = cmd_alloc(h);
2611 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
2612 0, RAID_CTLR_LUNID, TYPE_CMD);
2613 if (rc)
2614 goto out;
2615
2616 c->Request.CDB[2] = bmic_device_index & 0xff;
2617 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
2618
Webb Scales25163bd2015-04-23 09:32:00 -05002619 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
2620 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06002621 ei = c->err_info;
2622 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2623 hpsa_scsi_interpret_error(h, c);
2624 rc = -1;
2625 }
2626out:
2627 cmd_free(h, c);
2628 return rc;
2629}
2630
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002631static int hpsa_vpd_page_supported(struct ctlr_info *h,
2632 unsigned char scsi3addr[], u8 page)
2633{
2634 int rc;
2635 int i;
2636 int pages;
2637 unsigned char *buf, bufsize;
2638
2639 buf = kzalloc(256, GFP_KERNEL);
2640 if (!buf)
2641 return 0;
2642
2643 /* Get the size of the page list first */
2644 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2645 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2646 buf, HPSA_VPD_HEADER_SZ);
2647 if (rc != 0)
2648 goto exit_unsupported;
2649 pages = buf[3];
2650 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
2651 bufsize = pages + HPSA_VPD_HEADER_SZ;
2652 else
2653 bufsize = 255;
2654
2655 /* Get the whole VPD page list */
2656 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2657 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2658 buf, bufsize);
2659 if (rc != 0)
2660 goto exit_unsupported;
2661
2662 pages = buf[3];
2663 for (i = 1; i <= pages; i++)
2664 if (buf[3 + i] == page)
2665 goto exit_supported;
2666exit_unsupported:
2667 kfree(buf);
2668 return 0;
2669exit_supported:
2670 kfree(buf);
2671 return 1;
2672}
2673
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002674static void hpsa_get_ioaccel_status(struct ctlr_info *h,
2675 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2676{
2677 int rc;
2678 unsigned char *buf;
2679 u8 ioaccel_status;
2680
2681 this_device->offload_config = 0;
2682 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002683 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002684
2685 buf = kzalloc(64, GFP_KERNEL);
2686 if (!buf)
2687 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002688 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
2689 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002690 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002691 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002692 if (rc != 0)
2693 goto out;
2694
2695#define IOACCEL_STATUS_BYTE 4
2696#define OFFLOAD_CONFIGURED_BIT 0x01
2697#define OFFLOAD_ENABLED_BIT 0x02
2698 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
2699 this_device->offload_config =
2700 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
2701 if (this_device->offload_config) {
2702 this_device->offload_enabled =
2703 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
2704 if (hpsa_get_raid_map(h, scsi3addr, this_device))
2705 this_device->offload_enabled = 0;
2706 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002707 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002708out:
2709 kfree(buf);
2710 return;
2711}
2712
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002713/* Get the device id from inquiry page 0x83 */
2714static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
2715 unsigned char *device_id, int buflen)
2716{
2717 int rc;
2718 unsigned char *buf;
2719
2720 if (buflen > 16)
2721 buflen = 16;
2722 buf = kzalloc(64, GFP_KERNEL);
2723 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05002724 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002725 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002726 if (rc == 0)
2727 memcpy(device_id, &buf[8], buflen);
2728 kfree(buf);
2729 return rc != 0;
2730}
2731
2732static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06002733 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002734 int extended_response)
2735{
2736 int rc = IO_OK;
2737 struct CommandList *c;
2738 unsigned char scsi3addr[8];
2739 struct ErrorInfo *ei;
2740
Stephen Cameron45fcb862015-01-23 16:43:04 -06002741 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002742 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06002743 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002744 return -1;
2745 }
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06002746 /* address the controller */
2747 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002748 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
2749 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
2750 rc = -1;
2751 goto out;
2752 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002753 if (extended_response)
2754 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05002755 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2756 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2757 if (rc)
2758 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002759 ei = c->err_info;
2760 if (ei->CommandStatus != 0 &&
2761 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002762 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002763 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002764 } else {
Don Brace03383732015-01-23 16:43:30 -06002765 struct ReportLUNdata *rld = buf;
2766
2767 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002768 dev_err(&h->pdev->dev,
2769 "report luns requested format %u, got %u\n",
2770 extended_response,
Don Brace03383732015-01-23 16:43:30 -06002771 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002772 rc = -1;
2773 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002774 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002775out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002776 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002777 return rc;
2778}
2779
2780static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06002781 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002782{
Don Brace03383732015-01-23 16:43:30 -06002783 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
2784 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002785}
2786
2787static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
2788 struct ReportLUNdata *buf, int bufsize)
2789{
2790 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
2791}
2792
2793static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
2794 int bus, int target, int lun)
2795{
2796 device->bus = bus;
2797 device->target = target;
2798 device->lun = lun;
2799}
2800
Stephen M. Cameron98465902014-02-21 16:25:00 -06002801/* Use VPD inquiry to get details of volume status */
2802static int hpsa_get_volume_status(struct ctlr_info *h,
2803 unsigned char scsi3addr[])
2804{
2805 int rc;
2806 int status;
2807 int size;
2808 unsigned char *buf;
2809
2810 buf = kzalloc(64, GFP_KERNEL);
2811 if (!buf)
2812 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2813
2814 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002815 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06002816 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002817
2818 /* Get the size of the VPD return buffer */
2819 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2820 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002821 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002822 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002823 size = buf[3];
2824
2825 /* Now get the whole VPD buffer */
2826 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2827 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002828 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002829 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002830 status = buf[4]; /* status byte */
2831
2832 kfree(buf);
2833 return status;
2834exit_failed:
2835 kfree(buf);
2836 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2837}
2838
2839/* Determine offline status of a volume.
2840 * Return either:
2841 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002842 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002843 * # (integer code indicating one of several NOT READY states
2844 * describing why a volume is to be kept offline)
2845 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002846static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06002847 unsigned char scsi3addr[])
2848{
2849 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002850 unsigned char *sense;
2851 u8 sense_key, asc, ascq;
2852 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05002853 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002854 u16 cmd_status;
2855 u8 scsi_status;
2856#define ASC_LUN_NOT_READY 0x04
2857#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
2858#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
2859
2860 c = cmd_alloc(h);
2861 if (!c)
2862 return 0;
2863 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05002864 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
2865 if (rc) {
2866 cmd_free(h, c);
2867 return 0;
2868 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06002869 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002870 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
2871 sense_len = sizeof(c->err_info->SenseInfo);
2872 else
2873 sense_len = c->err_info->SenseLen;
2874 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06002875 cmd_status = c->err_info->CommandStatus;
2876 scsi_status = c->err_info->ScsiStatus;
2877 cmd_free(h, c);
2878 /* Is the volume 'not ready'? */
2879 if (cmd_status != CMD_TARGET_STATUS ||
2880 scsi_status != SAM_STAT_CHECK_CONDITION ||
2881 sense_key != NOT_READY ||
2882 asc != ASC_LUN_NOT_READY) {
2883 return 0;
2884 }
2885
2886 /* Determine the reason for not ready state */
2887 ldstat = hpsa_get_volume_status(h, scsi3addr);
2888
2889 /* Keep volume offline in certain cases: */
2890 switch (ldstat) {
2891 case HPSA_LV_UNDERGOING_ERASE:
2892 case HPSA_LV_UNDERGOING_RPI:
2893 case HPSA_LV_PENDING_RPI:
2894 case HPSA_LV_ENCRYPTED_NO_KEY:
2895 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
2896 case HPSA_LV_UNDERGOING_ENCRYPTION:
2897 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
2898 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
2899 return ldstat;
2900 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
2901 /* If VPD status page isn't available,
2902 * use ASC/ASCQ to determine state
2903 */
2904 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
2905 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
2906 return ldstat;
2907 break;
2908 default:
2909 break;
2910 }
2911 return 0;
2912}
2913
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05002914/*
2915 * Find out if a logical device supports aborts by simply trying one.
2916 * Smart Array may claim not to support aborts on logical drives, but
2917 * if a MSA2000 * is connected, the drives on that will be presented
2918 * by the Smart Array as logical drives, and aborts may be sent to
2919 * those devices successfully. So the simplest way to find out is
2920 * to simply try an abort and see how the device responds.
2921 */
2922static int hpsa_device_supports_aborts(struct ctlr_info *h,
2923 unsigned char *scsi3addr)
2924{
2925 struct CommandList *c;
2926 struct ErrorInfo *ei;
2927 int rc = 0;
2928
2929 u64 tag = (u64) -1; /* bogus tag */
2930
2931 /* Assume that physical devices support aborts */
2932 if (!is_logical_dev_addr_mode(scsi3addr))
2933 return 1;
2934
2935 c = cmd_alloc(h);
2936 if (!c)
2937 return -ENOMEM;
2938 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
2939 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
2940 /* no unmap needed here because no data xfer. */
2941 ei = c->err_info;
2942 switch (ei->CommandStatus) {
2943 case CMD_INVALID:
2944 rc = 0;
2945 break;
2946 case CMD_UNABORTABLE:
2947 case CMD_ABORT_FAILED:
2948 rc = 1;
2949 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002950 case CMD_TMF_STATUS:
2951 rc = hpsa_evaluate_tmf_status(h, c);
2952 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05002953 default:
2954 rc = 0;
2955 break;
2956 }
2957 cmd_free(h, c);
2958 return rc;
2959}
2960
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002961static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002962 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
2963 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002964{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002965
2966#define OBDR_SIG_OFFSET 43
2967#define OBDR_TAPE_SIG "$DR-10"
2968#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
2969#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
2970
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06002971 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002972 unsigned char *obdr_sig;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002973
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06002974 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002975 if (!inq_buff)
2976 goto bail_out;
2977
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002978 /* Do an inquiry to the device to see what it is. */
2979 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
2980 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
2981 /* Inquiry failed (msg printed already) */
2982 dev_err(&h->pdev->dev,
2983 "hpsa_update_device_info: inquiry failed\n");
2984 goto bail_out;
2985 }
2986
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002987 this_device->devtype = (inq_buff[0] & 0x1f);
2988 memcpy(this_device->scsi3addr, scsi3addr, 8);
2989 memcpy(this_device->vendor, &inq_buff[8],
2990 sizeof(this_device->vendor));
2991 memcpy(this_device->model, &inq_buff[16],
2992 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002993 memset(this_device->device_id, 0,
2994 sizeof(this_device->device_id));
2995 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
2996 sizeof(this_device->device_id));
2997
2998 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002999 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003000 int volume_offline;
3001
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003002 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003003 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3004 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003005 volume_offline = hpsa_volume_offline(h, scsi3addr);
3006 if (volume_offline < 0 || volume_offline > 0xff)
3007 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3008 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003009 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003010 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003011 this_device->offload_config = 0;
3012 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003013 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003014 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003015 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003016 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003017 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003018
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003019 if (is_OBDR_device) {
3020 /* See if this is a One-Button-Disaster-Recovery device
3021 * by looking for "$DR-10" at offset 43 in inquiry data.
3022 */
3023 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3024 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3025 strncmp(obdr_sig, OBDR_TAPE_SIG,
3026 OBDR_SIG_LEN) == 0);
3027 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003028 kfree(inq_buff);
3029 return 0;
3030
3031bail_out:
3032 kfree(inq_buff);
3033 return 1;
3034}
3035
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003036static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3037 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3038{
3039 unsigned long flags;
3040 int rc, entry;
3041 /*
3042 * See if this device supports aborts. If we already know
3043 * the device, we already know if it supports aborts, otherwise
3044 * we have to find out if it supports aborts by trying one.
3045 */
3046 spin_lock_irqsave(&h->devlock, flags);
3047 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3048 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3049 entry >= 0 && entry < h->ndevices) {
3050 dev->supports_aborts = h->dev[entry]->supports_aborts;
3051 spin_unlock_irqrestore(&h->devlock, flags);
3052 } else {
3053 spin_unlock_irqrestore(&h->devlock, flags);
3054 dev->supports_aborts =
3055 hpsa_device_supports_aborts(h, scsi3addr);
3056 if (dev->supports_aborts < 0)
3057 dev->supports_aborts = 0;
3058 }
3059}
3060
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003061static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003062 "MSA2012",
3063 "MSA2024",
3064 "MSA2312",
3065 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05003066 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05003067 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003068 NULL,
3069};
3070
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003071static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003072{
3073 int i;
3074
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003075 for (i = 0; ext_target_model[i]; i++)
3076 if (strncmp(device->model, ext_target_model[i],
3077 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003078 return 1;
3079 return 0;
3080}
3081
3082/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003083 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003084 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
3085 * Logical drive target and lun are assigned at this time, but
3086 * physical device lun and target assignment are deferred (assigned
3087 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
3088 */
3089static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003090 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003091{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003092 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003093
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003094 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3095 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003096 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003097 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003098 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003099 /* defer target, lun assignment for physical devices */
3100 hpsa_set_bus_target_lun(device, 2, -1, -1);
3101 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003102 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003103 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003104 if (is_ext_target(h, device)) {
3105 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003106 * and match target/lun numbers box
3107 * reports, other smart array, bus 0, target 0, match lunid
3108 */
3109 hpsa_set_bus_target_lun(device,
3110 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
3111 return;
3112 }
3113 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003114}
3115
3116/*
3117 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003118 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003119 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
3120 * it for some reason. *tmpdevice is the target we're adding,
3121 * this_device is a pointer into the current element of currentsd[]
3122 * that we're building up in update_scsi_devices(), below.
3123 * lunzerobits is a bitmap that tracks which targets already have a
3124 * lun 0 assigned.
3125 * Returns 1 if an enclosure was added, 0 if not.
3126 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003127static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003128 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003129 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003130 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003131{
3132 unsigned char scsi3addr[8];
3133
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003134 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003135 return 0; /* There is already a lun 0 on this target. */
3136
3137 if (!is_logical_dev_addr_mode(lunaddrbytes))
3138 return 0; /* It's the logical targets that may lack lun 0. */
3139
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003140 if (!is_ext_target(h, tmpdevice))
3141 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003142
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003143 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003144 return 0;
3145
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06003146 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003147 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003148 if (is_hba_lunid(scsi3addr))
3149 return 0; /* Don't add the RAID controller here. */
3150
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003151 if (is_scsi_rev_5(h))
3152 return 0; /* p1210m doesn't need to do this. */
3153
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003154 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06003155 dev_warn(&h->pdev->dev, "Maximum number of external "
3156 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003157 "configuration.");
3158 return 0;
3159 }
3160
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003161 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003162 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003163 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003164 hpsa_set_bus_target_lun(this_device,
3165 tmpdevice->bus, tmpdevice->target, 0);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003166 hpsa_update_device_supports_aborts(h, this_device, scsi3addr);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003167 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003168 return 1;
3169}
3170
3171/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003172 * Get address of physical disk used for an ioaccel2 mode command:
3173 * 1. Extract ioaccel2 handle from the command.
3174 * 2. Find a matching ioaccel2 handle from list of physical disks.
3175 * 3. Return:
3176 * 1 and set scsi3addr to address of matching physical
3177 * 0 if no matching physical disk was found.
3178 */
3179static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3180 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3181{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003182 struct io_accel2_cmd *c2 =
3183 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3184 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003185 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003186
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003187 spin_lock_irqsave(&h->devlock, flags);
3188 for (i = 0; i < h->ndevices; i++)
3189 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3190 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3191 sizeof(h->dev[i]->scsi3addr));
3192 spin_unlock_irqrestore(&h->devlock, flags);
3193 return 1;
3194 }
3195 spin_unlock_irqrestore(&h->devlock, flags);
3196 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003197}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003198
Scott Teel54b6e9e2014-02-18 13:56:45 -06003199/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003200 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
3201 * logdev. The number of luns in physdev and logdev are returned in
3202 * *nphysicals and *nlogicals, respectively.
3203 * Returns 0 on success, -1 otherwise.
3204 */
3205static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003206 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003207 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003208{
Don Brace03383732015-01-23 16:43:30 -06003209 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003210 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3211 return -1;
3212 }
Don Brace03383732015-01-23 16:43:30 -06003213 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003214 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06003215 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
3216 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003217 *nphysicals = HPSA_MAX_PHYS_LUN;
3218 }
Don Brace03383732015-01-23 16:43:30 -06003219 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003220 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3221 return -1;
3222 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06003223 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003224 /* Reject Logicals in excess of our max capability. */
3225 if (*nlogicals > HPSA_MAX_LUN) {
3226 dev_warn(&h->pdev->dev,
3227 "maximum logical LUNs (%d) exceeded. "
3228 "%d LUNs ignored.\n", HPSA_MAX_LUN,
3229 *nlogicals - HPSA_MAX_LUN);
3230 *nlogicals = HPSA_MAX_LUN;
3231 }
3232 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3233 dev_warn(&h->pdev->dev,
3234 "maximum logical + physical LUNs (%d) exceeded. "
3235 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3236 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3237 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3238 }
3239 return 0;
3240}
3241
Don Brace42a91642014-11-14 17:26:27 -06003242static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
3243 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003244 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003245 struct ReportLUNdata *logdev_list)
3246{
3247 /* Helper function, figure out where the LUN ID info is coming from
3248 * given index i, lists of physical and logical devices, where in
3249 * the list the raid controller is supposed to appear (first or last)
3250 */
3251
3252 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3253 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3254
3255 if (i == raid_ctlr_position)
3256 return RAID_CTLR_LUNID;
3257
3258 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05003259 return &physdev_list->LUN[i -
3260 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003261
3262 if (i < last_device)
3263 return &logdev_list->LUN[i - nphysicals -
3264 (raid_ctlr_position == 0)][0];
3265 BUG();
3266 return NULL;
3267}
3268
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003269static int hpsa_hba_mode_enabled(struct ctlr_info *h)
3270{
3271 int rc;
Joe Handzik6e8e8082014-05-15 15:44:42 -05003272 int hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003273 struct bmic_controller_parameters *ctlr_params;
3274 ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters),
3275 GFP_KERNEL);
3276
3277 if (!ctlr_params)
Joe Handzik96444fb2014-05-15 15:44:47 -05003278 return -ENOMEM;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003279 rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params,
3280 sizeof(struct bmic_controller_parameters));
Joe Handzik96444fb2014-05-15 15:44:47 -05003281 if (rc) {
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003282 kfree(ctlr_params);
Joe Handzik96444fb2014-05-15 15:44:47 -05003283 return rc;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003284 }
Joe Handzik6e8e8082014-05-15 15:44:42 -05003285
3286 hba_mode_enabled =
3287 ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0);
3288 kfree(ctlr_params);
3289 return hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003290}
3291
Don Brace03383732015-01-23 16:43:30 -06003292/* get physical drive ioaccel handle and queue depth */
3293static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3294 struct hpsa_scsi_dev_t *dev,
3295 u8 *lunaddrbytes,
3296 struct bmic_identify_physical_device *id_phys)
3297{
3298 int rc;
3299 struct ext_report_lun_entry *rle =
3300 (struct ext_report_lun_entry *) lunaddrbytes;
3301
3302 dev->ioaccel_handle = rle->ioaccel_handle;
Joe Handzika3144e02015-04-23 09:32:59 -05003303 if (PHYS_IOACCEL(lunaddrbytes) && dev->ioaccel_handle)
3304 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06003305 memset(id_phys, 0, sizeof(*id_phys));
3306 rc = hpsa_bmic_id_physical_device(h, lunaddrbytes,
3307 GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys,
3308 sizeof(*id_phys));
3309 if (!rc)
3310 /* Reserve space for FW operations */
3311#define DRIVE_CMDS_RESERVED_FOR_FW 2
3312#define DRIVE_QUEUE_DEPTH 7
3313 dev->queue_depth =
3314 le16_to_cpu(id_phys->current_queue_depth_limit) -
3315 DRIVE_CMDS_RESERVED_FOR_FW;
3316 else
3317 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
3318 atomic_set(&dev->ioaccel_cmds_out, 0);
3319}
3320
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003321static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
3322{
3323 /* the idea here is we could get notified
3324 * that some devices have changed, so we do a report
3325 * physical luns and report logical luns cmd, and adjust
3326 * our list of devices accordingly.
3327 *
3328 * The scsi3addr's of devices won't change so long as the
3329 * adapter is not reset. That means we can rescan and
3330 * tell which devices we already know about, vs. new
3331 * devices, vs. disappearing devices.
3332 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003333 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003334 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003335 struct bmic_identify_physical_device *id_phys = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003336 u32 nphysicals = 0;
3337 u32 nlogicals = 0;
3338 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003339 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3340 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003341 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003342 int raid_ctlr_position;
Joe Handzik2bbf5c72014-05-21 11:16:01 -05003343 int rescan_hba_mode;
Scott Teelaca4a522012-01-19 14:01:19 -06003344 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003345
Scott Teelcfe5bad2011-10-26 16:21:07 -05003346 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003347 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3348 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003349 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003350 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003351
Don Brace03383732015-01-23 16:43:30 -06003352 if (!currentsd || !physdev_list || !logdev_list ||
3353 !tmpdevice || !id_phys) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003354 dev_err(&h->pdev->dev, "out of memory\n");
3355 goto out;
3356 }
3357 memset(lunzerobits, 0, sizeof(lunzerobits));
3358
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003359 rescan_hba_mode = hpsa_hba_mode_enabled(h);
Joe Handzik96444fb2014-05-15 15:44:47 -05003360 if (rescan_hba_mode < 0)
3361 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003362
3363 if (!h->hba_mode_enabled && rescan_hba_mode)
3364 dev_warn(&h->pdev->dev, "HBA mode enabled\n");
3365 else if (h->hba_mode_enabled && !rescan_hba_mode)
3366 dev_warn(&h->pdev->dev, "HBA mode disabled\n");
3367
3368 h->hba_mode_enabled = rescan_hba_mode;
3369
Don Brace03383732015-01-23 16:43:30 -06003370 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
3371 logdev_list, &nlogicals))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003372 goto out;
3373
Scott Teelaca4a522012-01-19 14:01:19 -06003374 /* We might see up to the maximum number of logical and physical disks
3375 * plus external target devices, and a device for the local RAID
3376 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003377 */
Scott Teelaca4a522012-01-19 14:01:19 -06003378 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003379
3380 /* Allocate the per device structures */
3381 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003382 if (i >= HPSA_MAX_DEVICES) {
3383 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3384 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3385 ndevs_to_allocate - HPSA_MAX_DEVICES);
3386 break;
3387 }
3388
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003389 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3390 if (!currentsd[i]) {
3391 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3392 __FILE__, __LINE__);
3393 goto out;
3394 }
3395 ndev_allocated++;
3396 }
3397
Stephen M. Cameron86452912014-05-29 10:53:49 -05003398 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003399 raid_ctlr_position = 0;
3400 else
3401 raid_ctlr_position = nphysicals + nlogicals;
3402
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003403 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003404 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003405 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003406 u8 *lunaddrbytes, is_OBDR = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003407
3408 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003409 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3410 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003411
3412 /* skip masked non-disk devices */
3413 if (MASKED_DEVICE(lunaddrbytes))
3414 if (i < nphysicals + (raid_ctlr_position == 0) &&
3415 NON_DISK_PHYS_DEV(lunaddrbytes))
3416 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003417
3418 /* Get device type, vendor, model, device id */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003419 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3420 &is_OBDR))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003421 continue; /* skip it if we can't talk to it. */
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003422 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003423 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003424 this_device = currentsd[ncurrent];
3425
3426 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003427 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003428 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3429 * is nonetheless an enclosure device there. We have to
3430 * present that otherwise linux won't find anything if
3431 * there is no lun 0.
3432 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003433 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003434 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003435 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003436 ncurrent++;
3437 this_device = currentsd[ncurrent];
3438 }
3439
3440 *this_device = *tmpdevice;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003441
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003442 /* do not expose masked devices */
3443 if (MASKED_DEVICE(lunaddrbytes) &&
3444 i < nphysicals + (raid_ctlr_position == 0)) {
3445 if (h->hba_mode_enabled)
3446 dev_warn(&h->pdev->dev,
3447 "Masked physical device detected\n");
3448 this_device->expose_state = HPSA_DO_NOT_EXPOSE;
3449 } else {
3450 this_device->expose_state =
3451 HPSA_SG_ATTACH | HPSA_ULD_ATTACH;
3452 }
3453
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003454 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003455 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003456 /* We don't *really* support actual CD-ROM devices,
3457 * just "One Button Disaster Recovery" tape drive
3458 * which temporarily pretends to be a CD-ROM drive.
3459 * So we check that the device is really an OBDR tape
3460 * device by checking for "$DR-10" in bytes 43-48 of
3461 * the inquiry data.
3462 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003463 if (is_OBDR)
3464 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003465 break;
3466 case TYPE_DISK:
Joe Handzikecf418d12015-04-23 09:33:04 -05003467 if (i >= nphysicals) {
3468 ncurrent++;
3469 break;
3470 }
3471
3472 if (h->hba_mode_enabled)
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003473 /* never use raid mapper in HBA mode */
3474 this_device->offload_enabled = 0;
Joe Handzikecf418d12015-04-23 09:33:04 -05003475 else if (!(h->transMethod & CFGTBL_Trans_io_accel1 ||
3476 h->transMethod & CFGTBL_Trans_io_accel2))
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003477 break;
Joe Handzikecf418d12015-04-23 09:33:04 -05003478
3479 hpsa_get_ioaccel_drive_info(h, this_device,
3480 lunaddrbytes, id_phys);
3481 atomic_set(&this_device->ioaccel_cmds_out, 0);
3482 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003483 break;
3484 case TYPE_TAPE:
3485 case TYPE_MEDIUM_CHANGER:
3486 ncurrent++;
3487 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003488 case TYPE_ENCLOSURE:
3489 if (h->hba_mode_enabled)
3490 ncurrent++;
3491 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003492 case TYPE_RAID:
3493 /* Only present the Smartarray HBA as a RAID controller.
3494 * If it's a RAID controller other than the HBA itself
3495 * (an external RAID controller, MSA500 or similar)
3496 * don't present it.
3497 */
3498 if (!is_hba_lunid(lunaddrbytes))
3499 break;
3500 ncurrent++;
3501 break;
3502 default:
3503 break;
3504 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003505 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003506 break;
3507 }
3508 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3509out:
3510 kfree(tmpdevice);
3511 for (i = 0; i < ndev_allocated; i++)
3512 kfree(currentsd[i]);
3513 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003514 kfree(physdev_list);
3515 kfree(logdev_list);
Don Brace03383732015-01-23 16:43:30 -06003516 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003517}
3518
Webb Scalesec5cbf02015-01-23 16:44:45 -06003519static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3520 struct scatterlist *sg)
3521{
3522 u64 addr64 = (u64) sg_dma_address(sg);
3523 unsigned int len = sg_dma_len(sg);
3524
3525 desc->Addr = cpu_to_le64(addr64);
3526 desc->Len = cpu_to_le32(len);
3527 desc->Ext = 0;
3528}
3529
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003530/*
3531 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003532 * dma mapping and fills in the scatter gather entries of the
3533 * hpsa command, cp.
3534 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003535static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003536 struct CommandList *cp,
3537 struct scsi_cmnd *cmd)
3538{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003539 struct scatterlist *sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003540 int use_sg, i, sg_index, chained;
3541 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003542
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003543 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003544
3545 use_sg = scsi_dma_map(cmd);
3546 if (use_sg < 0)
3547 return use_sg;
3548
3549 if (!use_sg)
3550 goto sglist_finished;
3551
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003552 curr_sg = cp->SG;
3553 chained = 0;
3554 sg_index = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003555 scsi_for_each_sg(cmd, sg, use_sg, i) {
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003556 if (i == h->max_cmd_sg_entries - 1 &&
3557 use_sg > h->max_cmd_sg_entries) {
3558 chained = 1;
3559 curr_sg = h->cmd_sg_list[cp->cmdindex];
3560 sg_index = 0;
3561 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003562 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003563 curr_sg++;
3564 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003565
3566 /* Back the pointer up to the last entry and mark it as "last". */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003567 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003568
3569 if (use_sg + chained > h->maxSG)
3570 h->maxSG = use_sg + chained;
3571
3572 if (chained) {
3573 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003574 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06003575 if (hpsa_map_sg_chain_block(h, cp)) {
3576 scsi_dma_unmap(cmd);
3577 return -1;
3578 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003579 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003580 }
3581
3582sglist_finished:
3583
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003584 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003585 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003586 return 0;
3587}
3588
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003589#define IO_ACCEL_INELIGIBLE (1)
3590static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
3591{
3592 int is_write = 0;
3593 u32 block;
3594 u32 block_cnt;
3595
3596 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
3597 switch (cdb[0]) {
3598 case WRITE_6:
3599 case WRITE_12:
3600 is_write = 1;
3601 case READ_6:
3602 case READ_12:
3603 if (*cdb_len == 6) {
3604 block = (((u32) cdb[2]) << 8) | cdb[3];
3605 block_cnt = cdb[4];
3606 } else {
3607 BUG_ON(*cdb_len != 12);
3608 block = (((u32) cdb[2]) << 24) |
3609 (((u32) cdb[3]) << 16) |
3610 (((u32) cdb[4]) << 8) |
3611 cdb[5];
3612 block_cnt =
3613 (((u32) cdb[6]) << 24) |
3614 (((u32) cdb[7]) << 16) |
3615 (((u32) cdb[8]) << 8) |
3616 cdb[9];
3617 }
3618 if (block_cnt > 0xffff)
3619 return IO_ACCEL_INELIGIBLE;
3620
3621 cdb[0] = is_write ? WRITE_10 : READ_10;
3622 cdb[1] = 0;
3623 cdb[2] = (u8) (block >> 24);
3624 cdb[3] = (u8) (block >> 16);
3625 cdb[4] = (u8) (block >> 8);
3626 cdb[5] = (u8) (block);
3627 cdb[6] = 0;
3628 cdb[7] = (u8) (block_cnt >> 8);
3629 cdb[8] = (u8) (block_cnt);
3630 cdb[9] = 0;
3631 *cdb_len = 10;
3632 break;
3633 }
3634 return 0;
3635}
3636
Scott Teelc3497752014-02-18 13:56:34 -06003637static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003638 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003639 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06003640{
3641 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06003642 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
3643 unsigned int len;
3644 unsigned int total_len = 0;
3645 struct scatterlist *sg;
3646 u64 addr64;
3647 int use_sg, i;
3648 struct SGDescriptor *curr_sg;
3649 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
3650
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003651 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06003652 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3653 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003654 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003655 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003656
Matt Gatese1f7de02014-02-18 13:55:17 -06003657 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
3658
Don Brace03383732015-01-23 16:43:30 -06003659 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3660 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003661 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003662 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003663
Matt Gatese1f7de02014-02-18 13:55:17 -06003664 c->cmd_type = CMD_IOACCEL1;
3665
3666 /* Adjust the DMA address to point to the accelerated command buffer */
3667 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
3668 (c->cmdindex * sizeof(*cp));
3669 BUG_ON(c->busaddr & 0x0000007F);
3670
3671 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003672 if (use_sg < 0) {
3673 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06003674 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003675 }
Matt Gatese1f7de02014-02-18 13:55:17 -06003676
3677 if (use_sg) {
3678 curr_sg = cp->SG;
3679 scsi_for_each_sg(cmd, sg, use_sg, i) {
3680 addr64 = (u64) sg_dma_address(sg);
3681 len = sg_dma_len(sg);
3682 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003683 curr_sg->Addr = cpu_to_le64(addr64);
3684 curr_sg->Len = cpu_to_le32(len);
3685 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06003686 curr_sg++;
3687 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003688 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06003689
3690 switch (cmd->sc_data_direction) {
3691 case DMA_TO_DEVICE:
3692 control |= IOACCEL1_CONTROL_DATA_OUT;
3693 break;
3694 case DMA_FROM_DEVICE:
3695 control |= IOACCEL1_CONTROL_DATA_IN;
3696 break;
3697 case DMA_NONE:
3698 control |= IOACCEL1_CONTROL_NODATAXFER;
3699 break;
3700 default:
3701 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3702 cmd->sc_data_direction);
3703 BUG();
3704 break;
3705 }
3706 } else {
3707 control |= IOACCEL1_CONTROL_NODATAXFER;
3708 }
3709
Scott Teelc3497752014-02-18 13:56:34 -06003710 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06003711 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06003712 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
3713 cp->transfer_len = cpu_to_le32(total_len);
3714 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
3715 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
3716 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003717 memcpy(cp->CDB, cdb, cdb_len);
3718 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06003719 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003720 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06003721 return 0;
3722}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003723
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003724/*
3725 * Queue a command directly to a device behind the controller using the
3726 * I/O accelerator path.
3727 */
3728static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
3729 struct CommandList *c)
3730{
3731 struct scsi_cmnd *cmd = c->scsi_cmd;
3732 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3733
Don Brace03383732015-01-23 16:43:30 -06003734 c->phys_disk = dev;
3735
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003736 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003737 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003738}
3739
Scott Teeldd0e19f2014-02-18 13:57:31 -06003740/*
3741 * Set encryption parameters for the ioaccel2 request
3742 */
3743static void set_encrypt_ioaccel2(struct ctlr_info *h,
3744 struct CommandList *c, struct io_accel2_cmd *cp)
3745{
3746 struct scsi_cmnd *cmd = c->scsi_cmd;
3747 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3748 struct raid_map_data *map = &dev->raid_map;
3749 u64 first_block;
3750
Scott Teeldd0e19f2014-02-18 13:57:31 -06003751 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06003752 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06003753 return;
3754 /* Set the data encryption key index. */
3755 cp->dekindex = map->dekindex;
3756
3757 /* Set the encryption enable flag, encoded into direction field. */
3758 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
3759
3760 /* Set encryption tweak values based on logical block address
3761 * If block size is 512, tweak value is LBA.
3762 * For other block sizes, tweak is (LBA * block size)/ 512)
3763 */
3764 switch (cmd->cmnd[0]) {
3765 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
3766 case WRITE_6:
3767 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06003768 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003769 break;
3770 case WRITE_10:
3771 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003772 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
3773 case WRITE_12:
3774 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06003775 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003776 break;
3777 case WRITE_16:
3778 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06003779 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003780 break;
3781 default:
3782 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06003783 "ERROR: %s: size (0x%x) not supported for encryption\n",
3784 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003785 BUG();
3786 break;
3787 }
Don Brace2b08b3e2015-01-23 16:41:09 -06003788
3789 if (le32_to_cpu(map->volume_blk_size) != 512)
3790 first_block = first_block *
3791 le32_to_cpu(map->volume_blk_size)/512;
3792
3793 cp->tweak_lower = cpu_to_le32(first_block);
3794 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003795}
3796
Scott Teelc3497752014-02-18 13:56:34 -06003797static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
3798 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003799 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003800{
3801 struct scsi_cmnd *cmd = c->scsi_cmd;
3802 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
3803 struct ioaccel2_sg_element *curr_sg;
3804 int use_sg, i;
3805 struct scatterlist *sg;
3806 u64 addr64;
3807 u32 len;
3808 u32 total_len = 0;
3809
Don Brace03383732015-01-23 16:43:30 -06003810 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3811 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003812 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003813 }
Scott Teelc3497752014-02-18 13:56:34 -06003814
Don Brace03383732015-01-23 16:43:30 -06003815 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3816 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003817 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003818 }
3819
Scott Teelc3497752014-02-18 13:56:34 -06003820 c->cmd_type = CMD_IOACCEL2;
3821 /* Adjust the DMA address to point to the accelerated command buffer */
3822 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
3823 (c->cmdindex * sizeof(*cp));
3824 BUG_ON(c->busaddr & 0x0000007F);
3825
3826 memset(cp, 0, sizeof(*cp));
3827 cp->IU_type = IOACCEL2_IU_TYPE;
3828
3829 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003830 if (use_sg < 0) {
3831 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003832 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003833 }
Scott Teelc3497752014-02-18 13:56:34 -06003834
3835 if (use_sg) {
3836 BUG_ON(use_sg > IOACCEL2_MAXSGENTRIES);
3837 curr_sg = cp->sg;
3838 scsi_for_each_sg(cmd, sg, use_sg, i) {
3839 addr64 = (u64) sg_dma_address(sg);
3840 len = sg_dma_len(sg);
3841 total_len += len;
3842 curr_sg->address = cpu_to_le64(addr64);
3843 curr_sg->length = cpu_to_le32(len);
3844 curr_sg->reserved[0] = 0;
3845 curr_sg->reserved[1] = 0;
3846 curr_sg->reserved[2] = 0;
3847 curr_sg->chain_indicator = 0;
3848 curr_sg++;
3849 }
3850
3851 switch (cmd->sc_data_direction) {
3852 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003853 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3854 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06003855 break;
3856 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003857 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3858 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06003859 break;
3860 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003861 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3862 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003863 break;
3864 default:
3865 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3866 cmd->sc_data_direction);
3867 BUG();
3868 break;
3869 }
3870 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06003871 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3872 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003873 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06003874
3875 /* Set encryption parameters, if necessary */
3876 set_encrypt_ioaccel2(h, c, cp);
3877
Don Brace2b08b3e2015-01-23 16:41:09 -06003878 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06003879 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06003880 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06003881
3882 /* fill in sg elements */
3883 cp->sg_count = (u8) use_sg;
3884
3885 cp->data_len = cpu_to_le32(total_len);
3886 cp->err_ptr = cpu_to_le64(c->busaddr +
3887 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003888 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06003889
3890 enqueue_cmd_and_start_io(h, c);
3891 return 0;
3892}
3893
3894/*
3895 * Queue a command to the correct I/O accelerator path.
3896 */
3897static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
3898 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003899 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003900{
Don Brace03383732015-01-23 16:43:30 -06003901 /* Try to honor the device's queue depth */
3902 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
3903 phys_disk->queue_depth) {
3904 atomic_dec(&phys_disk->ioaccel_cmds_out);
3905 return IO_ACCEL_INELIGIBLE;
3906 }
Scott Teelc3497752014-02-18 13:56:34 -06003907 if (h->transMethod & CFGTBL_Trans_io_accel1)
3908 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003909 cdb, cdb_len, scsi3addr,
3910 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06003911 else
3912 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003913 cdb, cdb_len, scsi3addr,
3914 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06003915}
3916
Scott Teel6b80b182014-02-18 13:56:55 -06003917static void raid_map_helper(struct raid_map_data *map,
3918 int offload_to_mirror, u32 *map_index, u32 *current_group)
3919{
3920 if (offload_to_mirror == 0) {
3921 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06003922 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003923 return;
3924 }
3925 do {
3926 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06003927 *current_group = *map_index /
3928 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003929 if (offload_to_mirror == *current_group)
3930 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06003931 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06003932 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06003933 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003934 (*current_group)++;
3935 } else {
3936 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06003937 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06003938 *current_group = 0;
3939 }
3940 } while (offload_to_mirror != *current_group);
3941}
3942
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003943/*
3944 * Attempt to perform offload RAID mapping for a logical volume I/O.
3945 */
3946static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
3947 struct CommandList *c)
3948{
3949 struct scsi_cmnd *cmd = c->scsi_cmd;
3950 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3951 struct raid_map_data *map = &dev->raid_map;
3952 struct raid_map_disk_data *dd = &map->data[0];
3953 int is_write = 0;
3954 u32 map_index;
3955 u64 first_block, last_block;
3956 u32 block_cnt;
3957 u32 blocks_per_row;
3958 u64 first_row, last_row;
3959 u32 first_row_offset, last_row_offset;
3960 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06003961 u64 r0_first_row, r0_last_row;
3962 u32 r5or6_blocks_per_row;
3963 u64 r5or6_first_row, r5or6_last_row;
3964 u32 r5or6_first_row_offset, r5or6_last_row_offset;
3965 u32 r5or6_first_column, r5or6_last_column;
3966 u32 total_disks_per_row;
3967 u32 stripesize;
3968 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003969 u32 map_row;
3970 u32 disk_handle;
3971 u64 disk_block;
3972 u32 disk_block_cnt;
3973 u8 cdb[16];
3974 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06003975 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003976#if BITS_PER_LONG == 32
3977 u64 tmpdiv;
3978#endif
Scott Teel6b80b182014-02-18 13:56:55 -06003979 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003980
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003981 /* check for valid opcode, get LBA and block count */
3982 switch (cmd->cmnd[0]) {
3983 case WRITE_6:
3984 is_write = 1;
3985 case READ_6:
3986 first_block =
3987 (((u64) cmd->cmnd[2]) << 8) |
3988 cmd->cmnd[3];
3989 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05003990 if (block_cnt == 0)
3991 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003992 break;
3993 case WRITE_10:
3994 is_write = 1;
3995 case READ_10:
3996 first_block =
3997 (((u64) cmd->cmnd[2]) << 24) |
3998 (((u64) cmd->cmnd[3]) << 16) |
3999 (((u64) cmd->cmnd[4]) << 8) |
4000 cmd->cmnd[5];
4001 block_cnt =
4002 (((u32) cmd->cmnd[7]) << 8) |
4003 cmd->cmnd[8];
4004 break;
4005 case WRITE_12:
4006 is_write = 1;
4007 case READ_12:
4008 first_block =
4009 (((u64) cmd->cmnd[2]) << 24) |
4010 (((u64) cmd->cmnd[3]) << 16) |
4011 (((u64) cmd->cmnd[4]) << 8) |
4012 cmd->cmnd[5];
4013 block_cnt =
4014 (((u32) cmd->cmnd[6]) << 24) |
4015 (((u32) cmd->cmnd[7]) << 16) |
4016 (((u32) cmd->cmnd[8]) << 8) |
4017 cmd->cmnd[9];
4018 break;
4019 case WRITE_16:
4020 is_write = 1;
4021 case READ_16:
4022 first_block =
4023 (((u64) cmd->cmnd[2]) << 56) |
4024 (((u64) cmd->cmnd[3]) << 48) |
4025 (((u64) cmd->cmnd[4]) << 40) |
4026 (((u64) cmd->cmnd[5]) << 32) |
4027 (((u64) cmd->cmnd[6]) << 24) |
4028 (((u64) cmd->cmnd[7]) << 16) |
4029 (((u64) cmd->cmnd[8]) << 8) |
4030 cmd->cmnd[9];
4031 block_cnt =
4032 (((u32) cmd->cmnd[10]) << 24) |
4033 (((u32) cmd->cmnd[11]) << 16) |
4034 (((u32) cmd->cmnd[12]) << 8) |
4035 cmd->cmnd[13];
4036 break;
4037 default:
4038 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4039 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004040 last_block = first_block + block_cnt - 1;
4041
4042 /* check for write to non-RAID-0 */
4043 if (is_write && dev->raid_level != 0)
4044 return IO_ACCEL_INELIGIBLE;
4045
4046 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06004047 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
4048 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004049 return IO_ACCEL_INELIGIBLE;
4050
4051 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06004052 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
4053 le16_to_cpu(map->strip_size);
4054 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004055#if BITS_PER_LONG == 32
4056 tmpdiv = first_block;
4057 (void) do_div(tmpdiv, blocks_per_row);
4058 first_row = tmpdiv;
4059 tmpdiv = last_block;
4060 (void) do_div(tmpdiv, blocks_per_row);
4061 last_row = tmpdiv;
4062 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4063 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4064 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004065 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004066 first_column = tmpdiv;
4067 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004068 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004069 last_column = tmpdiv;
4070#else
4071 first_row = first_block / blocks_per_row;
4072 last_row = last_block / blocks_per_row;
4073 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4074 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06004075 first_column = first_row_offset / strip_size;
4076 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004077#endif
4078
4079 /* if this isn't a single row/column then give to the controller */
4080 if ((first_row != last_row) || (first_column != last_column))
4081 return IO_ACCEL_INELIGIBLE;
4082
4083 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06004084 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
4085 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004086 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004087 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004088 map_index = (map_row * total_disks_per_row) + first_column;
4089
4090 switch (dev->raid_level) {
4091 case HPSA_RAID_0:
4092 break; /* nothing special to do */
4093 case HPSA_RAID_1:
4094 /* Handles load balance across RAID 1 members.
4095 * (2-drive R1 and R10 with even # of drives.)
4096 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004097 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004098 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004099 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06004100 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004101 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06004102 break;
4103 case HPSA_RAID_ADM:
4104 /* Handles N-way mirrors (R1-ADM)
4105 * and R10 with # of drives divisible by 3.)
4106 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004107 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06004108
4109 offload_to_mirror = dev->offload_to_mirror;
4110 raid_map_helper(map, offload_to_mirror,
4111 &map_index, &current_group);
4112 /* set mirror group to use next time */
4113 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06004114 (offload_to_mirror >=
4115 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004116 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06004117 dev->offload_to_mirror = offload_to_mirror;
4118 /* Avoid direct use of dev->offload_to_mirror within this
4119 * function since multiple threads might simultaneously
4120 * increment it beyond the range of dev->layout_map_count -1.
4121 */
4122 break;
4123 case HPSA_RAID_5:
4124 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004125 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004126 break;
4127
4128 /* Verify first and last block are in same RAID group */
4129 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06004130 le16_to_cpu(map->strip_size) *
4131 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004132 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06004133 stripesize = r5or6_blocks_per_row *
4134 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06004135#if BITS_PER_LONG == 32
4136 tmpdiv = first_block;
4137 first_group = do_div(tmpdiv, stripesize);
4138 tmpdiv = first_group;
4139 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4140 first_group = tmpdiv;
4141 tmpdiv = last_block;
4142 last_group = do_div(tmpdiv, stripesize);
4143 tmpdiv = last_group;
4144 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4145 last_group = tmpdiv;
4146#else
4147 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
4148 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06004149#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05004150 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06004151 return IO_ACCEL_INELIGIBLE;
4152
4153 /* Verify request is in a single row of RAID 5/6 */
4154#if BITS_PER_LONG == 32
4155 tmpdiv = first_block;
4156 (void) do_div(tmpdiv, stripesize);
4157 first_row = r5or6_first_row = r0_first_row = tmpdiv;
4158 tmpdiv = last_block;
4159 (void) do_div(tmpdiv, stripesize);
4160 r5or6_last_row = r0_last_row = tmpdiv;
4161#else
4162 first_row = r5or6_first_row = r0_first_row =
4163 first_block / stripesize;
4164 r5or6_last_row = r0_last_row = last_block / stripesize;
4165#endif
4166 if (r5or6_first_row != r5or6_last_row)
4167 return IO_ACCEL_INELIGIBLE;
4168
4169
4170 /* Verify request is in a single column */
4171#if BITS_PER_LONG == 32
4172 tmpdiv = first_block;
4173 first_row_offset = do_div(tmpdiv, stripesize);
4174 tmpdiv = first_row_offset;
4175 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
4176 r5or6_first_row_offset = first_row_offset;
4177 tmpdiv = last_block;
4178 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
4179 tmpdiv = r5or6_last_row_offset;
4180 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
4181 tmpdiv = r5or6_first_row_offset;
4182 (void) do_div(tmpdiv, map->strip_size);
4183 first_column = r5or6_first_column = tmpdiv;
4184 tmpdiv = r5or6_last_row_offset;
4185 (void) do_div(tmpdiv, map->strip_size);
4186 r5or6_last_column = tmpdiv;
4187#else
4188 first_row_offset = r5or6_first_row_offset =
4189 (u32)((first_block % stripesize) %
4190 r5or6_blocks_per_row);
4191
4192 r5or6_last_row_offset =
4193 (u32)((last_block % stripesize) %
4194 r5or6_blocks_per_row);
4195
4196 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004197 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004198 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004199 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004200#endif
4201 if (r5or6_first_column != r5or6_last_column)
4202 return IO_ACCEL_INELIGIBLE;
4203
4204 /* Request is eligible */
4205 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004206 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004207
4208 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06004209 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06004210 (map_row * total_disks_per_row) + first_column;
4211 break;
4212 default:
4213 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004214 }
Scott Teel6b80b182014-02-18 13:56:55 -06004215
Stephen Cameron07543e02015-01-23 16:44:14 -06004216 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
4217 return IO_ACCEL_INELIGIBLE;
4218
Don Brace03383732015-01-23 16:43:30 -06004219 c->phys_disk = dev->phys_disk[map_index];
4220
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004221 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06004222 disk_block = le64_to_cpu(map->disk_starting_blk) +
4223 first_row * le16_to_cpu(map->strip_size) +
4224 (first_row_offset - first_column *
4225 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004226 disk_block_cnt = block_cnt;
4227
4228 /* handle differing logical/physical block sizes */
4229 if (map->phys_blk_shift) {
4230 disk_block <<= map->phys_blk_shift;
4231 disk_block_cnt <<= map->phys_blk_shift;
4232 }
4233 BUG_ON(disk_block_cnt > 0xffff);
4234
4235 /* build the new CDB for the physical disk I/O */
4236 if (disk_block > 0xffffffff) {
4237 cdb[0] = is_write ? WRITE_16 : READ_16;
4238 cdb[1] = 0;
4239 cdb[2] = (u8) (disk_block >> 56);
4240 cdb[3] = (u8) (disk_block >> 48);
4241 cdb[4] = (u8) (disk_block >> 40);
4242 cdb[5] = (u8) (disk_block >> 32);
4243 cdb[6] = (u8) (disk_block >> 24);
4244 cdb[7] = (u8) (disk_block >> 16);
4245 cdb[8] = (u8) (disk_block >> 8);
4246 cdb[9] = (u8) (disk_block);
4247 cdb[10] = (u8) (disk_block_cnt >> 24);
4248 cdb[11] = (u8) (disk_block_cnt >> 16);
4249 cdb[12] = (u8) (disk_block_cnt >> 8);
4250 cdb[13] = (u8) (disk_block_cnt);
4251 cdb[14] = 0;
4252 cdb[15] = 0;
4253 cdb_len = 16;
4254 } else {
4255 cdb[0] = is_write ? WRITE_10 : READ_10;
4256 cdb[1] = 0;
4257 cdb[2] = (u8) (disk_block >> 24);
4258 cdb[3] = (u8) (disk_block >> 16);
4259 cdb[4] = (u8) (disk_block >> 8);
4260 cdb[5] = (u8) (disk_block);
4261 cdb[6] = 0;
4262 cdb[7] = (u8) (disk_block_cnt >> 8);
4263 cdb[8] = (u8) (disk_block_cnt);
4264 cdb[9] = 0;
4265 cdb_len = 10;
4266 }
4267 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004268 dev->scsi3addr,
4269 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004270}
4271
Webb Scales25163bd2015-04-23 09:32:00 -05004272/*
4273 * Submit commands down the "normal" RAID stack path
4274 * All callers to hpsa_ciss_submit must check lockup_detected
4275 * beforehand, before (opt.) and after calling cmd_alloc
4276 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06004277static int hpsa_ciss_submit(struct ctlr_info *h,
4278 struct CommandList *c, struct scsi_cmnd *cmd,
4279 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004280{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004281 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004282 c->cmd_type = CMD_SCSI;
4283 c->scsi_cmd = cmd;
4284 c->Header.ReplyQueue = 0; /* unused in simple mode */
4285 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004286 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004287
4288 /* Fill in the request block... */
4289
4290 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004291 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4292 c->Request.CDBLen = cmd->cmd_len;
4293 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004294 switch (cmd->sc_data_direction) {
4295 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004296 c->Request.type_attr_dir =
4297 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004298 break;
4299 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004300 c->Request.type_attr_dir =
4301 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004302 break;
4303 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004304 c->Request.type_attr_dir =
4305 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004306 break;
4307 case DMA_BIDIRECTIONAL:
4308 /* This can happen if a buggy application does a scsi passthru
4309 * and sets both inlen and outlen to non-zero. ( see
4310 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4311 */
4312
Stephen M. Camerona505b862014-11-14 17:27:04 -06004313 c->Request.type_attr_dir =
4314 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004315 /* This is technically wrong, and hpsa controllers should
4316 * reject it with CMD_INVALID, which is the most correct
4317 * response, but non-fibre backends appear to let it
4318 * slide by, and give the same results as if this field
4319 * were set correctly. Either way is acceptable for
4320 * our purposes here.
4321 */
4322
4323 break;
4324
4325 default:
4326 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4327 cmd->sc_data_direction);
4328 BUG();
4329 break;
4330 }
4331
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004332 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004333 cmd_free(h, c);
4334 return SCSI_MLQUEUE_HOST_BUSY;
4335 }
4336 enqueue_cmd_and_start_io(h, c);
4337 /* the cmd'll come back via intr handler in complete_scsi_command() */
4338 return 0;
4339}
4340
Stephen Cameron360c73b2015-04-23 09:32:32 -05004341static void hpsa_cmd_init(struct ctlr_info *h, int index,
4342 struct CommandList *c)
4343{
4344 dma_addr_t cmd_dma_handle, err_dma_handle;
4345
4346 /* Zero out all of commandlist except the last field, refcount */
4347 memset(c, 0, offsetof(struct CommandList, refcount));
4348 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
4349 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4350 c->err_info = h->errinfo_pool + index;
4351 memset(c->err_info, 0, sizeof(*c->err_info));
4352 err_dma_handle = h->errinfo_pool_dhandle
4353 + index * sizeof(*c->err_info);
4354 c->cmdindex = index;
4355 c->busaddr = (u32) cmd_dma_handle;
4356 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4357 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
4358 c->h = h;
4359}
4360
4361static void hpsa_preinitialize_commands(struct ctlr_info *h)
4362{
4363 int i;
4364
4365 for (i = 0; i < h->nr_cmds; i++) {
4366 struct CommandList *c = h->cmd_pool + i;
4367
4368 hpsa_cmd_init(h, i, c);
4369 atomic_set(&c->refcount, 0);
4370 }
4371}
4372
4373static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
4374 struct CommandList *c)
4375{
4376 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4377
4378 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4379 memset(c->err_info, 0, sizeof(*c->err_info));
4380 c->busaddr = (u32) cmd_dma_handle;
4381}
4382
Webb Scales592a0ad2015-04-23 09:32:48 -05004383static int hpsa_ioaccel_submit(struct ctlr_info *h,
4384 struct CommandList *c, struct scsi_cmnd *cmd,
4385 unsigned char *scsi3addr)
4386{
4387 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4388 int rc = IO_ACCEL_INELIGIBLE;
4389
4390 cmd->host_scribble = (unsigned char *) c;
4391
4392 if (dev->offload_enabled) {
4393 hpsa_cmd_init(h, c->cmdindex, c);
4394 c->cmd_type = CMD_SCSI;
4395 c->scsi_cmd = cmd;
4396 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4397 if (rc < 0) /* scsi_dma_map failed. */
4398 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05004399 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004400 hpsa_cmd_init(h, c->cmdindex, c);
4401 c->cmd_type = CMD_SCSI;
4402 c->scsi_cmd = cmd;
4403 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4404 if (rc < 0) /* scsi_dma_map failed. */
4405 rc = SCSI_MLQUEUE_HOST_BUSY;
4406 }
4407 return rc;
4408}
4409
Don Brace080ef1c2015-01-23 16:43:25 -06004410static void hpsa_command_resubmit_worker(struct work_struct *work)
4411{
4412 struct scsi_cmnd *cmd;
4413 struct hpsa_scsi_dev_t *dev;
4414 struct CommandList *c =
4415 container_of(work, struct CommandList, work);
4416
4417 cmd = c->scsi_cmd;
4418 dev = cmd->device->hostdata;
4419 if (!dev) {
4420 cmd->result = DID_NO_CONNECT << 16;
Webb Scales592a0ad2015-04-23 09:32:48 -05004421 cmd_free(c->h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004422 cmd->scsi_done(cmd);
4423 return;
4424 }
Webb Scales592a0ad2015-04-23 09:32:48 -05004425 if (c->cmd_type == CMD_IOACCEL2) {
4426 struct ctlr_info *h = c->h;
4427 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4428 int rc;
4429
4430 if (c2->error_data.serv_response ==
4431 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
4432 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
4433 if (rc == 0)
4434 return;
4435 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4436 /*
4437 * If we get here, it means dma mapping failed.
4438 * Try again via scsi mid layer, which will
4439 * then get SCSI_MLQUEUE_HOST_BUSY.
4440 */
4441 cmd->result = DID_IMM_RETRY << 16;
4442 cmd->scsi_done(cmd);
4443 cmd_free(h, c); /* FIX-ME: on merge, change
4444 * to cmd_tagged_free() and
4445 * ultimately to
4446 * hpsa_cmd_free_and_done(). */
4447 return;
4448 }
4449 /* else, fall thru and resubmit down CISS path */
4450 }
4451 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05004452 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004453 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4454 /*
4455 * If we get here, it means dma mapping failed. Try
4456 * again via scsi mid layer, which will then get
4457 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05004458 *
4459 * hpsa_ciss_submit will have already freed c
4460 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06004461 */
4462 cmd->result = DID_IMM_RETRY << 16;
4463 cmd->scsi_done(cmd);
4464 }
4465}
4466
Stephen Cameron574f05d2015-01-23 16:43:20 -06004467/* Running in struct Scsi_Host->host_lock less mode */
4468static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4469{
4470 struct ctlr_info *h;
4471 struct hpsa_scsi_dev_t *dev;
4472 unsigned char scsi3addr[8];
4473 struct CommandList *c;
4474 int rc = 0;
4475
4476 /* Get the ptr to our adapter structure out of cmd->host. */
4477 h = sdev_to_hba(cmd->device);
4478 dev = cmd->device->hostdata;
4479 if (!dev) {
4480 cmd->result = DID_NO_CONNECT << 16;
4481 cmd->scsi_done(cmd);
4482 return 0;
4483 }
4484 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4485
4486 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004487 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004488 cmd->scsi_done(cmd);
4489 return 0;
4490 }
4491 c = cmd_alloc(h);
4492 if (c == NULL) { /* trouble... */
4493 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
4494 return SCSI_MLQUEUE_HOST_BUSY;
4495 }
Stephen Cameron407863c2015-01-23 16:44:19 -06004496 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004497 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron407863c2015-01-23 16:44:19 -06004498 cmd_free(h, c);
4499 cmd->scsi_done(cmd);
4500 return 0;
4501 }
Stephen Cameron574f05d2015-01-23 16:43:20 -06004502
Stephen Cameron407863c2015-01-23 16:44:19 -06004503 /*
4504 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004505 * Retries always go down the normal I/O path.
4506 */
4507 if (likely(cmd->retries == 0 &&
4508 cmd->request->cmd_type == REQ_TYPE_FS &&
4509 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004510 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
4511 if (rc == 0)
4512 return 0;
4513 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4514 cmd_free(h, c); /* FIX-ME: on merge, change to
4515 * cmd_tagged_free(), and ultimately
4516 * to hpsa_cmd_resolve_and_free(). */
4517 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004518 }
4519 }
4520 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4521}
4522
Webb Scales8ebc9242015-01-23 16:44:50 -06004523static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004524{
4525 unsigned long flags;
4526
Webb Scales8ebc9242015-01-23 16:44:50 -06004527 spin_lock_irqsave(&h->scan_lock, flags);
4528 h->scan_finished = 1;
4529 wake_up_all(&h->scan_wait_queue);
4530 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004531}
4532
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004533static void hpsa_scan_start(struct Scsi_Host *sh)
4534{
4535 struct ctlr_info *h = shost_to_hba(sh);
4536 unsigned long flags;
4537
Webb Scales8ebc9242015-01-23 16:44:50 -06004538 /*
4539 * Don't let rescans be initiated on a controller known to be locked
4540 * up. If the controller locks up *during* a rescan, that thread is
4541 * probably hosed, but at least we can prevent new rescan threads from
4542 * piling up on a locked up controller.
4543 */
4544 if (unlikely(lockup_detected(h)))
4545 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004546
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004547 /* wait until any scan already in progress is finished. */
4548 while (1) {
4549 spin_lock_irqsave(&h->scan_lock, flags);
4550 if (h->scan_finished)
4551 break;
4552 spin_unlock_irqrestore(&h->scan_lock, flags);
4553 wait_event(h->scan_wait_queue, h->scan_finished);
4554 /* Note: We don't need to worry about a race between this
4555 * thread and driver unload because the midlayer will
4556 * have incremented the reference count, so unload won't
4557 * happen if we're in here.
4558 */
4559 }
4560 h->scan_finished = 0; /* mark scan as in progress */
4561 spin_unlock_irqrestore(&h->scan_lock, flags);
4562
Webb Scales8ebc9242015-01-23 16:44:50 -06004563 if (unlikely(lockup_detected(h)))
4564 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004565
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004566 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4567
Webb Scales8ebc9242015-01-23 16:44:50 -06004568 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004569}
4570
Don Brace7c0a0222015-01-23 16:41:30 -06004571static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
4572{
Don Brace03383732015-01-23 16:43:30 -06004573 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
4574
4575 if (!logical_drive)
4576 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06004577
4578 if (qdepth < 1)
4579 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06004580 else if (qdepth > logical_drive->queue_depth)
4581 qdepth = logical_drive->queue_depth;
4582
4583 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06004584}
4585
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004586static int hpsa_scan_finished(struct Scsi_Host *sh,
4587 unsigned long elapsed_time)
4588{
4589 struct ctlr_info *h = shost_to_hba(sh);
4590 unsigned long flags;
4591 int finished;
4592
4593 spin_lock_irqsave(&h->scan_lock, flags);
4594 finished = h->scan_finished;
4595 spin_unlock_irqrestore(&h->scan_lock, flags);
4596 return finished;
4597}
4598
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004599static void hpsa_unregister_scsi(struct ctlr_info *h)
4600{
4601 /* we are being forcibly unloaded, and may not refuse. */
4602 scsi_remove_host(h->scsi_host);
4603 scsi_host_put(h->scsi_host);
4604 h->scsi_host = NULL;
4605}
4606
4607static int hpsa_register_scsi(struct ctlr_info *h)
4608{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004609 struct Scsi_Host *sh;
4610 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004611
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004612 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
4613 if (sh == NULL)
4614 goto fail;
4615
4616 sh->io_port = 0;
4617 sh->n_io_port = 0;
4618 sh->this_id = -1;
4619 sh->max_channel = 3;
4620 sh->max_cmd_len = MAX_COMMAND_SIZE;
4621 sh->max_lun = HPSA_MAX_LUN;
4622 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004623 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06004624 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004625 sh->sg_tablesize = h->maxsgentries;
4626 h->scsi_host = sh;
4627 sh->hostdata[0] = (unsigned long) h;
4628 sh->irq = h->intr[h->intr_mode];
4629 sh->unique_id = sh->irq;
4630 error = scsi_add_host(sh, &h->pdev->dev);
4631 if (error)
4632 goto fail_host_put;
4633 scsi_scan_host(sh);
4634 return 0;
4635
4636 fail_host_put:
4637 dev_err(&h->pdev->dev, "%s: scsi_add_host"
4638 " failed for controller %d\n", __func__, h->ctlr);
4639 scsi_host_put(sh);
4640 return error;
4641 fail:
4642 dev_err(&h->pdev->dev, "%s: scsi_host_alloc"
4643 " failed for controller %d\n", __func__, h->ctlr);
4644 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004645}
4646
4647static int wait_for_device_to_become_ready(struct ctlr_info *h,
4648 unsigned char lunaddr[])
4649{
Tomas Henzl89193582014-02-21 16:25:05 -06004650 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004651 int count = 0;
4652 int waittime = 1; /* seconds */
4653 struct CommandList *c;
4654
Stephen Cameron45fcb862015-01-23 16:43:04 -06004655 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004656 if (!c) {
4657 dev_warn(&h->pdev->dev, "out of memory in "
4658 "wait_for_device_to_become_ready.\n");
4659 return IO_ERROR;
4660 }
4661
4662 /* Send test unit ready until device ready, or give up. */
4663 while (count < HPSA_TUR_RETRY_LIMIT) {
4664
4665 /* Wait for a bit. do this first, because if we send
4666 * the TUR right away, the reset will just abort it.
4667 */
4668 msleep(1000 * waittime);
4669 count++;
Tomas Henzl89193582014-02-21 16:25:05 -06004670 rc = 0; /* Device ready. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004671
4672 /* Increase wait time with each try, up to a point. */
4673 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
4674 waittime = waittime * 2;
4675
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004676 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
4677 (void) fill_cmd(c, TEST_UNIT_READY, h,
4678 NULL, 0, 0, lunaddr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05004679 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
4680 NO_TIMEOUT);
4681 if (rc)
4682 goto do_it_again;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004683 /* no unmap needed here because no data xfer. */
4684
4685 if (c->err_info->CommandStatus == CMD_SUCCESS)
4686 break;
4687
4688 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
4689 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
4690 (c->err_info->SenseInfo[2] == NO_SENSE ||
4691 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
4692 break;
Webb Scales25163bd2015-04-23 09:32:00 -05004693do_it_again:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004694 dev_warn(&h->pdev->dev, "waiting %d secs "
4695 "for device to become ready.\n", waittime);
4696 rc = 1; /* device not ready. */
4697 }
4698
4699 if (rc)
4700 dev_warn(&h->pdev->dev, "giving up on device.\n");
4701 else
4702 dev_warn(&h->pdev->dev, "device is ready.\n");
4703
Stephen Cameron45fcb862015-01-23 16:43:04 -06004704 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004705 return rc;
4706}
4707
4708/* Need at least one of these error handlers to keep ../scsi/hosts.c from
4709 * complaining. Doing a host- or bus-reset can't do anything good here.
4710 */
4711static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
4712{
4713 int rc;
4714 struct ctlr_info *h;
4715 struct hpsa_scsi_dev_t *dev;
4716
4717 /* find the controller to which the command to be aborted was sent */
4718 h = sdev_to_hba(scsicmd->device);
4719 if (h == NULL) /* paranoia */
4720 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06004721
4722 if (lockup_detected(h))
4723 return FAILED;
4724
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004725 dev = scsicmd->device->hostdata;
4726 if (!dev) {
4727 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
4728 "device lookup failed.\n");
4729 return FAILED;
4730 }
Webb Scales25163bd2015-04-23 09:32:00 -05004731
4732 /* if controller locked up, we can guarantee command won't complete */
4733 if (lockup_detected(h)) {
4734 dev_warn(&h->pdev->dev,
4735 "scsi %d:%d:%d:%d RESET FAILED, lockup detected\n",
4736 h->scsi_host->host_no, dev->bus, dev->target,
4737 dev->lun);
4738 return FAILED;
4739 }
4740
4741 /* this reset request might be the result of a lockup; check */
4742 if (detect_controller_lockup(h)) {
4743 dev_warn(&h->pdev->dev,
4744 "scsi %d:%d:%d:%d RESET FAILED, new lockup detected\n",
4745 h->scsi_host->host_no, dev->bus, dev->target,
4746 dev->lun);
4747 return FAILED;
4748 }
4749
4750 hpsa_show_dev_msg(KERN_WARNING, h, dev, "resetting");
4751
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004752 /* send a reset to the SCSI LUN which the command was sent to */
Webb Scales25163bd2015-04-23 09:32:00 -05004753 rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN,
4754 DEFAULT_REPLY_QUEUE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004755 if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0)
4756 return SUCCESS;
4757
Webb Scales25163bd2015-04-23 09:32:00 -05004758 dev_warn(&h->pdev->dev,
4759 "scsi %d:%d:%d:%d reset failed\n",
4760 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004761 return FAILED;
4762}
4763
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004764static void swizzle_abort_tag(u8 *tag)
4765{
4766 u8 original_tag[8];
4767
4768 memcpy(original_tag, tag, 8);
4769 tag[0] = original_tag[3];
4770 tag[1] = original_tag[2];
4771 tag[2] = original_tag[1];
4772 tag[3] = original_tag[0];
4773 tag[4] = original_tag[7];
4774 tag[5] = original_tag[6];
4775 tag[6] = original_tag[5];
4776 tag[7] = original_tag[4];
4777}
4778
Scott Teel17eb87d2014-02-18 13:55:28 -06004779static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06004780 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06004781{
Don Brace2b08b3e2015-01-23 16:41:09 -06004782 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06004783 if (c->cmd_type == CMD_IOACCEL1) {
4784 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
4785 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06004786 tag = le64_to_cpu(cm1->tag);
4787 *tagupper = cpu_to_le32(tag >> 32);
4788 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004789 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06004790 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06004791 if (c->cmd_type == CMD_IOACCEL2) {
4792 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
4793 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06004794 /* upper tag not used in ioaccel2 mode */
4795 memset(tagupper, 0, sizeof(*tagupper));
4796 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004797 return;
4798 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004799 tag = le64_to_cpu(c->Header.tag);
4800 *tagupper = cpu_to_le32(tag >> 32);
4801 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06004802}
4803
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004804static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004805 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004806{
4807 int rc = IO_OK;
4808 struct CommandList *c;
4809 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06004810 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004811
Stephen Cameron45fcb862015-01-23 16:43:04 -06004812 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004813 if (c == NULL) { /* trouble... */
Stephen Cameron45fcb862015-01-23 16:43:04 -06004814 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004815 return -ENOMEM;
4816 }
4817
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004818 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004819 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004820 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004821 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004822 swizzle_abort_tag(&c->Request.CDB[4]);
Webb Scales25163bd2015-04-23 09:32:00 -05004823 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06004824 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05004825 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004826 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004827 /* no unmap needed here because no data xfer. */
4828
4829 ei = c->err_info;
4830 switch (ei->CommandStatus) {
4831 case CMD_SUCCESS:
4832 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05004833 case CMD_TMF_STATUS:
4834 rc = hpsa_evaluate_tmf_status(h, c);
4835 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004836 case CMD_UNABORTABLE: /* Very common, don't make noise. */
4837 rc = -1;
4838 break;
4839 default:
4840 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004841 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06004842 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004843 rc = -1;
4844 break;
4845 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06004846 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004847 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
4848 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004849 return rc;
4850}
4851
Scott Teel54b6e9e2014-02-18 13:56:45 -06004852/* ioaccel2 path firmware cannot handle abort task requests.
4853 * Change abort requests to physical target reset, and send to the
4854 * address of the physical disk used for the ioaccel 2 command.
4855 * Return 0 on success (IO_OK)
4856 * -1 on failure
4857 */
4858
4859static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05004860 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06004861{
4862 int rc = IO_OK;
4863 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
4864 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
4865 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
4866 unsigned char *psa = &phys_scsi3addr[0];
4867
4868 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06004869 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004870 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
4871 if (dev == NULL) {
4872 dev_warn(&h->pdev->dev,
4873 "Cannot abort: no device pointer for command.\n");
4874 return -1; /* not abortable */
4875 }
4876
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004877 if (h->raid_offload_debug > 0)
4878 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05004879 "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 -06004880 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05004881 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004882 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
4883 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
4884
Scott Teel54b6e9e2014-02-18 13:56:45 -06004885 if (!dev->offload_enabled) {
4886 dev_warn(&h->pdev->dev,
4887 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
4888 return -1; /* not abortable */
4889 }
4890
4891 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
4892 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
4893 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
4894 return -1; /* not abortable */
4895 }
4896
4897 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004898 if (h->raid_offload_debug > 0)
4899 dev_info(&h->pdev->dev,
4900 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4901 psa[0], psa[1], psa[2], psa[3],
4902 psa[4], psa[5], psa[6], psa[7]);
Webb Scales25163bd2015-04-23 09:32:00 -05004903 rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004904 if (rc != 0) {
4905 dev_warn(&h->pdev->dev,
4906 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4907 psa[0], psa[1], psa[2], psa[3],
4908 psa[4], psa[5], psa[6], psa[7]);
4909 return rc; /* failed to reset */
4910 }
4911
4912 /* wait for device to recover */
4913 if (wait_for_device_to_become_ready(h, psa) != 0) {
4914 dev_warn(&h->pdev->dev,
4915 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4916 psa[0], psa[1], psa[2], psa[3],
4917 psa[4], psa[5], psa[6], psa[7]);
4918 return -1; /* failed to recover */
4919 }
4920
4921 /* device recovered */
4922 dev_info(&h->pdev->dev,
4923 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4924 psa[0], psa[1], psa[2], psa[3],
4925 psa[4], psa[5], psa[6], psa[7]);
4926
4927 return rc; /* success */
4928}
4929
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004930static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05004931 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004932{
Scott Teel54b6e9e2014-02-18 13:56:45 -06004933 /* ioccelerator mode 2 commands should be aborted via the
4934 * accelerated path, since RAID path is unaware of these commands,
4935 * but underlying firmware can't handle abort TMF.
4936 * Change abort to physical device reset.
4937 */
4938 if (abort->cmd_type == CMD_IOACCEL2)
Webb Scales25163bd2015-04-23 09:32:00 -05004939 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
4940 abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004941 return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05004942}
4943
4944/* Find out which reply queue a command was meant to return on */
4945static int hpsa_extract_reply_queue(struct ctlr_info *h,
4946 struct CommandList *c)
4947{
4948 if (c->cmd_type == CMD_IOACCEL2)
4949 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
4950 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004951}
4952
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004953/*
4954 * Limit concurrency of abort commands to prevent
4955 * over-subscription of commands
4956 */
4957static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
4958{
4959#define ABORT_CMD_WAIT_MSECS 5000
4960 return !wait_event_timeout(h->abort_cmd_wait_queue,
4961 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
4962 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
4963}
4964
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004965/* Send an abort for the specified command.
4966 * If the device and controller support it,
4967 * send a task abort request.
4968 */
4969static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
4970{
4971
4972 int i, rc;
4973 struct ctlr_info *h;
4974 struct hpsa_scsi_dev_t *dev;
4975 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004976 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
4977 char msg[256]; /* For debug messaging. */
4978 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06004979 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05004980 int refcount, reply_queue;
4981
4982 if (sc == NULL)
4983 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004984
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004985 if (sc->device == NULL)
4986 return FAILED;
4987
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004988 /* Find the controller of the command to be aborted */
4989 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004990 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004991 return FAILED;
4992
Webb Scales25163bd2015-04-23 09:32:00 -05004993 /* Find the device of the command to be aborted */
4994 dev = sc->device->hostdata;
4995 if (!dev) {
4996 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
4997 msg);
Don Bracee3458932015-01-23 16:44:24 -06004998 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05004999 }
5000
5001 /* If controller locked up, we can guarantee command won't complete */
5002 if (lockup_detected(h)) {
5003 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5004 "ABORT FAILED, lockup detected");
5005 return FAILED;
5006 }
5007
5008 /* This is a good time to check if controller lockup has occurred */
5009 if (detect_controller_lockup(h)) {
5010 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5011 "ABORT FAILED, new lockup detected");
5012 return FAILED;
5013 }
Don Bracee3458932015-01-23 16:44:24 -06005014
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005015 /* Check that controller supports some kind of task abort */
5016 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
5017 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
5018 return FAILED;
5019
5020 memset(msg, 0, sizeof(msg));
Webb Scales0d96ef52015-04-23 09:31:55 -05005021 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005022 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05005023 sc->device->id, sc->device->lun,
5024 "Aborting command");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005025
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005026 /* Get SCSI command to be aborted */
5027 abort = (struct CommandList *) sc->host_scribble;
5028 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005029 /* This can happen if the command already completed. */
5030 return SUCCESS;
5031 }
5032 refcount = atomic_inc_return(&abort->refcount);
5033 if (refcount == 1) { /* Command is done already. */
5034 cmd_free(h, abort);
5035 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005036 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005037
5038 /* Don't bother trying the abort if we know it won't work. */
5039 if (abort->cmd_type != CMD_IOACCEL2 &&
5040 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
5041 cmd_free(h, abort);
5042 return FAILED;
5043 }
5044
Scott Teel17eb87d2014-02-18 13:55:28 -06005045 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005046 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06005047 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06005048 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005049 if (as != NULL)
5050 ml += sprintf(msg+ml, "Command:0x%x SN:0x%lx ",
5051 as->cmnd[0], as->serial_number);
5052 dev_dbg(&h->pdev->dev, "%s\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005053 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005054 /*
5055 * Command is in flight, or possibly already completed
5056 * by the firmware (but not to the scsi mid layer) but we can't
5057 * distinguish which. Send the abort down.
5058 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005059 if (wait_for_available_abort_cmd(h)) {
5060 dev_warn(&h->pdev->dev,
5061 "Timed out waiting for an abort command to become available.\n");
5062 cmd_free(h, abort);
5063 return FAILED;
5064 }
Webb Scales25163bd2015-04-23 09:32:00 -05005065 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005066 atomic_inc(&h->abort_cmds_available);
5067 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005068 if (rc != 0) {
Webb Scales0d96ef52015-04-23 09:31:55 -05005069 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5070 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06005071 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005072 return FAILED;
5073 }
5074 dev_info(&h->pdev->dev, "%s REQUEST SUCCEEDED.\n", msg);
5075
5076 /* If the abort(s) above completed and actually aborted the
5077 * command, then the command to be aborted should already be
5078 * completed. If not, wait around a bit more to see if they
5079 * manage to complete normally.
5080 */
5081#define ABORT_COMPLETE_WAIT_SECS 30
5082 for (i = 0; i < ABORT_COMPLETE_WAIT_SECS * 10; i++) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005083 refcount = atomic_read(&abort->refcount);
5084 if (refcount < 2) {
5085 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005086 return SUCCESS;
Webb Scales281a7fd2015-01-23 16:43:35 -06005087 } else {
5088 msleep(100);
5089 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005090 }
5091 dev_warn(&h->pdev->dev, "%s FAILED. Aborted command has not completed after %d seconds.\n",
5092 msg, ABORT_COMPLETE_WAIT_SECS);
Webb Scales281a7fd2015-01-23 16:43:35 -06005093 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005094 return FAILED;
5095}
5096
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005097/*
5098 * For operations that cannot sleep, a command block is allocated at init,
5099 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5100 * which ones are free or in use. Lock must be held when calling this.
5101 * cmd_free() is the complement.
5102 */
Webb Scales281a7fd2015-01-23 16:43:35 -06005103
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005104static struct CommandList *cmd_alloc(struct ctlr_info *h)
5105{
5106 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005107 int refcount, i;
Robert Elliott33811022015-01-23 16:43:41 -06005108 unsigned long offset;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005109
Robert Elliott33811022015-01-23 16:43:41 -06005110 /*
5111 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005112 * multiple threads could get in here, and one thread could
5113 * be scanning through the list of bits looking for a free
5114 * one, but the free ones are always behind him, and other
5115 * threads sneak in behind him and eat them before he can
5116 * get to them, so that while there is always a free one, a
5117 * very unlucky thread might be starved anyway, never able to
5118 * beat the other threads. In reality, this happens so
5119 * infrequently as to be indistinguishable from never.
5120 */
5121
Robert Elliott33811022015-01-23 16:43:41 -06005122 offset = h->last_allocation; /* benignly racy */
Webb Scales281a7fd2015-01-23 16:43:35 -06005123 for (;;) {
5124 i = find_next_zero_bit(h->cmd_pool_bits, h->nr_cmds, offset);
5125 if (unlikely(i == h->nr_cmds)) {
5126 offset = 0;
5127 continue;
5128 }
5129 c = h->cmd_pool + i;
5130 refcount = atomic_inc_return(&c->refcount);
5131 if (unlikely(refcount > 1)) {
5132 cmd_free(h, c); /* already in use */
5133 offset = (i + 1) % h->nr_cmds;
5134 continue;
5135 }
5136 set_bit(i & (BITS_PER_LONG - 1),
5137 h->cmd_pool_bits + (i / BITS_PER_LONG));
5138 break; /* it's ours now. */
5139 }
Robert Elliott33811022015-01-23 16:43:41 -06005140 h->last_allocation = i; /* benignly racy */
Stephen Cameron360c73b2015-04-23 09:32:32 -05005141 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005142 return c;
5143}
5144
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005145static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5146{
Webb Scales281a7fd2015-01-23 16:43:35 -06005147 if (atomic_dec_and_test(&c->refcount)) {
5148 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005149
Webb Scales281a7fd2015-01-23 16:43:35 -06005150 i = c - h->cmd_pool;
5151 clear_bit(i & (BITS_PER_LONG - 1),
5152 h->cmd_pool_bits + (i / BITS_PER_LONG));
5153 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005154}
5155
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005156#ifdef CONFIG_COMPAT
5157
Don Brace42a91642014-11-14 17:26:27 -06005158static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
5159 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005160{
5161 IOCTL32_Command_struct __user *arg32 =
5162 (IOCTL32_Command_struct __user *) arg;
5163 IOCTL_Command_struct arg64;
5164 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5165 int err;
5166 u32 cp;
5167
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005168 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005169 err = 0;
5170 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5171 sizeof(arg64.LUN_info));
5172 err |= copy_from_user(&arg64.Request, &arg32->Request,
5173 sizeof(arg64.Request));
5174 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5175 sizeof(arg64.error_info));
5176 err |= get_user(arg64.buf_size, &arg32->buf_size);
5177 err |= get_user(cp, &arg32->buf);
5178 arg64.buf = compat_ptr(cp);
5179 err |= copy_to_user(p, &arg64, sizeof(arg64));
5180
5181 if (err)
5182 return -EFAULT;
5183
Don Brace42a91642014-11-14 17:26:27 -06005184 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005185 if (err)
5186 return err;
5187 err |= copy_in_user(&arg32->error_info, &p->error_info,
5188 sizeof(arg32->error_info));
5189 if (err)
5190 return -EFAULT;
5191 return err;
5192}
5193
5194static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06005195 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005196{
5197 BIG_IOCTL32_Command_struct __user *arg32 =
5198 (BIG_IOCTL32_Command_struct __user *) arg;
5199 BIG_IOCTL_Command_struct arg64;
5200 BIG_IOCTL_Command_struct __user *p =
5201 compat_alloc_user_space(sizeof(arg64));
5202 int err;
5203 u32 cp;
5204
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005205 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005206 err = 0;
5207 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5208 sizeof(arg64.LUN_info));
5209 err |= copy_from_user(&arg64.Request, &arg32->Request,
5210 sizeof(arg64.Request));
5211 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5212 sizeof(arg64.error_info));
5213 err |= get_user(arg64.buf_size, &arg32->buf_size);
5214 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5215 err |= get_user(cp, &arg32->buf);
5216 arg64.buf = compat_ptr(cp);
5217 err |= copy_to_user(p, &arg64, sizeof(arg64));
5218
5219 if (err)
5220 return -EFAULT;
5221
Don Brace42a91642014-11-14 17:26:27 -06005222 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005223 if (err)
5224 return err;
5225 err |= copy_in_user(&arg32->error_info, &p->error_info,
5226 sizeof(arg32->error_info));
5227 if (err)
5228 return -EFAULT;
5229 return err;
5230}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005231
Don Brace42a91642014-11-14 17:26:27 -06005232static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005233{
5234 switch (cmd) {
5235 case CCISS_GETPCIINFO:
5236 case CCISS_GETINTINFO:
5237 case CCISS_SETINTINFO:
5238 case CCISS_GETNODENAME:
5239 case CCISS_SETNODENAME:
5240 case CCISS_GETHEARTBEAT:
5241 case CCISS_GETBUSTYPES:
5242 case CCISS_GETFIRMVER:
5243 case CCISS_GETDRIVVER:
5244 case CCISS_REVALIDVOLS:
5245 case CCISS_DEREGDISK:
5246 case CCISS_REGNEWDISK:
5247 case CCISS_REGNEWD:
5248 case CCISS_RESCANDISK:
5249 case CCISS_GETLUNINFO:
5250 return hpsa_ioctl(dev, cmd, arg);
5251
5252 case CCISS_PASSTHRU32:
5253 return hpsa_ioctl32_passthru(dev, cmd, arg);
5254 case CCISS_BIG_PASSTHRU32:
5255 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
5256
5257 default:
5258 return -ENOIOCTLCMD;
5259 }
5260}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005261#endif
5262
5263static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5264{
5265 struct hpsa_pci_info pciinfo;
5266
5267 if (!argp)
5268 return -EINVAL;
5269 pciinfo.domain = pci_domain_nr(h->pdev->bus);
5270 pciinfo.bus = h->pdev->bus->number;
5271 pciinfo.dev_fn = h->pdev->devfn;
5272 pciinfo.board_id = h->board_id;
5273 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5274 return -EFAULT;
5275 return 0;
5276}
5277
5278static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
5279{
5280 DriverVer_type DriverVer;
5281 unsigned char vmaj, vmin, vsubmin;
5282 int rc;
5283
5284 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
5285 &vmaj, &vmin, &vsubmin);
5286 if (rc != 3) {
5287 dev_info(&h->pdev->dev, "driver version string '%s' "
5288 "unrecognized.", HPSA_DRIVER_VERSION);
5289 vmaj = 0;
5290 vmin = 0;
5291 vsubmin = 0;
5292 }
5293 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
5294 if (!argp)
5295 return -EINVAL;
5296 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
5297 return -EFAULT;
5298 return 0;
5299}
5300
5301static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5302{
5303 IOCTL_Command_struct iocommand;
5304 struct CommandList *c;
5305 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005306 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005307 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005308
5309 if (!argp)
5310 return -EINVAL;
5311 if (!capable(CAP_SYS_RAWIO))
5312 return -EPERM;
5313 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
5314 return -EFAULT;
5315 if ((iocommand.buf_size < 1) &&
5316 (iocommand.Request.Type.Direction != XFER_NONE)) {
5317 return -EINVAL;
5318 }
5319 if (iocommand.buf_size > 0) {
5320 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
5321 if (buff == NULL)
5322 return -EFAULT;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005323 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005324 /* Copy the data into the buffer we created */
5325 if (copy_from_user(buff, iocommand.buf,
5326 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005327 rc = -EFAULT;
5328 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005329 }
5330 } else {
5331 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005332 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005333 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005334 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005335 if (c == NULL) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005336 rc = -ENOMEM;
5337 goto out_kfree;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005338 }
5339 /* Fill in the command type */
5340 c->cmd_type = CMD_IOCTL_PEND;
5341 /* Fill in Command Header */
5342 c->Header.ReplyQueue = 0; /* unused in simple mode */
5343 if (iocommand.buf_size > 0) { /* buffer to fill */
5344 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005345 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005346 } else { /* no buffers to fill */
5347 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005348 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005349 }
5350 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005351
5352 /* Fill in Request block */
5353 memcpy(&c->Request, &iocommand.Request,
5354 sizeof(c->Request));
5355
5356 /* Fill in the scatter gather information */
5357 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005358 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005359 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005360 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
5361 c->SG[0].Addr = cpu_to_le64(0);
5362 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005363 rc = -ENOMEM;
5364 goto out;
5365 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005366 c->SG[0].Addr = cpu_to_le64(temp64);
5367 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
5368 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005369 }
Webb Scales25163bd2015-04-23 09:32:00 -05005370 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05005371 if (iocommand.buf_size > 0)
5372 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005373 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005374 if (rc) {
5375 rc = -EIO;
5376 goto out;
5377 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005378
5379 /* Copy the error information out */
5380 memcpy(&iocommand.error_info, c->err_info,
5381 sizeof(iocommand.error_info));
5382 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005383 rc = -EFAULT;
5384 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005385 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005386 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005387 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005388 /* Copy the data out of the buffer we created */
5389 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005390 rc = -EFAULT;
5391 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005392 }
5393 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005394out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005395 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005396out_kfree:
5397 kfree(buff);
5398 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005399}
5400
5401static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5402{
5403 BIG_IOCTL_Command_struct *ioc;
5404 struct CommandList *c;
5405 unsigned char **buff = NULL;
5406 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005407 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005408 BYTE sg_used = 0;
5409 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005410 u32 left;
5411 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005412 BYTE __user *data_ptr;
5413
5414 if (!argp)
5415 return -EINVAL;
5416 if (!capable(CAP_SYS_RAWIO))
5417 return -EPERM;
5418 ioc = (BIG_IOCTL_Command_struct *)
5419 kmalloc(sizeof(*ioc), GFP_KERNEL);
5420 if (!ioc) {
5421 status = -ENOMEM;
5422 goto cleanup1;
5423 }
5424 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
5425 status = -EFAULT;
5426 goto cleanup1;
5427 }
5428 if ((ioc->buf_size < 1) &&
5429 (ioc->Request.Type.Direction != XFER_NONE)) {
5430 status = -EINVAL;
5431 goto cleanup1;
5432 }
5433 /* Check kmalloc limits using all SGs */
5434 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
5435 status = -EINVAL;
5436 goto cleanup1;
5437 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005438 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005439 status = -EINVAL;
5440 goto cleanup1;
5441 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005442 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005443 if (!buff) {
5444 status = -ENOMEM;
5445 goto cleanup1;
5446 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005447 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005448 if (!buff_size) {
5449 status = -ENOMEM;
5450 goto cleanup1;
5451 }
5452 left = ioc->buf_size;
5453 data_ptr = ioc->buf;
5454 while (left) {
5455 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
5456 buff_size[sg_used] = sz;
5457 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
5458 if (buff[sg_used] == NULL) {
5459 status = -ENOMEM;
5460 goto cleanup1;
5461 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005462 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005463 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05005464 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005465 goto cleanup1;
5466 }
5467 } else
5468 memset(buff[sg_used], 0, sz);
5469 left -= sz;
5470 data_ptr += sz;
5471 sg_used++;
5472 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005473 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005474 if (c == NULL) {
5475 status = -ENOMEM;
5476 goto cleanup1;
5477 }
5478 c->cmd_type = CMD_IOCTL_PEND;
5479 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005480 c->Header.SGList = (u8) sg_used;
5481 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005482 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005483 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
5484 if (ioc->buf_size > 0) {
5485 int i;
5486 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005487 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005488 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005489 if (dma_mapping_error(&h->pdev->dev,
5490 (dma_addr_t) temp64)) {
5491 c->SG[i].Addr = cpu_to_le64(0);
5492 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005493 hpsa_pci_unmap(h->pdev, c, i,
5494 PCI_DMA_BIDIRECTIONAL);
5495 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005496 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005497 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005498 c->SG[i].Addr = cpu_to_le64(temp64);
5499 c->SG[i].Len = cpu_to_le32(buff_size[i]);
5500 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005501 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005502 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005503 }
Webb Scales25163bd2015-04-23 09:32:00 -05005504 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005505 if (sg_used)
5506 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005507 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005508 if (status) {
5509 status = -EIO;
5510 goto cleanup0;
5511 }
5512
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005513 /* Copy the error information out */
5514 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
5515 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005516 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005517 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005518 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005519 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005520 int i;
5521
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005522 /* Copy the data out of the buffer we created */
5523 BYTE __user *ptr = ioc->buf;
5524 for (i = 0; i < sg_used; i++) {
5525 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005526 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005527 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005528 }
5529 ptr += buff_size[i];
5530 }
5531 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005532 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005533cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005534 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005535cleanup1:
5536 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005537 int i;
5538
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005539 for (i = 0; i < sg_used; i++)
5540 kfree(buff[i]);
5541 kfree(buff);
5542 }
5543 kfree(buff_size);
5544 kfree(ioc);
5545 return status;
5546}
5547
5548static void check_ioctl_unit_attention(struct ctlr_info *h,
5549 struct CommandList *c)
5550{
5551 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5552 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
5553 (void) check_for_unit_attention(h, c);
5554}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005555
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005556/*
5557 * ioctl
5558 */
Don Brace42a91642014-11-14 17:26:27 -06005559static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005560{
5561 struct ctlr_info *h;
5562 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005563 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005564
5565 h = sdev_to_hba(dev);
5566
5567 switch (cmd) {
5568 case CCISS_DEREGDISK:
5569 case CCISS_REGNEWDISK:
5570 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005571 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005572 return 0;
5573 case CCISS_GETPCIINFO:
5574 return hpsa_getpciinfo_ioctl(h, argp);
5575 case CCISS_GETDRIVVER:
5576 return hpsa_getdrivver_ioctl(h, argp);
5577 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005578 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005579 return -EAGAIN;
5580 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005581 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005582 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005583 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005584 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005585 return -EAGAIN;
5586 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005587 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005588 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005589 default:
5590 return -ENOTTY;
5591 }
5592}
5593
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005594static int hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
5595 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005596{
5597 struct CommandList *c;
5598
5599 c = cmd_alloc(h);
5600 if (!c)
5601 return -ENOMEM;
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005602 /* fill_cmd can't fail here, no data buffer to map */
5603 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005604 RAID_CTLR_LUNID, TYPE_MSG);
5605 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
5606 c->waiting = NULL;
5607 enqueue_cmd_and_start_io(h, c);
5608 /* Don't wait for completion, the reset won't complete. Don't free
5609 * the command either. This is the last command we will send before
5610 * re-initializing everything, so it doesn't matter and won't leak.
5611 */
5612 return 0;
5613}
5614
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005615static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005616 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005617 int cmd_type)
5618{
5619 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005620 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005621
5622 c->cmd_type = CMD_IOCTL_PEND;
5623 c->Header.ReplyQueue = 0;
5624 if (buff != NULL && size > 0) {
5625 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005626 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005627 } else {
5628 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005629 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005630 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005631 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
5632
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005633 if (cmd_type == TYPE_CMD) {
5634 switch (cmd) {
5635 case HPSA_INQUIRY:
5636 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005637 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005638 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005639 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005640 }
5641 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005642 c->Request.type_attr_dir =
5643 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005644 c->Request.Timeout = 0;
5645 c->Request.CDB[0] = HPSA_INQUIRY;
5646 c->Request.CDB[4] = size & 0xFF;
5647 break;
5648 case HPSA_REPORT_LOG:
5649 case HPSA_REPORT_PHYS:
5650 /* Talking to controller so It's a physical command
5651 mode = 00 target = 0. Nothing to write.
5652 */
5653 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005654 c->Request.type_attr_dir =
5655 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005656 c->Request.Timeout = 0;
5657 c->Request.CDB[0] = cmd;
5658 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5659 c->Request.CDB[7] = (size >> 16) & 0xFF;
5660 c->Request.CDB[8] = (size >> 8) & 0xFF;
5661 c->Request.CDB[9] = size & 0xFF;
5662 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005663 case HPSA_CACHE_FLUSH:
5664 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005665 c->Request.type_attr_dir =
5666 TYPE_ATTR_DIR(cmd_type,
5667 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005668 c->Request.Timeout = 0;
5669 c->Request.CDB[0] = BMIC_WRITE;
5670 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05005671 c->Request.CDB[7] = (size >> 8) & 0xFF;
5672 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005673 break;
5674 case TEST_UNIT_READY:
5675 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005676 c->Request.type_attr_dir =
5677 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005678 c->Request.Timeout = 0;
5679 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005680 case HPSA_GET_RAID_MAP:
5681 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005682 c->Request.type_attr_dir =
5683 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005684 c->Request.Timeout = 0;
5685 c->Request.CDB[0] = HPSA_CISS_READ;
5686 c->Request.CDB[1] = cmd;
5687 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5688 c->Request.CDB[7] = (size >> 16) & 0xFF;
5689 c->Request.CDB[8] = (size >> 8) & 0xFF;
5690 c->Request.CDB[9] = size & 0xFF;
5691 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005692 case BMIC_SENSE_CONTROLLER_PARAMETERS:
5693 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005694 c->Request.type_attr_dir =
5695 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005696 c->Request.Timeout = 0;
5697 c->Request.CDB[0] = BMIC_READ;
5698 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
5699 c->Request.CDB[7] = (size >> 16) & 0xFF;
5700 c->Request.CDB[8] = (size >> 8) & 0xFF;
5701 break;
Don Brace03383732015-01-23 16:43:30 -06005702 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
5703 c->Request.CDBLen = 10;
5704 c->Request.type_attr_dir =
5705 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
5706 c->Request.Timeout = 0;
5707 c->Request.CDB[0] = BMIC_READ;
5708 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
5709 c->Request.CDB[7] = (size >> 16) & 0xFF;
5710 c->Request.CDB[8] = (size >> 8) & 0XFF;
5711 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005712 default:
5713 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
5714 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005715 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005716 }
5717 } else if (cmd_type == TYPE_MSG) {
5718 switch (cmd) {
5719
5720 case HPSA_DEVICE_RESET_MSG:
5721 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005722 c->Request.type_attr_dir =
5723 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005724 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005725 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
5726 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05005727 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005728 /* If bytes 4-7 are zero, it means reset the */
5729 /* LunID device */
5730 c->Request.CDB[4] = 0x00;
5731 c->Request.CDB[5] = 0x00;
5732 c->Request.CDB[6] = 0x00;
5733 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005734 break;
5735 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005736 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06005737 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005738 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
5739 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005740 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005741 c->Request.type_attr_dir =
5742 TYPE_ATTR_DIR(cmd_type,
5743 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005744 c->Request.Timeout = 0; /* Don't time out */
5745 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
5746 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
5747 c->Request.CDB[2] = 0x00; /* reserved */
5748 c->Request.CDB[3] = 0x00; /* reserved */
5749 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005750 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005751 c->Request.CDB[12] = 0x00; /* reserved */
5752 c->Request.CDB[13] = 0x00; /* reserved */
5753 c->Request.CDB[14] = 0x00; /* reserved */
5754 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005755 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005756 default:
5757 dev_warn(&h->pdev->dev, "unknown message type %d\n",
5758 cmd);
5759 BUG();
5760 }
5761 } else {
5762 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
5763 BUG();
5764 }
5765
Stephen M. Camerona505b862014-11-14 17:27:04 -06005766 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005767 case XFER_READ:
5768 pci_dir = PCI_DMA_FROMDEVICE;
5769 break;
5770 case XFER_WRITE:
5771 pci_dir = PCI_DMA_TODEVICE;
5772 break;
5773 case XFER_NONE:
5774 pci_dir = PCI_DMA_NONE;
5775 break;
5776 default:
5777 pci_dir = PCI_DMA_BIDIRECTIONAL;
5778 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005779 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
5780 return -1;
5781 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005782}
5783
5784/*
5785 * Map (physical) PCI mem into (virtual) kernel space
5786 */
5787static void __iomem *remap_pci_mem(ulong base, ulong size)
5788{
5789 ulong page_base = ((ulong) base) & PAGE_MASK;
5790 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05005791 void __iomem *page_remapped = ioremap_nocache(page_base,
5792 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005793
5794 return page_remapped ? (page_remapped + page_offs) : NULL;
5795}
5796
Matt Gates254f7962012-05-01 11:43:06 -05005797static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005798{
Matt Gates254f7962012-05-01 11:43:06 -05005799 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005800}
5801
Stephen M. Cameron900c5442010-02-04 08:42:35 -06005802static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005803{
5804 return h->access.intr_pending(h);
5805}
5806
5807static inline long interrupt_not_for_us(struct ctlr_info *h)
5808{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005809 return (h->access.intr_pending(h) == 0) ||
5810 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005811}
5812
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005813static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
5814 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005815{
5816 if (unlikely(tag_index >= h->nr_cmds)) {
5817 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
5818 return 1;
5819 }
5820 return 0;
5821}
5822
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05005823static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005824{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05005825 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06005826 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
5827 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05005828 complete_scsi_command(c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005829 else if (c->cmd_type == CMD_IOCTL_PEND)
5830 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06005831}
5832
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005833
5834static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06005835{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005836#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
5837#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06005838 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005839 return tag & ~HPSA_SIMPLE_ERROR_BITS;
5840 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06005841}
5842
Don Brace303932f2010-02-04 08:42:40 -06005843/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005844static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06005845 u32 raw_tag)
5846{
5847 u32 tag_index;
5848 struct CommandList *c;
5849
Don Bracef2405db2015-01-23 16:43:09 -06005850 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005851 if (!bad_tag(h, tag_index, raw_tag)) {
5852 c = h->cmd_pool + tag_index;
5853 finish_cmd(c);
5854 }
Don Brace303932f2010-02-04 08:42:40 -06005855}
5856
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005857/* Some controllers, like p400, will give us one interrupt
5858 * after a soft reset, even if we turned interrupts off.
5859 * Only need to check for this in the hpsa_xxx_discard_completions
5860 * functions.
5861 */
5862static int ignore_bogus_interrupt(struct ctlr_info *h)
5863{
5864 if (likely(!reset_devices))
5865 return 0;
5866
5867 if (likely(h->interrupts_enabled))
5868 return 0;
5869
5870 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
5871 "(known firmware bug.) Ignoring.\n");
5872
5873 return 1;
5874}
5875
Matt Gates254f7962012-05-01 11:43:06 -05005876/*
5877 * Convert &h->q[x] (passed to interrupt handlers) back to h.
5878 * Relies on (h-q[x] == x) being true for x such that
5879 * 0 <= x < MAX_REPLY_QUEUES.
5880 */
5881static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005882{
Matt Gates254f7962012-05-01 11:43:06 -05005883 return container_of((queue - *queue), struct ctlr_info, q[0]);
5884}
5885
5886static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
5887{
5888 struct ctlr_info *h = queue_to_hba(queue);
5889 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005890 u32 raw_tag;
5891
5892 if (ignore_bogus_interrupt(h))
5893 return IRQ_NONE;
5894
5895 if (interrupt_not_for_us(h))
5896 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005897 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005898 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005899 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005900 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005901 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005902 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005903 return IRQ_HANDLED;
5904}
5905
Matt Gates254f7962012-05-01 11:43:06 -05005906static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005907{
Matt Gates254f7962012-05-01 11:43:06 -05005908 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005909 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005910 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005911
5912 if (ignore_bogus_interrupt(h))
5913 return IRQ_NONE;
5914
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005915 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005916 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005917 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005918 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005919 return IRQ_HANDLED;
5920}
5921
Matt Gates254f7962012-05-01 11:43:06 -05005922static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005923{
Matt Gates254f7962012-05-01 11:43:06 -05005924 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06005925 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005926 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005927
5928 if (interrupt_not_for_us(h))
5929 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005930 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005931 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005932 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005933 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06005934 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005935 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005936 }
5937 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005938 return IRQ_HANDLED;
5939}
5940
Matt Gates254f7962012-05-01 11:43:06 -05005941static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005942{
Matt Gates254f7962012-05-01 11:43:06 -05005943 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005944 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005945 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005946
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005947 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005948 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06005949 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06005950 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005951 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005952 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005953 return IRQ_HANDLED;
5954}
5955
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005956/* Send a message CDB to the firmware. Careful, this only works
5957 * in simple mode, not performant mode due to the tag lookup.
5958 * We only ever use this immediately after a controller reset.
5959 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005960static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
5961 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005962{
5963 struct Command {
5964 struct CommandListHeader CommandHeader;
5965 struct RequestBlock Request;
5966 struct ErrDescriptor ErrorDescriptor;
5967 };
5968 struct Command *cmd;
5969 static const size_t cmd_sz = sizeof(*cmd) +
5970 sizeof(cmd->ErrorDescriptor);
5971 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06005972 __le32 paddr32;
5973 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005974 void __iomem *vaddr;
5975 int i, err;
5976
5977 vaddr = pci_ioremap_bar(pdev, 0);
5978 if (vaddr == NULL)
5979 return -ENOMEM;
5980
5981 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
5982 * CCISS commands, so they must be allocated from the lower 4GiB of
5983 * memory.
5984 */
5985 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
5986 if (err) {
5987 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06005988 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005989 }
5990
5991 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
5992 if (cmd == NULL) {
5993 iounmap(vaddr);
5994 return -ENOMEM;
5995 }
5996
5997 /* This must fit, because of the 32-bit consistent DMA mask. Also,
5998 * although there's no guarantee, we assume that the address is at
5999 * least 4-byte aligned (most likely, it's page-aligned).
6000 */
Don Brace2b08b3e2015-01-23 16:41:09 -06006001 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006002
6003 cmd->CommandHeader.ReplyQueue = 0;
6004 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006005 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06006006 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006007 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
6008
6009 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006010 cmd->Request.type_attr_dir =
6011 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006012 cmd->Request.Timeout = 0; /* Don't time out */
6013 cmd->Request.CDB[0] = opcode;
6014 cmd->Request.CDB[1] = type;
6015 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006016 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06006017 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006018 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006019
Don Brace2b08b3e2015-01-23 16:41:09 -06006020 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006021
6022 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
6023 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06006024 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006025 break;
6026 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
6027 }
6028
6029 iounmap(vaddr);
6030
6031 /* we leak the DMA buffer here ... no choice since the controller could
6032 * still complete the command.
6033 */
6034 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
6035 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
6036 opcode, type);
6037 return -ETIMEDOUT;
6038 }
6039
6040 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
6041
6042 if (tag & HPSA_ERROR_BIT) {
6043 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
6044 opcode, type);
6045 return -EIO;
6046 }
6047
6048 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
6049 opcode, type);
6050 return 0;
6051}
6052
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006053#define hpsa_noop(p) hpsa_message(p, 3, 0)
6054
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006055static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06006056 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006057{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006058
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006059 if (use_doorbell) {
6060 /* For everything after the P600, the PCI power state method
6061 * of resetting the controller doesn't work, so we have this
6062 * other way using the doorbell register.
6063 */
6064 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006065 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05006066
Justin Lindley00701a92014-05-29 10:52:47 -05006067 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05006068 * doorbell reset and before any attempt to talk to the board
6069 * at all to ensure that this actually works and doesn't fall
6070 * over in some weird corner cases.
6071 */
Justin Lindley00701a92014-05-29 10:52:47 -05006072 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006073 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006074
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006075 /* Quoting from the Open CISS Specification: "The Power
6076 * Management Control/Status Register (CSR) controls the power
6077 * state of the device. The normal operating state is D0,
6078 * CSR=00h. The software off state is D3, CSR=03h. To reset
6079 * the controller, place the interface device in D3 then to D0,
6080 * this causes a secondary PCI reset which will reset the
6081 * controller." */
6082
Don Brace2662cab2015-01-23 16:41:25 -06006083 int rc = 0;
6084
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006085 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06006086
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006087 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006088 rc = pci_set_power_state(pdev, PCI_D3hot);
6089 if (rc)
6090 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006091
6092 msleep(500);
6093
6094 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006095 rc = pci_set_power_state(pdev, PCI_D0);
6096 if (rc)
6097 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02006098
6099 /*
6100 * The P600 requires a small delay when changing states.
6101 * Otherwise we may think the board did not reset and we bail.
6102 * This for kdump only and is particular to the P600.
6103 */
6104 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006105 }
6106 return 0;
6107}
6108
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006109static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006110{
6111 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006112 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006113}
6114
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006115static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006116{
6117 char *driver_version;
6118 int i, size = sizeof(cfgtable->driver_version);
6119
6120 driver_version = kmalloc(size, GFP_KERNEL);
6121 if (!driver_version)
6122 return -ENOMEM;
6123
6124 init_driver_version(driver_version, size);
6125 for (i = 0; i < size; i++)
6126 writeb(driver_version[i], &cfgtable->driver_version[i]);
6127 kfree(driver_version);
6128 return 0;
6129}
6130
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006131static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
6132 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006133{
6134 int i;
6135
6136 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6137 driver_ver[i] = readb(&cfgtable->driver_version[i]);
6138}
6139
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006140static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006141{
6142
6143 char *driver_ver, *old_driver_ver;
6144 int rc, size = sizeof(cfgtable->driver_version);
6145
6146 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6147 if (!old_driver_ver)
6148 return -ENOMEM;
6149 driver_ver = old_driver_ver + size;
6150
6151 /* After a reset, the 32 bytes of "driver version" in the cfgtable
6152 * should have been changed, otherwise we know the reset failed.
6153 */
6154 init_driver_version(old_driver_ver, size);
6155 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6156 rc = !memcmp(driver_ver, old_driver_ver, size);
6157 kfree(old_driver_ver);
6158 return rc;
6159}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006160/* This does a hard reset of the controller using PCI power management
6161 * states or the using the doorbell register.
6162 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006163static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006164{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006165 u64 cfg_offset;
6166 u32 cfg_base_addr;
6167 u64 cfg_base_addr_index;
6168 void __iomem *vaddr;
6169 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006170 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006171 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006172 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006173 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006174 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006175
6176 /* For controllers as old as the P600, this is very nearly
6177 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006178 *
6179 * pci_save_state(pci_dev);
6180 * pci_set_power_state(pci_dev, PCI_D3hot);
6181 * pci_set_power_state(pci_dev, PCI_D0);
6182 * pci_restore_state(pci_dev);
6183 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006184 * For controllers newer than the P600, the pci power state
6185 * method of resetting doesn't work so we have another way
6186 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006187 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006188
Robert Elliott60f923b2015-01-23 16:42:06 -06006189 if (!ctlr_is_resettable(board_id)) {
6190 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06006191 return -ENODEV;
6192 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05006193
6194 /* if controller is soft- but not hard resettable... */
6195 if (!ctlr_is_hard_resettable(board_id))
6196 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006197
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006198 /* Save the PCI command register */
6199 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006200 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006201
6202 /* find the first memory BAR, so we can find the cfg table */
6203 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
6204 if (rc)
6205 return rc;
6206 vaddr = remap_pci_mem(paddr, 0x250);
6207 if (!vaddr)
6208 return -ENOMEM;
6209
6210 /* find cfgtable in order to check if reset via doorbell is supported */
6211 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
6212 &cfg_base_addr_index, &cfg_offset);
6213 if (rc)
6214 goto unmap_vaddr;
6215 cfgtable = remap_pci_mem(pci_resource_start(pdev,
6216 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
6217 if (!cfgtable) {
6218 rc = -ENOMEM;
6219 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006220 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006221 rc = write_driver_ver_to_cfgtable(cfgtable);
6222 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06006223 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006224
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006225 /* If reset via doorbell register is supported, use that.
6226 * There are two such methods. Favor the newest method.
6227 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006228 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006229 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6230 if (use_doorbell) {
6231 use_doorbell = DOORBELL_CTLR_RESET2;
6232 } else {
6233 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6234 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006235 dev_warn(&pdev->dev,
6236 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006237 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006238 goto unmap_cfgtable;
6239 }
6240 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006241
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006242 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
6243 if (rc)
6244 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006245
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006246 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006247 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006248
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006249 /* Some devices (notably the HP Smart Array 5i Controller)
6250 need a little pause here */
6251 msleep(HPSA_POST_RESET_PAUSE_MSECS);
6252
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006253 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
6254 if (rc) {
6255 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06006256 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006257 goto unmap_cfgtable;
6258 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006259
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006260 rc = controller_reset_failed(vaddr);
6261 if (rc < 0)
6262 goto unmap_cfgtable;
6263 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006264 dev_warn(&pdev->dev, "Unable to successfully reset "
6265 "controller. Will try soft reset.\n");
6266 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006267 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006268 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006269 }
6270
6271unmap_cfgtable:
6272 iounmap(cfgtable);
6273
6274unmap_vaddr:
6275 iounmap(vaddr);
6276 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006277}
6278
6279/*
6280 * We cannot read the structure directly, for portability we must use
6281 * the io functions.
6282 * This is for debug only.
6283 */
Don Brace42a91642014-11-14 17:26:27 -06006284static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006285{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006286#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006287 int i;
6288 char temp_name[17];
6289
6290 dev_info(dev, "Controller Configuration information\n");
6291 dev_info(dev, "------------------------------------\n");
6292 for (i = 0; i < 4; i++)
6293 temp_name[i] = readb(&(tb->Signature[i]));
6294 temp_name[4] = '\0';
6295 dev_info(dev, " Signature = %s\n", temp_name);
6296 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
6297 dev_info(dev, " Transport methods supported = 0x%x\n",
6298 readl(&(tb->TransportSupport)));
6299 dev_info(dev, " Transport methods active = 0x%x\n",
6300 readl(&(tb->TransportActive)));
6301 dev_info(dev, " Requested transport Method = 0x%x\n",
6302 readl(&(tb->HostWrite.TransportRequest)));
6303 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
6304 readl(&(tb->HostWrite.CoalIntDelay)));
6305 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
6306 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06006307 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006308 readl(&(tb->CmdsOutMax)));
6309 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
6310 for (i = 0; i < 16; i++)
6311 temp_name[i] = readb(&(tb->ServerName[i]));
6312 temp_name[16] = '\0';
6313 dev_info(dev, " Server Name = %s\n", temp_name);
6314 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
6315 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006316#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006317}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006318
6319static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
6320{
6321 int i, offset, mem_type, bar_type;
6322
6323 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
6324 return 0;
6325 offset = 0;
6326 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
6327 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
6328 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
6329 offset += 4;
6330 else {
6331 mem_type = pci_resource_flags(pdev, i) &
6332 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
6333 switch (mem_type) {
6334 case PCI_BASE_ADDRESS_MEM_TYPE_32:
6335 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
6336 offset += 4; /* 32 bit */
6337 break;
6338 case PCI_BASE_ADDRESS_MEM_TYPE_64:
6339 offset += 8;
6340 break;
6341 default: /* reserved in PCI 2.2 */
6342 dev_warn(&pdev->dev,
6343 "base address is invalid\n");
6344 return -1;
6345 break;
6346 }
6347 }
6348 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
6349 return i + 1;
6350 }
6351 return -1;
6352}
6353
6354/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06006355 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006356 */
6357
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006358static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006359{
6360#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05006361 int err, i;
6362 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
6363
6364 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
6365 hpsa_msix_entries[i].vector = 0;
6366 hpsa_msix_entries[i].entry = i;
6367 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006368
6369 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006370 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
6371 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006372 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006373 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006374 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006375 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05006376 if (h->msix_vector > num_online_cpus())
6377 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006378 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
6379 1, h->msix_vector);
6380 if (err < 0) {
6381 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
6382 h->msix_vector = 0;
6383 goto single_msi_mode;
6384 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006385 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006386 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006387 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006388 h->msix_vector = err;
6389 for (i = 0; i < h->msix_vector; i++)
6390 h->intr[i] = hpsa_msix_entries[i].vector;
6391 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006392 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006393single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006394 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006395 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006396 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006397 h->msi_vector = 1;
6398 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006399 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006400 }
6401default_int_mode:
6402#endif /* CONFIG_PCI_MSI */
6403 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006404 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006405}
6406
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006407static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006408{
6409 int i;
6410 u32 subsystem_vendor_id, subsystem_device_id;
6411
6412 subsystem_vendor_id = pdev->subsystem_vendor;
6413 subsystem_device_id = pdev->subsystem_device;
6414 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
6415 subsystem_vendor_id;
6416
6417 for (i = 0; i < ARRAY_SIZE(products); i++)
6418 if (*board_id == products[i].board_id)
6419 return i;
6420
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05006421 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
6422 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
6423 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006424 dev_warn(&pdev->dev, "unrecognized board ID: "
6425 "0x%08x, ignoring.\n", *board_id);
6426 return -ENODEV;
6427 }
6428 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
6429}
6430
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006431static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
6432 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006433{
6434 int i;
6435
6436 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006437 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006438 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006439 *memory_bar = pci_resource_start(pdev, i);
6440 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006441 *memory_bar);
6442 return 0;
6443 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006444 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006445 return -ENODEV;
6446}
6447
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006448static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
6449 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006450{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006451 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006452 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006453 if (wait_for_ready)
6454 iterations = HPSA_BOARD_READY_ITERATIONS;
6455 else
6456 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006457
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006458 for (i = 0; i < iterations; i++) {
6459 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
6460 if (wait_for_ready) {
6461 if (scratchpad == HPSA_FIRMWARE_READY)
6462 return 0;
6463 } else {
6464 if (scratchpad != HPSA_FIRMWARE_READY)
6465 return 0;
6466 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006467 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
6468 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006469 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006470 return -ENODEV;
6471}
6472
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006473static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
6474 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
6475 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006476{
6477 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
6478 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
6479 *cfg_base_addr &= (u32) 0x0000ffff;
6480 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
6481 if (*cfg_base_addr_index == -1) {
6482 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
6483 return -ENODEV;
6484 }
6485 return 0;
6486}
6487
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006488static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006489{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006490 u64 cfg_offset;
6491 u32 cfg_base_addr;
6492 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06006493 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006494 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006495
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006496 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
6497 &cfg_base_addr_index, &cfg_offset);
6498 if (rc)
6499 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006500 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006501 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006502 if (!h->cfgtable) {
6503 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006504 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006505 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006506 rc = write_driver_ver_to_cfgtable(h->cfgtable);
6507 if (rc)
6508 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006509 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006510 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006511 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
6512 cfg_base_addr_index)+cfg_offset+trans_offset,
6513 sizeof(*h->transtable));
6514 if (!h->transtable)
6515 return -ENOMEM;
6516 return 0;
6517}
6518
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006519static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006520{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006521#define MIN_MAX_COMMANDS 16
6522 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
6523
6524 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06006525
6526 /* Limit commands in memory limited kdump scenario. */
6527 if (reset_devices && h->max_commands > 32)
6528 h->max_commands = 32;
6529
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006530 if (h->max_commands < MIN_MAX_COMMANDS) {
6531 dev_warn(&h->pdev->dev,
6532 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
6533 h->max_commands,
6534 MIN_MAX_COMMANDS);
6535 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006536 }
6537}
6538
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006539/* If the controller reports that the total max sg entries is greater than 512,
6540 * then we know that chained SG blocks work. (Original smart arrays did not
6541 * support chained SG blocks and would return zero for max sg entries.)
6542 */
6543static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
6544{
6545 return h->maxsgentries > 512;
6546}
6547
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006548/* Interrogate the hardware for some limits:
6549 * max commands, max SG elements without chaining, and with chaining,
6550 * SG chain block size, etc.
6551 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006552static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006553{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006554 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06006555 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006556 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006557 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006558 if (hpsa_supports_chained_sg_blocks(h)) {
6559 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006560 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06006561 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006562 h->maxsgentries--; /* save one for chain pointer */
6563 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006564 /*
6565 * Original smart arrays supported at most 31 s/g entries
6566 * embedded inline in the command (trying to use more
6567 * would lock up the controller)
6568 */
6569 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06006570 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006571 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006572 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006573
6574 /* Find out what task management functions are supported and cache */
6575 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06006576 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
6577 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
6578 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6579 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006580}
6581
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006582static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
6583{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09006584 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006585 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006586 return false;
6587 }
6588 return true;
6589}
6590
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006591static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006592{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006593 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006594
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006595 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02006596 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
6597#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006598 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006599#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06006600 driver_support |= ENABLE_UNIT_ATTN;
6601 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006602}
6603
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006604/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
6605 * in a prefetch beyond physical memory.
6606 */
6607static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
6608{
6609 u32 dma_prefetch;
6610
6611 if (h->board_id != 0x3225103C)
6612 return;
6613 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
6614 dma_prefetch |= 0x8000;
6615 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
6616}
6617
Robert Elliottc706a792015-01-23 16:45:01 -06006618static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006619{
6620 int i;
6621 u32 doorbell_value;
6622 unsigned long flags;
6623 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006624 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006625 spin_lock_irqsave(&h->lock, flags);
6626 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6627 spin_unlock_irqrestore(&h->lock, flags);
6628 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06006629 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006630 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006631 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006632 }
Robert Elliottc706a792015-01-23 16:45:01 -06006633 return -ENODEV;
6634done:
6635 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006636}
6637
Robert Elliottc706a792015-01-23 16:45:01 -06006638static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006639{
6640 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006641 u32 doorbell_value;
6642 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006643
6644 /* under certain very rare conditions, this can take awhile.
6645 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
6646 * as we enter this code.)
6647 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006648 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05006649 if (h->remove_in_progress)
6650 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006651 spin_lock_irqsave(&h->lock, flags);
6652 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6653 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06006654 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06006655 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006656 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06006657 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006658 }
Robert Elliottc706a792015-01-23 16:45:01 -06006659 return -ENODEV;
6660done:
6661 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006662}
6663
Robert Elliottc706a792015-01-23 16:45:01 -06006664/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006665static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006666{
6667 u32 trans_support;
6668
6669 trans_support = readl(&(h->cfgtable->TransportSupport));
6670 if (!(trans_support & SIMPLE_MODE))
6671 return -ENOTSUPP;
6672
6673 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006674
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006675 /* Update the field, and then ring the doorbell */
6676 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06006677 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006678 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06006679 if (hpsa_wait_for_mode_change_ack(h))
6680 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006681 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006682 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
6683 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006684 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006685 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006686error:
Stephen Cameron050f7142015-01-23 16:42:22 -06006687 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006688 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006689}
6690
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006691static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006692{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006693 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006694
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006695 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
6696 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06006697 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006698 h->product_name = products[prod_index].product_name;
6699 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006700
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006701 h->needs_abort_tags_swizzled =
6702 ctlr_needs_abort_tags_swizzled(h->board_id);
6703
Matthew Garrette5a44df2011-11-11 11:14:23 -05006704 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
6705 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
6706
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006707 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006708 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006709 dev_warn(&h->pdev->dev, "unable to enable PCI device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006710 return err;
6711 }
6712
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006713 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006714 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006715 dev_err(&h->pdev->dev,
6716 "cannot obtain PCI resources, aborting\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006717 return err;
6718 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006719
6720 pci_set_master(h->pdev);
6721
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006722 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006723 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006724 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006725 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006726 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006727 if (!h->vaddr) {
6728 err = -ENOMEM;
6729 goto err_out_free_res;
6730 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006731 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006732 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006733 goto err_out_free_res;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006734 err = hpsa_find_cfgtables(h);
6735 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006736 goto err_out_free_res;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006737 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006738
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006739 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006740 err = -ENODEV;
6741 goto err_out_free_res;
6742 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006743 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006744 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006745 err = hpsa_enter_simple_mode(h);
6746 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006747 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006748 return 0;
6749
6750err_out_free_res:
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006751 if (h->transtable)
6752 iounmap(h->transtable);
6753 if (h->cfgtable)
6754 iounmap(h->cfgtable);
6755 if (h->vaddr)
6756 iounmap(h->vaddr);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05006757 pci_disable_device(h->pdev);
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006758 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006759 return err;
6760}
6761
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006762static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006763{
6764 int rc;
6765
6766#define HBA_INQUIRY_BYTE_COUNT 64
6767 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
6768 if (!h->hba_inquiry_data)
6769 return;
6770 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
6771 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
6772 if (rc != 0) {
6773 kfree(h->hba_inquiry_data);
6774 h->hba_inquiry_data = NULL;
6775 }
6776}
6777
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006778static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006779{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006780 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06006781 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006782
6783 if (!reset_devices)
6784 return 0;
6785
Tomas Henzl132aa222014-08-14 16:12:39 +02006786 /* kdump kernel is loading, we don't know in which state is
6787 * the pci interface. The dev->enable_cnt is equal zero
6788 * so we call enable+disable, wait a while and switch it on.
6789 */
6790 rc = pci_enable_device(pdev);
6791 if (rc) {
6792 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
6793 return -ENODEV;
6794 }
6795 pci_disable_device(pdev);
6796 msleep(260); /* a randomly chosen number */
6797 rc = pci_enable_device(pdev);
6798 if (rc) {
6799 dev_warn(&pdev->dev, "failed to enable device.\n");
6800 return -ENODEV;
6801 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006802
Tomas Henzl859c75a2014-09-12 14:44:15 +02006803 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06006804
Tomas Henzl3b747292015-01-23 16:41:20 -06006805 vaddr = pci_ioremap_bar(pdev, 0);
6806 if (vaddr == NULL) {
6807 rc = -ENOMEM;
6808 goto out_disable;
6809 }
6810 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
6811 iounmap(vaddr);
6812
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006813 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006814 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006815
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006816 /* -ENOTSUPP here means we cannot reset the controller
6817 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05006818 * "performant mode". Or, it might be 640x, which can't reset
6819 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006820 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06006821 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02006822 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006823
6824 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06006825 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006826 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
6827 if (hpsa_noop(pdev) == 0)
6828 break;
6829 else
6830 dev_warn(&pdev->dev, "no-op failed%s\n",
6831 (i < 11 ? "; re-trying" : ""));
6832 }
Tomas Henzl132aa222014-08-14 16:12:39 +02006833
6834out_disable:
6835
6836 pci_disable_device(pdev);
6837 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006838}
6839
Robert Elliottd37ffbe2015-04-23 09:32:27 -05006840static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006841{
6842 h->cmd_pool_bits = kzalloc(
6843 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
6844 sizeof(unsigned long), GFP_KERNEL);
6845 h->cmd_pool = pci_alloc_consistent(h->pdev,
6846 h->nr_cmds * sizeof(*h->cmd_pool),
6847 &(h->cmd_pool_dhandle));
6848 h->errinfo_pool = pci_alloc_consistent(h->pdev,
6849 h->nr_cmds * sizeof(*h->errinfo_pool),
6850 &(h->errinfo_pool_dhandle));
6851 if ((h->cmd_pool_bits == NULL)
6852 || (h->cmd_pool == NULL)
6853 || (h->errinfo_pool == NULL)) {
6854 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06006855 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006856 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05006857 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006858 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06006859clean_up:
6860 hpsa_free_cmd_pool(h);
6861 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006862}
6863
6864static void hpsa_free_cmd_pool(struct ctlr_info *h)
6865{
6866 kfree(h->cmd_pool_bits);
6867 if (h->cmd_pool)
6868 pci_free_consistent(h->pdev,
6869 h->nr_cmds * sizeof(struct CommandList),
6870 h->cmd_pool, h->cmd_pool_dhandle);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06006871 if (h->ioaccel2_cmd_pool)
6872 pci_free_consistent(h->pdev,
6873 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
6874 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006875 if (h->errinfo_pool)
6876 pci_free_consistent(h->pdev,
6877 h->nr_cmds * sizeof(struct ErrorInfo),
6878 h->errinfo_pool,
6879 h->errinfo_pool_dhandle);
Matt Gatese1f7de02014-02-18 13:55:17 -06006880 if (h->ioaccel_cmd_pool)
6881 pci_free_consistent(h->pdev,
6882 h->nr_cmds * sizeof(struct io_accel1_cmd),
6883 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006884}
6885
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006886static void hpsa_irq_affinity_hints(struct ctlr_info *h)
6887{
Fabian Frederickec429952015-01-23 16:41:46 -06006888 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006889
6890 cpu = cpumask_first(cpu_online_mask);
6891 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06006892 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006893 cpu = cpumask_next(cpu, cpu_online_mask);
6894 }
6895}
6896
Robert Elliottec501a12015-01-23 16:41:40 -06006897/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
6898static void hpsa_free_irqs(struct ctlr_info *h)
6899{
6900 int i;
6901
6902 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
6903 /* Single reply queue, only one irq to free */
6904 i = h->intr_mode;
6905 irq_set_affinity_hint(h->intr[i], NULL);
6906 free_irq(h->intr[i], &h->q[i]);
6907 return;
6908 }
6909
6910 for (i = 0; i < h->msix_vector; i++) {
6911 irq_set_affinity_hint(h->intr[i], NULL);
6912 free_irq(h->intr[i], &h->q[i]);
6913 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006914 for (; i < MAX_REPLY_QUEUES; i++)
6915 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06006916}
6917
Robert Elliott9ee61792015-01-23 16:42:32 -06006918/* returns 0 on success; cleans up and returns -Enn on error */
6919static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006920 irqreturn_t (*msixhandler)(int, void *),
6921 irqreturn_t (*intxhandler)(int, void *))
6922{
Matt Gates254f7962012-05-01 11:43:06 -05006923 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006924
Matt Gates254f7962012-05-01 11:43:06 -05006925 /*
6926 * initialize h->q[x] = x so that interrupt handlers know which
6927 * queue to process.
6928 */
6929 for (i = 0; i < MAX_REPLY_QUEUES; i++)
6930 h->q[i] = (u8) i;
6931
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006932 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05006933 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006934 for (i = 0; i < h->msix_vector; i++) {
Matt Gates254f7962012-05-01 11:43:06 -05006935 rc = request_irq(h->intr[i], msixhandler,
6936 0, h->devname,
6937 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06006938 if (rc) {
6939 int j;
6940
6941 dev_err(&h->pdev->dev,
6942 "failed to get irq %d for %s\n",
6943 h->intr[i], h->devname);
6944 for (j = 0; j < i; j++) {
6945 free_irq(h->intr[j], &h->q[j]);
6946 h->q[j] = 0;
6947 }
6948 for (; j < MAX_REPLY_QUEUES; j++)
6949 h->q[j] = 0;
6950 return rc;
6951 }
6952 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006953 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05006954 } else {
6955 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006956 if (h->msix_vector > 0 || h->msi_vector) {
Matt Gates254f7962012-05-01 11:43:06 -05006957 rc = request_irq(h->intr[h->intr_mode],
6958 msixhandler, 0, h->devname,
6959 &h->q[h->intr_mode]);
6960 } else {
6961 rc = request_irq(h->intr[h->intr_mode],
6962 intxhandler, IRQF_SHARED, h->devname,
6963 &h->q[h->intr_mode]);
6964 }
6965 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006966 if (rc) {
6967 dev_err(&h->pdev->dev, "unable to get irq %d for %s\n",
6968 h->intr[h->intr_mode], h->devname);
6969 return -ENODEV;
6970 }
6971 return 0;
6972}
6973
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006974static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006975{
6976 if (hpsa_send_host_reset(h, RAID_CTLR_LUNID,
6977 HPSA_RESET_TYPE_CONTROLLER)) {
6978 dev_warn(&h->pdev->dev, "Resetting array controller failed.\n");
6979 return -EIO;
6980 }
6981
6982 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
6983 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) {
6984 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
6985 return -1;
6986 }
6987
6988 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
6989 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) {
6990 dev_warn(&h->pdev->dev, "Board failed to become ready "
6991 "after soft reset.\n");
6992 return -1;
6993 }
6994
6995 return 0;
6996}
6997
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006998static void hpsa_free_irqs_and_disable_msix(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006999{
Robert Elliottec501a12015-01-23 16:41:40 -06007000 hpsa_free_irqs(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007001#ifdef CONFIG_PCI_MSI
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007002 if (h->msix_vector) {
7003 if (h->pdev->msix_enabled)
7004 pci_disable_msix(h->pdev);
7005 } else if (h->msi_vector) {
7006 if (h->pdev->msi_enabled)
7007 pci_disable_msi(h->pdev);
7008 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007009#endif /* CONFIG_PCI_MSI */
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007010}
7011
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007012static void hpsa_free_reply_queues(struct ctlr_info *h)
7013{
7014 int i;
7015
7016 for (i = 0; i < h->nreply_queues; i++) {
7017 if (!h->reply_queue[i].head)
7018 continue;
7019 pci_free_consistent(h->pdev, h->reply_queue_size,
7020 h->reply_queue[i].head, h->reply_queue[i].busaddr);
7021 h->reply_queue[i].head = NULL;
7022 h->reply_queue[i].busaddr = 0;
7023 }
7024}
7025
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007026static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
7027{
7028 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007029 hpsa_free_sg_chain_blocks(h);
7030 hpsa_free_cmd_pool(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06007031 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007032 kfree(h->blockFetchTable);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007033 hpsa_free_reply_queues(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007034 if (h->vaddr)
7035 iounmap(h->vaddr);
7036 if (h->transtable)
7037 iounmap(h->transtable);
7038 if (h->cfgtable)
7039 iounmap(h->cfgtable);
Tomas Henzl132aa222014-08-14 16:12:39 +02007040 pci_disable_device(h->pdev);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007041 pci_release_regions(h->pdev);
7042 kfree(h);
7043}
7044
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007045/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06007046static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007047{
Webb Scales281a7fd2015-01-23 16:43:35 -06007048 int i, refcount;
7049 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007050 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007051
Don Brace080ef1c2015-01-23 16:43:25 -06007052 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06007053 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007054 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007055 refcount = atomic_inc_return(&c->refcount);
7056 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05007057 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06007058 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05007059 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05007060 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06007061 }
7062 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007063 }
Webb Scales25163bd2015-04-23 09:32:00 -05007064 dev_warn(&h->pdev->dev,
7065 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007066}
7067
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007068static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
7069{
Rusty Russellc8ed0012015-03-05 10:49:19 +10307070 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007071
Rusty Russellc8ed0012015-03-05 10:49:19 +10307072 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007073 u32 *lockup_detected;
7074 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7075 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007076 }
7077 wmb(); /* be sure the per-cpu variables are out to memory */
7078}
7079
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007080static void controller_lockup_detected(struct ctlr_info *h)
7081{
7082 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007083 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007084
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007085 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7086 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007087 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7088 if (!lockup_detected) {
7089 /* no heartbeat, but controller gave us a zero. */
7090 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05007091 "lockup detected after %d but scratchpad register is zero\n",
7092 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007093 lockup_detected = 0xffffffff;
7094 }
7095 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007096 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05007097 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
7098 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007099 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06007100 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007101}
7102
Webb Scales25163bd2015-04-23 09:32:00 -05007103static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007104{
7105 u64 now;
7106 u32 heartbeat;
7107 unsigned long flags;
7108
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007109 now = get_jiffies_64();
7110 /* If we've received an interrupt recently, we're ok. */
7111 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007112 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007113 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007114
7115 /*
7116 * If we've already checked the heartbeat recently, we're ok.
7117 * This could happen if someone sends us a signal. We
7118 * otherwise don't care about signals in this thread.
7119 */
7120 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007121 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007122 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007123
7124 /* If heartbeat has not changed since we last looked, we're not ok. */
7125 spin_lock_irqsave(&h->lock, flags);
7126 heartbeat = readl(&h->cfgtable->HeartBeat);
7127 spin_unlock_irqrestore(&h->lock, flags);
7128 if (h->last_heartbeat == heartbeat) {
7129 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05007130 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007131 }
7132
7133 /* We're ok. */
7134 h->last_heartbeat = heartbeat;
7135 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05007136 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007137}
7138
Stephen M. Cameron98465902014-02-21 16:25:00 -06007139static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007140{
7141 int i;
7142 char *event_type;
7143
Stephen Camerone4aa3e62015-01-23 16:44:07 -06007144 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7145 return;
7146
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007147 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06007148 if ((h->transMethod & (CFGTBL_Trans_io_accel1
7149 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007150 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
7151 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
7152
7153 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
7154 event_type = "state change";
7155 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
7156 event_type = "configuration change";
7157 /* Stop sending new RAID offload reqs via the IO accelerator */
7158 scsi_block_requests(h->scsi_host);
7159 for (i = 0; i < h->ndevices; i++)
7160 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007161 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007162 /* Set 'accelerator path config change' bit */
7163 dev_warn(&h->pdev->dev,
7164 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
7165 h->events, event_type);
7166 writel(h->events, &(h->cfgtable->clear_event_notify));
7167 /* Set the "clear event notify field update" bit 6 */
7168 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7169 /* Wait until ctlr clears 'clear event notify field', bit 6 */
7170 hpsa_wait_for_clear_event_notify_ack(h);
7171 scsi_unblock_requests(h->scsi_host);
7172 } else {
7173 /* Acknowledge controller notification events. */
7174 writel(h->events, &(h->cfgtable->clear_event_notify));
7175 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7176 hpsa_wait_for_clear_event_notify_ack(h);
7177#if 0
7178 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7179 hpsa_wait_for_mode_change_ack(h);
7180#endif
7181 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007182 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007183}
7184
7185/* Check a register on the controller to see if there are configuration
7186 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06007187 * we should rescan the controller for devices.
7188 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007189 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06007190static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007191{
7192 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06007193 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007194
7195 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06007196 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007197}
7198
Stephen M. Cameron98465902014-02-21 16:25:00 -06007199/*
7200 * Check if any of the offline devices have become ready
7201 */
7202static int hpsa_offline_devices_ready(struct ctlr_info *h)
7203{
7204 unsigned long flags;
7205 struct offline_device_entry *d;
7206 struct list_head *this, *tmp;
7207
7208 spin_lock_irqsave(&h->offline_device_lock, flags);
7209 list_for_each_safe(this, tmp, &h->offline_device_list) {
7210 d = list_entry(this, struct offline_device_entry,
7211 offline_list);
7212 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007213 if (!hpsa_volume_offline(h, d->scsi3addr)) {
7214 spin_lock_irqsave(&h->offline_device_lock, flags);
7215 list_del(&d->offline_list);
7216 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007217 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007218 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007219 spin_lock_irqsave(&h->offline_device_lock, flags);
7220 }
7221 spin_unlock_irqrestore(&h->offline_device_lock, flags);
7222 return 0;
7223}
7224
Don Brace6636e7f2015-01-23 16:45:17 -06007225static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007226{
7227 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007228 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06007229 struct ctlr_info, rescan_ctlr_work);
7230
7231
7232 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007233 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007234
7235 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
7236 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007237 hpsa_ack_ctlr_events(h);
7238 hpsa_scan_start(h->scsi_host);
7239 scsi_host_put(h->scsi_host);
7240 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007241 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007242 if (!h->remove_in_progress)
7243 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007244 h->heartbeat_sample_interval);
7245 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007246}
7247
Don Brace6636e7f2015-01-23 16:45:17 -06007248static void hpsa_monitor_ctlr_worker(struct work_struct *work)
7249{
7250 unsigned long flags;
7251 struct ctlr_info *h = container_of(to_delayed_work(work),
7252 struct ctlr_info, monitor_ctlr_work);
7253
7254 detect_controller_lockup(h);
7255 if (lockup_detected(h))
7256 return;
7257
7258 spin_lock_irqsave(&h->lock, flags);
7259 if (!h->remove_in_progress)
7260 schedule_delayed_work(&h->monitor_ctlr_work,
7261 h->heartbeat_sample_interval);
7262 spin_unlock_irqrestore(&h->lock, flags);
7263}
7264
7265static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
7266 char *name)
7267{
7268 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06007269
Don Brace397ea9c2015-02-06 17:44:15 -06007270 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06007271 if (!wq)
7272 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
7273
7274 return wq;
7275}
7276
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007277static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007278{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007279 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007280 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007281 int try_soft_reset = 0;
7282 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007283 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007284
7285 if (number_of_controllers == 0)
7286 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007287
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007288 rc = hpsa_lookup_board_id(pdev, &board_id);
7289 if (rc < 0) {
7290 dev_warn(&pdev->dev, "Board ID not found\n");
7291 return rc;
7292 }
7293
7294 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007295 if (rc) {
7296 if (rc != -ENOTSUPP)
7297 return rc;
7298 /* If the reset fails in a particular way (it has no way to do
7299 * a proper hard reset, so returns -ENOTSUPP) we can try to do
7300 * a soft reset once we get the controller configured up to the
7301 * point that it can accept a command.
7302 */
7303 try_soft_reset = 1;
7304 rc = 0;
7305 }
7306
7307reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007308
Don Brace303932f2010-02-04 08:42:40 -06007309 /* Command structures must be aligned on a 32-byte boundary because
7310 * the 5 lower bits of the address are used by the hardware. and by
7311 * the driver. See comments in hpsa.h for more info.
7312 */
Don Brace303932f2010-02-04 08:42:40 -06007313 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007314 h = kzalloc(sizeof(*h), GFP_KERNEL);
7315 if (!h)
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007316 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007317
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007318 h->pdev = pdev;
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007319 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007320 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007321 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007322 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007323 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06007324 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007325 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007326
Don Brace6636e7f2015-01-23 16:45:17 -06007327 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
7328 if (!h->rescan_ctlr_wq) {
Don Brace080ef1c2015-01-23 16:43:25 -06007329 rc = -ENOMEM;
7330 goto clean1;
7331 }
Don Brace6636e7f2015-01-23 16:45:17 -06007332
7333 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
7334 if (!h->resubmit_wq) {
7335 rc = -ENOMEM;
7336 goto clean1;
7337 }
7338
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007339 /* Allocate and clear per-cpu variable lockup_detected */
7340 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007341 if (!h->lockup_detected) {
7342 rc = -ENOMEM;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007343 goto clean1;
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007344 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007345 set_lockup_detected_for_all_cpus(h, 0);
7346
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007347 rc = hpsa_pci_init(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007348 if (rc != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007349 goto clean1;
7350
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007351 sprintf(h->devname, HPSA "%d", number_of_controllers);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007352 h->ctlr = number_of_controllers;
7353 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007354
7355 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007356 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
7357 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007358 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007359 } else {
7360 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
7361 if (rc == 0) {
7362 dac = 0;
7363 } else {
7364 dev_err(&pdev->dev, "no suitable DMA available\n");
7365 goto clean1;
7366 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007367 }
7368
7369 /* make sure the board interrupts are off */
7370 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007371
Robert Elliott9ee61792015-01-23 16:42:32 -06007372 if (hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007373 goto clean2;
Don Brace303932f2010-02-04 08:42:40 -06007374 dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n",
7375 h->devname, pdev->device,
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007376 h->intr[h->intr_mode], dac ? "" : " not");
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007377 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06007378 if (rc)
7379 goto clean2_and_free_irqs;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007380 if (hpsa_allocate_sg_chain_blocks(h))
7381 goto clean4;
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007382 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007383 init_waitqueue_head(&h->abort_cmd_wait_queue);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007384 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007385
7386 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007387 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007388 h->hba_mode_enabled = 0;
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007389 h->scsi_host = NULL;
7390 spin_lock_init(&h->devlock);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007391 hpsa_put_ctlr_into_performant_mode(h);
7392
7393 /* At this point, the controller is ready to take commands.
7394 * Now, if reset_devices and the hard reset didn't work, try
7395 * the soft reset and see if that works.
7396 */
7397 if (try_soft_reset) {
7398
7399 /* This is kind of gross. We may or may not get a completion
7400 * from the soft reset command, and if we do, then the value
7401 * from the fifo may or may not be valid. So, we wait 10 secs
7402 * after the reset throwing away any completions we get during
7403 * that time. Unregister the interrupt handler and register
7404 * fake ones to scoop up any residual completions.
7405 */
7406 spin_lock_irqsave(&h->lock, flags);
7407 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7408 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06007409 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06007410 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007411 hpsa_intx_discard_completions);
7412 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06007413 dev_warn(&h->pdev->dev,
7414 "Failed to request_irq after soft reset.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007415 goto clean4;
7416 }
7417
7418 rc = hpsa_kdump_soft_reset(h);
7419 if (rc)
7420 /* Neither hard nor soft reset worked, we're hosed. */
7421 goto clean4;
7422
7423 dev_info(&h->pdev->dev, "Board READY.\n");
7424 dev_info(&h->pdev->dev,
7425 "Waiting for stale completions to drain.\n");
7426 h->access.set_intr_mask(h, HPSA_INTR_ON);
7427 msleep(10000);
7428 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7429
7430 rc = controller_reset_failed(h->cfgtable);
7431 if (rc)
7432 dev_info(&h->pdev->dev,
7433 "Soft reset appears to have failed.\n");
7434
7435 /* since the controller's reset, we have to go back and re-init
7436 * everything. Easiest to just forget what we've done and do it
7437 * all over again.
7438 */
7439 hpsa_undo_allocations_after_kdump_soft_reset(h);
7440 try_soft_reset = 0;
7441 if (rc)
7442 /* don't go to clean4, we already unallocated */
7443 return -ENODEV;
7444
7445 goto reinit_after_soft_reset;
7446 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007447
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007448 /* Enable Accelerated IO path at driver layer */
7449 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06007450
Scott Teele863d682014-02-18 13:57:05 -06007451
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007452 /* Turn the interrupts on so we can service requests */
7453 h->access.set_intr_mask(h, HPSA_INTR_ON);
7454
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007455 hpsa_hba_inquiry(h);
Stephen Cameron4a4384c2015-04-23 09:32:37 -05007456 rc = hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
7457 if (rc)
7458 goto clean4;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007459
7460 /* Monitor the controller for firmware lockups */
7461 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
7462 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
7463 schedule_delayed_work(&h->monitor_ctlr_work,
7464 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06007465 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
7466 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
7467 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05007468 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007469
7470clean4:
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007471 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007472 hpsa_free_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06007473clean2_and_free_irqs:
Robert Elliottec501a12015-01-23 16:41:40 -06007474 hpsa_free_irqs(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007475clean2:
7476clean1:
Don Brace080ef1c2015-01-23 16:43:25 -06007477 if (h->resubmit_wq)
7478 destroy_workqueue(h->resubmit_wq);
Don Brace6636e7f2015-01-23 16:45:17 -06007479 if (h->rescan_ctlr_wq)
7480 destroy_workqueue(h->rescan_ctlr_wq);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007481 if (h->lockup_detected)
7482 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007483 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007484 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007485}
7486
7487static void hpsa_flush_cache(struct ctlr_info *h)
7488{
7489 char *flush_buf;
7490 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007491 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007492
7493 /* Don't bother trying to flush the cache if locked up */
Webb Scales25163bd2015-04-23 09:32:00 -05007494 /* FIXME not necessary if do_simple_cmd does the check */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007495 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007496 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007497 flush_buf = kzalloc(4, GFP_KERNEL);
7498 if (!flush_buf)
7499 return;
7500
Stephen Cameron45fcb862015-01-23 16:43:04 -06007501 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007502 if (!c) {
Stephen Cameron45fcb862015-01-23 16:43:04 -06007503 dev_warn(&h->pdev->dev, "cmd_alloc returned NULL!\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007504 goto out_of_memory;
7505 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007506 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
7507 RAID_CTLR_LUNID, TYPE_CMD)) {
7508 goto out;
7509 }
Webb Scales25163bd2015-04-23 09:32:00 -05007510 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
7511 PCI_DMA_TODEVICE, NO_TIMEOUT);
7512 if (rc)
7513 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007514 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007515out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007516 dev_warn(&h->pdev->dev,
7517 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06007518 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007519out_of_memory:
7520 kfree(flush_buf);
7521}
7522
7523static void hpsa_shutdown(struct pci_dev *pdev)
7524{
7525 struct ctlr_info *h;
7526
7527 h = pci_get_drvdata(pdev);
7528 /* Turn board interrupts off and send the flush cache command
7529 * sendcmd will turn off interrupt, and send the flush...
7530 * To write all data in the battery backed cache to disks
7531 */
7532 hpsa_flush_cache(h);
7533 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007534 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007535}
7536
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007537static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007538{
7539 int i;
7540
7541 for (i = 0; i < h->ndevices; i++)
7542 kfree(h->dev[i]);
7543}
7544
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007545static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007546{
7547 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007548 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007549
7550 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007551 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007552 return;
7553 }
7554 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007555
7556 /* Get rid of any controller monitoring work items */
7557 spin_lock_irqsave(&h->lock, flags);
7558 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007559 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007560 cancel_delayed_work_sync(&h->monitor_ctlr_work);
7561 cancel_delayed_work_sync(&h->rescan_ctlr_work);
7562 destroy_workqueue(h->rescan_ctlr_wq);
7563 destroy_workqueue(h->resubmit_wq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007564 hpsa_unregister_scsi(h); /* unhook from SCSI subsystem */
7565 hpsa_shutdown(pdev);
7566 iounmap(h->vaddr);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007567 iounmap(h->transtable);
7568 iounmap(h->cfgtable);
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007569 hpsa_free_device_info(h);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007570 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007571 pci_free_consistent(h->pdev,
7572 h->nr_cmds * sizeof(struct CommandList),
7573 h->cmd_pool, h->cmd_pool_dhandle);
7574 pci_free_consistent(h->pdev,
7575 h->nr_cmds * sizeof(struct ErrorInfo),
7576 h->errinfo_pool, h->errinfo_pool_dhandle);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007577 hpsa_free_reply_queues(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007578 kfree(h->cmd_pool_bits);
Don Brace303932f2010-02-04 08:42:40 -06007579 kfree(h->blockFetchTable);
Matt Gatese1f7de02014-02-18 13:55:17 -06007580 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007581 kfree(h->ioaccel2_blockFetchTable);
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007582 kfree(h->hba_inquiry_data);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05007583 pci_disable_device(pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007584 pci_release_regions(pdev);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007585 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007586 kfree(h);
7587}
7588
7589static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
7590 __attribute__((unused)) pm_message_t state)
7591{
7592 return -ENOSYS;
7593}
7594
7595static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
7596{
7597 return -ENOSYS;
7598}
7599
7600static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007601 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007602 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007603 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007604 .id_table = hpsa_pci_device_id, /* id_table */
7605 .shutdown = hpsa_shutdown,
7606 .suspend = hpsa_suspend,
7607 .resume = hpsa_resume,
7608};
7609
Don Brace303932f2010-02-04 08:42:40 -06007610/* Fill in bucket_map[], given nsgs (the max number of
7611 * scatter gather elements supported) and bucket[],
7612 * which is an array of 8 integers. The bucket[] array
7613 * contains 8 different DMA transfer sizes (in 16
7614 * byte increments) which the controller uses to fetch
7615 * commands. This function fills in bucket_map[], which
7616 * maps a given number of scatter gather elements to one of
7617 * the 8 DMA transfer sizes. The point of it is to allow the
7618 * controller to only do as much DMA as needed to fetch the
7619 * command, with the DMA transfer size encoded in the lower
7620 * bits of the command address.
7621 */
7622static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06007623 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06007624{
7625 int i, j, b, size;
7626
Don Brace303932f2010-02-04 08:42:40 -06007627 /* Note, bucket_map must have nsgs+1 entries. */
7628 for (i = 0; i <= nsgs; i++) {
7629 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06007630 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06007631 b = num_buckets; /* Assume the biggest bucket */
7632 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06007633 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06007634 if (bucket[j] >= size) {
7635 b = j;
7636 break;
7637 }
7638 }
7639 /* for a command with i SG entries, use bucket b. */
7640 bucket_map[i] = b;
7641 }
7642}
7643
Robert Elliottc706a792015-01-23 16:45:01 -06007644/* return -ENODEV or other reason on error, 0 on success */
7645static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06007646{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007647 int i;
7648 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06007649 unsigned long transMethod = CFGTBL_Trans_Performant |
7650 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007651 CFGTBL_Trans_enable_directed_msix |
7652 (trans_support & (CFGTBL_Trans_io_accel1 |
7653 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06007654 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007655
7656 /* This is a bit complicated. There are 8 registers on
7657 * the controller which we write to to tell it 8 different
7658 * sizes of commands which there may be. It's a way of
7659 * reducing the DMA done to fetch each command. Encoded into
7660 * each command's tag are 3 bits which communicate to the controller
7661 * which of the eight sizes that command fits within. The size of
7662 * each command depends on how many scatter gather entries there are.
7663 * Each SG entry requires 16 bytes. The eight registers are programmed
7664 * with the number of 16-byte blocks a command of that size requires.
7665 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007666 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007667 * blocks. Note, this only extends to the SG entries contained
7668 * within the command block, and does not extend to chained blocks
7669 * of SG elements. bft[] contains the eight values we write to
7670 * the registers. They are not evenly distributed, but have more
7671 * sizes for small commands, and fewer sizes for larger commands.
7672 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007673 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007674#define MIN_IOACCEL2_BFT_ENTRY 5
7675#define HPSA_IOACCEL2_HEADER_SZ 4
7676 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
7677 13, 14, 15, 16, 17, 18, 19,
7678 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
7679 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
7680 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
7681 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
7682 16 * MIN_IOACCEL2_BFT_ENTRY);
7683 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007684 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06007685 /* 5 = 1 s/g entry or 4k
7686 * 6 = 2 s/g entry or 8k
7687 * 8 = 4 s/g entry or 16k
7688 * 10 = 6 s/g entry or 24k
7689 */
Don Brace303932f2010-02-04 08:42:40 -06007690
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05007691 /* If the controller supports either ioaccel method then
7692 * we can also use the RAID stack submit path that does not
7693 * perform the superfluous readl() after each command submission.
7694 */
7695 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
7696 access = SA5_performant_access_no_read;
7697
Don Brace303932f2010-02-04 08:42:40 -06007698 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007699 for (i = 0; i < h->nreply_queues; i++)
7700 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06007701
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007702 bft[7] = SG_ENTRIES_IN_CMD + 4;
7703 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06007704 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06007705 for (i = 0; i < 8; i++)
7706 writel(bft[i], &h->transtable->BlockFetch[i]);
7707
7708 /* size of controller ring buffer */
7709 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05007710 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06007711 writel(0, &h->transtable->RepQCtrAddrLow32);
7712 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05007713
7714 for (i = 0; i < h->nreply_queues; i++) {
7715 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007716 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05007717 &h->transtable->RepQAddr[i].lower);
7718 }
7719
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007720 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06007721 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
7722 /*
7723 * enable outbound interrupt coalescing in accelerator mode;
7724 */
7725 if (trans_support & CFGTBL_Trans_io_accel1) {
7726 access = SA5_ioaccel_mode1_access;
7727 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7728 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06007729 } else {
7730 if (trans_support & CFGTBL_Trans_io_accel2) {
7731 access = SA5_ioaccel_mode2_access;
7732 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7733 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
7734 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007735 }
Don Brace303932f2010-02-04 08:42:40 -06007736 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007737 if (hpsa_wait_for_mode_change_ack(h)) {
7738 dev_err(&h->pdev->dev,
7739 "performant mode problem - doorbell timeout\n");
7740 return -ENODEV;
7741 }
Don Brace303932f2010-02-04 08:42:40 -06007742 register_value = readl(&(h->cfgtable->TransportActive));
7743 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007744 dev_err(&h->pdev->dev,
7745 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06007746 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06007747 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007748 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06007749 h->access = access;
7750 h->transMethod = transMethod;
7751
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007752 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
7753 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06007754 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06007755
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007756 if (trans_support & CFGTBL_Trans_io_accel1) {
7757 /* Set up I/O accelerator mode */
7758 for (i = 0; i < h->nreply_queues; i++) {
7759 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
7760 h->reply_queue[i].current_entry =
7761 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
7762 }
7763 bft[7] = h->ioaccel_maxsg + 8;
7764 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
7765 h->ioaccel1_blockFetchTable);
7766
7767 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007768 for (i = 0; i < h->nreply_queues; i++)
7769 memset(h->reply_queue[i].head,
7770 (u8) IOACCEL_MODE1_REPLY_UNUSED,
7771 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007772
7773 /* set all the constant fields in the accelerator command
7774 * frames once at init time to save CPU cycles later.
7775 */
7776 for (i = 0; i < h->nr_cmds; i++) {
7777 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
7778
7779 cp->function = IOACCEL1_FUNCTION_SCSIIO;
7780 cp->err_info = (u32) (h->errinfo_pool_dhandle +
7781 (i * sizeof(struct ErrorInfo)));
7782 cp->err_info_len = sizeof(struct ErrorInfo);
7783 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06007784 cp->host_context_flags =
7785 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007786 cp->timeout_sec = 0;
7787 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007788 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06007789 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007790 cp->host_addr =
7791 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007792 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007793 }
7794 } else if (trans_support & CFGTBL_Trans_io_accel2) {
7795 u64 cfg_offset, cfg_base_addr_index;
7796 u32 bft2_offset, cfg_base_addr;
7797 int rc;
7798
7799 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7800 &cfg_base_addr_index, &cfg_offset);
7801 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
7802 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
7803 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
7804 4, h->ioaccel2_blockFetchTable);
7805 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
7806 BUILD_BUG_ON(offsetof(struct CfgTable,
7807 io_accel_request_size_offset) != 0xb8);
7808 h->ioaccel2_bft2_regs =
7809 remap_pci_mem(pci_resource_start(h->pdev,
7810 cfg_base_addr_index) +
7811 cfg_offset + bft2_offset,
7812 ARRAY_SIZE(bft2) *
7813 sizeof(*h->ioaccel2_bft2_regs));
7814 for (i = 0; i < ARRAY_SIZE(bft2); i++)
7815 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06007816 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007817 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007818 if (hpsa_wait_for_mode_change_ack(h)) {
7819 dev_err(&h->pdev->dev,
7820 "performant mode problem - enabling ioaccel mode\n");
7821 return -ENODEV;
7822 }
7823 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06007824}
7825
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007826/* Allocate ioaccel1 mode command blocks and block fetch table */
7827static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06007828{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007829 h->ioaccel_maxsg =
7830 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7831 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
7832 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
7833
Matt Gatese1f7de02014-02-18 13:55:17 -06007834 /* Command structures must be aligned on a 128-byte boundary
7835 * because the 7 lower bits of the address are used by the
7836 * hardware.
7837 */
Matt Gatese1f7de02014-02-18 13:55:17 -06007838 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
7839 IOACCEL1_COMMANDLIST_ALIGNMENT);
7840 h->ioaccel_cmd_pool =
7841 pci_alloc_consistent(h->pdev,
7842 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7843 &(h->ioaccel_cmd_pool_dhandle));
7844
7845 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007846 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06007847 sizeof(u32)), GFP_KERNEL);
7848
7849 if ((h->ioaccel_cmd_pool == NULL) ||
7850 (h->ioaccel1_blockFetchTable == NULL))
7851 goto clean_up;
7852
7853 memset(h->ioaccel_cmd_pool, 0,
7854 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
7855 return 0;
7856
7857clean_up:
7858 if (h->ioaccel_cmd_pool)
7859 pci_free_consistent(h->pdev,
7860 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7861 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
7862 kfree(h->ioaccel1_blockFetchTable);
7863 return 1;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007864}
7865
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007866/* Allocate ioaccel2 mode command blocks and block fetch table */
7867static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007868{
7869 /* Allocate ioaccel2 mode command blocks and block fetch table */
7870
7871 h->ioaccel_maxsg =
7872 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7873 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
7874 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
7875
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007876 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
7877 IOACCEL2_COMMANDLIST_ALIGNMENT);
7878 h->ioaccel2_cmd_pool =
7879 pci_alloc_consistent(h->pdev,
7880 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7881 &(h->ioaccel2_cmd_pool_dhandle));
7882
7883 h->ioaccel2_blockFetchTable =
7884 kmalloc(((h->ioaccel_maxsg + 1) *
7885 sizeof(u32)), GFP_KERNEL);
7886
7887 if ((h->ioaccel2_cmd_pool == NULL) ||
7888 (h->ioaccel2_blockFetchTable == NULL))
7889 goto clean_up;
7890
7891 memset(h->ioaccel2_cmd_pool, 0,
7892 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
7893 return 0;
7894
7895clean_up:
7896 if (h->ioaccel2_cmd_pool)
7897 pci_free_consistent(h->pdev,
7898 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7899 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
7900 kfree(h->ioaccel2_blockFetchTable);
7901 return 1;
7902}
7903
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007904static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007905{
7906 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06007907 unsigned long transMethod = CFGTBL_Trans_Performant |
7908 CFGTBL_Trans_use_short_tags;
Matt Gates254f7962012-05-01 11:43:06 -05007909 int i;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007910
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06007911 if (hpsa_simple_mode)
7912 return;
7913
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05007914 trans_support = readl(&(h->cfgtable->TransportSupport));
7915 if (!(trans_support & PERFORMANT_MODE))
7916 return;
7917
Matt Gatese1f7de02014-02-18 13:55:17 -06007918 /* Check for I/O accelerator mode support */
7919 if (trans_support & CFGTBL_Trans_io_accel1) {
7920 transMethod |= CFGTBL_Trans_io_accel1 |
7921 CFGTBL_Trans_enable_directed_msix;
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007922 if (hpsa_alloc_ioaccel1_cmd_and_bft(h))
Matt Gatese1f7de02014-02-18 13:55:17 -06007923 goto clean_up;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007924 } else {
7925 if (trans_support & CFGTBL_Trans_io_accel2) {
7926 transMethod |= CFGTBL_Trans_io_accel2 |
7927 CFGTBL_Trans_enable_directed_msix;
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007928 if (hpsa_alloc_ioaccel2_cmd_and_bft(h))
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007929 goto clean_up;
7930 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007931 }
7932
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007933 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007934 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007935 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007936 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007937
Matt Gates254f7962012-05-01 11:43:06 -05007938 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007939 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
7940 h->reply_queue_size,
7941 &(h->reply_queue[i].busaddr));
7942 if (!h->reply_queue[i].head)
7943 goto clean_up;
Matt Gates254f7962012-05-01 11:43:06 -05007944 h->reply_queue[i].size = h->max_commands;
7945 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
7946 h->reply_queue[i].current_entry = 0;
7947 }
7948
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007949 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007950 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007951 sizeof(u32)), GFP_KERNEL);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007952 if (!h->blockFetchTable)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007953 goto clean_up;
7954
Matt Gatese1f7de02014-02-18 13:55:17 -06007955 hpsa_enter_performant_mode(h, trans_support);
Don Brace303932f2010-02-04 08:42:40 -06007956 return;
7957
7958clean_up:
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007959 hpsa_free_reply_queues(h);
Don Brace303932f2010-02-04 08:42:40 -06007960 kfree(h->blockFetchTable);
7961}
7962
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007963static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007964{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007965 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
7966}
7967
7968static void hpsa_drain_accel_commands(struct ctlr_info *h)
7969{
7970 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06007971 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06007972 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007973
Don Bracef2405db2015-01-23 16:43:09 -06007974 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007975 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06007976 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007977 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007978 refcount = atomic_inc_return(&c->refcount);
7979 if (refcount > 1) /* Command is allocated */
7980 accel_cmds_out += is_accelerated_cmd(c);
7981 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06007982 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007983 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06007984 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007985 msleep(100);
7986 } while (1);
7987}
7988
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007989/*
7990 * This is it. Register the PCI driver information for the cards we control
7991 * the OS will call our registered routines when it finds one of our cards.
7992 */
7993static int __init hpsa_init(void)
7994{
Mike Miller31468402010-02-25 14:03:12 -06007995 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007996}
7997
7998static void __exit hpsa_cleanup(void)
7999{
8000 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008001}
8002
Matt Gatese1f7de02014-02-18 13:55:17 -06008003static void __attribute__((unused)) verify_offsets(void)
8004{
8005#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06008006 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
8007
8008 VERIFY_OFFSET(structure_size, 0);
8009 VERIFY_OFFSET(volume_blk_size, 4);
8010 VERIFY_OFFSET(volume_blk_cnt, 8);
8011 VERIFY_OFFSET(phys_blk_shift, 16);
8012 VERIFY_OFFSET(parity_rotation_shift, 17);
8013 VERIFY_OFFSET(strip_size, 18);
8014 VERIFY_OFFSET(disk_starting_blk, 20);
8015 VERIFY_OFFSET(disk_blk_cnt, 28);
8016 VERIFY_OFFSET(data_disks_per_row, 36);
8017 VERIFY_OFFSET(metadata_disks_per_row, 38);
8018 VERIFY_OFFSET(row_cnt, 40);
8019 VERIFY_OFFSET(layout_map_count, 42);
8020 VERIFY_OFFSET(flags, 44);
8021 VERIFY_OFFSET(dekindex, 46);
8022 /* VERIFY_OFFSET(reserved, 48 */
8023 VERIFY_OFFSET(data, 64);
8024
8025#undef VERIFY_OFFSET
8026
8027#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06008028 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
8029
8030 VERIFY_OFFSET(IU_type, 0);
8031 VERIFY_OFFSET(direction, 1);
8032 VERIFY_OFFSET(reply_queue, 2);
8033 /* VERIFY_OFFSET(reserved1, 3); */
8034 VERIFY_OFFSET(scsi_nexus, 4);
8035 VERIFY_OFFSET(Tag, 8);
8036 VERIFY_OFFSET(cdb, 16);
8037 VERIFY_OFFSET(cciss_lun, 32);
8038 VERIFY_OFFSET(data_len, 40);
8039 VERIFY_OFFSET(cmd_priority_task_attr, 44);
8040 VERIFY_OFFSET(sg_count, 45);
8041 /* VERIFY_OFFSET(reserved3 */
8042 VERIFY_OFFSET(err_ptr, 48);
8043 VERIFY_OFFSET(err_len, 56);
8044 /* VERIFY_OFFSET(reserved4 */
8045 VERIFY_OFFSET(sg, 64);
8046
8047#undef VERIFY_OFFSET
8048
8049#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06008050 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
8051
8052 VERIFY_OFFSET(dev_handle, 0x00);
8053 VERIFY_OFFSET(reserved1, 0x02);
8054 VERIFY_OFFSET(function, 0x03);
8055 VERIFY_OFFSET(reserved2, 0x04);
8056 VERIFY_OFFSET(err_info, 0x0C);
8057 VERIFY_OFFSET(reserved3, 0x10);
8058 VERIFY_OFFSET(err_info_len, 0x12);
8059 VERIFY_OFFSET(reserved4, 0x13);
8060 VERIFY_OFFSET(sgl_offset, 0x14);
8061 VERIFY_OFFSET(reserved5, 0x15);
8062 VERIFY_OFFSET(transfer_len, 0x1C);
8063 VERIFY_OFFSET(reserved6, 0x20);
8064 VERIFY_OFFSET(io_flags, 0x24);
8065 VERIFY_OFFSET(reserved7, 0x26);
8066 VERIFY_OFFSET(LUN, 0x34);
8067 VERIFY_OFFSET(control, 0x3C);
8068 VERIFY_OFFSET(CDB, 0x40);
8069 VERIFY_OFFSET(reserved8, 0x50);
8070 VERIFY_OFFSET(host_context_flags, 0x60);
8071 VERIFY_OFFSET(timeout_sec, 0x62);
8072 VERIFY_OFFSET(ReplyQueue, 0x64);
8073 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008074 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06008075 VERIFY_OFFSET(host_addr, 0x70);
8076 VERIFY_OFFSET(CISS_LUN, 0x78);
8077 VERIFY_OFFSET(SG, 0x78 + 8);
8078#undef VERIFY_OFFSET
8079}
8080
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008081module_init(hpsa_init);
8082module_exit(hpsa_cleanup);