blob: 82b277be6bf1a6fa50339fabb3386c55e735d414 [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
Don Brace94c7bc32016-02-23 15:16:46 -06003 * Copyright 2016 Microsemi Corporation
Don Brace1358f6d2015-07-18 11:12:38 -05004 * Copyright 2014-2015 PMC-Sierra, Inc.
5 * Copyright 2000,2009-2015 Hewlett-Packard Development Company, L.P.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
14 * NON INFRINGEMENT. See the GNU General Public License for more details.
15 *
Don Brace94c7bc32016-02-23 15:16:46 -060016 * Questions/Comments/Bugfixes to esc.storagedev@microsemi.com
Stephen M. Cameronedd16362009-12-08 14:09:11 -080017 *
18 */
19
20#include <linux/module.h>
21#include <linux/interrupt.h>
22#include <linux/types.h>
23#include <linux/pci.h>
Matthew Garrette5a44df2011-11-11 11:14:23 -050024#include <linux/pci-aspm.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080025#include <linux/kernel.h>
26#include <linux/slab.h>
27#include <linux/delay.h>
28#include <linux/fs.h>
29#include <linux/timer.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080030#include <linux/init.h>
31#include <linux/spinlock.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080032#include <linux/compat.h>
33#include <linux/blktrace_api.h>
34#include <linux/uaccess.h>
35#include <linux/io.h>
36#include <linux/dma-mapping.h>
37#include <linux/completion.h>
38#include <linux/moduleparam.h>
39#include <scsi/scsi.h>
40#include <scsi/scsi_cmnd.h>
41#include <scsi/scsi_device.h>
42#include <scsi/scsi_host.h>
Stephen M. Cameron667e23d2010-02-25 14:02:51 -060043#include <scsi/scsi_tcq.h>
Stephen Cameron9437ac42015-04-23 09:32:16 -050044#include <scsi/scsi_eh.h>
Kevin Barnettd04e62b2015-11-04 15:52:34 -060045#include <scsi/scsi_transport_sas.h>
Webb Scales73153fe2015-04-23 09:35:04 -050046#include <scsi/scsi_dbg.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
Don Braceec2c3aa2015-11-04 15:52:40 -060059/*
60 * HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.'
61 * with an optional trailing '-' followed by a byte value (0-255).
62 */
Don Braceff54aee2016-04-27 17:14:26 -050063#define HPSA_DRIVER_VERSION "3.4.16-0"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080064#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -060065#define HPSA "hpsa"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080066
Robert Elliott007e7aa2015-01-23 16:44:56 -060067/* How long to wait for CISS doorbell communication */
68#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */
69#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */
70#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */
71#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */
Stephen M. Cameronedd16362009-12-08 14:09:11 -080072#define MAX_IOCTL_CONFIG_WAIT 1000
73
74/*define how many times we will try a command because of bus resets */
75#define MAX_CMD_RETRIES 3
76
77/* Embedded module documentation macros - see modules.h */
78MODULE_AUTHOR("Hewlett-Packard Company");
79MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
80 HPSA_DRIVER_VERSION);
81MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
82MODULE_VERSION(HPSA_DRIVER_VERSION);
83MODULE_LICENSE("GPL");
84
85static int hpsa_allow_any;
86module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
87MODULE_PARM_DESC(hpsa_allow_any,
88 "Allow hpsa driver to access unknown HP Smart Array hardware");
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060089static int hpsa_simple_mode;
90module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
91MODULE_PARM_DESC(hpsa_simple_mode,
92 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080093
94/* define the PCI info for the cards we can control */
95static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080096 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
97 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
98 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
99 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -0500101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -0600103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -0600104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Mike Millerfe0c9612012-09-20 16:05:18 -0500111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Mike Millerfe0c9612012-09-20 16:05:18 -0500115 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926},
116 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928},
Mike Miller97b9f532013-09-04 15:05:55 -0500117 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929},
118 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD},
119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE},
120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF},
121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0},
122 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1},
123 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2},
124 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3},
125 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4},
126 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500127 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6},
Mike Miller97b9f532013-09-04 15:05:55 -0500128 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
129 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
130 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500131 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA},
132 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB},
133 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC},
134 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD},
135 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE},
Don Bracefdfa4b62015-04-23 09:35:27 -0500136 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0580},
Don Bracecbb47dc2015-07-18 11:12:54 -0500137 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0581},
138 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0582},
139 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0583},
140 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0584},
141 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0585},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600142 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
143 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
144 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
145 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
146 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
Mike Miller7c03b872010-12-01 11:16:07 -0600147 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Stephen M. Cameron6798cc02010-06-16 13:51:20 -0500148 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800149 {0,}
150};
151
152MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
153
154/* board_id = Subsystem Device ID & Vendor ID
155 * product = Marketing Name for the board
156 * access = Address of the struct of function pointers
157 */
158static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800159 {0x3241103C, "Smart Array P212", &SA5_access},
160 {0x3243103C, "Smart Array P410", &SA5_access},
161 {0x3245103C, "Smart Array P410i", &SA5_access},
162 {0x3247103C, "Smart Array P411", &SA5_access},
163 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500164 {0x324A103C, "Smart Array P712m", &SA5_access},
165 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600166 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500167 {0x3350103C, "Smart Array P222", &SA5_access},
168 {0x3351103C, "Smart Array P420", &SA5_access},
169 {0x3352103C, "Smart Array P421", &SA5_access},
170 {0x3353103C, "Smart Array P822", &SA5_access},
171 {0x3354103C, "Smart Array P420i", &SA5_access},
172 {0x3355103C, "Smart Array P220i", &SA5_access},
173 {0x3356103C, "Smart Array P721m", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500174 {0x1921103C, "Smart Array P830i", &SA5_access},
175 {0x1922103C, "Smart Array P430", &SA5_access},
176 {0x1923103C, "Smart Array P431", &SA5_access},
177 {0x1924103C, "Smart Array P830", &SA5_access},
178 {0x1926103C, "Smart Array P731m", &SA5_access},
179 {0x1928103C, "Smart Array P230i", &SA5_access},
180 {0x1929103C, "Smart Array P530", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600181 {0x21BD103C, "Smart Array P244br", &SA5_access},
182 {0x21BE103C, "Smart Array P741m", &SA5_access},
183 {0x21BF103C, "Smart HBA H240ar", &SA5_access},
184 {0x21C0103C, "Smart Array P440ar", &SA5_access},
Don Bracec8ae0ab2015-01-23 16:45:12 -0600185 {0x21C1103C, "Smart Array P840ar", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600186 {0x21C2103C, "Smart Array P440", &SA5_access},
187 {0x21C3103C, "Smart Array P441", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500188 {0x21C4103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600189 {0x21C5103C, "Smart Array P841", &SA5_access},
190 {0x21C6103C, "Smart HBA H244br", &SA5_access},
191 {0x21C7103C, "Smart HBA H240", &SA5_access},
192 {0x21C8103C, "Smart HBA H241", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500193 {0x21C9103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600194 {0x21CA103C, "Smart Array P246br", &SA5_access},
195 {0x21CB103C, "Smart Array P840", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500196 {0x21CC103C, "Smart Array", &SA5_access},
197 {0x21CD103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600198 {0x21CE103C, "Smart HBA", &SA5_access},
Don Bracefdfa4b62015-04-23 09:35:27 -0500199 {0x05809005, "SmartHBA-SA", &SA5_access},
Don Bracecbb47dc2015-07-18 11:12:54 -0500200 {0x05819005, "SmartHBA-SA 8i", &SA5_access},
201 {0x05829005, "SmartHBA-SA 8i8e", &SA5_access},
202 {0x05839005, "SmartHBA-SA 8e", &SA5_access},
203 {0x05849005, "SmartHBA-SA 16i", &SA5_access},
204 {0x05859005, "SmartHBA-SA 4i4e", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600205 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
206 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
207 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
208 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
209 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800210 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
211};
212
Kevin Barnettd04e62b2015-11-04 15:52:34 -0600213static struct scsi_transport_template *hpsa_sas_transport_template;
214static int hpsa_add_sas_host(struct ctlr_info *h);
215static void hpsa_delete_sas_host(struct ctlr_info *h);
216static int hpsa_add_sas_device(struct hpsa_sas_node *hpsa_sas_node,
217 struct hpsa_scsi_dev_t *device);
218static void hpsa_remove_sas_device(struct hpsa_scsi_dev_t *device);
219static struct hpsa_scsi_dev_t
220 *hpsa_find_device_by_sas_rphy(struct ctlr_info *h,
221 struct sas_rphy *rphy);
222
Webb Scalesa58e7e52015-04-23 09:34:16 -0500223#define SCSI_CMD_BUSY ((struct scsi_cmnd *)&hpsa_cmd_busy)
224static const struct scsi_cmnd hpsa_cmd_busy;
225#define SCSI_CMD_IDLE ((struct scsi_cmnd *)&hpsa_cmd_idle)
226static const struct scsi_cmnd hpsa_cmd_idle;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800227static int number_of_controllers;
228
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500229static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
230static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Don Brace42a91642014-11-14 17:26:27 -0600231static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800232
233#ifdef CONFIG_COMPAT
Don Brace42a91642014-11-14 17:26:27 -0600234static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
235 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800236#endif
237
238static void cmd_free(struct ctlr_info *h, struct CommandList *c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800239static struct CommandList *cmd_alloc(struct ctlr_info *h);
Webb Scales73153fe2015-04-23 09:35:04 -0500240static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c);
241static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
242 struct scsi_cmnd *scmd);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600243static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600244 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800245 int cmd_type);
Robert Elliott2c143342015-01-23 16:42:48 -0600246static void hpsa_free_cmd_pool(struct ctlr_info *h);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600247#define VPD_PAGE (1 << 8)
Don Braceb48d9802015-11-04 15:50:13 -0600248#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800249
Jeff Garzikf2812332010-11-16 02:10:29 -0500250static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a84712010-02-04 08:43:16 -0600251static void hpsa_scan_start(struct Scsi_Host *);
252static int hpsa_scan_finished(struct Scsi_Host *sh,
253 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600254static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800255
256static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500257static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800258static int hpsa_slave_alloc(struct scsi_device *sdev);
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500259static int hpsa_slave_configure(struct scsi_device *sdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800260static void hpsa_slave_destroy(struct scsi_device *sdev);
261
Don Brace8aa60682015-11-04 15:50:01 -0600262static void hpsa_update_scsi_devices(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800263static int check_for_unit_attention(struct ctlr_info *h,
264 struct CommandList *c);
265static void check_ioctl_unit_attention(struct ctlr_info *h,
266 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600267/* performant mode helper functions */
268static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600269 int nsgs, int min_blocks, u32 *bucket_map);
Robert Elliott105a3db2015-04-23 09:33:48 -0500270static void hpsa_free_performant_mode(struct ctlr_info *h);
271static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500272static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800273static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
274 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
275 u64 *cfg_offset);
276static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
277 unsigned long *memory_bar);
278static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
279static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
280 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500281static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600282static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600283#define BOARD_NOT_READY 0
284#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600285static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600286static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600287static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
288 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600289 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600290static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500291static u32 lockup_detected(struct ctlr_info *h);
292static int detect_controller_lockup(struct ctlr_info *h);
Scott Teelc2adae42015-11-04 15:52:16 -0600293static void hpsa_disable_rld_caching(struct ctlr_info *h);
Kevin Barnettd04e62b2015-11-04 15:52:34 -0600294static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
295 struct ReportExtendedLUNdata *buf, int bufsize);
Scott Teel83832782016-09-09 16:30:29 -0500296static bool hpsa_vpd_page_supported(struct ctlr_info *h,
297 unsigned char scsi3addr[], u8 page);
Scott Teel34592252015-11-04 15:52:09 -0600298static int hpsa_luns_changed(struct ctlr_info *h);
Don Braceba74fdc2016-04-27 17:14:17 -0500299static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
300 struct hpsa_scsi_dev_t *dev,
301 unsigned char *scsi3addr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800302
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800303static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
304{
305 unsigned long *priv = shost_priv(sdev->host);
306 return (struct ctlr_info *) *priv;
307}
308
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600309static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
310{
311 unsigned long *priv = shost_priv(sh);
312 return (struct ctlr_info *) *priv;
313}
314
Webb Scalesa58e7e52015-04-23 09:34:16 -0500315static inline bool hpsa_is_cmd_idle(struct CommandList *c)
316{
317 return c->scsi_cmd == SCSI_CMD_IDLE;
318}
319
Webb Scalesd604f532015-04-23 09:35:22 -0500320static inline bool hpsa_is_pending_event(struct CommandList *c)
321{
322 return c->abort_pending || c->reset_pending;
323}
324
Stephen Cameron9437ac42015-04-23 09:32:16 -0500325/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
326static void decode_sense_data(const u8 *sense_data, int sense_data_len,
327 u8 *sense_key, u8 *asc, u8 *ascq)
328{
329 struct scsi_sense_hdr sshdr;
330 bool rc;
331
332 *sense_key = -1;
333 *asc = -1;
334 *ascq = -1;
335
336 if (sense_data_len < 1)
337 return;
338
339 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
340 if (rc) {
341 *sense_key = sshdr.sense_key;
342 *asc = sshdr.asc;
343 *ascq = sshdr.ascq;
344 }
345}
346
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800347static int check_for_unit_attention(struct ctlr_info *h,
348 struct CommandList *c)
349{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500350 u8 sense_key, asc, ascq;
351 int sense_len;
352
353 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
354 sense_len = sizeof(c->err_info->SenseInfo);
355 else
356 sense_len = c->err_info->SenseLen;
357
358 decode_sense_data(c->err_info->SenseInfo, sense_len,
359 &sense_key, &asc, &ascq);
Don Brace81c27552015-07-18 11:12:28 -0500360 if (sense_key != UNIT_ATTENTION || asc == 0xff)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800361 return 0;
362
Stephen Cameron9437ac42015-04-23 09:32:16 -0500363 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800364 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500365 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500366 "%s: a state change detected, command retried\n",
367 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800368 break;
369 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600370 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500371 "%s: LUN failure detected\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800372 break;
373 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600374 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500375 "%s: report LUN data changed\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800376 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600377 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
378 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800379 */
380 break;
381 case POWER_OR_RESET:
Robert Elliott2946e822015-04-23 09:35:09 -0500382 dev_warn(&h->pdev->dev,
383 "%s: a power on or device reset detected\n",
384 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800385 break;
386 case UNIT_ATTENTION_CLEARED:
Robert Elliott2946e822015-04-23 09:35:09 -0500387 dev_warn(&h->pdev->dev,
388 "%s: unit attention cleared by another initiator\n",
389 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800390 break;
391 default:
Robert Elliott2946e822015-04-23 09:35:09 -0500392 dev_warn(&h->pdev->dev,
393 "%s: unknown unit attention detected\n",
394 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800395 break;
396 }
397 return 1;
398}
399
Matt Bondurant852af202012-05-01 11:42:35 -0500400static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
401{
402 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
403 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
404 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
405 return 0;
406 dev_warn(&h->pdev->dev, HPSA "device busy");
407 return 1;
408}
409
Stephen Camerone985c582015-04-23 09:32:22 -0500410static u32 lockup_detected(struct ctlr_info *h);
411static ssize_t host_show_lockup_detected(struct device *dev,
412 struct device_attribute *attr, char *buf)
413{
414 int ld;
415 struct ctlr_info *h;
416 struct Scsi_Host *shost = class_to_shost(dev);
417
418 h = shost_to_hba(shost);
419 ld = lockup_detected(h);
420
421 return sprintf(buf, "ld=%d\n", ld);
422}
423
Scott Teelda0697b2014-02-18 13:57:00 -0600424static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
425 struct device_attribute *attr,
426 const char *buf, size_t count)
427{
428 int status, len;
429 struct ctlr_info *h;
430 struct Scsi_Host *shost = class_to_shost(dev);
431 char tmpbuf[10];
432
433 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
434 return -EACCES;
435 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
436 strncpy(tmpbuf, buf, len);
437 tmpbuf[len] = '\0';
438 if (sscanf(tmpbuf, "%d", &status) != 1)
439 return -EINVAL;
440 h = shost_to_hba(shost);
441 h->acciopath_status = !!status;
442 dev_warn(&h->pdev->dev,
443 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
444 h->acciopath_status ? "enabled" : "disabled");
445 return count;
446}
447
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600448static ssize_t host_store_raid_offload_debug(struct device *dev,
449 struct device_attribute *attr,
450 const char *buf, size_t count)
451{
452 int debug_level, len;
453 struct ctlr_info *h;
454 struct Scsi_Host *shost = class_to_shost(dev);
455 char tmpbuf[10];
456
457 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
458 return -EACCES;
459 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
460 strncpy(tmpbuf, buf, len);
461 tmpbuf[len] = '\0';
462 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
463 return -EINVAL;
464 if (debug_level < 0)
465 debug_level = 0;
466 h = shost_to_hba(shost);
467 h->raid_offload_debug = debug_level;
468 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
469 h->raid_offload_debug);
470 return count;
471}
472
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800473static ssize_t host_store_rescan(struct device *dev,
474 struct device_attribute *attr,
475 const char *buf, size_t count)
476{
477 struct ctlr_info *h;
478 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600479 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600480 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800481 return count;
482}
483
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500484static ssize_t host_show_firmware_revision(struct device *dev,
485 struct device_attribute *attr, char *buf)
486{
487 struct ctlr_info *h;
488 struct Scsi_Host *shost = class_to_shost(dev);
489 unsigned char *fwrev;
490
491 h = shost_to_hba(shost);
492 if (!h->hba_inquiry_data)
493 return 0;
494 fwrev = &h->hba_inquiry_data[32];
495 return snprintf(buf, 20, "%c%c%c%c\n",
496 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
497}
498
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600499static ssize_t host_show_commands_outstanding(struct device *dev,
500 struct device_attribute *attr, char *buf)
501{
502 struct Scsi_Host *shost = class_to_shost(dev);
503 struct ctlr_info *h = shost_to_hba(shost);
504
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600505 return snprintf(buf, 20, "%d\n",
506 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600507}
508
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600509static ssize_t host_show_transport_mode(struct device *dev,
510 struct device_attribute *attr, char *buf)
511{
512 struct ctlr_info *h;
513 struct Scsi_Host *shost = class_to_shost(dev);
514
515 h = shost_to_hba(shost);
516 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600517 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600518 "performant" : "simple");
519}
520
Scott Teelda0697b2014-02-18 13:57:00 -0600521static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
522 struct device_attribute *attr, char *buf)
523{
524 struct ctlr_info *h;
525 struct Scsi_Host *shost = class_to_shost(dev);
526
527 h = shost_to_hba(shost);
528 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
529 (h->acciopath_status == 1) ? "enabled" : "disabled");
530}
531
Stephen M. Cameron46380782011-05-03 15:00:01 -0500532/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600533static u32 unresettable_controller[] = {
534 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500535 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600536 0x3223103C, /* Smart Array P800 */
537 0x3234103C, /* Smart Array P400 */
538 0x3235103C, /* Smart Array P400i */
539 0x3211103C, /* Smart Array E200i */
540 0x3212103C, /* Smart Array E200 */
541 0x3213103C, /* Smart Array E200i */
542 0x3214103C, /* Smart Array E200i */
543 0x3215103C, /* Smart Array E200i */
544 0x3237103C, /* Smart Array E500 */
545 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100546 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600547 0x409C0E11, /* Smart Array 6400 */
548 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100549 0x40700E11, /* Smart Array 5300 */
550 0x40820E11, /* Smart Array 532 */
551 0x40830E11, /* Smart Array 5312 */
552 0x409A0E11, /* Smart Array 641 */
553 0x409B0E11, /* Smart Array 642 */
554 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600555};
556
Stephen M. Cameron46380782011-05-03 15:00:01 -0500557/* List of controllers which cannot even be soft reset */
558static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100559 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100560 0x40700E11, /* Smart Array 5300 */
561 0x40820E11, /* Smart Array 532 */
562 0x40830E11, /* Smart Array 5312 */
563 0x409A0E11, /* Smart Array 641 */
564 0x409B0E11, /* Smart Array 642 */
565 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500566 /* Exclude 640x boards. These are two pci devices in one slot
567 * which share a battery backed cache module. One controls the
568 * cache, the other accesses the cache through the one that controls
569 * it. If we reset the one controlling the cache, the other will
570 * likely not be happy. Just forbid resetting this conjoined mess.
571 * The 640x isn't really supported by hpsa anyway.
572 */
573 0x409C0E11, /* Smart Array 6400 */
574 0x409D0E11, /* Smart Array 6400 EM */
575};
576
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500577static u32 needs_abort_tags_swizzled[] = {
578 0x323D103C, /* Smart Array P700m */
579 0x324a103C, /* Smart Array P712m */
580 0x324b103C, /* SmartArray P711m */
581};
582
583static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600584{
585 int i;
586
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500587 for (i = 0; i < nelems; i++)
588 if (a[i] == board_id)
589 return 1;
590 return 0;
591}
592
593static int ctlr_is_hard_resettable(u32 board_id)
594{
595 return !board_id_in_array(unresettable_controller,
596 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600597}
598
Stephen M. Cameron46380782011-05-03 15:00:01 -0500599static int ctlr_is_soft_resettable(u32 board_id)
600{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500601 return !board_id_in_array(soft_unresettable_controller,
602 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500603}
604
605static int ctlr_is_resettable(u32 board_id)
606{
607 return ctlr_is_hard_resettable(board_id) ||
608 ctlr_is_soft_resettable(board_id);
609}
610
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500611static int ctlr_needs_abort_tags_swizzled(u32 board_id)
612{
613 return board_id_in_array(needs_abort_tags_swizzled,
614 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
615}
616
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600617static ssize_t host_show_resettable(struct device *dev,
618 struct device_attribute *attr, char *buf)
619{
620 struct ctlr_info *h;
621 struct Scsi_Host *shost = class_to_shost(dev);
622
623 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500624 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600625}
626
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800627static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
628{
629 return (scsi3addr[3] & 0xC0) == 0x40;
630}
631
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600632static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
Don Brace7c59a0d2015-11-04 15:52:22 -0600633 "1(+0)ADM", "UNKNOWN", "PHYS DRV"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800634};
Scott Teel6b80b182014-02-18 13:56:55 -0600635#define HPSA_RAID_0 0
636#define HPSA_RAID_4 1
637#define HPSA_RAID_1 2 /* also used for RAID 10 */
638#define HPSA_RAID_5 3 /* also used for RAID 50 */
639#define HPSA_RAID_51 4
640#define HPSA_RAID_6 5 /* also used for RAID 60 */
641#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Don Brace7c59a0d2015-11-04 15:52:22 -0600642#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 2)
643#define PHYSICAL_DRIVE (ARRAY_SIZE(raid_label) - 1)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800644
Kevin Barnettf3f01732015-11-04 15:51:33 -0600645static inline bool is_logical_device(struct hpsa_scsi_dev_t *device)
646{
647 return !device->physical_device;
648}
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800649
650static ssize_t raid_level_show(struct device *dev,
651 struct device_attribute *attr, char *buf)
652{
653 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600654 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800655 struct ctlr_info *h;
656 struct scsi_device *sdev;
657 struct hpsa_scsi_dev_t *hdev;
658 unsigned long flags;
659
660 sdev = to_scsi_device(dev);
661 h = sdev_to_hba(sdev);
662 spin_lock_irqsave(&h->lock, flags);
663 hdev = sdev->hostdata;
664 if (!hdev) {
665 spin_unlock_irqrestore(&h->lock, flags);
666 return -ENODEV;
667 }
668
669 /* Is this even a logical drive? */
Kevin Barnettf3f01732015-11-04 15:51:33 -0600670 if (!is_logical_device(hdev)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800671 spin_unlock_irqrestore(&h->lock, flags);
672 l = snprintf(buf, PAGE_SIZE, "N/A\n");
673 return l;
674 }
675
676 rlevel = hdev->raid_level;
677 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600678 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800679 rlevel = RAID_UNKNOWN;
680 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
681 return l;
682}
683
684static ssize_t lunid_show(struct device *dev,
685 struct device_attribute *attr, char *buf)
686{
687 struct ctlr_info *h;
688 struct scsi_device *sdev;
689 struct hpsa_scsi_dev_t *hdev;
690 unsigned long flags;
691 unsigned char lunid[8];
692
693 sdev = to_scsi_device(dev);
694 h = sdev_to_hba(sdev);
695 spin_lock_irqsave(&h->lock, flags);
696 hdev = sdev->hostdata;
697 if (!hdev) {
698 spin_unlock_irqrestore(&h->lock, flags);
699 return -ENODEV;
700 }
701 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
702 spin_unlock_irqrestore(&h->lock, flags);
703 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
704 lunid[0], lunid[1], lunid[2], lunid[3],
705 lunid[4], lunid[5], lunid[6], lunid[7]);
706}
707
708static ssize_t unique_id_show(struct device *dev,
709 struct device_attribute *attr, char *buf)
710{
711 struct ctlr_info *h;
712 struct scsi_device *sdev;
713 struct hpsa_scsi_dev_t *hdev;
714 unsigned long flags;
715 unsigned char sn[16];
716
717 sdev = to_scsi_device(dev);
718 h = sdev_to_hba(sdev);
719 spin_lock_irqsave(&h->lock, flags);
720 hdev = sdev->hostdata;
721 if (!hdev) {
722 spin_unlock_irqrestore(&h->lock, flags);
723 return -ENODEV;
724 }
725 memcpy(sn, hdev->device_id, sizeof(sn));
726 spin_unlock_irqrestore(&h->lock, flags);
727 return snprintf(buf, 16 * 2 + 2,
728 "%02X%02X%02X%02X%02X%02X%02X%02X"
729 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
730 sn[0], sn[1], sn[2], sn[3],
731 sn[4], sn[5], sn[6], sn[7],
732 sn[8], sn[9], sn[10], sn[11],
733 sn[12], sn[13], sn[14], sn[15]);
734}
735
Joseph T Handzikded1be42016-04-27 17:13:33 -0500736static ssize_t sas_address_show(struct device *dev,
737 struct device_attribute *attr, char *buf)
738{
739 struct ctlr_info *h;
740 struct scsi_device *sdev;
741 struct hpsa_scsi_dev_t *hdev;
742 unsigned long flags;
743 u64 sas_address;
744
745 sdev = to_scsi_device(dev);
746 h = sdev_to_hba(sdev);
747 spin_lock_irqsave(&h->lock, flags);
748 hdev = sdev->hostdata;
749 if (!hdev || is_logical_device(hdev) || !hdev->expose_device) {
750 spin_unlock_irqrestore(&h->lock, flags);
751 return -ENODEV;
752 }
753 sas_address = hdev->sas_address;
754 spin_unlock_irqrestore(&h->lock, flags);
755
756 return snprintf(buf, PAGE_SIZE, "0x%016llx\n", sas_address);
757}
758
Scott Teelc1988682014-02-18 13:55:54 -0600759static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
760 struct device_attribute *attr, char *buf)
761{
762 struct ctlr_info *h;
763 struct scsi_device *sdev;
764 struct hpsa_scsi_dev_t *hdev;
765 unsigned long flags;
766 int offload_enabled;
767
768 sdev = to_scsi_device(dev);
769 h = sdev_to_hba(sdev);
770 spin_lock_irqsave(&h->lock, flags);
771 hdev = sdev->hostdata;
772 if (!hdev) {
773 spin_unlock_irqrestore(&h->lock, flags);
774 return -ENODEV;
775 }
776 offload_enabled = hdev->offload_enabled;
777 spin_unlock_irqrestore(&h->lock, flags);
778 return snprintf(buf, 20, "%d\n", offload_enabled);
779}
780
Joe Handzik8270b862015-07-18 11:12:43 -0500781#define MAX_PATHS 8
Joe Handzik8270b862015-07-18 11:12:43 -0500782static ssize_t path_info_show(struct device *dev,
783 struct device_attribute *attr, char *buf)
784{
785 struct ctlr_info *h;
786 struct scsi_device *sdev;
787 struct hpsa_scsi_dev_t *hdev;
788 unsigned long flags;
789 int i;
790 int output_len = 0;
791 u8 box;
792 u8 bay;
793 u8 path_map_index = 0;
794 char *active;
795 unsigned char phys_connector[2];
Joe Handzik8270b862015-07-18 11:12:43 -0500796
Joe Handzik8270b862015-07-18 11:12:43 -0500797 sdev = to_scsi_device(dev);
798 h = sdev_to_hba(sdev);
799 spin_lock_irqsave(&h->devlock, flags);
800 hdev = sdev->hostdata;
801 if (!hdev) {
802 spin_unlock_irqrestore(&h->devlock, flags);
803 return -ENODEV;
804 }
805
806 bay = hdev->bay;
807 for (i = 0; i < MAX_PATHS; i++) {
808 path_map_index = 1<<i;
809 if (i == hdev->active_path_index)
810 active = "Active";
811 else if (hdev->path_map & path_map_index)
812 active = "Inactive";
813 else
814 continue;
815
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600816 output_len += scnprintf(buf + output_len,
817 PAGE_SIZE - output_len,
818 "[%d:%d:%d:%d] %20.20s ",
Joe Handzik8270b862015-07-18 11:12:43 -0500819 h->scsi_host->host_no,
820 hdev->bus, hdev->target, hdev->lun,
821 scsi_device_type(hdev->devtype));
822
Don Bracecca8f132015-12-22 10:36:48 -0600823 if (hdev->devtype == TYPE_RAID || is_logical_device(hdev)) {
Don Brace2708f292015-12-22 10:36:36 -0600824 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600825 PAGE_SIZE - output_len,
826 "%s\n", active);
Joe Handzik8270b862015-07-18 11:12:43 -0500827 continue;
828 }
829
830 box = hdev->box[i];
831 memcpy(&phys_connector, &hdev->phys_connector[i],
832 sizeof(phys_connector));
833 if (phys_connector[0] < '0')
834 phys_connector[0] = '0';
835 if (phys_connector[1] < '0')
836 phys_connector[1] = '0';
Don Bracecca8f132015-12-22 10:36:48 -0600837 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600838 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500839 "PORT: %.2s ",
840 phys_connector);
Don Braceaf15ed32016-02-23 15:16:15 -0600841 if ((hdev->devtype == TYPE_DISK || hdev->devtype == TYPE_ZBC) &&
842 hdev->expose_device) {
Joe Handzik8270b862015-07-18 11:12:43 -0500843 if (box == 0 || box == 0xFF) {
Don Brace2708f292015-12-22 10:36:36 -0600844 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600845 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500846 "BAY: %hhu %s\n",
847 bay, active);
848 } else {
Don Brace2708f292015-12-22 10:36:36 -0600849 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600850 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500851 "BOX: %hhu BAY: %hhu %s\n",
852 box, bay, active);
853 }
854 } else if (box != 0 && box != 0xFF) {
Don Brace2708f292015-12-22 10:36:36 -0600855 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600856 PAGE_SIZE - output_len, "BOX: %hhu %s\n",
Joe Handzik8270b862015-07-18 11:12:43 -0500857 box, active);
858 } else
Don Brace2708f292015-12-22 10:36:36 -0600859 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600860 PAGE_SIZE - output_len, "%s\n", active);
Joe Handzik8270b862015-07-18 11:12:43 -0500861 }
862
863 spin_unlock_irqrestore(&h->devlock, flags);
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600864 return output_len;
Joe Handzik8270b862015-07-18 11:12:43 -0500865}
866
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600867static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
868static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
869static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
870static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Joseph T Handzikded1be42016-04-27 17:13:33 -0500871static DEVICE_ATTR(sas_address, S_IRUGO, sas_address_show, NULL);
Scott Teelc1988682014-02-18 13:55:54 -0600872static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
873 host_show_hp_ssd_smart_path_enabled, NULL);
Joe Handzik8270b862015-07-18 11:12:43 -0500874static DEVICE_ATTR(path_info, S_IRUGO, path_info_show, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600875static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
876 host_show_hp_ssd_smart_path_status,
877 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600878static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
879 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600880static DEVICE_ATTR(firmware_revision, S_IRUGO,
881 host_show_firmware_revision, NULL);
882static DEVICE_ATTR(commands_outstanding, S_IRUGO,
883 host_show_commands_outstanding, NULL);
884static DEVICE_ATTR(transport_mode, S_IRUGO,
885 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600886static DEVICE_ATTR(resettable, S_IRUGO,
887 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500888static DEVICE_ATTR(lockup_detected, S_IRUGO,
889 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600890
891static struct device_attribute *hpsa_sdev_attrs[] = {
892 &dev_attr_raid_level,
893 &dev_attr_lunid,
894 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600895 &dev_attr_hp_ssd_smart_path_enabled,
Joe Handzik8270b862015-07-18 11:12:43 -0500896 &dev_attr_path_info,
Joseph T Handzikded1be42016-04-27 17:13:33 -0500897 &dev_attr_sas_address,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600898 NULL,
899};
900
901static struct device_attribute *hpsa_shost_attrs[] = {
902 &dev_attr_rescan,
903 &dev_attr_firmware_revision,
904 &dev_attr_commands_outstanding,
905 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600906 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600907 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600908 &dev_attr_raid_offload_debug,
Tomas Henzlfb53c432015-11-06 16:24:09 +0100909 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600910 NULL,
911};
912
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500913#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
914 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
915
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600916static struct scsi_host_template hpsa_driver_template = {
917 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600918 .name = HPSA,
919 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600920 .queuecommand = hpsa_scsi_queue_command,
921 .scan_start = hpsa_scan_start,
922 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600923 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600924 .this_id = -1,
925 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500926 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600927 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
928 .ioctl = hpsa_ioctl,
929 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500930 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600931 .slave_destroy = hpsa_slave_destroy,
932#ifdef CONFIG_COMPAT
933 .compat_ioctl = hpsa_compat_ioctl,
934#endif
935 .sdev_attrs = hpsa_sdev_attrs,
936 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500937 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400938 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600939};
940
Matt Gates254f7962012-05-01 11:43:06 -0500941static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600942{
943 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500944 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600945
Matt Gatese1f7de02014-02-18 13:55:17 -0600946 if (h->transMethod & CFGTBL_Trans_io_accel1)
947 return h->access.command_completed(h, q);
948
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600949 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500950 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600951
Matt Gates254f7962012-05-01 11:43:06 -0500952 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
953 a = rq->head[rq->current_entry];
954 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600955 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600956 } else {
957 a = FIFO_EMPTY;
958 }
959 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500960 if (rq->current_entry == h->max_commands) {
961 rq->current_entry = 0;
962 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600963 }
964 return a;
965}
966
Scott Teelc3497752014-02-18 13:56:34 -0600967/*
968 * There are some special bits in the bus address of the
969 * command that we have to set for the controller to know
970 * how to process the command:
971 *
972 * Normal performant mode:
973 * bit 0: 1 means performant mode, 0 means simple mode.
974 * bits 1-3 = block fetch table entry
975 * bits 4-6 = command type (== 0)
976 *
977 * ioaccel1 mode:
978 * bit 0 = "performant mode" bit.
979 * bits 1-3 = block fetch table entry
980 * bits 4-6 = command type (== 110)
981 * (command type is needed because ioaccel1 mode
982 * commands are submitted through the same register as normal
983 * mode commands, so this is how the controller knows whether
984 * the command is normal mode or ioaccel1 mode.)
985 *
986 * ioaccel2 mode:
987 * bit 0 = "performant mode" bit.
988 * bits 1-4 = block fetch table entry (note extra bit)
989 * bits 4-6 = not needed, because ioaccel2 mode has
990 * a separate special register for submitting commands.
991 */
992
Webb Scales25163bd2015-04-23 09:32:00 -0500993/*
994 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600995 * set bit 0 for pull model, bits 3-1 for block fetch
996 * register number
997 */
Webb Scales25163bd2015-04-23 09:32:00 -0500998#define DEFAULT_REPLY_QUEUE (-1)
999static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
1000 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001001{
Matt Gates254f7962012-05-01 11:43:06 -05001002 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001003 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -05001004 if (unlikely(!h->msix_vector))
1005 return;
1006 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -05001007 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +02001008 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -05001009 else
1010 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -05001011 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001012}
1013
Scott Teelc3497752014-02-18 13:56:34 -06001014static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001015 struct CommandList *c,
1016 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001017{
1018 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
1019
Webb Scales25163bd2015-04-23 09:32:00 -05001020 /*
1021 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001022 * processor. This seems to give the best I/O throughput.
1023 */
Webb Scales25163bd2015-04-23 09:32:00 -05001024 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1025 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
1026 else
1027 cp->ReplyQueue = reply_queue % h->nreply_queues;
1028 /*
1029 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001030 * - performant mode bit (bit 0)
1031 * - pull count (bits 1-3)
1032 * - command type (bits 4-6)
1033 */
1034 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
1035 IOACCEL1_BUSADDR_CMDTYPE;
1036}
1037
Stephen Cameron8be986c2015-04-23 09:34:06 -05001038static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
1039 struct CommandList *c,
1040 int reply_queue)
1041{
1042 struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
1043 &h->ioaccel2_cmd_pool[c->cmdindex];
1044
1045 /* Tell the controller to post the reply to the queue for this
1046 * processor. This seems to give the best I/O throughput.
1047 */
1048 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1049 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1050 else
1051 cp->reply_queue = reply_queue % h->nreply_queues;
1052 /* Set the bits in the address sent down to include:
1053 * - performant mode bit not used in ioaccel mode 2
1054 * - pull count (bits 0-3)
1055 * - command type isn't needed for ioaccel2
1056 */
1057 c->busaddr |= h->ioaccel2_blockFetchTable[0];
1058}
1059
Scott Teelc3497752014-02-18 13:56:34 -06001060static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001061 struct CommandList *c,
1062 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001063{
1064 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
1065
Webb Scales25163bd2015-04-23 09:32:00 -05001066 /*
1067 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001068 * processor. This seems to give the best I/O throughput.
1069 */
Webb Scales25163bd2015-04-23 09:32:00 -05001070 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1071 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1072 else
1073 cp->reply_queue = reply_queue % h->nreply_queues;
1074 /*
1075 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001076 * - performant mode bit not used in ioaccel mode 2
1077 * - pull count (bits 0-3)
1078 * - command type isn't needed for ioaccel2
1079 */
1080 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
1081}
1082
Stephen M. Camerone85c5972012-05-01 11:43:42 -05001083static int is_firmware_flash_cmd(u8 *cdb)
1084{
1085 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
1086}
1087
1088/*
1089 * During firmware flash, the heartbeat register may not update as frequently
1090 * as it should. So we dial down lockup detection during firmware flash. and
1091 * dial it back up when firmware flash completes.
1092 */
1093#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
1094#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
1095static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
1096 struct CommandList *c)
1097{
1098 if (!is_firmware_flash_cmd(c->Request.CDB))
1099 return;
1100 atomic_inc(&h->firmware_flash_in_progress);
1101 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
1102}
1103
1104static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
1105 struct CommandList *c)
1106{
1107 if (is_firmware_flash_cmd(c->Request.CDB) &&
1108 atomic_dec_and_test(&h->firmware_flash_in_progress))
1109 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
1110}
1111
Webb Scales25163bd2015-04-23 09:32:00 -05001112static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
1113 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001114{
Stephen Cameronc05e8862015-01-23 16:44:40 -06001115 dial_down_lockup_detection_during_fw_flash(h, c);
1116 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -06001117 switch (c->cmd_type) {
1118 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -05001119 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001120 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -06001121 break;
1122 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -05001123 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001124 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -06001125 break;
Stephen Cameron8be986c2015-04-23 09:34:06 -05001126 case IOACCEL2_TMF:
1127 set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
1128 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
1129 break;
Scott Teelc3497752014-02-18 13:56:34 -06001130 default:
Webb Scales25163bd2015-04-23 09:32:00 -05001131 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001132 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06001133 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001134}
1135
Webb Scalesa58e7e52015-04-23 09:34:16 -05001136static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c)
Webb Scales25163bd2015-04-23 09:32:00 -05001137{
Webb Scalesd604f532015-04-23 09:35:22 -05001138 if (unlikely(hpsa_is_pending_event(c)))
Webb Scalesa58e7e52015-04-23 09:34:16 -05001139 return finish_cmd(c);
1140
Webb Scales25163bd2015-04-23 09:32:00 -05001141 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
1142}
1143
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001144static inline int is_hba_lunid(unsigned char scsi3addr[])
1145{
1146 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
1147}
1148
1149static inline int is_scsi_rev_5(struct ctlr_info *h)
1150{
1151 if (!h->hba_inquiry_data)
1152 return 0;
1153 if ((h->hba_inquiry_data[2] & 0x07) == 5)
1154 return 1;
1155 return 0;
1156}
1157
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001158static int hpsa_find_target_lun(struct ctlr_info *h,
1159 unsigned char scsi3addr[], int bus, int *target, int *lun)
1160{
1161 /* finds an unused bus, target, lun for a new physical device
1162 * assumes h->devlock is held
1163 */
1164 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -05001165 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001166
Akinobu Mita263d9402012-01-21 00:15:27 +09001167 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001168
1169 for (i = 0; i < h->ndevices; i++) {
1170 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +09001171 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001172 }
1173
Akinobu Mita263d9402012-01-21 00:15:27 +09001174 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
1175 if (i < HPSA_MAX_DEVICES) {
1176 /* *bus = 1; */
1177 *target = i;
1178 *lun = 0;
1179 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001180 }
1181 return !found;
1182}
1183
Don Brace1d33d852015-11-04 15:50:31 -06001184static void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
Webb Scales0d96ef52015-04-23 09:31:55 -05001185 struct hpsa_scsi_dev_t *dev, char *description)
1186{
Don Brace7c59a0d2015-11-04 15:52:22 -06001187#define LABEL_SIZE 25
1188 char label[LABEL_SIZE];
1189
Don Brace9975ec92015-11-04 15:50:25 -06001190 if (h == NULL || h->pdev == NULL || h->scsi_host == NULL)
1191 return;
1192
Don Brace7c59a0d2015-11-04 15:52:22 -06001193 switch (dev->devtype) {
1194 case TYPE_RAID:
1195 snprintf(label, LABEL_SIZE, "controller");
1196 break;
1197 case TYPE_ENCLOSURE:
1198 snprintf(label, LABEL_SIZE, "enclosure");
1199 break;
1200 case TYPE_DISK:
Don Braceaf15ed32016-02-23 15:16:15 -06001201 case TYPE_ZBC:
Don Brace7c59a0d2015-11-04 15:52:22 -06001202 if (dev->external)
1203 snprintf(label, LABEL_SIZE, "external");
1204 else if (!is_logical_dev_addr_mode(dev->scsi3addr))
1205 snprintf(label, LABEL_SIZE, "%s",
1206 raid_label[PHYSICAL_DRIVE]);
1207 else
1208 snprintf(label, LABEL_SIZE, "RAID-%s",
1209 dev->raid_level > RAID_UNKNOWN ? "?" :
1210 raid_label[dev->raid_level]);
1211 break;
1212 case TYPE_ROM:
1213 snprintf(label, LABEL_SIZE, "rom");
1214 break;
1215 case TYPE_TAPE:
1216 snprintf(label, LABEL_SIZE, "tape");
1217 break;
1218 case TYPE_MEDIUM_CHANGER:
1219 snprintf(label, LABEL_SIZE, "changer");
1220 break;
1221 default:
1222 snprintf(label, LABEL_SIZE, "UNKNOWN");
1223 break;
1224 }
1225
Webb Scales0d96ef52015-04-23 09:31:55 -05001226 dev_printk(level, &h->pdev->dev,
Don Brace7c59a0d2015-11-04 15:52:22 -06001227 "scsi %d:%d:%d:%d: %s %s %.8s %.16s %s SSDSmartPathCap%c En%c Exp=%d\n",
Webb Scales0d96ef52015-04-23 09:31:55 -05001228 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
1229 description,
1230 scsi_device_type(dev->devtype),
1231 dev->vendor,
1232 dev->model,
Don Brace7c59a0d2015-11-04 15:52:22 -06001233 label,
Webb Scales0d96ef52015-04-23 09:31:55 -05001234 dev->offload_config ? '+' : '-',
1235 dev->offload_enabled ? '+' : '-',
Kevin Barnett2a168202015-11-04 15:51:21 -06001236 dev->expose_device);
Webb Scales0d96ef52015-04-23 09:31:55 -05001237}
1238
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001239/* Add an entry into h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001240static int hpsa_scsi_add_entry(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001241 struct hpsa_scsi_dev_t *device,
1242 struct hpsa_scsi_dev_t *added[], int *nadded)
1243{
1244 /* assumes h->devlock is held */
1245 int n = h->ndevices;
1246 int i;
1247 unsigned char addr1[8], addr2[8];
1248 struct hpsa_scsi_dev_t *sd;
1249
Scott Teelcfe5bad2011-10-26 16:21:07 -05001250 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001251 dev_err(&h->pdev->dev, "too many devices, some will be "
1252 "inaccessible.\n");
1253 return -1;
1254 }
1255
1256 /* physical devices do not have lun or target assigned until now. */
1257 if (device->lun != -1)
1258 /* Logical device, lun is already assigned. */
1259 goto lun_assigned;
1260
1261 /* If this device a non-zero lun of a multi-lun device
1262 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001263 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001264 */
1265 if (device->scsi3addr[4] == 0) {
1266 /* This is not a non-zero lun of a multi-lun device */
1267 if (hpsa_find_target_lun(h, device->scsi3addr,
1268 device->bus, &device->target, &device->lun) != 0)
1269 return -1;
1270 goto lun_assigned;
1271 }
1272
1273 /* This is a non-zero lun of a multi-lun device.
1274 * Search through our list and find the device which
shane.seymour9a4178b2015-07-18 11:13:09 -05001275 * has the same 8 byte LUN address, excepting byte 4 and 5.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001276 * Assign the same bus and target for this new LUN.
1277 * Use the logical unit number from the firmware.
1278 */
1279 memcpy(addr1, device->scsi3addr, 8);
1280 addr1[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001281 addr1[5] = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001282 for (i = 0; i < n; i++) {
1283 sd = h->dev[i];
1284 memcpy(addr2, sd->scsi3addr, 8);
1285 addr2[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001286 addr2[5] = 0;
1287 /* differ only in byte 4 and 5? */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001288 if (memcmp(addr1, addr2, 8) == 0) {
1289 device->bus = sd->bus;
1290 device->target = sd->target;
1291 device->lun = device->scsi3addr[4];
1292 break;
1293 }
1294 }
1295 if (device->lun == -1) {
1296 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1297 " suspect firmware bug or unsupported hardware "
1298 "configuration.\n");
1299 return -1;
1300 }
1301
1302lun_assigned:
1303
1304 h->dev[n] = device;
1305 h->ndevices++;
1306 added[*nadded] = device;
1307 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001308 hpsa_show_dev_msg(KERN_INFO, h, device,
Kevin Barnett2a168202015-11-04 15:51:21 -06001309 device->expose_device ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001310 device->offload_to_be_enabled = device->offload_enabled;
1311 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001312 return 0;
1313}
1314
Scott Teelbd9244f2012-01-19 14:01:30 -06001315/* Update an entry in h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001316static void hpsa_scsi_update_entry(struct ctlr_info *h,
Scott Teelbd9244f2012-01-19 14:01:30 -06001317 int entry, struct hpsa_scsi_dev_t *new_entry)
1318{
Robert Elliotta473d862015-04-23 09:32:54 -05001319 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001320 /* assumes h->devlock is held */
1321 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1322
1323 /* Raid level changed. */
1324 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001325
Don Brace03383732015-01-23 16:43:30 -06001326 /* Raid offload parameters changed. Careful about the ordering. */
1327 if (new_entry->offload_config && new_entry->offload_enabled) {
1328 /*
1329 * if drive is newly offload_enabled, we want to copy the
1330 * raid map data first. If previously offload_enabled and
1331 * offload_config were set, raid map data had better be
1332 * the same as it was before. if raid map data is changed
1333 * then it had better be the case that
1334 * h->dev[entry]->offload_enabled is currently 0.
1335 */
1336 h->dev[entry]->raid_map = new_entry->raid_map;
1337 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001338 }
Joe Handzika3144e02015-04-23 09:32:59 -05001339 if (new_entry->hba_ioaccel_enabled) {
1340 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1341 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1342 }
1343 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001344 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001345 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001346 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001347
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001348 /*
1349 * We can turn off ioaccel offload now, but need to delay turning
1350 * it on until we can update h->dev[entry]->phys_disk[], but we
1351 * can't do that until all the devices are updated.
1352 */
1353 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1354 if (!new_entry->offload_enabled)
1355 h->dev[entry]->offload_enabled = 0;
1356
Robert Elliotta473d862015-04-23 09:32:54 -05001357 offload_enabled = h->dev[entry]->offload_enabled;
1358 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001359 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001360 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001361}
1362
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001363/* Replace an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001364static void hpsa_scsi_replace_entry(struct ctlr_info *h,
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001365 int entry, struct hpsa_scsi_dev_t *new_entry,
1366 struct hpsa_scsi_dev_t *added[], int *nadded,
1367 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1368{
1369 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001370 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001371 removed[*nremoved] = h->dev[entry];
1372 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001373
1374 /*
1375 * New physical devices won't have target/lun assigned yet
1376 * so we need to preserve the values in the slot we are replacing.
1377 */
1378 if (new_entry->target == -1) {
1379 new_entry->target = h->dev[entry]->target;
1380 new_entry->lun = h->dev[entry]->lun;
1381 }
1382
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001383 h->dev[entry] = new_entry;
1384 added[*nadded] = new_entry;
1385 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001386 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001387 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1388 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001389}
1390
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001391/* Remove an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001392static void hpsa_scsi_remove_entry(struct ctlr_info *h, int entry,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001393 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1394{
1395 /* assumes h->devlock is held */
1396 int i;
1397 struct hpsa_scsi_dev_t *sd;
1398
Scott Teelcfe5bad2011-10-26 16:21:07 -05001399 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001400
1401 sd = h->dev[entry];
1402 removed[*nremoved] = h->dev[entry];
1403 (*nremoved)++;
1404
1405 for (i = entry; i < h->ndevices-1; i++)
1406 h->dev[i] = h->dev[i+1];
1407 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001408 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001409}
1410
1411#define SCSI3ADDR_EQ(a, b) ( \
1412 (a)[7] == (b)[7] && \
1413 (a)[6] == (b)[6] && \
1414 (a)[5] == (b)[5] && \
1415 (a)[4] == (b)[4] && \
1416 (a)[3] == (b)[3] && \
1417 (a)[2] == (b)[2] && \
1418 (a)[1] == (b)[1] && \
1419 (a)[0] == (b)[0])
1420
1421static void fixup_botched_add(struct ctlr_info *h,
1422 struct hpsa_scsi_dev_t *added)
1423{
1424 /* called when scsi_add_device fails in order to re-adjust
1425 * h->dev[] to match the mid layer's view.
1426 */
1427 unsigned long flags;
1428 int i, j;
1429
1430 spin_lock_irqsave(&h->lock, flags);
1431 for (i = 0; i < h->ndevices; i++) {
1432 if (h->dev[i] == added) {
1433 for (j = i; j < h->ndevices-1; j++)
1434 h->dev[j] = h->dev[j+1];
1435 h->ndevices--;
1436 break;
1437 }
1438 }
1439 spin_unlock_irqrestore(&h->lock, flags);
1440 kfree(added);
1441}
1442
1443static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1444 struct hpsa_scsi_dev_t *dev2)
1445{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001446 /* we compare everything except lun and target as these
1447 * are not yet assigned. Compare parts likely
1448 * to differ first
1449 */
1450 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1451 sizeof(dev1->scsi3addr)) != 0)
1452 return 0;
1453 if (memcmp(dev1->device_id, dev2->device_id,
1454 sizeof(dev1->device_id)) != 0)
1455 return 0;
1456 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1457 return 0;
1458 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1459 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001460 if (dev1->devtype != dev2->devtype)
1461 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001462 if (dev1->bus != dev2->bus)
1463 return 0;
1464 return 1;
1465}
1466
Scott Teelbd9244f2012-01-19 14:01:30 -06001467static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1468 struct hpsa_scsi_dev_t *dev2)
1469{
1470 /* Device attributes that can change, but don't mean
1471 * that the device is a different device, nor that the OS
1472 * needs to be told anything about the change.
1473 */
1474 if (dev1->raid_level != dev2->raid_level)
1475 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001476 if (dev1->offload_config != dev2->offload_config)
1477 return 1;
1478 if (dev1->offload_enabled != dev2->offload_enabled)
1479 return 1;
Don Brace93849502015-07-18 11:12:49 -05001480 if (!is_logical_dev_addr_mode(dev1->scsi3addr))
1481 if (dev1->queue_depth != dev2->queue_depth)
1482 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001483 return 0;
1484}
1485
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001486/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1487 * and return needle location in *index. If scsi3addr matches, but not
1488 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001489 * location in *index.
1490 * In the case of a minor device attribute change, such as RAID level, just
1491 * return DEVICE_UPDATED, along with the updated device's location in index.
1492 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001493 */
1494static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1495 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1496 int *index)
1497{
1498 int i;
1499#define DEVICE_NOT_FOUND 0
1500#define DEVICE_CHANGED 1
1501#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001502#define DEVICE_UPDATED 3
Don Brace1d33d852015-11-04 15:50:31 -06001503 if (needle == NULL)
1504 return DEVICE_NOT_FOUND;
1505
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001506 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001507 if (haystack[i] == NULL) /* previously removed. */
1508 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001509 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1510 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001511 if (device_is_the_same(needle, haystack[i])) {
1512 if (device_updated(needle, haystack[i]))
1513 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001514 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001515 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001516 /* Keep offline devices offline */
1517 if (needle->volume_offline)
1518 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001519 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001520 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001521 }
1522 }
1523 *index = -1;
1524 return DEVICE_NOT_FOUND;
1525}
1526
Stephen M. Cameron98465902014-02-21 16:25:00 -06001527static void hpsa_monitor_offline_device(struct ctlr_info *h,
1528 unsigned char scsi3addr[])
1529{
1530 struct offline_device_entry *device;
1531 unsigned long flags;
1532
1533 /* Check to see if device is already on the list */
1534 spin_lock_irqsave(&h->offline_device_lock, flags);
1535 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1536 if (memcmp(device->scsi3addr, scsi3addr,
1537 sizeof(device->scsi3addr)) == 0) {
1538 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1539 return;
1540 }
1541 }
1542 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1543
1544 /* Device is not on the list, add it. */
1545 device = kmalloc(sizeof(*device), GFP_KERNEL);
1546 if (!device) {
1547 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1548 return;
1549 }
1550 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1551 spin_lock_irqsave(&h->offline_device_lock, flags);
1552 list_add_tail(&device->offline_list, &h->offline_device_list);
1553 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1554}
1555
1556/* Print a message explaining various offline volume states */
1557static void hpsa_show_volume_status(struct ctlr_info *h,
1558 struct hpsa_scsi_dev_t *sd)
1559{
1560 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1561 dev_info(&h->pdev->dev,
1562 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1563 h->scsi_host->host_no,
1564 sd->bus, sd->target, sd->lun);
1565 switch (sd->volume_offline) {
1566 case HPSA_LV_OK:
1567 break;
1568 case HPSA_LV_UNDERGOING_ERASE:
1569 dev_info(&h->pdev->dev,
1570 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1571 h->scsi_host->host_no,
1572 sd->bus, sd->target, sd->lun);
1573 break;
Scott Benesh5ca01202015-07-18 11:13:04 -05001574 case HPSA_LV_NOT_AVAILABLE:
1575 dev_info(&h->pdev->dev,
1576 "C%d:B%d:T%d:L%d Volume is waiting for transforming volume.\n",
1577 h->scsi_host->host_no,
1578 sd->bus, sd->target, sd->lun);
1579 break;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001580 case HPSA_LV_UNDERGOING_RPI:
1581 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001582 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity init.\n",
Stephen M. Cameron98465902014-02-21 16:25:00 -06001583 h->scsi_host->host_no,
1584 sd->bus, sd->target, sd->lun);
1585 break;
1586 case HPSA_LV_PENDING_RPI:
1587 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001588 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1589 h->scsi_host->host_no,
1590 sd->bus, sd->target, sd->lun);
Stephen M. Cameron98465902014-02-21 16:25:00 -06001591 break;
1592 case HPSA_LV_ENCRYPTED_NO_KEY:
1593 dev_info(&h->pdev->dev,
1594 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1595 h->scsi_host->host_no,
1596 sd->bus, sd->target, sd->lun);
1597 break;
1598 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1599 dev_info(&h->pdev->dev,
1600 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1601 h->scsi_host->host_no,
1602 sd->bus, sd->target, sd->lun);
1603 break;
1604 case HPSA_LV_UNDERGOING_ENCRYPTION:
1605 dev_info(&h->pdev->dev,
1606 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1607 h->scsi_host->host_no,
1608 sd->bus, sd->target, sd->lun);
1609 break;
1610 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1611 dev_info(&h->pdev->dev,
1612 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1613 h->scsi_host->host_no,
1614 sd->bus, sd->target, sd->lun);
1615 break;
1616 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1617 dev_info(&h->pdev->dev,
1618 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1619 h->scsi_host->host_no,
1620 sd->bus, sd->target, sd->lun);
1621 break;
1622 case HPSA_LV_PENDING_ENCRYPTION:
1623 dev_info(&h->pdev->dev,
1624 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1625 h->scsi_host->host_no,
1626 sd->bus, sd->target, sd->lun);
1627 break;
1628 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1629 dev_info(&h->pdev->dev,
1630 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1631 h->scsi_host->host_no,
1632 sd->bus, sd->target, sd->lun);
1633 break;
1634 }
1635}
1636
Don Brace03383732015-01-23 16:43:30 -06001637/*
1638 * Figure the list of physical drive pointers for a logical drive with
1639 * raid offload configured.
1640 */
1641static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1642 struct hpsa_scsi_dev_t *dev[], int ndevices,
1643 struct hpsa_scsi_dev_t *logical_drive)
1644{
1645 struct raid_map_data *map = &logical_drive->raid_map;
1646 struct raid_map_disk_data *dd = &map->data[0];
1647 int i, j;
1648 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1649 le16_to_cpu(map->metadata_disks_per_row);
1650 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1651 le16_to_cpu(map->layout_map_count) *
1652 total_disks_per_row;
1653 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1654 total_disks_per_row;
1655 int qdepth;
1656
1657 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1658 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1659
Webb Scalesd604f532015-04-23 09:35:22 -05001660 logical_drive->nphysical_disks = nraid_map_entries;
1661
Don Brace03383732015-01-23 16:43:30 -06001662 qdepth = 0;
1663 for (i = 0; i < nraid_map_entries; i++) {
1664 logical_drive->phys_disk[i] = NULL;
1665 if (!logical_drive->offload_config)
1666 continue;
1667 for (j = 0; j < ndevices; j++) {
Don Brace1d33d852015-11-04 15:50:31 -06001668 if (dev[j] == NULL)
1669 continue;
Petros Koutoupisff615f02016-05-09 13:44:10 -05001670 if (dev[j]->devtype != TYPE_DISK &&
1671 dev[j]->devtype != TYPE_ZBC)
Don Braceaf15ed32016-02-23 15:16:15 -06001672 continue;
Kevin Barnettf3f01732015-11-04 15:51:33 -06001673 if (is_logical_device(dev[j]))
Don Brace03383732015-01-23 16:43:30 -06001674 continue;
1675 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1676 continue;
1677
1678 logical_drive->phys_disk[i] = dev[j];
1679 if (i < nphys_disk)
1680 qdepth = min(h->nr_cmds, qdepth +
1681 logical_drive->phys_disk[i]->queue_depth);
1682 break;
1683 }
1684
1685 /*
1686 * This can happen if a physical drive is removed and
1687 * the logical drive is degraded. In that case, the RAID
1688 * map data will refer to a physical disk which isn't actually
1689 * present. And in that case offload_enabled should already
1690 * be 0, but we'll turn it off here just in case
1691 */
1692 if (!logical_drive->phys_disk[i]) {
1693 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001694 logical_drive->offload_to_be_enabled = 0;
1695 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001696 }
1697 }
1698 if (nraid_map_entries)
1699 /*
1700 * This is correct for reads, too high for full stripe writes,
1701 * way too high for partial stripe writes
1702 */
1703 logical_drive->queue_depth = qdepth;
1704 else
1705 logical_drive->queue_depth = h->nr_cmds;
1706}
1707
1708static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1709 struct hpsa_scsi_dev_t *dev[], int ndevices)
1710{
1711 int i;
1712
1713 for (i = 0; i < ndevices; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001714 if (dev[i] == NULL)
1715 continue;
Petros Koutoupisff615f02016-05-09 13:44:10 -05001716 if (dev[i]->devtype != TYPE_DISK &&
1717 dev[i]->devtype != TYPE_ZBC)
Don Braceaf15ed32016-02-23 15:16:15 -06001718 continue;
Kevin Barnettf3f01732015-11-04 15:51:33 -06001719 if (!is_logical_device(dev[i]))
Don Brace03383732015-01-23 16:43:30 -06001720 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001721
1722 /*
1723 * If offload is currently enabled, the RAID map and
1724 * phys_disk[] assignment *better* not be changing
1725 * and since it isn't changing, we do not need to
1726 * update it.
1727 */
1728 if (dev[i]->offload_enabled)
1729 continue;
1730
Don Brace03383732015-01-23 16:43:30 -06001731 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1732 }
1733}
1734
Kevin Barnett096ccff2015-11-04 15:51:51 -06001735static int hpsa_add_device(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
1736{
1737 int rc = 0;
1738
1739 if (!h->scsi_host)
1740 return 1;
1741
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001742 if (is_logical_device(device)) /* RAID */
1743 rc = scsi_add_device(h->scsi_host, device->bus,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001744 device->target, device->lun);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001745 else /* HBA */
1746 rc = hpsa_add_sas_device(h->sas_host, device);
1747
Kevin Barnett096ccff2015-11-04 15:51:51 -06001748 return rc;
1749}
1750
Don Braceba74fdc2016-04-27 17:14:17 -05001751static int hpsa_find_outstanding_commands_for_dev(struct ctlr_info *h,
1752 struct hpsa_scsi_dev_t *dev)
1753{
1754 int i;
1755 int count = 0;
1756
1757 for (i = 0; i < h->nr_cmds; i++) {
1758 struct CommandList *c = h->cmd_pool + i;
1759 int refcount = atomic_inc_return(&c->refcount);
1760
1761 if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev,
1762 dev->scsi3addr)) {
1763 unsigned long flags;
1764
1765 spin_lock_irqsave(&h->lock, flags); /* Implied MB */
1766 if (!hpsa_is_cmd_idle(c))
1767 ++count;
1768 spin_unlock_irqrestore(&h->lock, flags);
1769 }
1770
1771 cmd_free(h, c);
1772 }
1773
1774 return count;
1775}
1776
1777static void hpsa_wait_for_outstanding_commands_for_dev(struct ctlr_info *h,
1778 struct hpsa_scsi_dev_t *device)
1779{
1780 int cmds = 0;
1781 int waits = 0;
1782
1783 while (1) {
1784 cmds = hpsa_find_outstanding_commands_for_dev(h, device);
1785 if (cmds == 0)
1786 break;
1787 if (++waits > 20)
1788 break;
1789 dev_warn(&h->pdev->dev,
1790 "%s: removing device with %d outstanding commands!\n",
1791 __func__, cmds);
1792 msleep(1000);
1793 }
1794}
1795
Kevin Barnett096ccff2015-11-04 15:51:51 -06001796static void hpsa_remove_device(struct ctlr_info *h,
1797 struct hpsa_scsi_dev_t *device)
1798{
1799 struct scsi_device *sdev = NULL;
1800
1801 if (!h->scsi_host)
1802 return;
1803
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001804 if (is_logical_device(device)) { /* RAID */
1805 sdev = scsi_device_lookup(h->scsi_host, device->bus,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001806 device->target, device->lun);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001807 if (sdev) {
1808 scsi_remove_device(sdev);
1809 scsi_device_put(sdev);
1810 } else {
1811 /*
1812 * We don't expect to get here. Future commands
1813 * to this device will get a selection timeout as
1814 * if the device were gone.
1815 */
1816 hpsa_show_dev_msg(KERN_WARNING, h, device,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001817 "didn't find device for removal.");
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001818 }
Don Braceba74fdc2016-04-27 17:14:17 -05001819 } else { /* HBA */
1820
1821 device->removed = 1;
1822 hpsa_wait_for_outstanding_commands_for_dev(h, device);
1823
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001824 hpsa_remove_sas_device(device);
Don Braceba74fdc2016-04-27 17:14:17 -05001825 }
Kevin Barnett096ccff2015-11-04 15:51:51 -06001826}
1827
Don Brace8aa60682015-11-04 15:50:01 -06001828static void adjust_hpsa_scsi_table(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001829 struct hpsa_scsi_dev_t *sd[], int nsds)
1830{
1831 /* sd contains scsi3 addresses and devtypes, and inquiry
1832 * data. This function takes what's in sd to be the current
1833 * reality and updates h->dev[] to reflect that reality.
1834 */
1835 int i, entry, device_change, changes = 0;
1836 struct hpsa_scsi_dev_t *csd;
1837 unsigned long flags;
1838 struct hpsa_scsi_dev_t **added, **removed;
1839 int nadded, nremoved;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001840
Don Braceda03ded2015-11-04 15:50:56 -06001841 /*
1842 * A reset can cause a device status to change
1843 * re-schedule the scan to see what happened.
1844 */
1845 if (h->reset_in_progress) {
1846 h->drv_req_rescan = 1;
1847 return;
1848 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001849
Scott Teelcfe5bad2011-10-26 16:21:07 -05001850 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1851 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001852
1853 if (!added || !removed) {
1854 dev_warn(&h->pdev->dev, "out of memory in "
1855 "adjust_hpsa_scsi_table\n");
1856 goto free_and_out;
1857 }
1858
1859 spin_lock_irqsave(&h->devlock, flags);
1860
1861 /* find any devices in h->dev[] that are not in
1862 * sd[] and remove them from h->dev[], and for any
1863 * devices which have changed, remove the old device
1864 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001865 * If minor device attributes change, just update
1866 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001867 */
1868 i = 0;
1869 nremoved = 0;
1870 nadded = 0;
1871 while (i < h->ndevices) {
1872 csd = h->dev[i];
1873 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1874 if (device_change == DEVICE_NOT_FOUND) {
1875 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001876 hpsa_scsi_remove_entry(h, i, removed, &nremoved);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001877 continue; /* remove ^^^, hence i not incremented */
1878 } else if (device_change == DEVICE_CHANGED) {
1879 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001880 hpsa_scsi_replace_entry(h, i, sd[entry],
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001881 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001882 /* Set it to NULL to prevent it from being freed
1883 * at the bottom of hpsa_update_scsi_devices()
1884 */
1885 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001886 } else if (device_change == DEVICE_UPDATED) {
Don Brace8aa60682015-11-04 15:50:01 -06001887 hpsa_scsi_update_entry(h, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001888 }
1889 i++;
1890 }
1891
1892 /* Now, make sure every device listed in sd[] is also
1893 * listed in h->dev[], adding them if they aren't found
1894 */
1895
1896 for (i = 0; i < nsds; i++) {
1897 if (!sd[i]) /* if already added above. */
1898 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001899
1900 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1901 * as the SCSI mid-layer does not handle such devices well.
1902 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1903 * at 160Hz, and prevents the system from coming up.
1904 */
1905 if (sd[i]->volume_offline) {
1906 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001907 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001908 continue;
1909 }
1910
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001911 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1912 h->ndevices, &entry);
1913 if (device_change == DEVICE_NOT_FOUND) {
1914 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001915 if (hpsa_scsi_add_entry(h, sd[i], added, &nadded) != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001916 break;
1917 sd[i] = NULL; /* prevent from being freed later. */
1918 } else if (device_change == DEVICE_CHANGED) {
1919 /* should never happen... */
1920 changes++;
1921 dev_warn(&h->pdev->dev,
1922 "device unexpectedly changed.\n");
1923 /* but if it does happen, we just ignore that device */
1924 }
1925 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001926 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1927
1928 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1929 * any logical drives that need it enabled.
1930 */
Don Brace1d33d852015-11-04 15:50:31 -06001931 for (i = 0; i < h->ndevices; i++) {
1932 if (h->dev[i] == NULL)
1933 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001934 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
Don Brace1d33d852015-11-04 15:50:31 -06001935 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001936
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001937 spin_unlock_irqrestore(&h->devlock, flags);
1938
Stephen M. Cameron98465902014-02-21 16:25:00 -06001939 /* Monitor devices which are in one of several NOT READY states to be
1940 * brought online later. This must be done without holding h->devlock,
1941 * so don't touch h->dev[]
1942 */
1943 for (i = 0; i < nsds; i++) {
1944 if (!sd[i]) /* if already added above. */
1945 continue;
1946 if (sd[i]->volume_offline)
1947 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1948 }
1949
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001950 /* Don't notify scsi mid layer of any changes the first time through
1951 * (or if there are no changes) scsi_scan_host will do it later the
1952 * first time through.
1953 */
Don Brace8aa60682015-11-04 15:50:01 -06001954 if (!changes)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001955 goto free_and_out;
1956
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001957 /* Notify scsi mid layer of any removed devices */
1958 for (i = 0; i < nremoved; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001959 if (removed[i] == NULL)
1960 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001961 if (removed[i]->expose_device)
1962 hpsa_remove_device(h, removed[i]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001963 kfree(removed[i]);
1964 removed[i] = NULL;
1965 }
1966
1967 /* Notify scsi mid layer of any added devices */
1968 for (i = 0; i < nadded; i++) {
Kevin Barnett096ccff2015-11-04 15:51:51 -06001969 int rc = 0;
1970
Don Brace1d33d852015-11-04 15:50:31 -06001971 if (added[i] == NULL)
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001972 continue;
Kevin Barnett2a168202015-11-04 15:51:21 -06001973 if (!(added[i]->expose_device))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001974 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001975 rc = hpsa_add_device(h, added[i]);
1976 if (!rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001977 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001978 dev_warn(&h->pdev->dev,
1979 "addition failed %d, device not added.", rc);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001980 /* now we have to remove it from h->dev,
1981 * since it didn't get added to scsi mid layer
1982 */
1983 fixup_botched_add(h, added[i]);
Don Brace853633e2015-11-04 15:50:37 -06001984 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001985 }
1986
1987free_and_out:
1988 kfree(added);
1989 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001990}
1991
1992/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001993 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001994 * Assume's h->devlock is held.
1995 */
1996static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1997 int bus, int target, int lun)
1998{
1999 int i;
2000 struct hpsa_scsi_dev_t *sd;
2001
2002 for (i = 0; i < h->ndevices; i++) {
2003 sd = h->dev[i];
2004 if (sd->bus == bus && sd->target == target && sd->lun == lun)
2005 return sd;
2006 }
2007 return NULL;
2008}
2009
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002010static int hpsa_slave_alloc(struct scsi_device *sdev)
2011{
2012 struct hpsa_scsi_dev_t *sd;
2013 unsigned long flags;
2014 struct ctlr_info *h;
2015
2016 h = sdev_to_hba(sdev);
2017 spin_lock_irqsave(&h->devlock, flags);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06002018 if (sdev_channel(sdev) == HPSA_PHYSICAL_DEVICE_BUS) {
2019 struct scsi_target *starget;
2020 struct sas_rphy *rphy;
2021
2022 starget = scsi_target(sdev);
2023 rphy = target_to_rphy(starget);
2024 sd = hpsa_find_device_by_sas_rphy(h, rphy);
2025 if (sd) {
2026 sd->target = sdev_id(sdev);
2027 sd->lun = sdev->lun;
2028 }
2029 } else
2030 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
2031 sdev_id(sdev), sdev->lun);
2032
2033 if (sd && sd->expose_device) {
Don Brace03383732015-01-23 16:43:30 -06002034 atomic_set(&sd->ioaccel_cmds_out, 0);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06002035 sdev->hostdata = sd;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002036 } else
2037 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002038 spin_unlock_irqrestore(&h->devlock, flags);
2039 return 0;
2040}
2041
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002042/* configure scsi device based on internal per-device structure */
2043static int hpsa_slave_configure(struct scsi_device *sdev)
2044{
2045 struct hpsa_scsi_dev_t *sd;
2046 int queue_depth;
2047
2048 sd = sdev->hostdata;
Kevin Barnett2a168202015-11-04 15:51:21 -06002049 sdev->no_uld_attach = !sd || !sd->expose_device;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002050
2051 if (sd)
2052 queue_depth = sd->queue_depth != 0 ?
2053 sd->queue_depth : sdev->host->can_queue;
2054 else
2055 queue_depth = sdev->host->can_queue;
2056
2057 scsi_change_queue_depth(sdev, queue_depth);
2058
2059 return 0;
2060}
2061
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002062static void hpsa_slave_destroy(struct scsi_device *sdev)
2063{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06002064 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002065}
2066
Webb Scalesd9a729f2015-04-23 09:33:27 -05002067static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
2068{
2069 int i;
2070
2071 if (!h->ioaccel2_cmd_sg_list)
2072 return;
2073 for (i = 0; i < h->nr_cmds; i++) {
2074 kfree(h->ioaccel2_cmd_sg_list[i]);
2075 h->ioaccel2_cmd_sg_list[i] = NULL;
2076 }
2077 kfree(h->ioaccel2_cmd_sg_list);
2078 h->ioaccel2_cmd_sg_list = NULL;
2079}
2080
2081static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
2082{
2083 int i;
2084
2085 if (h->chainsize <= 0)
2086 return 0;
2087
2088 h->ioaccel2_cmd_sg_list =
2089 kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
2090 GFP_KERNEL);
2091 if (!h->ioaccel2_cmd_sg_list)
2092 return -ENOMEM;
2093 for (i = 0; i < h->nr_cmds; i++) {
2094 h->ioaccel2_cmd_sg_list[i] =
2095 kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
2096 h->maxsgentries, GFP_KERNEL);
2097 if (!h->ioaccel2_cmd_sg_list[i])
2098 goto clean;
2099 }
2100 return 0;
2101
2102clean:
2103 hpsa_free_ioaccel2_sg_chain_blocks(h);
2104 return -ENOMEM;
2105}
2106
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002107static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
2108{
2109 int i;
2110
2111 if (!h->cmd_sg_list)
2112 return;
2113 for (i = 0; i < h->nr_cmds; i++) {
2114 kfree(h->cmd_sg_list[i]);
2115 h->cmd_sg_list[i] = NULL;
2116 }
2117 kfree(h->cmd_sg_list);
2118 h->cmd_sg_list = NULL;
2119}
2120
Robert Elliott105a3db2015-04-23 09:33:48 -05002121static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002122{
2123 int i;
2124
2125 if (h->chainsize <= 0)
2126 return 0;
2127
2128 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
2129 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06002130 if (!h->cmd_sg_list) {
2131 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002132 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06002133 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002134 for (i = 0; i < h->nr_cmds; i++) {
2135 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
2136 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06002137 if (!h->cmd_sg_list[i]) {
2138 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002139 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06002140 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002141 }
2142 return 0;
2143
2144clean:
2145 hpsa_free_sg_chain_blocks(h);
2146 return -ENOMEM;
2147}
2148
Webb Scalesd9a729f2015-04-23 09:33:27 -05002149static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
2150 struct io_accel2_cmd *cp, struct CommandList *c)
2151{
2152 struct ioaccel2_sg_element *chain_block;
2153 u64 temp64;
2154 u32 chain_size;
2155
2156 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
Don Bracea736e9b2015-11-04 15:51:14 -06002157 chain_size = le32_to_cpu(cp->sg[0].length);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002158 temp64 = pci_map_single(h->pdev, chain_block, chain_size,
2159 PCI_DMA_TODEVICE);
2160 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2161 /* prevent subsequent unmapping */
2162 cp->sg->address = 0;
2163 return -1;
2164 }
2165 cp->sg->address = cpu_to_le64(temp64);
2166 return 0;
2167}
2168
2169static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
2170 struct io_accel2_cmd *cp)
2171{
2172 struct ioaccel2_sg_element *chain_sg;
2173 u64 temp64;
2174 u32 chain_size;
2175
2176 chain_sg = cp->sg;
2177 temp64 = le64_to_cpu(chain_sg->address);
Don Bracea736e9b2015-11-04 15:51:14 -06002178 chain_size = le32_to_cpu(cp->sg[0].length);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002179 pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
2180}
2181
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002182static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002183 struct CommandList *c)
2184{
2185 struct SGDescriptor *chain_sg, *chain_block;
2186 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002187 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002188
2189 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
2190 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002191 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
2192 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06002193 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002194 chain_sg->Len = cpu_to_le32(chain_len);
2195 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002196 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002197 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2198 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002199 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002200 return -1;
2201 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002202 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002203 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002204}
2205
2206static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
2207 struct CommandList *c)
2208{
2209 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002210
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002211 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002212 return;
2213
2214 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002215 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
2216 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002217}
2218
Scott Teela09c1442014-02-18 13:57:21 -06002219
2220/* Decode the various types of errors on ioaccel2 path.
2221 * Return 1 for any error that should generate a RAID path retry.
2222 * Return 0 for errors that don't require a RAID path retry.
2223 */
2224static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06002225 struct CommandList *c,
2226 struct scsi_cmnd *cmd,
Don Braceba74fdc2016-04-27 17:14:17 -05002227 struct io_accel2_cmd *c2,
2228 struct hpsa_scsi_dev_t *dev)
Scott Teelc3497752014-02-18 13:56:34 -06002229{
2230 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06002231 int retry = 0;
Joe Handzikc40820d2015-04-23 09:33:32 -05002232 u32 ioaccel2_resid = 0;
Scott Teelc3497752014-02-18 13:56:34 -06002233
2234 switch (c2->error_data.serv_response) {
2235 case IOACCEL2_SERV_RESPONSE_COMPLETE:
2236 switch (c2->error_data.status) {
2237 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
2238 break;
2239 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002240 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06002241 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002242 IOACCEL2_SENSE_DATA_PRESENT) {
2243 memset(cmd->sense_buffer, 0,
2244 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06002245 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002246 }
Scott Teelc3497752014-02-18 13:56:34 -06002247 /* copy the sense data */
2248 data_len = c2->error_data.sense_data_len;
2249 if (data_len > SCSI_SENSE_BUFFERSIZE)
2250 data_len = SCSI_SENSE_BUFFERSIZE;
2251 if (data_len > sizeof(c2->error_data.sense_data_buff))
2252 data_len =
2253 sizeof(c2->error_data.sense_data_buff);
2254 memcpy(cmd->sense_buffer,
2255 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06002256 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002257 break;
2258 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
Scott Teela09c1442014-02-18 13:57:21 -06002259 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002260 break;
2261 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
Scott Teela09c1442014-02-18 13:57:21 -06002262 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002263 break;
2264 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05002265 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002266 break;
2267 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
Scott Teela09c1442014-02-18 13:57:21 -06002268 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002269 break;
2270 default:
Scott Teela09c1442014-02-18 13:57:21 -06002271 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002272 break;
2273 }
2274 break;
2275 case IOACCEL2_SERV_RESPONSE_FAILURE:
Joe Handzikc40820d2015-04-23 09:33:32 -05002276 switch (c2->error_data.status) {
2277 case IOACCEL2_STATUS_SR_IO_ERROR:
2278 case IOACCEL2_STATUS_SR_IO_ABORTED:
2279 case IOACCEL2_STATUS_SR_OVERRUN:
2280 retry = 1;
2281 break;
2282 case IOACCEL2_STATUS_SR_UNDERRUN:
2283 cmd->result = (DID_OK << 16); /* host byte */
2284 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
2285 ioaccel2_resid = get_unaligned_le32(
2286 &c2->error_data.resid_cnt[0]);
2287 scsi_set_resid(cmd, ioaccel2_resid);
2288 break;
2289 case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
2290 case IOACCEL2_STATUS_SR_INVALID_DEVICE:
2291 case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
Don Braceba74fdc2016-04-27 17:14:17 -05002292 /*
2293 * Did an HBA disk disappear? We will eventually
2294 * get a state change event from the controller but
2295 * in the meantime, we need to tell the OS that the
2296 * HBA disk is no longer there and stop I/O
2297 * from going down. This allows the potential re-insert
2298 * of the disk to get the same device node.
2299 */
2300 if (dev->physical_device && dev->expose_device) {
2301 cmd->result = DID_NO_CONNECT << 16;
2302 dev->removed = 1;
2303 h->drv_req_rescan = 1;
2304 dev_warn(&h->pdev->dev,
2305 "%s: device is gone!\n", __func__);
2306 } else
2307 /*
2308 * Retry by sending down the RAID path.
2309 * We will get an event from ctlr to
2310 * trigger rescan regardless.
2311 */
2312 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002313 break;
2314 default:
2315 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002316 }
Scott Teelc3497752014-02-18 13:56:34 -06002317 break;
2318 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
2319 break;
2320 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
2321 break;
2322 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
Scott Teela09c1442014-02-18 13:57:21 -06002323 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002324 break;
2325 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
Scott Teelc3497752014-02-18 13:56:34 -06002326 break;
2327 default:
Scott Teela09c1442014-02-18 13:57:21 -06002328 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002329 break;
2330 }
Scott Teela09c1442014-02-18 13:57:21 -06002331
2332 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06002333}
2334
Webb Scalesa58e7e52015-04-23 09:34:16 -05002335static void hpsa_cmd_resolve_events(struct ctlr_info *h,
2336 struct CommandList *c)
2337{
Webb Scalesd604f532015-04-23 09:35:22 -05002338 bool do_wake = false;
2339
Webb Scalesa58e7e52015-04-23 09:34:16 -05002340 /*
2341 * Prevent the following race in the abort handler:
2342 *
2343 * 1. LLD is requested to abort a SCSI command
2344 * 2. The SCSI command completes
2345 * 3. The struct CommandList associated with step 2 is made available
2346 * 4. New I/O request to LLD to another LUN re-uses struct CommandList
2347 * 5. Abort handler follows scsi_cmnd->host_scribble and
2348 * finds struct CommandList and tries to aborts it
2349 * Now we have aborted the wrong command.
2350 *
Webb Scalesd604f532015-04-23 09:35:22 -05002351 * Reset c->scsi_cmd here so that the abort or reset handler will know
2352 * this command has completed. Then, check to see if the handler is
Webb Scalesa58e7e52015-04-23 09:34:16 -05002353 * waiting for this command, and, if so, wake it.
2354 */
2355 c->scsi_cmd = SCSI_CMD_IDLE;
Webb Scalesd604f532015-04-23 09:35:22 -05002356 mb(); /* Declare command idle before checking for pending events. */
Webb Scalesa58e7e52015-04-23 09:34:16 -05002357 if (c->abort_pending) {
Webb Scalesd604f532015-04-23 09:35:22 -05002358 do_wake = true;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002359 c->abort_pending = false;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002360 }
Webb Scalesd604f532015-04-23 09:35:22 -05002361 if (c->reset_pending) {
2362 unsigned long flags;
2363 struct hpsa_scsi_dev_t *dev;
2364
2365 /*
2366 * There appears to be a reset pending; lock the lock and
2367 * reconfirm. If so, then decrement the count of outstanding
2368 * commands and wake the reset command if this is the last one.
2369 */
2370 spin_lock_irqsave(&h->lock, flags);
2371 dev = c->reset_pending; /* Re-fetch under the lock. */
2372 if (dev && atomic_dec_and_test(&dev->reset_cmds_out))
2373 do_wake = true;
2374 c->reset_pending = NULL;
2375 spin_unlock_irqrestore(&h->lock, flags);
2376 }
2377
2378 if (do_wake)
2379 wake_up_all(&h->event_sync_wait_queue);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002380}
2381
Webb Scales73153fe2015-04-23 09:35:04 -05002382static void hpsa_cmd_resolve_and_free(struct ctlr_info *h,
2383 struct CommandList *c)
2384{
2385 hpsa_cmd_resolve_events(h, c);
2386 cmd_tagged_free(h, c);
2387}
2388
Webb Scales8a0ff922015-04-23 09:34:11 -05002389static void hpsa_cmd_free_and_done(struct ctlr_info *h,
2390 struct CommandList *c, struct scsi_cmnd *cmd)
2391{
Webb Scales73153fe2015-04-23 09:35:04 -05002392 hpsa_cmd_resolve_and_free(h, c);
Don Braced49c2072016-09-09 16:30:23 -05002393 if (cmd && cmd->scsi_done)
2394 cmd->scsi_done(cmd);
Webb Scales8a0ff922015-04-23 09:34:11 -05002395}
2396
2397static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c)
2398{
2399 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
2400 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
2401}
2402
Webb Scalesa58e7e52015-04-23 09:34:16 -05002403static void hpsa_set_scsi_cmd_aborted(struct scsi_cmnd *cmd)
2404{
2405 cmd->result = DID_ABORT << 16;
2406}
2407
2408static void hpsa_cmd_abort_and_free(struct ctlr_info *h, struct CommandList *c,
2409 struct scsi_cmnd *cmd)
2410{
2411 hpsa_set_scsi_cmd_aborted(cmd);
2412 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2413 c->Request.CDB, c->err_info->ScsiStatus);
Webb Scales73153fe2015-04-23 09:35:04 -05002414 hpsa_cmd_resolve_and_free(h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002415}
2416
Scott Teelc3497752014-02-18 13:56:34 -06002417static void process_ioaccel2_completion(struct ctlr_info *h,
2418 struct CommandList *c, struct scsi_cmnd *cmd,
2419 struct hpsa_scsi_dev_t *dev)
2420{
2421 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2422
2423 /* check for good status */
2424 if (likely(c2->error_data.serv_response == 0 &&
Webb Scales8a0ff922015-04-23 09:34:11 -05002425 c2->error_data.status == 0))
2426 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002427
Webb Scales8a0ff922015-04-23 09:34:11 -05002428 /*
2429 * Any RAID offload error results in retry which will use
Scott Teelc3497752014-02-18 13:56:34 -06002430 * the normal I/O path so the controller can handle whatever's
2431 * wrong.
2432 */
Kevin Barnettf3f01732015-11-04 15:51:33 -06002433 if (is_logical_device(dev) &&
Scott Teelc3497752014-02-18 13:56:34 -06002434 c2->error_data.serv_response ==
2435 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06002436 if (c2->error_data.status ==
Don Brace064d1b12016-04-27 17:14:07 -05002437 IOACCEL2_STATUS_SR_IOACCEL_DISABLED) {
Don Brace080ef1c2015-01-23 16:43:25 -06002438 dev->offload_enabled = 0;
Don Brace064d1b12016-04-27 17:14:07 -05002439 dev->offload_to_be_enabled = 0;
2440 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002441
2442 return hpsa_retry_cmd(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06002443 }
Don Brace080ef1c2015-01-23 16:43:25 -06002444
Don Braceba74fdc2016-04-27 17:14:17 -05002445 if (handle_ioaccel_mode2_error(h, c, cmd, c2, dev))
Webb Scales8a0ff922015-04-23 09:34:11 -05002446 return hpsa_retry_cmd(h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06002447
Webb Scales8a0ff922015-04-23 09:34:11 -05002448 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002449}
2450
Stephen Cameron9437ac42015-04-23 09:32:16 -05002451/* Returns 0 on success, < 0 otherwise. */
2452static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
2453 struct CommandList *cp)
2454{
2455 u8 tmf_status = cp->err_info->ScsiStatus;
2456
2457 switch (tmf_status) {
2458 case CISS_TMF_COMPLETE:
2459 /*
2460 * CISS_TMF_COMPLETE never happens, instead,
2461 * ei->CommandStatus == 0 for this case.
2462 */
2463 case CISS_TMF_SUCCESS:
2464 return 0;
2465 case CISS_TMF_INVALID_FRAME:
2466 case CISS_TMF_NOT_SUPPORTED:
2467 case CISS_TMF_FAILED:
2468 case CISS_TMF_WRONG_LUN:
2469 case CISS_TMF_OVERLAPPED_TAG:
2470 break;
2471 default:
2472 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2473 tmf_status);
2474 break;
2475 }
2476 return -tmf_status;
2477}
2478
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002479static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002480{
2481 struct scsi_cmnd *cmd;
2482 struct ctlr_info *h;
2483 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002484 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002485 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002486
Stephen Cameron9437ac42015-04-23 09:32:16 -05002487 u8 sense_key;
2488 u8 asc; /* additional sense code */
2489 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002490 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002491
2492 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002493 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002494 h = cp->h;
Don Braced49c2072016-09-09 16:30:23 -05002495
2496 if (!cmd->device) {
2497 cmd->result = DID_NO_CONNECT << 16;
2498 return hpsa_cmd_free_and_done(h, cp, cmd);
2499 }
2500
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002501 dev = cmd->device->hostdata;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002502 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002503
2504 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002505 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002506 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002507 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002508
Webb Scalesd9a729f2015-04-23 09:33:27 -05002509 if ((cp->cmd_type == CMD_IOACCEL2) &&
2510 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2511 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2512
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002513 cmd->result = (DID_OK << 16); /* host byte */
2514 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002515
Don Braced49c2072016-09-09 16:30:23 -05002516 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1) {
2517 if (dev->physical_device && dev->expose_device &&
2518 dev->removed) {
2519 cmd->result = DID_NO_CONNECT << 16;
2520 return hpsa_cmd_free_and_done(h, cp, cmd);
2521 }
2522 if (likely(cp->phys_disk != NULL))
2523 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2524 }
Don Brace03383732015-01-23 16:43:30 -06002525
Webb Scales25163bd2015-04-23 09:32:00 -05002526 /*
2527 * We check for lockup status here as it may be set for
2528 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2529 * fail_all_oustanding_cmds()
2530 */
2531 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2532 /* DID_NO_CONNECT will prevent a retry */
2533 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05002534 return hpsa_cmd_free_and_done(h, cp, cmd);
Webb Scales25163bd2015-04-23 09:32:00 -05002535 }
2536
Webb Scalesd604f532015-04-23 09:35:22 -05002537 if ((unlikely(hpsa_is_pending_event(cp)))) {
2538 if (cp->reset_pending)
2539 return hpsa_cmd_resolve_and_free(h, cp);
2540 if (cp->abort_pending)
2541 return hpsa_cmd_abort_and_free(h, cp, cmd);
2542 }
2543
Scott Teelc3497752014-02-18 13:56:34 -06002544 if (cp->cmd_type == CMD_IOACCEL2)
2545 return process_ioaccel2_completion(h, cp, cmd, dev);
2546
Robert Elliott6aa4c362014-07-03 10:18:19 -05002547 scsi_set_resid(cmd, ei->ResidualCnt);
Webb Scales8a0ff922015-04-23 09:34:11 -05002548 if (ei->CommandStatus == 0)
2549 return hpsa_cmd_free_and_done(h, cp, cmd);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002550
Matt Gatese1f7de02014-02-18 13:55:17 -06002551 /* For I/O accelerator commands, copy over some fields to the normal
2552 * CISS header used below for error handling.
2553 */
2554 if (cp->cmd_type == CMD_IOACCEL1) {
2555 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002556 cp->Header.SGList = scsi_sg_count(cmd);
2557 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2558 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2559 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002560 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002561 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2562 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002563
2564 /* Any RAID offload error results in retry which will use
2565 * the normal I/O path so the controller can handle whatever's
2566 * wrong.
2567 */
Kevin Barnettf3f01732015-11-04 15:51:33 -06002568 if (is_logical_device(dev)) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002569 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2570 dev->offload_enabled = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05002571 return hpsa_retry_cmd(h, cp);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002572 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002573 }
2574
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002575 /* an error has occurred */
2576 switch (ei->CommandStatus) {
2577
2578 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002579 cmd->result |= ei->ScsiStatus;
2580 /* copy the sense data */
2581 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2582 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2583 else
2584 sense_data_size = sizeof(ei->SenseInfo);
2585 if (ei->SenseLen < sense_data_size)
2586 sense_data_size = ei->SenseLen;
2587 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2588 if (ei->ScsiStatus)
2589 decode_sense_data(ei->SenseInfo, sense_data_size,
2590 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002591 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002592 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002593 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002594 break;
2595 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002596 break;
2597 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002598 /* Problem was not a check condition
2599 * Pass it up to the upper layers...
2600 */
2601 if (ei->ScsiStatus) {
2602 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2603 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2604 "Returning result: 0x%x\n",
2605 cp, ei->ScsiStatus,
2606 sense_key, asc, ascq,
2607 cmd->result);
2608 } else { /* scsi status is zero??? How??? */
2609 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2610 "Returning no connection.\n", cp),
2611
2612 /* Ordinarily, this case should never happen,
2613 * but there is a bug in some released firmware
2614 * revisions that allows it to happen if, for
2615 * example, a 4100 backplane loses power and
2616 * the tape drive is in it. We assume that
2617 * it's a fatal error of some kind because we
2618 * can't show that it wasn't. We will make it
2619 * look like selection timeout since that is
2620 * the most common reason for this to occur,
2621 * and it's severe enough.
2622 */
2623
2624 cmd->result = DID_NO_CONNECT << 16;
2625 }
2626 break;
2627
2628 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2629 break;
2630 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002631 dev_warn(&h->pdev->dev,
2632 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002633 break;
2634 case CMD_INVALID: {
2635 /* print_bytes(cp, sizeof(*cp), 1, 0);
2636 print_cmd(cp); */
2637 /* We get CMD_INVALID if you address a non-existent device
2638 * instead of a selection timeout (no response). You will
2639 * see this if you yank out a drive, then try to access it.
2640 * This is kind of a shame because it means that any other
2641 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2642 * missing target. */
2643 cmd->result = DID_NO_CONNECT << 16;
2644 }
2645 break;
2646 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002647 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002648 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2649 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002650 break;
2651 case CMD_HARDWARE_ERR:
2652 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002653 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2654 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002655 break;
2656 case CMD_CONNECTION_LOST:
2657 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002658 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2659 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002660 break;
2661 case CMD_ABORTED:
Webb Scalesa58e7e52015-04-23 09:34:16 -05002662 /* Return now to avoid calling scsi_done(). */
2663 return hpsa_cmd_abort_and_free(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002664 case CMD_ABORT_FAILED:
2665 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002666 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2667 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002668 break;
2669 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002670 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002671 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2672 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002673 break;
2674 case CMD_TIMEOUT:
2675 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002676 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2677 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002678 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002679 case CMD_UNABORTABLE:
2680 cmd->result = DID_ERROR << 16;
2681 dev_warn(&h->pdev->dev, "Command unabortable\n");
2682 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002683 case CMD_TMF_STATUS:
2684 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2685 cmd->result = DID_ERROR << 16;
2686 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002687 case CMD_IOACCEL_DISABLED:
2688 /* This only handles the direct pass-through case since RAID
2689 * offload is handled above. Just attempt a retry.
2690 */
2691 cmd->result = DID_SOFT_ERROR << 16;
2692 dev_warn(&h->pdev->dev,
2693 "cp %p had HP SSD Smart Path error\n", cp);
2694 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002695 default:
2696 cmd->result = DID_ERROR << 16;
2697 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2698 cp, ei->CommandStatus);
2699 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002700
2701 return hpsa_cmd_free_and_done(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002702}
2703
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002704static void hpsa_pci_unmap(struct pci_dev *pdev,
2705 struct CommandList *c, int sg_used, int data_direction)
2706{
2707 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002708
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002709 for (i = 0; i < sg_used; i++)
2710 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2711 le32_to_cpu(c->SG[i].Len),
2712 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002713}
2714
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002715static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002716 struct CommandList *cp,
2717 unsigned char *buf,
2718 size_t buflen,
2719 int data_direction)
2720{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002721 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002722
2723 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2724 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002725 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002726 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002727 }
2728
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002729 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002730 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002731 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002732 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002733 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002734 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002735 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002736 cp->SG[0].Addr = cpu_to_le64(addr64);
2737 cp->SG[0].Len = cpu_to_le32(buflen);
2738 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2739 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2740 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002741 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002742}
2743
Webb Scales25163bd2015-04-23 09:32:00 -05002744#define NO_TIMEOUT ((unsigned long) -1)
2745#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2746static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2747 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002748{
2749 DECLARE_COMPLETION_ONSTACK(wait);
2750
2751 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002752 __enqueue_cmd_and_start_io(h, c, reply_queue);
2753 if (timeout_msecs == NO_TIMEOUT) {
2754 /* TODO: get rid of this no-timeout thing */
2755 wait_for_completion_io(&wait);
2756 return IO_OK;
2757 }
2758 if (!wait_for_completion_io_timeout(&wait,
2759 msecs_to_jiffies(timeout_msecs))) {
2760 dev_warn(&h->pdev->dev, "Command timed out.\n");
2761 return -ETIMEDOUT;
2762 }
2763 return IO_OK;
2764}
2765
2766static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2767 int reply_queue, unsigned long timeout_msecs)
2768{
2769 if (unlikely(lockup_detected(h))) {
2770 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2771 return IO_OK;
2772 }
2773 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002774}
2775
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002776static u32 lockup_detected(struct ctlr_info *h)
2777{
2778 int cpu;
2779 u32 rc, *lockup_detected;
2780
2781 cpu = get_cpu();
2782 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2783 rc = *lockup_detected;
2784 put_cpu();
2785 return rc;
2786}
2787
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002788#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002789static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2790 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002791{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002792 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002793 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002794
2795 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002796 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002797 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2798 timeout_msecs);
2799 if (rc)
2800 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002801 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002802 if (retry_count > 3) {
2803 msleep(backoff_time);
2804 if (backoff_time < 1000)
2805 backoff_time *= 2;
2806 }
Matt Bondurant852af202012-05-01 11:42:35 -05002807 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002808 check_for_busy(h, c)) &&
2809 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002810 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002811 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2812 rc = -EIO;
2813 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002814}
2815
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002816static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2817 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002818{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002819 const u8 *cdb = c->Request.CDB;
2820 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002821
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002822 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2823 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2824 txt, lun[0], lun[1], lun[2], lun[3],
2825 lun[4], lun[5], lun[6], lun[7],
2826 cdb[0], cdb[1], cdb[2], cdb[3],
2827 cdb[4], cdb[5], cdb[6], cdb[7],
2828 cdb[8], cdb[9], cdb[10], cdb[11],
2829 cdb[12], cdb[13], cdb[14], cdb[15]);
2830}
2831
2832static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2833 struct CommandList *cp)
2834{
2835 const struct ErrorInfo *ei = cp->err_info;
2836 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002837 u8 sense_key, asc, ascq;
2838 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002839
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002840 switch (ei->CommandStatus) {
2841 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002842 if (ei->SenseLen > sizeof(ei->SenseInfo))
2843 sense_len = sizeof(ei->SenseInfo);
2844 else
2845 sense_len = ei->SenseLen;
2846 decode_sense_data(ei->SenseInfo, sense_len,
2847 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002848 hpsa_print_cmd(h, "SCSI status", cp);
2849 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002850 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2851 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002852 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002853 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002854 if (ei->ScsiStatus == 0)
2855 dev_warn(d, "SCSI status is abnormally zero. "
2856 "(probably indicates selection timeout "
2857 "reported incorrectly due to a known "
2858 "firmware bug, circa July, 2001.)\n");
2859 break;
2860 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002861 break;
2862 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002863 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002864 break;
2865 case CMD_INVALID: {
2866 /* controller unfortunately reports SCSI passthru's
2867 * to non-existent targets as invalid commands.
2868 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002869 hpsa_print_cmd(h, "invalid command", cp);
2870 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002871 }
2872 break;
2873 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002874 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002875 break;
2876 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002877 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002878 break;
2879 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002880 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002881 break;
2882 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002883 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002884 break;
2885 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002886 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002887 break;
2888 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002889 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002890 break;
2891 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002892 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002893 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002894 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002895 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002896 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002897 case CMD_CTLR_LOCKUP:
2898 hpsa_print_cmd(h, "controller lockup detected", cp);
2899 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002900 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002901 hpsa_print_cmd(h, "unknown status", cp);
2902 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002903 ei->CommandStatus);
2904 }
2905}
2906
2907static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002908 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002909 unsigned char bufsize)
2910{
2911 int rc = IO_OK;
2912 struct CommandList *c;
2913 struct ErrorInfo *ei;
2914
Stephen Cameron45fcb862015-01-23 16:43:04 -06002915 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002916
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002917 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2918 page, scsi3addr, TYPE_CMD)) {
2919 rc = -1;
2920 goto out;
2921 }
Webb Scales25163bd2015-04-23 09:32:00 -05002922 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05002923 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05002924 if (rc)
2925 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002926 ei = c->err_info;
2927 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002928 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002929 rc = -1;
2930 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002931out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002932 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002933 return rc;
2934}
2935
Scott Teelbf711ac2014-02-18 13:56:39 -06002936static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002937 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002938{
2939 int rc = IO_OK;
2940 struct CommandList *c;
2941 struct ErrorInfo *ei;
2942
Stephen Cameron45fcb862015-01-23 16:43:04 -06002943 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002944
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002945
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002946 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teel0b9b7b62015-11-04 15:51:02 -06002947 (void) fill_cmd(c, reset_type, h, NULL, 0, 0,
Scott Teelbf711ac2014-02-18 13:56:39 -06002948 scsi3addr, TYPE_MSG);
Don Bracec448ecf2016-04-27 17:13:51 -05002949 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05002950 if (rc) {
2951 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2952 goto out;
2953 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002954 /* no unmap needed here because no data xfer. */
2955
2956 ei = c->err_info;
2957 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002958 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002959 rc = -1;
2960 }
Webb Scales25163bd2015-04-23 09:32:00 -05002961out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002962 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002963 return rc;
2964}
2965
Webb Scalesd604f532015-04-23 09:35:22 -05002966static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
2967 struct hpsa_scsi_dev_t *dev,
2968 unsigned char *scsi3addr)
2969{
2970 int i;
2971 bool match = false;
2972 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2973 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
2974
2975 if (hpsa_is_cmd_idle(c))
2976 return false;
2977
2978 switch (c->cmd_type) {
2979 case CMD_SCSI:
2980 case CMD_IOCTL_PEND:
2981 match = !memcmp(scsi3addr, &c->Header.LUN.LunAddrBytes,
2982 sizeof(c->Header.LUN.LunAddrBytes));
2983 break;
2984
2985 case CMD_IOACCEL1:
2986 case CMD_IOACCEL2:
2987 if (c->phys_disk == dev) {
2988 /* HBA mode match */
2989 match = true;
2990 } else {
2991 /* Possible RAID mode -- check each phys dev. */
2992 /* FIXME: Do we need to take out a lock here? If
2993 * so, we could just call hpsa_get_pdisk_of_ioaccel2()
2994 * instead. */
2995 for (i = 0; i < dev->nphysical_disks && !match; i++) {
2996 /* FIXME: an alternate test might be
2997 *
2998 * match = dev->phys_disk[i]->ioaccel_handle
2999 * == c2->scsi_nexus; */
3000 match = dev->phys_disk[i] == c->phys_disk;
3001 }
3002 }
3003 break;
3004
3005 case IOACCEL2_TMF:
3006 for (i = 0; i < dev->nphysical_disks && !match; i++) {
3007 match = dev->phys_disk[i]->ioaccel_handle ==
3008 le32_to_cpu(ac->it_nexus);
3009 }
3010 break;
3011
3012 case 0: /* The command is in the middle of being initialized. */
3013 match = false;
3014 break;
3015
3016 default:
3017 dev_err(&h->pdev->dev, "unexpected cmd_type: %d\n",
3018 c->cmd_type);
3019 BUG();
3020 }
3021
3022 return match;
3023}
3024
3025static int hpsa_do_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
3026 unsigned char *scsi3addr, u8 reset_type, int reply_queue)
3027{
3028 int i;
3029 int rc = 0;
3030
3031 /* We can really only handle one reset at a time */
3032 if (mutex_lock_interruptible(&h->reset_mutex) == -EINTR) {
3033 dev_warn(&h->pdev->dev, "concurrent reset wait interrupted.\n");
3034 return -EINTR;
3035 }
3036
3037 BUG_ON(atomic_read(&dev->reset_cmds_out) != 0);
3038
3039 for (i = 0; i < h->nr_cmds; i++) {
3040 struct CommandList *c = h->cmd_pool + i;
3041 int refcount = atomic_inc_return(&c->refcount);
3042
3043 if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev, scsi3addr)) {
3044 unsigned long flags;
3045
3046 /*
3047 * Mark the target command as having a reset pending,
3048 * then lock a lock so that the command cannot complete
3049 * while we're considering it. If the command is not
3050 * idle then count it; otherwise revoke the event.
3051 */
3052 c->reset_pending = dev;
3053 spin_lock_irqsave(&h->lock, flags); /* Implied MB */
3054 if (!hpsa_is_cmd_idle(c))
3055 atomic_inc(&dev->reset_cmds_out);
3056 else
3057 c->reset_pending = NULL;
3058 spin_unlock_irqrestore(&h->lock, flags);
3059 }
3060
3061 cmd_free(h, c);
3062 }
3063
3064 rc = hpsa_send_reset(h, scsi3addr, reset_type, reply_queue);
3065 if (!rc)
3066 wait_event(h->event_sync_wait_queue,
3067 atomic_read(&dev->reset_cmds_out) == 0 ||
3068 lockup_detected(h));
3069
3070 if (unlikely(lockup_detected(h))) {
Don Brace77678d32015-07-18 11:12:22 -05003071 dev_warn(&h->pdev->dev,
3072 "Controller lockup detected during reset wait\n");
3073 rc = -ENODEV;
3074 }
Webb Scalesd604f532015-04-23 09:35:22 -05003075
3076 if (unlikely(rc))
3077 atomic_set(&dev->reset_cmds_out, 0);
3078
3079 mutex_unlock(&h->reset_mutex);
3080 return rc;
3081}
3082
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003083static void hpsa_get_raid_level(struct ctlr_info *h,
3084 unsigned char *scsi3addr, unsigned char *raid_level)
3085{
3086 int rc;
3087 unsigned char *buf;
3088
3089 *raid_level = RAID_UNKNOWN;
3090 buf = kzalloc(64, GFP_KERNEL);
3091 if (!buf)
3092 return;
Scott Teel83832782016-09-09 16:30:29 -05003093
3094 if (!hpsa_vpd_page_supported(h, scsi3addr,
3095 HPSA_VPD_LV_DEVICE_GEOMETRY))
3096 goto exit;
3097
3098 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE |
3099 HPSA_VPD_LV_DEVICE_GEOMETRY, buf, 64);
3100
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003101 if (rc == 0)
3102 *raid_level = buf[8];
3103 if (*raid_level > RAID_UNKNOWN)
3104 *raid_level = RAID_UNKNOWN;
Scott Teel83832782016-09-09 16:30:29 -05003105exit:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003106 kfree(buf);
3107 return;
3108}
3109
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003110#define HPSA_MAP_DEBUG
3111#ifdef HPSA_MAP_DEBUG
3112static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
3113 struct raid_map_data *map_buff)
3114{
3115 struct raid_map_disk_data *dd = &map_buff->data[0];
3116 int map, row, col;
3117 u16 map_cnt, row_cnt, disks_per_row;
3118
3119 if (rc != 0)
3120 return;
3121
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06003122 /* Show details only if debugging has been activated. */
3123 if (h->raid_offload_debug < 2)
3124 return;
3125
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003126 dev_info(&h->pdev->dev, "structure_size = %u\n",
3127 le32_to_cpu(map_buff->structure_size));
3128 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
3129 le32_to_cpu(map_buff->volume_blk_size));
3130 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
3131 le64_to_cpu(map_buff->volume_blk_cnt));
3132 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
3133 map_buff->phys_blk_shift);
3134 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
3135 map_buff->parity_rotation_shift);
3136 dev_info(&h->pdev->dev, "strip_size = %u\n",
3137 le16_to_cpu(map_buff->strip_size));
3138 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
3139 le64_to_cpu(map_buff->disk_starting_blk));
3140 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
3141 le64_to_cpu(map_buff->disk_blk_cnt));
3142 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
3143 le16_to_cpu(map_buff->data_disks_per_row));
3144 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
3145 le16_to_cpu(map_buff->metadata_disks_per_row));
3146 dev_info(&h->pdev->dev, "row_cnt = %u\n",
3147 le16_to_cpu(map_buff->row_cnt));
3148 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
3149 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06003150 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06003151 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06003152 dev_info(&h->pdev->dev, "encrypytion = %s\n",
3153 le16_to_cpu(map_buff->flags) &
3154 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06003155 dev_info(&h->pdev->dev, "dekindex = %u\n",
3156 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003157 map_cnt = le16_to_cpu(map_buff->layout_map_count);
3158 for (map = 0; map < map_cnt; map++) {
3159 dev_info(&h->pdev->dev, "Map%u:\n", map);
3160 row_cnt = le16_to_cpu(map_buff->row_cnt);
3161 for (row = 0; row < row_cnt; row++) {
3162 dev_info(&h->pdev->dev, " Row%u:\n", row);
3163 disks_per_row =
3164 le16_to_cpu(map_buff->data_disks_per_row);
3165 for (col = 0; col < disks_per_row; col++, dd++)
3166 dev_info(&h->pdev->dev,
3167 " D%02u: h=0x%04x xor=%u,%u\n",
3168 col, dd->ioaccel_handle,
3169 dd->xor_mult[0], dd->xor_mult[1]);
3170 disks_per_row =
3171 le16_to_cpu(map_buff->metadata_disks_per_row);
3172 for (col = 0; col < disks_per_row; col++, dd++)
3173 dev_info(&h->pdev->dev,
3174 " M%02u: h=0x%04x xor=%u,%u\n",
3175 col, dd->ioaccel_handle,
3176 dd->xor_mult[0], dd->xor_mult[1]);
3177 }
3178 }
3179}
3180#else
3181static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
3182 __attribute__((unused)) int rc,
3183 __attribute__((unused)) struct raid_map_data *map_buff)
3184{
3185}
3186#endif
3187
3188static int hpsa_get_raid_map(struct ctlr_info *h,
3189 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3190{
3191 int rc = 0;
3192 struct CommandList *c;
3193 struct ErrorInfo *ei;
3194
Stephen Cameron45fcb862015-01-23 16:43:04 -06003195 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003196
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003197 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
3198 sizeof(this_device->raid_map), 0,
3199 scsi3addr, TYPE_CMD)) {
Robert Elliott2dd02d72015-04-23 09:33:43 -05003200 dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
3201 cmd_free(h, c);
3202 return -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003203 }
Webb Scales25163bd2015-04-23 09:32:00 -05003204 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05003205 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003206 if (rc)
3207 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003208 ei = c->err_info;
3209 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003210 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05003211 rc = -1;
3212 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003213 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06003214 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003215
3216 /* @todo in the future, dynamically allocate RAID map memory */
3217 if (le32_to_cpu(this_device->raid_map.structure_size) >
3218 sizeof(this_device->raid_map)) {
3219 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
3220 rc = -1;
3221 }
3222 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
3223 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05003224out:
3225 cmd_free(h, c);
3226 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003227}
3228
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003229static int hpsa_bmic_sense_subsystem_information(struct ctlr_info *h,
3230 unsigned char scsi3addr[], u16 bmic_device_index,
3231 struct bmic_sense_subsystem_info *buf, size_t bufsize)
3232{
3233 int rc = IO_OK;
3234 struct CommandList *c;
3235 struct ErrorInfo *ei;
3236
3237 c = cmd_alloc(h);
3238
3239 rc = fill_cmd(c, BMIC_SENSE_SUBSYSTEM_INFORMATION, h, buf, bufsize,
3240 0, RAID_CTLR_LUNID, TYPE_CMD);
3241 if (rc)
3242 goto out;
3243
3244 c->Request.CDB[2] = bmic_device_index & 0xff;
3245 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3246
3247 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05003248 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003249 if (rc)
3250 goto out;
3251 ei = c->err_info;
3252 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3253 hpsa_scsi_interpret_error(h, c);
3254 rc = -1;
3255 }
3256out:
3257 cmd_free(h, c);
3258 return rc;
3259}
3260
Scott Teel66749d02015-11-04 15:51:57 -06003261static int hpsa_bmic_id_controller(struct ctlr_info *h,
3262 struct bmic_identify_controller *buf, size_t bufsize)
3263{
3264 int rc = IO_OK;
3265 struct CommandList *c;
3266 struct ErrorInfo *ei;
3267
3268 c = cmd_alloc(h);
3269
3270 rc = fill_cmd(c, BMIC_IDENTIFY_CONTROLLER, h, buf, bufsize,
3271 0, RAID_CTLR_LUNID, TYPE_CMD);
3272 if (rc)
3273 goto out;
3274
3275 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05003276 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Scott Teel66749d02015-11-04 15:51:57 -06003277 if (rc)
3278 goto out;
3279 ei = c->err_info;
3280 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3281 hpsa_scsi_interpret_error(h, c);
3282 rc = -1;
3283 }
3284out:
3285 cmd_free(h, c);
3286 return rc;
3287}
3288
Don Brace03383732015-01-23 16:43:30 -06003289static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
3290 unsigned char scsi3addr[], u16 bmic_device_index,
3291 struct bmic_identify_physical_device *buf, size_t bufsize)
3292{
3293 int rc = IO_OK;
3294 struct CommandList *c;
3295 struct ErrorInfo *ei;
3296
3297 c = cmd_alloc(h);
3298 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
3299 0, RAID_CTLR_LUNID, TYPE_CMD);
3300 if (rc)
3301 goto out;
3302
3303 c->Request.CDB[2] = bmic_device_index & 0xff;
3304 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3305
Webb Scales25163bd2015-04-23 09:32:00 -05003306 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
Don Bracec448ecf2016-04-27 17:13:51 -05003307 DEFAULT_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06003308 ei = c->err_info;
3309 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3310 hpsa_scsi_interpret_error(h, c);
3311 rc = -1;
3312 }
3313out:
3314 cmd_free(h, c);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003315
Don Brace03383732015-01-23 16:43:30 -06003316 return rc;
3317}
3318
Don Bracecca8f132015-12-22 10:36:48 -06003319/*
3320 * get enclosure information
3321 * struct ReportExtendedLUNdata *rlep - Used for BMIC drive number
3322 * struct hpsa_scsi_dev_t *encl_dev - device entry for enclosure
3323 * Uses id_physical_device to determine the box_index.
3324 */
3325static void hpsa_get_enclosure_info(struct ctlr_info *h,
3326 unsigned char *scsi3addr,
3327 struct ReportExtendedLUNdata *rlep, int rle_index,
3328 struct hpsa_scsi_dev_t *encl_dev)
3329{
3330 int rc = -1;
3331 struct CommandList *c = NULL;
3332 struct ErrorInfo *ei = NULL;
3333 struct bmic_sense_storage_box_params *bssbp = NULL;
3334 struct bmic_identify_physical_device *id_phys = NULL;
3335 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
3336 u16 bmic_device_index = 0;
3337
3338 bmic_device_index = GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]);
3339
Don Brace17a9e542016-02-23 15:16:09 -06003340 if (bmic_device_index == 0xFF00 || MASKED_DEVICE(&rle->lunid[0])) {
3341 rc = IO_OK;
Don Bracecca8f132015-12-22 10:36:48 -06003342 goto out;
Don Brace17a9e542016-02-23 15:16:09 -06003343 }
Don Bracecca8f132015-12-22 10:36:48 -06003344
3345 bssbp = kzalloc(sizeof(*bssbp), GFP_KERNEL);
3346 if (!bssbp)
3347 goto out;
3348
3349 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
3350 if (!id_phys)
3351 goto out;
3352
3353 rc = hpsa_bmic_id_physical_device(h, scsi3addr, bmic_device_index,
3354 id_phys, sizeof(*id_phys));
3355 if (rc) {
3356 dev_warn(&h->pdev->dev, "%s: id_phys failed %d bdi[0x%x]\n",
3357 __func__, encl_dev->external, bmic_device_index);
3358 goto out;
3359 }
3360
3361 c = cmd_alloc(h);
3362
3363 rc = fill_cmd(c, BMIC_SENSE_STORAGE_BOX_PARAMS, h, bssbp,
3364 sizeof(*bssbp), 0, RAID_CTLR_LUNID, TYPE_CMD);
3365
3366 if (rc)
3367 goto out;
3368
3369 if (id_phys->phys_connector[1] == 'E')
3370 c->Request.CDB[5] = id_phys->box_index;
3371 else
3372 c->Request.CDB[5] = 0;
3373
3374 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
Don Bracec448ecf2016-04-27 17:13:51 -05003375 DEFAULT_TIMEOUT);
Don Bracecca8f132015-12-22 10:36:48 -06003376 if (rc)
3377 goto out;
3378
3379 ei = c->err_info;
3380 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3381 rc = -1;
3382 goto out;
3383 }
3384
3385 encl_dev->box[id_phys->active_path_number] = bssbp->phys_box_on_port;
3386 memcpy(&encl_dev->phys_connector[id_phys->active_path_number],
3387 bssbp->phys_connector, sizeof(bssbp->phys_connector));
3388
3389 rc = IO_OK;
3390out:
3391 kfree(bssbp);
3392 kfree(id_phys);
3393
3394 if (c)
3395 cmd_free(h, c);
3396
3397 if (rc != IO_OK)
3398 hpsa_show_dev_msg(KERN_INFO, h, encl_dev,
3399 "Error, could not get enclosure information\n");
3400}
3401
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003402static u64 hpsa_get_sas_address_from_report_physical(struct ctlr_info *h,
3403 unsigned char *scsi3addr)
3404{
3405 struct ReportExtendedLUNdata *physdev;
3406 u32 nphysicals;
3407 u64 sa = 0;
3408 int i;
3409
3410 physdev = kzalloc(sizeof(*physdev), GFP_KERNEL);
3411 if (!physdev)
3412 return 0;
3413
3414 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
3415 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3416 kfree(physdev);
3417 return 0;
3418 }
3419 nphysicals = get_unaligned_be32(physdev->LUNListLength) / 24;
3420
3421 for (i = 0; i < nphysicals; i++)
3422 if (!memcmp(&physdev->LUN[i].lunid[0], scsi3addr, 8)) {
3423 sa = get_unaligned_be64(&physdev->LUN[i].wwid[0]);
3424 break;
3425 }
3426
3427 kfree(physdev);
3428
3429 return sa;
3430}
3431
3432static void hpsa_get_sas_address(struct ctlr_info *h, unsigned char *scsi3addr,
3433 struct hpsa_scsi_dev_t *dev)
3434{
3435 int rc;
3436 u64 sa = 0;
3437
3438 if (is_hba_lunid(scsi3addr)) {
3439 struct bmic_sense_subsystem_info *ssi;
3440
3441 ssi = kzalloc(sizeof(*ssi), GFP_KERNEL);
3442 if (ssi == NULL) {
3443 dev_warn(&h->pdev->dev,
3444 "%s: out of memory\n", __func__);
3445 return;
3446 }
3447
3448 rc = hpsa_bmic_sense_subsystem_information(h,
3449 scsi3addr, 0, ssi, sizeof(*ssi));
3450 if (rc == 0) {
3451 sa = get_unaligned_be64(ssi->primary_world_wide_id);
3452 h->sas_address = sa;
3453 }
3454
3455 kfree(ssi);
3456 } else
3457 sa = hpsa_get_sas_address_from_report_physical(h, scsi3addr);
3458
3459 dev->sas_address = sa;
3460}
3461
3462/* Get a device id from inquiry page 0x83 */
Scott Teel83832782016-09-09 16:30:29 -05003463static bool hpsa_vpd_page_supported(struct ctlr_info *h,
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003464 unsigned char scsi3addr[], u8 page)
3465{
3466 int rc;
3467 int i;
3468 int pages;
3469 unsigned char *buf, bufsize;
3470
3471 buf = kzalloc(256, GFP_KERNEL);
3472 if (!buf)
Scott Teel83832782016-09-09 16:30:29 -05003473 return false;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003474
3475 /* Get the size of the page list first */
3476 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3477 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3478 buf, HPSA_VPD_HEADER_SZ);
3479 if (rc != 0)
3480 goto exit_unsupported;
3481 pages = buf[3];
3482 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
3483 bufsize = pages + HPSA_VPD_HEADER_SZ;
3484 else
3485 bufsize = 255;
3486
3487 /* Get the whole VPD page list */
3488 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3489 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3490 buf, bufsize);
3491 if (rc != 0)
3492 goto exit_unsupported;
3493
3494 pages = buf[3];
3495 for (i = 1; i <= pages; i++)
3496 if (buf[3 + i] == page)
3497 goto exit_supported;
3498exit_unsupported:
3499 kfree(buf);
Scott Teel83832782016-09-09 16:30:29 -05003500 return false;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003501exit_supported:
3502 kfree(buf);
Scott Teel83832782016-09-09 16:30:29 -05003503 return true;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003504}
3505
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003506static void hpsa_get_ioaccel_status(struct ctlr_info *h,
3507 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3508{
3509 int rc;
3510 unsigned char *buf;
3511 u8 ioaccel_status;
3512
3513 this_device->offload_config = 0;
3514 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003515 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003516
3517 buf = kzalloc(64, GFP_KERNEL);
3518 if (!buf)
3519 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003520 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
3521 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003522 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003523 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003524 if (rc != 0)
3525 goto out;
3526
3527#define IOACCEL_STATUS_BYTE 4
3528#define OFFLOAD_CONFIGURED_BIT 0x01
3529#define OFFLOAD_ENABLED_BIT 0x02
3530 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
3531 this_device->offload_config =
3532 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
3533 if (this_device->offload_config) {
3534 this_device->offload_enabled =
3535 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
3536 if (hpsa_get_raid_map(h, scsi3addr, this_device))
3537 this_device->offload_enabled = 0;
3538 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003539 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003540out:
3541 kfree(buf);
3542 return;
3543}
3544
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003545/* Get the device id from inquiry page 0x83 */
3546static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
Don Brace75d23d82015-11-04 15:51:39 -06003547 unsigned char *device_id, int index, int buflen)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003548{
3549 int rc;
3550 unsigned char *buf;
3551
Scott Teel83832782016-09-09 16:30:29 -05003552 /* Does controller have VPD for device id? */
3553 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_DEVICE_ID))
3554 return 1; /* not supported */
3555
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003556 buf = kzalloc(64, GFP_KERNEL);
3557 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05003558 return -ENOMEM;
Scott Teel83832782016-09-09 16:30:29 -05003559
3560 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE |
3561 HPSA_VPD_LV_DEVICE_ID, buf, 64);
3562 if (rc == 0) {
3563 if (buflen > 16)
3564 buflen = 16;
3565 memcpy(device_id, &buf[8], buflen);
3566 }
Don Brace75d23d82015-11-04 15:51:39 -06003567
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003568 kfree(buf);
Don Brace75d23d82015-11-04 15:51:39 -06003569
Scott Teel83832782016-09-09 16:30:29 -05003570 return rc; /*0 - got id, otherwise, didn't */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003571}
3572
3573static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06003574 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003575 int extended_response)
3576{
3577 int rc = IO_OK;
3578 struct CommandList *c;
3579 unsigned char scsi3addr[8];
3580 struct ErrorInfo *ei;
3581
Stephen Cameron45fcb862015-01-23 16:43:04 -06003582 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003583
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06003584 /* address the controller */
3585 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003586 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
3587 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
3588 rc = -1;
3589 goto out;
3590 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003591 if (extended_response)
3592 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05003593 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05003594 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003595 if (rc)
3596 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003597 ei = c->err_info;
3598 if (ei->CommandStatus != 0 &&
3599 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003600 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003601 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003602 } else {
Don Brace03383732015-01-23 16:43:30 -06003603 struct ReportLUNdata *rld = buf;
3604
3605 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003606 dev_err(&h->pdev->dev,
3607 "report luns requested format %u, got %u\n",
3608 extended_response,
Don Brace03383732015-01-23 16:43:30 -06003609 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003610 rc = -1;
3611 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003612 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003613out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06003614 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003615 return rc;
3616}
3617
3618static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003619 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003620{
Don Brace03383732015-01-23 16:43:30 -06003621 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
3622 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003623}
3624
3625static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
3626 struct ReportLUNdata *buf, int bufsize)
3627{
3628 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
3629}
3630
3631static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
3632 int bus, int target, int lun)
3633{
3634 device->bus = bus;
3635 device->target = target;
3636 device->lun = lun;
3637}
3638
Stephen M. Cameron98465902014-02-21 16:25:00 -06003639/* Use VPD inquiry to get details of volume status */
3640static int hpsa_get_volume_status(struct ctlr_info *h,
3641 unsigned char scsi3addr[])
3642{
3643 int rc;
3644 int status;
3645 int size;
3646 unsigned char *buf;
3647
3648 buf = kzalloc(64, GFP_KERNEL);
3649 if (!buf)
3650 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3651
3652 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003653 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06003654 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003655
3656 /* Get the size of the VPD return buffer */
3657 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3658 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003659 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003660 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003661 size = buf[3];
3662
3663 /* Now get the whole VPD buffer */
3664 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3665 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003666 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003667 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003668 status = buf[4]; /* status byte */
3669
3670 kfree(buf);
3671 return status;
3672exit_failed:
3673 kfree(buf);
3674 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3675}
3676
3677/* Determine offline status of a volume.
3678 * Return either:
3679 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003680 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003681 * # (integer code indicating one of several NOT READY states
3682 * describing why a volume is to be kept offline)
3683 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003684static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06003685 unsigned char scsi3addr[])
3686{
3687 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003688 unsigned char *sense;
3689 u8 sense_key, asc, ascq;
3690 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05003691 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003692 u16 cmd_status;
3693 u8 scsi_status;
3694#define ASC_LUN_NOT_READY 0x04
3695#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
3696#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
3697
3698 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003699
Stephen M. Cameron98465902014-02-21 16:25:00 -06003700 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Don Bracec448ecf2016-04-27 17:13:51 -05003701 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
3702 DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003703 if (rc) {
3704 cmd_free(h, c);
3705 return 0;
3706 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06003707 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003708 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
3709 sense_len = sizeof(c->err_info->SenseInfo);
3710 else
3711 sense_len = c->err_info->SenseLen;
3712 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003713 cmd_status = c->err_info->CommandStatus;
3714 scsi_status = c->err_info->ScsiStatus;
3715 cmd_free(h, c);
3716 /* Is the volume 'not ready'? */
3717 if (cmd_status != CMD_TARGET_STATUS ||
3718 scsi_status != SAM_STAT_CHECK_CONDITION ||
3719 sense_key != NOT_READY ||
3720 asc != ASC_LUN_NOT_READY) {
3721 return 0;
3722 }
3723
3724 /* Determine the reason for not ready state */
3725 ldstat = hpsa_get_volume_status(h, scsi3addr);
3726
3727 /* Keep volume offline in certain cases: */
3728 switch (ldstat) {
3729 case HPSA_LV_UNDERGOING_ERASE:
Scott Benesh5ca01202015-07-18 11:13:04 -05003730 case HPSA_LV_NOT_AVAILABLE:
Stephen M. Cameron98465902014-02-21 16:25:00 -06003731 case HPSA_LV_UNDERGOING_RPI:
3732 case HPSA_LV_PENDING_RPI:
3733 case HPSA_LV_ENCRYPTED_NO_KEY:
3734 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
3735 case HPSA_LV_UNDERGOING_ENCRYPTION:
3736 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
3737 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
3738 return ldstat;
3739 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
3740 /* If VPD status page isn't available,
3741 * use ASC/ASCQ to determine state
3742 */
3743 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
3744 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
3745 return ldstat;
3746 break;
3747 default:
3748 break;
3749 }
3750 return 0;
3751}
3752
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003753/*
3754 * Find out if a logical device supports aborts by simply trying one.
3755 * Smart Array may claim not to support aborts on logical drives, but
3756 * if a MSA2000 * is connected, the drives on that will be presented
3757 * by the Smart Array as logical drives, and aborts may be sent to
3758 * those devices successfully. So the simplest way to find out is
3759 * to simply try an abort and see how the device responds.
3760 */
3761static int hpsa_device_supports_aborts(struct ctlr_info *h,
3762 unsigned char *scsi3addr)
3763{
3764 struct CommandList *c;
3765 struct ErrorInfo *ei;
3766 int rc = 0;
3767
3768 u64 tag = (u64) -1; /* bogus tag */
3769
3770 /* Assume that physical devices support aborts */
3771 if (!is_logical_dev_addr_mode(scsi3addr))
3772 return 1;
3773
3774 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003775
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003776 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
Don Bracec448ecf2016-04-27 17:13:51 -05003777 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
3778 DEFAULT_TIMEOUT);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003779 /* no unmap needed here because no data xfer. */
3780 ei = c->err_info;
3781 switch (ei->CommandStatus) {
3782 case CMD_INVALID:
3783 rc = 0;
3784 break;
3785 case CMD_UNABORTABLE:
3786 case CMD_ABORT_FAILED:
3787 rc = 1;
3788 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003789 case CMD_TMF_STATUS:
3790 rc = hpsa_evaluate_tmf_status(h, c);
3791 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003792 default:
3793 rc = 0;
3794 break;
3795 }
3796 cmd_free(h, c);
3797 return rc;
3798}
3799
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003800static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003801 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3802 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003803{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003804
3805#define OBDR_SIG_OFFSET 43
3806#define OBDR_TAPE_SIG "$DR-10"
3807#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3808#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3809
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003810 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003811 unsigned char *obdr_sig;
Don Brace683fc442015-11-04 15:50:44 -06003812 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003813
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003814 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Don Brace683fc442015-11-04 15:50:44 -06003815 if (!inq_buff) {
3816 rc = -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003817 goto bail_out;
Don Brace683fc442015-11-04 15:50:44 -06003818 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003819
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003820 /* Do an inquiry to the device to see what it is. */
3821 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3822 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
3823 /* Inquiry failed (msg printed already) */
3824 dev_err(&h->pdev->dev,
3825 "hpsa_update_device_info: inquiry failed\n");
Don Brace683fc442015-11-04 15:50:44 -06003826 rc = -EIO;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003827 goto bail_out;
3828 }
3829
Don Brace4af61e42016-02-23 15:16:40 -06003830 scsi_sanitize_inquiry_string(&inq_buff[8], 8);
3831 scsi_sanitize_inquiry_string(&inq_buff[16], 16);
Don Brace75d23d82015-11-04 15:51:39 -06003832
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003833 this_device->devtype = (inq_buff[0] & 0x1f);
3834 memcpy(this_device->scsi3addr, scsi3addr, 8);
3835 memcpy(this_device->vendor, &inq_buff[8],
3836 sizeof(this_device->vendor));
3837 memcpy(this_device->model, &inq_buff[16],
3838 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003839 memset(this_device->device_id, 0,
3840 sizeof(this_device->device_id));
Scott Teel83832782016-09-09 16:30:29 -05003841 if (hpsa_get_device_id(h, scsi3addr, this_device->device_id, 8,
3842 sizeof(this_device->device_id)))
3843 dev_err(&h->pdev->dev,
3844 "hpsa%d: %s: can't get device id for host %d:C0:T%d:L%d\t%s\t%.16s\n",
3845 h->ctlr, __func__,
3846 h->scsi_host->host_no,
3847 this_device->target, this_device->lun,
3848 scsi_device_type(this_device->devtype),
3849 this_device->model);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003850
Don Braceaf15ed32016-02-23 15:16:15 -06003851 if ((this_device->devtype == TYPE_DISK ||
3852 this_device->devtype == TYPE_ZBC) &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003853 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003854 int volume_offline;
3855
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003856 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003857 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3858 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003859 volume_offline = hpsa_volume_offline(h, scsi3addr);
3860 if (volume_offline < 0 || volume_offline > 0xff)
3861 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3862 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003863 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003864 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003865 this_device->offload_config = 0;
3866 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003867 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003868 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003869 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003870 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003871 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003872
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003873 if (is_OBDR_device) {
3874 /* See if this is a One-Button-Disaster-Recovery device
3875 * by looking for "$DR-10" at offset 43 in inquiry data.
3876 */
3877 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3878 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3879 strncmp(obdr_sig, OBDR_TAPE_SIG,
3880 OBDR_SIG_LEN) == 0);
3881 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003882 kfree(inq_buff);
3883 return 0;
3884
3885bail_out:
3886 kfree(inq_buff);
Don Brace683fc442015-11-04 15:50:44 -06003887 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003888}
3889
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003890static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3891 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3892{
3893 unsigned long flags;
3894 int rc, entry;
3895 /*
3896 * See if this device supports aborts. If we already know
3897 * the device, we already know if it supports aborts, otherwise
3898 * we have to find out if it supports aborts by trying one.
3899 */
3900 spin_lock_irqsave(&h->devlock, flags);
3901 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3902 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3903 entry >= 0 && entry < h->ndevices) {
3904 dev->supports_aborts = h->dev[entry]->supports_aborts;
3905 spin_unlock_irqrestore(&h->devlock, flags);
3906 } else {
3907 spin_unlock_irqrestore(&h->devlock, flags);
3908 dev->supports_aborts =
3909 hpsa_device_supports_aborts(h, scsi3addr);
3910 if (dev->supports_aborts < 0)
3911 dev->supports_aborts = 0;
3912 }
3913}
3914
Kevin Barnettc7955052015-11-04 15:51:45 -06003915/*
3916 * Helper function to assign bus, target, lun mapping of devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003917 * Logical drive target and lun are assigned at this time, but
3918 * physical device lun and target assignment are deferred (assigned
3919 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
Kevin Barnettc7955052015-11-04 15:51:45 -06003920*/
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003921static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003922 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003923{
Kevin Barnettc7955052015-11-04 15:51:45 -06003924 u32 lunid = get_unaligned_le32(lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003925
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003926 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3927 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003928 if (is_hba_lunid(lunaddrbytes))
Kevin Barnettc7955052015-11-04 15:51:45 -06003929 hpsa_set_bus_target_lun(device,
3930 HPSA_HBA_BUS, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003931 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003932 /* defer target, lun assignment for physical devices */
Kevin Barnettc7955052015-11-04 15:51:45 -06003933 hpsa_set_bus_target_lun(device,
3934 HPSA_PHYSICAL_DEVICE_BUS, -1, -1);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003935 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003936 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003937 /* It's a logical device */
Scott Teel66749d02015-11-04 15:51:57 -06003938 if (device->external) {
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003939 hpsa_set_bus_target_lun(device,
Kevin Barnettc7955052015-11-04 15:51:45 -06003940 HPSA_EXTERNAL_RAID_VOLUME_BUS, (lunid >> 16) & 0x3fff,
3941 lunid & 0x00ff);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003942 return;
3943 }
Kevin Barnettc7955052015-11-04 15:51:45 -06003944 hpsa_set_bus_target_lun(device, HPSA_RAID_VOLUME_BUS,
3945 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003946}
3947
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003948
3949/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003950 * Get address of physical disk used for an ioaccel2 mode command:
3951 * 1. Extract ioaccel2 handle from the command.
3952 * 2. Find a matching ioaccel2 handle from list of physical disks.
3953 * 3. Return:
3954 * 1 and set scsi3addr to address of matching physical
3955 * 0 if no matching physical disk was found.
3956 */
3957static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3958 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3959{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003960 struct io_accel2_cmd *c2 =
3961 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3962 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003963 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003964
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003965 spin_lock_irqsave(&h->devlock, flags);
3966 for (i = 0; i < h->ndevices; i++)
3967 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3968 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3969 sizeof(h->dev[i]->scsi3addr));
3970 spin_unlock_irqrestore(&h->devlock, flags);
3971 return 1;
3972 }
3973 spin_unlock_irqrestore(&h->devlock, flags);
3974 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003975}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003976
Scott Teel66749d02015-11-04 15:51:57 -06003977static int figure_external_status(struct ctlr_info *h, int raid_ctlr_position,
3978 int i, int nphysicals, int nlocal_logicals)
3979{
3980 /* In report logicals, local logicals are listed first,
3981 * then any externals.
3982 */
3983 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3984
3985 if (i == raid_ctlr_position)
3986 return 0;
3987
3988 if (i < logicals_start)
3989 return 0;
3990
3991 /* i is in logicals range, but still within local logicals */
3992 if ((i - nphysicals - (raid_ctlr_position == 0)) < nlocal_logicals)
3993 return 0;
3994
3995 return 1; /* it's an external lun */
3996}
3997
Scott Teel54b6e9e2014-02-18 13:56:45 -06003998/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003999 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
4000 * logdev. The number of luns in physdev and logdev are returned in
4001 * *nphysicals and *nlogicals, respectively.
4002 * Returns 0 on success, -1 otherwise.
4003 */
4004static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06004005 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004006 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004007{
Don Brace03383732015-01-23 16:43:30 -06004008 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004009 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
4010 return -1;
4011 }
Don Brace03383732015-01-23 16:43:30 -06004012 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004013 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06004014 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
4015 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004016 *nphysicals = HPSA_MAX_PHYS_LUN;
4017 }
Don Brace03383732015-01-23 16:43:30 -06004018 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004019 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
4020 return -1;
4021 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06004022 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004023 /* Reject Logicals in excess of our max capability. */
4024 if (*nlogicals > HPSA_MAX_LUN) {
4025 dev_warn(&h->pdev->dev,
4026 "maximum logical LUNs (%d) exceeded. "
4027 "%d LUNs ignored.\n", HPSA_MAX_LUN,
4028 *nlogicals - HPSA_MAX_LUN);
4029 *nlogicals = HPSA_MAX_LUN;
4030 }
4031 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
4032 dev_warn(&h->pdev->dev,
4033 "maximum logical + physical LUNs (%d) exceeded. "
4034 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
4035 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
4036 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
4037 }
4038 return 0;
4039}
4040
Don Brace42a91642014-11-14 17:26:27 -06004041static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
4042 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06004043 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004044 struct ReportLUNdata *logdev_list)
4045{
4046 /* Helper function, figure out where the LUN ID info is coming from
4047 * given index i, lists of physical and logical devices, where in
4048 * the list the raid controller is supposed to appear (first or last)
4049 */
4050
4051 int logicals_start = nphysicals + (raid_ctlr_position == 0);
4052 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
4053
4054 if (i == raid_ctlr_position)
4055 return RAID_CTLR_LUNID;
4056
4057 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05004058 return &physdev_list->LUN[i -
4059 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004060
4061 if (i < last_device)
4062 return &logdev_list->LUN[i - nphysicals -
4063 (raid_ctlr_position == 0)][0];
4064 BUG();
4065 return NULL;
4066}
4067
Don Brace03383732015-01-23 16:43:30 -06004068/* get physical drive ioaccel handle and queue depth */
4069static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
4070 struct hpsa_scsi_dev_t *dev,
Don Bracef2039b02015-11-04 15:51:08 -06004071 struct ReportExtendedLUNdata *rlep, int rle_index,
Don Brace03383732015-01-23 16:43:30 -06004072 struct bmic_identify_physical_device *id_phys)
4073{
4074 int rc;
Scott Teel4b6e5592016-09-09 16:30:36 -05004075 struct ext_report_lun_entry *rle;
4076
4077 /*
4078 * external targets don't support BMIC
4079 */
4080 if (dev->external) {
4081 dev->queue_depth = 7;
4082 return;
4083 }
4084
4085 rle = &rlep->LUN[rle_index];
Don Brace03383732015-01-23 16:43:30 -06004086
4087 dev->ioaccel_handle = rle->ioaccel_handle;
Don Bracef2039b02015-11-04 15:51:08 -06004088 if ((rle->device_flags & 0x08) && dev->ioaccel_handle)
Joe Handzika3144e02015-04-23 09:32:59 -05004089 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06004090 memset(id_phys, 0, sizeof(*id_phys));
Don Bracef2039b02015-11-04 15:51:08 -06004091 rc = hpsa_bmic_id_physical_device(h, &rle->lunid[0],
4092 GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]), id_phys,
Don Brace03383732015-01-23 16:43:30 -06004093 sizeof(*id_phys));
4094 if (!rc)
4095 /* Reserve space for FW operations */
4096#define DRIVE_CMDS_RESERVED_FOR_FW 2
4097#define DRIVE_QUEUE_DEPTH 7
4098 dev->queue_depth =
4099 le16_to_cpu(id_phys->current_queue_depth_limit) -
4100 DRIVE_CMDS_RESERVED_FOR_FW;
4101 else
4102 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
Don Brace03383732015-01-23 16:43:30 -06004103}
4104
Joe Handzik8270b862015-07-18 11:12:43 -05004105static void hpsa_get_path_info(struct hpsa_scsi_dev_t *this_device,
Don Bracef2039b02015-11-04 15:51:08 -06004106 struct ReportExtendedLUNdata *rlep, int rle_index,
Joe Handzik8270b862015-07-18 11:12:43 -05004107 struct bmic_identify_physical_device *id_phys)
4108{
Don Bracef2039b02015-11-04 15:51:08 -06004109 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
4110
4111 if ((rle->device_flags & 0x08) && this_device->ioaccel_handle)
Joe Handzik8270b862015-07-18 11:12:43 -05004112 this_device->hba_ioaccel_enabled = 1;
4113
4114 memcpy(&this_device->active_path_index,
4115 &id_phys->active_path_number,
4116 sizeof(this_device->active_path_index));
4117 memcpy(&this_device->path_map,
4118 &id_phys->redundant_path_present_map,
4119 sizeof(this_device->path_map));
4120 memcpy(&this_device->box,
4121 &id_phys->alternate_paths_phys_box_on_port,
4122 sizeof(this_device->box));
4123 memcpy(&this_device->phys_connector,
4124 &id_phys->alternate_paths_phys_connector,
4125 sizeof(this_device->phys_connector));
4126 memcpy(&this_device->bay,
4127 &id_phys->phys_bay_in_box,
4128 sizeof(this_device->bay));
4129}
4130
Scott Teel66749d02015-11-04 15:51:57 -06004131/* get number of local logical disks. */
4132static int hpsa_set_local_logical_count(struct ctlr_info *h,
4133 struct bmic_identify_controller *id_ctlr,
4134 u32 *nlocals)
4135{
4136 int rc;
4137
4138 if (!id_ctlr) {
4139 dev_warn(&h->pdev->dev, "%s: id_ctlr buffer is NULL.\n",
4140 __func__);
4141 return -ENOMEM;
4142 }
4143 memset(id_ctlr, 0, sizeof(*id_ctlr));
4144 rc = hpsa_bmic_id_controller(h, id_ctlr, sizeof(*id_ctlr));
4145 if (!rc)
4146 if (id_ctlr->configured_logical_drive_count < 256)
4147 *nlocals = id_ctlr->configured_logical_drive_count;
4148 else
4149 *nlocals = le16_to_cpu(
4150 id_ctlr->extended_logical_unit_count);
4151 else
4152 *nlocals = -1;
4153 return rc;
4154}
4155
Don Brace64ce60c2016-07-01 13:37:31 -05004156static bool hpsa_is_disk_spare(struct ctlr_info *h, u8 *lunaddrbytes)
4157{
4158 struct bmic_identify_physical_device *id_phys;
4159 bool is_spare = false;
4160 int rc;
4161
4162 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
4163 if (!id_phys)
4164 return false;
4165
4166 rc = hpsa_bmic_id_physical_device(h,
4167 lunaddrbytes,
4168 GET_BMIC_DRIVE_NUMBER(lunaddrbytes),
4169 id_phys, sizeof(*id_phys));
4170 if (rc == 0)
4171 is_spare = (id_phys->more_flags >> 6) & 0x01;
4172
4173 kfree(id_phys);
4174 return is_spare;
4175}
4176
4177#define RPL_DEV_FLAG_NON_DISK 0x1
4178#define RPL_DEV_FLAG_UNCONFIG_DISK_REPORTING_SUPPORTED 0x2
4179#define RPL_DEV_FLAG_UNCONFIG_DISK 0x4
4180
4181#define BMIC_DEVICE_TYPE_ENCLOSURE 6
4182
4183static bool hpsa_skip_device(struct ctlr_info *h, u8 *lunaddrbytes,
4184 struct ext_report_lun_entry *rle)
4185{
4186 u8 device_flags;
4187 u8 device_type;
4188
4189 if (!MASKED_DEVICE(lunaddrbytes))
4190 return false;
4191
4192 device_flags = rle->device_flags;
4193 device_type = rle->device_type;
4194
4195 if (device_flags & RPL_DEV_FLAG_NON_DISK) {
4196 if (device_type == BMIC_DEVICE_TYPE_ENCLOSURE)
4197 return false;
4198 return true;
4199 }
4200
4201 if (!(device_flags & RPL_DEV_FLAG_UNCONFIG_DISK_REPORTING_SUPPORTED))
4202 return false;
4203
4204 if (device_flags & RPL_DEV_FLAG_UNCONFIG_DISK)
4205 return false;
4206
4207 /*
4208 * Spares may be spun down, we do not want to
4209 * do an Inquiry to a RAID set spare drive as
4210 * that would have them spun up, that is a
4211 * performance hit because I/O to the RAID device
4212 * stops while the spin up occurs which can take
4213 * over 50 seconds.
4214 */
4215 if (hpsa_is_disk_spare(h, lunaddrbytes))
4216 return true;
4217
4218 return false;
4219}
Scott Teel66749d02015-11-04 15:51:57 -06004220
Don Brace8aa60682015-11-04 15:50:01 -06004221static void hpsa_update_scsi_devices(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004222{
4223 /* the idea here is we could get notified
4224 * that some devices have changed, so we do a report
4225 * physical luns and report logical luns cmd, and adjust
4226 * our list of devices accordingly.
4227 *
4228 * The scsi3addr's of devices won't change so long as the
4229 * adapter is not reset. That means we can rescan and
4230 * tell which devices we already know about, vs. new
4231 * devices, vs. disappearing devices.
4232 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06004233 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004234 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06004235 struct bmic_identify_physical_device *id_phys = NULL;
Scott Teel66749d02015-11-04 15:51:57 -06004236 struct bmic_identify_controller *id_ctlr = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004237 u32 nphysicals = 0;
4238 u32 nlogicals = 0;
Scott Teel66749d02015-11-04 15:51:57 -06004239 u32 nlocal_logicals = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004240 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004241 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
4242 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06004243 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004244 int raid_ctlr_position;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004245 bool physical_device;
Scott Teelaca4a522012-01-19 14:01:19 -06004246 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004247
Scott Teelcfe5bad2011-10-26 16:21:07 -05004248 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06004249 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
4250 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004251 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06004252 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Scott Teel66749d02015-11-04 15:51:57 -06004253 id_ctlr = kzalloc(sizeof(*id_ctlr), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004254
Don Brace03383732015-01-23 16:43:30 -06004255 if (!currentsd || !physdev_list || !logdev_list ||
Scott Teel66749d02015-11-04 15:51:57 -06004256 !tmpdevice || !id_phys || !id_ctlr) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004257 dev_err(&h->pdev->dev, "out of memory\n");
4258 goto out;
4259 }
4260 memset(lunzerobits, 0, sizeof(lunzerobits));
4261
Don Brace853633e2015-11-04 15:50:37 -06004262 h->drv_req_rescan = 0; /* cancel scheduled rescan - we're doing it. */
4263
Don Brace03383732015-01-23 16:43:30 -06004264 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
Don Brace853633e2015-11-04 15:50:37 -06004265 logdev_list, &nlogicals)) {
4266 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004267 goto out;
Don Brace853633e2015-11-04 15:50:37 -06004268 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004269
Scott Teel66749d02015-11-04 15:51:57 -06004270 /* Set number of local logicals (non PTRAID) */
4271 if (hpsa_set_local_logical_count(h, id_ctlr, &nlocal_logicals)) {
4272 dev_warn(&h->pdev->dev,
4273 "%s: Can't determine number of local logical devices.\n",
4274 __func__);
4275 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004276
Scott Teelaca4a522012-01-19 14:01:19 -06004277 /* We might see up to the maximum number of logical and physical disks
4278 * plus external target devices, and a device for the local RAID
4279 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004280 */
Scott Teelaca4a522012-01-19 14:01:19 -06004281 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004282
4283 /* Allocate the per device structures */
4284 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05004285 if (i >= HPSA_MAX_DEVICES) {
4286 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
4287 " %d devices ignored.\n", HPSA_MAX_DEVICES,
4288 ndevs_to_allocate - HPSA_MAX_DEVICES);
4289 break;
4290 }
4291
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004292 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
4293 if (!currentsd[i]) {
4294 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
4295 __FILE__, __LINE__);
Don Brace853633e2015-11-04 15:50:37 -06004296 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004297 goto out;
4298 }
4299 ndev_allocated++;
4300 }
4301
Stephen M. Cameron86452912014-05-29 10:53:49 -05004302 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004303 raid_ctlr_position = 0;
4304 else
4305 raid_ctlr_position = nphysicals + nlogicals;
4306
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004307 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06004308 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004309 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004310 u8 *lunaddrbytes, is_OBDR = 0;
Don Brace683fc442015-11-04 15:50:44 -06004311 int rc = 0;
Don Bracef2039b02015-11-04 15:51:08 -06004312 int phys_dev_index = i - (raid_ctlr_position == 0);
Don Brace64ce60c2016-07-01 13:37:31 -05004313 bool skip_device = false;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004314
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004315 physical_device = i < nphysicals + (raid_ctlr_position == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004316
4317 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004318 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
4319 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004320
Don Brace86cf7132016-09-09 16:30:17 -05004321 /* Determine if this is a lun from an external target array */
4322 tmpdevice->external =
4323 figure_external_status(h, raid_ctlr_position, i,
4324 nphysicals, nlocal_logicals);
4325
Don Brace64ce60c2016-07-01 13:37:31 -05004326 /*
4327 * Skip over some devices such as a spare.
4328 */
4329 if (!tmpdevice->external && physical_device) {
4330 skip_device = hpsa_skip_device(h, lunaddrbytes,
4331 &physdev_list->LUN[phys_dev_index]);
4332 if (skip_device)
4333 continue;
4334 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004335
4336 /* Get device type, vendor, model, device id */
Don Brace683fc442015-11-04 15:50:44 -06004337 rc = hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
4338 &is_OBDR);
4339 if (rc == -ENOMEM) {
4340 dev_warn(&h->pdev->dev,
4341 "Out of memory, rescan deferred.\n");
Don Brace853633e2015-11-04 15:50:37 -06004342 h->drv_req_rescan = 1;
Don Brace683fc442015-11-04 15:50:44 -06004343 goto out;
Don Brace853633e2015-11-04 15:50:37 -06004344 }
Don Brace683fc442015-11-04 15:50:44 -06004345 if (rc) {
4346 dev_warn(&h->pdev->dev,
4347 "Inquiry failed, skipping device.\n");
4348 continue;
4349 }
4350
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004351 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004352 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004353 this_device = currentsd[ncurrent];
4354
Scott Teel34592252015-11-04 15:52:09 -06004355 /* Turn on discovery_polling if there are ext target devices.
4356 * Event-based change notification is unreliable for those.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004357 */
Scott Teel34592252015-11-04 15:52:09 -06004358 if (!h->discovery_polling) {
4359 if (tmpdevice->external) {
4360 h->discovery_polling = 1;
4361 dev_info(&h->pdev->dev,
4362 "External target, activate discovery polling.\n");
4363 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004364 }
4365
Scott Teel34592252015-11-04 15:52:09 -06004366
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004367 *this_device = *tmpdevice;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004368 this_device->physical_device = physical_device;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004369
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004370 /*
4371 * Expose all devices except for physical devices that
4372 * are masked.
4373 */
4374 if (MASKED_DEVICE(lunaddrbytes) && this_device->physical_device)
Kevin Barnett2a168202015-11-04 15:51:21 -06004375 this_device->expose_device = 0;
4376 else
4377 this_device->expose_device = 1;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004378
Kevin Barnettd04e62b2015-11-04 15:52:34 -06004379
4380 /*
4381 * Get the SAS address for physical devices that are exposed.
4382 */
4383 if (this_device->physical_device && this_device->expose_device)
4384 hpsa_get_sas_address(h, lunaddrbytes, this_device);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004385
4386 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004387 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004388 /* We don't *really* support actual CD-ROM devices,
4389 * just "One Button Disaster Recovery" tape drive
4390 * which temporarily pretends to be a CD-ROM drive.
4391 * So we check that the device is really an OBDR tape
4392 * device by checking for "$DR-10" in bytes 43-48 of
4393 * the inquiry data.
4394 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004395 if (is_OBDR)
4396 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004397 break;
4398 case TYPE_DISK:
Don Braceaf15ed32016-02-23 15:16:15 -06004399 case TYPE_ZBC:
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004400 if (this_device->physical_device) {
Kevin Barnettb9092b72015-07-18 11:12:59 -05004401 /* The disk is in HBA mode. */
4402 /* Never use RAID mapper in HBA mode. */
Stephen M. Cameron316b2212014-02-21 16:25:15 -06004403 this_device->offload_enabled = 0;
Kevin Barnettb9092b72015-07-18 11:12:59 -05004404 hpsa_get_ioaccel_drive_info(h, this_device,
Don Bracef2039b02015-11-04 15:51:08 -06004405 physdev_list, phys_dev_index, id_phys);
4406 hpsa_get_path_info(this_device,
4407 physdev_list, phys_dev_index, id_phys);
Kevin Barnettb9092b72015-07-18 11:12:59 -05004408 }
Joe Handzikecf418d12015-04-23 09:33:04 -05004409 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004410 break;
4411 case TYPE_TAPE:
4412 case TYPE_MEDIUM_CHANGER:
Don Bracecca8f132015-12-22 10:36:48 -06004413 ncurrent++;
4414 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004415 case TYPE_ENCLOSURE:
Don Brace17a9e542016-02-23 15:16:09 -06004416 if (!this_device->external)
4417 hpsa_get_enclosure_info(h, lunaddrbytes,
Don Bracecca8f132015-12-22 10:36:48 -06004418 physdev_list, phys_dev_index,
4419 this_device);
Kevin Barnettb9092b72015-07-18 11:12:59 -05004420 ncurrent++;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004421 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004422 case TYPE_RAID:
4423 /* Only present the Smartarray HBA as a RAID controller.
4424 * If it's a RAID controller other than the HBA itself
4425 * (an external RAID controller, MSA500 or similar)
4426 * don't present it.
4427 */
4428 if (!is_hba_lunid(lunaddrbytes))
4429 break;
4430 ncurrent++;
4431 break;
4432 default:
4433 break;
4434 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05004435 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004436 break;
4437 }
Kevin Barnettd04e62b2015-11-04 15:52:34 -06004438
4439 if (h->sas_host == NULL) {
4440 int rc = 0;
4441
4442 rc = hpsa_add_sas_host(h);
4443 if (rc) {
4444 dev_warn(&h->pdev->dev,
4445 "Could not add sas host %d\n", rc);
4446 goto out;
4447 }
4448 }
4449
Don Brace8aa60682015-11-04 15:50:01 -06004450 adjust_hpsa_scsi_table(h, currentsd, ncurrent);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004451out:
4452 kfree(tmpdevice);
4453 for (i = 0; i < ndev_allocated; i++)
4454 kfree(currentsd[i]);
4455 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004456 kfree(physdev_list);
4457 kfree(logdev_list);
Scott Teel66749d02015-11-04 15:51:57 -06004458 kfree(id_ctlr);
Don Brace03383732015-01-23 16:43:30 -06004459 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004460}
4461
Webb Scalesec5cbf02015-01-23 16:44:45 -06004462static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
4463 struct scatterlist *sg)
4464{
4465 u64 addr64 = (u64) sg_dma_address(sg);
4466 unsigned int len = sg_dma_len(sg);
4467
4468 desc->Addr = cpu_to_le64(addr64);
4469 desc->Len = cpu_to_le32(len);
4470 desc->Ext = 0;
4471}
4472
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004473/*
4474 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004475 * dma mapping and fills in the scatter gather entries of the
4476 * hpsa command, cp.
4477 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004478static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004479 struct CommandList *cp,
4480 struct scsi_cmnd *cmd)
4481{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004482 struct scatterlist *sg;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004483 int use_sg, i, sg_limit, chained, last_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004484 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004485
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004486 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004487
4488 use_sg = scsi_dma_map(cmd);
4489 if (use_sg < 0)
4490 return use_sg;
4491
4492 if (!use_sg)
4493 goto sglist_finished;
4494
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004495 /*
4496 * If the number of entries is greater than the max for a single list,
4497 * then we have a chained list; we will set up all but one entry in the
4498 * first list (the last entry is saved for link information);
4499 * otherwise, we don't have a chained list and we'll set up at each of
4500 * the entries in the one list.
4501 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004502 curr_sg = cp->SG;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004503 chained = use_sg > h->max_cmd_sg_entries;
4504 sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg;
4505 last_sg = scsi_sg_count(cmd) - 1;
4506 scsi_for_each_sg(cmd, sg, sg_limit, i) {
Webb Scalesec5cbf02015-01-23 16:44:45 -06004507 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004508 curr_sg++;
4509 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06004510
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004511 if (chained) {
4512 /*
4513 * Continue with the chained list. Set curr_sg to the chained
4514 * list. Modify the limit to the total count less the entries
4515 * we've already set up. Resume the scan at the list entry
4516 * where the previous loop left off.
4517 */
4518 curr_sg = h->cmd_sg_list[cp->cmdindex];
4519 sg_limit = use_sg - sg_limit;
4520 for_each_sg(sg, sg, sg_limit, i) {
4521 hpsa_set_sg_descriptor(curr_sg, sg);
4522 curr_sg++;
4523 }
4524 }
4525
Webb Scalesec5cbf02015-01-23 16:44:45 -06004526 /* Back the pointer up to the last entry and mark it as "last". */
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004527 (curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004528
4529 if (use_sg + chained > h->maxSG)
4530 h->maxSG = use_sg + chained;
4531
4532 if (chained) {
4533 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004534 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06004535 if (hpsa_map_sg_chain_block(h, cp)) {
4536 scsi_dma_unmap(cmd);
4537 return -1;
4538 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004539 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004540 }
4541
4542sglist_finished:
4543
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004544 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004545 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004546 return 0;
4547}
4548
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004549#define IO_ACCEL_INELIGIBLE (1)
4550static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
4551{
4552 int is_write = 0;
4553 u32 block;
4554 u32 block_cnt;
4555
4556 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
4557 switch (cdb[0]) {
4558 case WRITE_6:
4559 case WRITE_12:
4560 is_write = 1;
4561 case READ_6:
4562 case READ_12:
4563 if (*cdb_len == 6) {
Don Bracec8a6c9a2015-11-04 15:50:50 -06004564 block = get_unaligned_be16(&cdb[2]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004565 block_cnt = cdb[4];
Don Bracec8a6c9a2015-11-04 15:50:50 -06004566 if (block_cnt == 0)
4567 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004568 } else {
4569 BUG_ON(*cdb_len != 12);
Don Bracec8a6c9a2015-11-04 15:50:50 -06004570 block = get_unaligned_be32(&cdb[2]);
4571 block_cnt = get_unaligned_be32(&cdb[6]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004572 }
4573 if (block_cnt > 0xffff)
4574 return IO_ACCEL_INELIGIBLE;
4575
4576 cdb[0] = is_write ? WRITE_10 : READ_10;
4577 cdb[1] = 0;
4578 cdb[2] = (u8) (block >> 24);
4579 cdb[3] = (u8) (block >> 16);
4580 cdb[4] = (u8) (block >> 8);
4581 cdb[5] = (u8) (block);
4582 cdb[6] = 0;
4583 cdb[7] = (u8) (block_cnt >> 8);
4584 cdb[8] = (u8) (block_cnt);
4585 cdb[9] = 0;
4586 *cdb_len = 10;
4587 break;
4588 }
4589 return 0;
4590}
4591
Scott Teelc3497752014-02-18 13:56:34 -06004592static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004593 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004594 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06004595{
4596 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06004597 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
4598 unsigned int len;
4599 unsigned int total_len = 0;
4600 struct scatterlist *sg;
4601 u64 addr64;
4602 int use_sg, i;
4603 struct SGDescriptor *curr_sg;
4604 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
4605
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004606 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06004607 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
4608 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004609 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004610 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004611
Matt Gatese1f7de02014-02-18 13:55:17 -06004612 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
4613
Don Brace03383732015-01-23 16:43:30 -06004614 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4615 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004616 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004617 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004618
Matt Gatese1f7de02014-02-18 13:55:17 -06004619 c->cmd_type = CMD_IOACCEL1;
4620
4621 /* Adjust the DMA address to point to the accelerated command buffer */
4622 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
4623 (c->cmdindex * sizeof(*cp));
4624 BUG_ON(c->busaddr & 0x0000007F);
4625
4626 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004627 if (use_sg < 0) {
4628 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06004629 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004630 }
Matt Gatese1f7de02014-02-18 13:55:17 -06004631
4632 if (use_sg) {
4633 curr_sg = cp->SG;
4634 scsi_for_each_sg(cmd, sg, use_sg, i) {
4635 addr64 = (u64) sg_dma_address(sg);
4636 len = sg_dma_len(sg);
4637 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004638 curr_sg->Addr = cpu_to_le64(addr64);
4639 curr_sg->Len = cpu_to_le32(len);
4640 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06004641 curr_sg++;
4642 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004643 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06004644
4645 switch (cmd->sc_data_direction) {
4646 case DMA_TO_DEVICE:
4647 control |= IOACCEL1_CONTROL_DATA_OUT;
4648 break;
4649 case DMA_FROM_DEVICE:
4650 control |= IOACCEL1_CONTROL_DATA_IN;
4651 break;
4652 case DMA_NONE:
4653 control |= IOACCEL1_CONTROL_NODATAXFER;
4654 break;
4655 default:
4656 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4657 cmd->sc_data_direction);
4658 BUG();
4659 break;
4660 }
4661 } else {
4662 control |= IOACCEL1_CONTROL_NODATAXFER;
4663 }
4664
Scott Teelc3497752014-02-18 13:56:34 -06004665 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06004666 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06004667 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
4668 cp->transfer_len = cpu_to_le32(total_len);
4669 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
4670 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
4671 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004672 memcpy(cp->CDB, cdb, cdb_len);
4673 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06004674 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004675 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06004676 return 0;
4677}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004678
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004679/*
4680 * Queue a command directly to a device behind the controller using the
4681 * I/O accelerator path.
4682 */
4683static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
4684 struct CommandList *c)
4685{
4686 struct scsi_cmnd *cmd = c->scsi_cmd;
4687 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4688
Don Brace03383732015-01-23 16:43:30 -06004689 c->phys_disk = dev;
4690
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004691 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004692 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004693}
4694
Scott Teeldd0e19f2014-02-18 13:57:31 -06004695/*
4696 * Set encryption parameters for the ioaccel2 request
4697 */
4698static void set_encrypt_ioaccel2(struct ctlr_info *h,
4699 struct CommandList *c, struct io_accel2_cmd *cp)
4700{
4701 struct scsi_cmnd *cmd = c->scsi_cmd;
4702 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4703 struct raid_map_data *map = &dev->raid_map;
4704 u64 first_block;
4705
Scott Teeldd0e19f2014-02-18 13:57:31 -06004706 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06004707 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06004708 return;
4709 /* Set the data encryption key index. */
4710 cp->dekindex = map->dekindex;
4711
4712 /* Set the encryption enable flag, encoded into direction field. */
4713 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
4714
4715 /* Set encryption tweak values based on logical block address
4716 * If block size is 512, tweak value is LBA.
4717 * For other block sizes, tweak is (LBA * block size)/ 512)
4718 */
4719 switch (cmd->cmnd[0]) {
4720 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
4721 case WRITE_6:
4722 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004723 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004724 break;
4725 case WRITE_10:
4726 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004727 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
4728 case WRITE_12:
4729 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06004730 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004731 break;
4732 case WRITE_16:
4733 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06004734 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004735 break;
4736 default:
4737 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06004738 "ERROR: %s: size (0x%x) not supported for encryption\n",
4739 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004740 BUG();
4741 break;
4742 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004743
4744 if (le32_to_cpu(map->volume_blk_size) != 512)
4745 first_block = first_block *
4746 le32_to_cpu(map->volume_blk_size)/512;
4747
4748 cp->tweak_lower = cpu_to_le32(first_block);
4749 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004750}
4751
Scott Teelc3497752014-02-18 13:56:34 -06004752static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
4753 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004754 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004755{
4756 struct scsi_cmnd *cmd = c->scsi_cmd;
4757 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
4758 struct ioaccel2_sg_element *curr_sg;
4759 int use_sg, i;
4760 struct scatterlist *sg;
4761 u64 addr64;
4762 u32 len;
4763 u32 total_len = 0;
4764
Webb Scalesd9a729f2015-04-23 09:33:27 -05004765 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06004766
Don Brace03383732015-01-23 16:43:30 -06004767 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4768 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004769 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004770 }
4771
Scott Teelc3497752014-02-18 13:56:34 -06004772 c->cmd_type = CMD_IOACCEL2;
4773 /* Adjust the DMA address to point to the accelerated command buffer */
4774 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
4775 (c->cmdindex * sizeof(*cp));
4776 BUG_ON(c->busaddr & 0x0000007F);
4777
4778 memset(cp, 0, sizeof(*cp));
4779 cp->IU_type = IOACCEL2_IU_TYPE;
4780
4781 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004782 if (use_sg < 0) {
4783 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004784 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004785 }
Scott Teelc3497752014-02-18 13:56:34 -06004786
4787 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06004788 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05004789 if (use_sg > h->ioaccel_maxsg) {
4790 addr64 = le64_to_cpu(
4791 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
4792 curr_sg->address = cpu_to_le64(addr64);
4793 curr_sg->length = 0;
4794 curr_sg->reserved[0] = 0;
4795 curr_sg->reserved[1] = 0;
4796 curr_sg->reserved[2] = 0;
4797 curr_sg->chain_indicator = 0x80;
4798
4799 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
4800 }
Scott Teelc3497752014-02-18 13:56:34 -06004801 scsi_for_each_sg(cmd, sg, use_sg, i) {
4802 addr64 = (u64) sg_dma_address(sg);
4803 len = sg_dma_len(sg);
4804 total_len += len;
4805 curr_sg->address = cpu_to_le64(addr64);
4806 curr_sg->length = cpu_to_le32(len);
4807 curr_sg->reserved[0] = 0;
4808 curr_sg->reserved[1] = 0;
4809 curr_sg->reserved[2] = 0;
4810 curr_sg->chain_indicator = 0;
4811 curr_sg++;
4812 }
4813
4814 switch (cmd->sc_data_direction) {
4815 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004816 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4817 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06004818 break;
4819 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004820 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4821 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06004822 break;
4823 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004824 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4825 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004826 break;
4827 default:
4828 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4829 cmd->sc_data_direction);
4830 BUG();
4831 break;
4832 }
4833 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06004834 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4835 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004836 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06004837
4838 /* Set encryption parameters, if necessary */
4839 set_encrypt_ioaccel2(h, c, cp);
4840
Don Brace2b08b3e2015-01-23 16:41:09 -06004841 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06004842 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06004843 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06004844
Scott Teelc3497752014-02-18 13:56:34 -06004845 cp->data_len = cpu_to_le32(total_len);
4846 cp->err_ptr = cpu_to_le64(c->busaddr +
4847 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004848 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06004849
Webb Scalesd9a729f2015-04-23 09:33:27 -05004850 /* fill in sg elements */
4851 if (use_sg > h->ioaccel_maxsg) {
4852 cp->sg_count = 1;
Don Bracea736e9b2015-11-04 15:51:14 -06004853 cp->sg[0].length = cpu_to_le32(use_sg * sizeof(cp->sg[0]));
Webb Scalesd9a729f2015-04-23 09:33:27 -05004854 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
4855 atomic_dec(&phys_disk->ioaccel_cmds_out);
4856 scsi_dma_unmap(cmd);
4857 return -1;
4858 }
4859 } else
4860 cp->sg_count = (u8) use_sg;
4861
Scott Teelc3497752014-02-18 13:56:34 -06004862 enqueue_cmd_and_start_io(h, c);
4863 return 0;
4864}
4865
4866/*
4867 * Queue a command to the correct I/O accelerator path.
4868 */
4869static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
4870 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004871 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004872{
Don Brace03383732015-01-23 16:43:30 -06004873 /* Try to honor the device's queue depth */
4874 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
4875 phys_disk->queue_depth) {
4876 atomic_dec(&phys_disk->ioaccel_cmds_out);
4877 return IO_ACCEL_INELIGIBLE;
4878 }
Scott Teelc3497752014-02-18 13:56:34 -06004879 if (h->transMethod & CFGTBL_Trans_io_accel1)
4880 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004881 cdb, cdb_len, scsi3addr,
4882 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004883 else
4884 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004885 cdb, cdb_len, scsi3addr,
4886 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004887}
4888
Scott Teel6b80b182014-02-18 13:56:55 -06004889static void raid_map_helper(struct raid_map_data *map,
4890 int offload_to_mirror, u32 *map_index, u32 *current_group)
4891{
4892 if (offload_to_mirror == 0) {
4893 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06004894 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004895 return;
4896 }
4897 do {
4898 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06004899 *current_group = *map_index /
4900 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004901 if (offload_to_mirror == *current_group)
4902 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06004903 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06004904 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004905 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004906 (*current_group)++;
4907 } else {
4908 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004909 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004910 *current_group = 0;
4911 }
4912 } while (offload_to_mirror != *current_group);
4913}
4914
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004915/*
4916 * Attempt to perform offload RAID mapping for a logical volume I/O.
4917 */
4918static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4919 struct CommandList *c)
4920{
4921 struct scsi_cmnd *cmd = c->scsi_cmd;
4922 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4923 struct raid_map_data *map = &dev->raid_map;
4924 struct raid_map_disk_data *dd = &map->data[0];
4925 int is_write = 0;
4926 u32 map_index;
4927 u64 first_block, last_block;
4928 u32 block_cnt;
4929 u32 blocks_per_row;
4930 u64 first_row, last_row;
4931 u32 first_row_offset, last_row_offset;
4932 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06004933 u64 r0_first_row, r0_last_row;
4934 u32 r5or6_blocks_per_row;
4935 u64 r5or6_first_row, r5or6_last_row;
4936 u32 r5or6_first_row_offset, r5or6_last_row_offset;
4937 u32 r5or6_first_column, r5or6_last_column;
4938 u32 total_disks_per_row;
4939 u32 stripesize;
4940 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004941 u32 map_row;
4942 u32 disk_handle;
4943 u64 disk_block;
4944 u32 disk_block_cnt;
4945 u8 cdb[16];
4946 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06004947 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004948#if BITS_PER_LONG == 32
4949 u64 tmpdiv;
4950#endif
Scott Teel6b80b182014-02-18 13:56:55 -06004951 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004952
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004953 /* check for valid opcode, get LBA and block count */
4954 switch (cmd->cmnd[0]) {
4955 case WRITE_6:
4956 is_write = 1;
4957 case READ_6:
Don Bracec8a6c9a2015-11-04 15:50:50 -06004958 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004959 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05004960 if (block_cnt == 0)
4961 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004962 break;
4963 case WRITE_10:
4964 is_write = 1;
4965 case READ_10:
4966 first_block =
4967 (((u64) cmd->cmnd[2]) << 24) |
4968 (((u64) cmd->cmnd[3]) << 16) |
4969 (((u64) cmd->cmnd[4]) << 8) |
4970 cmd->cmnd[5];
4971 block_cnt =
4972 (((u32) cmd->cmnd[7]) << 8) |
4973 cmd->cmnd[8];
4974 break;
4975 case WRITE_12:
4976 is_write = 1;
4977 case READ_12:
4978 first_block =
4979 (((u64) cmd->cmnd[2]) << 24) |
4980 (((u64) cmd->cmnd[3]) << 16) |
4981 (((u64) cmd->cmnd[4]) << 8) |
4982 cmd->cmnd[5];
4983 block_cnt =
4984 (((u32) cmd->cmnd[6]) << 24) |
4985 (((u32) cmd->cmnd[7]) << 16) |
4986 (((u32) cmd->cmnd[8]) << 8) |
4987 cmd->cmnd[9];
4988 break;
4989 case WRITE_16:
4990 is_write = 1;
4991 case READ_16:
4992 first_block =
4993 (((u64) cmd->cmnd[2]) << 56) |
4994 (((u64) cmd->cmnd[3]) << 48) |
4995 (((u64) cmd->cmnd[4]) << 40) |
4996 (((u64) cmd->cmnd[5]) << 32) |
4997 (((u64) cmd->cmnd[6]) << 24) |
4998 (((u64) cmd->cmnd[7]) << 16) |
4999 (((u64) cmd->cmnd[8]) << 8) |
5000 cmd->cmnd[9];
5001 block_cnt =
5002 (((u32) cmd->cmnd[10]) << 24) |
5003 (((u32) cmd->cmnd[11]) << 16) |
5004 (((u32) cmd->cmnd[12]) << 8) |
5005 cmd->cmnd[13];
5006 break;
5007 default:
5008 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
5009 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005010 last_block = first_block + block_cnt - 1;
5011
5012 /* check for write to non-RAID-0 */
5013 if (is_write && dev->raid_level != 0)
5014 return IO_ACCEL_INELIGIBLE;
5015
5016 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06005017 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
5018 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005019 return IO_ACCEL_INELIGIBLE;
5020
5021 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06005022 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
5023 le16_to_cpu(map->strip_size);
5024 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005025#if BITS_PER_LONG == 32
5026 tmpdiv = first_block;
5027 (void) do_div(tmpdiv, blocks_per_row);
5028 first_row = tmpdiv;
5029 tmpdiv = last_block;
5030 (void) do_div(tmpdiv, blocks_per_row);
5031 last_row = tmpdiv;
5032 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
5033 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
5034 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06005035 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005036 first_column = tmpdiv;
5037 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06005038 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005039 last_column = tmpdiv;
5040#else
5041 first_row = first_block / blocks_per_row;
5042 last_row = last_block / blocks_per_row;
5043 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
5044 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06005045 first_column = first_row_offset / strip_size;
5046 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005047#endif
5048
5049 /* if this isn't a single row/column then give to the controller */
5050 if ((first_row != last_row) || (first_column != last_column))
5051 return IO_ACCEL_INELIGIBLE;
5052
5053 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06005054 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
5055 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005056 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06005057 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06005058 map_index = (map_row * total_disks_per_row) + first_column;
5059
5060 switch (dev->raid_level) {
5061 case HPSA_RAID_0:
5062 break; /* nothing special to do */
5063 case HPSA_RAID_1:
5064 /* Handles load balance across RAID 1 members.
5065 * (2-drive R1 and R10 with even # of drives.)
5066 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005067 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005068 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005069 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06005070 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005071 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06005072 break;
5073 case HPSA_RAID_ADM:
5074 /* Handles N-way mirrors (R1-ADM)
5075 * and R10 with # of drives divisible by 3.)
5076 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005077 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06005078
5079 offload_to_mirror = dev->offload_to_mirror;
5080 raid_map_helper(map, offload_to_mirror,
5081 &map_index, &current_group);
5082 /* set mirror group to use next time */
5083 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06005084 (offload_to_mirror >=
5085 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06005086 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06005087 dev->offload_to_mirror = offload_to_mirror;
5088 /* Avoid direct use of dev->offload_to_mirror within this
5089 * function since multiple threads might simultaneously
5090 * increment it beyond the range of dev->layout_map_count -1.
5091 */
5092 break;
5093 case HPSA_RAID_5:
5094 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06005095 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06005096 break;
5097
5098 /* Verify first and last block are in same RAID group */
5099 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06005100 le16_to_cpu(map->strip_size) *
5101 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06005102 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06005103 stripesize = r5or6_blocks_per_row *
5104 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06005105#if BITS_PER_LONG == 32
5106 tmpdiv = first_block;
5107 first_group = do_div(tmpdiv, stripesize);
5108 tmpdiv = first_group;
5109 (void) do_div(tmpdiv, r5or6_blocks_per_row);
5110 first_group = tmpdiv;
5111 tmpdiv = last_block;
5112 last_group = do_div(tmpdiv, stripesize);
5113 tmpdiv = last_group;
5114 (void) do_div(tmpdiv, r5or6_blocks_per_row);
5115 last_group = tmpdiv;
5116#else
5117 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
5118 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06005119#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05005120 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06005121 return IO_ACCEL_INELIGIBLE;
5122
5123 /* Verify request is in a single row of RAID 5/6 */
5124#if BITS_PER_LONG == 32
5125 tmpdiv = first_block;
5126 (void) do_div(tmpdiv, stripesize);
5127 first_row = r5or6_first_row = r0_first_row = tmpdiv;
5128 tmpdiv = last_block;
5129 (void) do_div(tmpdiv, stripesize);
5130 r5or6_last_row = r0_last_row = tmpdiv;
5131#else
5132 first_row = r5or6_first_row = r0_first_row =
5133 first_block / stripesize;
5134 r5or6_last_row = r0_last_row = last_block / stripesize;
5135#endif
5136 if (r5or6_first_row != r5or6_last_row)
5137 return IO_ACCEL_INELIGIBLE;
5138
5139
5140 /* Verify request is in a single column */
5141#if BITS_PER_LONG == 32
5142 tmpdiv = first_block;
5143 first_row_offset = do_div(tmpdiv, stripesize);
5144 tmpdiv = first_row_offset;
5145 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
5146 r5or6_first_row_offset = first_row_offset;
5147 tmpdiv = last_block;
5148 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
5149 tmpdiv = r5or6_last_row_offset;
5150 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
5151 tmpdiv = r5or6_first_row_offset;
5152 (void) do_div(tmpdiv, map->strip_size);
5153 first_column = r5or6_first_column = tmpdiv;
5154 tmpdiv = r5or6_last_row_offset;
5155 (void) do_div(tmpdiv, map->strip_size);
5156 r5or6_last_column = tmpdiv;
5157#else
5158 first_row_offset = r5or6_first_row_offset =
5159 (u32)((first_block % stripesize) %
5160 r5or6_blocks_per_row);
5161
5162 r5or6_last_row_offset =
5163 (u32)((last_block % stripesize) %
5164 r5or6_blocks_per_row);
5165
5166 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06005167 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06005168 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06005169 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06005170#endif
5171 if (r5or6_first_column != r5or6_last_column)
5172 return IO_ACCEL_INELIGIBLE;
5173
5174 /* Request is eligible */
5175 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06005176 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06005177
5178 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06005179 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06005180 (map_row * total_disks_per_row) + first_column;
5181 break;
5182 default:
5183 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005184 }
Scott Teel6b80b182014-02-18 13:56:55 -06005185
Stephen Cameron07543e02015-01-23 16:44:14 -06005186 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
5187 return IO_ACCEL_INELIGIBLE;
5188
Don Brace03383732015-01-23 16:43:30 -06005189 c->phys_disk = dev->phys_disk[map_index];
Don Bracec3390df2016-02-23 15:16:34 -06005190 if (!c->phys_disk)
5191 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06005192
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005193 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06005194 disk_block = le64_to_cpu(map->disk_starting_blk) +
5195 first_row * le16_to_cpu(map->strip_size) +
5196 (first_row_offset - first_column *
5197 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005198 disk_block_cnt = block_cnt;
5199
5200 /* handle differing logical/physical block sizes */
5201 if (map->phys_blk_shift) {
5202 disk_block <<= map->phys_blk_shift;
5203 disk_block_cnt <<= map->phys_blk_shift;
5204 }
5205 BUG_ON(disk_block_cnt > 0xffff);
5206
5207 /* build the new CDB for the physical disk I/O */
5208 if (disk_block > 0xffffffff) {
5209 cdb[0] = is_write ? WRITE_16 : READ_16;
5210 cdb[1] = 0;
5211 cdb[2] = (u8) (disk_block >> 56);
5212 cdb[3] = (u8) (disk_block >> 48);
5213 cdb[4] = (u8) (disk_block >> 40);
5214 cdb[5] = (u8) (disk_block >> 32);
5215 cdb[6] = (u8) (disk_block >> 24);
5216 cdb[7] = (u8) (disk_block >> 16);
5217 cdb[8] = (u8) (disk_block >> 8);
5218 cdb[9] = (u8) (disk_block);
5219 cdb[10] = (u8) (disk_block_cnt >> 24);
5220 cdb[11] = (u8) (disk_block_cnt >> 16);
5221 cdb[12] = (u8) (disk_block_cnt >> 8);
5222 cdb[13] = (u8) (disk_block_cnt);
5223 cdb[14] = 0;
5224 cdb[15] = 0;
5225 cdb_len = 16;
5226 } else {
5227 cdb[0] = is_write ? WRITE_10 : READ_10;
5228 cdb[1] = 0;
5229 cdb[2] = (u8) (disk_block >> 24);
5230 cdb[3] = (u8) (disk_block >> 16);
5231 cdb[4] = (u8) (disk_block >> 8);
5232 cdb[5] = (u8) (disk_block);
5233 cdb[6] = 0;
5234 cdb[7] = (u8) (disk_block_cnt >> 8);
5235 cdb[8] = (u8) (disk_block_cnt);
5236 cdb[9] = 0;
5237 cdb_len = 10;
5238 }
5239 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06005240 dev->scsi3addr,
5241 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005242}
5243
Webb Scales25163bd2015-04-23 09:32:00 -05005244/*
5245 * Submit commands down the "normal" RAID stack path
5246 * All callers to hpsa_ciss_submit must check lockup_detected
5247 * beforehand, before (opt.) and after calling cmd_alloc
5248 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06005249static int hpsa_ciss_submit(struct ctlr_info *h,
5250 struct CommandList *c, struct scsi_cmnd *cmd,
5251 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005252{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005253 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005254 c->cmd_type = CMD_SCSI;
5255 c->scsi_cmd = cmd;
5256 c->Header.ReplyQueue = 0; /* unused in simple mode */
5257 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06005258 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005259
5260 /* Fill in the request block... */
5261
5262 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005263 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
5264 c->Request.CDBLen = cmd->cmd_len;
5265 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005266 switch (cmd->sc_data_direction) {
5267 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005268 c->Request.type_attr_dir =
5269 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005270 break;
5271 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005272 c->Request.type_attr_dir =
5273 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005274 break;
5275 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005276 c->Request.type_attr_dir =
5277 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005278 break;
5279 case DMA_BIDIRECTIONAL:
5280 /* This can happen if a buggy application does a scsi passthru
5281 * and sets both inlen and outlen to non-zero. ( see
5282 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
5283 */
5284
Stephen M. Camerona505b862014-11-14 17:27:04 -06005285 c->Request.type_attr_dir =
5286 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005287 /* This is technically wrong, and hpsa controllers should
5288 * reject it with CMD_INVALID, which is the most correct
5289 * response, but non-fibre backends appear to let it
5290 * slide by, and give the same results as if this field
5291 * were set correctly. Either way is acceptable for
5292 * our purposes here.
5293 */
5294
5295 break;
5296
5297 default:
5298 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
5299 cmd->sc_data_direction);
5300 BUG();
5301 break;
5302 }
5303
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06005304 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Webb Scales73153fe2015-04-23 09:35:04 -05005305 hpsa_cmd_resolve_and_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005306 return SCSI_MLQUEUE_HOST_BUSY;
5307 }
5308 enqueue_cmd_and_start_io(h, c);
5309 /* the cmd'll come back via intr handler in complete_scsi_command() */
5310 return 0;
5311}
5312
Stephen Cameron360c73b2015-04-23 09:32:32 -05005313static void hpsa_cmd_init(struct ctlr_info *h, int index,
5314 struct CommandList *c)
5315{
5316 dma_addr_t cmd_dma_handle, err_dma_handle;
5317
5318 /* Zero out all of commandlist except the last field, refcount */
5319 memset(c, 0, offsetof(struct CommandList, refcount));
5320 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
5321 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
5322 c->err_info = h->errinfo_pool + index;
5323 memset(c->err_info, 0, sizeof(*c->err_info));
5324 err_dma_handle = h->errinfo_pool_dhandle
5325 + index * sizeof(*c->err_info);
5326 c->cmdindex = index;
5327 c->busaddr = (u32) cmd_dma_handle;
5328 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
5329 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
5330 c->h = h;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005331 c->scsi_cmd = SCSI_CMD_IDLE;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005332}
5333
5334static void hpsa_preinitialize_commands(struct ctlr_info *h)
5335{
5336 int i;
5337
5338 for (i = 0; i < h->nr_cmds; i++) {
5339 struct CommandList *c = h->cmd_pool + i;
5340
5341 hpsa_cmd_init(h, i, c);
5342 atomic_set(&c->refcount, 0);
5343 }
5344}
5345
5346static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
5347 struct CommandList *c)
5348{
5349 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
5350
Webb Scales73153fe2015-04-23 09:35:04 -05005351 BUG_ON(c->cmdindex != index);
5352
Stephen Cameron360c73b2015-04-23 09:32:32 -05005353 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
5354 memset(c->err_info, 0, sizeof(*c->err_info));
5355 c->busaddr = (u32) cmd_dma_handle;
5356}
5357
Webb Scales592a0ad2015-04-23 09:32:48 -05005358static int hpsa_ioaccel_submit(struct ctlr_info *h,
5359 struct CommandList *c, struct scsi_cmnd *cmd,
5360 unsigned char *scsi3addr)
5361{
5362 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
5363 int rc = IO_ACCEL_INELIGIBLE;
5364
5365 cmd->host_scribble = (unsigned char *) c;
5366
5367 if (dev->offload_enabled) {
5368 hpsa_cmd_init(h, c->cmdindex, c);
5369 c->cmd_type = CMD_SCSI;
5370 c->scsi_cmd = cmd;
5371 rc = hpsa_scsi_ioaccel_raid_map(h, c);
5372 if (rc < 0) /* scsi_dma_map failed. */
5373 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05005374 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05005375 hpsa_cmd_init(h, c->cmdindex, c);
5376 c->cmd_type = CMD_SCSI;
5377 c->scsi_cmd = cmd;
5378 rc = hpsa_scsi_ioaccel_direct_map(h, c);
5379 if (rc < 0) /* scsi_dma_map failed. */
5380 rc = SCSI_MLQUEUE_HOST_BUSY;
5381 }
5382 return rc;
5383}
5384
Don Brace080ef1c2015-01-23 16:43:25 -06005385static void hpsa_command_resubmit_worker(struct work_struct *work)
5386{
5387 struct scsi_cmnd *cmd;
5388 struct hpsa_scsi_dev_t *dev;
Webb Scales8a0ff922015-04-23 09:34:11 -05005389 struct CommandList *c = container_of(work, struct CommandList, work);
Don Brace080ef1c2015-01-23 16:43:25 -06005390
5391 cmd = c->scsi_cmd;
5392 dev = cmd->device->hostdata;
5393 if (!dev) {
5394 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05005395 return hpsa_cmd_free_and_done(c->h, c, cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06005396 }
Webb Scalesd604f532015-04-23 09:35:22 -05005397 if (c->reset_pending)
5398 return hpsa_cmd_resolve_and_free(c->h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05005399 if (c->abort_pending)
5400 return hpsa_cmd_abort_and_free(c->h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05005401 if (c->cmd_type == CMD_IOACCEL2) {
5402 struct ctlr_info *h = c->h;
5403 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5404 int rc;
5405
5406 if (c2->error_data.serv_response ==
5407 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
5408 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
5409 if (rc == 0)
5410 return;
5411 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
5412 /*
5413 * If we get here, it means dma mapping failed.
5414 * Try again via scsi mid layer, which will
5415 * then get SCSI_MLQUEUE_HOST_BUSY.
5416 */
5417 cmd->result = DID_IMM_RETRY << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05005418 return hpsa_cmd_free_and_done(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05005419 }
5420 /* else, fall thru and resubmit down CISS path */
5421 }
5422 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05005423 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06005424 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
5425 /*
5426 * If we get here, it means dma mapping failed. Try
5427 * again via scsi mid layer, which will then get
5428 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05005429 *
5430 * hpsa_ciss_submit will have already freed c
5431 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06005432 */
5433 cmd->result = DID_IMM_RETRY << 16;
5434 cmd->scsi_done(cmd);
5435 }
5436}
5437
Stephen Cameron574f05d2015-01-23 16:43:20 -06005438/* Running in struct Scsi_Host->host_lock less mode */
5439static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
5440{
5441 struct ctlr_info *h;
5442 struct hpsa_scsi_dev_t *dev;
5443 unsigned char scsi3addr[8];
5444 struct CommandList *c;
5445 int rc = 0;
5446
5447 /* Get the ptr to our adapter structure out of cmd->host. */
5448 h = sdev_to_hba(cmd->device);
Webb Scales73153fe2015-04-23 09:35:04 -05005449
5450 BUG_ON(cmd->request->tag < 0);
5451
Stephen Cameron574f05d2015-01-23 16:43:20 -06005452 dev = cmd->device->hostdata;
5453 if (!dev) {
Don Braceba74fdc2016-04-27 17:14:17 -05005454 cmd->result = NOT_READY << 16; /* host byte */
5455 cmd->scsi_done(cmd);
5456 return 0;
5457 }
5458
5459 if (dev->removed) {
Stephen Cameron574f05d2015-01-23 16:43:20 -06005460 cmd->result = DID_NO_CONNECT << 16;
5461 cmd->scsi_done(cmd);
5462 return 0;
5463 }
Webb Scales73153fe2015-04-23 09:35:04 -05005464
Stephen Cameron574f05d2015-01-23 16:43:20 -06005465 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
5466
5467 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05005468 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005469 cmd->scsi_done(cmd);
5470 return 0;
5471 }
Webb Scales73153fe2015-04-23 09:35:04 -05005472 c = cmd_tagged_alloc(h, cmd);
Stephen Cameron574f05d2015-01-23 16:43:20 -06005473
Stephen Cameron407863c2015-01-23 16:44:19 -06005474 /*
5475 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06005476 * Retries always go down the normal I/O path.
5477 */
5478 if (likely(cmd->retries == 0 &&
5479 cmd->request->cmd_type == REQ_TYPE_FS &&
5480 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05005481 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
5482 if (rc == 0)
5483 return 0;
5484 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
Webb Scales73153fe2015-04-23 09:35:04 -05005485 hpsa_cmd_resolve_and_free(h, c);
Webb Scales592a0ad2015-04-23 09:32:48 -05005486 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005487 }
5488 }
5489 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
5490}
5491
Webb Scales8ebc9242015-01-23 16:44:50 -06005492static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005493{
5494 unsigned long flags;
5495
Webb Scales8ebc9242015-01-23 16:44:50 -06005496 spin_lock_irqsave(&h->scan_lock, flags);
5497 h->scan_finished = 1;
5498 wake_up_all(&h->scan_wait_queue);
5499 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005500}
5501
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005502static void hpsa_scan_start(struct Scsi_Host *sh)
5503{
5504 struct ctlr_info *h = shost_to_hba(sh);
5505 unsigned long flags;
5506
Webb Scales8ebc9242015-01-23 16:44:50 -06005507 /*
5508 * Don't let rescans be initiated on a controller known to be locked
5509 * up. If the controller locks up *during* a rescan, that thread is
5510 * probably hosed, but at least we can prevent new rescan threads from
5511 * piling up on a locked up controller.
5512 */
5513 if (unlikely(lockup_detected(h)))
5514 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005515
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005516 /* wait until any scan already in progress is finished. */
5517 while (1) {
5518 spin_lock_irqsave(&h->scan_lock, flags);
5519 if (h->scan_finished)
5520 break;
5521 spin_unlock_irqrestore(&h->scan_lock, flags);
5522 wait_event(h->scan_wait_queue, h->scan_finished);
5523 /* Note: We don't need to worry about a race between this
5524 * thread and driver unload because the midlayer will
5525 * have incremented the reference count, so unload won't
5526 * happen if we're in here.
5527 */
5528 }
5529 h->scan_finished = 0; /* mark scan as in progress */
5530 spin_unlock_irqrestore(&h->scan_lock, flags);
5531
Webb Scales8ebc9242015-01-23 16:44:50 -06005532 if (unlikely(lockup_detected(h)))
5533 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005534
Don Brace8aa60682015-11-04 15:50:01 -06005535 hpsa_update_scsi_devices(h);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005536
Webb Scales8ebc9242015-01-23 16:44:50 -06005537 hpsa_scan_complete(h);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005538}
5539
Don Brace7c0a0222015-01-23 16:41:30 -06005540static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
5541{
Don Brace03383732015-01-23 16:43:30 -06005542 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
5543
5544 if (!logical_drive)
5545 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06005546
5547 if (qdepth < 1)
5548 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06005549 else if (qdepth > logical_drive->queue_depth)
5550 qdepth = logical_drive->queue_depth;
5551
5552 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06005553}
5554
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005555static int hpsa_scan_finished(struct Scsi_Host *sh,
5556 unsigned long elapsed_time)
5557{
5558 struct ctlr_info *h = shost_to_hba(sh);
5559 unsigned long flags;
5560 int finished;
5561
5562 spin_lock_irqsave(&h->scan_lock, flags);
5563 finished = h->scan_finished;
5564 spin_unlock_irqrestore(&h->scan_lock, flags);
5565 return finished;
5566}
5567
Robert Elliott2946e822015-04-23 09:35:09 -05005568static int hpsa_scsi_host_alloc(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005569{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005570 struct Scsi_Host *sh;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005571
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005572 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
Robert Elliott2946e822015-04-23 09:35:09 -05005573 if (sh == NULL) {
5574 dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
5575 return -ENOMEM;
5576 }
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005577
5578 sh->io_port = 0;
5579 sh->n_io_port = 0;
5580 sh->this_id = -1;
5581 sh->max_channel = 3;
5582 sh->max_cmd_len = MAX_COMMAND_SIZE;
5583 sh->max_lun = HPSA_MAX_LUN;
5584 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05005585 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06005586 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005587 sh->sg_tablesize = h->maxsgentries;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06005588 sh->transportt = hpsa_sas_transport_template;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005589 sh->hostdata[0] = (unsigned long) h;
5590 sh->irq = h->intr[h->intr_mode];
5591 sh->unique_id = sh->irq;
Christoph Hellwig64d513a2015-10-08 09:28:04 +01005592
Robert Elliott2946e822015-04-23 09:35:09 -05005593 h->scsi_host = sh;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005594 return 0;
Robert Elliott2946e822015-04-23 09:35:09 -05005595}
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005596
Robert Elliott2946e822015-04-23 09:35:09 -05005597static int hpsa_scsi_add_host(struct ctlr_info *h)
5598{
5599 int rv;
5600
5601 rv = scsi_add_host(h->scsi_host, &h->pdev->dev);
5602 if (rv) {
5603 dev_err(&h->pdev->dev, "scsi_add_host failed\n");
5604 return rv;
5605 }
5606 scsi_scan_host(h->scsi_host);
5607 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005608}
5609
Webb Scalesb69324f2015-04-23 09:34:22 -05005610/*
Webb Scales73153fe2015-04-23 09:35:04 -05005611 * The block layer has already gone to the trouble of picking out a unique,
5612 * small-integer tag for this request. We use an offset from that value as
5613 * an index to select our command block. (The offset allows us to reserve the
5614 * low-numbered entries for our own uses.)
5615 */
5616static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
5617{
5618 int idx = scmd->request->tag;
5619
5620 if (idx < 0)
5621 return idx;
5622
5623 /* Offset to leave space for internal cmds. */
5624 return idx += HPSA_NRESERVED_CMDS;
5625}
5626
5627/*
Webb Scalesb69324f2015-04-23 09:34:22 -05005628 * Send a TEST_UNIT_READY command to the specified LUN using the specified
5629 * reply queue; returns zero if the unit is ready, and non-zero otherwise.
5630 */
5631static int hpsa_send_test_unit_ready(struct ctlr_info *h,
5632 struct CommandList *c, unsigned char lunaddr[],
5633 int reply_queue)
5634{
5635 int rc;
5636
5637 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
5638 (void) fill_cmd(c, TEST_UNIT_READY, h,
5639 NULL, 0, 0, lunaddr, TYPE_CMD);
Don Bracec448ecf2016-04-27 17:13:51 -05005640 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, DEFAULT_TIMEOUT);
Webb Scalesb69324f2015-04-23 09:34:22 -05005641 if (rc)
5642 return rc;
5643 /* no unmap needed here because no data xfer. */
5644
5645 /* Check if the unit is already ready. */
5646 if (c->err_info->CommandStatus == CMD_SUCCESS)
5647 return 0;
5648
5649 /*
5650 * The first command sent after reset will receive "unit attention" to
5651 * indicate that the LUN has been reset...this is actually what we're
5652 * looking for (but, success is good too).
5653 */
5654 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5655 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
5656 (c->err_info->SenseInfo[2] == NO_SENSE ||
5657 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
5658 return 0;
5659
5660 return 1;
5661}
5662
5663/*
5664 * Wait for a TEST_UNIT_READY command to complete, retrying as necessary;
5665 * returns zero when the unit is ready, and non-zero when giving up.
5666 */
5667static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h,
5668 struct CommandList *c,
5669 unsigned char lunaddr[], int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005670{
Tomas Henzl89193582014-02-21 16:25:05 -06005671 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005672 int count = 0;
5673 int waittime = 1; /* seconds */
Webb Scalesb69324f2015-04-23 09:34:22 -05005674
5675 /* Send test unit ready until device ready, or give up. */
5676 for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) {
5677
5678 /*
5679 * Wait for a bit. do this first, because if we send
5680 * the TUR right away, the reset will just abort it.
5681 */
5682 msleep(1000 * waittime);
5683
5684 rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue);
5685 if (!rc)
5686 break;
5687
5688 /* Increase wait time with each try, up to a point. */
5689 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
5690 waittime *= 2;
5691
5692 dev_warn(&h->pdev->dev,
5693 "waiting %d secs for device to become ready.\n",
5694 waittime);
5695 }
5696
5697 return rc;
5698}
5699
5700static int wait_for_device_to_become_ready(struct ctlr_info *h,
5701 unsigned char lunaddr[],
5702 int reply_queue)
5703{
5704 int first_queue;
5705 int last_queue;
5706 int rq;
5707 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005708 struct CommandList *c;
5709
Stephen Cameron45fcb862015-01-23 16:43:04 -06005710 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005711
Webb Scalesb69324f2015-04-23 09:34:22 -05005712 /*
5713 * If no specific reply queue was requested, then send the TUR
5714 * repeatedly, requesting a reply on each reply queue; otherwise execute
5715 * the loop exactly once using only the specified queue.
5716 */
5717 if (reply_queue == DEFAULT_REPLY_QUEUE) {
5718 first_queue = 0;
5719 last_queue = h->nreply_queues - 1;
5720 } else {
5721 first_queue = reply_queue;
5722 last_queue = reply_queue;
5723 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005724
Webb Scalesb69324f2015-04-23 09:34:22 -05005725 for (rq = first_queue; rq <= last_queue; rq++) {
5726 rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq);
Webb Scales25163bd2015-04-23 09:32:00 -05005727 if (rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005728 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005729 }
5730
5731 if (rc)
5732 dev_warn(&h->pdev->dev, "giving up on device.\n");
5733 else
5734 dev_warn(&h->pdev->dev, "device is ready.\n");
5735
Stephen Cameron45fcb862015-01-23 16:43:04 -06005736 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005737 return rc;
5738}
5739
5740/* Need at least one of these error handlers to keep ../scsi/hosts.c from
5741 * complaining. Doing a host- or bus-reset can't do anything good here.
5742 */
5743static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
5744{
5745 int rc;
5746 struct ctlr_info *h;
5747 struct hpsa_scsi_dev_t *dev;
Scott Teel0b9b7b62015-11-04 15:51:02 -06005748 u8 reset_type;
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005749 char msg[48];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005750
5751 /* find the controller to which the command to be aborted was sent */
5752 h = sdev_to_hba(scsicmd->device);
5753 if (h == NULL) /* paranoia */
5754 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06005755
5756 if (lockup_detected(h))
5757 return FAILED;
5758
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005759 dev = scsicmd->device->hostdata;
5760 if (!dev) {
Webb Scalesd604f532015-04-23 09:35:22 -05005761 dev_err(&h->pdev->dev, "%s: device lookup failed\n", __func__);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005762 return FAILED;
5763 }
Webb Scales25163bd2015-04-23 09:32:00 -05005764
5765 /* if controller locked up, we can guarantee command won't complete */
5766 if (lockup_detected(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005767 snprintf(msg, sizeof(msg),
5768 "cmd %d RESET FAILED, lockup detected",
5769 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005770 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005771 return FAILED;
5772 }
5773
5774 /* this reset request might be the result of a lockup; check */
5775 if (detect_controller_lockup(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005776 snprintf(msg, sizeof(msg),
5777 "cmd %d RESET FAILED, new lockup detected",
5778 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005779 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005780 return FAILED;
5781 }
5782
Webb Scalesd604f532015-04-23 09:35:22 -05005783 /* Do not attempt on controller */
5784 if (is_hba_lunid(dev->scsi3addr))
5785 return SUCCESS;
5786
Scott Teel0b9b7b62015-11-04 15:51:02 -06005787 if (is_logical_dev_addr_mode(dev->scsi3addr))
5788 reset_type = HPSA_DEVICE_RESET_MSG;
5789 else
5790 reset_type = HPSA_PHYS_TARGET_RESET;
5791
5792 sprintf(msg, "resetting %s",
5793 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ");
5794 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005795
Don Braceda03ded2015-11-04 15:50:56 -06005796 h->reset_in_progress = 1;
Stephen M. Camerond416b0c2010-02-04 08:43:21 -06005797
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005798 /* send a reset to the SCSI LUN which the command was sent to */
Scott Teel0b9b7b62015-11-04 15:51:02 -06005799 rc = hpsa_do_reset(h, dev, dev->scsi3addr, reset_type,
Webb Scalesd604f532015-04-23 09:35:22 -05005800 DEFAULT_REPLY_QUEUE);
Scott Teel0b9b7b62015-11-04 15:51:02 -06005801 sprintf(msg, "reset %s %s",
5802 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ",
5803 rc == 0 ? "completed successfully" : "failed");
Webb Scalesd604f532015-04-23 09:35:22 -05005804 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Don Braceda03ded2015-11-04 15:50:56 -06005805 h->reset_in_progress = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05005806 return rc == 0 ? SUCCESS : FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005807}
5808
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005809static void swizzle_abort_tag(u8 *tag)
5810{
5811 u8 original_tag[8];
5812
5813 memcpy(original_tag, tag, 8);
5814 tag[0] = original_tag[3];
5815 tag[1] = original_tag[2];
5816 tag[2] = original_tag[1];
5817 tag[3] = original_tag[0];
5818 tag[4] = original_tag[7];
5819 tag[5] = original_tag[6];
5820 tag[6] = original_tag[5];
5821 tag[7] = original_tag[4];
5822}
5823
Scott Teel17eb87d2014-02-18 13:55:28 -06005824static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06005825 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06005826{
Don Brace2b08b3e2015-01-23 16:41:09 -06005827 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06005828 if (c->cmd_type == CMD_IOACCEL1) {
5829 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
5830 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06005831 tag = le64_to_cpu(cm1->tag);
5832 *tagupper = cpu_to_le32(tag >> 32);
5833 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005834 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06005835 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06005836 if (c->cmd_type == CMD_IOACCEL2) {
5837 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
5838 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06005839 /* upper tag not used in ioaccel2 mode */
5840 memset(tagupper, 0, sizeof(*tagupper));
5841 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005842 return;
5843 }
Don Brace2b08b3e2015-01-23 16:41:09 -06005844 tag = le64_to_cpu(c->Header.tag);
5845 *tagupper = cpu_to_le32(tag >> 32);
5846 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06005847}
5848
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005849static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005850 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005851{
5852 int rc = IO_OK;
5853 struct CommandList *c;
5854 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06005855 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005856
Stephen Cameron45fcb862015-01-23 16:43:04 -06005857 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005858
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005859 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005860 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005861 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005862 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005863 swizzle_abort_tag(&c->Request.CDB[4]);
Don Bracec448ecf2016-04-27 17:13:51 -05005864 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, DEFAULT_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06005865 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005866 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005867 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005868 /* no unmap needed here because no data xfer. */
5869
5870 ei = c->err_info;
5871 switch (ei->CommandStatus) {
5872 case CMD_SUCCESS:
5873 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05005874 case CMD_TMF_STATUS:
5875 rc = hpsa_evaluate_tmf_status(h, c);
5876 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005877 case CMD_UNABORTABLE: /* Very common, don't make noise. */
5878 rc = -1;
5879 break;
5880 default:
5881 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005882 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06005883 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005884 rc = -1;
5885 break;
5886 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005887 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06005888 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
5889 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005890 return rc;
5891}
5892
Stephen Cameron8be986c2015-04-23 09:34:06 -05005893static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h,
5894 struct CommandList *command_to_abort, int reply_queue)
5895{
5896 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5897 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
5898 struct io_accel2_cmd *c2a =
5899 &h->ioaccel2_cmd_pool[command_to_abort->cmdindex];
Webb Scalesa58e7e52015-04-23 09:34:16 -05005900 struct scsi_cmnd *scmd = command_to_abort->scsi_cmd;
Stephen Cameron8be986c2015-04-23 09:34:06 -05005901 struct hpsa_scsi_dev_t *dev = scmd->device->hostdata;
5902
5903 /*
5904 * We're overlaying struct hpsa_tmf_struct on top of something which
5905 * was allocated as a struct io_accel2_cmd, so we better be sure it
5906 * actually fits, and doesn't overrun the error info space.
5907 */
5908 BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) >
5909 sizeof(struct io_accel2_cmd));
5910 BUG_ON(offsetof(struct io_accel2_cmd, error_data) <
5911 offsetof(struct hpsa_tmf_struct, error_len) +
5912 sizeof(ac->error_len));
5913
5914 c->cmd_type = IOACCEL2_TMF;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005915 c->scsi_cmd = SCSI_CMD_BUSY;
5916
Stephen Cameron8be986c2015-04-23 09:34:06 -05005917 /* Adjust the DMA address to point to the accelerated command buffer */
5918 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
5919 (c->cmdindex * sizeof(struct io_accel2_cmd));
5920 BUG_ON(c->busaddr & 0x0000007F);
5921
5922 memset(ac, 0, sizeof(*c2)); /* yes this is correct */
5923 ac->iu_type = IOACCEL2_IU_TMF_TYPE;
5924 ac->reply_queue = reply_queue;
5925 ac->tmf = IOACCEL2_TMF_ABORT;
5926 ac->it_nexus = cpu_to_le32(dev->ioaccel_handle);
5927 memset(ac->lun_id, 0, sizeof(ac->lun_id));
5928 ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT);
5929 ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag));
5930 ac->error_ptr = cpu_to_le64(c->busaddr +
5931 offsetof(struct io_accel2_cmd, error_data));
5932 ac->error_len = cpu_to_le32(sizeof(c2->error_data));
5933}
5934
Scott Teel54b6e9e2014-02-18 13:56:45 -06005935/* ioaccel2 path firmware cannot handle abort task requests.
5936 * Change abort requests to physical target reset, and send to the
5937 * address of the physical disk used for the ioaccel 2 command.
5938 * Return 0 on success (IO_OK)
5939 * -1 on failure
5940 */
5941
5942static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005943 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06005944{
5945 int rc = IO_OK;
5946 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
5947 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
5948 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
5949 unsigned char *psa = &phys_scsi3addr[0];
5950
5951 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06005952 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005953 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
5954 if (dev == NULL) {
5955 dev_warn(&h->pdev->dev,
5956 "Cannot abort: no device pointer for command.\n");
5957 return -1; /* not abortable */
5958 }
5959
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005960 if (h->raid_offload_debug > 0)
5961 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05005962 "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 -06005963 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05005964 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005965 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
5966 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
5967
Scott Teel54b6e9e2014-02-18 13:56:45 -06005968 if (!dev->offload_enabled) {
5969 dev_warn(&h->pdev->dev,
5970 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
5971 return -1; /* not abortable */
5972 }
5973
5974 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
5975 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
5976 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
5977 return -1; /* not abortable */
5978 }
5979
5980 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005981 if (h->raid_offload_debug > 0)
5982 dev_info(&h->pdev->dev,
5983 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5984 psa[0], psa[1], psa[2], psa[3],
5985 psa[4], psa[5], psa[6], psa[7]);
Webb Scalesd604f532015-04-23 09:35:22 -05005986 rc = hpsa_do_reset(h, dev, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005987 if (rc != 0) {
5988 dev_warn(&h->pdev->dev,
5989 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5990 psa[0], psa[1], psa[2], psa[3],
5991 psa[4], psa[5], psa[6], psa[7]);
5992 return rc; /* failed to reset */
5993 }
5994
5995 /* wait for device to recover */
Webb Scalesb69324f2015-04-23 09:34:22 -05005996 if (wait_for_device_to_become_ready(h, psa, reply_queue) != 0) {
Scott Teel54b6e9e2014-02-18 13:56:45 -06005997 dev_warn(&h->pdev->dev,
5998 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5999 psa[0], psa[1], psa[2], psa[3],
6000 psa[4], psa[5], psa[6], psa[7]);
6001 return -1; /* failed to recover */
6002 }
6003
6004 /* device recovered */
6005 dev_info(&h->pdev->dev,
6006 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
6007 psa[0], psa[1], psa[2], psa[3],
6008 psa[4], psa[5], psa[6], psa[7]);
6009
6010 return rc; /* success */
6011}
6012
Stephen Cameron8be986c2015-04-23 09:34:06 -05006013static int hpsa_send_abort_ioaccel2(struct ctlr_info *h,
6014 struct CommandList *abort, int reply_queue)
6015{
6016 int rc = IO_OK;
6017 struct CommandList *c;
6018 __le32 taglower, tagupper;
6019 struct hpsa_scsi_dev_t *dev;
6020 struct io_accel2_cmd *c2;
6021
6022 dev = abort->scsi_cmd->device->hostdata;
6023 if (!dev->offload_enabled && !dev->hba_ioaccel_enabled)
6024 return -1;
6025
6026 c = cmd_alloc(h);
6027 setup_ioaccel2_abort_cmd(c, h, abort, reply_queue);
6028 c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
Don Bracec448ecf2016-04-27 17:13:51 -05006029 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, DEFAULT_TIMEOUT);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006030 hpsa_get_tag(h, abort, &taglower, &tagupper);
6031 dev_dbg(&h->pdev->dev,
6032 "%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n",
6033 __func__, tagupper, taglower);
6034 /* no unmap needed here because no data xfer. */
6035
6036 dev_dbg(&h->pdev->dev,
6037 "%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n",
6038 __func__, tagupper, taglower, c2->error_data.serv_response);
6039 switch (c2->error_data.serv_response) {
6040 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
6041 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
6042 rc = 0;
6043 break;
6044 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
6045 case IOACCEL2_SERV_RESPONSE_FAILURE:
6046 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
6047 rc = -1;
6048 break;
6049 default:
6050 dev_warn(&h->pdev->dev,
6051 "%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n",
6052 __func__, tagupper, taglower,
6053 c2->error_data.serv_response);
6054 rc = -1;
6055 }
6056 cmd_free(h, c);
6057 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__,
6058 tagupper, taglower);
6059 return rc;
6060}
6061
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05006062static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Don Brace39f3deb2016-02-23 15:16:28 -06006063 struct hpsa_scsi_dev_t *dev, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05006064{
Stephen Cameron8be986c2015-04-23 09:34:06 -05006065 /*
6066 * ioccelerator mode 2 commands should be aborted via the
Scott Teel54b6e9e2014-02-18 13:56:45 -06006067 * accelerated path, since RAID path is unaware of these commands,
Stephen Cameron8be986c2015-04-23 09:34:06 -05006068 * but not all underlying firmware can handle abort TMF.
6069 * Change abort to physical device reset when abort TMF is unsupported.
Scott Teel54b6e9e2014-02-18 13:56:45 -06006070 */
Stephen Cameron8be986c2015-04-23 09:34:06 -05006071 if (abort->cmd_type == CMD_IOACCEL2) {
Don Brace39f3deb2016-02-23 15:16:28 -06006072 if ((HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags) ||
6073 dev->physical_device)
Stephen Cameron8be986c2015-04-23 09:34:06 -05006074 return hpsa_send_abort_ioaccel2(h, abort,
6075 reply_queue);
6076 else
Don Brace39f3deb2016-02-23 15:16:28 -06006077 return hpsa_send_reset_as_abort_ioaccel2(h,
6078 dev->scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05006079 abort, reply_queue);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006080 }
Don Brace39f3deb2016-02-23 15:16:28 -06006081 return hpsa_send_abort(h, dev->scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05006082}
6083
6084/* Find out which reply queue a command was meant to return on */
6085static int hpsa_extract_reply_queue(struct ctlr_info *h,
6086 struct CommandList *c)
6087{
6088 if (c->cmd_type == CMD_IOACCEL2)
6089 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
6090 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05006091}
6092
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006093/*
6094 * Limit concurrency of abort commands to prevent
6095 * over-subscription of commands
6096 */
6097static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
6098{
6099#define ABORT_CMD_WAIT_MSECS 5000
6100 return !wait_event_timeout(h->abort_cmd_wait_queue,
6101 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
6102 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
6103}
6104
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006105/* Send an abort for the specified command.
6106 * If the device and controller support it,
6107 * send a task abort request.
6108 */
6109static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
6110{
6111
Webb Scalesa58e7e52015-04-23 09:34:16 -05006112 int rc;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006113 struct ctlr_info *h;
6114 struct hpsa_scsi_dev_t *dev;
6115 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006116 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
6117 char msg[256]; /* For debug messaging. */
6118 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06006119 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05006120 int refcount, reply_queue;
6121
6122 if (sc == NULL)
6123 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006124
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006125 if (sc->device == NULL)
6126 return FAILED;
6127
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006128 /* Find the controller of the command to be aborted */
6129 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006130 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006131 return FAILED;
6132
Webb Scales25163bd2015-04-23 09:32:00 -05006133 /* Find the device of the command to be aborted */
6134 dev = sc->device->hostdata;
6135 if (!dev) {
6136 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
6137 msg);
Don Bracee3458932015-01-23 16:44:24 -06006138 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05006139 }
6140
6141 /* If controller locked up, we can guarantee command won't complete */
6142 if (lockup_detected(h)) {
6143 hpsa_show_dev_msg(KERN_WARNING, h, dev,
6144 "ABORT FAILED, lockup detected");
6145 return FAILED;
6146 }
6147
6148 /* This is a good time to check if controller lockup has occurred */
6149 if (detect_controller_lockup(h)) {
6150 hpsa_show_dev_msg(KERN_WARNING, h, dev,
6151 "ABORT FAILED, new lockup detected");
6152 return FAILED;
6153 }
Don Bracee3458932015-01-23 16:44:24 -06006154
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006155 /* Check that controller supports some kind of task abort */
6156 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
6157 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6158 return FAILED;
6159
6160 memset(msg, 0, sizeof(msg));
Robert Elliott4b761552015-04-23 09:33:54 -05006161 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006162 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05006163 sc->device->id, sc->device->lun,
Robert Elliott4b761552015-04-23 09:33:54 -05006164 "Aborting command", sc);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006165
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006166 /* Get SCSI command to be aborted */
6167 abort = (struct CommandList *) sc->host_scribble;
6168 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06006169 /* This can happen if the command already completed. */
6170 return SUCCESS;
6171 }
6172 refcount = atomic_inc_return(&abort->refcount);
6173 if (refcount == 1) { /* Command is done already. */
6174 cmd_free(h, abort);
6175 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006176 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006177
6178 /* Don't bother trying the abort if we know it won't work. */
6179 if (abort->cmd_type != CMD_IOACCEL2 &&
6180 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
6181 cmd_free(h, abort);
6182 return FAILED;
6183 }
6184
Webb Scalesa58e7e52015-04-23 09:34:16 -05006185 /*
6186 * Check that we're aborting the right command.
6187 * It's possible the CommandList already completed and got re-used.
6188 */
6189 if (abort->scsi_cmd != sc) {
6190 cmd_free(h, abort);
6191 return SUCCESS;
6192 }
6193
6194 abort->abort_pending = true;
Scott Teel17eb87d2014-02-18 13:55:28 -06006195 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05006196 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06006197 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06006198 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006199 if (as != NULL)
Robert Elliott4b761552015-04-23 09:33:54 -05006200 ml += sprintf(msg+ml,
6201 "CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ",
6202 as->cmd_len, as->cmnd[0], as->cmnd[1],
6203 as->serial_number);
6204 dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05006205 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Robert Elliott4b761552015-04-23 09:33:54 -05006206
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006207 /*
6208 * Command is in flight, or possibly already completed
6209 * by the firmware (but not to the scsi mid layer) but we can't
6210 * distinguish which. Send the abort down.
6211 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006212 if (wait_for_available_abort_cmd(h)) {
6213 dev_warn(&h->pdev->dev,
Robert Elliott4b761552015-04-23 09:33:54 -05006214 "%s FAILED, timeout waiting for an abort command to become available.\n",
6215 msg);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006216 cmd_free(h, abort);
6217 return FAILED;
6218 }
Don Brace39f3deb2016-02-23 15:16:28 -06006219 rc = hpsa_send_abort_both_ways(h, dev, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006220 atomic_inc(&h->abort_cmds_available);
6221 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006222 if (rc != 0) {
Robert Elliott4b761552015-04-23 09:33:54 -05006223 dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05006224 hpsa_show_dev_msg(KERN_WARNING, h, dev,
Robert Elliott4b761552015-04-23 09:33:54 -05006225 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06006226 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006227 return FAILED;
6228 }
Robert Elliott4b761552015-04-23 09:33:54 -05006229 dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg);
Webb Scalesd604f532015-04-23 09:35:22 -05006230 wait_event(h->event_sync_wait_queue,
Webb Scalesa58e7e52015-04-23 09:34:16 -05006231 abort->scsi_cmd != sc || lockup_detected(h));
Webb Scales281a7fd2015-01-23 16:43:35 -06006232 cmd_free(h, abort);
Webb Scalesa58e7e52015-04-23 09:34:16 -05006233 return !lockup_detected(h) ? SUCCESS : FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006234}
6235
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006236/*
Webb Scales73153fe2015-04-23 09:35:04 -05006237 * For operations with an associated SCSI command, a command block is allocated
6238 * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the
6239 * block request tag as an index into a table of entries. cmd_tagged_free() is
6240 * the complement, although cmd_free() may be called instead.
6241 */
6242static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
6243 struct scsi_cmnd *scmd)
6244{
6245 int idx = hpsa_get_cmd_index(scmd);
6246 struct CommandList *c = h->cmd_pool + idx;
6247
6248 if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) {
6249 dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n",
6250 idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1);
6251 /* The index value comes from the block layer, so if it's out of
6252 * bounds, it's probably not our bug.
6253 */
6254 BUG();
6255 }
6256
6257 atomic_inc(&c->refcount);
6258 if (unlikely(!hpsa_is_cmd_idle(c))) {
6259 /*
6260 * We expect that the SCSI layer will hand us a unique tag
6261 * value. Thus, there should never be a collision here between
6262 * two requests...because if the selected command isn't idle
6263 * then someone is going to be very disappointed.
6264 */
6265 dev_err(&h->pdev->dev,
6266 "tag collision (tag=%d) in cmd_tagged_alloc().\n",
6267 idx);
6268 if (c->scsi_cmd != NULL)
6269 scsi_print_command(c->scsi_cmd);
6270 scsi_print_command(scmd);
6271 }
6272
6273 hpsa_cmd_partial_init(h, idx, c);
6274 return c;
6275}
6276
6277static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c)
6278{
6279 /*
6280 * Release our reference to the block. We don't need to do anything
6281 * else to free it, because it is accessed by index. (There's no point
6282 * in checking the result of the decrement, since we cannot guarantee
6283 * that there isn't a concurrent abort which is also accessing it.)
6284 */
6285 (void)atomic_dec(&c->refcount);
6286}
6287
6288/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006289 * For operations that cannot sleep, a command block is allocated at init,
6290 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
6291 * which ones are free or in use. Lock must be held when calling this.
6292 * cmd_free() is the complement.
Robert Elliottbf43caf2015-04-23 09:33:38 -05006293 * This function never gives up and returns NULL. If it hangs,
6294 * another thread must call cmd_free() to free some tags.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006295 */
Webb Scales281a7fd2015-01-23 16:43:35 -06006296
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006297static struct CommandList *cmd_alloc(struct ctlr_info *h)
6298{
6299 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05006300 int refcount, i;
Webb Scales73153fe2015-04-23 09:35:04 -05006301 int offset = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006302
Robert Elliott33811022015-01-23 16:43:41 -06006303 /*
6304 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06006305 * multiple threads could get in here, and one thread could
6306 * be scanning through the list of bits looking for a free
6307 * one, but the free ones are always behind him, and other
6308 * threads sneak in behind him and eat them before he can
6309 * get to them, so that while there is always a free one, a
6310 * very unlucky thread might be starved anyway, never able to
6311 * beat the other threads. In reality, this happens so
6312 * infrequently as to be indistinguishable from never.
Webb Scales73153fe2015-04-23 09:35:04 -05006313 *
6314 * Note that we start allocating commands before the SCSI host structure
6315 * is initialized. Since the search starts at bit zero, this
6316 * all works, since we have at least one command structure available;
6317 * however, it means that the structures with the low indexes have to be
6318 * reserved for driver-initiated requests, while requests from the block
6319 * layer will use the higher indexes.
Stephen M. Cameron4c413122014-11-14 17:27:29 -06006320 */
6321
Webb Scales281a7fd2015-01-23 16:43:35 -06006322 for (;;) {
Webb Scales73153fe2015-04-23 09:35:04 -05006323 i = find_next_zero_bit(h->cmd_pool_bits,
6324 HPSA_NRESERVED_CMDS,
6325 offset);
6326 if (unlikely(i >= HPSA_NRESERVED_CMDS)) {
Webb Scales281a7fd2015-01-23 16:43:35 -06006327 offset = 0;
6328 continue;
6329 }
6330 c = h->cmd_pool + i;
6331 refcount = atomic_inc_return(&c->refcount);
6332 if (unlikely(refcount > 1)) {
6333 cmd_free(h, c); /* already in use */
Webb Scales73153fe2015-04-23 09:35:04 -05006334 offset = (i + 1) % HPSA_NRESERVED_CMDS;
Webb Scales281a7fd2015-01-23 16:43:35 -06006335 continue;
6336 }
6337 set_bit(i & (BITS_PER_LONG - 1),
6338 h->cmd_pool_bits + (i / BITS_PER_LONG));
6339 break; /* it's ours now. */
6340 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05006341 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006342 return c;
6343}
6344
Webb Scales73153fe2015-04-23 09:35:04 -05006345/*
6346 * This is the complementary operation to cmd_alloc(). Note, however, in some
6347 * corner cases it may also be used to free blocks allocated by
6348 * cmd_tagged_alloc() in which case the ref-count decrement does the trick and
6349 * the clear-bit is harmless.
6350 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006351static void cmd_free(struct ctlr_info *h, struct CommandList *c)
6352{
Webb Scales281a7fd2015-01-23 16:43:35 -06006353 if (atomic_dec_and_test(&c->refcount)) {
6354 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006355
Webb Scales281a7fd2015-01-23 16:43:35 -06006356 i = c - h->cmd_pool;
6357 clear_bit(i & (BITS_PER_LONG - 1),
6358 h->cmd_pool_bits + (i / BITS_PER_LONG));
6359 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006360}
6361
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006362#ifdef CONFIG_COMPAT
6363
Don Brace42a91642014-11-14 17:26:27 -06006364static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
6365 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006366{
6367 IOCTL32_Command_struct __user *arg32 =
6368 (IOCTL32_Command_struct __user *) arg;
6369 IOCTL_Command_struct arg64;
6370 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
6371 int err;
6372 u32 cp;
6373
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06006374 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006375 err = 0;
6376 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
6377 sizeof(arg64.LUN_info));
6378 err |= copy_from_user(&arg64.Request, &arg32->Request,
6379 sizeof(arg64.Request));
6380 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
6381 sizeof(arg64.error_info));
6382 err |= get_user(arg64.buf_size, &arg32->buf_size);
6383 err |= get_user(cp, &arg32->buf);
6384 arg64.buf = compat_ptr(cp);
6385 err |= copy_to_user(p, &arg64, sizeof(arg64));
6386
6387 if (err)
6388 return -EFAULT;
6389
Don Brace42a91642014-11-14 17:26:27 -06006390 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006391 if (err)
6392 return err;
6393 err |= copy_in_user(&arg32->error_info, &p->error_info,
6394 sizeof(arg32->error_info));
6395 if (err)
6396 return -EFAULT;
6397 return err;
6398}
6399
6400static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06006401 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006402{
6403 BIG_IOCTL32_Command_struct __user *arg32 =
6404 (BIG_IOCTL32_Command_struct __user *) arg;
6405 BIG_IOCTL_Command_struct arg64;
6406 BIG_IOCTL_Command_struct __user *p =
6407 compat_alloc_user_space(sizeof(arg64));
6408 int err;
6409 u32 cp;
6410
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06006411 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006412 err = 0;
6413 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
6414 sizeof(arg64.LUN_info));
6415 err |= copy_from_user(&arg64.Request, &arg32->Request,
6416 sizeof(arg64.Request));
6417 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
6418 sizeof(arg64.error_info));
6419 err |= get_user(arg64.buf_size, &arg32->buf_size);
6420 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
6421 err |= get_user(cp, &arg32->buf);
6422 arg64.buf = compat_ptr(cp);
6423 err |= copy_to_user(p, &arg64, sizeof(arg64));
6424
6425 if (err)
6426 return -EFAULT;
6427
Don Brace42a91642014-11-14 17:26:27 -06006428 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006429 if (err)
6430 return err;
6431 err |= copy_in_user(&arg32->error_info, &p->error_info,
6432 sizeof(arg32->error_info));
6433 if (err)
6434 return -EFAULT;
6435 return err;
6436}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06006437
Don Brace42a91642014-11-14 17:26:27 -06006438static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06006439{
6440 switch (cmd) {
6441 case CCISS_GETPCIINFO:
6442 case CCISS_GETINTINFO:
6443 case CCISS_SETINTINFO:
6444 case CCISS_GETNODENAME:
6445 case CCISS_SETNODENAME:
6446 case CCISS_GETHEARTBEAT:
6447 case CCISS_GETBUSTYPES:
6448 case CCISS_GETFIRMVER:
6449 case CCISS_GETDRIVVER:
6450 case CCISS_REVALIDVOLS:
6451 case CCISS_DEREGDISK:
6452 case CCISS_REGNEWDISK:
6453 case CCISS_REGNEWD:
6454 case CCISS_RESCANDISK:
6455 case CCISS_GETLUNINFO:
6456 return hpsa_ioctl(dev, cmd, arg);
6457
6458 case CCISS_PASSTHRU32:
6459 return hpsa_ioctl32_passthru(dev, cmd, arg);
6460 case CCISS_BIG_PASSTHRU32:
6461 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
6462
6463 default:
6464 return -ENOIOCTLCMD;
6465 }
6466}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006467#endif
6468
6469static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
6470{
6471 struct hpsa_pci_info pciinfo;
6472
6473 if (!argp)
6474 return -EINVAL;
6475 pciinfo.domain = pci_domain_nr(h->pdev->bus);
6476 pciinfo.bus = h->pdev->bus->number;
6477 pciinfo.dev_fn = h->pdev->devfn;
6478 pciinfo.board_id = h->board_id;
6479 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
6480 return -EFAULT;
6481 return 0;
6482}
6483
6484static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
6485{
6486 DriverVer_type DriverVer;
6487 unsigned char vmaj, vmin, vsubmin;
6488 int rc;
6489
6490 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
6491 &vmaj, &vmin, &vsubmin);
6492 if (rc != 3) {
6493 dev_info(&h->pdev->dev, "driver version string '%s' "
6494 "unrecognized.", HPSA_DRIVER_VERSION);
6495 vmaj = 0;
6496 vmin = 0;
6497 vsubmin = 0;
6498 }
6499 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
6500 if (!argp)
6501 return -EINVAL;
6502 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
6503 return -EFAULT;
6504 return 0;
6505}
6506
6507static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6508{
6509 IOCTL_Command_struct iocommand;
6510 struct CommandList *c;
6511 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006512 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006513 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006514
6515 if (!argp)
6516 return -EINVAL;
6517 if (!capable(CAP_SYS_RAWIO))
6518 return -EPERM;
6519 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
6520 return -EFAULT;
6521 if ((iocommand.buf_size < 1) &&
6522 (iocommand.Request.Type.Direction != XFER_NONE)) {
6523 return -EINVAL;
6524 }
6525 if (iocommand.buf_size > 0) {
6526 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
6527 if (buff == NULL)
Robert Elliott2dd02d72015-04-23 09:33:43 -05006528 return -ENOMEM;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006529 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006530 /* Copy the data into the buffer we created */
6531 if (copy_from_user(buff, iocommand.buf,
6532 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006533 rc = -EFAULT;
6534 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006535 }
6536 } else {
6537 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006538 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006539 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006540 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006541
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006542 /* Fill in the command type */
6543 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006544 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006545 /* Fill in Command Header */
6546 c->Header.ReplyQueue = 0; /* unused in simple mode */
6547 if (iocommand.buf_size > 0) { /* buffer to fill */
6548 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006549 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006550 } else { /* no buffers to fill */
6551 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006552 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006553 }
6554 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006555
6556 /* Fill in Request block */
6557 memcpy(&c->Request, &iocommand.Request,
6558 sizeof(c->Request));
6559
6560 /* Fill in the scatter gather information */
6561 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006562 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006563 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006564 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
6565 c->SG[0].Addr = cpu_to_le64(0);
6566 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006567 rc = -ENOMEM;
6568 goto out;
6569 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006570 c->SG[0].Addr = cpu_to_le64(temp64);
6571 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
6572 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006573 }
Don Bracec448ecf2016-04-27 17:13:51 -05006574 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
Don Brace3fb134c2016-07-01 13:37:38 -05006575 NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05006576 if (iocommand.buf_size > 0)
6577 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006578 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006579 if (rc) {
6580 rc = -EIO;
6581 goto out;
6582 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006583
6584 /* Copy the error information out */
6585 memcpy(&iocommand.error_info, c->err_info,
6586 sizeof(iocommand.error_info));
6587 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006588 rc = -EFAULT;
6589 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006590 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006591 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006592 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006593 /* Copy the data out of the buffer we created */
6594 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006595 rc = -EFAULT;
6596 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006597 }
6598 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006599out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006600 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006601out_kfree:
6602 kfree(buff);
6603 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006604}
6605
6606static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6607{
6608 BIG_IOCTL_Command_struct *ioc;
6609 struct CommandList *c;
6610 unsigned char **buff = NULL;
6611 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006612 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006613 BYTE sg_used = 0;
6614 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006615 u32 left;
6616 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006617 BYTE __user *data_ptr;
6618
6619 if (!argp)
6620 return -EINVAL;
6621 if (!capable(CAP_SYS_RAWIO))
6622 return -EPERM;
6623 ioc = (BIG_IOCTL_Command_struct *)
6624 kmalloc(sizeof(*ioc), GFP_KERNEL);
6625 if (!ioc) {
6626 status = -ENOMEM;
6627 goto cleanup1;
6628 }
6629 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
6630 status = -EFAULT;
6631 goto cleanup1;
6632 }
6633 if ((ioc->buf_size < 1) &&
6634 (ioc->Request.Type.Direction != XFER_NONE)) {
6635 status = -EINVAL;
6636 goto cleanup1;
6637 }
6638 /* Check kmalloc limits using all SGs */
6639 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
6640 status = -EINVAL;
6641 goto cleanup1;
6642 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006643 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006644 status = -EINVAL;
6645 goto cleanup1;
6646 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006647 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006648 if (!buff) {
6649 status = -ENOMEM;
6650 goto cleanup1;
6651 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006652 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006653 if (!buff_size) {
6654 status = -ENOMEM;
6655 goto cleanup1;
6656 }
6657 left = ioc->buf_size;
6658 data_ptr = ioc->buf;
6659 while (left) {
6660 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
6661 buff_size[sg_used] = sz;
6662 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
6663 if (buff[sg_used] == NULL) {
6664 status = -ENOMEM;
6665 goto cleanup1;
6666 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006667 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006668 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05006669 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006670 goto cleanup1;
6671 }
6672 } else
6673 memset(buff[sg_used], 0, sz);
6674 left -= sz;
6675 data_ptr += sz;
6676 sg_used++;
6677 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006678 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006679
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006680 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006681 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006682 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006683 c->Header.SGList = (u8) sg_used;
6684 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006685 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006686 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
6687 if (ioc->buf_size > 0) {
6688 int i;
6689 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006690 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006691 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006692 if (dma_mapping_error(&h->pdev->dev,
6693 (dma_addr_t) temp64)) {
6694 c->SG[i].Addr = cpu_to_le64(0);
6695 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006696 hpsa_pci_unmap(h->pdev, c, i,
6697 PCI_DMA_BIDIRECTIONAL);
6698 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006699 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006700 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006701 c->SG[i].Addr = cpu_to_le64(temp64);
6702 c->SG[i].Len = cpu_to_le32(buff_size[i]);
6703 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006704 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006705 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006706 }
Don Bracec448ecf2016-04-27 17:13:51 -05006707 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
Don Brace3fb134c2016-07-01 13:37:38 -05006708 NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006709 if (sg_used)
6710 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006711 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006712 if (status) {
6713 status = -EIO;
6714 goto cleanup0;
6715 }
6716
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006717 /* Copy the error information out */
6718 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
6719 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006720 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006721 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006722 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006723 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006724 int i;
6725
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006726 /* Copy the data out of the buffer we created */
6727 BYTE __user *ptr = ioc->buf;
6728 for (i = 0; i < sg_used; i++) {
6729 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006730 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006731 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006732 }
6733 ptr += buff_size[i];
6734 }
6735 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006736 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006737cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006738 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006739cleanup1:
6740 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006741 int i;
6742
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006743 for (i = 0; i < sg_used; i++)
6744 kfree(buff[i]);
6745 kfree(buff);
6746 }
6747 kfree(buff_size);
6748 kfree(ioc);
6749 return status;
6750}
6751
6752static void check_ioctl_unit_attention(struct ctlr_info *h,
6753 struct CommandList *c)
6754{
6755 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
6756 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
6757 (void) check_for_unit_attention(h, c);
6758}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006759
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006760/*
6761 * ioctl
6762 */
Don Brace42a91642014-11-14 17:26:27 -06006763static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006764{
6765 struct ctlr_info *h;
6766 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006767 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006768
6769 h = sdev_to_hba(dev);
6770
6771 switch (cmd) {
6772 case CCISS_DEREGDISK:
6773 case CCISS_REGNEWDISK:
6774 case CCISS_REGNEWD:
Stephen M. Camerona08a84712010-02-04 08:43:16 -06006775 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006776 return 0;
6777 case CCISS_GETPCIINFO:
6778 return hpsa_getpciinfo_ioctl(h, argp);
6779 case CCISS_GETDRIVVER:
6780 return hpsa_getdrivver_ioctl(h, argp);
6781 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006782 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006783 return -EAGAIN;
6784 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006785 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006786 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006787 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006788 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006789 return -EAGAIN;
6790 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006791 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006792 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006793 default:
6794 return -ENOTTY;
6795 }
6796}
6797
Robert Elliottbf43caf2015-04-23 09:33:38 -05006798static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006799 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006800{
6801 struct CommandList *c;
6802
6803 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006804
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006805 /* fill_cmd can't fail here, no data buffer to map */
6806 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006807 RAID_CTLR_LUNID, TYPE_MSG);
6808 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
6809 c->waiting = NULL;
6810 enqueue_cmd_and_start_io(h, c);
6811 /* Don't wait for completion, the reset won't complete. Don't free
6812 * the command either. This is the last command we will send before
6813 * re-initializing everything, so it doesn't matter and won't leak.
6814 */
Robert Elliottbf43caf2015-04-23 09:33:38 -05006815 return;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006816}
6817
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006818static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006819 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006820 int cmd_type)
6821{
6822 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006823 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006824
6825 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006826 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006827 c->Header.ReplyQueue = 0;
6828 if (buff != NULL && size > 0) {
6829 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006830 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006831 } else {
6832 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006833 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006834 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006835 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
6836
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006837 if (cmd_type == TYPE_CMD) {
6838 switch (cmd) {
6839 case HPSA_INQUIRY:
6840 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006841 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006842 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006843 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006844 }
6845 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006846 c->Request.type_attr_dir =
6847 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006848 c->Request.Timeout = 0;
6849 c->Request.CDB[0] = HPSA_INQUIRY;
6850 c->Request.CDB[4] = size & 0xFF;
6851 break;
6852 case HPSA_REPORT_LOG:
6853 case HPSA_REPORT_PHYS:
6854 /* Talking to controller so It's a physical command
6855 mode = 00 target = 0. Nothing to write.
6856 */
6857 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006858 c->Request.type_attr_dir =
6859 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006860 c->Request.Timeout = 0;
6861 c->Request.CDB[0] = cmd;
6862 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6863 c->Request.CDB[7] = (size >> 16) & 0xFF;
6864 c->Request.CDB[8] = (size >> 8) & 0xFF;
6865 c->Request.CDB[9] = size & 0xFF;
6866 break;
Scott Teelc2adae42015-11-04 15:52:16 -06006867 case BMIC_SENSE_DIAG_OPTIONS:
6868 c->Request.CDBLen = 16;
6869 c->Request.type_attr_dir =
6870 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6871 c->Request.Timeout = 0;
6872 /* Spec says this should be BMIC_WRITE */
6873 c->Request.CDB[0] = BMIC_READ;
6874 c->Request.CDB[6] = BMIC_SENSE_DIAG_OPTIONS;
6875 break;
6876 case BMIC_SET_DIAG_OPTIONS:
6877 c->Request.CDBLen = 16;
6878 c->Request.type_attr_dir =
6879 TYPE_ATTR_DIR(cmd_type,
6880 ATTR_SIMPLE, XFER_WRITE);
6881 c->Request.Timeout = 0;
6882 c->Request.CDB[0] = BMIC_WRITE;
6883 c->Request.CDB[6] = BMIC_SET_DIAG_OPTIONS;
6884 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006885 case HPSA_CACHE_FLUSH:
6886 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006887 c->Request.type_attr_dir =
6888 TYPE_ATTR_DIR(cmd_type,
6889 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006890 c->Request.Timeout = 0;
6891 c->Request.CDB[0] = BMIC_WRITE;
6892 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05006893 c->Request.CDB[7] = (size >> 8) & 0xFF;
6894 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006895 break;
6896 case TEST_UNIT_READY:
6897 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006898 c->Request.type_attr_dir =
6899 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006900 c->Request.Timeout = 0;
6901 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006902 case HPSA_GET_RAID_MAP:
6903 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006904 c->Request.type_attr_dir =
6905 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006906 c->Request.Timeout = 0;
6907 c->Request.CDB[0] = HPSA_CISS_READ;
6908 c->Request.CDB[1] = cmd;
6909 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6910 c->Request.CDB[7] = (size >> 16) & 0xFF;
6911 c->Request.CDB[8] = (size >> 8) & 0xFF;
6912 c->Request.CDB[9] = size & 0xFF;
6913 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006914 case BMIC_SENSE_CONTROLLER_PARAMETERS:
6915 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006916 c->Request.type_attr_dir =
6917 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006918 c->Request.Timeout = 0;
6919 c->Request.CDB[0] = BMIC_READ;
6920 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
6921 c->Request.CDB[7] = (size >> 16) & 0xFF;
6922 c->Request.CDB[8] = (size >> 8) & 0xFF;
6923 break;
Don Brace03383732015-01-23 16:43:30 -06006924 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
6925 c->Request.CDBLen = 10;
6926 c->Request.type_attr_dir =
6927 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6928 c->Request.Timeout = 0;
6929 c->Request.CDB[0] = BMIC_READ;
6930 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
6931 c->Request.CDB[7] = (size >> 16) & 0xFF;
6932 c->Request.CDB[8] = (size >> 8) & 0XFF;
6933 break;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06006934 case BMIC_SENSE_SUBSYSTEM_INFORMATION:
6935 c->Request.CDBLen = 10;
6936 c->Request.type_attr_dir =
6937 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6938 c->Request.Timeout = 0;
6939 c->Request.CDB[0] = BMIC_READ;
6940 c->Request.CDB[6] = BMIC_SENSE_SUBSYSTEM_INFORMATION;
6941 c->Request.CDB[7] = (size >> 16) & 0xFF;
6942 c->Request.CDB[8] = (size >> 8) & 0XFF;
6943 break;
Don Bracecca8f132015-12-22 10:36:48 -06006944 case BMIC_SENSE_STORAGE_BOX_PARAMS:
6945 c->Request.CDBLen = 10;
6946 c->Request.type_attr_dir =
6947 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6948 c->Request.Timeout = 0;
6949 c->Request.CDB[0] = BMIC_READ;
6950 c->Request.CDB[6] = BMIC_SENSE_STORAGE_BOX_PARAMS;
6951 c->Request.CDB[7] = (size >> 16) & 0xFF;
6952 c->Request.CDB[8] = (size >> 8) & 0XFF;
6953 break;
Scott Teel66749d02015-11-04 15:51:57 -06006954 case BMIC_IDENTIFY_CONTROLLER:
6955 c->Request.CDBLen = 10;
6956 c->Request.type_attr_dir =
6957 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6958 c->Request.Timeout = 0;
6959 c->Request.CDB[0] = BMIC_READ;
6960 c->Request.CDB[1] = 0;
6961 c->Request.CDB[2] = 0;
6962 c->Request.CDB[3] = 0;
6963 c->Request.CDB[4] = 0;
6964 c->Request.CDB[5] = 0;
6965 c->Request.CDB[6] = BMIC_IDENTIFY_CONTROLLER;
6966 c->Request.CDB[7] = (size >> 16) & 0xFF;
6967 c->Request.CDB[8] = (size >> 8) & 0XFF;
6968 c->Request.CDB[9] = 0;
6969 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006970 default:
6971 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
6972 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006973 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006974 }
6975 } else if (cmd_type == TYPE_MSG) {
6976 switch (cmd) {
6977
Scott Teel0b9b7b62015-11-04 15:51:02 -06006978 case HPSA_PHYS_TARGET_RESET:
6979 c->Request.CDBLen = 16;
6980 c->Request.type_attr_dir =
6981 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
6982 c->Request.Timeout = 0; /* Don't time out */
6983 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6984 c->Request.CDB[0] = HPSA_RESET;
6985 c->Request.CDB[1] = HPSA_TARGET_RESET_TYPE;
6986 /* Physical target reset needs no control bytes 4-7*/
6987 c->Request.CDB[4] = 0x00;
6988 c->Request.CDB[5] = 0x00;
6989 c->Request.CDB[6] = 0x00;
6990 c->Request.CDB[7] = 0x00;
6991 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006992 case HPSA_DEVICE_RESET_MSG:
6993 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006994 c->Request.type_attr_dir =
6995 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006996 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006997 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6998 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05006999 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007000 /* If bytes 4-7 are zero, it means reset the */
7001 /* LunID device */
7002 c->Request.CDB[4] = 0x00;
7003 c->Request.CDB[5] = 0x00;
7004 c->Request.CDB[6] = 0x00;
7005 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007006 break;
7007 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007008 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06007009 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007010 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
7011 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007012 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06007013 c->Request.type_attr_dir =
7014 TYPE_ATTR_DIR(cmd_type,
7015 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007016 c->Request.Timeout = 0; /* Don't time out */
7017 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
7018 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
7019 c->Request.CDB[2] = 0x00; /* reserved */
7020 c->Request.CDB[3] = 0x00; /* reserved */
7021 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007022 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007023 c->Request.CDB[12] = 0x00; /* reserved */
7024 c->Request.CDB[13] = 0x00; /* reserved */
7025 c->Request.CDB[14] = 0x00; /* reserved */
7026 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007027 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007028 default:
7029 dev_warn(&h->pdev->dev, "unknown message type %d\n",
7030 cmd);
7031 BUG();
7032 }
7033 } else {
7034 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
7035 BUG();
7036 }
7037
Stephen M. Camerona505b862014-11-14 17:27:04 -06007038 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007039 case XFER_READ:
7040 pci_dir = PCI_DMA_FROMDEVICE;
7041 break;
7042 case XFER_WRITE:
7043 pci_dir = PCI_DMA_TODEVICE;
7044 break;
7045 case XFER_NONE:
7046 pci_dir = PCI_DMA_NONE;
7047 break;
7048 default:
7049 pci_dir = PCI_DMA_BIDIRECTIONAL;
7050 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007051 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
7052 return -1;
7053 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007054}
7055
7056/*
7057 * Map (physical) PCI mem into (virtual) kernel space
7058 */
7059static void __iomem *remap_pci_mem(ulong base, ulong size)
7060{
7061 ulong page_base = ((ulong) base) & PAGE_MASK;
7062 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba34c2012-07-26 11:34:23 -05007063 void __iomem *page_remapped = ioremap_nocache(page_base,
7064 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007065
7066 return page_remapped ? (page_remapped + page_offs) : NULL;
7067}
7068
Matt Gates254f7962012-05-01 11:43:06 -05007069static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007070{
Matt Gates254f7962012-05-01 11:43:06 -05007071 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007072}
7073
Stephen M. Cameron900c5442010-02-04 08:42:35 -06007074static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007075{
7076 return h->access.intr_pending(h);
7077}
7078
7079static inline long interrupt_not_for_us(struct ctlr_info *h)
7080{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007081 return (h->access.intr_pending(h) == 0) ||
7082 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007083}
7084
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06007085static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
7086 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007087{
7088 if (unlikely(tag_index >= h->nr_cmds)) {
7089 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
7090 return 1;
7091 }
7092 return 0;
7093}
7094
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05007095static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007096{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007097 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06007098 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
7099 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05007100 complete_scsi_command(c);
Stephen Cameron8be986c2015-04-23 09:34:06 -05007101 else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007102 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06007103}
7104
Don Brace303932f2010-02-04 08:42:40 -06007105/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05007106static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06007107 u32 raw_tag)
7108{
7109 u32 tag_index;
7110 struct CommandList *c;
7111
Don Bracef2405db2015-01-23 16:43:09 -06007112 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05007113 if (!bad_tag(h, tag_index, raw_tag)) {
7114 c = h->cmd_pool + tag_index;
7115 finish_cmd(c);
7116 }
Don Brace303932f2010-02-04 08:42:40 -06007117}
7118
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007119/* Some controllers, like p400, will give us one interrupt
7120 * after a soft reset, even if we turned interrupts off.
7121 * Only need to check for this in the hpsa_xxx_discard_completions
7122 * functions.
7123 */
7124static int ignore_bogus_interrupt(struct ctlr_info *h)
7125{
7126 if (likely(!reset_devices))
7127 return 0;
7128
7129 if (likely(h->interrupts_enabled))
7130 return 0;
7131
7132 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
7133 "(known firmware bug.) Ignoring.\n");
7134
7135 return 1;
7136}
7137
Matt Gates254f7962012-05-01 11:43:06 -05007138/*
7139 * Convert &h->q[x] (passed to interrupt handlers) back to h.
7140 * Relies on (h-q[x] == x) being true for x such that
7141 * 0 <= x < MAX_REPLY_QUEUES.
7142 */
7143static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007144{
Matt Gates254f7962012-05-01 11:43:06 -05007145 return container_of((queue - *queue), struct ctlr_info, q[0]);
7146}
7147
7148static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
7149{
7150 struct ctlr_info *h = queue_to_hba(queue);
7151 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007152 u32 raw_tag;
7153
7154 if (ignore_bogus_interrupt(h))
7155 return IRQ_NONE;
7156
7157 if (interrupt_not_for_us(h))
7158 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007159 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007160 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05007161 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007162 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05007163 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007164 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007165 return IRQ_HANDLED;
7166}
7167
Matt Gates254f7962012-05-01 11:43:06 -05007168static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007169{
Matt Gates254f7962012-05-01 11:43:06 -05007170 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007171 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05007172 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007173
7174 if (ignore_bogus_interrupt(h))
7175 return IRQ_NONE;
7176
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007177 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05007178 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007179 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05007180 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007181 return IRQ_HANDLED;
7182}
7183
Matt Gates254f7962012-05-01 11:43:06 -05007184static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007185{
Matt Gates254f7962012-05-01 11:43:06 -05007186 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06007187 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05007188 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007189
7190 if (interrupt_not_for_us(h))
7191 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007192 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007193 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05007194 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007195 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06007196 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05007197 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007198 }
7199 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007200 return IRQ_HANDLED;
7201}
7202
Matt Gates254f7962012-05-01 11:43:06 -05007203static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007204{
Matt Gates254f7962012-05-01 11:43:06 -05007205 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007206 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05007207 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007208
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007209 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05007210 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06007211 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06007212 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05007213 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007214 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007215 return IRQ_HANDLED;
7216}
7217
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007218/* Send a message CDB to the firmware. Careful, this only works
7219 * in simple mode, not performant mode due to the tag lookup.
7220 * We only ever use this immediately after a controller reset.
7221 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007222static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
7223 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007224{
7225 struct Command {
7226 struct CommandListHeader CommandHeader;
7227 struct RequestBlock Request;
7228 struct ErrDescriptor ErrorDescriptor;
7229 };
7230 struct Command *cmd;
7231 static const size_t cmd_sz = sizeof(*cmd) +
7232 sizeof(cmd->ErrorDescriptor);
7233 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06007234 __le32 paddr32;
7235 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007236 void __iomem *vaddr;
7237 int i, err;
7238
7239 vaddr = pci_ioremap_bar(pdev, 0);
7240 if (vaddr == NULL)
7241 return -ENOMEM;
7242
7243 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
7244 * CCISS commands, so they must be allocated from the lower 4GiB of
7245 * memory.
7246 */
7247 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
7248 if (err) {
7249 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06007250 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007251 }
7252
7253 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
7254 if (cmd == NULL) {
7255 iounmap(vaddr);
7256 return -ENOMEM;
7257 }
7258
7259 /* This must fit, because of the 32-bit consistent DMA mask. Also,
7260 * although there's no guarantee, we assume that the address is at
7261 * least 4-byte aligned (most likely, it's page-aligned).
7262 */
Don Brace2b08b3e2015-01-23 16:41:09 -06007263 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007264
7265 cmd->CommandHeader.ReplyQueue = 0;
7266 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007267 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06007268 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007269 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
7270
7271 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06007272 cmd->Request.type_attr_dir =
7273 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007274 cmd->Request.Timeout = 0; /* Don't time out */
7275 cmd->Request.CDB[0] = opcode;
7276 cmd->Request.CDB[1] = type;
7277 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007278 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06007279 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007280 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007281
Don Brace2b08b3e2015-01-23 16:41:09 -06007282 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007283
7284 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
7285 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06007286 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007287 break;
7288 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
7289 }
7290
7291 iounmap(vaddr);
7292
7293 /* we leak the DMA buffer here ... no choice since the controller could
7294 * still complete the command.
7295 */
7296 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
7297 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
7298 opcode, type);
7299 return -ETIMEDOUT;
7300 }
7301
7302 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
7303
7304 if (tag & HPSA_ERROR_BIT) {
7305 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
7306 opcode, type);
7307 return -EIO;
7308 }
7309
7310 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
7311 opcode, type);
7312 return 0;
7313}
7314
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007315#define hpsa_noop(p) hpsa_message(p, 3, 0)
7316
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007317static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06007318 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007319{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007320
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007321 if (use_doorbell) {
7322 /* For everything after the P600, the PCI power state method
7323 * of resetting the controller doesn't work, so we have this
7324 * other way using the doorbell register.
7325 */
7326 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007327 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05007328
Justin Lindley00701a92014-05-29 10:52:47 -05007329 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05007330 * doorbell reset and before any attempt to talk to the board
7331 * at all to ensure that this actually works and doesn't fall
7332 * over in some weird corner cases.
7333 */
Justin Lindley00701a92014-05-29 10:52:47 -05007334 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007335 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007336
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007337 /* Quoting from the Open CISS Specification: "The Power
7338 * Management Control/Status Register (CSR) controls the power
7339 * state of the device. The normal operating state is D0,
7340 * CSR=00h. The software off state is D3, CSR=03h. To reset
7341 * the controller, place the interface device in D3 then to D0,
7342 * this causes a secondary PCI reset which will reset the
7343 * controller." */
7344
Don Brace2662cab2015-01-23 16:41:25 -06007345 int rc = 0;
7346
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007347 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06007348
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007349 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06007350 rc = pci_set_power_state(pdev, PCI_D3hot);
7351 if (rc)
7352 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007353
7354 msleep(500);
7355
7356 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06007357 rc = pci_set_power_state(pdev, PCI_D0);
7358 if (rc)
7359 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02007360
7361 /*
7362 * The P600 requires a small delay when changing states.
7363 * Otherwise we may think the board did not reset and we bail.
7364 * This for kdump only and is particular to the P600.
7365 */
7366 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007367 }
7368 return 0;
7369}
7370
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007371static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007372{
7373 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007374 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007375}
7376
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007377static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007378{
7379 char *driver_version;
7380 int i, size = sizeof(cfgtable->driver_version);
7381
7382 driver_version = kmalloc(size, GFP_KERNEL);
7383 if (!driver_version)
7384 return -ENOMEM;
7385
7386 init_driver_version(driver_version, size);
7387 for (i = 0; i < size; i++)
7388 writeb(driver_version[i], &cfgtable->driver_version[i]);
7389 kfree(driver_version);
7390 return 0;
7391}
7392
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007393static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
7394 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007395{
7396 int i;
7397
7398 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
7399 driver_ver[i] = readb(&cfgtable->driver_version[i]);
7400}
7401
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007402static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007403{
7404
7405 char *driver_ver, *old_driver_ver;
7406 int rc, size = sizeof(cfgtable->driver_version);
7407
7408 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
7409 if (!old_driver_ver)
7410 return -ENOMEM;
7411 driver_ver = old_driver_ver + size;
7412
7413 /* After a reset, the 32 bytes of "driver version" in the cfgtable
7414 * should have been changed, otherwise we know the reset failed.
7415 */
7416 init_driver_version(old_driver_ver, size);
7417 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
7418 rc = !memcmp(driver_ver, old_driver_ver, size);
7419 kfree(old_driver_ver);
7420 return rc;
7421}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007422/* This does a hard reset of the controller using PCI power management
7423 * states or the using the doorbell register.
7424 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007425static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007426{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007427 u64 cfg_offset;
7428 u32 cfg_base_addr;
7429 u64 cfg_base_addr_index;
7430 void __iomem *vaddr;
7431 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007432 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007433 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007434 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007435 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007436 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007437
7438 /* For controllers as old as the P600, this is very nearly
7439 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007440 *
7441 * pci_save_state(pci_dev);
7442 * pci_set_power_state(pci_dev, PCI_D3hot);
7443 * pci_set_power_state(pci_dev, PCI_D0);
7444 * pci_restore_state(pci_dev);
7445 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007446 * For controllers newer than the P600, the pci power state
7447 * method of resetting doesn't work so we have another way
7448 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007449 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05007450
Robert Elliott60f923b2015-01-23 16:42:06 -06007451 if (!ctlr_is_resettable(board_id)) {
7452 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06007453 return -ENODEV;
7454 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05007455
7456 /* if controller is soft- but not hard resettable... */
7457 if (!ctlr_is_hard_resettable(board_id))
7458 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05007459
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007460 /* Save the PCI command register */
7461 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007462 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007463
7464 /* find the first memory BAR, so we can find the cfg table */
7465 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
7466 if (rc)
7467 return rc;
7468 vaddr = remap_pci_mem(paddr, 0x250);
7469 if (!vaddr)
7470 return -ENOMEM;
7471
7472 /* find cfgtable in order to check if reset via doorbell is supported */
7473 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
7474 &cfg_base_addr_index, &cfg_offset);
7475 if (rc)
7476 goto unmap_vaddr;
7477 cfgtable = remap_pci_mem(pci_resource_start(pdev,
7478 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
7479 if (!cfgtable) {
7480 rc = -ENOMEM;
7481 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007482 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007483 rc = write_driver_ver_to_cfgtable(cfgtable);
7484 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06007485 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007486
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007487 /* If reset via doorbell register is supported, use that.
7488 * There are two such methods. Favor the newest method.
7489 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007490 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007491 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
7492 if (use_doorbell) {
7493 use_doorbell = DOORBELL_CTLR_RESET2;
7494 } else {
7495 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
7496 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007497 dev_warn(&pdev->dev,
7498 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007499 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007500 goto unmap_cfgtable;
7501 }
7502 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007503
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007504 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
7505 if (rc)
7506 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007507
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007508 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007509 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007510
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007511 /* Some devices (notably the HP Smart Array 5i Controller)
7512 need a little pause here */
7513 msleep(HPSA_POST_RESET_PAUSE_MSECS);
7514
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007515 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
7516 if (rc) {
7517 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06007518 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007519 goto unmap_cfgtable;
7520 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007521
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007522 rc = controller_reset_failed(vaddr);
7523 if (rc < 0)
7524 goto unmap_cfgtable;
7525 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007526 dev_warn(&pdev->dev, "Unable to successfully reset "
7527 "controller. Will try soft reset.\n");
7528 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007529 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007530 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007531 }
7532
7533unmap_cfgtable:
7534 iounmap(cfgtable);
7535
7536unmap_vaddr:
7537 iounmap(vaddr);
7538 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007539}
7540
7541/*
7542 * We cannot read the structure directly, for portability we must use
7543 * the io functions.
7544 * This is for debug only.
7545 */
Don Brace42a91642014-11-14 17:26:27 -06007546static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007547{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05007548#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007549 int i;
7550 char temp_name[17];
7551
7552 dev_info(dev, "Controller Configuration information\n");
7553 dev_info(dev, "------------------------------------\n");
7554 for (i = 0; i < 4; i++)
7555 temp_name[i] = readb(&(tb->Signature[i]));
7556 temp_name[4] = '\0';
7557 dev_info(dev, " Signature = %s\n", temp_name);
7558 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
7559 dev_info(dev, " Transport methods supported = 0x%x\n",
7560 readl(&(tb->TransportSupport)));
7561 dev_info(dev, " Transport methods active = 0x%x\n",
7562 readl(&(tb->TransportActive)));
7563 dev_info(dev, " Requested transport Method = 0x%x\n",
7564 readl(&(tb->HostWrite.TransportRequest)));
7565 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
7566 readl(&(tb->HostWrite.CoalIntDelay)));
7567 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
7568 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06007569 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007570 readl(&(tb->CmdsOutMax)));
7571 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
7572 for (i = 0; i < 16; i++)
7573 temp_name[i] = readb(&(tb->ServerName[i]));
7574 temp_name[16] = '\0';
7575 dev_info(dev, " Server Name = %s\n", temp_name);
7576 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
7577 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007578#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05007579}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007580
7581static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
7582{
7583 int i, offset, mem_type, bar_type;
7584
7585 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
7586 return 0;
7587 offset = 0;
7588 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
7589 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
7590 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
7591 offset += 4;
7592 else {
7593 mem_type = pci_resource_flags(pdev, i) &
7594 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
7595 switch (mem_type) {
7596 case PCI_BASE_ADDRESS_MEM_TYPE_32:
7597 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
7598 offset += 4; /* 32 bit */
7599 break;
7600 case PCI_BASE_ADDRESS_MEM_TYPE_64:
7601 offset += 8;
7602 break;
7603 default: /* reserved in PCI 2.2 */
7604 dev_warn(&pdev->dev,
7605 "base address is invalid\n");
7606 return -1;
7607 break;
7608 }
7609 }
7610 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
7611 return i + 1;
7612 }
7613 return -1;
7614}
7615
Robert Elliottcc64c812015-04-23 09:33:12 -05007616static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
7617{
7618 if (h->msix_vector) {
7619 if (h->pdev->msix_enabled)
7620 pci_disable_msix(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007621 h->msix_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007622 } else if (h->msi_vector) {
7623 if (h->pdev->msi_enabled)
7624 pci_disable_msi(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007625 h->msi_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007626 }
7627}
7628
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007629/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06007630 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007631 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007632static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007633{
7634#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05007635 int err, i;
7636 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
7637
7638 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
7639 hpsa_msix_entries[i].vector = 0;
7640 hpsa_msix_entries[i].entry = i;
7641 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007642
7643 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007644 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
7645 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007646 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007647 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007648 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007649 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05007650 if (h->msix_vector > num_online_cpus())
7651 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007652 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
7653 1, h->msix_vector);
7654 if (err < 0) {
7655 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
7656 h->msix_vector = 0;
7657 goto single_msi_mode;
7658 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007659 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007660 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007661 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007662 h->msix_vector = err;
7663 for (i = 0; i < h->msix_vector; i++)
7664 h->intr[i] = hpsa_msix_entries[i].vector;
7665 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007666 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007667single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007668 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007669 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007670 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007671 h->msi_vector = 1;
7672 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007673 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007674 }
7675default_int_mode:
7676#endif /* CONFIG_PCI_MSI */
7677 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007678 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007679}
7680
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007681static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007682{
7683 int i;
7684 u32 subsystem_vendor_id, subsystem_device_id;
7685
7686 subsystem_vendor_id = pdev->subsystem_vendor;
7687 subsystem_device_id = pdev->subsystem_device;
7688 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
7689 subsystem_vendor_id;
7690
7691 for (i = 0; i < ARRAY_SIZE(products); i++)
7692 if (*board_id == products[i].board_id)
7693 return i;
7694
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05007695 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
7696 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
7697 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007698 dev_warn(&pdev->dev, "unrecognized board ID: "
7699 "0x%08x, ignoring.\n", *board_id);
7700 return -ENODEV;
7701 }
7702 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
7703}
7704
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007705static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
7706 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007707{
7708 int i;
7709
7710 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007711 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007712 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007713 *memory_bar = pci_resource_start(pdev, i);
7714 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007715 *memory_bar);
7716 return 0;
7717 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007718 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007719 return -ENODEV;
7720}
7721
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007722static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
7723 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007724{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007725 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007726 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007727 if (wait_for_ready)
7728 iterations = HPSA_BOARD_READY_ITERATIONS;
7729 else
7730 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007731
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007732 for (i = 0; i < iterations; i++) {
7733 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
7734 if (wait_for_ready) {
7735 if (scratchpad == HPSA_FIRMWARE_READY)
7736 return 0;
7737 } else {
7738 if (scratchpad != HPSA_FIRMWARE_READY)
7739 return 0;
7740 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007741 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
7742 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007743 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007744 return -ENODEV;
7745}
7746
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007747static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
7748 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
7749 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007750{
7751 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
7752 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
7753 *cfg_base_addr &= (u32) 0x0000ffff;
7754 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
7755 if (*cfg_base_addr_index == -1) {
7756 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
7757 return -ENODEV;
7758 }
7759 return 0;
7760}
7761
Robert Elliott195f2c62015-04-23 09:33:17 -05007762static void hpsa_free_cfgtables(struct ctlr_info *h)
7763{
Robert Elliott105a3db2015-04-23 09:33:48 -05007764 if (h->transtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007765 iounmap(h->transtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007766 h->transtable = NULL;
7767 }
7768 if (h->cfgtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007769 iounmap(h->cfgtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007770 h->cfgtable = NULL;
7771 }
Robert Elliott195f2c62015-04-23 09:33:17 -05007772}
7773
7774/* Find and map CISS config table and transfer table
7775+ * several items must be unmapped (freed) later
7776+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007777static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007778{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06007779 u64 cfg_offset;
7780 u32 cfg_base_addr;
7781 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06007782 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007783 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007784
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007785 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7786 &cfg_base_addr_index, &cfg_offset);
7787 if (rc)
7788 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007789 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007790 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007791 if (!h->cfgtable) {
7792 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007793 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007794 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007795 rc = write_driver_ver_to_cfgtable(h->cfgtable);
7796 if (rc)
7797 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007798 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007799 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007800 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
7801 cfg_base_addr_index)+cfg_offset+trans_offset,
7802 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05007803 if (!h->transtable) {
7804 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
7805 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007806 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007807 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007808 return 0;
7809}
7810
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007811static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007812{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007813#define MIN_MAX_COMMANDS 16
7814 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
7815
7816 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06007817
7818 /* Limit commands in memory limited kdump scenario. */
7819 if (reset_devices && h->max_commands > 32)
7820 h->max_commands = 32;
7821
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007822 if (h->max_commands < MIN_MAX_COMMANDS) {
7823 dev_warn(&h->pdev->dev,
7824 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
7825 h->max_commands,
7826 MIN_MAX_COMMANDS);
7827 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007828 }
7829}
7830
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007831/* If the controller reports that the total max sg entries is greater than 512,
7832 * then we know that chained SG blocks work. (Original smart arrays did not
7833 * support chained SG blocks and would return zero for max sg entries.)
7834 */
7835static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
7836{
7837 return h->maxsgentries > 512;
7838}
7839
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007840/* Interrogate the hardware for some limits:
7841 * max commands, max SG elements without chaining, and with chaining,
7842 * SG chain block size, etc.
7843 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007844static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007845{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007846 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06007847 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007848 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007849 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007850 if (hpsa_supports_chained_sg_blocks(h)) {
7851 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007852 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06007853 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007854 h->maxsgentries--; /* save one for chain pointer */
7855 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007856 /*
7857 * Original smart arrays supported at most 31 s/g entries
7858 * embedded inline in the command (trying to use more
7859 * would lock up the controller)
7860 */
7861 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06007862 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007863 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007864 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007865
7866 /* Find out what task management functions are supported and cache */
7867 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06007868 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
7869 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
7870 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
7871 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen Cameron8be986c2015-04-23 09:34:06 -05007872 if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
7873 dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007874}
7875
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007876static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
7877{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09007878 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007879 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007880 return false;
7881 }
7882 return true;
7883}
7884
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007885static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007886{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007887 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007888
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007889 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02007890 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
7891#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007892 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007893#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06007894 driver_support |= ENABLE_UNIT_ATTN;
7895 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007896}
7897
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007898/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
7899 * in a prefetch beyond physical memory.
7900 */
7901static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
7902{
7903 u32 dma_prefetch;
7904
7905 if (h->board_id != 0x3225103C)
7906 return;
7907 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
7908 dma_prefetch |= 0x8000;
7909 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
7910}
7911
Robert Elliottc706a792015-01-23 16:45:01 -06007912static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007913{
7914 int i;
7915 u32 doorbell_value;
7916 unsigned long flags;
7917 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007918 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007919 spin_lock_irqsave(&h->lock, flags);
7920 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7921 spin_unlock_irqrestore(&h->lock, flags);
7922 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06007923 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007924 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007925 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007926 }
Robert Elliottc706a792015-01-23 16:45:01 -06007927 return -ENODEV;
7928done:
7929 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007930}
7931
Robert Elliottc706a792015-01-23 16:45:01 -06007932static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007933{
7934 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007935 u32 doorbell_value;
7936 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007937
7938 /* under certain very rare conditions, this can take awhile.
7939 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
7940 * as we enter this code.)
7941 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007942 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05007943 if (h->remove_in_progress)
7944 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007945 spin_lock_irqsave(&h->lock, flags);
7946 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7947 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06007948 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06007949 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007950 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007951 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007952 }
Robert Elliottc706a792015-01-23 16:45:01 -06007953 return -ENODEV;
7954done:
7955 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007956}
7957
Robert Elliottc706a792015-01-23 16:45:01 -06007958/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007959static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007960{
7961 u32 trans_support;
7962
7963 trans_support = readl(&(h->cfgtable->TransportSupport));
7964 if (!(trans_support & SIMPLE_MODE))
7965 return -ENOTSUPP;
7966
7967 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007968
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007969 /* Update the field, and then ring the doorbell */
7970 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007971 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007972 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007973 if (hpsa_wait_for_mode_change_ack(h))
7974 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007975 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007976 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
7977 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007978 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007979 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007980error:
Stephen Cameron050f7142015-01-23 16:42:22 -06007981 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007982 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007983}
7984
Robert Elliott195f2c62015-04-23 09:33:17 -05007985/* free items allocated or mapped by hpsa_pci_init */
7986static void hpsa_free_pci_init(struct ctlr_info *h)
7987{
7988 hpsa_free_cfgtables(h); /* pci_init 4 */
7989 iounmap(h->vaddr); /* pci_init 3 */
Robert Elliott105a3db2015-04-23 09:33:48 -05007990 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007991 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Robert Elliott943a7022015-04-23 09:34:32 -05007992 /*
7993 * call pci_disable_device before pci_release_regions per
7994 * Documentation/PCI/pci.txt
7995 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007996 pci_disable_device(h->pdev); /* pci_init 1 */
Robert Elliott943a7022015-04-23 09:34:32 -05007997 pci_release_regions(h->pdev); /* pci_init 2 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007998}
7999
8000/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008001static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05008002{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008003 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008004
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05008005 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
8006 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06008007 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05008008 h->product_name = products[prod_index].product_name;
8009 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008010
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008011 h->needs_abort_tags_swizzled =
8012 ctlr_needs_abort_tags_swizzled(h->board_id);
8013
Matthew Garrette5a44df2011-11-11 11:14:23 -05008014 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
8015 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
8016
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008017 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008018 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05008019 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Robert Elliott943a7022015-04-23 09:34:32 -05008020 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008021 return err;
8022 }
8023
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06008024 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008025 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008026 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05008027 "failed to obtain PCI resources\n");
Robert Elliott943a7022015-04-23 09:34:32 -05008028 pci_disable_device(h->pdev);
8029 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008030 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06008031
8032 pci_set_master(h->pdev);
8033
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05008034 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05008035 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05008036 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05008037 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008038 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05008039 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05008040 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05008041 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05008042 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05008043 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06008044 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05008045 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05008046 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05008047 err = hpsa_find_cfgtables(h);
8048 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05008049 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05008050 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008051
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05008052 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008053 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05008054 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008055 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06008056 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05008057 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008058 err = hpsa_enter_simple_mode(h);
8059 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05008060 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008061 return 0;
8062
Robert Elliott195f2c62015-04-23 09:33:17 -05008063clean4: /* cfgtables, vaddr, intmode+region, pci */
8064 hpsa_free_cfgtables(h);
8065clean3: /* vaddr, intmode+region, pci */
8066 iounmap(h->vaddr);
Robert Elliott105a3db2015-04-23 09:33:48 -05008067 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05008068clean2: /* intmode+region, pci */
8069 hpsa_disable_interrupt_mode(h);
Robert Elliott943a7022015-04-23 09:34:32 -05008070 /*
8071 * call pci_disable_device before pci_release_regions per
8072 * Documentation/PCI/pci.txt
8073 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008074 pci_disable_device(h->pdev);
Robert Elliott943a7022015-04-23 09:34:32 -05008075 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008076 return err;
8077}
8078
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008079static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06008080{
8081 int rc;
8082
8083#define HBA_INQUIRY_BYTE_COUNT 64
8084 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
8085 if (!h->hba_inquiry_data)
8086 return;
8087 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
8088 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
8089 if (rc != 0) {
8090 kfree(h->hba_inquiry_data);
8091 h->hba_inquiry_data = NULL;
8092 }
8093}
8094
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008095static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008096{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05008097 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06008098 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008099
8100 if (!reset_devices)
8101 return 0;
8102
Tomas Henzl132aa222014-08-14 16:12:39 +02008103 /* kdump kernel is loading, we don't know in which state is
8104 * the pci interface. The dev->enable_cnt is equal zero
8105 * so we call enable+disable, wait a while and switch it on.
8106 */
8107 rc = pci_enable_device(pdev);
8108 if (rc) {
8109 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
8110 return -ENODEV;
8111 }
8112 pci_disable_device(pdev);
8113 msleep(260); /* a randomly chosen number */
8114 rc = pci_enable_device(pdev);
8115 if (rc) {
8116 dev_warn(&pdev->dev, "failed to enable device.\n");
8117 return -ENODEV;
8118 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06008119
Tomas Henzl859c75a2014-09-12 14:44:15 +02008120 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06008121
Tomas Henzl3b747292015-01-23 16:41:20 -06008122 vaddr = pci_ioremap_bar(pdev, 0);
8123 if (vaddr == NULL) {
8124 rc = -ENOMEM;
8125 goto out_disable;
8126 }
8127 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
8128 iounmap(vaddr);
8129
Stephen M. Cameron1df85522010-06-16 13:51:40 -05008130 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008131 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008132
Stephen M. Cameron1df85522010-06-16 13:51:40 -05008133 /* -ENOTSUPP here means we cannot reset the controller
8134 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05008135 * "performant mode". Or, it might be 640x, which can't reset
8136 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05008137 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06008138 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02008139 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008140
8141 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06008142 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008143 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
8144 if (hpsa_noop(pdev) == 0)
8145 break;
8146 else
8147 dev_warn(&pdev->dev, "no-op failed%s\n",
8148 (i < 11 ? "; re-trying" : ""));
8149 }
Tomas Henzl132aa222014-08-14 16:12:39 +02008150
8151out_disable:
8152
8153 pci_disable_device(pdev);
8154 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008155}
8156
Robert Elliott1fb7c982015-04-23 09:33:22 -05008157static void hpsa_free_cmd_pool(struct ctlr_info *h)
8158{
8159 kfree(h->cmd_pool_bits);
Robert Elliott105a3db2015-04-23 09:33:48 -05008160 h->cmd_pool_bits = NULL;
8161 if (h->cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008162 pci_free_consistent(h->pdev,
8163 h->nr_cmds * sizeof(struct CommandList),
8164 h->cmd_pool,
8165 h->cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008166 h->cmd_pool = NULL;
8167 h->cmd_pool_dhandle = 0;
8168 }
8169 if (h->errinfo_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008170 pci_free_consistent(h->pdev,
8171 h->nr_cmds * sizeof(struct ErrorInfo),
8172 h->errinfo_pool,
8173 h->errinfo_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008174 h->errinfo_pool = NULL;
8175 h->errinfo_pool_dhandle = 0;
8176 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008177}
8178
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008179static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008180{
8181 h->cmd_pool_bits = kzalloc(
8182 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
8183 sizeof(unsigned long), GFP_KERNEL);
8184 h->cmd_pool = pci_alloc_consistent(h->pdev,
8185 h->nr_cmds * sizeof(*h->cmd_pool),
8186 &(h->cmd_pool_dhandle));
8187 h->errinfo_pool = pci_alloc_consistent(h->pdev,
8188 h->nr_cmds * sizeof(*h->errinfo_pool),
8189 &(h->errinfo_pool_dhandle));
8190 if ((h->cmd_pool_bits == NULL)
8191 || (h->cmd_pool == NULL)
8192 || (h->errinfo_pool == NULL)) {
8193 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06008194 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008195 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05008196 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008197 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06008198clean_up:
8199 hpsa_free_cmd_pool(h);
8200 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008201}
8202
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05008203static void hpsa_irq_affinity_hints(struct ctlr_info *h)
8204{
Fabian Frederickec429952015-01-23 16:41:46 -06008205 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05008206
8207 cpu = cpumask_first(cpu_online_mask);
8208 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06008209 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05008210 cpu = cpumask_next(cpu, cpu_online_mask);
8211 }
8212}
8213
Robert Elliottec501a12015-01-23 16:41:40 -06008214/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
8215static void hpsa_free_irqs(struct ctlr_info *h)
8216{
8217 int i;
8218
8219 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
8220 /* Single reply queue, only one irq to free */
8221 i = h->intr_mode;
8222 irq_set_affinity_hint(h->intr[i], NULL);
8223 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008224 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008225 return;
8226 }
8227
8228 for (i = 0; i < h->msix_vector; i++) {
8229 irq_set_affinity_hint(h->intr[i], NULL);
8230 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008231 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008232 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008233 for (; i < MAX_REPLY_QUEUES; i++)
8234 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008235}
8236
Robert Elliott9ee61792015-01-23 16:42:32 -06008237/* returns 0 on success; cleans up and returns -Enn on error */
8238static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008239 irqreturn_t (*msixhandler)(int, void *),
8240 irqreturn_t (*intxhandler)(int, void *))
8241{
Matt Gates254f7962012-05-01 11:43:06 -05008242 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008243
Matt Gates254f7962012-05-01 11:43:06 -05008244 /*
8245 * initialize h->q[x] = x so that interrupt handlers know which
8246 * queue to process.
8247 */
8248 for (i = 0; i < MAX_REPLY_QUEUES; i++)
8249 h->q[i] = (u8) i;
8250
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008251 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05008252 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008253 for (i = 0; i < h->msix_vector; i++) {
Robert Elliott8b470042015-04-23 09:34:58 -05008254 sprintf(h->intrname[i], "%s-msix%d", h->devname, i);
Matt Gates254f7962012-05-01 11:43:06 -05008255 rc = request_irq(h->intr[i], msixhandler,
Robert Elliott8b470042015-04-23 09:34:58 -05008256 0, h->intrname[i],
Matt Gates254f7962012-05-01 11:43:06 -05008257 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008258 if (rc) {
8259 int j;
8260
8261 dev_err(&h->pdev->dev,
8262 "failed to get irq %d for %s\n",
8263 h->intr[i], h->devname);
8264 for (j = 0; j < i; j++) {
8265 free_irq(h->intr[j], &h->q[j]);
8266 h->q[j] = 0;
8267 }
8268 for (; j < MAX_REPLY_QUEUES; j++)
8269 h->q[j] = 0;
8270 return rc;
8271 }
8272 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05008273 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05008274 } else {
8275 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008276 if (h->msix_vector > 0 || h->msi_vector) {
Robert Elliott8b470042015-04-23 09:34:58 -05008277 if (h->msix_vector)
8278 sprintf(h->intrname[h->intr_mode],
8279 "%s-msix", h->devname);
8280 else
8281 sprintf(h->intrname[h->intr_mode],
8282 "%s-msi", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05008283 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05008284 msixhandler, 0,
8285 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05008286 &h->q[h->intr_mode]);
8287 } else {
Robert Elliott8b470042015-04-23 09:34:58 -05008288 sprintf(h->intrname[h->intr_mode],
8289 "%s-intx", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05008290 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05008291 intxhandler, IRQF_SHARED,
8292 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05008293 &h->q[h->intr_mode]);
8294 }
Robert Elliott105a3db2015-04-23 09:33:48 -05008295 irq_set_affinity_hint(h->intr[h->intr_mode], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05008296 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008297 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05008298 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008299 h->intr[h->intr_mode], h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05008300 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008301 return -ENODEV;
8302 }
8303 return 0;
8304}
8305
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008306static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008307{
Robert Elliott39c53f52015-04-23 09:35:14 -05008308 int rc;
Robert Elliottbf43caf2015-04-23 09:33:38 -05008309 hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008310
8311 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008312 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY);
8313 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008314 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008315 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008316 }
8317
8318 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008319 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
8320 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008321 dev_warn(&h->pdev->dev, "Board failed to become ready "
8322 "after soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008323 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008324 }
8325
8326 return 0;
8327}
8328
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008329static void hpsa_free_reply_queues(struct ctlr_info *h)
8330{
8331 int i;
8332
8333 for (i = 0; i < h->nreply_queues; i++) {
8334 if (!h->reply_queue[i].head)
8335 continue;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008336 pci_free_consistent(h->pdev,
8337 h->reply_queue_size,
8338 h->reply_queue[i].head,
8339 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008340 h->reply_queue[i].head = NULL;
8341 h->reply_queue[i].busaddr = 0;
8342 }
Robert Elliott105a3db2015-04-23 09:33:48 -05008343 h->reply_queue_size = 0;
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008344}
8345
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05008346static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
8347{
Robert Elliott105a3db2015-04-23 09:33:48 -05008348 hpsa_free_performant_mode(h); /* init_one 7 */
8349 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
8350 hpsa_free_cmd_pool(h); /* init_one 5 */
8351 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliott2946e822015-04-23 09:35:09 -05008352 scsi_host_put(h->scsi_host); /* init_one 3 */
8353 h->scsi_host = NULL; /* init_one 3 */
8354 hpsa_free_pci_init(h); /* init_one 2_5 */
Robert Elliott9ecd9532015-04-23 09:34:43 -05008355 free_percpu(h->lockup_detected); /* init_one 2 */
8356 h->lockup_detected = NULL; /* init_one 2 */
8357 if (h->resubmit_wq) {
8358 destroy_workqueue(h->resubmit_wq); /* init_one 1 */
8359 h->resubmit_wq = NULL;
8360 }
8361 if (h->rescan_ctlr_wq) {
8362 destroy_workqueue(h->rescan_ctlr_wq);
8363 h->rescan_ctlr_wq = NULL;
8364 }
Robert Elliott105a3db2015-04-23 09:33:48 -05008365 kfree(h); /* init_one 1 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008366}
8367
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008368/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06008369static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008370{
Webb Scales281a7fd2015-01-23 16:43:35 -06008371 int i, refcount;
8372 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008373 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008374
Don Brace080ef1c2015-01-23 16:43:25 -06008375 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06008376 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06008377 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06008378 refcount = atomic_inc_return(&c->refcount);
8379 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05008380 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06008381 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05008382 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05008383 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06008384 }
8385 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008386 }
Webb Scales25163bd2015-04-23 09:32:00 -05008387 dev_warn(&h->pdev->dev,
8388 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008389}
8390
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008391static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
8392{
Rusty Russellc8ed0012015-03-05 10:49:19 +10308393 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008394
Rusty Russellc8ed0012015-03-05 10:49:19 +10308395 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008396 u32 *lockup_detected;
8397 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
8398 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008399 }
8400 wmb(); /* be sure the per-cpu variables are out to memory */
8401}
8402
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008403static void controller_lockup_detected(struct ctlr_info *h)
8404{
8405 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008406 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008407
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008408 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8409 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008410 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
8411 if (!lockup_detected) {
8412 /* no heartbeat, but controller gave us a zero. */
8413 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05008414 "lockup detected after %d but scratchpad register is zero\n",
8415 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008416 lockup_detected = 0xffffffff;
8417 }
8418 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008419 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05008420 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
8421 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008422 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06008423 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008424}
8425
Webb Scales25163bd2015-04-23 09:32:00 -05008426static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008427{
8428 u64 now;
8429 u32 heartbeat;
8430 unsigned long flags;
8431
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008432 now = get_jiffies_64();
8433 /* If we've received an interrupt recently, we're ok. */
8434 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05008435 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05008436 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008437
8438 /*
8439 * If we've already checked the heartbeat recently, we're ok.
8440 * This could happen if someone sends us a signal. We
8441 * otherwise don't care about signals in this thread.
8442 */
8443 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05008444 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05008445 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008446
8447 /* If heartbeat has not changed since we last looked, we're not ok. */
8448 spin_lock_irqsave(&h->lock, flags);
8449 heartbeat = readl(&h->cfgtable->HeartBeat);
8450 spin_unlock_irqrestore(&h->lock, flags);
8451 if (h->last_heartbeat == heartbeat) {
8452 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05008453 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008454 }
8455
8456 /* We're ok. */
8457 h->last_heartbeat = heartbeat;
8458 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05008459 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008460}
8461
Stephen M. Cameron98465902014-02-21 16:25:00 -06008462static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008463{
8464 int i;
8465 char *event_type;
8466
Stephen Camerone4aa3e62015-01-23 16:44:07 -06008467 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
8468 return;
8469
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008470 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06008471 if ((h->transMethod & (CFGTBL_Trans_io_accel1
8472 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008473 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
8474 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
8475
8476 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
8477 event_type = "state change";
8478 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
8479 event_type = "configuration change";
8480 /* Stop sending new RAID offload reqs via the IO accelerator */
8481 scsi_block_requests(h->scsi_host);
Don Brace5323ed72016-04-27 17:13:59 -05008482 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008483 h->dev[i]->offload_enabled = 0;
Don Brace5323ed72016-04-27 17:13:59 -05008484 h->dev[i]->offload_to_be_enabled = 0;
8485 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008486 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008487 /* Set 'accelerator path config change' bit */
8488 dev_warn(&h->pdev->dev,
8489 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
8490 h->events, event_type);
8491 writel(h->events, &(h->cfgtable->clear_event_notify));
8492 /* Set the "clear event notify field update" bit 6 */
8493 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
8494 /* Wait until ctlr clears 'clear event notify field', bit 6 */
8495 hpsa_wait_for_clear_event_notify_ack(h);
8496 scsi_unblock_requests(h->scsi_host);
8497 } else {
8498 /* Acknowledge controller notification events. */
8499 writel(h->events, &(h->cfgtable->clear_event_notify));
8500 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
8501 hpsa_wait_for_clear_event_notify_ack(h);
8502#if 0
8503 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
8504 hpsa_wait_for_mode_change_ack(h);
8505#endif
8506 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008507 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008508}
8509
8510/* Check a register on the controller to see if there are configuration
8511 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06008512 * we should rescan the controller for devices.
8513 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008514 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06008515static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008516{
Don Brace853633e2015-11-04 15:50:37 -06008517 if (h->drv_req_rescan) {
8518 h->drv_req_rescan = 0;
8519 return 1;
8520 }
8521
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008522 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06008523 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008524
8525 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06008526 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008527}
8528
Stephen M. Cameron98465902014-02-21 16:25:00 -06008529/*
8530 * Check if any of the offline devices have become ready
8531 */
8532static int hpsa_offline_devices_ready(struct ctlr_info *h)
8533{
8534 unsigned long flags;
8535 struct offline_device_entry *d;
8536 struct list_head *this, *tmp;
8537
8538 spin_lock_irqsave(&h->offline_device_lock, flags);
8539 list_for_each_safe(this, tmp, &h->offline_device_list) {
8540 d = list_entry(this, struct offline_device_entry,
8541 offline_list);
8542 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05008543 if (!hpsa_volume_offline(h, d->scsi3addr)) {
8544 spin_lock_irqsave(&h->offline_device_lock, flags);
8545 list_del(&d->offline_list);
8546 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008547 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05008548 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008549 spin_lock_irqsave(&h->offline_device_lock, flags);
8550 }
8551 spin_unlock_irqrestore(&h->offline_device_lock, flags);
8552 return 0;
8553}
8554
Scott Teel34592252015-11-04 15:52:09 -06008555static int hpsa_luns_changed(struct ctlr_info *h)
8556{
8557 int rc = 1; /* assume there are changes */
8558 struct ReportLUNdata *logdev = NULL;
8559
8560 /* if we can't find out if lun data has changed,
8561 * assume that it has.
8562 */
8563
8564 if (!h->lastlogicals)
8565 goto out;
8566
8567 logdev = kzalloc(sizeof(*logdev), GFP_KERNEL);
8568 if (!logdev) {
8569 dev_warn(&h->pdev->dev,
8570 "Out of memory, can't track lun changes.\n");
8571 goto out;
8572 }
8573 if (hpsa_scsi_do_report_luns(h, 1, logdev, sizeof(*logdev), 0)) {
8574 dev_warn(&h->pdev->dev,
8575 "report luns failed, can't track lun changes.\n");
8576 goto out;
8577 }
8578 if (memcmp(logdev, h->lastlogicals, sizeof(*logdev))) {
8579 dev_info(&h->pdev->dev,
8580 "Lun changes detected.\n");
8581 memcpy(h->lastlogicals, logdev, sizeof(*logdev));
8582 goto out;
8583 } else
8584 rc = 0; /* no changes detected. */
8585out:
8586 kfree(logdev);
8587 return rc;
8588}
8589
Don Brace6636e7f2015-01-23 16:45:17 -06008590static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008591{
8592 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008593 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06008594 struct ctlr_info, rescan_ctlr_work);
8595
8596
8597 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008598 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008599
8600 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
8601 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008602 hpsa_ack_ctlr_events(h);
8603 hpsa_scan_start(h->scsi_host);
8604 scsi_host_put(h->scsi_host);
Scott Teel34592252015-11-04 15:52:09 -06008605 } else if (h->discovery_polling) {
Scott Teelc2adae42015-11-04 15:52:16 -06008606 hpsa_disable_rld_caching(h);
Scott Teel34592252015-11-04 15:52:09 -06008607 if (hpsa_luns_changed(h)) {
8608 struct Scsi_Host *sh = NULL;
8609
8610 dev_info(&h->pdev->dev,
8611 "driver discovery polling rescan.\n");
8612 sh = scsi_host_get(h->scsi_host);
8613 if (sh != NULL) {
8614 hpsa_scan_start(sh);
8615 scsi_host_put(sh);
8616 }
8617 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008618 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008619 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06008620 if (!h->remove_in_progress)
8621 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008622 h->heartbeat_sample_interval);
8623 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008624}
8625
Don Brace6636e7f2015-01-23 16:45:17 -06008626static void hpsa_monitor_ctlr_worker(struct work_struct *work)
8627{
8628 unsigned long flags;
8629 struct ctlr_info *h = container_of(to_delayed_work(work),
8630 struct ctlr_info, monitor_ctlr_work);
8631
8632 detect_controller_lockup(h);
8633 if (lockup_detected(h))
8634 return;
8635
8636 spin_lock_irqsave(&h->lock, flags);
8637 if (!h->remove_in_progress)
8638 schedule_delayed_work(&h->monitor_ctlr_work,
8639 h->heartbeat_sample_interval);
8640 spin_unlock_irqrestore(&h->lock, flags);
8641}
8642
8643static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
8644 char *name)
8645{
8646 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06008647
Don Brace397ea9c2015-02-06 17:44:15 -06008648 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06008649 if (!wq)
8650 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
8651
8652 return wq;
8653}
8654
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008655static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008656{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008657 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008658 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008659 int try_soft_reset = 0;
8660 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008661 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008662
8663 if (number_of_controllers == 0)
8664 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008665
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008666 rc = hpsa_lookup_board_id(pdev, &board_id);
8667 if (rc < 0) {
8668 dev_warn(&pdev->dev, "Board ID not found\n");
8669 return rc;
8670 }
8671
8672 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008673 if (rc) {
8674 if (rc != -ENOTSUPP)
8675 return rc;
8676 /* If the reset fails in a particular way (it has no way to do
8677 * a proper hard reset, so returns -ENOTSUPP) we can try to do
8678 * a soft reset once we get the controller configured up to the
8679 * point that it can accept a command.
8680 */
8681 try_soft_reset = 1;
8682 rc = 0;
8683 }
8684
8685reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008686
Don Brace303932f2010-02-04 08:42:40 -06008687 /* Command structures must be aligned on a 32-byte boundary because
8688 * the 5 lower bits of the address are used by the hardware. and by
8689 * the driver. See comments in hpsa.h for more info.
8690 */
Don Brace303932f2010-02-04 08:42:40 -06008691 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008692 h = kzalloc(sizeof(*h), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008693 if (!h) {
8694 dev_err(&pdev->dev, "Failed to allocate controller head\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008695 return -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05008696 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008697
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008698 h->pdev = pdev;
Robert Elliott105a3db2015-04-23 09:33:48 -05008699
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06008700 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008701 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008702 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008703 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008704 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06008705 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008706 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008707
8708 /* Allocate and clear per-cpu variable lockup_detected */
8709 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008710 if (!h->lockup_detected) {
Robert Elliott105a3db2015-04-23 09:33:48 -05008711 dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008712 rc = -ENOMEM;
Robert Elliott2efa5922015-04-23 09:34:53 -05008713 goto clean1; /* aer/h */
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008714 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008715 set_lockup_detected_for_all_cpus(h, 0);
8716
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008717 rc = hpsa_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008718 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008719 goto clean2; /* lu, aer/h */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008720
Robert Elliott2946e822015-04-23 09:35:09 -05008721 /* relies on h-> settings made by hpsa_pci_init, including
8722 * interrupt_mode h->intr */
8723 rc = hpsa_scsi_host_alloc(h);
8724 if (rc)
8725 goto clean2_5; /* pci, lu, aer/h */
8726
8727 sprintf(h->devname, HPSA "%d", h->scsi_host->host_no);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008728 h->ctlr = number_of_controllers;
8729 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008730
8731 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008732 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
8733 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008734 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008735 } else {
8736 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8737 if (rc == 0) {
8738 dac = 0;
8739 } else {
8740 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott2946e822015-04-23 09:35:09 -05008741 goto clean3; /* shost, pci, lu, aer/h */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008742 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008743 }
8744
8745 /* make sure the board interrupts are off */
8746 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05008747
Robert Elliott105a3db2015-04-23 09:33:48 -05008748 rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
8749 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008750 goto clean3; /* shost, pci, lu, aer/h */
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008751 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06008752 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008753 goto clean4; /* irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008754 rc = hpsa_alloc_sg_chain_blocks(h);
8755 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008756 goto clean5; /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Camerona08a84712010-02-04 08:43:16 -06008757 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008758 init_waitqueue_head(&h->abort_cmd_wait_queue);
Webb Scalesd604f532015-04-23 09:35:22 -05008759 init_waitqueue_head(&h->event_sync_wait_queue);
8760 mutex_init(&h->reset_mutex);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06008761 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008762
8763 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008764 h->ndevices = 0;
Robert Elliott2946e822015-04-23 09:35:09 -05008765
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008766 spin_lock_init(&h->devlock);
Robert Elliott105a3db2015-04-23 09:33:48 -05008767 rc = hpsa_put_ctlr_into_performant_mode(h);
8768 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008769 goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */
8770
Robert Elliott2efa5922015-04-23 09:34:53 -05008771 /* create the resubmit workqueue */
8772 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
8773 if (!h->rescan_ctlr_wq) {
8774 rc = -ENOMEM;
8775 goto clean7;
8776 }
8777
8778 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
8779 if (!h->resubmit_wq) {
8780 rc = -ENOMEM;
8781 goto clean7; /* aer/h */
8782 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008783
Robert Elliott105a3db2015-04-23 09:33:48 -05008784 /*
8785 * At this point, the controller is ready to take commands.
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008786 * Now, if reset_devices and the hard reset didn't work, try
8787 * the soft reset and see if that works.
8788 */
8789 if (try_soft_reset) {
8790
8791 /* This is kind of gross. We may or may not get a completion
8792 * from the soft reset command, and if we do, then the value
8793 * from the fifo may or may not be valid. So, we wait 10 secs
8794 * after the reset throwing away any completions we get during
8795 * that time. Unregister the interrupt handler and register
8796 * fake ones to scoop up any residual completions.
8797 */
8798 spin_lock_irqsave(&h->lock, flags);
8799 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8800 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06008801 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06008802 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008803 hpsa_intx_discard_completions);
8804 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06008805 dev_warn(&h->pdev->dev,
8806 "Failed to request_irq after soft reset.\n");
Robert Elliottd4987572015-04-23 09:34:37 -05008807 /*
Robert Elliottb2ef4802015-04-23 09:34:48 -05008808 * cannot goto clean7 or free_irqs will be called
8809 * again. Instead, do its work
8810 */
8811 hpsa_free_performant_mode(h); /* clean7 */
8812 hpsa_free_sg_chain_blocks(h); /* clean6 */
8813 hpsa_free_cmd_pool(h); /* clean5 */
8814 /*
8815 * skip hpsa_free_irqs(h) clean4 since that
8816 * was just called before request_irqs failed
Robert Elliottd4987572015-04-23 09:34:37 -05008817 */
8818 goto clean3;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008819 }
8820
8821 rc = hpsa_kdump_soft_reset(h);
8822 if (rc)
8823 /* Neither hard nor soft reset worked, we're hosed. */
Don Brace7ef73232015-07-18 11:12:33 -05008824 goto clean7;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008825
8826 dev_info(&h->pdev->dev, "Board READY.\n");
8827 dev_info(&h->pdev->dev,
8828 "Waiting for stale completions to drain.\n");
8829 h->access.set_intr_mask(h, HPSA_INTR_ON);
8830 msleep(10000);
8831 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8832
8833 rc = controller_reset_failed(h->cfgtable);
8834 if (rc)
8835 dev_info(&h->pdev->dev,
8836 "Soft reset appears to have failed.\n");
8837
8838 /* since the controller's reset, we have to go back and re-init
8839 * everything. Easiest to just forget what we've done and do it
8840 * all over again.
8841 */
8842 hpsa_undo_allocations_after_kdump_soft_reset(h);
8843 try_soft_reset = 0;
8844 if (rc)
Robert Elliottb2ef4802015-04-23 09:34:48 -05008845 /* don't goto clean, we already unallocated */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008846 return -ENODEV;
8847
8848 goto reinit_after_soft_reset;
8849 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008850
Robert Elliott105a3db2015-04-23 09:33:48 -05008851 /* Enable Accelerated IO path at driver layer */
8852 h->acciopath_status = 1;
Scott Teel34592252015-11-04 15:52:09 -06008853 /* Disable discovery polling.*/
8854 h->discovery_polling = 0;
Scott Teelda0697b2014-02-18 13:57:00 -06008855
Scott Teele863d682014-02-18 13:57:05 -06008856
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008857 /* Turn the interrupts on so we can service requests */
8858 h->access.set_intr_mask(h, HPSA_INTR_ON);
8859
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06008860 hpsa_hba_inquiry(h);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008861
Scott Teel34592252015-11-04 15:52:09 -06008862 h->lastlogicals = kzalloc(sizeof(*(h->lastlogicals)), GFP_KERNEL);
8863 if (!h->lastlogicals)
8864 dev_info(&h->pdev->dev,
8865 "Can't track change to report lun data\n");
8866
Don Bracecf477232016-04-27 17:13:26 -05008867 /* hook into SCSI subsystem */
8868 rc = hpsa_scsi_add_host(h);
8869 if (rc)
8870 goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
8871
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008872 /* Monitor the controller for firmware lockups */
8873 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
8874 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
8875 schedule_delayed_work(&h->monitor_ctlr_work,
8876 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06008877 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
8878 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
8879 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05008880 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008881
Robert Elliott2946e822015-04-23 09:35:09 -05008882clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008883 hpsa_free_performant_mode(h);
8884 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8885clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06008886 hpsa_free_sg_chain_blocks(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008887clean5: /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008888 hpsa_free_cmd_pool(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008889clean4: /* irq, shost, pci, lu, aer/h */
Robert Elliottec501a12015-01-23 16:41:40 -06008890 hpsa_free_irqs(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008891clean3: /* shost, pci, lu, aer/h */
8892 scsi_host_put(h->scsi_host);
8893 h->scsi_host = NULL;
8894clean2_5: /* pci, lu, aer/h */
Robert Elliott195f2c62015-04-23 09:33:17 -05008895 hpsa_free_pci_init(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008896clean2: /* lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008897 if (h->lockup_detected) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008898 free_percpu(h->lockup_detected);
Robert Elliott105a3db2015-04-23 09:33:48 -05008899 h->lockup_detected = NULL;
8900 }
8901clean1: /* wq/aer/h */
8902 if (h->resubmit_wq) {
8903 destroy_workqueue(h->resubmit_wq);
8904 h->resubmit_wq = NULL;
8905 }
8906 if (h->rescan_ctlr_wq) {
8907 destroy_workqueue(h->rescan_ctlr_wq);
8908 h->rescan_ctlr_wq = NULL;
8909 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008910 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008911 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008912}
8913
8914static void hpsa_flush_cache(struct ctlr_info *h)
8915{
8916 char *flush_buf;
8917 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008918 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008919
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008920 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008921 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008922 flush_buf = kzalloc(4, GFP_KERNEL);
8923 if (!flush_buf)
8924 return;
8925
Stephen Cameron45fcb862015-01-23 16:43:04 -06008926 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05008927
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008928 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
8929 RAID_CTLR_LUNID, TYPE_CMD)) {
8930 goto out;
8931 }
Webb Scales25163bd2015-04-23 09:32:00 -05008932 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05008933 PCI_DMA_TODEVICE, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05008934 if (rc)
8935 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008936 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008937out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008938 dev_warn(&h->pdev->dev,
8939 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06008940 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008941 kfree(flush_buf);
8942}
8943
Scott Teelc2adae42015-11-04 15:52:16 -06008944/* Make controller gather fresh report lun data each time we
8945 * send down a report luns request
8946 */
8947static void hpsa_disable_rld_caching(struct ctlr_info *h)
8948{
8949 u32 *options;
8950 struct CommandList *c;
8951 int rc;
8952
8953 /* Don't bother trying to set diag options if locked up */
8954 if (unlikely(h->lockup_detected))
8955 return;
8956
8957 options = kzalloc(sizeof(*options), GFP_KERNEL);
8958 if (!options) {
8959 dev_err(&h->pdev->dev,
8960 "Error: failed to disable rld caching, during alloc.\n");
8961 return;
8962 }
8963
8964 c = cmd_alloc(h);
8965
8966 /* first, get the current diag options settings */
8967 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8968 RAID_CTLR_LUNID, TYPE_CMD))
8969 goto errout;
8970
8971 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05008972 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06008973 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8974 goto errout;
8975
8976 /* Now, set the bit for disabling the RLD caching */
8977 *options |= HPSA_DIAG_OPTS_DISABLE_RLD_CACHING;
8978
8979 if (fill_cmd(c, BMIC_SET_DIAG_OPTIONS, h, options, 4, 0,
8980 RAID_CTLR_LUNID, TYPE_CMD))
8981 goto errout;
8982
8983 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05008984 PCI_DMA_TODEVICE, DEFAULT_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06008985 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8986 goto errout;
8987
8988 /* Now verify that it got set: */
8989 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8990 RAID_CTLR_LUNID, TYPE_CMD))
8991 goto errout;
8992
8993 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05008994 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06008995 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8996 goto errout;
8997
Dan Carpenterd8a080c2015-11-12 12:43:38 +03008998 if (*options & HPSA_DIAG_OPTS_DISABLE_RLD_CACHING)
Scott Teelc2adae42015-11-04 15:52:16 -06008999 goto out;
9000
9001errout:
9002 dev_err(&h->pdev->dev,
9003 "Error: failed to disable report lun data caching.\n");
9004out:
9005 cmd_free(h, c);
9006 kfree(options);
9007}
9008
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009009static void hpsa_shutdown(struct pci_dev *pdev)
9010{
9011 struct ctlr_info *h;
9012
9013 h = pci_get_drvdata(pdev);
9014 /* Turn board interrupts off and send the flush cache command
9015 * sendcmd will turn off interrupt, and send the flush...
9016 * To write all data in the battery backed cache to disks
9017 */
9018 hpsa_flush_cache(h);
9019 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliott105a3db2015-04-23 09:33:48 -05009020 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliottcc64c812015-04-23 09:33:12 -05009021 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009022}
9023
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009024static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06009025{
9026 int i;
9027
Robert Elliott105a3db2015-04-23 09:33:48 -05009028 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06009029 kfree(h->dev[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05009030 h->dev[i] = NULL;
9031 }
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06009032}
9033
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009034static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009035{
9036 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009037 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009038
9039 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05009040 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009041 return;
9042 }
9043 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009044
9045 /* Get rid of any controller monitoring work items */
9046 spin_lock_irqsave(&h->lock, flags);
9047 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009048 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06009049 cancel_delayed_work_sync(&h->monitor_ctlr_work);
9050 cancel_delayed_work_sync(&h->rescan_ctlr_work);
9051 destroy_workqueue(h->rescan_ctlr_wq);
9052 destroy_workqueue(h->resubmit_wq);
Robert Elliottcc64c812015-04-23 09:33:12 -05009053
Don Brace2d041302015-07-18 11:13:15 -05009054 /*
9055 * Call before disabling interrupts.
9056 * scsi_remove_host can trigger I/O operations especially
9057 * when multipath is enabled. There can be SYNCHRONIZE CACHE
9058 * operations which cannot complete and will hang the system.
9059 */
9060 if (h->scsi_host)
9061 scsi_remove_host(h->scsi_host); /* init_one 8 */
Robert Elliott105a3db2015-04-23 09:33:48 -05009062 /* includes hpsa_free_irqs - init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009063 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009064 hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05009065
Robert Elliott105a3db2015-04-23 09:33:48 -05009066 hpsa_free_device_info(h); /* scan */
9067
Robert Elliott2946e822015-04-23 09:35:09 -05009068 kfree(h->hba_inquiry_data); /* init_one 10 */
9069 h->hba_inquiry_data = NULL; /* init_one 10 */
Robert Elliott2946e822015-04-23 09:35:09 -05009070 hpsa_free_ioaccel2_sg_chain_blocks(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05009071 hpsa_free_performant_mode(h); /* init_one 7 */
9072 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
9073 hpsa_free_cmd_pool(h); /* init_one 5 */
Scott Teel34592252015-11-04 15:52:09 -06009074 kfree(h->lastlogicals);
Robert Elliott105a3db2015-04-23 09:33:48 -05009075
9076 /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009077
Robert Elliott2946e822015-04-23 09:35:09 -05009078 scsi_host_put(h->scsi_host); /* init_one 3 */
9079 h->scsi_host = NULL; /* init_one 3 */
9080
Robert Elliott195f2c62015-04-23 09:33:17 -05009081 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Robert Elliott2946e822015-04-23 09:35:09 -05009082 hpsa_free_pci_init(h); /* init_one 2.5 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009083
Robert Elliott105a3db2015-04-23 09:33:48 -05009084 free_percpu(h->lockup_detected); /* init_one 2 */
9085 h->lockup_detected = NULL; /* init_one 2 */
9086 /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009087
9088 hpsa_delete_sas_host(h);
9089
Robert Elliott105a3db2015-04-23 09:33:48 -05009090 kfree(h); /* init_one 1 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009091}
9092
9093static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
9094 __attribute__((unused)) pm_message_t state)
9095{
9096 return -ENOSYS;
9097}
9098
9099static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
9100{
9101 return -ENOSYS;
9102}
9103
9104static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06009105 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009106 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009107 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009108 .id_table = hpsa_pci_device_id, /* id_table */
9109 .shutdown = hpsa_shutdown,
9110 .suspend = hpsa_suspend,
9111 .resume = hpsa_resume,
9112};
9113
Don Brace303932f2010-02-04 08:42:40 -06009114/* Fill in bucket_map[], given nsgs (the max number of
9115 * scatter gather elements supported) and bucket[],
9116 * which is an array of 8 integers. The bucket[] array
9117 * contains 8 different DMA transfer sizes (in 16
9118 * byte increments) which the controller uses to fetch
9119 * commands. This function fills in bucket_map[], which
9120 * maps a given number of scatter gather elements to one of
9121 * the 8 DMA transfer sizes. The point of it is to allow the
9122 * controller to only do as much DMA as needed to fetch the
9123 * command, with the DMA transfer size encoded in the lower
9124 * bits of the command address.
9125 */
9126static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06009127 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06009128{
9129 int i, j, b, size;
9130
Don Brace303932f2010-02-04 08:42:40 -06009131 /* Note, bucket_map must have nsgs+1 entries. */
9132 for (i = 0; i <= nsgs; i++) {
9133 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06009134 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06009135 b = num_buckets; /* Assume the biggest bucket */
9136 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06009137 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06009138 if (bucket[j] >= size) {
9139 b = j;
9140 break;
9141 }
9142 }
9143 /* for a command with i SG entries, use bucket b. */
9144 bucket_map[i] = b;
9145 }
9146}
9147
Robert Elliott105a3db2015-04-23 09:33:48 -05009148/*
9149 * return -ENODEV on err, 0 on success (or no action)
9150 * allocates numerous items that must be freed later
9151 */
Robert Elliottc706a792015-01-23 16:45:01 -06009152static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06009153{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009154 int i;
9155 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06009156 unsigned long transMethod = CFGTBL_Trans_Performant |
9157 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009158 CFGTBL_Trans_enable_directed_msix |
9159 (trans_support & (CFGTBL_Trans_io_accel1 |
9160 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06009161 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05009162
9163 /* This is a bit complicated. There are 8 registers on
9164 * the controller which we write to to tell it 8 different
9165 * sizes of commands which there may be. It's a way of
9166 * reducing the DMA done to fetch each command. Encoded into
9167 * each command's tag are 3 bits which communicate to the controller
9168 * which of the eight sizes that command fits within. The size of
9169 * each command depends on how many scatter gather entries there are.
9170 * Each SG entry requires 16 bytes. The eight registers are programmed
9171 * with the number of 16-byte blocks a command of that size requires.
9172 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009173 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05009174 * blocks. Note, this only extends to the SG entries contained
9175 * within the command block, and does not extend to chained blocks
9176 * of SG elements. bft[] contains the eight values we write to
9177 * the registers. They are not evenly distributed, but have more
9178 * sizes for small commands, and fewer sizes for larger commands.
9179 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009180 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009181#define MIN_IOACCEL2_BFT_ENTRY 5
9182#define HPSA_IOACCEL2_HEADER_SZ 4
9183 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
9184 13, 14, 15, 16, 17, 18, 19,
9185 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
9186 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
9187 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
9188 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
9189 16 * MIN_IOACCEL2_BFT_ENTRY);
9190 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009191 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06009192 /* 5 = 1 s/g entry or 4k
9193 * 6 = 2 s/g entry or 8k
9194 * 8 = 4 s/g entry or 16k
9195 * 10 = 6 s/g entry or 24k
9196 */
Don Brace303932f2010-02-04 08:42:40 -06009197
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05009198 /* If the controller supports either ioaccel method then
9199 * we can also use the RAID stack submit path that does not
9200 * perform the superfluous readl() after each command submission.
9201 */
9202 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
9203 access = SA5_performant_access_no_read;
9204
Don Brace303932f2010-02-04 08:42:40 -06009205 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009206 for (i = 0; i < h->nreply_queues; i++)
9207 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06009208
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009209 bft[7] = SG_ENTRIES_IN_CMD + 4;
9210 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06009211 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06009212 for (i = 0; i < 8; i++)
9213 writel(bft[i], &h->transtable->BlockFetch[i]);
9214
9215 /* size of controller ring buffer */
9216 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05009217 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06009218 writel(0, &h->transtable->RepQCtrAddrLow32);
9219 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05009220
9221 for (i = 0; i < h->nreply_queues; i++) {
9222 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009223 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05009224 &h->transtable->RepQAddr[i].lower);
9225 }
9226
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009227 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06009228 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
9229 /*
9230 * enable outbound interrupt coalescing in accelerator mode;
9231 */
9232 if (trans_support & CFGTBL_Trans_io_accel1) {
9233 access = SA5_ioaccel_mode1_access;
9234 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
9235 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06009236 } else {
9237 if (trans_support & CFGTBL_Trans_io_accel2) {
9238 access = SA5_ioaccel_mode2_access;
9239 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
9240 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
9241 }
Matt Gatese1f7de02014-02-18 13:55:17 -06009242 }
Don Brace303932f2010-02-04 08:42:40 -06009243 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06009244 if (hpsa_wait_for_mode_change_ack(h)) {
9245 dev_err(&h->pdev->dev,
9246 "performant mode problem - doorbell timeout\n");
9247 return -ENODEV;
9248 }
Don Brace303932f2010-02-04 08:42:40 -06009249 register_value = readl(&(h->cfgtable->TransportActive));
9250 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06009251 dev_err(&h->pdev->dev,
9252 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06009253 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06009254 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06009255 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06009256 h->access = access;
9257 h->transMethod = transMethod;
9258
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009259 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
9260 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06009261 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06009262
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009263 if (trans_support & CFGTBL_Trans_io_accel1) {
9264 /* Set up I/O accelerator mode */
9265 for (i = 0; i < h->nreply_queues; i++) {
9266 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
9267 h->reply_queue[i].current_entry =
9268 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
9269 }
9270 bft[7] = h->ioaccel_maxsg + 8;
9271 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
9272 h->ioaccel1_blockFetchTable);
9273
9274 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009275 for (i = 0; i < h->nreply_queues; i++)
9276 memset(h->reply_queue[i].head,
9277 (u8) IOACCEL_MODE1_REPLY_UNUSED,
9278 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009279
9280 /* set all the constant fields in the accelerator command
9281 * frames once at init time to save CPU cycles later.
9282 */
9283 for (i = 0; i < h->nr_cmds; i++) {
9284 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
9285
9286 cp->function = IOACCEL1_FUNCTION_SCSIIO;
9287 cp->err_info = (u32) (h->errinfo_pool_dhandle +
9288 (i * sizeof(struct ErrorInfo)));
9289 cp->err_info_len = sizeof(struct ErrorInfo);
9290 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06009291 cp->host_context_flags =
9292 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009293 cp->timeout_sec = 0;
9294 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009295 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06009296 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009297 cp->host_addr =
9298 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009299 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009300 }
9301 } else if (trans_support & CFGTBL_Trans_io_accel2) {
9302 u64 cfg_offset, cfg_base_addr_index;
9303 u32 bft2_offset, cfg_base_addr;
9304 int rc;
9305
9306 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
9307 &cfg_base_addr_index, &cfg_offset);
9308 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
9309 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
9310 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
9311 4, h->ioaccel2_blockFetchTable);
9312 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
9313 BUILD_BUG_ON(offsetof(struct CfgTable,
9314 io_accel_request_size_offset) != 0xb8);
9315 h->ioaccel2_bft2_regs =
9316 remap_pci_mem(pci_resource_start(h->pdev,
9317 cfg_base_addr_index) +
9318 cfg_offset + bft2_offset,
9319 ARRAY_SIZE(bft2) *
9320 sizeof(*h->ioaccel2_bft2_regs));
9321 for (i = 0; i < ARRAY_SIZE(bft2); i++)
9322 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06009323 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009324 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06009325 if (hpsa_wait_for_mode_change_ack(h)) {
9326 dev_err(&h->pdev->dev,
9327 "performant mode problem - enabling ioaccel mode\n");
9328 return -ENODEV;
9329 }
9330 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06009331}
9332
Robert Elliott1fb7c982015-04-23 09:33:22 -05009333/* Free ioaccel1 mode command blocks and block fetch table */
9334static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
9335{
Robert Elliott105a3db2015-04-23 09:33:48 -05009336 if (h->ioaccel_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05009337 pci_free_consistent(h->pdev,
9338 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
9339 h->ioaccel_cmd_pool,
9340 h->ioaccel_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05009341 h->ioaccel_cmd_pool = NULL;
9342 h->ioaccel_cmd_pool_dhandle = 0;
9343 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05009344 kfree(h->ioaccel1_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009345 h->ioaccel1_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05009346}
9347
Robert Elliottd37ffbe2015-04-23 09:32:27 -05009348/* Allocate ioaccel1 mode command blocks and block fetch table */
9349static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06009350{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06009351 h->ioaccel_maxsg =
9352 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
9353 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
9354 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
9355
Matt Gatese1f7de02014-02-18 13:55:17 -06009356 /* Command structures must be aligned on a 128-byte boundary
9357 * because the 7 lower bits of the address are used by the
9358 * hardware.
9359 */
Matt Gatese1f7de02014-02-18 13:55:17 -06009360 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
9361 IOACCEL1_COMMANDLIST_ALIGNMENT);
9362 h->ioaccel_cmd_pool =
9363 pci_alloc_consistent(h->pdev,
9364 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
9365 &(h->ioaccel_cmd_pool_dhandle));
9366
9367 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06009368 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06009369 sizeof(u32)), GFP_KERNEL);
9370
9371 if ((h->ioaccel_cmd_pool == NULL) ||
9372 (h->ioaccel1_blockFetchTable == NULL))
9373 goto clean_up;
9374
9375 memset(h->ioaccel_cmd_pool, 0,
9376 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
9377 return 0;
9378
9379clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05009380 hpsa_free_ioaccel1_cmd_and_bft(h);
Robert Elliott2dd02d72015-04-23 09:33:43 -05009381 return -ENOMEM;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009382}
9383
Robert Elliott1fb7c982015-04-23 09:33:22 -05009384/* Free ioaccel2 mode command blocks and block fetch table */
9385static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
9386{
Webb Scalesd9a729f2015-04-23 09:33:27 -05009387 hpsa_free_ioaccel2_sg_chain_blocks(h);
9388
Robert Elliott105a3db2015-04-23 09:33:48 -05009389 if (h->ioaccel2_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05009390 pci_free_consistent(h->pdev,
9391 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
9392 h->ioaccel2_cmd_pool,
9393 h->ioaccel2_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05009394 h->ioaccel2_cmd_pool = NULL;
9395 h->ioaccel2_cmd_pool_dhandle = 0;
9396 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05009397 kfree(h->ioaccel2_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009398 h->ioaccel2_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05009399}
9400
Robert Elliottd37ffbe2015-04-23 09:32:27 -05009401/* Allocate ioaccel2 mode command blocks and block fetch table */
9402static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009403{
Webb Scalesd9a729f2015-04-23 09:33:27 -05009404 int rc;
9405
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009406 /* Allocate ioaccel2 mode command blocks and block fetch table */
9407
9408 h->ioaccel_maxsg =
9409 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
9410 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
9411 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
9412
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009413 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
9414 IOACCEL2_COMMANDLIST_ALIGNMENT);
9415 h->ioaccel2_cmd_pool =
9416 pci_alloc_consistent(h->pdev,
9417 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
9418 &(h->ioaccel2_cmd_pool_dhandle));
9419
9420 h->ioaccel2_blockFetchTable =
9421 kmalloc(((h->ioaccel_maxsg + 1) *
9422 sizeof(u32)), GFP_KERNEL);
9423
9424 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05009425 (h->ioaccel2_blockFetchTable == NULL)) {
9426 rc = -ENOMEM;
9427 goto clean_up;
9428 }
9429
9430 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
9431 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009432 goto clean_up;
9433
9434 memset(h->ioaccel2_cmd_pool, 0,
9435 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
9436 return 0;
9437
9438clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05009439 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05009440 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009441}
9442
Robert Elliott105a3db2015-04-23 09:33:48 -05009443/* Free items allocated by hpsa_put_ctlr_into_performant_mode */
9444static void hpsa_free_performant_mode(struct ctlr_info *h)
9445{
9446 kfree(h->blockFetchTable);
9447 h->blockFetchTable = NULL;
9448 hpsa_free_reply_queues(h);
9449 hpsa_free_ioaccel1_cmd_and_bft(h);
9450 hpsa_free_ioaccel2_cmd_and_bft(h);
9451}
9452
9453/* return -ENODEV on error, 0 on success (or no action)
9454 * allocates numerous items that must be freed later
9455 */
9456static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009457{
9458 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06009459 unsigned long transMethod = CFGTBL_Trans_Performant |
9460 CFGTBL_Trans_use_short_tags;
Robert Elliott105a3db2015-04-23 09:33:48 -05009461 int i, rc;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009462
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06009463 if (hpsa_simple_mode)
Robert Elliott105a3db2015-04-23 09:33:48 -05009464 return 0;
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06009465
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05009466 trans_support = readl(&(h->cfgtable->TransportSupport));
9467 if (!(trans_support & PERFORMANT_MODE))
Robert Elliott105a3db2015-04-23 09:33:48 -05009468 return 0;
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05009469
Matt Gatese1f7de02014-02-18 13:55:17 -06009470 /* Check for I/O accelerator mode support */
9471 if (trans_support & CFGTBL_Trans_io_accel1) {
9472 transMethod |= CFGTBL_Trans_io_accel1 |
9473 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05009474 rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
9475 if (rc)
9476 return rc;
9477 } else if (trans_support & CFGTBL_Trans_io_accel2) {
9478 transMethod |= CFGTBL_Trans_io_accel2 |
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009479 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05009480 rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
9481 if (rc)
9482 return rc;
Matt Gatese1f7de02014-02-18 13:55:17 -06009483 }
9484
Hannes Reineckeeee0f032014-01-15 13:30:53 +01009485 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05009486 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009487 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009488 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009489
Matt Gates254f7962012-05-01 11:43:06 -05009490 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009491 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
9492 h->reply_queue_size,
9493 &(h->reply_queue[i].busaddr));
Robert Elliott105a3db2015-04-23 09:33:48 -05009494 if (!h->reply_queue[i].head) {
9495 rc = -ENOMEM;
9496 goto clean1; /* rq, ioaccel */
9497 }
Matt Gates254f7962012-05-01 11:43:06 -05009498 h->reply_queue[i].size = h->max_commands;
9499 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
9500 h->reply_queue[i].current_entry = 0;
9501 }
9502
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009503 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009504 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009505 sizeof(u32)), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05009506 if (!h->blockFetchTable) {
9507 rc = -ENOMEM;
9508 goto clean1; /* rq, ioaccel */
9509 }
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009510
Robert Elliott105a3db2015-04-23 09:33:48 -05009511 rc = hpsa_enter_performant_mode(h, trans_support);
9512 if (rc)
9513 goto clean2; /* bft, rq, ioaccel */
9514 return 0;
Don Brace303932f2010-02-04 08:42:40 -06009515
Robert Elliott105a3db2015-04-23 09:33:48 -05009516clean2: /* bft, rq, ioaccel */
Don Brace303932f2010-02-04 08:42:40 -06009517 kfree(h->blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009518 h->blockFetchTable = NULL;
9519clean1: /* rq, ioaccel */
9520 hpsa_free_reply_queues(h);
9521 hpsa_free_ioaccel1_cmd_and_bft(h);
9522 hpsa_free_ioaccel2_cmd_and_bft(h);
9523 return rc;
Don Brace303932f2010-02-04 08:42:40 -06009524}
9525
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009526static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009527{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009528 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
9529}
9530
9531static void hpsa_drain_accel_commands(struct ctlr_info *h)
9532{
9533 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06009534 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06009535 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009536
Don Bracef2405db2015-01-23 16:43:09 -06009537 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009538 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06009539 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06009540 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06009541 refcount = atomic_inc_return(&c->refcount);
9542 if (refcount > 1) /* Command is allocated */
9543 accel_cmds_out += is_accelerated_cmd(c);
9544 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06009545 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009546 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06009547 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009548 msleep(100);
9549 } while (1);
9550}
9551
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009552static struct hpsa_sas_phy *hpsa_alloc_sas_phy(
9553 struct hpsa_sas_port *hpsa_sas_port)
9554{
9555 struct hpsa_sas_phy *hpsa_sas_phy;
9556 struct sas_phy *phy;
9557
9558 hpsa_sas_phy = kzalloc(sizeof(*hpsa_sas_phy), GFP_KERNEL);
9559 if (!hpsa_sas_phy)
9560 return NULL;
9561
9562 phy = sas_phy_alloc(hpsa_sas_port->parent_node->parent_dev,
9563 hpsa_sas_port->next_phy_index);
9564 if (!phy) {
9565 kfree(hpsa_sas_phy);
9566 return NULL;
9567 }
9568
9569 hpsa_sas_port->next_phy_index++;
9570 hpsa_sas_phy->phy = phy;
9571 hpsa_sas_phy->parent_port = hpsa_sas_port;
9572
9573 return hpsa_sas_phy;
9574}
9575
9576static void hpsa_free_sas_phy(struct hpsa_sas_phy *hpsa_sas_phy)
9577{
9578 struct sas_phy *phy = hpsa_sas_phy->phy;
9579
9580 sas_port_delete_phy(hpsa_sas_phy->parent_port->port, phy);
9581 sas_phy_free(phy);
9582 if (hpsa_sas_phy->added_to_port)
9583 list_del(&hpsa_sas_phy->phy_list_entry);
9584 kfree(hpsa_sas_phy);
9585}
9586
9587static int hpsa_sas_port_add_phy(struct hpsa_sas_phy *hpsa_sas_phy)
9588{
9589 int rc;
9590 struct hpsa_sas_port *hpsa_sas_port;
9591 struct sas_phy *phy;
9592 struct sas_identify *identify;
9593
9594 hpsa_sas_port = hpsa_sas_phy->parent_port;
9595 phy = hpsa_sas_phy->phy;
9596
9597 identify = &phy->identify;
9598 memset(identify, 0, sizeof(*identify));
9599 identify->sas_address = hpsa_sas_port->sas_address;
9600 identify->device_type = SAS_END_DEVICE;
9601 identify->initiator_port_protocols = SAS_PROTOCOL_STP;
9602 identify->target_port_protocols = SAS_PROTOCOL_STP;
9603 phy->minimum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
9604 phy->maximum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
9605 phy->minimum_linkrate = SAS_LINK_RATE_UNKNOWN;
9606 phy->maximum_linkrate = SAS_LINK_RATE_UNKNOWN;
9607 phy->negotiated_linkrate = SAS_LINK_RATE_UNKNOWN;
9608
9609 rc = sas_phy_add(hpsa_sas_phy->phy);
9610 if (rc)
9611 return rc;
9612
9613 sas_port_add_phy(hpsa_sas_port->port, hpsa_sas_phy->phy);
9614 list_add_tail(&hpsa_sas_phy->phy_list_entry,
9615 &hpsa_sas_port->phy_list_head);
9616 hpsa_sas_phy->added_to_port = true;
9617
9618 return 0;
9619}
9620
9621static int
9622 hpsa_sas_port_add_rphy(struct hpsa_sas_port *hpsa_sas_port,
9623 struct sas_rphy *rphy)
9624{
9625 struct sas_identify *identify;
9626
9627 identify = &rphy->identify;
9628 identify->sas_address = hpsa_sas_port->sas_address;
9629 identify->initiator_port_protocols = SAS_PROTOCOL_STP;
9630 identify->target_port_protocols = SAS_PROTOCOL_STP;
9631
9632 return sas_rphy_add(rphy);
9633}
9634
9635static struct hpsa_sas_port
9636 *hpsa_alloc_sas_port(struct hpsa_sas_node *hpsa_sas_node,
9637 u64 sas_address)
9638{
9639 int rc;
9640 struct hpsa_sas_port *hpsa_sas_port;
9641 struct sas_port *port;
9642
9643 hpsa_sas_port = kzalloc(sizeof(*hpsa_sas_port), GFP_KERNEL);
9644 if (!hpsa_sas_port)
9645 return NULL;
9646
9647 INIT_LIST_HEAD(&hpsa_sas_port->phy_list_head);
9648 hpsa_sas_port->parent_node = hpsa_sas_node;
9649
9650 port = sas_port_alloc_num(hpsa_sas_node->parent_dev);
9651 if (!port)
9652 goto free_hpsa_port;
9653
9654 rc = sas_port_add(port);
9655 if (rc)
9656 goto free_sas_port;
9657
9658 hpsa_sas_port->port = port;
9659 hpsa_sas_port->sas_address = sas_address;
9660 list_add_tail(&hpsa_sas_port->port_list_entry,
9661 &hpsa_sas_node->port_list_head);
9662
9663 return hpsa_sas_port;
9664
9665free_sas_port:
9666 sas_port_free(port);
9667free_hpsa_port:
9668 kfree(hpsa_sas_port);
9669
9670 return NULL;
9671}
9672
9673static void hpsa_free_sas_port(struct hpsa_sas_port *hpsa_sas_port)
9674{
9675 struct hpsa_sas_phy *hpsa_sas_phy;
9676 struct hpsa_sas_phy *next;
9677
9678 list_for_each_entry_safe(hpsa_sas_phy, next,
9679 &hpsa_sas_port->phy_list_head, phy_list_entry)
9680 hpsa_free_sas_phy(hpsa_sas_phy);
9681
9682 sas_port_delete(hpsa_sas_port->port);
9683 list_del(&hpsa_sas_port->port_list_entry);
9684 kfree(hpsa_sas_port);
9685}
9686
9687static struct hpsa_sas_node *hpsa_alloc_sas_node(struct device *parent_dev)
9688{
9689 struct hpsa_sas_node *hpsa_sas_node;
9690
9691 hpsa_sas_node = kzalloc(sizeof(*hpsa_sas_node), GFP_KERNEL);
9692 if (hpsa_sas_node) {
9693 hpsa_sas_node->parent_dev = parent_dev;
9694 INIT_LIST_HEAD(&hpsa_sas_node->port_list_head);
9695 }
9696
9697 return hpsa_sas_node;
9698}
9699
9700static void hpsa_free_sas_node(struct hpsa_sas_node *hpsa_sas_node)
9701{
9702 struct hpsa_sas_port *hpsa_sas_port;
9703 struct hpsa_sas_port *next;
9704
9705 if (!hpsa_sas_node)
9706 return;
9707
9708 list_for_each_entry_safe(hpsa_sas_port, next,
9709 &hpsa_sas_node->port_list_head, port_list_entry)
9710 hpsa_free_sas_port(hpsa_sas_port);
9711
9712 kfree(hpsa_sas_node);
9713}
9714
9715static struct hpsa_scsi_dev_t
9716 *hpsa_find_device_by_sas_rphy(struct ctlr_info *h,
9717 struct sas_rphy *rphy)
9718{
9719 int i;
9720 struct hpsa_scsi_dev_t *device;
9721
9722 for (i = 0; i < h->ndevices; i++) {
9723 device = h->dev[i];
9724 if (!device->sas_port)
9725 continue;
9726 if (device->sas_port->rphy == rphy)
9727 return device;
9728 }
9729
9730 return NULL;
9731}
9732
9733static int hpsa_add_sas_host(struct ctlr_info *h)
9734{
9735 int rc;
9736 struct device *parent_dev;
9737 struct hpsa_sas_node *hpsa_sas_node;
9738 struct hpsa_sas_port *hpsa_sas_port;
9739 struct hpsa_sas_phy *hpsa_sas_phy;
9740
9741 parent_dev = &h->scsi_host->shost_gendev;
9742
9743 hpsa_sas_node = hpsa_alloc_sas_node(parent_dev);
9744 if (!hpsa_sas_node)
9745 return -ENOMEM;
9746
9747 hpsa_sas_port = hpsa_alloc_sas_port(hpsa_sas_node, h->sas_address);
9748 if (!hpsa_sas_port) {
9749 rc = -ENODEV;
9750 goto free_sas_node;
9751 }
9752
9753 hpsa_sas_phy = hpsa_alloc_sas_phy(hpsa_sas_port);
9754 if (!hpsa_sas_phy) {
9755 rc = -ENODEV;
9756 goto free_sas_port;
9757 }
9758
9759 rc = hpsa_sas_port_add_phy(hpsa_sas_phy);
9760 if (rc)
9761 goto free_sas_phy;
9762
9763 h->sas_host = hpsa_sas_node;
9764
9765 return 0;
9766
9767free_sas_phy:
9768 hpsa_free_sas_phy(hpsa_sas_phy);
9769free_sas_port:
9770 hpsa_free_sas_port(hpsa_sas_port);
9771free_sas_node:
9772 hpsa_free_sas_node(hpsa_sas_node);
9773
9774 return rc;
9775}
9776
9777static void hpsa_delete_sas_host(struct ctlr_info *h)
9778{
9779 hpsa_free_sas_node(h->sas_host);
9780}
9781
9782static int hpsa_add_sas_device(struct hpsa_sas_node *hpsa_sas_node,
9783 struct hpsa_scsi_dev_t *device)
9784{
9785 int rc;
9786 struct hpsa_sas_port *hpsa_sas_port;
9787 struct sas_rphy *rphy;
9788
9789 hpsa_sas_port = hpsa_alloc_sas_port(hpsa_sas_node, device->sas_address);
9790 if (!hpsa_sas_port)
9791 return -ENOMEM;
9792
9793 rphy = sas_end_device_alloc(hpsa_sas_port->port);
9794 if (!rphy) {
9795 rc = -ENODEV;
9796 goto free_sas_port;
9797 }
9798
9799 hpsa_sas_port->rphy = rphy;
9800 device->sas_port = hpsa_sas_port;
9801
9802 rc = hpsa_sas_port_add_rphy(hpsa_sas_port, rphy);
9803 if (rc)
9804 goto free_sas_port;
9805
9806 return 0;
9807
9808free_sas_port:
9809 hpsa_free_sas_port(hpsa_sas_port);
9810 device->sas_port = NULL;
9811
9812 return rc;
9813}
9814
9815static void hpsa_remove_sas_device(struct hpsa_scsi_dev_t *device)
9816{
9817 if (device->sas_port) {
9818 hpsa_free_sas_port(device->sas_port);
9819 device->sas_port = NULL;
9820 }
9821}
9822
9823static int
9824hpsa_sas_get_linkerrors(struct sas_phy *phy)
9825{
9826 return 0;
9827}
9828
9829static int
9830hpsa_sas_get_enclosure_identifier(struct sas_rphy *rphy, u64 *identifier)
9831{
Dan Carpenteraa105692016-04-14 12:37:44 +03009832 *identifier = 0;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009833 return 0;
9834}
9835
9836static int
9837hpsa_sas_get_bay_identifier(struct sas_rphy *rphy)
9838{
9839 return -ENXIO;
9840}
9841
9842static int
9843hpsa_sas_phy_reset(struct sas_phy *phy, int hard_reset)
9844{
9845 return 0;
9846}
9847
9848static int
9849hpsa_sas_phy_enable(struct sas_phy *phy, int enable)
9850{
9851 return 0;
9852}
9853
9854static int
9855hpsa_sas_phy_setup(struct sas_phy *phy)
9856{
9857 return 0;
9858}
9859
9860static void
9861hpsa_sas_phy_release(struct sas_phy *phy)
9862{
9863}
9864
9865static int
9866hpsa_sas_phy_speed(struct sas_phy *phy, struct sas_phy_linkrates *rates)
9867{
9868 return -EINVAL;
9869}
9870
9871/* SMP = Serial Management Protocol */
9872static int
9873hpsa_sas_smp_handler(struct Scsi_Host *shost, struct sas_rphy *rphy,
9874struct request *req)
9875{
9876 return -EINVAL;
9877}
9878
9879static struct sas_function_template hpsa_sas_transport_functions = {
9880 .get_linkerrors = hpsa_sas_get_linkerrors,
9881 .get_enclosure_identifier = hpsa_sas_get_enclosure_identifier,
9882 .get_bay_identifier = hpsa_sas_get_bay_identifier,
9883 .phy_reset = hpsa_sas_phy_reset,
9884 .phy_enable = hpsa_sas_phy_enable,
9885 .phy_setup = hpsa_sas_phy_setup,
9886 .phy_release = hpsa_sas_phy_release,
9887 .set_phy_speed = hpsa_sas_phy_speed,
9888 .smp_handler = hpsa_sas_smp_handler,
9889};
9890
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009891/*
9892 * This is it. Register the PCI driver information for the cards we control
9893 * the OS will call our registered routines when it finds one of our cards.
9894 */
9895static int __init hpsa_init(void)
9896{
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009897 int rc;
9898
9899 hpsa_sas_transport_template =
9900 sas_attach_transport(&hpsa_sas_transport_functions);
9901 if (!hpsa_sas_transport_template)
9902 return -ENODEV;
9903
9904 rc = pci_register_driver(&hpsa_pci_driver);
9905
9906 if (rc)
9907 sas_release_transport(hpsa_sas_transport_template);
9908
9909 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009910}
9911
9912static void __exit hpsa_cleanup(void)
9913{
9914 pci_unregister_driver(&hpsa_pci_driver);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009915 sas_release_transport(hpsa_sas_transport_template);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009916}
9917
Matt Gatese1f7de02014-02-18 13:55:17 -06009918static void __attribute__((unused)) verify_offsets(void)
9919{
9920#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06009921 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
9922
9923 VERIFY_OFFSET(structure_size, 0);
9924 VERIFY_OFFSET(volume_blk_size, 4);
9925 VERIFY_OFFSET(volume_blk_cnt, 8);
9926 VERIFY_OFFSET(phys_blk_shift, 16);
9927 VERIFY_OFFSET(parity_rotation_shift, 17);
9928 VERIFY_OFFSET(strip_size, 18);
9929 VERIFY_OFFSET(disk_starting_blk, 20);
9930 VERIFY_OFFSET(disk_blk_cnt, 28);
9931 VERIFY_OFFSET(data_disks_per_row, 36);
9932 VERIFY_OFFSET(metadata_disks_per_row, 38);
9933 VERIFY_OFFSET(row_cnt, 40);
9934 VERIFY_OFFSET(layout_map_count, 42);
9935 VERIFY_OFFSET(flags, 44);
9936 VERIFY_OFFSET(dekindex, 46);
9937 /* VERIFY_OFFSET(reserved, 48 */
9938 VERIFY_OFFSET(data, 64);
9939
9940#undef VERIFY_OFFSET
9941
9942#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06009943 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
9944
9945 VERIFY_OFFSET(IU_type, 0);
9946 VERIFY_OFFSET(direction, 1);
9947 VERIFY_OFFSET(reply_queue, 2);
9948 /* VERIFY_OFFSET(reserved1, 3); */
9949 VERIFY_OFFSET(scsi_nexus, 4);
9950 VERIFY_OFFSET(Tag, 8);
9951 VERIFY_OFFSET(cdb, 16);
9952 VERIFY_OFFSET(cciss_lun, 32);
9953 VERIFY_OFFSET(data_len, 40);
9954 VERIFY_OFFSET(cmd_priority_task_attr, 44);
9955 VERIFY_OFFSET(sg_count, 45);
9956 /* VERIFY_OFFSET(reserved3 */
9957 VERIFY_OFFSET(err_ptr, 48);
9958 VERIFY_OFFSET(err_len, 56);
9959 /* VERIFY_OFFSET(reserved4 */
9960 VERIFY_OFFSET(sg, 64);
9961
9962#undef VERIFY_OFFSET
9963
9964#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06009965 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
9966
9967 VERIFY_OFFSET(dev_handle, 0x00);
9968 VERIFY_OFFSET(reserved1, 0x02);
9969 VERIFY_OFFSET(function, 0x03);
9970 VERIFY_OFFSET(reserved2, 0x04);
9971 VERIFY_OFFSET(err_info, 0x0C);
9972 VERIFY_OFFSET(reserved3, 0x10);
9973 VERIFY_OFFSET(err_info_len, 0x12);
9974 VERIFY_OFFSET(reserved4, 0x13);
9975 VERIFY_OFFSET(sgl_offset, 0x14);
9976 VERIFY_OFFSET(reserved5, 0x15);
9977 VERIFY_OFFSET(transfer_len, 0x1C);
9978 VERIFY_OFFSET(reserved6, 0x20);
9979 VERIFY_OFFSET(io_flags, 0x24);
9980 VERIFY_OFFSET(reserved7, 0x26);
9981 VERIFY_OFFSET(LUN, 0x34);
9982 VERIFY_OFFSET(control, 0x3C);
9983 VERIFY_OFFSET(CDB, 0x40);
9984 VERIFY_OFFSET(reserved8, 0x50);
9985 VERIFY_OFFSET(host_context_flags, 0x60);
9986 VERIFY_OFFSET(timeout_sec, 0x62);
9987 VERIFY_OFFSET(ReplyQueue, 0x64);
9988 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009989 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06009990 VERIFY_OFFSET(host_addr, 0x70);
9991 VERIFY_OFFSET(CISS_LUN, 0x78);
9992 VERIFY_OFFSET(SG, 0x78 + 8);
9993#undef VERIFY_OFFSET
9994}
9995
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009996module_init(hpsa_init);
9997module_exit(hpsa_cleanup);