blob: 1a4ddfacb45808d96682b4bcd659aaacd0422c69 [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>
24#include <linux/kernel.h>
25#include <linux/slab.h>
26#include <linux/delay.h>
27#include <linux/fs.h>
28#include <linux/timer.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080029#include <linux/init.h>
30#include <linux/spinlock.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080031#include <linux/compat.h>
32#include <linux/blktrace_api.h>
33#include <linux/uaccess.h>
34#include <linux/io.h>
35#include <linux/dma-mapping.h>
36#include <linux/completion.h>
37#include <linux/moduleparam.h>
38#include <scsi/scsi.h>
39#include <scsi/scsi_cmnd.h>
40#include <scsi/scsi_device.h>
41#include <scsi/scsi_host.h>
Stephen M. Cameron667e23d2010-02-25 14:02:51 -060042#include <scsi/scsi_tcq.h>
Stephen Cameron9437ac42015-04-23 09:32:16 -050043#include <scsi/scsi_eh.h>
Kevin Barnettd04e62b2015-11-04 15:52:34 -060044#include <scsi/scsi_transport_sas.h>
Webb Scales73153fe2015-04-23 09:35:04 -050045#include <scsi/scsi_dbg.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080046#include <linux/cciss_ioctl.h>
47#include <linux/string.h>
48#include <linux/bitmap.h>
Arun Sharma600634972011-07-26 16:09:06 -070049#include <linux/atomic.h>
Stephen M. Camerona0c12412011-10-26 16:22:04 -050050#include <linux/jiffies.h>
Don Brace42a91642014-11-14 17:26:27 -060051#include <linux/percpu-defs.h>
Stephen M. Cameron094963d2014-05-29 10:53:18 -050052#include <linux/percpu.h>
Don Brace2b08b3e2015-01-23 16:41:09 -060053#include <asm/unaligned.h>
Stephen M. Cameron283b4a92014-02-18 13:55:33 -060054#include <asm/div64.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080055#include "hpsa_cmd.h"
56#include "hpsa.h"
57
Don Braceec2c3aa2015-11-04 15:52:40 -060058/*
59 * HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.'
60 * with an optional trailing '-' followed by a byte value (0-255).
61 */
Don Brace9a14f9b2019-05-07 13:32:40 -050062#define HPSA_DRIVER_VERSION "3.4.20-170"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080063#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -060064#define HPSA "hpsa"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080065
Robert Elliott007e7aa2015-01-23 16:44:56 -060066/* How long to wait for CISS doorbell communication */
67#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */
68#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */
69#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */
70#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */
Stephen M. Cameronedd16362009-12-08 14:09:11 -080071#define MAX_IOCTL_CONFIG_WAIT 1000
72
73/*define how many times we will try a command because of bus resets */
74#define MAX_CMD_RETRIES 3
Don Braceb443d3e2019-05-07 13:32:20 -050075/* How long to wait before giving up on a command */
76#define HPSA_EH_PTRAID_TIMEOUT (240 * HZ)
Stephen M. Cameronedd16362009-12-08 14:09:11 -080077
78/* Embedded module documentation macros - see modules.h */
79MODULE_AUTHOR("Hewlett-Packard Company");
80MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
81 HPSA_DRIVER_VERSION);
82MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
83MODULE_VERSION(HPSA_DRIVER_VERSION);
84MODULE_LICENSE("GPL");
Hannes Reinecke253d2462017-08-15 08:58:08 +020085MODULE_ALIAS("cciss");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080086
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060087static int hpsa_simple_mode;
88module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
89MODULE_PARM_DESC(hpsa_simple_mode,
90 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080091
92/* define the PCI info for the cards we can control */
93static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080094 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
95 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
96 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
97 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
98 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -050099 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -0600101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -0600102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Don Brace7f1974a2017-03-28 16:40:13 -0500109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103c, 0x1920},
Mike Millerfe0c9612012-09-20 16:05:18 -0500110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Don Brace7f1974a2017-03-28 16:40:13 -0500114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103c, 0x1925},
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},
Hannes Reinecke135ae6e2017-08-15 08:58:04 +0200149 {PCI_VENDOR_ID_COMPAQ, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
150 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800151 {0,}
152};
153
154MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
155
156/* board_id = Subsystem Device ID & Vendor ID
157 * product = Marketing Name for the board
158 * access = Address of the struct of function pointers
159 */
160static struct board_type products[] = {
Hannes Reinecke135ae6e2017-08-15 08:58:04 +0200161 {0x40700E11, "Smart Array 5300", &SA5A_access},
162 {0x40800E11, "Smart Array 5i", &SA5B_access},
163 {0x40820E11, "Smart Array 532", &SA5B_access},
164 {0x40830E11, "Smart Array 5312", &SA5B_access},
165 {0x409A0E11, "Smart Array 641", &SA5A_access},
166 {0x409B0E11, "Smart Array 642", &SA5A_access},
167 {0x409C0E11, "Smart Array 6400", &SA5A_access},
168 {0x409D0E11, "Smart Array 6400 EM", &SA5A_access},
169 {0x40910E11, "Smart Array 6i", &SA5A_access},
170 {0x3225103C, "Smart Array P600", &SA5A_access},
171 {0x3223103C, "Smart Array P800", &SA5A_access},
172 {0x3234103C, "Smart Array P400", &SA5A_access},
173 {0x3235103C, "Smart Array P400i", &SA5A_access},
174 {0x3211103C, "Smart Array E200i", &SA5A_access},
175 {0x3212103C, "Smart Array E200", &SA5A_access},
176 {0x3213103C, "Smart Array E200i", &SA5A_access},
177 {0x3214103C, "Smart Array E200i", &SA5A_access},
178 {0x3215103C, "Smart Array E200i", &SA5A_access},
179 {0x3237103C, "Smart Array E500", &SA5A_access},
180 {0x323D103C, "Smart Array P700m", &SA5A_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800181 {0x3241103C, "Smart Array P212", &SA5_access},
182 {0x3243103C, "Smart Array P410", &SA5_access},
183 {0x3245103C, "Smart Array P410i", &SA5_access},
184 {0x3247103C, "Smart Array P411", &SA5_access},
185 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500186 {0x324A103C, "Smart Array P712m", &SA5_access},
187 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600188 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500189 {0x3350103C, "Smart Array P222", &SA5_access},
190 {0x3351103C, "Smart Array P420", &SA5_access},
191 {0x3352103C, "Smart Array P421", &SA5_access},
192 {0x3353103C, "Smart Array P822", &SA5_access},
193 {0x3354103C, "Smart Array P420i", &SA5_access},
194 {0x3355103C, "Smart Array P220i", &SA5_access},
195 {0x3356103C, "Smart Array P721m", &SA5_access},
Don Brace7f1974a2017-03-28 16:40:13 -0500196 {0x1920103C, "Smart Array P430i", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500197 {0x1921103C, "Smart Array P830i", &SA5_access},
198 {0x1922103C, "Smart Array P430", &SA5_access},
199 {0x1923103C, "Smart Array P431", &SA5_access},
200 {0x1924103C, "Smart Array P830", &SA5_access},
Don Brace7f1974a2017-03-28 16:40:13 -0500201 {0x1925103C, "Smart Array P831", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500202 {0x1926103C, "Smart Array P731m", &SA5_access},
203 {0x1928103C, "Smart Array P230i", &SA5_access},
204 {0x1929103C, "Smart Array P530", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600205 {0x21BD103C, "Smart Array P244br", &SA5_access},
206 {0x21BE103C, "Smart Array P741m", &SA5_access},
207 {0x21BF103C, "Smart HBA H240ar", &SA5_access},
208 {0x21C0103C, "Smart Array P440ar", &SA5_access},
Don Bracec8ae0ab2015-01-23 16:45:12 -0600209 {0x21C1103C, "Smart Array P840ar", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600210 {0x21C2103C, "Smart Array P440", &SA5_access},
211 {0x21C3103C, "Smart Array P441", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500212 {0x21C4103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600213 {0x21C5103C, "Smart Array P841", &SA5_access},
214 {0x21C6103C, "Smart HBA H244br", &SA5_access},
215 {0x21C7103C, "Smart HBA H240", &SA5_access},
216 {0x21C8103C, "Smart HBA H241", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500217 {0x21C9103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600218 {0x21CA103C, "Smart Array P246br", &SA5_access},
219 {0x21CB103C, "Smart Array P840", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500220 {0x21CC103C, "Smart Array", &SA5_access},
221 {0x21CD103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600222 {0x21CE103C, "Smart HBA", &SA5_access},
Don Bracefdfa4b62015-04-23 09:35:27 -0500223 {0x05809005, "SmartHBA-SA", &SA5_access},
Don Bracecbb47dc2015-07-18 11:12:54 -0500224 {0x05819005, "SmartHBA-SA 8i", &SA5_access},
225 {0x05829005, "SmartHBA-SA 8i8e", &SA5_access},
226 {0x05839005, "SmartHBA-SA 8e", &SA5_access},
227 {0x05849005, "SmartHBA-SA 16i", &SA5_access},
228 {0x05859005, "SmartHBA-SA 4i4e", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600229 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
230 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
231 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
232 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
233 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800234 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
235};
236
Kevin Barnettd04e62b2015-11-04 15:52:34 -0600237static struct scsi_transport_template *hpsa_sas_transport_template;
238static int hpsa_add_sas_host(struct ctlr_info *h);
239static void hpsa_delete_sas_host(struct ctlr_info *h);
240static int hpsa_add_sas_device(struct hpsa_sas_node *hpsa_sas_node,
241 struct hpsa_scsi_dev_t *device);
242static void hpsa_remove_sas_device(struct hpsa_scsi_dev_t *device);
243static struct hpsa_scsi_dev_t
244 *hpsa_find_device_by_sas_rphy(struct ctlr_info *h,
245 struct sas_rphy *rphy);
246
Webb Scalesa58e7e52015-04-23 09:34:16 -0500247#define SCSI_CMD_BUSY ((struct scsi_cmnd *)&hpsa_cmd_busy)
248static const struct scsi_cmnd hpsa_cmd_busy;
249#define SCSI_CMD_IDLE ((struct scsi_cmnd *)&hpsa_cmd_idle)
250static const struct scsi_cmnd hpsa_cmd_idle;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800251static int number_of_controllers;
252
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500253static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
254static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Nathan Chancellor6f4e6262019-02-07 09:07:20 -0700255static int hpsa_ioctl(struct scsi_device *dev, unsigned int cmd,
256 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800257
258#ifdef CONFIG_COMPAT
Nathan Chancellor6f4e6262019-02-07 09:07:20 -0700259static int hpsa_compat_ioctl(struct scsi_device *dev, unsigned int cmd,
Don Brace42a91642014-11-14 17:26:27 -0600260 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800261#endif
262
263static void cmd_free(struct ctlr_info *h, struct CommandList *c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800264static struct CommandList *cmd_alloc(struct ctlr_info *h);
Webb Scales73153fe2015-04-23 09:35:04 -0500265static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c);
266static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
267 struct scsi_cmnd *scmd);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600268static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600269 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800270 int cmd_type);
Robert Elliott2c143342015-01-23 16:42:48 -0600271static void hpsa_free_cmd_pool(struct ctlr_info *h);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600272#define VPD_PAGE (1 << 8)
Don Braceb48d9802015-11-04 15:50:13 -0600273#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800274
Jeff Garzikf2812332010-11-16 02:10:29 -0500275static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a84712010-02-04 08:43:16 -0600276static void hpsa_scan_start(struct Scsi_Host *);
277static int hpsa_scan_finished(struct Scsi_Host *sh,
278 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600279static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800280
281static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
282static int hpsa_slave_alloc(struct scsi_device *sdev);
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500283static int hpsa_slave_configure(struct scsi_device *sdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800284static void hpsa_slave_destroy(struct scsi_device *sdev);
285
Don Brace8aa60682015-11-04 15:50:01 -0600286static void hpsa_update_scsi_devices(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800287static int check_for_unit_attention(struct ctlr_info *h,
288 struct CommandList *c);
289static void check_ioctl_unit_attention(struct ctlr_info *h,
290 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600291/* performant mode helper functions */
292static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600293 int nsgs, int min_blocks, u32 *bucket_map);
Robert Elliott105a3db2015-04-23 09:33:48 -0500294static void hpsa_free_performant_mode(struct ctlr_info *h);
295static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500296static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800297static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
298 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
299 u64 *cfg_offset);
300static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
301 unsigned long *memory_bar);
Hannes Reinecke135ae6e2017-08-15 08:58:04 +0200302static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id,
303 bool *legacy_board);
Don Bracebfd75462016-11-15 14:45:32 -0600304static int wait_for_device_to_become_ready(struct ctlr_info *h,
305 unsigned char lunaddr[],
306 int reply_queue);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800307static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
308 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500309static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600310static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600311#define BOARD_NOT_READY 0
312#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600313static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600314static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600315static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
316 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600317 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600318static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500319static u32 lockup_detected(struct ctlr_info *h);
320static int detect_controller_lockup(struct ctlr_info *h);
Scott Teelc2adae42015-11-04 15:52:16 -0600321static void hpsa_disable_rld_caching(struct ctlr_info *h);
Kevin Barnettd04e62b2015-11-04 15:52:34 -0600322static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
323 struct ReportExtendedLUNdata *buf, int bufsize);
Scott Teel83832782016-09-09 16:30:29 -0500324static bool hpsa_vpd_page_supported(struct ctlr_info *h,
325 unsigned char scsi3addr[], u8 page);
Scott Teel34592252015-11-04 15:52:09 -0600326static int hpsa_luns_changed(struct ctlr_info *h);
Don Braceba74fdc2016-04-27 17:14:17 -0500327static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
328 struct hpsa_scsi_dev_t *dev,
329 unsigned char *scsi3addr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800330
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800331static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
332{
333 unsigned long *priv = shost_priv(sdev->host);
334 return (struct ctlr_info *) *priv;
335}
336
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600337static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
338{
339 unsigned long *priv = shost_priv(sh);
340 return (struct ctlr_info *) *priv;
341}
342
Webb Scalesa58e7e52015-04-23 09:34:16 -0500343static inline bool hpsa_is_cmd_idle(struct CommandList *c)
344{
345 return c->scsi_cmd == SCSI_CMD_IDLE;
346}
347
Stephen Cameron9437ac42015-04-23 09:32:16 -0500348/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
349static void decode_sense_data(const u8 *sense_data, int sense_data_len,
350 u8 *sense_key, u8 *asc, u8 *ascq)
351{
352 struct scsi_sense_hdr sshdr;
353 bool rc;
354
355 *sense_key = -1;
356 *asc = -1;
357 *ascq = -1;
358
359 if (sense_data_len < 1)
360 return;
361
362 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
363 if (rc) {
364 *sense_key = sshdr.sense_key;
365 *asc = sshdr.asc;
366 *ascq = sshdr.ascq;
367 }
368}
369
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800370static int check_for_unit_attention(struct ctlr_info *h,
371 struct CommandList *c)
372{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500373 u8 sense_key, asc, ascq;
374 int sense_len;
375
376 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
377 sense_len = sizeof(c->err_info->SenseInfo);
378 else
379 sense_len = c->err_info->SenseLen;
380
381 decode_sense_data(c->err_info->SenseInfo, sense_len,
382 &sense_key, &asc, &ascq);
Don Brace81c27552015-07-18 11:12:28 -0500383 if (sense_key != UNIT_ATTENTION || asc == 0xff)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800384 return 0;
385
Stephen Cameron9437ac42015-04-23 09:32:16 -0500386 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800387 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500388 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500389 "%s: a state change detected, command retried\n",
390 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800391 break;
392 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600393 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500394 "%s: LUN failure detected\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800395 break;
396 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600397 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500398 "%s: report LUN data changed\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800399 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600400 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
401 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800402 */
403 break;
404 case POWER_OR_RESET:
Robert Elliott2946e822015-04-23 09:35:09 -0500405 dev_warn(&h->pdev->dev,
406 "%s: a power on or device reset detected\n",
407 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800408 break;
409 case UNIT_ATTENTION_CLEARED:
Robert Elliott2946e822015-04-23 09:35:09 -0500410 dev_warn(&h->pdev->dev,
411 "%s: unit attention cleared by another initiator\n",
412 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800413 break;
414 default:
Robert Elliott2946e822015-04-23 09:35:09 -0500415 dev_warn(&h->pdev->dev,
416 "%s: unknown unit attention detected\n",
417 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800418 break;
419 }
420 return 1;
421}
422
Matt Bondurant852af202012-05-01 11:42:35 -0500423static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
424{
425 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
426 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
427 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
428 return 0;
429 dev_warn(&h->pdev->dev, HPSA "device busy");
430 return 1;
431}
432
Stephen Camerone985c582015-04-23 09:32:22 -0500433static u32 lockup_detected(struct ctlr_info *h);
434static ssize_t host_show_lockup_detected(struct device *dev,
435 struct device_attribute *attr, char *buf)
436{
437 int ld;
438 struct ctlr_info *h;
439 struct Scsi_Host *shost = class_to_shost(dev);
440
441 h = shost_to_hba(shost);
442 ld = lockup_detected(h);
443
444 return sprintf(buf, "ld=%d\n", ld);
445}
446
Scott Teelda0697b2014-02-18 13:57:00 -0600447static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
448 struct device_attribute *attr,
449 const char *buf, size_t count)
450{
451 int status, len;
452 struct ctlr_info *h;
453 struct Scsi_Host *shost = class_to_shost(dev);
454 char tmpbuf[10];
455
456 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
457 return -EACCES;
458 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
459 strncpy(tmpbuf, buf, len);
460 tmpbuf[len] = '\0';
461 if (sscanf(tmpbuf, "%d", &status) != 1)
462 return -EINVAL;
463 h = shost_to_hba(shost);
464 h->acciopath_status = !!status;
465 dev_warn(&h->pdev->dev,
466 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
467 h->acciopath_status ? "enabled" : "disabled");
468 return count;
469}
470
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600471static ssize_t host_store_raid_offload_debug(struct device *dev,
472 struct device_attribute *attr,
473 const char *buf, size_t count)
474{
475 int debug_level, len;
476 struct ctlr_info *h;
477 struct Scsi_Host *shost = class_to_shost(dev);
478 char tmpbuf[10];
479
480 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
481 return -EACCES;
482 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
483 strncpy(tmpbuf, buf, len);
484 tmpbuf[len] = '\0';
485 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
486 return -EINVAL;
487 if (debug_level < 0)
488 debug_level = 0;
489 h = shost_to_hba(shost);
490 h->raid_offload_debug = debug_level;
491 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
492 h->raid_offload_debug);
493 return count;
494}
495
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800496static ssize_t host_store_rescan(struct device *dev,
497 struct device_attribute *attr,
498 const char *buf, size_t count)
499{
500 struct ctlr_info *h;
501 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600502 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600503 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800504 return count;
505}
506
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500507static ssize_t host_show_firmware_revision(struct device *dev,
508 struct device_attribute *attr, char *buf)
509{
510 struct ctlr_info *h;
511 struct Scsi_Host *shost = class_to_shost(dev);
512 unsigned char *fwrev;
513
514 h = shost_to_hba(shost);
515 if (!h->hba_inquiry_data)
516 return 0;
517 fwrev = &h->hba_inquiry_data[32];
518 return snprintf(buf, 20, "%c%c%c%c\n",
519 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
520}
521
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600522static ssize_t host_show_commands_outstanding(struct device *dev,
523 struct device_attribute *attr, char *buf)
524{
525 struct Scsi_Host *shost = class_to_shost(dev);
526 struct ctlr_info *h = shost_to_hba(shost);
527
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600528 return snprintf(buf, 20, "%d\n",
529 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600530}
531
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600532static ssize_t host_show_transport_mode(struct device *dev,
533 struct device_attribute *attr, char *buf)
534{
535 struct ctlr_info *h;
536 struct Scsi_Host *shost = class_to_shost(dev);
537
538 h = shost_to_hba(shost);
539 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600540 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600541 "performant" : "simple");
542}
543
Scott Teelda0697b2014-02-18 13:57:00 -0600544static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
545 struct device_attribute *attr, char *buf)
546{
547 struct ctlr_info *h;
548 struct Scsi_Host *shost = class_to_shost(dev);
549
550 h = shost_to_hba(shost);
551 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
552 (h->acciopath_status == 1) ? "enabled" : "disabled");
553}
554
Stephen M. Cameron46380782011-05-03 15:00:01 -0500555/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600556static u32 unresettable_controller[] = {
557 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500558 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600559 0x3223103C, /* Smart Array P800 */
560 0x3234103C, /* Smart Array P400 */
561 0x3235103C, /* Smart Array P400i */
562 0x3211103C, /* Smart Array E200i */
563 0x3212103C, /* Smart Array E200 */
564 0x3213103C, /* Smart Array E200i */
565 0x3214103C, /* Smart Array E200i */
566 0x3215103C, /* Smart Array E200i */
567 0x3237103C, /* Smart Array E500 */
568 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100569 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600570 0x409C0E11, /* Smart Array 6400 */
571 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100572 0x40700E11, /* Smart Array 5300 */
573 0x40820E11, /* Smart Array 532 */
574 0x40830E11, /* Smart Array 5312 */
575 0x409A0E11, /* Smart Array 641 */
576 0x409B0E11, /* Smart Array 642 */
577 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600578};
579
Stephen M. Cameron46380782011-05-03 15:00:01 -0500580/* List of controllers which cannot even be soft reset */
581static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100582 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100583 0x40700E11, /* Smart Array 5300 */
584 0x40820E11, /* Smart Array 532 */
585 0x40830E11, /* Smart Array 5312 */
586 0x409A0E11, /* Smart Array 641 */
587 0x409B0E11, /* Smart Array 642 */
588 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500589 /* Exclude 640x boards. These are two pci devices in one slot
590 * which share a battery backed cache module. One controls the
591 * cache, the other accesses the cache through the one that controls
592 * it. If we reset the one controlling the cache, the other will
593 * likely not be happy. Just forbid resetting this conjoined mess.
594 * The 640x isn't really supported by hpsa anyway.
595 */
596 0x409C0E11, /* Smart Array 6400 */
597 0x409D0E11, /* Smart Array 6400 EM */
598};
599
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500600static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600601{
602 int i;
603
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500604 for (i = 0; i < nelems; i++)
605 if (a[i] == board_id)
606 return 1;
607 return 0;
608}
609
610static int ctlr_is_hard_resettable(u32 board_id)
611{
612 return !board_id_in_array(unresettable_controller,
613 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600614}
615
Stephen M. Cameron46380782011-05-03 15:00:01 -0500616static int ctlr_is_soft_resettable(u32 board_id)
617{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500618 return !board_id_in_array(soft_unresettable_controller,
619 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500620}
621
622static int ctlr_is_resettable(u32 board_id)
623{
624 return ctlr_is_hard_resettable(board_id) ||
625 ctlr_is_soft_resettable(board_id);
626}
627
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600628static ssize_t host_show_resettable(struct device *dev,
629 struct device_attribute *attr, char *buf)
630{
631 struct ctlr_info *h;
632 struct Scsi_Host *shost = class_to_shost(dev);
633
634 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500635 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600636}
637
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800638static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
639{
640 return (scsi3addr[3] & 0xC0) == 0x40;
641}
642
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600643static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
Don Brace7c59a0d2015-11-04 15:52:22 -0600644 "1(+0)ADM", "UNKNOWN", "PHYS DRV"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800645};
Scott Teel6b80b182014-02-18 13:56:55 -0600646#define HPSA_RAID_0 0
647#define HPSA_RAID_4 1
648#define HPSA_RAID_1 2 /* also used for RAID 10 */
649#define HPSA_RAID_5 3 /* also used for RAID 50 */
650#define HPSA_RAID_51 4
651#define HPSA_RAID_6 5 /* also used for RAID 60 */
652#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Don Brace7c59a0d2015-11-04 15:52:22 -0600653#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 2)
654#define PHYSICAL_DRIVE (ARRAY_SIZE(raid_label) - 1)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800655
Kevin Barnettf3f01732015-11-04 15:51:33 -0600656static inline bool is_logical_device(struct hpsa_scsi_dev_t *device)
657{
658 return !device->physical_device;
659}
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800660
661static ssize_t raid_level_show(struct device *dev,
662 struct device_attribute *attr, char *buf)
663{
664 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600665 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800666 struct ctlr_info *h;
667 struct scsi_device *sdev;
668 struct hpsa_scsi_dev_t *hdev;
669 unsigned long flags;
670
671 sdev = to_scsi_device(dev);
672 h = sdev_to_hba(sdev);
673 spin_lock_irqsave(&h->lock, flags);
674 hdev = sdev->hostdata;
675 if (!hdev) {
676 spin_unlock_irqrestore(&h->lock, flags);
677 return -ENODEV;
678 }
679
680 /* Is this even a logical drive? */
Kevin Barnettf3f01732015-11-04 15:51:33 -0600681 if (!is_logical_device(hdev)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800682 spin_unlock_irqrestore(&h->lock, flags);
683 l = snprintf(buf, PAGE_SIZE, "N/A\n");
684 return l;
685 }
686
687 rlevel = hdev->raid_level;
688 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600689 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800690 rlevel = RAID_UNKNOWN;
691 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
692 return l;
693}
694
695static ssize_t lunid_show(struct device *dev,
696 struct device_attribute *attr, char *buf)
697{
698 struct ctlr_info *h;
699 struct scsi_device *sdev;
700 struct hpsa_scsi_dev_t *hdev;
701 unsigned long flags;
702 unsigned char lunid[8];
703
704 sdev = to_scsi_device(dev);
705 h = sdev_to_hba(sdev);
706 spin_lock_irqsave(&h->lock, flags);
707 hdev = sdev->hostdata;
708 if (!hdev) {
709 spin_unlock_irqrestore(&h->lock, flags);
710 return -ENODEV;
711 }
712 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
713 spin_unlock_irqrestore(&h->lock, flags);
Rasmus Villemoes609a70d2016-11-30 23:35:47 +0100714 return snprintf(buf, 20, "0x%8phN\n", lunid);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800715}
716
717static ssize_t unique_id_show(struct device *dev,
718 struct device_attribute *attr, char *buf)
719{
720 struct ctlr_info *h;
721 struct scsi_device *sdev;
722 struct hpsa_scsi_dev_t *hdev;
723 unsigned long flags;
724 unsigned char sn[16];
725
726 sdev = to_scsi_device(dev);
727 h = sdev_to_hba(sdev);
728 spin_lock_irqsave(&h->lock, flags);
729 hdev = sdev->hostdata;
730 if (!hdev) {
731 spin_unlock_irqrestore(&h->lock, flags);
732 return -ENODEV;
733 }
734 memcpy(sn, hdev->device_id, sizeof(sn));
735 spin_unlock_irqrestore(&h->lock, flags);
736 return snprintf(buf, 16 * 2 + 2,
737 "%02X%02X%02X%02X%02X%02X%02X%02X"
738 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
739 sn[0], sn[1], sn[2], sn[3],
740 sn[4], sn[5], sn[6], sn[7],
741 sn[8], sn[9], sn[10], sn[11],
742 sn[12], sn[13], sn[14], sn[15]);
743}
744
Joseph T Handzikded1be42016-04-27 17:13:33 -0500745static ssize_t sas_address_show(struct device *dev,
746 struct device_attribute *attr, char *buf)
747{
748 struct ctlr_info *h;
749 struct scsi_device *sdev;
750 struct hpsa_scsi_dev_t *hdev;
751 unsigned long flags;
752 u64 sas_address;
753
754 sdev = to_scsi_device(dev);
755 h = sdev_to_hba(sdev);
756 spin_lock_irqsave(&h->lock, flags);
757 hdev = sdev->hostdata;
758 if (!hdev || is_logical_device(hdev) || !hdev->expose_device) {
759 spin_unlock_irqrestore(&h->lock, flags);
760 return -ENODEV;
761 }
762 sas_address = hdev->sas_address;
763 spin_unlock_irqrestore(&h->lock, flags);
764
765 return snprintf(buf, PAGE_SIZE, "0x%016llx\n", sas_address);
766}
767
Scott Teelc1988682014-02-18 13:55:54 -0600768static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
769 struct device_attribute *attr, char *buf)
770{
771 struct ctlr_info *h;
772 struct scsi_device *sdev;
773 struct hpsa_scsi_dev_t *hdev;
774 unsigned long flags;
775 int offload_enabled;
776
777 sdev = to_scsi_device(dev);
778 h = sdev_to_hba(sdev);
779 spin_lock_irqsave(&h->lock, flags);
780 hdev = sdev->hostdata;
781 if (!hdev) {
782 spin_unlock_irqrestore(&h->lock, flags);
783 return -ENODEV;
784 }
785 offload_enabled = hdev->offload_enabled;
786 spin_unlock_irqrestore(&h->lock, flags);
Don Braceb2582a62017-10-20 16:51:45 -0500787
788 if (hdev->devtype == TYPE_DISK || hdev->devtype == TYPE_ZBC)
789 return snprintf(buf, 20, "%d\n", offload_enabled);
790 else
791 return snprintf(buf, 40, "%s\n",
792 "Not applicable for a controller");
Scott Teelc1988682014-02-18 13:55:54 -0600793}
794
Joe Handzik8270b862015-07-18 11:12:43 -0500795#define MAX_PATHS 8
Joe Handzik8270b862015-07-18 11:12:43 -0500796static ssize_t path_info_show(struct device *dev,
797 struct device_attribute *attr, char *buf)
798{
799 struct ctlr_info *h;
800 struct scsi_device *sdev;
801 struct hpsa_scsi_dev_t *hdev;
802 unsigned long flags;
803 int i;
804 int output_len = 0;
805 u8 box;
806 u8 bay;
807 u8 path_map_index = 0;
808 char *active;
809 unsigned char phys_connector[2];
Joe Handzik8270b862015-07-18 11:12:43 -0500810
Joe Handzik8270b862015-07-18 11:12:43 -0500811 sdev = to_scsi_device(dev);
812 h = sdev_to_hba(sdev);
813 spin_lock_irqsave(&h->devlock, flags);
814 hdev = sdev->hostdata;
815 if (!hdev) {
816 spin_unlock_irqrestore(&h->devlock, flags);
817 return -ENODEV;
818 }
819
820 bay = hdev->bay;
821 for (i = 0; i < MAX_PATHS; i++) {
822 path_map_index = 1<<i;
823 if (i == hdev->active_path_index)
824 active = "Active";
825 else if (hdev->path_map & path_map_index)
826 active = "Inactive";
827 else
828 continue;
829
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600830 output_len += scnprintf(buf + output_len,
831 PAGE_SIZE - output_len,
832 "[%d:%d:%d:%d] %20.20s ",
Joe Handzik8270b862015-07-18 11:12:43 -0500833 h->scsi_host->host_no,
834 hdev->bus, hdev->target, hdev->lun,
835 scsi_device_type(hdev->devtype));
836
Don Bracecca8f132015-12-22 10:36:48 -0600837 if (hdev->devtype == TYPE_RAID || is_logical_device(hdev)) {
Don Brace2708f292015-12-22 10:36:36 -0600838 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600839 PAGE_SIZE - output_len,
840 "%s\n", active);
Joe Handzik8270b862015-07-18 11:12:43 -0500841 continue;
842 }
843
844 box = hdev->box[i];
845 memcpy(&phys_connector, &hdev->phys_connector[i],
846 sizeof(phys_connector));
847 if (phys_connector[0] < '0')
848 phys_connector[0] = '0';
849 if (phys_connector[1] < '0')
850 phys_connector[1] = '0';
Don Bracecca8f132015-12-22 10:36:48 -0600851 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600852 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500853 "PORT: %.2s ",
854 phys_connector);
Don Braceaf15ed32016-02-23 15:16:15 -0600855 if ((hdev->devtype == TYPE_DISK || hdev->devtype == TYPE_ZBC) &&
856 hdev->expose_device) {
Joe Handzik8270b862015-07-18 11:12:43 -0500857 if (box == 0 || box == 0xFF) {
Don Brace2708f292015-12-22 10:36:36 -0600858 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600859 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500860 "BAY: %hhu %s\n",
861 bay, active);
862 } else {
Don Brace2708f292015-12-22 10:36:36 -0600863 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600864 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500865 "BOX: %hhu BAY: %hhu %s\n",
866 box, bay, active);
867 }
868 } else if (box != 0 && box != 0xFF) {
Don Brace2708f292015-12-22 10:36:36 -0600869 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600870 PAGE_SIZE - output_len, "BOX: %hhu %s\n",
Joe Handzik8270b862015-07-18 11:12:43 -0500871 box, active);
872 } else
Don Brace2708f292015-12-22 10:36:36 -0600873 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600874 PAGE_SIZE - output_len, "%s\n", active);
Joe Handzik8270b862015-07-18 11:12:43 -0500875 }
876
877 spin_unlock_irqrestore(&h->devlock, flags);
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600878 return output_len;
Joe Handzik8270b862015-07-18 11:12:43 -0500879}
880
Hannes Reinecke16961202016-11-18 08:32:49 +0100881static ssize_t host_show_ctlr_num(struct device *dev,
882 struct device_attribute *attr, char *buf)
883{
884 struct ctlr_info *h;
885 struct Scsi_Host *shost = class_to_shost(dev);
886
887 h = shost_to_hba(shost);
888 return snprintf(buf, 20, "%d\n", h->ctlr);
889}
890
Hannes Reinecke135ae6e2017-08-15 08:58:04 +0200891static ssize_t host_show_legacy_board(struct device *dev,
892 struct device_attribute *attr, char *buf)
893{
894 struct ctlr_info *h;
895 struct Scsi_Host *shost = class_to_shost(dev);
896
897 h = shost_to_hba(shost);
898 return snprintf(buf, 20, "%d\n", h->legacy_board ? 1 : 0);
899}
900
Joe Perchesc828a892017-12-19 10:15:08 -0800901static DEVICE_ATTR_RO(raid_level);
902static DEVICE_ATTR_RO(lunid);
903static DEVICE_ATTR_RO(unique_id);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600904static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Joe Perchesc828a892017-12-19 10:15:08 -0800905static DEVICE_ATTR_RO(sas_address);
Scott Teelc1988682014-02-18 13:55:54 -0600906static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
907 host_show_hp_ssd_smart_path_enabled, NULL);
Joe Perchesc828a892017-12-19 10:15:08 -0800908static DEVICE_ATTR_RO(path_info);
Scott Teelda0697b2014-02-18 13:57:00 -0600909static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
910 host_show_hp_ssd_smart_path_status,
911 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600912static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
913 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600914static DEVICE_ATTR(firmware_revision, S_IRUGO,
915 host_show_firmware_revision, NULL);
916static DEVICE_ATTR(commands_outstanding, S_IRUGO,
917 host_show_commands_outstanding, NULL);
918static DEVICE_ATTR(transport_mode, S_IRUGO,
919 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600920static DEVICE_ATTR(resettable, S_IRUGO,
921 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500922static DEVICE_ATTR(lockup_detected, S_IRUGO,
923 host_show_lockup_detected, NULL);
Hannes Reinecke16961202016-11-18 08:32:49 +0100924static DEVICE_ATTR(ctlr_num, S_IRUGO,
925 host_show_ctlr_num, NULL);
Hannes Reinecke135ae6e2017-08-15 08:58:04 +0200926static DEVICE_ATTR(legacy_board, S_IRUGO,
927 host_show_legacy_board, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600928
929static struct device_attribute *hpsa_sdev_attrs[] = {
930 &dev_attr_raid_level,
931 &dev_attr_lunid,
932 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600933 &dev_attr_hp_ssd_smart_path_enabled,
Joe Handzik8270b862015-07-18 11:12:43 -0500934 &dev_attr_path_info,
Joseph T Handzikded1be42016-04-27 17:13:33 -0500935 &dev_attr_sas_address,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600936 NULL,
937};
938
939static struct device_attribute *hpsa_shost_attrs[] = {
940 &dev_attr_rescan,
941 &dev_attr_firmware_revision,
942 &dev_attr_commands_outstanding,
943 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600944 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600945 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600946 &dev_attr_raid_offload_debug,
Tomas Henzlfb53c432015-11-06 16:24:09 +0100947 &dev_attr_lockup_detected,
Hannes Reinecke16961202016-11-18 08:32:49 +0100948 &dev_attr_ctlr_num,
Hannes Reinecke135ae6e2017-08-15 08:58:04 +0200949 &dev_attr_legacy_board,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600950 NULL,
951};
952
Don Brace08ec46f2017-05-04 17:51:49 -0500953#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_DRIVER +\
954 HPSA_MAX_CONCURRENT_PASSTHRUS)
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500955
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600956static struct scsi_host_template hpsa_driver_template = {
957 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600958 .name = HPSA,
959 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600960 .queuecommand = hpsa_scsi_queue_command,
961 .scan_start = hpsa_scan_start,
962 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600963 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600964 .this_id = -1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600965 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
966 .ioctl = hpsa_ioctl,
967 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500968 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600969 .slave_destroy = hpsa_slave_destroy,
970#ifdef CONFIG_COMPAT
971 .compat_ioctl = hpsa_compat_ioctl,
972#endif
973 .sdev_attrs = hpsa_sdev_attrs,
974 .shost_attrs = hpsa_shost_attrs,
Martin Wilckeb53a3e2018-08-22 13:25:44 +0200975 .max_sectors = 2048,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400976 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600977};
978
Matt Gates254f7962012-05-01 11:43:06 -0500979static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600980{
981 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500982 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600983
Matt Gatese1f7de02014-02-18 13:55:17 -0600984 if (h->transMethod & CFGTBL_Trans_io_accel1)
985 return h->access.command_completed(h, q);
986
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600987 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500988 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600989
Matt Gates254f7962012-05-01 11:43:06 -0500990 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
991 a = rq->head[rq->current_entry];
992 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600993 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600994 } else {
995 a = FIFO_EMPTY;
996 }
997 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500998 if (rq->current_entry == h->max_commands) {
999 rq->current_entry = 0;
1000 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001001 }
1002 return a;
1003}
1004
Scott Teelc3497752014-02-18 13:56:34 -06001005/*
1006 * There are some special bits in the bus address of the
1007 * command that we have to set for the controller to know
1008 * how to process the command:
1009 *
1010 * Normal performant mode:
1011 * bit 0: 1 means performant mode, 0 means simple mode.
1012 * bits 1-3 = block fetch table entry
1013 * bits 4-6 = command type (== 0)
1014 *
1015 * ioaccel1 mode:
1016 * bit 0 = "performant mode" bit.
1017 * bits 1-3 = block fetch table entry
1018 * bits 4-6 = command type (== 110)
1019 * (command type is needed because ioaccel1 mode
1020 * commands are submitted through the same register as normal
1021 * mode commands, so this is how the controller knows whether
1022 * the command is normal mode or ioaccel1 mode.)
1023 *
1024 * ioaccel2 mode:
1025 * bit 0 = "performant mode" bit.
1026 * bits 1-4 = block fetch table entry (note extra bit)
1027 * bits 4-6 = not needed, because ioaccel2 mode has
1028 * a separate special register for submitting commands.
1029 */
1030
Webb Scales25163bd2015-04-23 09:32:00 -05001031/*
1032 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001033 * set bit 0 for pull model, bits 3-1 for block fetch
1034 * register number
1035 */
Webb Scales25163bd2015-04-23 09:32:00 -05001036#define DEFAULT_REPLY_QUEUE (-1)
1037static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
1038 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001039{
Matt Gates254f7962012-05-01 11:43:06 -05001040 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001041 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08001042 if (unlikely(!h->msix_vectors))
Webb Scales25163bd2015-04-23 09:32:00 -05001043 return;
Ming Lei8b834bf2018-03-13 17:42:39 +08001044 c->Header.ReplyQueue = reply_queue;
Matt Gates254f7962012-05-01 11:43:06 -05001045 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001046}
1047
Scott Teelc3497752014-02-18 13:56:34 -06001048static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001049 struct CommandList *c,
1050 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001051{
1052 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
1053
Webb Scales25163bd2015-04-23 09:32:00 -05001054 /*
1055 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001056 * processor. This seems to give the best I/O throughput.
1057 */
Ming Lei8b834bf2018-03-13 17:42:39 +08001058 cp->ReplyQueue = reply_queue;
Webb Scales25163bd2015-04-23 09:32:00 -05001059 /*
1060 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001061 * - performant mode bit (bit 0)
1062 * - pull count (bits 1-3)
1063 * - command type (bits 4-6)
1064 */
1065 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
1066 IOACCEL1_BUSADDR_CMDTYPE;
1067}
1068
Stephen Cameron8be986c2015-04-23 09:34:06 -05001069static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
1070 struct CommandList *c,
1071 int reply_queue)
1072{
1073 struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
1074 &h->ioaccel2_cmd_pool[c->cmdindex];
1075
1076 /* Tell the controller to post the reply to the queue for this
1077 * processor. This seems to give the best I/O throughput.
1078 */
Ming Lei8b834bf2018-03-13 17:42:39 +08001079 cp->reply_queue = reply_queue;
Stephen Cameron8be986c2015-04-23 09:34:06 -05001080 /* Set the bits in the address sent down to include:
1081 * - performant mode bit not used in ioaccel mode 2
1082 * - pull count (bits 0-3)
1083 * - command type isn't needed for ioaccel2
1084 */
1085 c->busaddr |= h->ioaccel2_blockFetchTable[0];
1086}
1087
Scott Teelc3497752014-02-18 13:56:34 -06001088static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001089 struct CommandList *c,
1090 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001091{
1092 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
1093
Webb Scales25163bd2015-04-23 09:32:00 -05001094 /*
1095 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001096 * processor. This seems to give the best I/O throughput.
1097 */
Ming Lei8b834bf2018-03-13 17:42:39 +08001098 cp->reply_queue = reply_queue;
Webb Scales25163bd2015-04-23 09:32:00 -05001099 /*
1100 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001101 * - performant mode bit not used in ioaccel mode 2
1102 * - pull count (bits 0-3)
1103 * - command type isn't needed for ioaccel2
1104 */
1105 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
1106}
1107
Stephen M. Camerone85c5972012-05-01 11:43:42 -05001108static int is_firmware_flash_cmd(u8 *cdb)
1109{
1110 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
1111}
1112
1113/*
1114 * During firmware flash, the heartbeat register may not update as frequently
1115 * as it should. So we dial down lockup detection during firmware flash. and
1116 * dial it back up when firmware flash completes.
1117 */
1118#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
1119#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
Scott Teel3d38f002017-05-04 17:51:36 -05001120#define HPSA_EVENT_MONITOR_INTERVAL (15 * HZ)
Stephen M. Camerone85c5972012-05-01 11:43:42 -05001121static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
1122 struct CommandList *c)
1123{
1124 if (!is_firmware_flash_cmd(c->Request.CDB))
1125 return;
1126 atomic_inc(&h->firmware_flash_in_progress);
1127 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
1128}
1129
1130static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
1131 struct CommandList *c)
1132{
1133 if (is_firmware_flash_cmd(c->Request.CDB) &&
1134 atomic_dec_and_test(&h->firmware_flash_in_progress))
1135 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
1136}
1137
Webb Scales25163bd2015-04-23 09:32:00 -05001138static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
1139 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001140{
Stephen Cameronc05e8862015-01-23 16:44:40 -06001141 dial_down_lockup_detection_during_fw_flash(h, c);
1142 atomic_inc(&h->commands_outstanding);
Don Bracec5dfd102019-05-07 13:32:33 -05001143 if (c->device)
1144 atomic_inc(&c->device->commands_outstanding);
Ming Lei8b834bf2018-03-13 17:42:39 +08001145
1146 reply_queue = h->reply_map[raw_smp_processor_id()];
Scott Teelc3497752014-02-18 13:56:34 -06001147 switch (c->cmd_type) {
1148 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -05001149 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001150 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -06001151 break;
1152 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -05001153 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001154 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -06001155 break;
Stephen Cameron8be986c2015-04-23 09:34:06 -05001156 case IOACCEL2_TMF:
1157 set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
1158 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
1159 break;
Scott Teelc3497752014-02-18 13:56:34 -06001160 default:
Webb Scales25163bd2015-04-23 09:32:00 -05001161 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001162 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06001163 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001164}
1165
Webb Scalesa58e7e52015-04-23 09:34:16 -05001166static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c)
Webb Scales25163bd2015-04-23 09:32:00 -05001167{
1168 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
1169}
1170
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001171static inline int is_hba_lunid(unsigned char scsi3addr[])
1172{
1173 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
1174}
1175
1176static inline int is_scsi_rev_5(struct ctlr_info *h)
1177{
1178 if (!h->hba_inquiry_data)
1179 return 0;
1180 if ((h->hba_inquiry_data[2] & 0x07) == 5)
1181 return 1;
1182 return 0;
1183}
1184
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001185static int hpsa_find_target_lun(struct ctlr_info *h,
1186 unsigned char scsi3addr[], int bus, int *target, int *lun)
1187{
1188 /* finds an unused bus, target, lun for a new physical device
1189 * assumes h->devlock is held
1190 */
1191 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -05001192 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001193
Akinobu Mita263d9402012-01-21 00:15:27 +09001194 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001195
1196 for (i = 0; i < h->ndevices; i++) {
1197 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +09001198 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001199 }
1200
Akinobu Mita263d9402012-01-21 00:15:27 +09001201 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
1202 if (i < HPSA_MAX_DEVICES) {
1203 /* *bus = 1; */
1204 *target = i;
1205 *lun = 0;
1206 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001207 }
1208 return !found;
1209}
1210
Don Brace1d33d852015-11-04 15:50:31 -06001211static void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
Webb Scales0d96ef52015-04-23 09:31:55 -05001212 struct hpsa_scsi_dev_t *dev, char *description)
1213{
Don Brace7c59a0d2015-11-04 15:52:22 -06001214#define LABEL_SIZE 25
1215 char label[LABEL_SIZE];
1216
Don Brace9975ec92015-11-04 15:50:25 -06001217 if (h == NULL || h->pdev == NULL || h->scsi_host == NULL)
1218 return;
1219
Don Brace7c59a0d2015-11-04 15:52:22 -06001220 switch (dev->devtype) {
1221 case TYPE_RAID:
1222 snprintf(label, LABEL_SIZE, "controller");
1223 break;
1224 case TYPE_ENCLOSURE:
1225 snprintf(label, LABEL_SIZE, "enclosure");
1226 break;
1227 case TYPE_DISK:
Don Braceaf15ed32016-02-23 15:16:15 -06001228 case TYPE_ZBC:
Don Brace7c59a0d2015-11-04 15:52:22 -06001229 if (dev->external)
1230 snprintf(label, LABEL_SIZE, "external");
1231 else if (!is_logical_dev_addr_mode(dev->scsi3addr))
1232 snprintf(label, LABEL_SIZE, "%s",
1233 raid_label[PHYSICAL_DRIVE]);
1234 else
1235 snprintf(label, LABEL_SIZE, "RAID-%s",
1236 dev->raid_level > RAID_UNKNOWN ? "?" :
1237 raid_label[dev->raid_level]);
1238 break;
1239 case TYPE_ROM:
1240 snprintf(label, LABEL_SIZE, "rom");
1241 break;
1242 case TYPE_TAPE:
1243 snprintf(label, LABEL_SIZE, "tape");
1244 break;
1245 case TYPE_MEDIUM_CHANGER:
1246 snprintf(label, LABEL_SIZE, "changer");
1247 break;
1248 default:
1249 snprintf(label, LABEL_SIZE, "UNKNOWN");
1250 break;
1251 }
1252
Webb Scales0d96ef52015-04-23 09:31:55 -05001253 dev_printk(level, &h->pdev->dev,
Don Brace7c59a0d2015-11-04 15:52:22 -06001254 "scsi %d:%d:%d:%d: %s %s %.8s %.16s %s SSDSmartPathCap%c En%c Exp=%d\n",
Webb Scales0d96ef52015-04-23 09:31:55 -05001255 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
1256 description,
1257 scsi_device_type(dev->devtype),
1258 dev->vendor,
1259 dev->model,
Don Brace7c59a0d2015-11-04 15:52:22 -06001260 label,
Webb Scales0d96ef52015-04-23 09:31:55 -05001261 dev->offload_config ? '+' : '-',
Don Braceb2582a62017-10-20 16:51:45 -05001262 dev->offload_to_be_enabled ? '+' : '-',
Kevin Barnett2a168202015-11-04 15:51:21 -06001263 dev->expose_device);
Webb Scales0d96ef52015-04-23 09:31:55 -05001264}
1265
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001266/* Add an entry into h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001267static int hpsa_scsi_add_entry(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001268 struct hpsa_scsi_dev_t *device,
1269 struct hpsa_scsi_dev_t *added[], int *nadded)
1270{
1271 /* assumes h->devlock is held */
1272 int n = h->ndevices;
1273 int i;
1274 unsigned char addr1[8], addr2[8];
1275 struct hpsa_scsi_dev_t *sd;
1276
Scott Teelcfe5bad2011-10-26 16:21:07 -05001277 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001278 dev_err(&h->pdev->dev, "too many devices, some will be "
1279 "inaccessible.\n");
1280 return -1;
1281 }
1282
1283 /* physical devices do not have lun or target assigned until now. */
1284 if (device->lun != -1)
1285 /* Logical device, lun is already assigned. */
1286 goto lun_assigned;
1287
1288 /* If this device a non-zero lun of a multi-lun device
1289 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001290 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001291 */
1292 if (device->scsi3addr[4] == 0) {
1293 /* This is not a non-zero lun of a multi-lun device */
1294 if (hpsa_find_target_lun(h, device->scsi3addr,
1295 device->bus, &device->target, &device->lun) != 0)
1296 return -1;
1297 goto lun_assigned;
1298 }
1299
1300 /* This is a non-zero lun of a multi-lun device.
1301 * Search through our list and find the device which
shane.seymour9a4178b2015-07-18 11:13:09 -05001302 * has the same 8 byte LUN address, excepting byte 4 and 5.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001303 * Assign the same bus and target for this new LUN.
1304 * Use the logical unit number from the firmware.
1305 */
1306 memcpy(addr1, device->scsi3addr, 8);
1307 addr1[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001308 addr1[5] = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001309 for (i = 0; i < n; i++) {
1310 sd = h->dev[i];
1311 memcpy(addr2, sd->scsi3addr, 8);
1312 addr2[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001313 addr2[5] = 0;
1314 /* differ only in byte 4 and 5? */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001315 if (memcmp(addr1, addr2, 8) == 0) {
1316 device->bus = sd->bus;
1317 device->target = sd->target;
1318 device->lun = device->scsi3addr[4];
1319 break;
1320 }
1321 }
1322 if (device->lun == -1) {
1323 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1324 " suspect firmware bug or unsupported hardware "
1325 "configuration.\n");
Colin Ian Kingb64ae4a2019-01-22 15:18:30 +00001326 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001327 }
1328
1329lun_assigned:
1330
1331 h->dev[n] = device;
1332 h->ndevices++;
1333 added[*nadded] = device;
1334 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001335 hpsa_show_dev_msg(KERN_INFO, h, device,
Kevin Barnett2a168202015-11-04 15:51:21 -06001336 device->expose_device ? "added" : "masked");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001337 return 0;
1338}
1339
Don Braceb2582a62017-10-20 16:51:45 -05001340/*
1341 * Called during a scan operation.
1342 *
1343 * Update an entry in h->dev[] array.
1344 */
Don Brace8aa60682015-11-04 15:50:01 -06001345static void hpsa_scsi_update_entry(struct ctlr_info *h,
Scott Teelbd9244f2012-01-19 14:01:30 -06001346 int entry, struct hpsa_scsi_dev_t *new_entry)
1347{
1348 /* assumes h->devlock is held */
1349 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1350
1351 /* Raid level changed. */
1352 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001353
Don Braceb2582a62017-10-20 16:51:45 -05001354 /*
1355 * ioacccel_handle may have changed for a dual domain disk
1356 */
1357 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1358
Don Brace03383732015-01-23 16:43:30 -06001359 /* Raid offload parameters changed. Careful about the ordering. */
Don Braceb2582a62017-10-20 16:51:45 -05001360 if (new_entry->offload_config && new_entry->offload_to_be_enabled) {
Don Brace03383732015-01-23 16:43:30 -06001361 /*
1362 * if drive is newly offload_enabled, we want to copy the
1363 * raid map data first. If previously offload_enabled and
1364 * offload_config were set, raid map data had better be
Don Braceb2582a62017-10-20 16:51:45 -05001365 * the same as it was before. If raid map data has changed
Don Brace03383732015-01-23 16:43:30 -06001366 * then it had better be the case that
1367 * h->dev[entry]->offload_enabled is currently 0.
1368 */
1369 h->dev[entry]->raid_map = new_entry->raid_map;
1370 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001371 }
Don Braceb2582a62017-10-20 16:51:45 -05001372 if (new_entry->offload_to_be_enabled) {
Joe Handzika3144e02015-04-23 09:32:59 -05001373 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1374 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1375 }
1376 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001377 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001378 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001379 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001380
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001381 /*
1382 * We can turn off ioaccel offload now, but need to delay turning
Don Braceb2582a62017-10-20 16:51:45 -05001383 * ioaccel on until we can update h->dev[entry]->phys_disk[], but we
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001384 * can't do that until all the devices are updated.
1385 */
Don Braceb2582a62017-10-20 16:51:45 -05001386 h->dev[entry]->offload_to_be_enabled = new_entry->offload_to_be_enabled;
1387
1388 /*
1389 * turn ioaccel off immediately if told to do so.
1390 */
1391 if (!new_entry->offload_to_be_enabled)
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001392 h->dev[entry]->offload_enabled = 0;
1393
Webb Scales0d96ef52015-04-23 09:31:55 -05001394 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Scott Teelbd9244f2012-01-19 14:01:30 -06001395}
1396
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001397/* Replace an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001398static void hpsa_scsi_replace_entry(struct ctlr_info *h,
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001399 int entry, struct hpsa_scsi_dev_t *new_entry,
1400 struct hpsa_scsi_dev_t *added[], int *nadded,
1401 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1402{
1403 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001404 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001405 removed[*nremoved] = h->dev[entry];
1406 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001407
1408 /*
1409 * New physical devices won't have target/lun assigned yet
1410 * so we need to preserve the values in the slot we are replacing.
1411 */
1412 if (new_entry->target == -1) {
1413 new_entry->target = h->dev[entry]->target;
1414 new_entry->lun = h->dev[entry]->lun;
1415 }
1416
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001417 h->dev[entry] = new_entry;
1418 added[*nadded] = new_entry;
1419 (*nadded)++;
Don Braceb2582a62017-10-20 16:51:45 -05001420
Webb Scales0d96ef52015-04-23 09:31:55 -05001421 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001422}
1423
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001424/* Remove an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001425static void hpsa_scsi_remove_entry(struct ctlr_info *h, int entry,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001426 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1427{
1428 /* assumes h->devlock is held */
1429 int i;
1430 struct hpsa_scsi_dev_t *sd;
1431
Scott Teelcfe5bad2011-10-26 16:21:07 -05001432 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001433
1434 sd = h->dev[entry];
1435 removed[*nremoved] = h->dev[entry];
1436 (*nremoved)++;
1437
1438 for (i = entry; i < h->ndevices-1; i++)
1439 h->dev[i] = h->dev[i+1];
1440 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001441 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001442}
1443
1444#define SCSI3ADDR_EQ(a, b) ( \
1445 (a)[7] == (b)[7] && \
1446 (a)[6] == (b)[6] && \
1447 (a)[5] == (b)[5] && \
1448 (a)[4] == (b)[4] && \
1449 (a)[3] == (b)[3] && \
1450 (a)[2] == (b)[2] && \
1451 (a)[1] == (b)[1] && \
1452 (a)[0] == (b)[0])
1453
1454static void fixup_botched_add(struct ctlr_info *h,
1455 struct hpsa_scsi_dev_t *added)
1456{
1457 /* called when scsi_add_device fails in order to re-adjust
1458 * h->dev[] to match the mid layer's view.
1459 */
1460 unsigned long flags;
1461 int i, j;
1462
1463 spin_lock_irqsave(&h->lock, flags);
1464 for (i = 0; i < h->ndevices; i++) {
1465 if (h->dev[i] == added) {
1466 for (j = i; j < h->ndevices-1; j++)
1467 h->dev[j] = h->dev[j+1];
1468 h->ndevices--;
1469 break;
1470 }
1471 }
1472 spin_unlock_irqrestore(&h->lock, flags);
1473 kfree(added);
1474}
1475
1476static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1477 struct hpsa_scsi_dev_t *dev2)
1478{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001479 /* we compare everything except lun and target as these
1480 * are not yet assigned. Compare parts likely
1481 * to differ first
1482 */
1483 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1484 sizeof(dev1->scsi3addr)) != 0)
1485 return 0;
1486 if (memcmp(dev1->device_id, dev2->device_id,
1487 sizeof(dev1->device_id)) != 0)
1488 return 0;
1489 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1490 return 0;
1491 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1492 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001493 if (dev1->devtype != dev2->devtype)
1494 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001495 if (dev1->bus != dev2->bus)
1496 return 0;
1497 return 1;
1498}
1499
Scott Teelbd9244f2012-01-19 14:01:30 -06001500static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1501 struct hpsa_scsi_dev_t *dev2)
1502{
1503 /* Device attributes that can change, but don't mean
1504 * that the device is a different device, nor that the OS
1505 * needs to be told anything about the change.
1506 */
1507 if (dev1->raid_level != dev2->raid_level)
1508 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001509 if (dev1->offload_config != dev2->offload_config)
1510 return 1;
Don Braceb2582a62017-10-20 16:51:45 -05001511 if (dev1->offload_to_be_enabled != dev2->offload_to_be_enabled)
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001512 return 1;
Don Brace93849502015-07-18 11:12:49 -05001513 if (!is_logical_dev_addr_mode(dev1->scsi3addr))
1514 if (dev1->queue_depth != dev2->queue_depth)
1515 return 1;
Don Braceb2582a62017-10-20 16:51:45 -05001516 /*
1517 * This can happen for dual domain devices. An active
1518 * path change causes the ioaccel handle to change
1519 *
1520 * for example note the handle differences between p0 and p1
1521 * Device WWN ,WWN hash,Handle
1522 * D016 p0|0x3 [02]P2E:01:01,0x5000C5005FC4DACA,0x9B5616,0x01030003
1523 * p1 0x5000C5005FC4DAC9,0x6798C0,0x00040004
1524 */
1525 if (dev1->ioaccel_handle != dev2->ioaccel_handle)
1526 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001527 return 0;
1528}
1529
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001530/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1531 * and return needle location in *index. If scsi3addr matches, but not
1532 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001533 * location in *index.
1534 * In the case of a minor device attribute change, such as RAID level, just
1535 * return DEVICE_UPDATED, along with the updated device's location in index.
1536 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001537 */
1538static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1539 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1540 int *index)
1541{
1542 int i;
1543#define DEVICE_NOT_FOUND 0
1544#define DEVICE_CHANGED 1
1545#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001546#define DEVICE_UPDATED 3
Don Brace1d33d852015-11-04 15:50:31 -06001547 if (needle == NULL)
1548 return DEVICE_NOT_FOUND;
1549
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001550 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001551 if (haystack[i] == NULL) /* previously removed. */
1552 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001553 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1554 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001555 if (device_is_the_same(needle, haystack[i])) {
1556 if (device_updated(needle, haystack[i]))
1557 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001558 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001559 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001560 /* Keep offline devices offline */
1561 if (needle->volume_offline)
1562 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001563 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001564 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001565 }
1566 }
1567 *index = -1;
1568 return DEVICE_NOT_FOUND;
1569}
1570
Stephen M. Cameron98465902014-02-21 16:25:00 -06001571static void hpsa_monitor_offline_device(struct ctlr_info *h,
1572 unsigned char scsi3addr[])
1573{
1574 struct offline_device_entry *device;
1575 unsigned long flags;
1576
1577 /* Check to see if device is already on the list */
1578 spin_lock_irqsave(&h->offline_device_lock, flags);
1579 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1580 if (memcmp(device->scsi3addr, scsi3addr,
1581 sizeof(device->scsi3addr)) == 0) {
1582 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1583 return;
1584 }
1585 }
1586 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1587
1588 /* Device is not on the list, add it. */
1589 device = kmalloc(sizeof(*device), GFP_KERNEL);
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05301590 if (!device)
Stephen M. Cameron98465902014-02-21 16:25:00 -06001591 return;
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05301592
Stephen M. Cameron98465902014-02-21 16:25:00 -06001593 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1594 spin_lock_irqsave(&h->offline_device_lock, flags);
1595 list_add_tail(&device->offline_list, &h->offline_device_list);
1596 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1597}
1598
1599/* Print a message explaining various offline volume states */
1600static void hpsa_show_volume_status(struct ctlr_info *h,
1601 struct hpsa_scsi_dev_t *sd)
1602{
1603 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1604 dev_info(&h->pdev->dev,
1605 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1606 h->scsi_host->host_no,
1607 sd->bus, sd->target, sd->lun);
1608 switch (sd->volume_offline) {
1609 case HPSA_LV_OK:
1610 break;
1611 case HPSA_LV_UNDERGOING_ERASE:
1612 dev_info(&h->pdev->dev,
1613 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1614 h->scsi_host->host_no,
1615 sd->bus, sd->target, sd->lun);
1616 break;
Scott Benesh5ca01202015-07-18 11:13:04 -05001617 case HPSA_LV_NOT_AVAILABLE:
1618 dev_info(&h->pdev->dev,
1619 "C%d:B%d:T%d:L%d Volume is waiting for transforming volume.\n",
1620 h->scsi_host->host_no,
1621 sd->bus, sd->target, sd->lun);
1622 break;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001623 case HPSA_LV_UNDERGOING_RPI:
1624 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001625 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity init.\n",
Stephen M. Cameron98465902014-02-21 16:25:00 -06001626 h->scsi_host->host_no,
1627 sd->bus, sd->target, sd->lun);
1628 break;
1629 case HPSA_LV_PENDING_RPI:
1630 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001631 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1632 h->scsi_host->host_no,
1633 sd->bus, sd->target, sd->lun);
Stephen M. Cameron98465902014-02-21 16:25:00 -06001634 break;
1635 case HPSA_LV_ENCRYPTED_NO_KEY:
1636 dev_info(&h->pdev->dev,
1637 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1638 h->scsi_host->host_no,
1639 sd->bus, sd->target, sd->lun);
1640 break;
1641 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1642 dev_info(&h->pdev->dev,
1643 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1644 h->scsi_host->host_no,
1645 sd->bus, sd->target, sd->lun);
1646 break;
1647 case HPSA_LV_UNDERGOING_ENCRYPTION:
1648 dev_info(&h->pdev->dev,
1649 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1650 h->scsi_host->host_no,
1651 sd->bus, sd->target, sd->lun);
1652 break;
1653 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1654 dev_info(&h->pdev->dev,
1655 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1656 h->scsi_host->host_no,
1657 sd->bus, sd->target, sd->lun);
1658 break;
1659 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1660 dev_info(&h->pdev->dev,
1661 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1662 h->scsi_host->host_no,
1663 sd->bus, sd->target, sd->lun);
1664 break;
1665 case HPSA_LV_PENDING_ENCRYPTION:
1666 dev_info(&h->pdev->dev,
1667 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1668 h->scsi_host->host_no,
1669 sd->bus, sd->target, sd->lun);
1670 break;
1671 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1672 dev_info(&h->pdev->dev,
1673 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1674 h->scsi_host->host_no,
1675 sd->bus, sd->target, sd->lun);
1676 break;
1677 }
1678}
1679
Don Brace03383732015-01-23 16:43:30 -06001680/*
1681 * Figure the list of physical drive pointers for a logical drive with
1682 * raid offload configured.
1683 */
1684static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1685 struct hpsa_scsi_dev_t *dev[], int ndevices,
1686 struct hpsa_scsi_dev_t *logical_drive)
1687{
1688 struct raid_map_data *map = &logical_drive->raid_map;
1689 struct raid_map_disk_data *dd = &map->data[0];
1690 int i, j;
1691 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1692 le16_to_cpu(map->metadata_disks_per_row);
1693 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1694 le16_to_cpu(map->layout_map_count) *
1695 total_disks_per_row;
1696 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1697 total_disks_per_row;
1698 int qdepth;
1699
1700 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1701 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1702
Webb Scalesd604f532015-04-23 09:35:22 -05001703 logical_drive->nphysical_disks = nraid_map_entries;
1704
Don Brace03383732015-01-23 16:43:30 -06001705 qdepth = 0;
1706 for (i = 0; i < nraid_map_entries; i++) {
1707 logical_drive->phys_disk[i] = NULL;
1708 if (!logical_drive->offload_config)
1709 continue;
1710 for (j = 0; j < ndevices; j++) {
Don Brace1d33d852015-11-04 15:50:31 -06001711 if (dev[j] == NULL)
1712 continue;
Petros Koutoupisff615f02016-05-09 13:44:10 -05001713 if (dev[j]->devtype != TYPE_DISK &&
1714 dev[j]->devtype != TYPE_ZBC)
Don Braceaf15ed32016-02-23 15:16:15 -06001715 continue;
Kevin Barnettf3f01732015-11-04 15:51:33 -06001716 if (is_logical_device(dev[j]))
Don Brace03383732015-01-23 16:43:30 -06001717 continue;
1718 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1719 continue;
1720
1721 logical_drive->phys_disk[i] = dev[j];
1722 if (i < nphys_disk)
1723 qdepth = min(h->nr_cmds, qdepth +
1724 logical_drive->phys_disk[i]->queue_depth);
1725 break;
1726 }
1727
1728 /*
1729 * This can happen if a physical drive is removed and
1730 * the logical drive is degraded. In that case, the RAID
1731 * map data will refer to a physical disk which isn't actually
1732 * present. And in that case offload_enabled should already
1733 * be 0, but we'll turn it off here just in case
1734 */
1735 if (!logical_drive->phys_disk[i]) {
Don Braceb2582a62017-10-20 16:51:45 -05001736 dev_warn(&h->pdev->dev,
1737 "%s: [%d:%d:%d:%d] A phys disk component of LV is missing, turning off offload_enabled for LV.\n",
1738 __func__,
1739 h->scsi_host->host_no, logical_drive->bus,
1740 logical_drive->target, logical_drive->lun);
Don Brace03383732015-01-23 16:43:30 -06001741 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001742 logical_drive->offload_to_be_enabled = 0;
1743 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001744 }
1745 }
1746 if (nraid_map_entries)
1747 /*
1748 * This is correct for reads, too high for full stripe writes,
1749 * way too high for partial stripe writes
1750 */
1751 logical_drive->queue_depth = qdepth;
Don Brace2c5fc362017-10-20 16:51:51 -05001752 else {
1753 if (logical_drive->external)
1754 logical_drive->queue_depth = EXTERNAL_QD;
1755 else
1756 logical_drive->queue_depth = h->nr_cmds;
1757 }
Don Brace03383732015-01-23 16:43:30 -06001758}
1759
1760static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1761 struct hpsa_scsi_dev_t *dev[], int ndevices)
1762{
1763 int i;
1764
1765 for (i = 0; i < ndevices; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001766 if (dev[i] == NULL)
1767 continue;
Petros Koutoupisff615f02016-05-09 13:44:10 -05001768 if (dev[i]->devtype != TYPE_DISK &&
1769 dev[i]->devtype != TYPE_ZBC)
Don Braceaf15ed32016-02-23 15:16:15 -06001770 continue;
Kevin Barnettf3f01732015-11-04 15:51:33 -06001771 if (!is_logical_device(dev[i]))
Don Brace03383732015-01-23 16:43:30 -06001772 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001773
1774 /*
1775 * If offload is currently enabled, the RAID map and
1776 * phys_disk[] assignment *better* not be changing
Don Braceb2582a62017-10-20 16:51:45 -05001777 * because we would be changing ioaccel phsy_disk[] pointers
1778 * on a ioaccel volume processing I/O requests.
1779 *
1780 * If an ioaccel volume status changed, initially because it was
1781 * re-configured and thus underwent a transformation, or
1782 * a drive failed, we would have received a state change
1783 * request and ioaccel should have been turned off. When the
1784 * transformation completes, we get another state change
1785 * request to turn ioaccel back on. In this case, we need
1786 * to update the ioaccel information.
1787 *
1788 * Thus: If it is not currently enabled, but will be after
1789 * the scan completes, make sure the ioaccel pointers
1790 * are up to date.
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001791 */
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001792
Don Braceb2582a62017-10-20 16:51:45 -05001793 if (!dev[i]->offload_enabled && dev[i]->offload_to_be_enabled)
1794 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
Don Brace03383732015-01-23 16:43:30 -06001795 }
1796}
1797
Kevin Barnett096ccff2015-11-04 15:51:51 -06001798static int hpsa_add_device(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
1799{
1800 int rc = 0;
1801
1802 if (!h->scsi_host)
1803 return 1;
1804
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001805 if (is_logical_device(device)) /* RAID */
1806 rc = scsi_add_device(h->scsi_host, device->bus,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001807 device->target, device->lun);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001808 else /* HBA */
1809 rc = hpsa_add_sas_device(h->sas_host, device);
1810
Kevin Barnett096ccff2015-11-04 15:51:51 -06001811 return rc;
1812}
1813
Don Braceba74fdc2016-04-27 17:14:17 -05001814static int hpsa_find_outstanding_commands_for_dev(struct ctlr_info *h,
1815 struct hpsa_scsi_dev_t *dev)
1816{
1817 int i;
1818 int count = 0;
1819
1820 for (i = 0; i < h->nr_cmds; i++) {
1821 struct CommandList *c = h->cmd_pool + i;
1822 int refcount = atomic_inc_return(&c->refcount);
1823
1824 if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev,
1825 dev->scsi3addr)) {
1826 unsigned long flags;
1827
1828 spin_lock_irqsave(&h->lock, flags); /* Implied MB */
1829 if (!hpsa_is_cmd_idle(c))
1830 ++count;
1831 spin_unlock_irqrestore(&h->lock, flags);
1832 }
1833
1834 cmd_free(h, c);
1835 }
1836
1837 return count;
1838}
1839
Don Braceb443d3e2019-05-07 13:32:20 -05001840#define NUM_WAIT 20
Don Braceba74fdc2016-04-27 17:14:17 -05001841static void hpsa_wait_for_outstanding_commands_for_dev(struct ctlr_info *h,
1842 struct hpsa_scsi_dev_t *device)
1843{
1844 int cmds = 0;
1845 int waits = 0;
Don Braceb443d3e2019-05-07 13:32:20 -05001846 int num_wait = NUM_WAIT;
1847
1848 if (device->external)
1849 num_wait = HPSA_EH_PTRAID_TIMEOUT;
Don Braceba74fdc2016-04-27 17:14:17 -05001850
1851 while (1) {
1852 cmds = hpsa_find_outstanding_commands_for_dev(h, device);
1853 if (cmds == 0)
1854 break;
Don Braceb443d3e2019-05-07 13:32:20 -05001855 if (++waits > num_wait)
Don Braceba74fdc2016-04-27 17:14:17 -05001856 break;
Don Brace9211a072017-10-20 16:51:57 -05001857 msleep(1000);
1858 }
1859
Don Braceb443d3e2019-05-07 13:32:20 -05001860 if (waits > num_wait) {
Don Braceba74fdc2016-04-27 17:14:17 -05001861 dev_warn(&h->pdev->dev,
Don Braceb443d3e2019-05-07 13:32:20 -05001862 "%s: removing device [%d:%d:%d:%d] with %d outstanding commands!\n",
1863 __func__,
1864 h->scsi_host->host_no,
1865 device->bus, device->target, device->lun, cmds);
1866 }
Don Braceba74fdc2016-04-27 17:14:17 -05001867}
1868
Kevin Barnett096ccff2015-11-04 15:51:51 -06001869static void hpsa_remove_device(struct ctlr_info *h,
1870 struct hpsa_scsi_dev_t *device)
1871{
1872 struct scsi_device *sdev = NULL;
1873
1874 if (!h->scsi_host)
1875 return;
1876
Don Brace0ff365f2017-10-20 16:52:04 -05001877 /*
1878 * Allow for commands to drain
1879 */
1880 device->removed = 1;
1881 hpsa_wait_for_outstanding_commands_for_dev(h, device);
1882
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001883 if (is_logical_device(device)) { /* RAID */
1884 sdev = scsi_device_lookup(h->scsi_host, device->bus,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001885 device->target, device->lun);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001886 if (sdev) {
1887 scsi_remove_device(sdev);
1888 scsi_device_put(sdev);
1889 } else {
1890 /*
1891 * We don't expect to get here. Future commands
1892 * to this device will get a selection timeout as
1893 * if the device were gone.
1894 */
1895 hpsa_show_dev_msg(KERN_WARNING, h, device,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001896 "didn't find device for removal.");
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001897 }
Don Braceba74fdc2016-04-27 17:14:17 -05001898 } else { /* HBA */
1899
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001900 hpsa_remove_sas_device(device);
Don Braceba74fdc2016-04-27 17:14:17 -05001901 }
Kevin Barnett096ccff2015-11-04 15:51:51 -06001902}
1903
Don Brace8aa60682015-11-04 15:50:01 -06001904static void adjust_hpsa_scsi_table(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001905 struct hpsa_scsi_dev_t *sd[], int nsds)
1906{
1907 /* sd contains scsi3 addresses and devtypes, and inquiry
1908 * data. This function takes what's in sd to be the current
1909 * reality and updates h->dev[] to reflect that reality.
1910 */
1911 int i, entry, device_change, changes = 0;
1912 struct hpsa_scsi_dev_t *csd;
1913 unsigned long flags;
1914 struct hpsa_scsi_dev_t **added, **removed;
1915 int nadded, nremoved;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001916
Don Braceda03ded2015-11-04 15:50:56 -06001917 /*
1918 * A reset can cause a device status to change
1919 * re-schedule the scan to see what happened.
1920 */
Don Bracec59d04f2017-05-04 17:51:22 -05001921 spin_lock_irqsave(&h->reset_lock, flags);
Don Braceda03ded2015-11-04 15:50:56 -06001922 if (h->reset_in_progress) {
1923 h->drv_req_rescan = 1;
Don Bracec59d04f2017-05-04 17:51:22 -05001924 spin_unlock_irqrestore(&h->reset_lock, flags);
Don Braceda03ded2015-11-04 15:50:56 -06001925 return;
1926 }
Don Bracec59d04f2017-05-04 17:51:22 -05001927 spin_unlock_irqrestore(&h->reset_lock, flags);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001928
Kees Cook6396bb22018-06-12 14:03:40 -07001929 added = kcalloc(HPSA_MAX_DEVICES, sizeof(*added), GFP_KERNEL);
1930 removed = kcalloc(HPSA_MAX_DEVICES, sizeof(*removed), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001931
1932 if (!added || !removed) {
1933 dev_warn(&h->pdev->dev, "out of memory in "
1934 "adjust_hpsa_scsi_table\n");
1935 goto free_and_out;
1936 }
1937
1938 spin_lock_irqsave(&h->devlock, flags);
1939
1940 /* find any devices in h->dev[] that are not in
1941 * sd[] and remove them from h->dev[], and for any
1942 * devices which have changed, remove the old device
1943 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001944 * If minor device attributes change, just update
1945 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001946 */
1947 i = 0;
1948 nremoved = 0;
1949 nadded = 0;
1950 while (i < h->ndevices) {
1951 csd = h->dev[i];
1952 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1953 if (device_change == DEVICE_NOT_FOUND) {
1954 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001955 hpsa_scsi_remove_entry(h, i, removed, &nremoved);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001956 continue; /* remove ^^^, hence i not incremented */
1957 } else if (device_change == DEVICE_CHANGED) {
1958 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001959 hpsa_scsi_replace_entry(h, i, sd[entry],
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001960 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001961 /* Set it to NULL to prevent it from being freed
1962 * at the bottom of hpsa_update_scsi_devices()
1963 */
1964 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001965 } else if (device_change == DEVICE_UPDATED) {
Don Brace8aa60682015-11-04 15:50:01 -06001966 hpsa_scsi_update_entry(h, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001967 }
1968 i++;
1969 }
1970
1971 /* Now, make sure every device listed in sd[] is also
1972 * listed in h->dev[], adding them if they aren't found
1973 */
1974
1975 for (i = 0; i < nsds; i++) {
1976 if (!sd[i]) /* if already added above. */
1977 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001978
1979 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1980 * as the SCSI mid-layer does not handle such devices well.
1981 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1982 * at 160Hz, and prevents the system from coming up.
1983 */
1984 if (sd[i]->volume_offline) {
1985 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001986 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001987 continue;
1988 }
1989
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001990 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1991 h->ndevices, &entry);
1992 if (device_change == DEVICE_NOT_FOUND) {
1993 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001994 if (hpsa_scsi_add_entry(h, sd[i], added, &nadded) != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001995 break;
1996 sd[i] = NULL; /* prevent from being freed later. */
1997 } else if (device_change == DEVICE_CHANGED) {
1998 /* should never happen... */
1999 changes++;
2000 dev_warn(&h->pdev->dev,
2001 "device unexpectedly changed.\n");
2002 /* but if it does happen, we just ignore that device */
2003 }
2004 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002005 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
2006
Don Braceb2582a62017-10-20 16:51:45 -05002007 /*
2008 * Now that h->dev[]->phys_disk[] is coherent, we can enable
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002009 * any logical drives that need it enabled.
Don Braceb2582a62017-10-20 16:51:45 -05002010 *
2011 * The raid map should be current by now.
2012 *
2013 * We are updating the device list used for I/O requests.
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002014 */
Don Brace1d33d852015-11-04 15:50:31 -06002015 for (i = 0; i < h->ndevices; i++) {
2016 if (h->dev[i] == NULL)
2017 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002018 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
Don Brace1d33d852015-11-04 15:50:31 -06002019 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002020
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002021 spin_unlock_irqrestore(&h->devlock, flags);
2022
Stephen M. Cameron98465902014-02-21 16:25:00 -06002023 /* Monitor devices which are in one of several NOT READY states to be
2024 * brought online later. This must be done without holding h->devlock,
2025 * so don't touch h->dev[]
2026 */
2027 for (i = 0; i < nsds; i++) {
2028 if (!sd[i]) /* if already added above. */
2029 continue;
2030 if (sd[i]->volume_offline)
2031 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
2032 }
2033
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002034 /* Don't notify scsi mid layer of any changes the first time through
2035 * (or if there are no changes) scsi_scan_host will do it later the
2036 * first time through.
2037 */
Don Brace8aa60682015-11-04 15:50:01 -06002038 if (!changes)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002039 goto free_and_out;
2040
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002041 /* Notify scsi mid layer of any removed devices */
2042 for (i = 0; i < nremoved; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06002043 if (removed[i] == NULL)
2044 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06002045 if (removed[i]->expose_device)
2046 hpsa_remove_device(h, removed[i]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002047 kfree(removed[i]);
2048 removed[i] = NULL;
2049 }
2050
2051 /* Notify scsi mid layer of any added devices */
2052 for (i = 0; i < nadded; i++) {
Kevin Barnett096ccff2015-11-04 15:51:51 -06002053 int rc = 0;
2054
Don Brace1d33d852015-11-04 15:50:31 -06002055 if (added[i] == NULL)
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002056 continue;
Kevin Barnett2a168202015-11-04 15:51:21 -06002057 if (!(added[i]->expose_device))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002058 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06002059 rc = hpsa_add_device(h, added[i]);
2060 if (!rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002061 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06002062 dev_warn(&h->pdev->dev,
2063 "addition failed %d, device not added.", rc);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002064 /* now we have to remove it from h->dev,
2065 * since it didn't get added to scsi mid layer
2066 */
2067 fixup_botched_add(h, added[i]);
Don Brace853633e2015-11-04 15:50:37 -06002068 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002069 }
2070
2071free_and_out:
2072 kfree(added);
2073 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002074}
2075
2076/*
Joe Perches9e03aa22013-09-03 13:45:58 -07002077 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002078 * Assume's h->devlock is held.
2079 */
2080static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
2081 int bus, int target, int lun)
2082{
2083 int i;
2084 struct hpsa_scsi_dev_t *sd;
2085
2086 for (i = 0; i < h->ndevices; i++) {
2087 sd = h->dev[i];
2088 if (sd->bus == bus && sd->target == target && sd->lun == lun)
2089 return sd;
2090 }
2091 return NULL;
2092}
2093
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002094static int hpsa_slave_alloc(struct scsi_device *sdev)
2095{
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01002096 struct hpsa_scsi_dev_t *sd = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002097 unsigned long flags;
2098 struct ctlr_info *h;
2099
2100 h = sdev_to_hba(sdev);
2101 spin_lock_irqsave(&h->devlock, flags);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06002102 if (sdev_channel(sdev) == HPSA_PHYSICAL_DEVICE_BUS) {
2103 struct scsi_target *starget;
2104 struct sas_rphy *rphy;
2105
2106 starget = scsi_target(sdev);
2107 rphy = target_to_rphy(starget);
2108 sd = hpsa_find_device_by_sas_rphy(h, rphy);
2109 if (sd) {
2110 sd->target = sdev_id(sdev);
2111 sd->lun = sdev->lun;
2112 }
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01002113 }
2114 if (!sd)
Kevin Barnettd04e62b2015-11-04 15:52:34 -06002115 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
2116 sdev_id(sdev), sdev->lun);
2117
2118 if (sd && sd->expose_device) {
Don Brace03383732015-01-23 16:43:30 -06002119 atomic_set(&sd->ioaccel_cmds_out, 0);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06002120 sdev->hostdata = sd;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002121 } else
2122 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002123 spin_unlock_irqrestore(&h->devlock, flags);
2124 return 0;
2125}
2126
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002127/* configure scsi device based on internal per-device structure */
2128static int hpsa_slave_configure(struct scsi_device *sdev)
2129{
2130 struct hpsa_scsi_dev_t *sd;
2131 int queue_depth;
2132
2133 sd = sdev->hostdata;
Kevin Barnett2a168202015-11-04 15:51:21 -06002134 sdev->no_uld_attach = !sd || !sd->expose_device;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002135
Don Brace50864352017-05-04 17:51:28 -05002136 if (sd) {
Don Brace9e33f0d2019-05-07 13:32:26 -05002137 sd->was_removed = 0;
Don Braceb443d3e2019-05-07 13:32:20 -05002138 if (sd->external) {
Don Brace50864352017-05-04 17:51:28 -05002139 queue_depth = EXTERNAL_QD;
Don Braceb443d3e2019-05-07 13:32:20 -05002140 sdev->eh_timeout = HPSA_EH_PTRAID_TIMEOUT;
2141 blk_queue_rq_timeout(sdev->request_queue,
2142 HPSA_EH_PTRAID_TIMEOUT);
2143 } else {
Don Brace50864352017-05-04 17:51:28 -05002144 queue_depth = sd->queue_depth != 0 ?
2145 sd->queue_depth : sdev->host->can_queue;
Don Braceb443d3e2019-05-07 13:32:20 -05002146 }
Don Brace50864352017-05-04 17:51:28 -05002147 } else
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002148 queue_depth = sdev->host->can_queue;
2149
2150 scsi_change_queue_depth(sdev, queue_depth);
2151
2152 return 0;
2153}
2154
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002155static void hpsa_slave_destroy(struct scsi_device *sdev)
2156{
Don Brace9e33f0d2019-05-07 13:32:26 -05002157 struct hpsa_scsi_dev_t *hdev = NULL;
2158
2159 hdev = sdev->hostdata;
2160
2161 if (hdev)
2162 hdev->was_removed = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002163}
2164
Webb Scalesd9a729f2015-04-23 09:33:27 -05002165static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
2166{
2167 int i;
2168
2169 if (!h->ioaccel2_cmd_sg_list)
2170 return;
2171 for (i = 0; i < h->nr_cmds; i++) {
2172 kfree(h->ioaccel2_cmd_sg_list[i]);
2173 h->ioaccel2_cmd_sg_list[i] = NULL;
2174 }
2175 kfree(h->ioaccel2_cmd_sg_list);
2176 h->ioaccel2_cmd_sg_list = NULL;
2177}
2178
2179static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
2180{
2181 int i;
2182
2183 if (h->chainsize <= 0)
2184 return 0;
2185
2186 h->ioaccel2_cmd_sg_list =
Kees Cook6396bb22018-06-12 14:03:40 -07002187 kcalloc(h->nr_cmds, sizeof(*h->ioaccel2_cmd_sg_list),
Webb Scalesd9a729f2015-04-23 09:33:27 -05002188 GFP_KERNEL);
2189 if (!h->ioaccel2_cmd_sg_list)
2190 return -ENOMEM;
2191 for (i = 0; i < h->nr_cmds; i++) {
2192 h->ioaccel2_cmd_sg_list[i] =
Kees Cook6da2ec52018-06-12 13:55:00 -07002193 kmalloc_array(h->maxsgentries,
2194 sizeof(*h->ioaccel2_cmd_sg_list[i]),
2195 GFP_KERNEL);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002196 if (!h->ioaccel2_cmd_sg_list[i])
2197 goto clean;
2198 }
2199 return 0;
2200
2201clean:
2202 hpsa_free_ioaccel2_sg_chain_blocks(h);
2203 return -ENOMEM;
2204}
2205
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002206static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
2207{
2208 int i;
2209
2210 if (!h->cmd_sg_list)
2211 return;
2212 for (i = 0; i < h->nr_cmds; i++) {
2213 kfree(h->cmd_sg_list[i]);
2214 h->cmd_sg_list[i] = NULL;
2215 }
2216 kfree(h->cmd_sg_list);
2217 h->cmd_sg_list = NULL;
2218}
2219
Robert Elliott105a3db2015-04-23 09:33:48 -05002220static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002221{
2222 int i;
2223
2224 if (h->chainsize <= 0)
2225 return 0;
2226
Kees Cook6396bb22018-06-12 14:03:40 -07002227 h->cmd_sg_list = kcalloc(h->nr_cmds, sizeof(*h->cmd_sg_list),
2228 GFP_KERNEL);
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05302229 if (!h->cmd_sg_list)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002230 return -ENOMEM;
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05302231
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002232 for (i = 0; i < h->nr_cmds; i++) {
Kees Cook6da2ec52018-06-12 13:55:00 -07002233 h->cmd_sg_list[i] = kmalloc_array(h->chainsize,
2234 sizeof(*h->cmd_sg_list[i]),
2235 GFP_KERNEL);
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05302236 if (!h->cmd_sg_list[i])
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002237 goto clean;
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05302238
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002239 }
2240 return 0;
2241
2242clean:
2243 hpsa_free_sg_chain_blocks(h);
2244 return -ENOMEM;
2245}
2246
Webb Scalesd9a729f2015-04-23 09:33:27 -05002247static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
2248 struct io_accel2_cmd *cp, struct CommandList *c)
2249{
2250 struct ioaccel2_sg_element *chain_block;
2251 u64 temp64;
2252 u32 chain_size;
2253
2254 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
Don Bracea736e9b2015-11-04 15:51:14 -06002255 chain_size = le32_to_cpu(cp->sg[0].length);
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002256 temp64 = dma_map_single(&h->pdev->dev, chain_block, chain_size,
2257 DMA_TO_DEVICE);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002258 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2259 /* prevent subsequent unmapping */
2260 cp->sg->address = 0;
2261 return -1;
2262 }
2263 cp->sg->address = cpu_to_le64(temp64);
2264 return 0;
2265}
2266
2267static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
2268 struct io_accel2_cmd *cp)
2269{
2270 struct ioaccel2_sg_element *chain_sg;
2271 u64 temp64;
2272 u32 chain_size;
2273
2274 chain_sg = cp->sg;
2275 temp64 = le64_to_cpu(chain_sg->address);
Don Bracea736e9b2015-11-04 15:51:14 -06002276 chain_size = le32_to_cpu(cp->sg[0].length);
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002277 dma_unmap_single(&h->pdev->dev, temp64, chain_size, DMA_TO_DEVICE);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002278}
2279
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002280static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002281 struct CommandList *c)
2282{
2283 struct SGDescriptor *chain_sg, *chain_block;
2284 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002285 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002286
2287 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
2288 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002289 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
2290 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06002291 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002292 chain_sg->Len = cpu_to_le32(chain_len);
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002293 temp64 = dma_map_single(&h->pdev->dev, chain_block, chain_len,
2294 DMA_TO_DEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002295 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2296 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002297 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002298 return -1;
2299 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002300 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002301 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002302}
2303
2304static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
2305 struct CommandList *c)
2306{
2307 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002308
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002309 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002310 return;
2311
2312 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002313 dma_unmap_single(&h->pdev->dev, le64_to_cpu(chain_sg->Addr),
2314 le32_to_cpu(chain_sg->Len), DMA_TO_DEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002315}
2316
Scott Teela09c1442014-02-18 13:57:21 -06002317
2318/* Decode the various types of errors on ioaccel2 path.
2319 * Return 1 for any error that should generate a RAID path retry.
2320 * Return 0 for errors that don't require a RAID path retry.
2321 */
2322static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06002323 struct CommandList *c,
2324 struct scsi_cmnd *cmd,
Don Braceba74fdc2016-04-27 17:14:17 -05002325 struct io_accel2_cmd *c2,
2326 struct hpsa_scsi_dev_t *dev)
Scott Teelc3497752014-02-18 13:56:34 -06002327{
2328 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06002329 int retry = 0;
Joe Handzikc40820d2015-04-23 09:33:32 -05002330 u32 ioaccel2_resid = 0;
Scott Teelc3497752014-02-18 13:56:34 -06002331
2332 switch (c2->error_data.serv_response) {
2333 case IOACCEL2_SERV_RESPONSE_COMPLETE:
2334 switch (c2->error_data.status) {
2335 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
Don Braceeeebce12019-07-24 17:08:06 -05002336 if (cmd)
2337 cmd->result = 0;
Scott Teelc3497752014-02-18 13:56:34 -06002338 break;
2339 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002340 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06002341 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002342 IOACCEL2_SENSE_DATA_PRESENT) {
2343 memset(cmd->sense_buffer, 0,
2344 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06002345 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002346 }
Scott Teelc3497752014-02-18 13:56:34 -06002347 /* copy the sense data */
2348 data_len = c2->error_data.sense_data_len;
2349 if (data_len > SCSI_SENSE_BUFFERSIZE)
2350 data_len = SCSI_SENSE_BUFFERSIZE;
2351 if (data_len > sizeof(c2->error_data.sense_data_buff))
2352 data_len =
2353 sizeof(c2->error_data.sense_data_buff);
2354 memcpy(cmd->sense_buffer,
2355 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06002356 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002357 break;
2358 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
Scott Teela09c1442014-02-18 13:57:21 -06002359 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002360 break;
2361 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
Scott Teela09c1442014-02-18 13:57:21 -06002362 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002363 break;
2364 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05002365 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002366 break;
2367 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
Scott Teela09c1442014-02-18 13:57:21 -06002368 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002369 break;
2370 default:
Scott Teela09c1442014-02-18 13:57:21 -06002371 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002372 break;
2373 }
2374 break;
2375 case IOACCEL2_SERV_RESPONSE_FAILURE:
Joe Handzikc40820d2015-04-23 09:33:32 -05002376 switch (c2->error_data.status) {
2377 case IOACCEL2_STATUS_SR_IO_ERROR:
2378 case IOACCEL2_STATUS_SR_IO_ABORTED:
2379 case IOACCEL2_STATUS_SR_OVERRUN:
2380 retry = 1;
2381 break;
2382 case IOACCEL2_STATUS_SR_UNDERRUN:
2383 cmd->result = (DID_OK << 16); /* host byte */
2384 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
2385 ioaccel2_resid = get_unaligned_le32(
2386 &c2->error_data.resid_cnt[0]);
2387 scsi_set_resid(cmd, ioaccel2_resid);
2388 break;
2389 case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
2390 case IOACCEL2_STATUS_SR_INVALID_DEVICE:
2391 case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
Don Braceba74fdc2016-04-27 17:14:17 -05002392 /*
2393 * Did an HBA disk disappear? We will eventually
2394 * get a state change event from the controller but
2395 * in the meantime, we need to tell the OS that the
2396 * HBA disk is no longer there and stop I/O
2397 * from going down. This allows the potential re-insert
2398 * of the disk to get the same device node.
2399 */
2400 if (dev->physical_device && dev->expose_device) {
2401 cmd->result = DID_NO_CONNECT << 16;
2402 dev->removed = 1;
2403 h->drv_req_rescan = 1;
2404 dev_warn(&h->pdev->dev,
2405 "%s: device is gone!\n", __func__);
2406 } else
2407 /*
2408 * Retry by sending down the RAID path.
2409 * We will get an event from ctlr to
2410 * trigger rescan regardless.
2411 */
2412 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002413 break;
2414 default:
2415 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002416 }
Scott Teelc3497752014-02-18 13:56:34 -06002417 break;
2418 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
2419 break;
2420 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
2421 break;
2422 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
Scott Teela09c1442014-02-18 13:57:21 -06002423 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002424 break;
2425 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
Scott Teelc3497752014-02-18 13:56:34 -06002426 break;
2427 default:
Scott Teela09c1442014-02-18 13:57:21 -06002428 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002429 break;
2430 }
Scott Teela09c1442014-02-18 13:57:21 -06002431
Don Bracec5dfd102019-05-07 13:32:33 -05002432 if (dev->in_reset)
2433 retry = 0;
2434
Scott Teela09c1442014-02-18 13:57:21 -06002435 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06002436}
2437
Webb Scalesa58e7e52015-04-23 09:34:16 -05002438static void hpsa_cmd_resolve_events(struct ctlr_info *h,
2439 struct CommandList *c)
2440{
Don Bracec5dfd102019-05-07 13:32:33 -05002441 struct hpsa_scsi_dev_t *dev = c->device;
Webb Scalesd604f532015-04-23 09:35:22 -05002442
Webb Scalesa58e7e52015-04-23 09:34:16 -05002443 /*
Don Brace08ec46f2017-05-04 17:51:49 -05002444 * Reset c->scsi_cmd here so that the reset handler will know
Webb Scalesd604f532015-04-23 09:35:22 -05002445 * this command has completed. Then, check to see if the handler is
Webb Scalesa58e7e52015-04-23 09:34:16 -05002446 * waiting for this command, and, if so, wake it.
2447 */
2448 c->scsi_cmd = SCSI_CMD_IDLE;
Webb Scalesd604f532015-04-23 09:35:22 -05002449 mb(); /* Declare command idle before checking for pending events. */
Don Bracec5dfd102019-05-07 13:32:33 -05002450 if (dev) {
2451 atomic_dec(&dev->commands_outstanding);
2452 if (dev->in_reset &&
2453 atomic_read(&dev->commands_outstanding) <= 0)
2454 wake_up_all(&h->event_sync_wait_queue);
Webb Scalesd604f532015-04-23 09:35:22 -05002455 }
Webb Scalesa58e7e52015-04-23 09:34:16 -05002456}
2457
Webb Scales73153fe2015-04-23 09:35:04 -05002458static void hpsa_cmd_resolve_and_free(struct ctlr_info *h,
2459 struct CommandList *c)
2460{
2461 hpsa_cmd_resolve_events(h, c);
2462 cmd_tagged_free(h, c);
2463}
2464
Webb Scales8a0ff922015-04-23 09:34:11 -05002465static void hpsa_cmd_free_and_done(struct ctlr_info *h,
2466 struct CommandList *c, struct scsi_cmnd *cmd)
2467{
Webb Scales73153fe2015-04-23 09:35:04 -05002468 hpsa_cmd_resolve_and_free(h, c);
Don Braced49c2072016-09-09 16:30:23 -05002469 if (cmd && cmd->scsi_done)
2470 cmd->scsi_done(cmd);
Webb Scales8a0ff922015-04-23 09:34:11 -05002471}
2472
2473static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c)
2474{
2475 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
2476 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
2477}
2478
Scott Teelc3497752014-02-18 13:56:34 -06002479static void process_ioaccel2_completion(struct ctlr_info *h,
2480 struct CommandList *c, struct scsi_cmnd *cmd,
2481 struct hpsa_scsi_dev_t *dev)
2482{
2483 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2484
2485 /* check for good status */
2486 if (likely(c2->error_data.serv_response == 0 &&
Don Braceeeebce12019-07-24 17:08:06 -05002487 c2->error_data.status == 0)) {
2488 cmd->result = 0;
Webb Scales8a0ff922015-04-23 09:34:11 -05002489 return hpsa_cmd_free_and_done(h, c, cmd);
Don Braceeeebce12019-07-24 17:08:06 -05002490 }
Scott Teelc3497752014-02-18 13:56:34 -06002491
Webb Scales8a0ff922015-04-23 09:34:11 -05002492 /*
2493 * Any RAID offload error results in retry which will use
Don Braceb2582a62017-10-20 16:51:45 -05002494 * the normal I/O path so the controller can handle whatever is
Scott Teelc3497752014-02-18 13:56:34 -06002495 * wrong.
2496 */
Kevin Barnettf3f01732015-11-04 15:51:33 -06002497 if (is_logical_device(dev) &&
Scott Teelc3497752014-02-18 13:56:34 -06002498 c2->error_data.serv_response ==
2499 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06002500 if (c2->error_data.status ==
Don Brace064d1b12016-04-27 17:14:07 -05002501 IOACCEL2_STATUS_SR_IOACCEL_DISABLED) {
Don Brace080ef1c2015-01-23 16:43:25 -06002502 dev->offload_enabled = 0;
Don Brace064d1b12016-04-27 17:14:07 -05002503 dev->offload_to_be_enabled = 0;
2504 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002505
Don Bracec5dfd102019-05-07 13:32:33 -05002506 if (dev->in_reset) {
2507 cmd->result = DID_RESET << 16;
2508 return hpsa_cmd_free_and_done(h, c, cmd);
2509 }
2510
Webb Scales8a0ff922015-04-23 09:34:11 -05002511 return hpsa_retry_cmd(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06002512 }
Don Brace080ef1c2015-01-23 16:43:25 -06002513
Don Braceba74fdc2016-04-27 17:14:17 -05002514 if (handle_ioaccel_mode2_error(h, c, cmd, c2, dev))
Webb Scales8a0ff922015-04-23 09:34:11 -05002515 return hpsa_retry_cmd(h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06002516
Webb Scales8a0ff922015-04-23 09:34:11 -05002517 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002518}
2519
Stephen Cameron9437ac42015-04-23 09:32:16 -05002520/* Returns 0 on success, < 0 otherwise. */
2521static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
2522 struct CommandList *cp)
2523{
2524 u8 tmf_status = cp->err_info->ScsiStatus;
2525
2526 switch (tmf_status) {
2527 case CISS_TMF_COMPLETE:
2528 /*
2529 * CISS_TMF_COMPLETE never happens, instead,
2530 * ei->CommandStatus == 0 for this case.
2531 */
2532 case CISS_TMF_SUCCESS:
2533 return 0;
2534 case CISS_TMF_INVALID_FRAME:
2535 case CISS_TMF_NOT_SUPPORTED:
2536 case CISS_TMF_FAILED:
2537 case CISS_TMF_WRONG_LUN:
2538 case CISS_TMF_OVERLAPPED_TAG:
2539 break;
2540 default:
2541 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2542 tmf_status);
2543 break;
2544 }
2545 return -tmf_status;
2546}
2547
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002548static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002549{
2550 struct scsi_cmnd *cmd;
2551 struct ctlr_info *h;
2552 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002553 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002554 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002555
Stephen Cameron9437ac42015-04-23 09:32:16 -05002556 u8 sense_key;
2557 u8 asc; /* additional sense code */
2558 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002559 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002560
2561 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002562 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002563 h = cp->h;
Don Braced49c2072016-09-09 16:30:23 -05002564
2565 if (!cmd->device) {
2566 cmd->result = DID_NO_CONNECT << 16;
2567 return hpsa_cmd_free_and_done(h, cp, cmd);
2568 }
2569
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002570 dev = cmd->device->hostdata;
Don Brace45e596c2016-09-09 16:30:42 -05002571 if (!dev) {
2572 cmd->result = DID_NO_CONNECT << 16;
2573 return hpsa_cmd_free_and_done(h, cp, cmd);
2574 }
Webb Scalesd9a729f2015-04-23 09:33:27 -05002575 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002576
2577 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002578 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002579 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002580 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002581
Webb Scalesd9a729f2015-04-23 09:33:27 -05002582 if ((cp->cmd_type == CMD_IOACCEL2) &&
2583 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2584 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2585
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002586 cmd->result = (DID_OK << 16); /* host byte */
2587 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002588
Don Brace9e33f0d2019-05-07 13:32:26 -05002589 /* SCSI command has already been cleaned up in SML */
2590 if (dev->was_removed) {
2591 hpsa_cmd_resolve_and_free(h, cp);
2592 return;
2593 }
2594
Don Braced49c2072016-09-09 16:30:23 -05002595 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1) {
2596 if (dev->physical_device && dev->expose_device &&
2597 dev->removed) {
2598 cmd->result = DID_NO_CONNECT << 16;
2599 return hpsa_cmd_free_and_done(h, cp, cmd);
2600 }
2601 if (likely(cp->phys_disk != NULL))
2602 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2603 }
Don Brace03383732015-01-23 16:43:30 -06002604
Webb Scales25163bd2015-04-23 09:32:00 -05002605 /*
2606 * We check for lockup status here as it may be set for
2607 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2608 * fail_all_oustanding_cmds()
2609 */
2610 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2611 /* DID_NO_CONNECT will prevent a retry */
2612 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05002613 return hpsa_cmd_free_and_done(h, cp, cmd);
Webb Scales25163bd2015-04-23 09:32:00 -05002614 }
2615
Scott Teelc3497752014-02-18 13:56:34 -06002616 if (cp->cmd_type == CMD_IOACCEL2)
2617 return process_ioaccel2_completion(h, cp, cmd, dev);
2618
Robert Elliott6aa4c362014-07-03 10:18:19 -05002619 scsi_set_resid(cmd, ei->ResidualCnt);
Webb Scales8a0ff922015-04-23 09:34:11 -05002620 if (ei->CommandStatus == 0)
2621 return hpsa_cmd_free_and_done(h, cp, cmd);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002622
Matt Gatese1f7de02014-02-18 13:55:17 -06002623 /* For I/O accelerator commands, copy over some fields to the normal
2624 * CISS header used below for error handling.
2625 */
2626 if (cp->cmd_type == CMD_IOACCEL1) {
2627 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002628 cp->Header.SGList = scsi_sg_count(cmd);
2629 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2630 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2631 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002632 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002633 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2634 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002635
2636 /* Any RAID offload error results in retry which will use
2637 * the normal I/O path so the controller can handle whatever's
2638 * wrong.
2639 */
Kevin Barnettf3f01732015-11-04 15:51:33 -06002640 if (is_logical_device(dev)) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002641 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2642 dev->offload_enabled = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05002643 return hpsa_retry_cmd(h, cp);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002644 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002645 }
2646
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002647 /* an error has occurred */
2648 switch (ei->CommandStatus) {
2649
2650 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002651 cmd->result |= ei->ScsiStatus;
2652 /* copy the sense data */
2653 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2654 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2655 else
2656 sense_data_size = sizeof(ei->SenseInfo);
2657 if (ei->SenseLen < sense_data_size)
2658 sense_data_size = ei->SenseLen;
2659 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2660 if (ei->ScsiStatus)
2661 decode_sense_data(ei->SenseInfo, sense_data_size,
2662 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002663 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Don Brace49ea45c2019-03-12 13:11:33 -05002664 switch (sense_key) {
2665 case ABORTED_COMMAND:
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002666 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002667 break;
Don Brace49ea45c2019-03-12 13:11:33 -05002668 case UNIT_ATTENTION:
2669 if (asc == 0x3F && ascq == 0x0E)
2670 h->drv_req_rescan = 1;
2671 break;
2672 case ILLEGAL_REQUEST:
2673 if (asc == 0x25 && ascq == 0x00) {
2674 dev->removed = 1;
2675 cmd->result = DID_NO_CONNECT << 16;
2676 }
2677 break;
Matt Gates1d3b3602010-02-04 08:43:00 -06002678 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002679 break;
2680 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002681 /* Problem was not a check condition
2682 * Pass it up to the upper layers...
2683 */
2684 if (ei->ScsiStatus) {
2685 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2686 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2687 "Returning result: 0x%x\n",
2688 cp, ei->ScsiStatus,
2689 sense_key, asc, ascq,
2690 cmd->result);
2691 } else { /* scsi status is zero??? How??? */
2692 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2693 "Returning no connection.\n", cp),
2694
2695 /* Ordinarily, this case should never happen,
2696 * but there is a bug in some released firmware
2697 * revisions that allows it to happen if, for
2698 * example, a 4100 backplane loses power and
2699 * the tape drive is in it. We assume that
2700 * it's a fatal error of some kind because we
2701 * can't show that it wasn't. We will make it
2702 * look like selection timeout since that is
2703 * the most common reason for this to occur,
2704 * and it's severe enough.
2705 */
2706
2707 cmd->result = DID_NO_CONNECT << 16;
2708 }
2709 break;
2710
2711 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2712 break;
2713 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002714 dev_warn(&h->pdev->dev,
2715 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002716 break;
2717 case CMD_INVALID: {
2718 /* print_bytes(cp, sizeof(*cp), 1, 0);
2719 print_cmd(cp); */
2720 /* We get CMD_INVALID if you address a non-existent device
2721 * instead of a selection timeout (no response). You will
2722 * see this if you yank out a drive, then try to access it.
2723 * This is kind of a shame because it means that any other
2724 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2725 * missing target. */
2726 cmd->result = DID_NO_CONNECT << 16;
2727 }
2728 break;
2729 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002730 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002731 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2732 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002733 break;
2734 case CMD_HARDWARE_ERR:
2735 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002736 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2737 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002738 break;
2739 case CMD_CONNECTION_LOST:
2740 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002741 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2742 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002743 break;
2744 case CMD_ABORTED:
Don Brace08ec46f2017-05-04 17:51:49 -05002745 cmd->result = DID_ABORT << 16;
2746 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002747 case CMD_ABORT_FAILED:
2748 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002749 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2750 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002751 break;
2752 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002753 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002754 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2755 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002756 break;
2757 case CMD_TIMEOUT:
2758 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002759 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2760 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002761 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002762 case CMD_UNABORTABLE:
2763 cmd->result = DID_ERROR << 16;
2764 dev_warn(&h->pdev->dev, "Command unabortable\n");
2765 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002766 case CMD_TMF_STATUS:
2767 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2768 cmd->result = DID_ERROR << 16;
2769 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002770 case CMD_IOACCEL_DISABLED:
2771 /* This only handles the direct pass-through case since RAID
2772 * offload is handled above. Just attempt a retry.
2773 */
2774 cmd->result = DID_SOFT_ERROR << 16;
2775 dev_warn(&h->pdev->dev,
2776 "cp %p had HP SSD Smart Path error\n", cp);
2777 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002778 default:
2779 cmd->result = DID_ERROR << 16;
2780 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2781 cp, ei->CommandStatus);
2782 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002783
2784 return hpsa_cmd_free_and_done(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002785}
2786
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002787static void hpsa_pci_unmap(struct pci_dev *pdev, struct CommandList *c,
2788 int sg_used, enum dma_data_direction data_direction)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002789{
2790 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002791
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002792 for (i = 0; i < sg_used; i++)
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002793 dma_unmap_single(&pdev->dev, le64_to_cpu(c->SG[i].Addr),
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002794 le32_to_cpu(c->SG[i].Len),
2795 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002796}
2797
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002798static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002799 struct CommandList *cp,
2800 unsigned char *buf,
2801 size_t buflen,
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002802 enum dma_data_direction data_direction)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002803{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002804 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002805
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002806 if (buflen == 0 || data_direction == DMA_NONE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002807 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002808 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002809 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002810 }
2811
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002812 addr64 = dma_map_single(&pdev->dev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002813 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002814 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002815 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002816 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002817 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002818 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002819 cp->SG[0].Addr = cpu_to_le64(addr64);
2820 cp->SG[0].Len = cpu_to_le32(buflen);
2821 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2822 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2823 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002824 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002825}
2826
Webb Scales25163bd2015-04-23 09:32:00 -05002827#define NO_TIMEOUT ((unsigned long) -1)
2828#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2829static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2830 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002831{
2832 DECLARE_COMPLETION_ONSTACK(wait);
2833
2834 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002835 __enqueue_cmd_and_start_io(h, c, reply_queue);
2836 if (timeout_msecs == NO_TIMEOUT) {
2837 /* TODO: get rid of this no-timeout thing */
2838 wait_for_completion_io(&wait);
2839 return IO_OK;
2840 }
2841 if (!wait_for_completion_io_timeout(&wait,
2842 msecs_to_jiffies(timeout_msecs))) {
2843 dev_warn(&h->pdev->dev, "Command timed out.\n");
2844 return -ETIMEDOUT;
2845 }
2846 return IO_OK;
2847}
2848
2849static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2850 int reply_queue, unsigned long timeout_msecs)
2851{
2852 if (unlikely(lockup_detected(h))) {
2853 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2854 return IO_OK;
2855 }
2856 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002857}
2858
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002859static u32 lockup_detected(struct ctlr_info *h)
2860{
2861 int cpu;
2862 u32 rc, *lockup_detected;
2863
2864 cpu = get_cpu();
2865 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2866 rc = *lockup_detected;
2867 put_cpu();
2868 return rc;
2869}
2870
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002871#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002872static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002873 struct CommandList *c, enum dma_data_direction data_direction,
2874 unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002875{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002876 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002877 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002878
2879 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002880 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002881 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2882 timeout_msecs);
2883 if (rc)
2884 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002885 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002886 if (retry_count > 3) {
2887 msleep(backoff_time);
2888 if (backoff_time < 1000)
2889 backoff_time *= 2;
2890 }
Matt Bondurant852af202012-05-01 11:42:35 -05002891 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002892 check_for_busy(h, c)) &&
2893 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002894 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002895 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2896 rc = -EIO;
2897 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002898}
2899
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002900static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2901 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002902{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002903 const u8 *cdb = c->Request.CDB;
2904 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002905
Rasmus Villemoes609a70d2016-11-30 23:35:47 +01002906 dev_warn(&h->pdev->dev, "%s: LUN:%8phN CDB:%16phN\n",
2907 txt, lun, cdb);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002908}
2909
2910static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2911 struct CommandList *cp)
2912{
2913 const struct ErrorInfo *ei = cp->err_info;
2914 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002915 u8 sense_key, asc, ascq;
2916 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002917
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002918 switch (ei->CommandStatus) {
2919 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002920 if (ei->SenseLen > sizeof(ei->SenseInfo))
2921 sense_len = sizeof(ei->SenseInfo);
2922 else
2923 sense_len = ei->SenseLen;
2924 decode_sense_data(ei->SenseInfo, sense_len,
2925 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002926 hpsa_print_cmd(h, "SCSI status", cp);
2927 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002928 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2929 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002930 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002931 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002932 if (ei->ScsiStatus == 0)
2933 dev_warn(d, "SCSI status is abnormally zero. "
2934 "(probably indicates selection timeout "
2935 "reported incorrectly due to a known "
2936 "firmware bug, circa July, 2001.)\n");
2937 break;
2938 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002939 break;
2940 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002941 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002942 break;
2943 case CMD_INVALID: {
2944 /* controller unfortunately reports SCSI passthru's
2945 * to non-existent targets as invalid commands.
2946 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002947 hpsa_print_cmd(h, "invalid command", cp);
2948 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002949 }
2950 break;
2951 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002952 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002953 break;
2954 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002955 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002956 break;
2957 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002958 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002959 break;
2960 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002961 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002962 break;
2963 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002964 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002965 break;
2966 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002967 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002968 break;
2969 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002970 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002971 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002972 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002973 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002974 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002975 case CMD_CTLR_LOCKUP:
2976 hpsa_print_cmd(h, "controller lockup detected", cp);
2977 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002978 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002979 hpsa_print_cmd(h, "unknown status", cp);
2980 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002981 ei->CommandStatus);
2982 }
2983}
2984
Don Brace0a7c3bb2017-10-20 16:52:10 -05002985static int hpsa_do_receive_diagnostic(struct ctlr_info *h, u8 *scsi3addr,
2986 u8 page, u8 *buf, size_t bufsize)
2987{
2988 int rc = IO_OK;
2989 struct CommandList *c;
2990 struct ErrorInfo *ei;
2991
2992 c = cmd_alloc(h);
2993 if (fill_cmd(c, RECEIVE_DIAGNOSTIC, h, buf, bufsize,
2994 page, scsi3addr, TYPE_CMD)) {
2995 rc = -1;
2996 goto out;
2997 }
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02002998 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
2999 NO_TIMEOUT);
Don Brace0a7c3bb2017-10-20 16:52:10 -05003000 if (rc)
3001 goto out;
3002 ei = c->err_info;
3003 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3004 hpsa_scsi_interpret_error(h, c);
3005 rc = -1;
3006 }
3007out:
3008 cmd_free(h, c);
3009 return rc;
3010}
3011
3012static u64 hpsa_get_enclosure_logical_identifier(struct ctlr_info *h,
3013 u8 *scsi3addr)
3014{
3015 u8 *buf;
3016 u64 sa = 0;
3017 int rc = 0;
3018
3019 buf = kzalloc(1024, GFP_KERNEL);
3020 if (!buf)
3021 return 0;
3022
3023 rc = hpsa_do_receive_diagnostic(h, scsi3addr, RECEIVE_DIAGNOSTIC,
3024 buf, 1024);
3025
3026 if (rc)
3027 goto out;
3028
3029 sa = get_unaligned_be64(buf+12);
3030
3031out:
3032 kfree(buf);
3033 return sa;
3034}
3035
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003036static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003037 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003038 unsigned char bufsize)
3039{
3040 int rc = IO_OK;
3041 struct CommandList *c;
3042 struct ErrorInfo *ei;
3043
Stephen Cameron45fcb862015-01-23 16:43:04 -06003044 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003045
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003046 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
3047 page, scsi3addr, TYPE_CMD)) {
3048 rc = -1;
3049 goto out;
3050 }
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02003051 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
3052 NO_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003053 if (rc)
3054 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003055 ei = c->err_info;
3056 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003057 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003058 rc = -1;
3059 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003060out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06003061 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003062 return rc;
3063}
3064
Don Bracec5dfd102019-05-07 13:32:33 -05003065static int hpsa_send_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
Webb Scales25163bd2015-04-23 09:32:00 -05003066 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003067{
3068 int rc = IO_OK;
3069 struct CommandList *c;
3070 struct ErrorInfo *ei;
3071
Stephen Cameron45fcb862015-01-23 16:43:04 -06003072 c = cmd_alloc(h);
Don Bracec5dfd102019-05-07 13:32:33 -05003073 c->device = dev;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003074
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003075 /* fill_cmd can't fail here, no data buffer to map. */
Don Bracec5dfd102019-05-07 13:32:33 -05003076 (void) fill_cmd(c, reset_type, h, NULL, 0, 0, dev->scsi3addr, TYPE_MSG);
Don Brace2ef28842017-03-10 14:35:23 -06003077 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003078 if (rc) {
3079 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
3080 goto out;
3081 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003082 /* no unmap needed here because no data xfer. */
3083
3084 ei = c->err_info;
3085 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003086 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003087 rc = -1;
3088 }
Webb Scales25163bd2015-04-23 09:32:00 -05003089out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06003090 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003091 return rc;
3092}
3093
Webb Scalesd604f532015-04-23 09:35:22 -05003094static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
3095 struct hpsa_scsi_dev_t *dev,
3096 unsigned char *scsi3addr)
3097{
3098 int i;
3099 bool match = false;
3100 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
3101 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
3102
3103 if (hpsa_is_cmd_idle(c))
3104 return false;
3105
3106 switch (c->cmd_type) {
3107 case CMD_SCSI:
3108 case CMD_IOCTL_PEND:
3109 match = !memcmp(scsi3addr, &c->Header.LUN.LunAddrBytes,
3110 sizeof(c->Header.LUN.LunAddrBytes));
3111 break;
3112
3113 case CMD_IOACCEL1:
3114 case CMD_IOACCEL2:
3115 if (c->phys_disk == dev) {
3116 /* HBA mode match */
3117 match = true;
3118 } else {
3119 /* Possible RAID mode -- check each phys dev. */
3120 /* FIXME: Do we need to take out a lock here? If
3121 * so, we could just call hpsa_get_pdisk_of_ioaccel2()
3122 * instead. */
3123 for (i = 0; i < dev->nphysical_disks && !match; i++) {
3124 /* FIXME: an alternate test might be
3125 *
3126 * match = dev->phys_disk[i]->ioaccel_handle
3127 * == c2->scsi_nexus; */
3128 match = dev->phys_disk[i] == c->phys_disk;
3129 }
3130 }
3131 break;
3132
3133 case IOACCEL2_TMF:
3134 for (i = 0; i < dev->nphysical_disks && !match; i++) {
3135 match = dev->phys_disk[i]->ioaccel_handle ==
3136 le32_to_cpu(ac->it_nexus);
3137 }
3138 break;
3139
3140 case 0: /* The command is in the middle of being initialized. */
3141 match = false;
3142 break;
3143
3144 default:
3145 dev_err(&h->pdev->dev, "unexpected cmd_type: %d\n",
3146 c->cmd_type);
3147 BUG();
3148 }
3149
3150 return match;
3151}
3152
3153static int hpsa_do_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
Don Bracec5dfd102019-05-07 13:32:33 -05003154 u8 reset_type, int reply_queue)
Webb Scalesd604f532015-04-23 09:35:22 -05003155{
Webb Scalesd604f532015-04-23 09:35:22 -05003156 int rc = 0;
3157
3158 /* We can really only handle one reset at a time */
3159 if (mutex_lock_interruptible(&h->reset_mutex) == -EINTR) {
3160 dev_warn(&h->pdev->dev, "concurrent reset wait interrupted.\n");
3161 return -EINTR;
3162 }
3163
Don Bracec5dfd102019-05-07 13:32:33 -05003164 rc = hpsa_send_reset(h, dev, reset_type, reply_queue);
3165 if (!rc) {
3166 /* incremented by sending the reset request */
3167 atomic_dec(&dev->commands_outstanding);
Webb Scalesd604f532015-04-23 09:35:22 -05003168 wait_event(h->event_sync_wait_queue,
Don Bracec5dfd102019-05-07 13:32:33 -05003169 atomic_read(&dev->commands_outstanding) <= 0 ||
Webb Scalesd604f532015-04-23 09:35:22 -05003170 lockup_detected(h));
Don Bracec5dfd102019-05-07 13:32:33 -05003171 }
Webb Scalesd604f532015-04-23 09:35:22 -05003172
3173 if (unlikely(lockup_detected(h))) {
Don Brace77678d32015-07-18 11:12:22 -05003174 dev_warn(&h->pdev->dev,
3175 "Controller lockup detected during reset wait\n");
3176 rc = -ENODEV;
3177 }
Webb Scalesd604f532015-04-23 09:35:22 -05003178
Don Bracec5dfd102019-05-07 13:32:33 -05003179 if (!rc)
3180 rc = wait_for_device_to_become_ready(h, dev->scsi3addr, 0);
Webb Scalesd604f532015-04-23 09:35:22 -05003181
3182 mutex_unlock(&h->reset_mutex);
3183 return rc;
3184}
3185
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003186static void hpsa_get_raid_level(struct ctlr_info *h,
3187 unsigned char *scsi3addr, unsigned char *raid_level)
3188{
3189 int rc;
3190 unsigned char *buf;
3191
3192 *raid_level = RAID_UNKNOWN;
3193 buf = kzalloc(64, GFP_KERNEL);
3194 if (!buf)
3195 return;
Scott Teel83832782016-09-09 16:30:29 -05003196
3197 if (!hpsa_vpd_page_supported(h, scsi3addr,
3198 HPSA_VPD_LV_DEVICE_GEOMETRY))
3199 goto exit;
3200
3201 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE |
3202 HPSA_VPD_LV_DEVICE_GEOMETRY, buf, 64);
3203
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003204 if (rc == 0)
3205 *raid_level = buf[8];
3206 if (*raid_level > RAID_UNKNOWN)
3207 *raid_level = RAID_UNKNOWN;
Scott Teel83832782016-09-09 16:30:29 -05003208exit:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003209 kfree(buf);
3210 return;
3211}
3212
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003213#define HPSA_MAP_DEBUG
3214#ifdef HPSA_MAP_DEBUG
3215static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
3216 struct raid_map_data *map_buff)
3217{
3218 struct raid_map_disk_data *dd = &map_buff->data[0];
3219 int map, row, col;
3220 u16 map_cnt, row_cnt, disks_per_row;
3221
3222 if (rc != 0)
3223 return;
3224
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06003225 /* Show details only if debugging has been activated. */
3226 if (h->raid_offload_debug < 2)
3227 return;
3228
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003229 dev_info(&h->pdev->dev, "structure_size = %u\n",
3230 le32_to_cpu(map_buff->structure_size));
3231 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
3232 le32_to_cpu(map_buff->volume_blk_size));
3233 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
3234 le64_to_cpu(map_buff->volume_blk_cnt));
3235 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
3236 map_buff->phys_blk_shift);
3237 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
3238 map_buff->parity_rotation_shift);
3239 dev_info(&h->pdev->dev, "strip_size = %u\n",
3240 le16_to_cpu(map_buff->strip_size));
3241 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
3242 le64_to_cpu(map_buff->disk_starting_blk));
3243 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
3244 le64_to_cpu(map_buff->disk_blk_cnt));
3245 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
3246 le16_to_cpu(map_buff->data_disks_per_row));
3247 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
3248 le16_to_cpu(map_buff->metadata_disks_per_row));
3249 dev_info(&h->pdev->dev, "row_cnt = %u\n",
3250 le16_to_cpu(map_buff->row_cnt));
3251 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
3252 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06003253 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06003254 le16_to_cpu(map_buff->flags));
Colin Ian Kingba82d91b2017-06-26 14:31:10 +01003255 dev_info(&h->pdev->dev, "encryption = %s\n",
Don Brace2b08b3e2015-01-23 16:41:09 -06003256 le16_to_cpu(map_buff->flags) &
3257 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06003258 dev_info(&h->pdev->dev, "dekindex = %u\n",
3259 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003260 map_cnt = le16_to_cpu(map_buff->layout_map_count);
3261 for (map = 0; map < map_cnt; map++) {
3262 dev_info(&h->pdev->dev, "Map%u:\n", map);
3263 row_cnt = le16_to_cpu(map_buff->row_cnt);
3264 for (row = 0; row < row_cnt; row++) {
3265 dev_info(&h->pdev->dev, " Row%u:\n", row);
3266 disks_per_row =
3267 le16_to_cpu(map_buff->data_disks_per_row);
3268 for (col = 0; col < disks_per_row; col++, dd++)
3269 dev_info(&h->pdev->dev,
3270 " D%02u: h=0x%04x xor=%u,%u\n",
3271 col, dd->ioaccel_handle,
3272 dd->xor_mult[0], dd->xor_mult[1]);
3273 disks_per_row =
3274 le16_to_cpu(map_buff->metadata_disks_per_row);
3275 for (col = 0; col < disks_per_row; col++, dd++)
3276 dev_info(&h->pdev->dev,
3277 " M%02u: h=0x%04x xor=%u,%u\n",
3278 col, dd->ioaccel_handle,
3279 dd->xor_mult[0], dd->xor_mult[1]);
3280 }
3281 }
3282}
3283#else
3284static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
3285 __attribute__((unused)) int rc,
3286 __attribute__((unused)) struct raid_map_data *map_buff)
3287{
3288}
3289#endif
3290
3291static int hpsa_get_raid_map(struct ctlr_info *h,
3292 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3293{
3294 int rc = 0;
3295 struct CommandList *c;
3296 struct ErrorInfo *ei;
3297
Stephen Cameron45fcb862015-01-23 16:43:04 -06003298 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003299
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003300 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
3301 sizeof(this_device->raid_map), 0,
3302 scsi3addr, TYPE_CMD)) {
Robert Elliott2dd02d72015-04-23 09:33:43 -05003303 dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
3304 cmd_free(h, c);
3305 return -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003306 }
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02003307 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
3308 NO_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003309 if (rc)
3310 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003311 ei = c->err_info;
3312 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003313 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05003314 rc = -1;
3315 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003316 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06003317 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003318
3319 /* @todo in the future, dynamically allocate RAID map memory */
3320 if (le32_to_cpu(this_device->raid_map.structure_size) >
3321 sizeof(this_device->raid_map)) {
3322 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
3323 rc = -1;
3324 }
3325 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
3326 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05003327out:
3328 cmd_free(h, c);
3329 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003330}
3331
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003332static int hpsa_bmic_sense_subsystem_information(struct ctlr_info *h,
3333 unsigned char scsi3addr[], u16 bmic_device_index,
3334 struct bmic_sense_subsystem_info *buf, size_t bufsize)
3335{
3336 int rc = IO_OK;
3337 struct CommandList *c;
3338 struct ErrorInfo *ei;
3339
3340 c = cmd_alloc(h);
3341
3342 rc = fill_cmd(c, BMIC_SENSE_SUBSYSTEM_INFORMATION, h, buf, bufsize,
3343 0, RAID_CTLR_LUNID, TYPE_CMD);
3344 if (rc)
3345 goto out;
3346
3347 c->Request.CDB[2] = bmic_device_index & 0xff;
3348 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3349
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02003350 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
3351 NO_TIMEOUT);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003352 if (rc)
3353 goto out;
3354 ei = c->err_info;
3355 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3356 hpsa_scsi_interpret_error(h, c);
3357 rc = -1;
3358 }
3359out:
3360 cmd_free(h, c);
3361 return rc;
3362}
3363
Scott Teel66749d02015-11-04 15:51:57 -06003364static int hpsa_bmic_id_controller(struct ctlr_info *h,
3365 struct bmic_identify_controller *buf, size_t bufsize)
3366{
3367 int rc = IO_OK;
3368 struct CommandList *c;
3369 struct ErrorInfo *ei;
3370
3371 c = cmd_alloc(h);
3372
3373 rc = fill_cmd(c, BMIC_IDENTIFY_CONTROLLER, h, buf, bufsize,
3374 0, RAID_CTLR_LUNID, TYPE_CMD);
3375 if (rc)
3376 goto out;
3377
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02003378 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
3379 NO_TIMEOUT);
Scott Teel66749d02015-11-04 15:51:57 -06003380 if (rc)
3381 goto out;
3382 ei = c->err_info;
3383 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3384 hpsa_scsi_interpret_error(h, c);
3385 rc = -1;
3386 }
3387out:
3388 cmd_free(h, c);
3389 return rc;
3390}
3391
Don Brace03383732015-01-23 16:43:30 -06003392static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
3393 unsigned char scsi3addr[], u16 bmic_device_index,
3394 struct bmic_identify_physical_device *buf, size_t bufsize)
3395{
3396 int rc = IO_OK;
3397 struct CommandList *c;
3398 struct ErrorInfo *ei;
3399
3400 c = cmd_alloc(h);
3401 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
3402 0, RAID_CTLR_LUNID, TYPE_CMD);
3403 if (rc)
3404 goto out;
3405
3406 c->Request.CDB[2] = bmic_device_index & 0xff;
3407 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3408
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02003409 hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
Don Brace3026ff92017-10-20 16:51:38 -05003410 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06003411 ei = c->err_info;
3412 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3413 hpsa_scsi_interpret_error(h, c);
3414 rc = -1;
3415 }
3416out:
3417 cmd_free(h, c);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003418
Don Brace03383732015-01-23 16:43:30 -06003419 return rc;
3420}
3421
Don Bracecca8f132015-12-22 10:36:48 -06003422/*
3423 * get enclosure information
3424 * struct ReportExtendedLUNdata *rlep - Used for BMIC drive number
3425 * struct hpsa_scsi_dev_t *encl_dev - device entry for enclosure
3426 * Uses id_physical_device to determine the box_index.
3427 */
3428static void hpsa_get_enclosure_info(struct ctlr_info *h,
3429 unsigned char *scsi3addr,
3430 struct ReportExtendedLUNdata *rlep, int rle_index,
3431 struct hpsa_scsi_dev_t *encl_dev)
3432{
3433 int rc = -1;
3434 struct CommandList *c = NULL;
3435 struct ErrorInfo *ei = NULL;
3436 struct bmic_sense_storage_box_params *bssbp = NULL;
3437 struct bmic_identify_physical_device *id_phys = NULL;
3438 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
3439 u16 bmic_device_index = 0;
3440
Don Brace01d0e782018-07-03 17:34:48 -05003441 encl_dev->eli =
Don Brace0a7c3bb2017-10-20 16:52:10 -05003442 hpsa_get_enclosure_logical_identifier(h, scsi3addr);
3443
Don Brace01d0e782018-07-03 17:34:48 -05003444 bmic_device_index = GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]);
3445
Don Brace5ac517b2017-05-04 17:50:50 -05003446 if (encl_dev->target == -1 || encl_dev->lun == -1) {
3447 rc = IO_OK;
3448 goto out;
3449 }
3450
Don Brace17a9e542016-02-23 15:16:09 -06003451 if (bmic_device_index == 0xFF00 || MASKED_DEVICE(&rle->lunid[0])) {
3452 rc = IO_OK;
Don Bracecca8f132015-12-22 10:36:48 -06003453 goto out;
Don Brace17a9e542016-02-23 15:16:09 -06003454 }
Don Bracecca8f132015-12-22 10:36:48 -06003455
3456 bssbp = kzalloc(sizeof(*bssbp), GFP_KERNEL);
3457 if (!bssbp)
3458 goto out;
3459
3460 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
3461 if (!id_phys)
3462 goto out;
3463
3464 rc = hpsa_bmic_id_physical_device(h, scsi3addr, bmic_device_index,
3465 id_phys, sizeof(*id_phys));
3466 if (rc) {
3467 dev_warn(&h->pdev->dev, "%s: id_phys failed %d bdi[0x%x]\n",
3468 __func__, encl_dev->external, bmic_device_index);
3469 goto out;
3470 }
3471
3472 c = cmd_alloc(h);
3473
3474 rc = fill_cmd(c, BMIC_SENSE_STORAGE_BOX_PARAMS, h, bssbp,
3475 sizeof(*bssbp), 0, RAID_CTLR_LUNID, TYPE_CMD);
3476
3477 if (rc)
3478 goto out;
3479
3480 if (id_phys->phys_connector[1] == 'E')
3481 c->Request.CDB[5] = id_phys->box_index;
3482 else
3483 c->Request.CDB[5] = 0;
3484
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02003485 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
Don Brace3026ff92017-10-20 16:51:38 -05003486 NO_TIMEOUT);
Don Bracecca8f132015-12-22 10:36:48 -06003487 if (rc)
3488 goto out;
3489
3490 ei = c->err_info;
3491 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3492 rc = -1;
3493 goto out;
3494 }
3495
3496 encl_dev->box[id_phys->active_path_number] = bssbp->phys_box_on_port;
3497 memcpy(&encl_dev->phys_connector[id_phys->active_path_number],
3498 bssbp->phys_connector, sizeof(bssbp->phys_connector));
3499
3500 rc = IO_OK;
3501out:
3502 kfree(bssbp);
3503 kfree(id_phys);
3504
3505 if (c)
3506 cmd_free(h, c);
3507
3508 if (rc != IO_OK)
3509 hpsa_show_dev_msg(KERN_INFO, h, encl_dev,
Julia Lawallb4e9ce12017-12-27 15:51:43 +01003510 "Error, could not get enclosure information");
Don Bracecca8f132015-12-22 10:36:48 -06003511}
3512
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003513static u64 hpsa_get_sas_address_from_report_physical(struct ctlr_info *h,
3514 unsigned char *scsi3addr)
3515{
3516 struct ReportExtendedLUNdata *physdev;
3517 u32 nphysicals;
3518 u64 sa = 0;
3519 int i;
3520
3521 physdev = kzalloc(sizeof(*physdev), GFP_KERNEL);
3522 if (!physdev)
3523 return 0;
3524
3525 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
3526 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3527 kfree(physdev);
3528 return 0;
3529 }
3530 nphysicals = get_unaligned_be32(physdev->LUNListLength) / 24;
3531
3532 for (i = 0; i < nphysicals; i++)
3533 if (!memcmp(&physdev->LUN[i].lunid[0], scsi3addr, 8)) {
3534 sa = get_unaligned_be64(&physdev->LUN[i].wwid[0]);
3535 break;
3536 }
3537
3538 kfree(physdev);
3539
3540 return sa;
3541}
3542
3543static void hpsa_get_sas_address(struct ctlr_info *h, unsigned char *scsi3addr,
3544 struct hpsa_scsi_dev_t *dev)
3545{
3546 int rc;
3547 u64 sa = 0;
3548
3549 if (is_hba_lunid(scsi3addr)) {
3550 struct bmic_sense_subsystem_info *ssi;
3551
3552 ssi = kzalloc(sizeof(*ssi), GFP_KERNEL);
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05303553 if (!ssi)
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003554 return;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003555
3556 rc = hpsa_bmic_sense_subsystem_information(h,
3557 scsi3addr, 0, ssi, sizeof(*ssi));
3558 if (rc == 0) {
3559 sa = get_unaligned_be64(ssi->primary_world_wide_id);
3560 h->sas_address = sa;
3561 }
3562
3563 kfree(ssi);
3564 } else
3565 sa = hpsa_get_sas_address_from_report_physical(h, scsi3addr);
3566
3567 dev->sas_address = sa;
3568}
3569
Bader Ali Saleh4e188182017-10-20 16:51:32 -05003570static void hpsa_ext_ctrl_present(struct ctlr_info *h,
3571 struct ReportExtendedLUNdata *physdev)
3572{
3573 u32 nphysicals;
3574 int i;
3575
3576 if (h->discovery_polling)
3577 return;
3578
3579 nphysicals = (get_unaligned_be32(physdev->LUNListLength) / 24) + 1;
3580
3581 for (i = 0; i < nphysicals; i++) {
3582 if (physdev->LUN[i].device_type ==
3583 BMIC_DEVICE_TYPE_CONTROLLER
3584 && !is_hba_lunid(physdev->LUN[i].lunid)) {
3585 dev_info(&h->pdev->dev,
3586 "External controller present, activate discovery polling and disable rld caching\n");
3587 hpsa_disable_rld_caching(h);
3588 h->discovery_polling = 1;
3589 break;
3590 }
3591 }
3592}
3593
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003594/* Get a device id from inquiry page 0x83 */
Scott Teel83832782016-09-09 16:30:29 -05003595static bool hpsa_vpd_page_supported(struct ctlr_info *h,
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003596 unsigned char scsi3addr[], u8 page)
3597{
3598 int rc;
3599 int i;
3600 int pages;
3601 unsigned char *buf, bufsize;
3602
3603 buf = kzalloc(256, GFP_KERNEL);
3604 if (!buf)
Scott Teel83832782016-09-09 16:30:29 -05003605 return false;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003606
3607 /* Get the size of the page list first */
3608 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3609 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3610 buf, HPSA_VPD_HEADER_SZ);
3611 if (rc != 0)
3612 goto exit_unsupported;
3613 pages = buf[3];
3614 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
3615 bufsize = pages + HPSA_VPD_HEADER_SZ;
3616 else
3617 bufsize = 255;
3618
3619 /* Get the whole VPD page list */
3620 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3621 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3622 buf, bufsize);
3623 if (rc != 0)
3624 goto exit_unsupported;
3625
3626 pages = buf[3];
3627 for (i = 1; i <= pages; i++)
3628 if (buf[3 + i] == page)
3629 goto exit_supported;
3630exit_unsupported:
3631 kfree(buf);
Scott Teel83832782016-09-09 16:30:29 -05003632 return false;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003633exit_supported:
3634 kfree(buf);
Scott Teel83832782016-09-09 16:30:29 -05003635 return true;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003636}
3637
Don Braceb2582a62017-10-20 16:51:45 -05003638/*
3639 * Called during a scan operation.
3640 * Sets ioaccel status on the new device list, not the existing device list
3641 *
3642 * The device list used during I/O will be updated later in
3643 * adjust_hpsa_scsi_table.
3644 */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003645static void hpsa_get_ioaccel_status(struct ctlr_info *h,
3646 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3647{
3648 int rc;
3649 unsigned char *buf;
3650 u8 ioaccel_status;
3651
3652 this_device->offload_config = 0;
3653 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003654 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003655
3656 buf = kzalloc(64, GFP_KERNEL);
3657 if (!buf)
3658 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003659 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
3660 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003661 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003662 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003663 if (rc != 0)
3664 goto out;
3665
3666#define IOACCEL_STATUS_BYTE 4
3667#define OFFLOAD_CONFIGURED_BIT 0x01
3668#define OFFLOAD_ENABLED_BIT 0x02
3669 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
3670 this_device->offload_config =
3671 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
3672 if (this_device->offload_config) {
Don Braceb2582a62017-10-20 16:51:45 -05003673 this_device->offload_to_be_enabled =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003674 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
3675 if (hpsa_get_raid_map(h, scsi3addr, this_device))
Don Braceb2582a62017-10-20 16:51:45 -05003676 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003677 }
Don Braceb2582a62017-10-20 16:51:45 -05003678
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003679out:
3680 kfree(buf);
3681 return;
3682}
3683
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003684/* Get the device id from inquiry page 0x83 */
3685static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
Don Brace75d23d82015-11-04 15:51:39 -06003686 unsigned char *device_id, int index, int buflen)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003687{
3688 int rc;
3689 unsigned char *buf;
3690
Scott Teel83832782016-09-09 16:30:29 -05003691 /* Does controller have VPD for device id? */
3692 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_DEVICE_ID))
3693 return 1; /* not supported */
3694
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003695 buf = kzalloc(64, GFP_KERNEL);
3696 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05003697 return -ENOMEM;
Scott Teel83832782016-09-09 16:30:29 -05003698
3699 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE |
3700 HPSA_VPD_LV_DEVICE_ID, buf, 64);
3701 if (rc == 0) {
3702 if (buflen > 16)
3703 buflen = 16;
3704 memcpy(device_id, &buf[8], buflen);
3705 }
Don Brace75d23d82015-11-04 15:51:39 -06003706
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003707 kfree(buf);
Don Brace75d23d82015-11-04 15:51:39 -06003708
Scott Teel83832782016-09-09 16:30:29 -05003709 return rc; /*0 - got id, otherwise, didn't */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003710}
3711
3712static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06003713 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003714 int extended_response)
3715{
3716 int rc = IO_OK;
3717 struct CommandList *c;
3718 unsigned char scsi3addr[8];
3719 struct ErrorInfo *ei;
3720
Stephen Cameron45fcb862015-01-23 16:43:04 -06003721 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003722
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06003723 /* address the controller */
3724 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003725 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
3726 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
Hannes Reinecke45f769b2017-08-15 08:58:07 +02003727 rc = -EAGAIN;
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003728 goto out;
3729 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003730 if (extended_response)
3731 c->Request.CDB[1] = extended_response;
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02003732 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
3733 NO_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003734 if (rc)
3735 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003736 ei = c->err_info;
3737 if (ei->CommandStatus != 0 &&
3738 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003739 hpsa_scsi_interpret_error(h, c);
Hannes Reinecke45f769b2017-08-15 08:58:07 +02003740 rc = -EIO;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003741 } else {
Don Brace03383732015-01-23 16:43:30 -06003742 struct ReportLUNdata *rld = buf;
3743
3744 if (rld->extended_response_flag != extended_response) {
Hannes Reinecke45f769b2017-08-15 08:58:07 +02003745 if (!h->legacy_board) {
3746 dev_err(&h->pdev->dev,
3747 "report luns requested format %u, got %u\n",
3748 extended_response,
3749 rld->extended_response_flag);
3750 rc = -EINVAL;
3751 } else
3752 rc = -EOPNOTSUPP;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003753 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003754 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003755out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06003756 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003757 return rc;
3758}
3759
3760static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003761 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003762{
Hannes Reinecke2a80d542016-12-02 11:36:13 +01003763 int rc;
3764 struct ReportLUNdata *lbuf;
3765
3766 rc = hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
3767 HPSA_REPORT_PHYS_EXTENDED);
Hannes Reinecke45f769b2017-08-15 08:58:07 +02003768 if (!rc || rc != -EOPNOTSUPP)
Hannes Reinecke2a80d542016-12-02 11:36:13 +01003769 return rc;
3770
3771 /* REPORT PHYS EXTENDED is not supported */
3772 lbuf = kzalloc(sizeof(*lbuf), GFP_KERNEL);
3773 if (!lbuf)
3774 return -ENOMEM;
3775
3776 rc = hpsa_scsi_do_report_luns(h, 0, lbuf, sizeof(*lbuf), 0);
3777 if (!rc) {
3778 int i;
3779 u32 nphys;
3780
3781 /* Copy ReportLUNdata header */
3782 memcpy(buf, lbuf, 8);
3783 nphys = be32_to_cpu(*((__be32 *)lbuf->LUNListLength)) / 8;
3784 for (i = 0; i < nphys; i++)
3785 memcpy(buf->LUN[i].lunid, lbuf->LUN[i], 8);
3786 }
3787 kfree(lbuf);
3788 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003789}
3790
3791static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
3792 struct ReportLUNdata *buf, int bufsize)
3793{
3794 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
3795}
3796
3797static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
3798 int bus, int target, int lun)
3799{
3800 device->bus = bus;
3801 device->target = target;
3802 device->lun = lun;
3803}
3804
Stephen M. Cameron98465902014-02-21 16:25:00 -06003805/* Use VPD inquiry to get details of volume status */
3806static int hpsa_get_volume_status(struct ctlr_info *h,
3807 unsigned char scsi3addr[])
3808{
3809 int rc;
3810 int status;
3811 int size;
3812 unsigned char *buf;
3813
3814 buf = kzalloc(64, GFP_KERNEL);
3815 if (!buf)
3816 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3817
3818 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003819 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06003820 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003821
3822 /* Get the size of the VPD return buffer */
3823 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3824 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003825 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003826 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003827 size = buf[3];
3828
3829 /* Now get the whole VPD buffer */
3830 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3831 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003832 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003833 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003834 status = buf[4]; /* status byte */
3835
3836 kfree(buf);
3837 return status;
3838exit_failed:
3839 kfree(buf);
3840 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3841}
3842
3843/* Determine offline status of a volume.
3844 * Return either:
3845 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003846 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003847 * # (integer code indicating one of several NOT READY states
3848 * describing why a volume is to be kept offline)
3849 */
Don Brace85b29002017-03-10 14:35:11 -06003850static unsigned char hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06003851 unsigned char scsi3addr[])
3852{
3853 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003854 unsigned char *sense;
3855 u8 sense_key, asc, ascq;
3856 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05003857 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003858 u16 cmd_status;
3859 u8 scsi_status;
3860#define ASC_LUN_NOT_READY 0x04
3861#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
3862#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
3863
3864 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003865
Stephen M. Cameron98465902014-02-21 16:25:00 -06003866 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Don Bracec448ecf2016-04-27 17:13:51 -05003867 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
Don Brace3026ff92017-10-20 16:51:38 -05003868 NO_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003869 if (rc) {
3870 cmd_free(h, c);
Don Brace85b29002017-03-10 14:35:11 -06003871 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
Webb Scales25163bd2015-04-23 09:32:00 -05003872 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06003873 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003874 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
3875 sense_len = sizeof(c->err_info->SenseInfo);
3876 else
3877 sense_len = c->err_info->SenseLen;
3878 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003879 cmd_status = c->err_info->CommandStatus;
3880 scsi_status = c->err_info->ScsiStatus;
3881 cmd_free(h, c);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003882
3883 /* Determine the reason for not ready state */
3884 ldstat = hpsa_get_volume_status(h, scsi3addr);
3885
3886 /* Keep volume offline in certain cases: */
3887 switch (ldstat) {
Don Brace85b29002017-03-10 14:35:11 -06003888 case HPSA_LV_FAILED:
Stephen M. Cameron98465902014-02-21 16:25:00 -06003889 case HPSA_LV_UNDERGOING_ERASE:
Scott Benesh5ca01202015-07-18 11:13:04 -05003890 case HPSA_LV_NOT_AVAILABLE:
Stephen M. Cameron98465902014-02-21 16:25:00 -06003891 case HPSA_LV_UNDERGOING_RPI:
3892 case HPSA_LV_PENDING_RPI:
3893 case HPSA_LV_ENCRYPTED_NO_KEY:
3894 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
3895 case HPSA_LV_UNDERGOING_ENCRYPTION:
3896 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
3897 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
3898 return ldstat;
3899 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
3900 /* If VPD status page isn't available,
3901 * use ASC/ASCQ to determine state
3902 */
3903 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
3904 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
3905 return ldstat;
3906 break;
3907 default:
3908 break;
3909 }
Don Brace85b29002017-03-10 14:35:11 -06003910 return HPSA_LV_OK;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003911}
3912
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003913static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003914 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3915 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003916{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003917
3918#define OBDR_SIG_OFFSET 43
3919#define OBDR_TAPE_SIG "$DR-10"
3920#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3921#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3922
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003923 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003924 unsigned char *obdr_sig;
Don Brace683fc442015-11-04 15:50:44 -06003925 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003926
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003927 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Don Brace683fc442015-11-04 15:50:44 -06003928 if (!inq_buff) {
3929 rc = -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003930 goto bail_out;
Don Brace683fc442015-11-04 15:50:44 -06003931 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003932
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003933 /* Do an inquiry to the device to see what it is. */
3934 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3935 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003936 dev_err(&h->pdev->dev,
Don Brace85b29002017-03-10 14:35:11 -06003937 "%s: inquiry failed, device will be skipped.\n",
3938 __func__);
3939 rc = HPSA_INQUIRY_FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003940 goto bail_out;
3941 }
3942
Don Brace4af61e42016-02-23 15:16:40 -06003943 scsi_sanitize_inquiry_string(&inq_buff[8], 8);
3944 scsi_sanitize_inquiry_string(&inq_buff[16], 16);
Don Brace75d23d82015-11-04 15:51:39 -06003945
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003946 this_device->devtype = (inq_buff[0] & 0x1f);
3947 memcpy(this_device->scsi3addr, scsi3addr, 8);
3948 memcpy(this_device->vendor, &inq_buff[8],
3949 sizeof(this_device->vendor));
3950 memcpy(this_device->model, &inq_buff[16],
3951 sizeof(this_device->model));
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01003952 this_device->rev = inq_buff[2];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003953 memset(this_device->device_id, 0,
3954 sizeof(this_device->device_id));
Scott Teel83832782016-09-09 16:30:29 -05003955 if (hpsa_get_device_id(h, scsi3addr, this_device->device_id, 8,
Don Bracea45bcc42019-03-12 13:11:39 -05003956 sizeof(this_device->device_id)) < 0) {
Scott Teel83832782016-09-09 16:30:29 -05003957 dev_err(&h->pdev->dev,
Don Bracea45bcc42019-03-12 13:11:39 -05003958 "hpsa%d: %s: can't get device id for [%d:%d:%d:%d]\t%s\t%.16s\n",
Scott Teel83832782016-09-09 16:30:29 -05003959 h->ctlr, __func__,
3960 h->scsi_host->host_no,
Don Bracea45bcc42019-03-12 13:11:39 -05003961 this_device->bus, this_device->target,
3962 this_device->lun,
Scott Teel83832782016-09-09 16:30:29 -05003963 scsi_device_type(this_device->devtype),
3964 this_device->model);
Don Bracea45bcc42019-03-12 13:11:39 -05003965 rc = HPSA_LV_FAILED;
3966 goto bail_out;
3967 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003968
Don Braceaf15ed32016-02-23 15:16:15 -06003969 if ((this_device->devtype == TYPE_DISK ||
3970 this_device->devtype == TYPE_ZBC) &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003971 is_logical_dev_addr_mode(scsi3addr)) {
Don Brace85b29002017-03-10 14:35:11 -06003972 unsigned char volume_offline;
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003973
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003974 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003975 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3976 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003977 volume_offline = hpsa_volume_offline(h, scsi3addr);
Hannes Reinecke4d179442017-08-15 08:58:05 +02003978 if (volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED &&
3979 h->legacy_board) {
3980 /*
3981 * Legacy boards might not support volume status
3982 */
3983 dev_info(&h->pdev->dev,
3984 "C0:T%d:L%d Volume status not available, assuming online.\n",
3985 this_device->target, this_device->lun);
3986 volume_offline = 0;
3987 }
Tomas Henzleb945882017-03-20 16:42:48 +01003988 this_device->volume_offline = volume_offline;
Don Brace85b29002017-03-10 14:35:11 -06003989 if (volume_offline == HPSA_LV_FAILED) {
3990 rc = HPSA_LV_FAILED;
3991 dev_err(&h->pdev->dev,
3992 "%s: LV failed, device will be skipped.\n",
3993 __func__);
3994 goto bail_out;
3995 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003996 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003997 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003998 this_device->offload_config = 0;
3999 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004000 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05004001 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06004002 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06004003 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004004 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004005
Don Brace50864352017-05-04 17:51:28 -05004006 if (this_device->external)
4007 this_device->queue_depth = EXTERNAL_QD;
4008
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004009 if (is_OBDR_device) {
4010 /* See if this is a One-Button-Disaster-Recovery device
4011 * by looking for "$DR-10" at offset 43 in inquiry data.
4012 */
4013 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
4014 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
4015 strncmp(obdr_sig, OBDR_TAPE_SIG,
4016 OBDR_SIG_LEN) == 0);
4017 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004018 kfree(inq_buff);
4019 return 0;
4020
4021bail_out:
4022 kfree(inq_buff);
Don Brace683fc442015-11-04 15:50:44 -06004023 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004024}
4025
Kevin Barnettc7955052015-11-04 15:51:45 -06004026/*
4027 * Helper function to assign bus, target, lun mapping of devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004028 * Logical drive target and lun are assigned at this time, but
4029 * physical device lun and target assignment are deferred (assigned
4030 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
Kevin Barnettc7955052015-11-04 15:51:45 -06004031*/
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004032static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004033 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004034{
Kevin Barnettc7955052015-11-04 15:51:45 -06004035 u32 lunid = get_unaligned_le32(lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004036
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004037 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
4038 /* physical device, target and lun filled in later */
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01004039 if (is_hba_lunid(lunaddrbytes)) {
4040 int bus = HPSA_HBA_BUS;
4041
4042 if (!device->rev)
4043 bus = HPSA_LEGACY_HBA_BUS;
Kevin Barnettc7955052015-11-04 15:51:45 -06004044 hpsa_set_bus_target_lun(device,
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01004045 bus, 0, lunid & 0x3fff);
4046 } else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004047 /* defer target, lun assignment for physical devices */
Kevin Barnettc7955052015-11-04 15:51:45 -06004048 hpsa_set_bus_target_lun(device,
4049 HPSA_PHYSICAL_DEVICE_BUS, -1, -1);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004050 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004051 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004052 /* It's a logical device */
Scott Teel66749d02015-11-04 15:51:57 -06004053 if (device->external) {
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004054 hpsa_set_bus_target_lun(device,
Kevin Barnettc7955052015-11-04 15:51:45 -06004055 HPSA_EXTERNAL_RAID_VOLUME_BUS, (lunid >> 16) & 0x3fff,
4056 lunid & 0x00ff);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004057 return;
4058 }
Kevin Barnettc7955052015-11-04 15:51:45 -06004059 hpsa_set_bus_target_lun(device, HPSA_RAID_VOLUME_BUS,
4060 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004061}
4062
Scott Teel66749d02015-11-04 15:51:57 -06004063static int figure_external_status(struct ctlr_info *h, int raid_ctlr_position,
4064 int i, int nphysicals, int nlocal_logicals)
4065{
4066 /* In report logicals, local logicals are listed first,
4067 * then any externals.
4068 */
4069 int logicals_start = nphysicals + (raid_ctlr_position == 0);
4070
4071 if (i == raid_ctlr_position)
4072 return 0;
4073
4074 if (i < logicals_start)
4075 return 0;
4076
4077 /* i is in logicals range, but still within local logicals */
4078 if ((i - nphysicals - (raid_ctlr_position == 0)) < nlocal_logicals)
4079 return 0;
4080
4081 return 1; /* it's an external lun */
4082}
4083
Scott Teel54b6e9e2014-02-18 13:56:45 -06004084/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004085 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
4086 * logdev. The number of luns in physdev and logdev are returned in
4087 * *nphysicals and *nlogicals, respectively.
4088 * Returns 0 on success, -1 otherwise.
4089 */
4090static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06004091 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004092 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004093{
Don Brace03383732015-01-23 16:43:30 -06004094 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004095 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
4096 return -1;
4097 }
Don Brace03383732015-01-23 16:43:30 -06004098 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004099 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06004100 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
4101 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004102 *nphysicals = HPSA_MAX_PHYS_LUN;
4103 }
Don Brace03383732015-01-23 16:43:30 -06004104 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004105 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
4106 return -1;
4107 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06004108 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004109 /* Reject Logicals in excess of our max capability. */
4110 if (*nlogicals > HPSA_MAX_LUN) {
4111 dev_warn(&h->pdev->dev,
4112 "maximum logical LUNs (%d) exceeded. "
4113 "%d LUNs ignored.\n", HPSA_MAX_LUN,
4114 *nlogicals - HPSA_MAX_LUN);
Colin Ian Kingb64ae4a2019-01-22 15:18:30 +00004115 *nlogicals = HPSA_MAX_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004116 }
4117 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
4118 dev_warn(&h->pdev->dev,
4119 "maximum logical + physical LUNs (%d) exceeded. "
4120 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
4121 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
4122 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
4123 }
4124 return 0;
4125}
4126
Don Brace42a91642014-11-14 17:26:27 -06004127static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
4128 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06004129 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004130 struct ReportLUNdata *logdev_list)
4131{
4132 /* Helper function, figure out where the LUN ID info is coming from
4133 * given index i, lists of physical and logical devices, where in
4134 * the list the raid controller is supposed to appear (first or last)
4135 */
4136
4137 int logicals_start = nphysicals + (raid_ctlr_position == 0);
4138 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
4139
4140 if (i == raid_ctlr_position)
4141 return RAID_CTLR_LUNID;
4142
4143 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05004144 return &physdev_list->LUN[i -
4145 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004146
4147 if (i < last_device)
4148 return &logdev_list->LUN[i - nphysicals -
4149 (raid_ctlr_position == 0)][0];
4150 BUG();
4151 return NULL;
4152}
4153
Don Brace03383732015-01-23 16:43:30 -06004154/* get physical drive ioaccel handle and queue depth */
4155static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
4156 struct hpsa_scsi_dev_t *dev,
Don Bracef2039b02015-11-04 15:51:08 -06004157 struct ReportExtendedLUNdata *rlep, int rle_index,
Don Brace03383732015-01-23 16:43:30 -06004158 struct bmic_identify_physical_device *id_phys)
4159{
4160 int rc;
Scott Teel4b6e5592016-09-09 16:30:36 -05004161 struct ext_report_lun_entry *rle;
4162
Scott Teel4b6e5592016-09-09 16:30:36 -05004163 rle = &rlep->LUN[rle_index];
Don Brace03383732015-01-23 16:43:30 -06004164
4165 dev->ioaccel_handle = rle->ioaccel_handle;
Don Bracef2039b02015-11-04 15:51:08 -06004166 if ((rle->device_flags & 0x08) && dev->ioaccel_handle)
Joe Handzika3144e02015-04-23 09:32:59 -05004167 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06004168 memset(id_phys, 0, sizeof(*id_phys));
Don Bracef2039b02015-11-04 15:51:08 -06004169 rc = hpsa_bmic_id_physical_device(h, &rle->lunid[0],
4170 GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]), id_phys,
Don Brace03383732015-01-23 16:43:30 -06004171 sizeof(*id_phys));
4172 if (!rc)
4173 /* Reserve space for FW operations */
4174#define DRIVE_CMDS_RESERVED_FOR_FW 2
4175#define DRIVE_QUEUE_DEPTH 7
4176 dev->queue_depth =
4177 le16_to_cpu(id_phys->current_queue_depth_limit) -
4178 DRIVE_CMDS_RESERVED_FOR_FW;
4179 else
4180 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
Don Brace03383732015-01-23 16:43:30 -06004181}
4182
Joe Handzik8270b862015-07-18 11:12:43 -05004183static void hpsa_get_path_info(struct hpsa_scsi_dev_t *this_device,
Don Bracef2039b02015-11-04 15:51:08 -06004184 struct ReportExtendedLUNdata *rlep, int rle_index,
Joe Handzik8270b862015-07-18 11:12:43 -05004185 struct bmic_identify_physical_device *id_phys)
4186{
Don Bracef2039b02015-11-04 15:51:08 -06004187 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
4188
4189 if ((rle->device_flags & 0x08) && this_device->ioaccel_handle)
Joe Handzik8270b862015-07-18 11:12:43 -05004190 this_device->hba_ioaccel_enabled = 1;
4191
4192 memcpy(&this_device->active_path_index,
4193 &id_phys->active_path_number,
4194 sizeof(this_device->active_path_index));
4195 memcpy(&this_device->path_map,
4196 &id_phys->redundant_path_present_map,
4197 sizeof(this_device->path_map));
4198 memcpy(&this_device->box,
4199 &id_phys->alternate_paths_phys_box_on_port,
4200 sizeof(this_device->box));
4201 memcpy(&this_device->phys_connector,
4202 &id_phys->alternate_paths_phys_connector,
4203 sizeof(this_device->phys_connector));
4204 memcpy(&this_device->bay,
4205 &id_phys->phys_bay_in_box,
4206 sizeof(this_device->bay));
4207}
4208
Scott Teel66749d02015-11-04 15:51:57 -06004209/* get number of local logical disks. */
4210static int hpsa_set_local_logical_count(struct ctlr_info *h,
4211 struct bmic_identify_controller *id_ctlr,
4212 u32 *nlocals)
4213{
4214 int rc;
4215
4216 if (!id_ctlr) {
4217 dev_warn(&h->pdev->dev, "%s: id_ctlr buffer is NULL.\n",
4218 __func__);
4219 return -ENOMEM;
4220 }
4221 memset(id_ctlr, 0, sizeof(*id_ctlr));
4222 rc = hpsa_bmic_id_controller(h, id_ctlr, sizeof(*id_ctlr));
4223 if (!rc)
Christos Gkekasc99dfd22017-10-16 20:28:02 +01004224 if (id_ctlr->configured_logical_drive_count < 255)
Scott Teel66749d02015-11-04 15:51:57 -06004225 *nlocals = id_ctlr->configured_logical_drive_count;
4226 else
4227 *nlocals = le16_to_cpu(
4228 id_ctlr->extended_logical_unit_count);
4229 else
4230 *nlocals = -1;
4231 return rc;
4232}
4233
Don Brace64ce60c2016-07-01 13:37:31 -05004234static bool hpsa_is_disk_spare(struct ctlr_info *h, u8 *lunaddrbytes)
4235{
4236 struct bmic_identify_physical_device *id_phys;
4237 bool is_spare = false;
4238 int rc;
4239
4240 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
4241 if (!id_phys)
4242 return false;
4243
4244 rc = hpsa_bmic_id_physical_device(h,
4245 lunaddrbytes,
4246 GET_BMIC_DRIVE_NUMBER(lunaddrbytes),
4247 id_phys, sizeof(*id_phys));
4248 if (rc == 0)
4249 is_spare = (id_phys->more_flags >> 6) & 0x01;
4250
4251 kfree(id_phys);
4252 return is_spare;
4253}
4254
4255#define RPL_DEV_FLAG_NON_DISK 0x1
4256#define RPL_DEV_FLAG_UNCONFIG_DISK_REPORTING_SUPPORTED 0x2
4257#define RPL_DEV_FLAG_UNCONFIG_DISK 0x4
4258
4259#define BMIC_DEVICE_TYPE_ENCLOSURE 6
4260
4261static bool hpsa_skip_device(struct ctlr_info *h, u8 *lunaddrbytes,
4262 struct ext_report_lun_entry *rle)
4263{
4264 u8 device_flags;
4265 u8 device_type;
4266
4267 if (!MASKED_DEVICE(lunaddrbytes))
4268 return false;
4269
4270 device_flags = rle->device_flags;
4271 device_type = rle->device_type;
4272
4273 if (device_flags & RPL_DEV_FLAG_NON_DISK) {
4274 if (device_type == BMIC_DEVICE_TYPE_ENCLOSURE)
4275 return false;
4276 return true;
4277 }
4278
4279 if (!(device_flags & RPL_DEV_FLAG_UNCONFIG_DISK_REPORTING_SUPPORTED))
4280 return false;
4281
4282 if (device_flags & RPL_DEV_FLAG_UNCONFIG_DISK)
4283 return false;
4284
4285 /*
4286 * Spares may be spun down, we do not want to
4287 * do an Inquiry to a RAID set spare drive as
4288 * that would have them spun up, that is a
4289 * performance hit because I/O to the RAID device
4290 * stops while the spin up occurs which can take
4291 * over 50 seconds.
4292 */
4293 if (hpsa_is_disk_spare(h, lunaddrbytes))
4294 return true;
4295
4296 return false;
4297}
Scott Teel66749d02015-11-04 15:51:57 -06004298
Don Brace8aa60682015-11-04 15:50:01 -06004299static void hpsa_update_scsi_devices(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004300{
4301 /* the idea here is we could get notified
4302 * that some devices have changed, so we do a report
4303 * physical luns and report logical luns cmd, and adjust
4304 * our list of devices accordingly.
4305 *
4306 * The scsi3addr's of devices won't change so long as the
4307 * adapter is not reset. That means we can rescan and
4308 * tell which devices we already know about, vs. new
4309 * devices, vs. disappearing devices.
4310 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06004311 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004312 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06004313 struct bmic_identify_physical_device *id_phys = NULL;
Scott Teel66749d02015-11-04 15:51:57 -06004314 struct bmic_identify_controller *id_ctlr = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004315 u32 nphysicals = 0;
4316 u32 nlogicals = 0;
Scott Teel66749d02015-11-04 15:51:57 -06004317 u32 nlocal_logicals = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004318 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004319 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
4320 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06004321 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004322 int raid_ctlr_position;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004323 bool physical_device;
Scott Teelaca4a522012-01-19 14:01:19 -06004324 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004325
Kees Cook6396bb22018-06-12 14:03:40 -07004326 currentsd = kcalloc(HPSA_MAX_DEVICES, sizeof(*currentsd), GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06004327 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
4328 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004329 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06004330 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Scott Teel66749d02015-11-04 15:51:57 -06004331 id_ctlr = kzalloc(sizeof(*id_ctlr), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004332
Don Brace03383732015-01-23 16:43:30 -06004333 if (!currentsd || !physdev_list || !logdev_list ||
Scott Teel66749d02015-11-04 15:51:57 -06004334 !tmpdevice || !id_phys || !id_ctlr) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004335 dev_err(&h->pdev->dev, "out of memory\n");
4336 goto out;
4337 }
4338 memset(lunzerobits, 0, sizeof(lunzerobits));
4339
Don Brace853633e2015-11-04 15:50:37 -06004340 h->drv_req_rescan = 0; /* cancel scheduled rescan - we're doing it. */
4341
Don Brace03383732015-01-23 16:43:30 -06004342 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
Don Brace853633e2015-11-04 15:50:37 -06004343 logdev_list, &nlogicals)) {
4344 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004345 goto out;
Don Brace853633e2015-11-04 15:50:37 -06004346 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004347
Scott Teel66749d02015-11-04 15:51:57 -06004348 /* Set number of local logicals (non PTRAID) */
4349 if (hpsa_set_local_logical_count(h, id_ctlr, &nlocal_logicals)) {
4350 dev_warn(&h->pdev->dev,
4351 "%s: Can't determine number of local logical devices.\n",
4352 __func__);
4353 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004354
Scott Teelaca4a522012-01-19 14:01:19 -06004355 /* We might see up to the maximum number of logical and physical disks
4356 * plus external target devices, and a device for the local RAID
4357 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004358 */
Scott Teelaca4a522012-01-19 14:01:19 -06004359 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004360
Bader Ali Saleh4e188182017-10-20 16:51:32 -05004361 hpsa_ext_ctrl_present(h, physdev_list);
4362
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004363 /* Allocate the per device structures */
4364 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05004365 if (i >= HPSA_MAX_DEVICES) {
4366 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
4367 " %d devices ignored.\n", HPSA_MAX_DEVICES,
4368 ndevs_to_allocate - HPSA_MAX_DEVICES);
4369 break;
4370 }
4371
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004372 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
4373 if (!currentsd[i]) {
Don Brace853633e2015-11-04 15:50:37 -06004374 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004375 goto out;
4376 }
4377 ndev_allocated++;
4378 }
4379
Stephen M. Cameron86452912014-05-29 10:53:49 -05004380 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004381 raid_ctlr_position = 0;
4382 else
4383 raid_ctlr_position = nphysicals + nlogicals;
4384
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004385 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06004386 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004387 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004388 u8 *lunaddrbytes, is_OBDR = 0;
Don Brace683fc442015-11-04 15:50:44 -06004389 int rc = 0;
Don Bracef2039b02015-11-04 15:51:08 -06004390 int phys_dev_index = i - (raid_ctlr_position == 0);
Don Brace64ce60c2016-07-01 13:37:31 -05004391 bool skip_device = false;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004392
Scott Teel421bf80c2017-10-20 16:51:20 -05004393 memset(tmpdevice, 0, sizeof(*tmpdevice));
4394
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004395 physical_device = i < nphysicals + (raid_ctlr_position == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004396
4397 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004398 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
4399 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004400
Don Brace86cf7132016-09-09 16:30:17 -05004401 /* Determine if this is a lun from an external target array */
4402 tmpdevice->external =
4403 figure_external_status(h, raid_ctlr_position, i,
4404 nphysicals, nlocal_logicals);
4405
Don Brace64ce60c2016-07-01 13:37:31 -05004406 /*
4407 * Skip over some devices such as a spare.
4408 */
4409 if (!tmpdevice->external && physical_device) {
4410 skip_device = hpsa_skip_device(h, lunaddrbytes,
4411 &physdev_list->LUN[phys_dev_index]);
4412 if (skip_device)
4413 continue;
4414 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004415
Don Braceb2582a62017-10-20 16:51:45 -05004416 /* Get device type, vendor, model, device id, raid_map */
Don Brace683fc442015-11-04 15:50:44 -06004417 rc = hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
4418 &is_OBDR);
4419 if (rc == -ENOMEM) {
4420 dev_warn(&h->pdev->dev,
4421 "Out of memory, rescan deferred.\n");
Don Brace853633e2015-11-04 15:50:37 -06004422 h->drv_req_rescan = 1;
Don Brace683fc442015-11-04 15:50:44 -06004423 goto out;
Don Brace853633e2015-11-04 15:50:37 -06004424 }
Don Brace683fc442015-11-04 15:50:44 -06004425 if (rc) {
Don Brace85b29002017-03-10 14:35:11 -06004426 h->drv_req_rescan = 1;
Don Brace683fc442015-11-04 15:50:44 -06004427 continue;
4428 }
4429
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004430 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004431 this_device = currentsd[ncurrent];
4432
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004433 *this_device = *tmpdevice;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004434 this_device->physical_device = physical_device;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004435
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004436 /*
4437 * Expose all devices except for physical devices that
4438 * are masked.
4439 */
4440 if (MASKED_DEVICE(lunaddrbytes) && this_device->physical_device)
Kevin Barnett2a168202015-11-04 15:51:21 -06004441 this_device->expose_device = 0;
4442 else
4443 this_device->expose_device = 1;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004444
Kevin Barnettd04e62b2015-11-04 15:52:34 -06004445
4446 /*
4447 * Get the SAS address for physical devices that are exposed.
4448 */
4449 if (this_device->physical_device && this_device->expose_device)
4450 hpsa_get_sas_address(h, lunaddrbytes, this_device);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004451
4452 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004453 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004454 /* We don't *really* support actual CD-ROM devices,
4455 * just "One Button Disaster Recovery" tape drive
4456 * which temporarily pretends to be a CD-ROM drive.
4457 * So we check that the device is really an OBDR tape
4458 * device by checking for "$DR-10" in bytes 43-48 of
4459 * the inquiry data.
4460 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004461 if (is_OBDR)
4462 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004463 break;
4464 case TYPE_DISK:
Don Braceaf15ed32016-02-23 15:16:15 -06004465 case TYPE_ZBC:
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004466 if (this_device->physical_device) {
Kevin Barnettb9092b72015-07-18 11:12:59 -05004467 /* The disk is in HBA mode. */
4468 /* Never use RAID mapper in HBA mode. */
Stephen M. Cameron316b2212014-02-21 16:25:15 -06004469 this_device->offload_enabled = 0;
Kevin Barnettb9092b72015-07-18 11:12:59 -05004470 hpsa_get_ioaccel_drive_info(h, this_device,
Don Bracef2039b02015-11-04 15:51:08 -06004471 physdev_list, phys_dev_index, id_phys);
4472 hpsa_get_path_info(this_device,
4473 physdev_list, phys_dev_index, id_phys);
Kevin Barnettb9092b72015-07-18 11:12:59 -05004474 }
Joe Handzikecf418d12015-04-23 09:33:04 -05004475 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004476 break;
4477 case TYPE_TAPE:
4478 case TYPE_MEDIUM_CHANGER:
Don Bracecca8f132015-12-22 10:36:48 -06004479 ncurrent++;
4480 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004481 case TYPE_ENCLOSURE:
Don Brace17a9e542016-02-23 15:16:09 -06004482 if (!this_device->external)
4483 hpsa_get_enclosure_info(h, lunaddrbytes,
Don Bracecca8f132015-12-22 10:36:48 -06004484 physdev_list, phys_dev_index,
4485 this_device);
Kevin Barnettb9092b72015-07-18 11:12:59 -05004486 ncurrent++;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004487 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004488 case TYPE_RAID:
4489 /* Only present the Smartarray HBA as a RAID controller.
4490 * If it's a RAID controller other than the HBA itself
4491 * (an external RAID controller, MSA500 or similar)
4492 * don't present it.
4493 */
4494 if (!is_hba_lunid(lunaddrbytes))
4495 break;
4496 ncurrent++;
4497 break;
4498 default:
4499 break;
4500 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05004501 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004502 break;
4503 }
Kevin Barnettd04e62b2015-11-04 15:52:34 -06004504
4505 if (h->sas_host == NULL) {
4506 int rc = 0;
4507
4508 rc = hpsa_add_sas_host(h);
4509 if (rc) {
4510 dev_warn(&h->pdev->dev,
4511 "Could not add sas host %d\n", rc);
4512 goto out;
4513 }
4514 }
4515
Don Brace8aa60682015-11-04 15:50:01 -06004516 adjust_hpsa_scsi_table(h, currentsd, ncurrent);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004517out:
4518 kfree(tmpdevice);
4519 for (i = 0; i < ndev_allocated; i++)
4520 kfree(currentsd[i]);
4521 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004522 kfree(physdev_list);
4523 kfree(logdev_list);
Scott Teel66749d02015-11-04 15:51:57 -06004524 kfree(id_ctlr);
Don Brace03383732015-01-23 16:43:30 -06004525 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004526}
4527
Webb Scalesec5cbf02015-01-23 16:44:45 -06004528static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
4529 struct scatterlist *sg)
4530{
4531 u64 addr64 = (u64) sg_dma_address(sg);
4532 unsigned int len = sg_dma_len(sg);
4533
4534 desc->Addr = cpu_to_le64(addr64);
4535 desc->Len = cpu_to_le32(len);
4536 desc->Ext = 0;
4537}
4538
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004539/*
4540 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004541 * dma mapping and fills in the scatter gather entries of the
4542 * hpsa command, cp.
4543 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004544static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004545 struct CommandList *cp,
4546 struct scsi_cmnd *cmd)
4547{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004548 struct scatterlist *sg;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004549 int use_sg, i, sg_limit, chained, last_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004550 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004551
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004552 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004553
4554 use_sg = scsi_dma_map(cmd);
4555 if (use_sg < 0)
4556 return use_sg;
4557
4558 if (!use_sg)
4559 goto sglist_finished;
4560
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004561 /*
4562 * If the number of entries is greater than the max for a single list,
4563 * then we have a chained list; we will set up all but one entry in the
4564 * first list (the last entry is saved for link information);
4565 * otherwise, we don't have a chained list and we'll set up at each of
4566 * the entries in the one list.
4567 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004568 curr_sg = cp->SG;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004569 chained = use_sg > h->max_cmd_sg_entries;
4570 sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg;
4571 last_sg = scsi_sg_count(cmd) - 1;
4572 scsi_for_each_sg(cmd, sg, sg_limit, i) {
Webb Scalesec5cbf02015-01-23 16:44:45 -06004573 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004574 curr_sg++;
4575 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06004576
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004577 if (chained) {
4578 /*
4579 * Continue with the chained list. Set curr_sg to the chained
4580 * list. Modify the limit to the total count less the entries
4581 * we've already set up. Resume the scan at the list entry
4582 * where the previous loop left off.
4583 */
4584 curr_sg = h->cmd_sg_list[cp->cmdindex];
4585 sg_limit = use_sg - sg_limit;
4586 for_each_sg(sg, sg, sg_limit, i) {
4587 hpsa_set_sg_descriptor(curr_sg, sg);
4588 curr_sg++;
4589 }
4590 }
4591
Webb Scalesec5cbf02015-01-23 16:44:45 -06004592 /* Back the pointer up to the last entry and mark it as "last". */
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004593 (curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004594
4595 if (use_sg + chained > h->maxSG)
4596 h->maxSG = use_sg + chained;
4597
4598 if (chained) {
4599 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004600 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06004601 if (hpsa_map_sg_chain_block(h, cp)) {
4602 scsi_dma_unmap(cmd);
4603 return -1;
4604 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004605 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004606 }
4607
4608sglist_finished:
4609
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004610 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004611 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004612 return 0;
4613}
4614
Don Braceb63c64a2017-05-04 17:51:42 -05004615static inline void warn_zero_length_transfer(struct ctlr_info *h,
4616 u8 *cdb, int cdb_len,
4617 const char *func)
4618{
Andy Shevchenkof4d0ad12017-12-19 19:09:59 +02004619 dev_warn(&h->pdev->dev,
4620 "%s: Blocking zero-length request: CDB:%*phN\n",
4621 func, cdb_len, cdb);
Don Braceb63c64a2017-05-04 17:51:42 -05004622}
4623
4624#define IO_ACCEL_INELIGIBLE 1
4625/* zero-length transfers trigger hardware errors. */
4626static bool is_zero_length_transfer(u8 *cdb)
4627{
4628 u32 block_cnt;
4629
4630 /* Block zero-length transfer sizes on certain commands. */
4631 switch (cdb[0]) {
4632 case READ_10:
4633 case WRITE_10:
4634 case VERIFY: /* 0x2F */
4635 case WRITE_VERIFY: /* 0x2E */
4636 block_cnt = get_unaligned_be16(&cdb[7]);
4637 break;
4638 case READ_12:
4639 case WRITE_12:
4640 case VERIFY_12: /* 0xAF */
4641 case WRITE_VERIFY_12: /* 0xAE */
4642 block_cnt = get_unaligned_be32(&cdb[6]);
4643 break;
4644 case READ_16:
4645 case WRITE_16:
4646 case VERIFY_16: /* 0x8F */
4647 block_cnt = get_unaligned_be32(&cdb[10]);
4648 break;
4649 default:
4650 return false;
4651 }
4652
4653 return block_cnt == 0;
4654}
4655
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004656static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
4657{
4658 int is_write = 0;
4659 u32 block;
4660 u32 block_cnt;
4661
4662 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
4663 switch (cdb[0]) {
4664 case WRITE_6:
4665 case WRITE_12:
4666 is_write = 1;
Gustavo A. R. Silva5dfdb082018-11-27 22:29:07 -06004667 /* fall through */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004668 case READ_6:
4669 case READ_12:
4670 if (*cdb_len == 6) {
Mahesh Rajashekharaabbada72016-09-16 14:54:23 -05004671 block = (((cdb[1] & 0x1F) << 16) |
4672 (cdb[2] << 8) |
4673 cdb[3]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004674 block_cnt = cdb[4];
Don Bracec8a6c9a2015-11-04 15:50:50 -06004675 if (block_cnt == 0)
4676 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004677 } else {
4678 BUG_ON(*cdb_len != 12);
Don Bracec8a6c9a2015-11-04 15:50:50 -06004679 block = get_unaligned_be32(&cdb[2]);
4680 block_cnt = get_unaligned_be32(&cdb[6]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004681 }
4682 if (block_cnt > 0xffff)
4683 return IO_ACCEL_INELIGIBLE;
4684
4685 cdb[0] = is_write ? WRITE_10 : READ_10;
4686 cdb[1] = 0;
4687 cdb[2] = (u8) (block >> 24);
4688 cdb[3] = (u8) (block >> 16);
4689 cdb[4] = (u8) (block >> 8);
4690 cdb[5] = (u8) (block);
4691 cdb[6] = 0;
4692 cdb[7] = (u8) (block_cnt >> 8);
4693 cdb[8] = (u8) (block_cnt);
4694 cdb[9] = 0;
4695 *cdb_len = 10;
4696 break;
4697 }
4698 return 0;
4699}
4700
Scott Teelc3497752014-02-18 13:56:34 -06004701static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004702 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004703 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06004704{
4705 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06004706 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
4707 unsigned int len;
4708 unsigned int total_len = 0;
4709 struct scatterlist *sg;
4710 u64 addr64;
4711 int use_sg, i;
4712 struct SGDescriptor *curr_sg;
4713 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
4714
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004715 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06004716 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
4717 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004718 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004719 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004720
Matt Gatese1f7de02014-02-18 13:55:17 -06004721 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
4722
Don Braceb63c64a2017-05-04 17:51:42 -05004723 if (is_zero_length_transfer(cdb)) {
4724 warn_zero_length_transfer(h, cdb, cdb_len, __func__);
4725 atomic_dec(&phys_disk->ioaccel_cmds_out);
4726 return IO_ACCEL_INELIGIBLE;
4727 }
4728
Don Brace03383732015-01-23 16:43:30 -06004729 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4730 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004731 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004732 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004733
Matt Gatese1f7de02014-02-18 13:55:17 -06004734 c->cmd_type = CMD_IOACCEL1;
4735
4736 /* Adjust the DMA address to point to the accelerated command buffer */
4737 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
4738 (c->cmdindex * sizeof(*cp));
4739 BUG_ON(c->busaddr & 0x0000007F);
4740
4741 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004742 if (use_sg < 0) {
4743 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06004744 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004745 }
Matt Gatese1f7de02014-02-18 13:55:17 -06004746
4747 if (use_sg) {
4748 curr_sg = cp->SG;
4749 scsi_for_each_sg(cmd, sg, use_sg, i) {
4750 addr64 = (u64) sg_dma_address(sg);
4751 len = sg_dma_len(sg);
4752 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004753 curr_sg->Addr = cpu_to_le64(addr64);
4754 curr_sg->Len = cpu_to_le32(len);
4755 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06004756 curr_sg++;
4757 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004758 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06004759
4760 switch (cmd->sc_data_direction) {
4761 case DMA_TO_DEVICE:
4762 control |= IOACCEL1_CONTROL_DATA_OUT;
4763 break;
4764 case DMA_FROM_DEVICE:
4765 control |= IOACCEL1_CONTROL_DATA_IN;
4766 break;
4767 case DMA_NONE:
4768 control |= IOACCEL1_CONTROL_NODATAXFER;
4769 break;
4770 default:
4771 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4772 cmd->sc_data_direction);
4773 BUG();
4774 break;
4775 }
4776 } else {
4777 control |= IOACCEL1_CONTROL_NODATAXFER;
4778 }
4779
Scott Teelc3497752014-02-18 13:56:34 -06004780 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06004781 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06004782 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
4783 cp->transfer_len = cpu_to_le32(total_len);
4784 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
4785 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
4786 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004787 memcpy(cp->CDB, cdb, cdb_len);
4788 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06004789 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004790 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06004791 return 0;
4792}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004793
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004794/*
4795 * Queue a command directly to a device behind the controller using the
4796 * I/O accelerator path.
4797 */
4798static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
4799 struct CommandList *c)
4800{
4801 struct scsi_cmnd *cmd = c->scsi_cmd;
4802 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4803
Don Brace45e596c2016-09-09 16:30:42 -05004804 if (!dev)
4805 return -1;
4806
Don Brace03383732015-01-23 16:43:30 -06004807 c->phys_disk = dev;
4808
Don Bracec5dfd102019-05-07 13:32:33 -05004809 if (dev->in_reset)
4810 return -1;
4811
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004812 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004813 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004814}
4815
Scott Teeldd0e19f2014-02-18 13:57:31 -06004816/*
4817 * Set encryption parameters for the ioaccel2 request
4818 */
4819static void set_encrypt_ioaccel2(struct ctlr_info *h,
4820 struct CommandList *c, struct io_accel2_cmd *cp)
4821{
4822 struct scsi_cmnd *cmd = c->scsi_cmd;
4823 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4824 struct raid_map_data *map = &dev->raid_map;
4825 u64 first_block;
4826
Scott Teeldd0e19f2014-02-18 13:57:31 -06004827 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06004828 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06004829 return;
4830 /* Set the data encryption key index. */
4831 cp->dekindex = map->dekindex;
4832
4833 /* Set the encryption enable flag, encoded into direction field. */
4834 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
4835
4836 /* Set encryption tweak values based on logical block address
4837 * If block size is 512, tweak value is LBA.
4838 * For other block sizes, tweak is (LBA * block size)/ 512)
4839 */
4840 switch (cmd->cmnd[0]) {
4841 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
Scott Teeldd0e19f2014-02-18 13:57:31 -06004842 case READ_6:
Mahesh Rajashekharaabbada72016-09-16 14:54:23 -05004843 case WRITE_6:
4844 first_block = (((cmd->cmnd[1] & 0x1F) << 16) |
4845 (cmd->cmnd[2] << 8) |
4846 cmd->cmnd[3]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004847 break;
4848 case WRITE_10:
4849 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004850 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
4851 case WRITE_12:
4852 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06004853 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004854 break;
4855 case WRITE_16:
4856 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06004857 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004858 break;
4859 default:
4860 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06004861 "ERROR: %s: size (0x%x) not supported for encryption\n",
4862 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004863 BUG();
4864 break;
4865 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004866
4867 if (le32_to_cpu(map->volume_blk_size) != 512)
4868 first_block = first_block *
4869 le32_to_cpu(map->volume_blk_size)/512;
4870
4871 cp->tweak_lower = cpu_to_le32(first_block);
4872 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004873}
4874
Scott Teelc3497752014-02-18 13:56:34 -06004875static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
4876 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004877 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004878{
4879 struct scsi_cmnd *cmd = c->scsi_cmd;
4880 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
4881 struct ioaccel2_sg_element *curr_sg;
4882 int use_sg, i;
4883 struct scatterlist *sg;
4884 u64 addr64;
4885 u32 len;
4886 u32 total_len = 0;
4887
Don Brace45e596c2016-09-09 16:30:42 -05004888 if (!cmd->device)
4889 return -1;
4890
4891 if (!cmd->device->hostdata)
4892 return -1;
4893
Webb Scalesd9a729f2015-04-23 09:33:27 -05004894 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06004895
Don Braceb63c64a2017-05-04 17:51:42 -05004896 if (is_zero_length_transfer(cdb)) {
4897 warn_zero_length_transfer(h, cdb, cdb_len, __func__);
4898 atomic_dec(&phys_disk->ioaccel_cmds_out);
4899 return IO_ACCEL_INELIGIBLE;
4900 }
4901
Don Brace03383732015-01-23 16:43:30 -06004902 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4903 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004904 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004905 }
4906
Scott Teelc3497752014-02-18 13:56:34 -06004907 c->cmd_type = CMD_IOACCEL2;
4908 /* Adjust the DMA address to point to the accelerated command buffer */
4909 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
4910 (c->cmdindex * sizeof(*cp));
4911 BUG_ON(c->busaddr & 0x0000007F);
4912
4913 memset(cp, 0, sizeof(*cp));
4914 cp->IU_type = IOACCEL2_IU_TYPE;
4915
4916 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004917 if (use_sg < 0) {
4918 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004919 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004920 }
Scott Teelc3497752014-02-18 13:56:34 -06004921
4922 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06004923 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05004924 if (use_sg > h->ioaccel_maxsg) {
4925 addr64 = le64_to_cpu(
4926 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
4927 curr_sg->address = cpu_to_le64(addr64);
4928 curr_sg->length = 0;
4929 curr_sg->reserved[0] = 0;
4930 curr_sg->reserved[1] = 0;
4931 curr_sg->reserved[2] = 0;
Don Brace625d7d32019-06-03 16:43:29 -05004932 curr_sg->chain_indicator = IOACCEL2_CHAIN;
Webb Scalesd9a729f2015-04-23 09:33:27 -05004933
4934 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
4935 }
Scott Teelc3497752014-02-18 13:56:34 -06004936 scsi_for_each_sg(cmd, sg, use_sg, i) {
4937 addr64 = (u64) sg_dma_address(sg);
4938 len = sg_dma_len(sg);
4939 total_len += len;
4940 curr_sg->address = cpu_to_le64(addr64);
4941 curr_sg->length = cpu_to_le32(len);
4942 curr_sg->reserved[0] = 0;
4943 curr_sg->reserved[1] = 0;
4944 curr_sg->reserved[2] = 0;
4945 curr_sg->chain_indicator = 0;
4946 curr_sg++;
4947 }
4948
Don Brace625d7d32019-06-03 16:43:29 -05004949 /*
4950 * Set the last s/g element bit
4951 */
4952 (curr_sg - 1)->chain_indicator = IOACCEL2_LAST_SG;
4953
Scott Teelc3497752014-02-18 13:56:34 -06004954 switch (cmd->sc_data_direction) {
4955 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004956 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4957 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06004958 break;
4959 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004960 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4961 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06004962 break;
4963 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004964 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4965 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004966 break;
4967 default:
4968 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4969 cmd->sc_data_direction);
4970 BUG();
4971 break;
4972 }
4973 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06004974 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4975 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004976 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06004977
4978 /* Set encryption parameters, if necessary */
4979 set_encrypt_ioaccel2(h, c, cp);
4980
Don Brace2b08b3e2015-01-23 16:41:09 -06004981 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06004982 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06004983 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06004984
Scott Teelc3497752014-02-18 13:56:34 -06004985 cp->data_len = cpu_to_le32(total_len);
4986 cp->err_ptr = cpu_to_le64(c->busaddr +
4987 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004988 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06004989
Webb Scalesd9a729f2015-04-23 09:33:27 -05004990 /* fill in sg elements */
4991 if (use_sg > h->ioaccel_maxsg) {
4992 cp->sg_count = 1;
Don Bracea736e9b2015-11-04 15:51:14 -06004993 cp->sg[0].length = cpu_to_le32(use_sg * sizeof(cp->sg[0]));
Webb Scalesd9a729f2015-04-23 09:33:27 -05004994 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
4995 atomic_dec(&phys_disk->ioaccel_cmds_out);
4996 scsi_dma_unmap(cmd);
4997 return -1;
4998 }
4999 } else
5000 cp->sg_count = (u8) use_sg;
5001
Don Bracec5dfd102019-05-07 13:32:33 -05005002 if (phys_disk->in_reset) {
5003 cmd->result = DID_RESET << 16;
5004 return -1;
5005 }
5006
Scott Teelc3497752014-02-18 13:56:34 -06005007 enqueue_cmd_and_start_io(h, c);
5008 return 0;
5009}
5010
5011/*
5012 * Queue a command to the correct I/O accelerator path.
5013 */
5014static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
5015 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06005016 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06005017{
Don Brace45e596c2016-09-09 16:30:42 -05005018 if (!c->scsi_cmd->device)
5019 return -1;
5020
5021 if (!c->scsi_cmd->device->hostdata)
5022 return -1;
5023
Don Bracec5dfd102019-05-07 13:32:33 -05005024 if (phys_disk->in_reset)
5025 return -1;
5026
Don Brace03383732015-01-23 16:43:30 -06005027 /* Try to honor the device's queue depth */
5028 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
5029 phys_disk->queue_depth) {
5030 atomic_dec(&phys_disk->ioaccel_cmds_out);
5031 return IO_ACCEL_INELIGIBLE;
5032 }
Scott Teelc3497752014-02-18 13:56:34 -06005033 if (h->transMethod & CFGTBL_Trans_io_accel1)
5034 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06005035 cdb, cdb_len, scsi3addr,
5036 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06005037 else
5038 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06005039 cdb, cdb_len, scsi3addr,
5040 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06005041}
5042
Scott Teel6b80b182014-02-18 13:56:55 -06005043static void raid_map_helper(struct raid_map_data *map,
5044 int offload_to_mirror, u32 *map_index, u32 *current_group)
5045{
5046 if (offload_to_mirror == 0) {
5047 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06005048 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06005049 return;
5050 }
5051 do {
5052 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06005053 *current_group = *map_index /
5054 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06005055 if (offload_to_mirror == *current_group)
5056 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06005057 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06005058 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06005059 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06005060 (*current_group)++;
5061 } else {
5062 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06005063 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06005064 *current_group = 0;
5065 }
5066 } while (offload_to_mirror != *current_group);
5067}
5068
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005069/*
5070 * Attempt to perform offload RAID mapping for a logical volume I/O.
5071 */
5072static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
5073 struct CommandList *c)
5074{
5075 struct scsi_cmnd *cmd = c->scsi_cmd;
5076 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
5077 struct raid_map_data *map = &dev->raid_map;
5078 struct raid_map_disk_data *dd = &map->data[0];
5079 int is_write = 0;
5080 u32 map_index;
5081 u64 first_block, last_block;
5082 u32 block_cnt;
5083 u32 blocks_per_row;
5084 u64 first_row, last_row;
5085 u32 first_row_offset, last_row_offset;
5086 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06005087 u64 r0_first_row, r0_last_row;
5088 u32 r5or6_blocks_per_row;
5089 u64 r5or6_first_row, r5or6_last_row;
5090 u32 r5or6_first_row_offset, r5or6_last_row_offset;
5091 u32 r5or6_first_column, r5or6_last_column;
5092 u32 total_disks_per_row;
5093 u32 stripesize;
5094 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005095 u32 map_row;
5096 u32 disk_handle;
5097 u64 disk_block;
5098 u32 disk_block_cnt;
5099 u8 cdb[16];
5100 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06005101 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005102#if BITS_PER_LONG == 32
5103 u64 tmpdiv;
5104#endif
Scott Teel6b80b182014-02-18 13:56:55 -06005105 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005106
Don Brace45e596c2016-09-09 16:30:42 -05005107 if (!dev)
5108 return -1;
5109
Don Bracec5dfd102019-05-07 13:32:33 -05005110 if (dev->in_reset)
5111 return -1;
5112
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005113 /* check for valid opcode, get LBA and block count */
5114 switch (cmd->cmnd[0]) {
5115 case WRITE_6:
5116 is_write = 1;
Gustavo A. R. Silva5dfdb082018-11-27 22:29:07 -06005117 /* fall through */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005118 case READ_6:
Mahesh Rajashekharaabbada72016-09-16 14:54:23 -05005119 first_block = (((cmd->cmnd[1] & 0x1F) << 16) |
5120 (cmd->cmnd[2] << 8) |
5121 cmd->cmnd[3]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005122 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05005123 if (block_cnt == 0)
5124 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005125 break;
5126 case WRITE_10:
5127 is_write = 1;
Gustavo A. R. Silva5dfdb082018-11-27 22:29:07 -06005128 /* fall through */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005129 case READ_10:
5130 first_block =
5131 (((u64) cmd->cmnd[2]) << 24) |
5132 (((u64) cmd->cmnd[3]) << 16) |
5133 (((u64) cmd->cmnd[4]) << 8) |
5134 cmd->cmnd[5];
5135 block_cnt =
5136 (((u32) cmd->cmnd[7]) << 8) |
5137 cmd->cmnd[8];
5138 break;
5139 case WRITE_12:
5140 is_write = 1;
Gustavo A. R. Silva5dfdb082018-11-27 22:29:07 -06005141 /* fall through */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005142 case READ_12:
5143 first_block =
5144 (((u64) cmd->cmnd[2]) << 24) |
5145 (((u64) cmd->cmnd[3]) << 16) |
5146 (((u64) cmd->cmnd[4]) << 8) |
5147 cmd->cmnd[5];
5148 block_cnt =
5149 (((u32) cmd->cmnd[6]) << 24) |
5150 (((u32) cmd->cmnd[7]) << 16) |
5151 (((u32) cmd->cmnd[8]) << 8) |
5152 cmd->cmnd[9];
5153 break;
5154 case WRITE_16:
5155 is_write = 1;
Gustavo A. R. Silva5dfdb082018-11-27 22:29:07 -06005156 /* fall through */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005157 case READ_16:
5158 first_block =
5159 (((u64) cmd->cmnd[2]) << 56) |
5160 (((u64) cmd->cmnd[3]) << 48) |
5161 (((u64) cmd->cmnd[4]) << 40) |
5162 (((u64) cmd->cmnd[5]) << 32) |
5163 (((u64) cmd->cmnd[6]) << 24) |
5164 (((u64) cmd->cmnd[7]) << 16) |
5165 (((u64) cmd->cmnd[8]) << 8) |
5166 cmd->cmnd[9];
5167 block_cnt =
5168 (((u32) cmd->cmnd[10]) << 24) |
5169 (((u32) cmd->cmnd[11]) << 16) |
5170 (((u32) cmd->cmnd[12]) << 8) |
5171 cmd->cmnd[13];
5172 break;
5173 default:
5174 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
5175 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005176 last_block = first_block + block_cnt - 1;
5177
5178 /* check for write to non-RAID-0 */
5179 if (is_write && dev->raid_level != 0)
5180 return IO_ACCEL_INELIGIBLE;
5181
5182 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06005183 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
5184 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005185 return IO_ACCEL_INELIGIBLE;
5186
5187 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06005188 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
5189 le16_to_cpu(map->strip_size);
5190 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005191#if BITS_PER_LONG == 32
5192 tmpdiv = first_block;
5193 (void) do_div(tmpdiv, blocks_per_row);
5194 first_row = tmpdiv;
5195 tmpdiv = last_block;
5196 (void) do_div(tmpdiv, blocks_per_row);
5197 last_row = tmpdiv;
5198 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
5199 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
5200 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06005201 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005202 first_column = tmpdiv;
5203 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06005204 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005205 last_column = tmpdiv;
5206#else
5207 first_row = first_block / blocks_per_row;
5208 last_row = last_block / blocks_per_row;
5209 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
5210 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06005211 first_column = first_row_offset / strip_size;
5212 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005213#endif
5214
5215 /* if this isn't a single row/column then give to the controller */
5216 if ((first_row != last_row) || (first_column != last_column))
5217 return IO_ACCEL_INELIGIBLE;
5218
5219 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06005220 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
5221 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005222 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06005223 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06005224 map_index = (map_row * total_disks_per_row) + first_column;
5225
5226 switch (dev->raid_level) {
5227 case HPSA_RAID_0:
5228 break; /* nothing special to do */
5229 case HPSA_RAID_1:
5230 /* Handles load balance across RAID 1 members.
5231 * (2-drive R1 and R10 with even # of drives.)
5232 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005233 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005234 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005235 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06005236 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005237 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06005238 break;
5239 case HPSA_RAID_ADM:
5240 /* Handles N-way mirrors (R1-ADM)
5241 * and R10 with # of drives divisible by 3.)
5242 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005243 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06005244
5245 offload_to_mirror = dev->offload_to_mirror;
5246 raid_map_helper(map, offload_to_mirror,
5247 &map_index, &current_group);
5248 /* set mirror group to use next time */
5249 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06005250 (offload_to_mirror >=
5251 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06005252 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06005253 dev->offload_to_mirror = offload_to_mirror;
5254 /* Avoid direct use of dev->offload_to_mirror within this
5255 * function since multiple threads might simultaneously
5256 * increment it beyond the range of dev->layout_map_count -1.
5257 */
5258 break;
5259 case HPSA_RAID_5:
5260 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06005261 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06005262 break;
5263
5264 /* Verify first and last block are in same RAID group */
5265 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06005266 le16_to_cpu(map->strip_size) *
5267 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06005268 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06005269 stripesize = r5or6_blocks_per_row *
5270 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06005271#if BITS_PER_LONG == 32
5272 tmpdiv = first_block;
5273 first_group = do_div(tmpdiv, stripesize);
5274 tmpdiv = first_group;
5275 (void) do_div(tmpdiv, r5or6_blocks_per_row);
5276 first_group = tmpdiv;
5277 tmpdiv = last_block;
5278 last_group = do_div(tmpdiv, stripesize);
5279 tmpdiv = last_group;
5280 (void) do_div(tmpdiv, r5or6_blocks_per_row);
5281 last_group = tmpdiv;
5282#else
5283 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
5284 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06005285#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05005286 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06005287 return IO_ACCEL_INELIGIBLE;
5288
5289 /* Verify request is in a single row of RAID 5/6 */
5290#if BITS_PER_LONG == 32
5291 tmpdiv = first_block;
5292 (void) do_div(tmpdiv, stripesize);
5293 first_row = r5or6_first_row = r0_first_row = tmpdiv;
5294 tmpdiv = last_block;
5295 (void) do_div(tmpdiv, stripesize);
5296 r5or6_last_row = r0_last_row = tmpdiv;
5297#else
5298 first_row = r5or6_first_row = r0_first_row =
5299 first_block / stripesize;
5300 r5or6_last_row = r0_last_row = last_block / stripesize;
5301#endif
5302 if (r5or6_first_row != r5or6_last_row)
5303 return IO_ACCEL_INELIGIBLE;
5304
5305
5306 /* Verify request is in a single column */
5307#if BITS_PER_LONG == 32
5308 tmpdiv = first_block;
5309 first_row_offset = do_div(tmpdiv, stripesize);
5310 tmpdiv = first_row_offset;
5311 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
5312 r5or6_first_row_offset = first_row_offset;
5313 tmpdiv = last_block;
5314 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
5315 tmpdiv = r5or6_last_row_offset;
5316 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
5317 tmpdiv = r5or6_first_row_offset;
5318 (void) do_div(tmpdiv, map->strip_size);
5319 first_column = r5or6_first_column = tmpdiv;
5320 tmpdiv = r5or6_last_row_offset;
5321 (void) do_div(tmpdiv, map->strip_size);
5322 r5or6_last_column = tmpdiv;
5323#else
5324 first_row_offset = r5or6_first_row_offset =
5325 (u32)((first_block % stripesize) %
5326 r5or6_blocks_per_row);
5327
5328 r5or6_last_row_offset =
5329 (u32)((last_block % stripesize) %
5330 r5or6_blocks_per_row);
5331
5332 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06005333 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06005334 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06005335 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06005336#endif
5337 if (r5or6_first_column != r5or6_last_column)
5338 return IO_ACCEL_INELIGIBLE;
5339
5340 /* Request is eligible */
5341 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06005342 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06005343
5344 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06005345 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06005346 (map_row * total_disks_per_row) + first_column;
5347 break;
5348 default:
5349 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005350 }
Scott Teel6b80b182014-02-18 13:56:55 -06005351
Stephen Cameron07543e02015-01-23 16:44:14 -06005352 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
5353 return IO_ACCEL_INELIGIBLE;
5354
Don Brace03383732015-01-23 16:43:30 -06005355 c->phys_disk = dev->phys_disk[map_index];
Don Bracec3390df2016-02-23 15:16:34 -06005356 if (!c->phys_disk)
5357 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06005358
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005359 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06005360 disk_block = le64_to_cpu(map->disk_starting_blk) +
5361 first_row * le16_to_cpu(map->strip_size) +
5362 (first_row_offset - first_column *
5363 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005364 disk_block_cnt = block_cnt;
5365
5366 /* handle differing logical/physical block sizes */
5367 if (map->phys_blk_shift) {
5368 disk_block <<= map->phys_blk_shift;
5369 disk_block_cnt <<= map->phys_blk_shift;
5370 }
5371 BUG_ON(disk_block_cnt > 0xffff);
5372
5373 /* build the new CDB for the physical disk I/O */
5374 if (disk_block > 0xffffffff) {
5375 cdb[0] = is_write ? WRITE_16 : READ_16;
5376 cdb[1] = 0;
5377 cdb[2] = (u8) (disk_block >> 56);
5378 cdb[3] = (u8) (disk_block >> 48);
5379 cdb[4] = (u8) (disk_block >> 40);
5380 cdb[5] = (u8) (disk_block >> 32);
5381 cdb[6] = (u8) (disk_block >> 24);
5382 cdb[7] = (u8) (disk_block >> 16);
5383 cdb[8] = (u8) (disk_block >> 8);
5384 cdb[9] = (u8) (disk_block);
5385 cdb[10] = (u8) (disk_block_cnt >> 24);
5386 cdb[11] = (u8) (disk_block_cnt >> 16);
5387 cdb[12] = (u8) (disk_block_cnt >> 8);
5388 cdb[13] = (u8) (disk_block_cnt);
5389 cdb[14] = 0;
5390 cdb[15] = 0;
5391 cdb_len = 16;
5392 } else {
5393 cdb[0] = is_write ? WRITE_10 : READ_10;
5394 cdb[1] = 0;
5395 cdb[2] = (u8) (disk_block >> 24);
5396 cdb[3] = (u8) (disk_block >> 16);
5397 cdb[4] = (u8) (disk_block >> 8);
5398 cdb[5] = (u8) (disk_block);
5399 cdb[6] = 0;
5400 cdb[7] = (u8) (disk_block_cnt >> 8);
5401 cdb[8] = (u8) (disk_block_cnt);
5402 cdb[9] = 0;
5403 cdb_len = 10;
5404 }
5405 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06005406 dev->scsi3addr,
5407 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005408}
5409
Webb Scales25163bd2015-04-23 09:32:00 -05005410/*
5411 * Submit commands down the "normal" RAID stack path
5412 * All callers to hpsa_ciss_submit must check lockup_detected
5413 * beforehand, before (opt.) and after calling cmd_alloc
5414 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06005415static int hpsa_ciss_submit(struct ctlr_info *h,
5416 struct CommandList *c, struct scsi_cmnd *cmd,
Don Bracec5dfd102019-05-07 13:32:33 -05005417 struct hpsa_scsi_dev_t *dev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005418{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005419 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005420 c->cmd_type = CMD_SCSI;
5421 c->scsi_cmd = cmd;
5422 c->Header.ReplyQueue = 0; /* unused in simple mode */
Don Bracec5dfd102019-05-07 13:32:33 -05005423 memcpy(&c->Header.LUN.LunAddrBytes[0], &dev->scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06005424 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005425
5426 /* Fill in the request block... */
5427
5428 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005429 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
5430 c->Request.CDBLen = cmd->cmd_len;
5431 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005432 switch (cmd->sc_data_direction) {
5433 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005434 c->Request.type_attr_dir =
5435 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005436 break;
5437 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005438 c->Request.type_attr_dir =
5439 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005440 break;
5441 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005442 c->Request.type_attr_dir =
5443 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005444 break;
5445 case DMA_BIDIRECTIONAL:
5446 /* This can happen if a buggy application does a scsi passthru
5447 * and sets both inlen and outlen to non-zero. ( see
5448 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
5449 */
5450
Stephen M. Camerona505b862014-11-14 17:27:04 -06005451 c->Request.type_attr_dir =
5452 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005453 /* This is technically wrong, and hpsa controllers should
5454 * reject it with CMD_INVALID, which is the most correct
5455 * response, but non-fibre backends appear to let it
5456 * slide by, and give the same results as if this field
5457 * were set correctly. Either way is acceptable for
5458 * our purposes here.
5459 */
5460
5461 break;
5462
5463 default:
5464 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
5465 cmd->sc_data_direction);
5466 BUG();
5467 break;
5468 }
5469
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06005470 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Webb Scales73153fe2015-04-23 09:35:04 -05005471 hpsa_cmd_resolve_and_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005472 return SCSI_MLQUEUE_HOST_BUSY;
5473 }
Don Bracec5dfd102019-05-07 13:32:33 -05005474
5475 if (dev->in_reset) {
5476 hpsa_cmd_resolve_and_free(h, c);
5477 return SCSI_MLQUEUE_HOST_BUSY;
5478 }
5479
Don Brace13499342019-10-14 13:03:58 -05005480 c->device = dev;
5481
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005482 enqueue_cmd_and_start_io(h, c);
5483 /* the cmd'll come back via intr handler in complete_scsi_command() */
5484 return 0;
5485}
5486
Stephen Cameron360c73b2015-04-23 09:32:32 -05005487static void hpsa_cmd_init(struct ctlr_info *h, int index,
5488 struct CommandList *c)
5489{
5490 dma_addr_t cmd_dma_handle, err_dma_handle;
5491
5492 /* Zero out all of commandlist except the last field, refcount */
5493 memset(c, 0, offsetof(struct CommandList, refcount));
5494 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
5495 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
5496 c->err_info = h->errinfo_pool + index;
5497 memset(c->err_info, 0, sizeof(*c->err_info));
5498 err_dma_handle = h->errinfo_pool_dhandle
5499 + index * sizeof(*c->err_info);
5500 c->cmdindex = index;
5501 c->busaddr = (u32) cmd_dma_handle;
5502 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
5503 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
5504 c->h = h;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005505 c->scsi_cmd = SCSI_CMD_IDLE;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005506}
5507
5508static void hpsa_preinitialize_commands(struct ctlr_info *h)
5509{
5510 int i;
5511
5512 for (i = 0; i < h->nr_cmds; i++) {
5513 struct CommandList *c = h->cmd_pool + i;
5514
5515 hpsa_cmd_init(h, i, c);
5516 atomic_set(&c->refcount, 0);
5517 }
5518}
5519
5520static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
5521 struct CommandList *c)
5522{
5523 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
5524
Webb Scales73153fe2015-04-23 09:35:04 -05005525 BUG_ON(c->cmdindex != index);
5526
Stephen Cameron360c73b2015-04-23 09:32:32 -05005527 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
5528 memset(c->err_info, 0, sizeof(*c->err_info));
5529 c->busaddr = (u32) cmd_dma_handle;
5530}
5531
Webb Scales592a0ad2015-04-23 09:32:48 -05005532static int hpsa_ioaccel_submit(struct ctlr_info *h,
Don Bracec5dfd102019-05-07 13:32:33 -05005533 struct CommandList *c, struct scsi_cmnd *cmd)
Webb Scales592a0ad2015-04-23 09:32:48 -05005534{
5535 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
5536 int rc = IO_ACCEL_INELIGIBLE;
5537
Don Brace45e596c2016-09-09 16:30:42 -05005538 if (!dev)
5539 return SCSI_MLQUEUE_HOST_BUSY;
5540
Don Bracec5dfd102019-05-07 13:32:33 -05005541 if (dev->in_reset)
5542 return SCSI_MLQUEUE_HOST_BUSY;
5543
Don Bracea68fdb32019-05-07 13:32:00 -05005544 if (hpsa_simple_mode)
5545 return IO_ACCEL_INELIGIBLE;
5546
Webb Scales592a0ad2015-04-23 09:32:48 -05005547 cmd->host_scribble = (unsigned char *) c;
5548
5549 if (dev->offload_enabled) {
5550 hpsa_cmd_init(h, c->cmdindex, c);
5551 c->cmd_type = CMD_SCSI;
5552 c->scsi_cmd = cmd;
Don Brace13499342019-10-14 13:03:58 -05005553 c->device = dev;
Webb Scales592a0ad2015-04-23 09:32:48 -05005554 rc = hpsa_scsi_ioaccel_raid_map(h, c);
5555 if (rc < 0) /* scsi_dma_map failed. */
5556 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05005557 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05005558 hpsa_cmd_init(h, c->cmdindex, c);
5559 c->cmd_type = CMD_SCSI;
5560 c->scsi_cmd = cmd;
Don Brace13499342019-10-14 13:03:58 -05005561 c->device = dev;
Webb Scales592a0ad2015-04-23 09:32:48 -05005562 rc = hpsa_scsi_ioaccel_direct_map(h, c);
5563 if (rc < 0) /* scsi_dma_map failed. */
5564 rc = SCSI_MLQUEUE_HOST_BUSY;
5565 }
5566 return rc;
5567}
5568
Don Brace080ef1c2015-01-23 16:43:25 -06005569static void hpsa_command_resubmit_worker(struct work_struct *work)
5570{
5571 struct scsi_cmnd *cmd;
5572 struct hpsa_scsi_dev_t *dev;
Webb Scales8a0ff922015-04-23 09:34:11 -05005573 struct CommandList *c = container_of(work, struct CommandList, work);
Don Brace080ef1c2015-01-23 16:43:25 -06005574
5575 cmd = c->scsi_cmd;
5576 dev = cmd->device->hostdata;
5577 if (!dev) {
5578 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05005579 return hpsa_cmd_free_and_done(c->h, c, cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06005580 }
Don Bracec5dfd102019-05-07 13:32:33 -05005581
5582 if (dev->in_reset) {
5583 cmd->result = DID_RESET << 16;
Don Braced2315ce2017-05-04 17:51:16 -05005584 return hpsa_cmd_free_and_done(c->h, c, cmd);
Don Bracec5dfd102019-05-07 13:32:33 -05005585 }
5586
Webb Scales592a0ad2015-04-23 09:32:48 -05005587 if (c->cmd_type == CMD_IOACCEL2) {
5588 struct ctlr_info *h = c->h;
5589 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5590 int rc;
5591
5592 if (c2->error_data.serv_response ==
5593 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
Don Bracec5dfd102019-05-07 13:32:33 -05005594 rc = hpsa_ioaccel_submit(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05005595 if (rc == 0)
5596 return;
5597 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
5598 /*
5599 * If we get here, it means dma mapping failed.
5600 * Try again via scsi mid layer, which will
5601 * then get SCSI_MLQUEUE_HOST_BUSY.
5602 */
5603 cmd->result = DID_IMM_RETRY << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05005604 return hpsa_cmd_free_and_done(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05005605 }
5606 /* else, fall thru and resubmit down CISS path */
5607 }
5608 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05005609 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Bracec5dfd102019-05-07 13:32:33 -05005610 if (hpsa_ciss_submit(c->h, c, cmd, dev)) {
Don Brace080ef1c2015-01-23 16:43:25 -06005611 /*
5612 * If we get here, it means dma mapping failed. Try
5613 * again via scsi mid layer, which will then get
5614 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05005615 *
5616 * hpsa_ciss_submit will have already freed c
5617 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06005618 */
5619 cmd->result = DID_IMM_RETRY << 16;
5620 cmd->scsi_done(cmd);
5621 }
5622}
5623
Stephen Cameron574f05d2015-01-23 16:43:20 -06005624/* Running in struct Scsi_Host->host_lock less mode */
5625static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
5626{
5627 struct ctlr_info *h;
5628 struct hpsa_scsi_dev_t *dev;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005629 struct CommandList *c;
5630 int rc = 0;
5631
5632 /* Get the ptr to our adapter structure out of cmd->host. */
5633 h = sdev_to_hba(cmd->device);
Webb Scales73153fe2015-04-23 09:35:04 -05005634
5635 BUG_ON(cmd->request->tag < 0);
5636
Stephen Cameron574f05d2015-01-23 16:43:20 -06005637 dev = cmd->device->hostdata;
5638 if (!dev) {
Hannes Reinecke1ccde702016-11-18 08:32:47 +01005639 cmd->result = DID_NO_CONNECT << 16;
Don Braceba74fdc2016-04-27 17:14:17 -05005640 cmd->scsi_done(cmd);
5641 return 0;
5642 }
5643
5644 if (dev->removed) {
Stephen Cameron574f05d2015-01-23 16:43:20 -06005645 cmd->result = DID_NO_CONNECT << 16;
5646 cmd->scsi_done(cmd);
5647 return 0;
5648 }
Webb Scales73153fe2015-04-23 09:35:04 -05005649
Stephen Cameron574f05d2015-01-23 16:43:20 -06005650 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05005651 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005652 cmd->scsi_done(cmd);
5653 return 0;
5654 }
Don Bracec5dfd102019-05-07 13:32:33 -05005655
5656 if (dev->in_reset)
5657 return SCSI_MLQUEUE_DEVICE_BUSY;
5658
Webb Scales73153fe2015-04-23 09:35:04 -05005659 c = cmd_tagged_alloc(h, cmd);
Don Brace4770e682019-05-07 13:32:13 -05005660 if (c == NULL)
5661 return SCSI_MLQUEUE_DEVICE_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005662
Stephen Cameron407863c2015-01-23 16:44:19 -06005663 /*
Don Braceeeebce12019-07-24 17:08:06 -05005664 * This is necessary because the SML doesn't zero out this field during
5665 * error recovery.
5666 */
5667 cmd->result = 0;
5668
5669 /*
Stephen Cameron407863c2015-01-23 16:44:19 -06005670 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06005671 * Retries always go down the normal I/O path.
5672 */
5673 if (likely(cmd->retries == 0 &&
Christoph Hellwig57292b52017-01-31 16:57:29 +01005674 !blk_rq_is_passthrough(cmd->request) &&
5675 h->acciopath_status)) {
Don Bracec5dfd102019-05-07 13:32:33 -05005676 rc = hpsa_ioaccel_submit(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05005677 if (rc == 0)
5678 return 0;
5679 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
Webb Scales73153fe2015-04-23 09:35:04 -05005680 hpsa_cmd_resolve_and_free(h, c);
Webb Scales592a0ad2015-04-23 09:32:48 -05005681 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005682 }
5683 }
Don Bracec5dfd102019-05-07 13:32:33 -05005684 return hpsa_ciss_submit(h, c, cmd, dev);
Stephen Cameron574f05d2015-01-23 16:43:20 -06005685}
5686
Webb Scales8ebc9242015-01-23 16:44:50 -06005687static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005688{
5689 unsigned long flags;
5690
Webb Scales8ebc9242015-01-23 16:44:50 -06005691 spin_lock_irqsave(&h->scan_lock, flags);
5692 h->scan_finished = 1;
Don Brace87b9e6a2017-03-10 14:35:17 -06005693 wake_up(&h->scan_wait_queue);
Webb Scales8ebc9242015-01-23 16:44:50 -06005694 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005695}
5696
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005697static void hpsa_scan_start(struct Scsi_Host *sh)
5698{
5699 struct ctlr_info *h = shost_to_hba(sh);
5700 unsigned long flags;
5701
Webb Scales8ebc9242015-01-23 16:44:50 -06005702 /*
5703 * Don't let rescans be initiated on a controller known to be locked
5704 * up. If the controller locks up *during* a rescan, that thread is
5705 * probably hosed, but at least we can prevent new rescan threads from
5706 * piling up on a locked up controller.
5707 */
5708 if (unlikely(lockup_detected(h)))
5709 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005710
Don Brace87b9e6a2017-03-10 14:35:17 -06005711 /*
5712 * If a scan is already waiting to run, no need to add another
5713 */
5714 spin_lock_irqsave(&h->scan_lock, flags);
5715 if (h->scan_waiting) {
5716 spin_unlock_irqrestore(&h->scan_lock, flags);
5717 return;
5718 }
5719
5720 spin_unlock_irqrestore(&h->scan_lock, flags);
5721
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005722 /* wait until any scan already in progress is finished. */
5723 while (1) {
5724 spin_lock_irqsave(&h->scan_lock, flags);
5725 if (h->scan_finished)
5726 break;
Don Brace87b9e6a2017-03-10 14:35:17 -06005727 h->scan_waiting = 1;
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005728 spin_unlock_irqrestore(&h->scan_lock, flags);
5729 wait_event(h->scan_wait_queue, h->scan_finished);
5730 /* Note: We don't need to worry about a race between this
5731 * thread and driver unload because the midlayer will
5732 * have incremented the reference count, so unload won't
5733 * happen if we're in here.
5734 */
5735 }
5736 h->scan_finished = 0; /* mark scan as in progress */
Don Brace87b9e6a2017-03-10 14:35:17 -06005737 h->scan_waiting = 0;
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005738 spin_unlock_irqrestore(&h->scan_lock, flags);
5739
Webb Scales8ebc9242015-01-23 16:44:50 -06005740 if (unlikely(lockup_detected(h)))
5741 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005742
Don Bracebfd75462016-11-15 14:45:32 -06005743 /*
5744 * Do the scan after a reset completion
5745 */
Don Bracec59d04f2017-05-04 17:51:22 -05005746 spin_lock_irqsave(&h->reset_lock, flags);
Don Bracebfd75462016-11-15 14:45:32 -06005747 if (h->reset_in_progress) {
5748 h->drv_req_rescan = 1;
Don Bracec59d04f2017-05-04 17:51:22 -05005749 spin_unlock_irqrestore(&h->reset_lock, flags);
Don Brace3b476aa22017-05-04 17:51:10 -05005750 hpsa_scan_complete(h);
Don Bracebfd75462016-11-15 14:45:32 -06005751 return;
5752 }
Don Bracec59d04f2017-05-04 17:51:22 -05005753 spin_unlock_irqrestore(&h->reset_lock, flags);
Don Bracebfd75462016-11-15 14:45:32 -06005754
Don Brace8aa60682015-11-04 15:50:01 -06005755 hpsa_update_scsi_devices(h);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005756
Webb Scales8ebc9242015-01-23 16:44:50 -06005757 hpsa_scan_complete(h);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005758}
5759
Don Brace7c0a0222015-01-23 16:41:30 -06005760static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
5761{
Don Brace03383732015-01-23 16:43:30 -06005762 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
5763
5764 if (!logical_drive)
5765 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06005766
5767 if (qdepth < 1)
5768 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06005769 else if (qdepth > logical_drive->queue_depth)
5770 qdepth = logical_drive->queue_depth;
5771
5772 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06005773}
5774
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005775static int hpsa_scan_finished(struct Scsi_Host *sh,
5776 unsigned long elapsed_time)
5777{
5778 struct ctlr_info *h = shost_to_hba(sh);
5779 unsigned long flags;
5780 int finished;
5781
5782 spin_lock_irqsave(&h->scan_lock, flags);
5783 finished = h->scan_finished;
5784 spin_unlock_irqrestore(&h->scan_lock, flags);
5785 return finished;
5786}
5787
Robert Elliott2946e822015-04-23 09:35:09 -05005788static int hpsa_scsi_host_alloc(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005789{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005790 struct Scsi_Host *sh;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005791
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005792 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
Robert Elliott2946e822015-04-23 09:35:09 -05005793 if (sh == NULL) {
5794 dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
5795 return -ENOMEM;
5796 }
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005797
5798 sh->io_port = 0;
5799 sh->n_io_port = 0;
5800 sh->this_id = -1;
5801 sh->max_channel = 3;
5802 sh->max_cmd_len = MAX_COMMAND_SIZE;
5803 sh->max_lun = HPSA_MAX_LUN;
5804 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05005805 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06005806 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005807 sh->sg_tablesize = h->maxsgentries;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06005808 sh->transportt = hpsa_sas_transport_template;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005809 sh->hostdata[0] = (unsigned long) h;
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08005810 sh->irq = pci_irq_vector(h->pdev, 0);
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005811 sh->unique_id = sh->irq;
Christoph Hellwig64d513a2015-10-08 09:28:04 +01005812
Robert Elliott2946e822015-04-23 09:35:09 -05005813 h->scsi_host = sh;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005814 return 0;
Robert Elliott2946e822015-04-23 09:35:09 -05005815}
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005816
Robert Elliott2946e822015-04-23 09:35:09 -05005817static int hpsa_scsi_add_host(struct ctlr_info *h)
5818{
5819 int rv;
5820
5821 rv = scsi_add_host(h->scsi_host, &h->pdev->dev);
5822 if (rv) {
5823 dev_err(&h->pdev->dev, "scsi_add_host failed\n");
5824 return rv;
5825 }
5826 scsi_scan_host(h->scsi_host);
5827 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005828}
5829
Webb Scalesb69324f2015-04-23 09:34:22 -05005830/*
Webb Scales73153fe2015-04-23 09:35:04 -05005831 * The block layer has already gone to the trouble of picking out a unique,
5832 * small-integer tag for this request. We use an offset from that value as
5833 * an index to select our command block. (The offset allows us to reserve the
5834 * low-numbered entries for our own uses.)
5835 */
5836static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
5837{
5838 int idx = scmd->request->tag;
5839
5840 if (idx < 0)
5841 return idx;
5842
5843 /* Offset to leave space for internal cmds. */
5844 return idx += HPSA_NRESERVED_CMDS;
5845}
5846
5847/*
Webb Scalesb69324f2015-04-23 09:34:22 -05005848 * Send a TEST_UNIT_READY command to the specified LUN using the specified
5849 * reply queue; returns zero if the unit is ready, and non-zero otherwise.
5850 */
5851static int hpsa_send_test_unit_ready(struct ctlr_info *h,
5852 struct CommandList *c, unsigned char lunaddr[],
5853 int reply_queue)
5854{
5855 int rc;
5856
5857 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
5858 (void) fill_cmd(c, TEST_UNIT_READY, h,
5859 NULL, 0, 0, lunaddr, TYPE_CMD);
Don Brace1edb6932019-03-12 13:11:45 -05005860 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Webb Scalesb69324f2015-04-23 09:34:22 -05005861 if (rc)
5862 return rc;
5863 /* no unmap needed here because no data xfer. */
5864
5865 /* Check if the unit is already ready. */
5866 if (c->err_info->CommandStatus == CMD_SUCCESS)
5867 return 0;
5868
5869 /*
5870 * The first command sent after reset will receive "unit attention" to
5871 * indicate that the LUN has been reset...this is actually what we're
5872 * looking for (but, success is good too).
5873 */
5874 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5875 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
5876 (c->err_info->SenseInfo[2] == NO_SENSE ||
5877 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
5878 return 0;
5879
5880 return 1;
5881}
5882
5883/*
5884 * Wait for a TEST_UNIT_READY command to complete, retrying as necessary;
5885 * returns zero when the unit is ready, and non-zero when giving up.
5886 */
5887static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h,
5888 struct CommandList *c,
5889 unsigned char lunaddr[], int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005890{
Tomas Henzl89193582014-02-21 16:25:05 -06005891 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005892 int count = 0;
5893 int waittime = 1; /* seconds */
Webb Scalesb69324f2015-04-23 09:34:22 -05005894
5895 /* Send test unit ready until device ready, or give up. */
5896 for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) {
5897
5898 /*
5899 * Wait for a bit. do this first, because if we send
5900 * the TUR right away, the reset will just abort it.
5901 */
5902 msleep(1000 * waittime);
5903
5904 rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue);
5905 if (!rc)
5906 break;
5907
5908 /* Increase wait time with each try, up to a point. */
5909 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
5910 waittime *= 2;
5911
5912 dev_warn(&h->pdev->dev,
5913 "waiting %d secs for device to become ready.\n",
5914 waittime);
5915 }
5916
5917 return rc;
5918}
5919
5920static int wait_for_device_to_become_ready(struct ctlr_info *h,
5921 unsigned char lunaddr[],
5922 int reply_queue)
5923{
5924 int first_queue;
5925 int last_queue;
5926 int rq;
5927 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005928 struct CommandList *c;
5929
Stephen Cameron45fcb862015-01-23 16:43:04 -06005930 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005931
Webb Scalesb69324f2015-04-23 09:34:22 -05005932 /*
5933 * If no specific reply queue was requested, then send the TUR
5934 * repeatedly, requesting a reply on each reply queue; otherwise execute
5935 * the loop exactly once using only the specified queue.
5936 */
5937 if (reply_queue == DEFAULT_REPLY_QUEUE) {
5938 first_queue = 0;
5939 last_queue = h->nreply_queues - 1;
5940 } else {
5941 first_queue = reply_queue;
5942 last_queue = reply_queue;
5943 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005944
Webb Scalesb69324f2015-04-23 09:34:22 -05005945 for (rq = first_queue; rq <= last_queue; rq++) {
5946 rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq);
Webb Scales25163bd2015-04-23 09:32:00 -05005947 if (rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005948 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005949 }
5950
5951 if (rc)
5952 dev_warn(&h->pdev->dev, "giving up on device.\n");
5953 else
5954 dev_warn(&h->pdev->dev, "device is ready.\n");
5955
Stephen Cameron45fcb862015-01-23 16:43:04 -06005956 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005957 return rc;
5958}
5959
5960/* Need at least one of these error handlers to keep ../scsi/hosts.c from
5961 * complaining. Doing a host- or bus-reset can't do anything good here.
5962 */
5963static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
5964{
Don Bracec59d04f2017-05-04 17:51:22 -05005965 int rc = SUCCESS;
Don Bracec5dfd102019-05-07 13:32:33 -05005966 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005967 struct ctlr_info *h;
Colin Ian King36631152019-05-22 09:39:03 +01005968 struct hpsa_scsi_dev_t *dev = NULL;
Scott Teel0b9b7b62015-11-04 15:51:02 -06005969 u8 reset_type;
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005970 char msg[48];
Don Bracec59d04f2017-05-04 17:51:22 -05005971 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005972
5973 /* find the controller to which the command to be aborted was sent */
5974 h = sdev_to_hba(scsicmd->device);
5975 if (h == NULL) /* paranoia */
5976 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06005977
Don Bracec59d04f2017-05-04 17:51:22 -05005978 spin_lock_irqsave(&h->reset_lock, flags);
5979 h->reset_in_progress = 1;
5980 spin_unlock_irqrestore(&h->reset_lock, flags);
5981
5982 if (lockup_detected(h)) {
5983 rc = FAILED;
5984 goto return_reset_status;
5985 }
Don Bracee3458932015-01-23 16:44:24 -06005986
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005987 dev = scsicmd->device->hostdata;
5988 if (!dev) {
Webb Scalesd604f532015-04-23 09:35:22 -05005989 dev_err(&h->pdev->dev, "%s: device lookup failed\n", __func__);
Don Bracec59d04f2017-05-04 17:51:22 -05005990 rc = FAILED;
5991 goto return_reset_status;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005992 }
Webb Scales25163bd2015-04-23 09:32:00 -05005993
Don Bracec59d04f2017-05-04 17:51:22 -05005994 if (dev->devtype == TYPE_ENCLOSURE) {
5995 rc = SUCCESS;
5996 goto return_reset_status;
5997 }
Don Braceef8a5202017-05-04 17:51:04 -05005998
Webb Scales25163bd2015-04-23 09:32:00 -05005999 /* if controller locked up, we can guarantee command won't complete */
6000 if (lockup_detected(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03006001 snprintf(msg, sizeof(msg),
6002 "cmd %d RESET FAILED, lockup detected",
6003 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05006004 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Don Bracec59d04f2017-05-04 17:51:22 -05006005 rc = FAILED;
6006 goto return_reset_status;
Webb Scales25163bd2015-04-23 09:32:00 -05006007 }
6008
6009 /* this reset request might be the result of a lockup; check */
6010 if (detect_controller_lockup(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03006011 snprintf(msg, sizeof(msg),
6012 "cmd %d RESET FAILED, new lockup detected",
6013 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05006014 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Don Bracec59d04f2017-05-04 17:51:22 -05006015 rc = FAILED;
6016 goto return_reset_status;
Webb Scales25163bd2015-04-23 09:32:00 -05006017 }
6018
Webb Scalesd604f532015-04-23 09:35:22 -05006019 /* Do not attempt on controller */
Don Bracec59d04f2017-05-04 17:51:22 -05006020 if (is_hba_lunid(dev->scsi3addr)) {
6021 rc = SUCCESS;
6022 goto return_reset_status;
6023 }
Webb Scalesd604f532015-04-23 09:35:22 -05006024
Scott Teel0b9b7b62015-11-04 15:51:02 -06006025 if (is_logical_dev_addr_mode(dev->scsi3addr))
6026 reset_type = HPSA_DEVICE_RESET_MSG;
6027 else
6028 reset_type = HPSA_PHYS_TARGET_RESET;
6029
6030 sprintf(msg, "resetting %s",
6031 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ");
6032 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05006033
Don Bracec5dfd102019-05-07 13:32:33 -05006034 /*
6035 * wait to see if any commands will complete before sending reset
6036 */
6037 dev->in_reset = true; /* block any new cmds from OS for this device */
6038 for (i = 0; i < 10; i++) {
6039 if (atomic_read(&dev->commands_outstanding) > 0)
6040 msleep(1000);
6041 else
6042 break;
6043 }
6044
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006045 /* send a reset to the SCSI LUN which the command was sent to */
Don Bracec5dfd102019-05-07 13:32:33 -05006046 rc = hpsa_do_reset(h, dev, reset_type, DEFAULT_REPLY_QUEUE);
Don Bracec59d04f2017-05-04 17:51:22 -05006047 if (rc == 0)
6048 rc = SUCCESS;
6049 else
6050 rc = FAILED;
6051
Scott Teel0b9b7b62015-11-04 15:51:02 -06006052 sprintf(msg, "reset %s %s",
6053 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ",
Don Bracec59d04f2017-05-04 17:51:22 -05006054 rc == SUCCESS ? "completed successfully" : "failed");
Webb Scalesd604f532015-04-23 09:35:22 -05006055 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Don Bracec59d04f2017-05-04 17:51:22 -05006056
6057return_reset_status:
6058 spin_lock_irqsave(&h->reset_lock, flags);
Don Braceda03ded2015-11-04 15:50:56 -06006059 h->reset_in_progress = 0;
Don Bracec5dfd102019-05-07 13:32:33 -05006060 if (dev)
6061 dev->in_reset = false;
Don Bracec59d04f2017-05-04 17:51:22 -05006062 spin_unlock_irqrestore(&h->reset_lock, flags);
6063 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006064}
6065
6066/*
Webb Scales73153fe2015-04-23 09:35:04 -05006067 * For operations with an associated SCSI command, a command block is allocated
6068 * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the
6069 * block request tag as an index into a table of entries. cmd_tagged_free() is
6070 * the complement, although cmd_free() may be called instead.
6071 */
6072static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
6073 struct scsi_cmnd *scmd)
6074{
6075 int idx = hpsa_get_cmd_index(scmd);
6076 struct CommandList *c = h->cmd_pool + idx;
6077
6078 if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) {
6079 dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n",
6080 idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1);
6081 /* The index value comes from the block layer, so if it's out of
6082 * bounds, it's probably not our bug.
6083 */
6084 BUG();
6085 }
6086
Webb Scales73153fe2015-04-23 09:35:04 -05006087 if (unlikely(!hpsa_is_cmd_idle(c))) {
6088 /*
6089 * We expect that the SCSI layer will hand us a unique tag
6090 * value. Thus, there should never be a collision here between
6091 * two requests...because if the selected command isn't idle
6092 * then someone is going to be very disappointed.
6093 */
Don Brace4770e682019-05-07 13:32:13 -05006094 if (idx != h->last_collision_tag) { /* Print once per tag */
6095 dev_warn(&h->pdev->dev,
6096 "%s: tag collision (tag=%d)\n", __func__, idx);
Don Brace4770e682019-05-07 13:32:13 -05006097 if (scmd)
6098 scsi_print_command(scmd);
6099 h->last_collision_tag = idx;
6100 }
6101 return NULL;
Webb Scales73153fe2015-04-23 09:35:04 -05006102 }
6103
Don Brace4770e682019-05-07 13:32:13 -05006104 atomic_inc(&c->refcount);
6105
Webb Scales73153fe2015-04-23 09:35:04 -05006106 hpsa_cmd_partial_init(h, idx, c);
6107 return c;
6108}
6109
6110static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c)
6111{
6112 /*
6113 * Release our reference to the block. We don't need to do anything
Don Brace08ec46f2017-05-04 17:51:49 -05006114 * else to free it, because it is accessed by index.
Webb Scales73153fe2015-04-23 09:35:04 -05006115 */
6116 (void)atomic_dec(&c->refcount);
6117}
6118
6119/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006120 * For operations that cannot sleep, a command block is allocated at init,
6121 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
6122 * which ones are free or in use. Lock must be held when calling this.
6123 * cmd_free() is the complement.
Robert Elliottbf43caf2015-04-23 09:33:38 -05006124 * This function never gives up and returns NULL. If it hangs,
6125 * another thread must call cmd_free() to free some tags.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006126 */
Webb Scales281a7fd2015-01-23 16:43:35 -06006127
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006128static struct CommandList *cmd_alloc(struct ctlr_info *h)
6129{
6130 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05006131 int refcount, i;
Webb Scales73153fe2015-04-23 09:35:04 -05006132 int offset = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006133
Robert Elliott33811022015-01-23 16:43:41 -06006134 /*
6135 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06006136 * multiple threads could get in here, and one thread could
6137 * be scanning through the list of bits looking for a free
6138 * one, but the free ones are always behind him, and other
6139 * threads sneak in behind him and eat them before he can
6140 * get to them, so that while there is always a free one, a
6141 * very unlucky thread might be starved anyway, never able to
6142 * beat the other threads. In reality, this happens so
6143 * infrequently as to be indistinguishable from never.
Webb Scales73153fe2015-04-23 09:35:04 -05006144 *
6145 * Note that we start allocating commands before the SCSI host structure
6146 * is initialized. Since the search starts at bit zero, this
6147 * all works, since we have at least one command structure available;
6148 * however, it means that the structures with the low indexes have to be
6149 * reserved for driver-initiated requests, while requests from the block
6150 * layer will use the higher indexes.
Stephen M. Cameron4c413122014-11-14 17:27:29 -06006151 */
6152
Webb Scales281a7fd2015-01-23 16:43:35 -06006153 for (;;) {
Webb Scales73153fe2015-04-23 09:35:04 -05006154 i = find_next_zero_bit(h->cmd_pool_bits,
6155 HPSA_NRESERVED_CMDS,
6156 offset);
6157 if (unlikely(i >= HPSA_NRESERVED_CMDS)) {
Webb Scales281a7fd2015-01-23 16:43:35 -06006158 offset = 0;
6159 continue;
6160 }
6161 c = h->cmd_pool + i;
6162 refcount = atomic_inc_return(&c->refcount);
6163 if (unlikely(refcount > 1)) {
6164 cmd_free(h, c); /* already in use */
Webb Scales73153fe2015-04-23 09:35:04 -05006165 offset = (i + 1) % HPSA_NRESERVED_CMDS;
Webb Scales281a7fd2015-01-23 16:43:35 -06006166 continue;
6167 }
6168 set_bit(i & (BITS_PER_LONG - 1),
6169 h->cmd_pool_bits + (i / BITS_PER_LONG));
6170 break; /* it's ours now. */
6171 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05006172 hpsa_cmd_partial_init(h, i, c);
Don Bracec5dfd102019-05-07 13:32:33 -05006173 c->device = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006174 return c;
6175}
6176
Webb Scales73153fe2015-04-23 09:35:04 -05006177/*
6178 * This is the complementary operation to cmd_alloc(). Note, however, in some
6179 * corner cases it may also be used to free blocks allocated by
6180 * cmd_tagged_alloc() in which case the ref-count decrement does the trick and
6181 * the clear-bit is harmless.
6182 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006183static void cmd_free(struct ctlr_info *h, struct CommandList *c)
6184{
Webb Scales281a7fd2015-01-23 16:43:35 -06006185 if (atomic_dec_and_test(&c->refcount)) {
6186 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006187
Webb Scales281a7fd2015-01-23 16:43:35 -06006188 i = c - h->cmd_pool;
6189 clear_bit(i & (BITS_PER_LONG - 1),
6190 h->cmd_pool_bits + (i / BITS_PER_LONG));
6191 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006192}
6193
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006194#ifdef CONFIG_COMPAT
6195
Nathan Chancellor6f4e6262019-02-07 09:07:20 -07006196static int hpsa_ioctl32_passthru(struct scsi_device *dev, unsigned int cmd,
Don Brace42a91642014-11-14 17:26:27 -06006197 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006198{
6199 IOCTL32_Command_struct __user *arg32 =
6200 (IOCTL32_Command_struct __user *) arg;
6201 IOCTL_Command_struct arg64;
6202 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
6203 int err;
6204 u32 cp;
6205
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06006206 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006207 err = 0;
6208 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
6209 sizeof(arg64.LUN_info));
6210 err |= copy_from_user(&arg64.Request, &arg32->Request,
6211 sizeof(arg64.Request));
6212 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
6213 sizeof(arg64.error_info));
6214 err |= get_user(arg64.buf_size, &arg32->buf_size);
6215 err |= get_user(cp, &arg32->buf);
6216 arg64.buf = compat_ptr(cp);
6217 err |= copy_to_user(p, &arg64, sizeof(arg64));
6218
6219 if (err)
6220 return -EFAULT;
6221
Don Brace42a91642014-11-14 17:26:27 -06006222 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006223 if (err)
6224 return err;
6225 err |= copy_in_user(&arg32->error_info, &p->error_info,
6226 sizeof(arg32->error_info));
6227 if (err)
6228 return -EFAULT;
6229 return err;
6230}
6231
6232static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Nathan Chancellor6f4e6262019-02-07 09:07:20 -07006233 unsigned int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006234{
6235 BIG_IOCTL32_Command_struct __user *arg32 =
6236 (BIG_IOCTL32_Command_struct __user *) arg;
6237 BIG_IOCTL_Command_struct arg64;
6238 BIG_IOCTL_Command_struct __user *p =
6239 compat_alloc_user_space(sizeof(arg64));
6240 int err;
6241 u32 cp;
6242
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06006243 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006244 err = 0;
6245 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
6246 sizeof(arg64.LUN_info));
6247 err |= copy_from_user(&arg64.Request, &arg32->Request,
6248 sizeof(arg64.Request));
6249 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
6250 sizeof(arg64.error_info));
6251 err |= get_user(arg64.buf_size, &arg32->buf_size);
6252 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
6253 err |= get_user(cp, &arg32->buf);
6254 arg64.buf = compat_ptr(cp);
6255 err |= copy_to_user(p, &arg64, sizeof(arg64));
6256
6257 if (err)
6258 return -EFAULT;
6259
Don Brace42a91642014-11-14 17:26:27 -06006260 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006261 if (err)
6262 return err;
6263 err |= copy_in_user(&arg32->error_info, &p->error_info,
6264 sizeof(arg32->error_info));
6265 if (err)
6266 return -EFAULT;
6267 return err;
6268}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06006269
Nathan Chancellor6f4e6262019-02-07 09:07:20 -07006270static int hpsa_compat_ioctl(struct scsi_device *dev, unsigned int cmd,
6271 void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06006272{
6273 switch (cmd) {
6274 case CCISS_GETPCIINFO:
6275 case CCISS_GETINTINFO:
6276 case CCISS_SETINTINFO:
6277 case CCISS_GETNODENAME:
6278 case CCISS_SETNODENAME:
6279 case CCISS_GETHEARTBEAT:
6280 case CCISS_GETBUSTYPES:
6281 case CCISS_GETFIRMVER:
6282 case CCISS_GETDRIVVER:
6283 case CCISS_REVALIDVOLS:
6284 case CCISS_DEREGDISK:
6285 case CCISS_REGNEWDISK:
6286 case CCISS_REGNEWD:
6287 case CCISS_RESCANDISK:
6288 case CCISS_GETLUNINFO:
6289 return hpsa_ioctl(dev, cmd, arg);
6290
6291 case CCISS_PASSTHRU32:
6292 return hpsa_ioctl32_passthru(dev, cmd, arg);
6293 case CCISS_BIG_PASSTHRU32:
6294 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
6295
6296 default:
6297 return -ENOIOCTLCMD;
6298 }
6299}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006300#endif
6301
6302static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
6303{
6304 struct hpsa_pci_info pciinfo;
6305
6306 if (!argp)
6307 return -EINVAL;
6308 pciinfo.domain = pci_domain_nr(h->pdev->bus);
6309 pciinfo.bus = h->pdev->bus->number;
6310 pciinfo.dev_fn = h->pdev->devfn;
6311 pciinfo.board_id = h->board_id;
6312 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
6313 return -EFAULT;
6314 return 0;
6315}
6316
6317static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
6318{
6319 DriverVer_type DriverVer;
6320 unsigned char vmaj, vmin, vsubmin;
6321 int rc;
6322
6323 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
6324 &vmaj, &vmin, &vsubmin);
6325 if (rc != 3) {
6326 dev_info(&h->pdev->dev, "driver version string '%s' "
6327 "unrecognized.", HPSA_DRIVER_VERSION);
6328 vmaj = 0;
6329 vmin = 0;
6330 vsubmin = 0;
6331 }
6332 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
6333 if (!argp)
6334 return -EINVAL;
6335 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
6336 return -EFAULT;
6337 return 0;
6338}
6339
6340static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6341{
6342 IOCTL_Command_struct iocommand;
6343 struct CommandList *c;
6344 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006345 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006346 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006347
6348 if (!argp)
6349 return -EINVAL;
6350 if (!capable(CAP_SYS_RAWIO))
6351 return -EPERM;
6352 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
6353 return -EFAULT;
6354 if ((iocommand.buf_size < 1) &&
6355 (iocommand.Request.Type.Direction != XFER_NONE)) {
6356 return -EINVAL;
6357 }
6358 if (iocommand.buf_size > 0) {
6359 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
6360 if (buff == NULL)
Robert Elliott2dd02d72015-04-23 09:33:43 -05006361 return -ENOMEM;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006362 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006363 /* Copy the data into the buffer we created */
6364 if (copy_from_user(buff, iocommand.buf,
6365 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006366 rc = -EFAULT;
6367 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006368 }
6369 } else {
6370 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006371 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006372 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006373 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006374
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006375 /* Fill in the command type */
6376 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006377 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006378 /* Fill in Command Header */
6379 c->Header.ReplyQueue = 0; /* unused in simple mode */
6380 if (iocommand.buf_size > 0) { /* buffer to fill */
6381 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006382 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006383 } else { /* no buffers to fill */
6384 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006385 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006386 }
6387 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006388
6389 /* Fill in Request block */
6390 memcpy(&c->Request, &iocommand.Request,
6391 sizeof(c->Request));
6392
6393 /* Fill in the scatter gather information */
6394 if (iocommand.buf_size > 0) {
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006395 temp64 = dma_map_single(&h->pdev->dev, buff,
6396 iocommand.buf_size, DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006397 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
6398 c->SG[0].Addr = cpu_to_le64(0);
6399 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006400 rc = -ENOMEM;
6401 goto out;
6402 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006403 c->SG[0].Addr = cpu_to_le64(temp64);
6404 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
6405 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006406 }
Don Bracec448ecf2016-04-27 17:13:51 -05006407 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
Don Brace3fb134c2016-07-01 13:37:38 -05006408 NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05006409 if (iocommand.buf_size > 0)
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006410 hpsa_pci_unmap(h->pdev, c, 1, DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006411 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006412 if (rc) {
6413 rc = -EIO;
6414 goto out;
6415 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006416
6417 /* Copy the error information out */
6418 memcpy(&iocommand.error_info, c->err_info,
6419 sizeof(iocommand.error_info));
6420 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006421 rc = -EFAULT;
6422 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006423 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006424 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006425 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006426 /* Copy the data out of the buffer we created */
6427 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006428 rc = -EFAULT;
6429 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006430 }
6431 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006432out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006433 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006434out_kfree:
6435 kfree(buff);
6436 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006437}
6438
6439static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6440{
6441 BIG_IOCTL_Command_struct *ioc;
6442 struct CommandList *c;
6443 unsigned char **buff = NULL;
6444 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006445 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006446 BYTE sg_used = 0;
6447 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006448 u32 left;
6449 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006450 BYTE __user *data_ptr;
6451
6452 if (!argp)
6453 return -EINVAL;
6454 if (!capable(CAP_SYS_RAWIO))
6455 return -EPERM;
zhong jiang048a8642018-09-18 23:54:41 +08006456 ioc = vmemdup_user(argp, sizeof(*ioc));
6457 if (IS_ERR(ioc)) {
6458 status = PTR_ERR(ioc);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006459 goto cleanup1;
6460 }
6461 if ((ioc->buf_size < 1) &&
6462 (ioc->Request.Type.Direction != XFER_NONE)) {
6463 status = -EINVAL;
6464 goto cleanup1;
6465 }
6466 /* Check kmalloc limits using all SGs */
6467 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
6468 status = -EINVAL;
6469 goto cleanup1;
6470 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006471 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006472 status = -EINVAL;
6473 goto cleanup1;
6474 }
Kees Cook6396bb22018-06-12 14:03:40 -07006475 buff = kcalloc(SG_ENTRIES_IN_CMD, sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006476 if (!buff) {
6477 status = -ENOMEM;
6478 goto cleanup1;
6479 }
Kees Cook6da2ec52018-06-12 13:55:00 -07006480 buff_size = kmalloc_array(SG_ENTRIES_IN_CMD, sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006481 if (!buff_size) {
6482 status = -ENOMEM;
6483 goto cleanup1;
6484 }
6485 left = ioc->buf_size;
6486 data_ptr = ioc->buf;
6487 while (left) {
6488 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
6489 buff_size[sg_used] = sz;
6490 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
6491 if (buff[sg_used] == NULL) {
6492 status = -ENOMEM;
6493 goto cleanup1;
6494 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006495 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006496 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05006497 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006498 goto cleanup1;
6499 }
6500 } else
6501 memset(buff[sg_used], 0, sz);
6502 left -= sz;
6503 data_ptr += sz;
6504 sg_used++;
6505 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006506 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006507
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006508 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006509 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006510 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006511 c->Header.SGList = (u8) sg_used;
6512 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006513 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006514 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
6515 if (ioc->buf_size > 0) {
6516 int i;
6517 for (i = 0; i < sg_used; i++) {
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006518 temp64 = dma_map_single(&h->pdev->dev, buff[i],
6519 buff_size[i], DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006520 if (dma_mapping_error(&h->pdev->dev,
6521 (dma_addr_t) temp64)) {
6522 c->SG[i].Addr = cpu_to_le64(0);
6523 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006524 hpsa_pci_unmap(h->pdev, c, i,
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006525 DMA_BIDIRECTIONAL);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006526 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006527 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006528 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006529 c->SG[i].Addr = cpu_to_le64(temp64);
6530 c->SG[i].Len = cpu_to_le32(buff_size[i]);
6531 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006532 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006533 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006534 }
Don Bracec448ecf2016-04-27 17:13:51 -05006535 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
Don Brace3fb134c2016-07-01 13:37:38 -05006536 NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006537 if (sg_used)
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006538 hpsa_pci_unmap(h->pdev, c, sg_used, DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006539 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006540 if (status) {
6541 status = -EIO;
6542 goto cleanup0;
6543 }
6544
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006545 /* Copy the error information out */
6546 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
6547 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006548 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006549 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006550 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006551 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006552 int i;
6553
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006554 /* Copy the data out of the buffer we created */
6555 BYTE __user *ptr = ioc->buf;
6556 for (i = 0; i < sg_used; i++) {
6557 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006558 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006559 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006560 }
6561 ptr += buff_size[i];
6562 }
6563 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006564 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006565cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006566 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006567cleanup1:
6568 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006569 int i;
6570
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006571 for (i = 0; i < sg_used; i++)
6572 kfree(buff[i]);
6573 kfree(buff);
6574 }
6575 kfree(buff_size);
zhong jiang048a8642018-09-18 23:54:41 +08006576 kvfree(ioc);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006577 return status;
6578}
6579
6580static void check_ioctl_unit_attention(struct ctlr_info *h,
6581 struct CommandList *c)
6582{
6583 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
6584 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
6585 (void) check_for_unit_attention(h, c);
6586}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006587
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006588/*
6589 * ioctl
6590 */
Nathan Chancellor6f4e6262019-02-07 09:07:20 -07006591static int hpsa_ioctl(struct scsi_device *dev, unsigned int cmd,
6592 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006593{
6594 struct ctlr_info *h;
6595 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006596 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006597
6598 h = sdev_to_hba(dev);
6599
6600 switch (cmd) {
6601 case CCISS_DEREGDISK:
6602 case CCISS_REGNEWDISK:
6603 case CCISS_REGNEWD:
Stephen M. Camerona08a84712010-02-04 08:43:16 -06006604 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006605 return 0;
6606 case CCISS_GETPCIINFO:
6607 return hpsa_getpciinfo_ioctl(h, argp);
6608 case CCISS_GETDRIVVER:
6609 return hpsa_getdrivver_ioctl(h, argp);
6610 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006611 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006612 return -EAGAIN;
6613 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006614 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006615 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006616 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006617 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006618 return -EAGAIN;
6619 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006620 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006621 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006622 default:
6623 return -ENOTTY;
6624 }
6625}
6626
Don Bracec5dfd102019-05-07 13:32:33 -05006627static void hpsa_send_host_reset(struct ctlr_info *h, u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006628{
6629 struct CommandList *c;
6630
6631 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006632
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006633 /* fill_cmd can't fail here, no data buffer to map */
6634 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006635 RAID_CTLR_LUNID, TYPE_MSG);
6636 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
6637 c->waiting = NULL;
6638 enqueue_cmd_and_start_io(h, c);
6639 /* Don't wait for completion, the reset won't complete. Don't free
6640 * the command either. This is the last command we will send before
6641 * re-initializing everything, so it doesn't matter and won't leak.
6642 */
Robert Elliottbf43caf2015-04-23 09:33:38 -05006643 return;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006644}
6645
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006646static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006647 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006648 int cmd_type)
6649{
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006650 enum dma_data_direction dir = DMA_NONE;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006651
6652 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006653 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006654 c->Header.ReplyQueue = 0;
6655 if (buff != NULL && size > 0) {
6656 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006657 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006658 } else {
6659 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006660 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006661 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006662 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
6663
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006664 if (cmd_type == TYPE_CMD) {
6665 switch (cmd) {
6666 case HPSA_INQUIRY:
6667 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006668 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006669 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006670 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006671 }
6672 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006673 c->Request.type_attr_dir =
6674 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006675 c->Request.Timeout = 0;
6676 c->Request.CDB[0] = HPSA_INQUIRY;
6677 c->Request.CDB[4] = size & 0xFF;
6678 break;
Don Brace0a7c3bb2017-10-20 16:52:10 -05006679 case RECEIVE_DIAGNOSTIC:
6680 c->Request.CDBLen = 6;
6681 c->Request.type_attr_dir =
6682 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6683 c->Request.Timeout = 0;
6684 c->Request.CDB[0] = cmd;
6685 c->Request.CDB[1] = 1;
6686 c->Request.CDB[2] = 1;
6687 c->Request.CDB[3] = (size >> 8) & 0xFF;
6688 c->Request.CDB[4] = size & 0xFF;
6689 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006690 case HPSA_REPORT_LOG:
6691 case HPSA_REPORT_PHYS:
6692 /* Talking to controller so It's a physical command
6693 mode = 00 target = 0. Nothing to write.
6694 */
6695 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006696 c->Request.type_attr_dir =
6697 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006698 c->Request.Timeout = 0;
6699 c->Request.CDB[0] = cmd;
6700 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6701 c->Request.CDB[7] = (size >> 16) & 0xFF;
6702 c->Request.CDB[8] = (size >> 8) & 0xFF;
6703 c->Request.CDB[9] = size & 0xFF;
6704 break;
Scott Teelc2adae42015-11-04 15:52:16 -06006705 case BMIC_SENSE_DIAG_OPTIONS:
6706 c->Request.CDBLen = 16;
6707 c->Request.type_attr_dir =
6708 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6709 c->Request.Timeout = 0;
6710 /* Spec says this should be BMIC_WRITE */
6711 c->Request.CDB[0] = BMIC_READ;
6712 c->Request.CDB[6] = BMIC_SENSE_DIAG_OPTIONS;
6713 break;
6714 case BMIC_SET_DIAG_OPTIONS:
6715 c->Request.CDBLen = 16;
6716 c->Request.type_attr_dir =
6717 TYPE_ATTR_DIR(cmd_type,
6718 ATTR_SIMPLE, XFER_WRITE);
6719 c->Request.Timeout = 0;
6720 c->Request.CDB[0] = BMIC_WRITE;
6721 c->Request.CDB[6] = BMIC_SET_DIAG_OPTIONS;
6722 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006723 case HPSA_CACHE_FLUSH:
6724 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006725 c->Request.type_attr_dir =
6726 TYPE_ATTR_DIR(cmd_type,
6727 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006728 c->Request.Timeout = 0;
6729 c->Request.CDB[0] = BMIC_WRITE;
6730 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05006731 c->Request.CDB[7] = (size >> 8) & 0xFF;
6732 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006733 break;
6734 case TEST_UNIT_READY:
6735 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006736 c->Request.type_attr_dir =
6737 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006738 c->Request.Timeout = 0;
6739 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006740 case HPSA_GET_RAID_MAP:
6741 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006742 c->Request.type_attr_dir =
6743 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006744 c->Request.Timeout = 0;
6745 c->Request.CDB[0] = HPSA_CISS_READ;
6746 c->Request.CDB[1] = cmd;
6747 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6748 c->Request.CDB[7] = (size >> 16) & 0xFF;
6749 c->Request.CDB[8] = (size >> 8) & 0xFF;
6750 c->Request.CDB[9] = size & 0xFF;
6751 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006752 case BMIC_SENSE_CONTROLLER_PARAMETERS:
6753 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006754 c->Request.type_attr_dir =
6755 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006756 c->Request.Timeout = 0;
6757 c->Request.CDB[0] = BMIC_READ;
6758 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
6759 c->Request.CDB[7] = (size >> 16) & 0xFF;
6760 c->Request.CDB[8] = (size >> 8) & 0xFF;
6761 break;
Don Brace03383732015-01-23 16:43:30 -06006762 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
6763 c->Request.CDBLen = 10;
6764 c->Request.type_attr_dir =
6765 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6766 c->Request.Timeout = 0;
6767 c->Request.CDB[0] = BMIC_READ;
6768 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
6769 c->Request.CDB[7] = (size >> 16) & 0xFF;
6770 c->Request.CDB[8] = (size >> 8) & 0XFF;
6771 break;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06006772 case BMIC_SENSE_SUBSYSTEM_INFORMATION:
6773 c->Request.CDBLen = 10;
6774 c->Request.type_attr_dir =
6775 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6776 c->Request.Timeout = 0;
6777 c->Request.CDB[0] = BMIC_READ;
6778 c->Request.CDB[6] = BMIC_SENSE_SUBSYSTEM_INFORMATION;
6779 c->Request.CDB[7] = (size >> 16) & 0xFF;
6780 c->Request.CDB[8] = (size >> 8) & 0XFF;
6781 break;
Don Bracecca8f132015-12-22 10:36:48 -06006782 case BMIC_SENSE_STORAGE_BOX_PARAMS:
6783 c->Request.CDBLen = 10;
6784 c->Request.type_attr_dir =
6785 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6786 c->Request.Timeout = 0;
6787 c->Request.CDB[0] = BMIC_READ;
6788 c->Request.CDB[6] = BMIC_SENSE_STORAGE_BOX_PARAMS;
6789 c->Request.CDB[7] = (size >> 16) & 0xFF;
6790 c->Request.CDB[8] = (size >> 8) & 0XFF;
6791 break;
Scott Teel66749d02015-11-04 15:51:57 -06006792 case BMIC_IDENTIFY_CONTROLLER:
6793 c->Request.CDBLen = 10;
6794 c->Request.type_attr_dir =
6795 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6796 c->Request.Timeout = 0;
6797 c->Request.CDB[0] = BMIC_READ;
6798 c->Request.CDB[1] = 0;
6799 c->Request.CDB[2] = 0;
6800 c->Request.CDB[3] = 0;
6801 c->Request.CDB[4] = 0;
6802 c->Request.CDB[5] = 0;
6803 c->Request.CDB[6] = BMIC_IDENTIFY_CONTROLLER;
6804 c->Request.CDB[7] = (size >> 16) & 0xFF;
6805 c->Request.CDB[8] = (size >> 8) & 0XFF;
6806 c->Request.CDB[9] = 0;
6807 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006808 default:
6809 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
6810 BUG();
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006811 }
6812 } else if (cmd_type == TYPE_MSG) {
6813 switch (cmd) {
6814
Scott Teel0b9b7b62015-11-04 15:51:02 -06006815 case HPSA_PHYS_TARGET_RESET:
6816 c->Request.CDBLen = 16;
6817 c->Request.type_attr_dir =
6818 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
6819 c->Request.Timeout = 0; /* Don't time out */
6820 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6821 c->Request.CDB[0] = HPSA_RESET;
6822 c->Request.CDB[1] = HPSA_TARGET_RESET_TYPE;
6823 /* Physical target reset needs no control bytes 4-7*/
6824 c->Request.CDB[4] = 0x00;
6825 c->Request.CDB[5] = 0x00;
6826 c->Request.CDB[6] = 0x00;
6827 c->Request.CDB[7] = 0x00;
6828 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006829 case HPSA_DEVICE_RESET_MSG:
6830 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006831 c->Request.type_attr_dir =
6832 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006833 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006834 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6835 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05006836 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006837 /* If bytes 4-7 are zero, it means reset the */
6838 /* LunID device */
6839 c->Request.CDB[4] = 0x00;
6840 c->Request.CDB[5] = 0x00;
6841 c->Request.CDB[6] = 0x00;
6842 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006843 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006844 default:
6845 dev_warn(&h->pdev->dev, "unknown message type %d\n",
6846 cmd);
6847 BUG();
6848 }
6849 } else {
6850 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
6851 BUG();
6852 }
6853
Stephen M. Camerona505b862014-11-14 17:27:04 -06006854 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006855 case XFER_READ:
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006856 dir = DMA_FROM_DEVICE;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006857 break;
6858 case XFER_WRITE:
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006859 dir = DMA_TO_DEVICE;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006860 break;
6861 case XFER_NONE:
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006862 dir = DMA_NONE;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006863 break;
6864 default:
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006865 dir = DMA_BIDIRECTIONAL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006866 }
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02006867 if (hpsa_map_one(h->pdev, c, buff, size, dir))
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006868 return -1;
6869 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006870}
6871
6872/*
6873 * Map (physical) PCI mem into (virtual) kernel space
6874 */
6875static void __iomem *remap_pci_mem(ulong base, ulong size)
6876{
6877 ulong page_base = ((ulong) base) & PAGE_MASK;
6878 ulong page_offs = ((ulong) base) - page_base;
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +01006879 void __iomem *page_remapped = ioremap(page_base,
Stephen M. Cameron088ba34c2012-07-26 11:34:23 -05006880 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006881
6882 return page_remapped ? (page_remapped + page_offs) : NULL;
6883}
6884
Matt Gates254f7962012-05-01 11:43:06 -05006885static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006886{
Matt Gates254f7962012-05-01 11:43:06 -05006887 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006888}
6889
Stephen M. Cameron900c5442010-02-04 08:42:35 -06006890static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006891{
6892 return h->access.intr_pending(h);
6893}
6894
6895static inline long interrupt_not_for_us(struct ctlr_info *h)
6896{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006897 return (h->access.intr_pending(h) == 0) ||
6898 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006899}
6900
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006901static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
6902 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006903{
6904 if (unlikely(tag_index >= h->nr_cmds)) {
6905 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
6906 return 1;
6907 }
6908 return 0;
6909}
6910
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05006911static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006912{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006913 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06006914 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
6915 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05006916 complete_scsi_command(c);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006917 else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006918 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06006919}
6920
Don Brace303932f2010-02-04 08:42:40 -06006921/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006922static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06006923 u32 raw_tag)
6924{
6925 u32 tag_index;
6926 struct CommandList *c;
6927
Don Bracef2405db2015-01-23 16:43:09 -06006928 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006929 if (!bad_tag(h, tag_index, raw_tag)) {
6930 c = h->cmd_pool + tag_index;
6931 finish_cmd(c);
6932 }
Don Brace303932f2010-02-04 08:42:40 -06006933}
6934
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006935/* Some controllers, like p400, will give us one interrupt
6936 * after a soft reset, even if we turned interrupts off.
6937 * Only need to check for this in the hpsa_xxx_discard_completions
6938 * functions.
6939 */
6940static int ignore_bogus_interrupt(struct ctlr_info *h)
6941{
6942 if (likely(!reset_devices))
6943 return 0;
6944
6945 if (likely(h->interrupts_enabled))
6946 return 0;
6947
6948 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
6949 "(known firmware bug.) Ignoring.\n");
6950
6951 return 1;
6952}
6953
Matt Gates254f7962012-05-01 11:43:06 -05006954/*
6955 * Convert &h->q[x] (passed to interrupt handlers) back to h.
6956 * Relies on (h-q[x] == x) being true for x such that
6957 * 0 <= x < MAX_REPLY_QUEUES.
6958 */
6959static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006960{
Matt Gates254f7962012-05-01 11:43:06 -05006961 return container_of((queue - *queue), struct ctlr_info, q[0]);
6962}
6963
6964static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
6965{
6966 struct ctlr_info *h = queue_to_hba(queue);
6967 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006968 u32 raw_tag;
6969
6970 if (ignore_bogus_interrupt(h))
6971 return IRQ_NONE;
6972
6973 if (interrupt_not_for_us(h))
6974 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006975 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006976 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006977 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006978 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006979 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006980 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006981 return IRQ_HANDLED;
6982}
6983
Matt Gates254f7962012-05-01 11:43:06 -05006984static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006985{
Matt Gates254f7962012-05-01 11:43:06 -05006986 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006987 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006988 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006989
6990 if (ignore_bogus_interrupt(h))
6991 return IRQ_NONE;
6992
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006993 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006994 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006995 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006996 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006997 return IRQ_HANDLED;
6998}
6999
Matt Gates254f7962012-05-01 11:43:06 -05007000static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007001{
Matt Gates254f7962012-05-01 11:43:06 -05007002 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06007003 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05007004 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007005
7006 if (interrupt_not_for_us(h))
7007 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007008 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007009 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05007010 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007011 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06007012 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05007013 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007014 }
7015 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007016 return IRQ_HANDLED;
7017}
7018
Matt Gates254f7962012-05-01 11:43:06 -05007019static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007020{
Matt Gates254f7962012-05-01 11:43:06 -05007021 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007022 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05007023 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007024
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007025 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05007026 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06007027 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06007028 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05007029 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007030 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007031 return IRQ_HANDLED;
7032}
7033
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007034/* Send a message CDB to the firmware. Careful, this only works
7035 * in simple mode, not performant mode due to the tag lookup.
7036 * We only ever use this immediately after a controller reset.
7037 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007038static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
7039 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007040{
7041 struct Command {
7042 struct CommandListHeader CommandHeader;
7043 struct RequestBlock Request;
7044 struct ErrDescriptor ErrorDescriptor;
7045 };
7046 struct Command *cmd;
7047 static const size_t cmd_sz = sizeof(*cmd) +
7048 sizeof(cmd->ErrorDescriptor);
7049 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06007050 __le32 paddr32;
7051 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007052 void __iomem *vaddr;
7053 int i, err;
7054
7055 vaddr = pci_ioremap_bar(pdev, 0);
7056 if (vaddr == NULL)
7057 return -ENOMEM;
7058
7059 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
7060 * CCISS commands, so they must be allocated from the lower 4GiB of
7061 * memory.
7062 */
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02007063 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007064 if (err) {
7065 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06007066 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007067 }
7068
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02007069 cmd = dma_alloc_coherent(&pdev->dev, cmd_sz, &paddr64, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007070 if (cmd == NULL) {
7071 iounmap(vaddr);
7072 return -ENOMEM;
7073 }
7074
7075 /* This must fit, because of the 32-bit consistent DMA mask. Also,
7076 * although there's no guarantee, we assume that the address is at
7077 * least 4-byte aligned (most likely, it's page-aligned).
7078 */
Don Brace2b08b3e2015-01-23 16:41:09 -06007079 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007080
7081 cmd->CommandHeader.ReplyQueue = 0;
7082 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007083 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06007084 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007085 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
7086
7087 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06007088 cmd->Request.type_attr_dir =
7089 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007090 cmd->Request.Timeout = 0; /* Don't time out */
7091 cmd->Request.CDB[0] = opcode;
7092 cmd->Request.CDB[1] = type;
7093 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007094 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06007095 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007096 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007097
Don Brace2b08b3e2015-01-23 16:41:09 -06007098 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007099
7100 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
7101 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06007102 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007103 break;
7104 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
7105 }
7106
7107 iounmap(vaddr);
7108
7109 /* we leak the DMA buffer here ... no choice since the controller could
7110 * still complete the command.
7111 */
7112 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
7113 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
7114 opcode, type);
7115 return -ETIMEDOUT;
7116 }
7117
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02007118 dma_free_coherent(&pdev->dev, cmd_sz, cmd, paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007119
7120 if (tag & HPSA_ERROR_BIT) {
7121 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
7122 opcode, type);
7123 return -EIO;
7124 }
7125
7126 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
7127 opcode, type);
7128 return 0;
7129}
7130
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007131#define hpsa_noop(p) hpsa_message(p, 3, 0)
7132
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007133static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06007134 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007135{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007136
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007137 if (use_doorbell) {
7138 /* For everything after the P600, the PCI power state method
7139 * of resetting the controller doesn't work, so we have this
7140 * other way using the doorbell register.
7141 */
7142 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007143 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05007144
Justin Lindley00701a92014-05-29 10:52:47 -05007145 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05007146 * doorbell reset and before any attempt to talk to the board
7147 * at all to ensure that this actually works and doesn't fall
7148 * over in some weird corner cases.
7149 */
Justin Lindley00701a92014-05-29 10:52:47 -05007150 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007151 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007152
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007153 /* Quoting from the Open CISS Specification: "The Power
7154 * Management Control/Status Register (CSR) controls the power
7155 * state of the device. The normal operating state is D0,
7156 * CSR=00h. The software off state is D3, CSR=03h. To reset
7157 * the controller, place the interface device in D3 then to D0,
7158 * this causes a secondary PCI reset which will reset the
7159 * controller." */
7160
Don Brace2662cab2015-01-23 16:41:25 -06007161 int rc = 0;
7162
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007163 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06007164
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007165 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06007166 rc = pci_set_power_state(pdev, PCI_D3hot);
7167 if (rc)
7168 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007169
7170 msleep(500);
7171
7172 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06007173 rc = pci_set_power_state(pdev, PCI_D0);
7174 if (rc)
7175 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02007176
7177 /*
7178 * The P600 requires a small delay when changing states.
7179 * Otherwise we may think the board did not reset and we bail.
7180 * This for kdump only and is particular to the P600.
7181 */
7182 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007183 }
7184 return 0;
7185}
7186
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007187static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007188{
7189 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007190 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007191}
7192
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007193static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007194{
7195 char *driver_version;
7196 int i, size = sizeof(cfgtable->driver_version);
7197
7198 driver_version = kmalloc(size, GFP_KERNEL);
7199 if (!driver_version)
7200 return -ENOMEM;
7201
7202 init_driver_version(driver_version, size);
7203 for (i = 0; i < size; i++)
7204 writeb(driver_version[i], &cfgtable->driver_version[i]);
7205 kfree(driver_version);
7206 return 0;
7207}
7208
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007209static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
7210 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007211{
7212 int i;
7213
7214 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
7215 driver_ver[i] = readb(&cfgtable->driver_version[i]);
7216}
7217
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007218static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007219{
7220
7221 char *driver_ver, *old_driver_ver;
7222 int rc, size = sizeof(cfgtable->driver_version);
7223
Kees Cook6da2ec52018-06-12 13:55:00 -07007224 old_driver_ver = kmalloc_array(2, size, GFP_KERNEL);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007225 if (!old_driver_ver)
7226 return -ENOMEM;
7227 driver_ver = old_driver_ver + size;
7228
7229 /* After a reset, the 32 bytes of "driver version" in the cfgtable
7230 * should have been changed, otherwise we know the reset failed.
7231 */
7232 init_driver_version(old_driver_ver, size);
7233 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
7234 rc = !memcmp(driver_ver, old_driver_ver, size);
7235 kfree(old_driver_ver);
7236 return rc;
7237}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007238/* This does a hard reset of the controller using PCI power management
7239 * states or the using the doorbell register.
7240 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007241static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007242{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007243 u64 cfg_offset;
7244 u32 cfg_base_addr;
7245 u64 cfg_base_addr_index;
7246 void __iomem *vaddr;
7247 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007248 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007249 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007250 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007251 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007252 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007253
7254 /* For controllers as old as the P600, this is very nearly
7255 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007256 *
7257 * pci_save_state(pci_dev);
7258 * pci_set_power_state(pci_dev, PCI_D3hot);
7259 * pci_set_power_state(pci_dev, PCI_D0);
7260 * pci_restore_state(pci_dev);
7261 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007262 * For controllers newer than the P600, the pci power state
7263 * method of resetting doesn't work so we have another way
7264 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007265 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05007266
Robert Elliott60f923b2015-01-23 16:42:06 -06007267 if (!ctlr_is_resettable(board_id)) {
7268 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06007269 return -ENODEV;
7270 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05007271
7272 /* if controller is soft- but not hard resettable... */
7273 if (!ctlr_is_hard_resettable(board_id))
7274 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05007275
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007276 /* Save the PCI command register */
7277 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007278 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007279
7280 /* find the first memory BAR, so we can find the cfg table */
7281 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
7282 if (rc)
7283 return rc;
7284 vaddr = remap_pci_mem(paddr, 0x250);
7285 if (!vaddr)
7286 return -ENOMEM;
7287
7288 /* find cfgtable in order to check if reset via doorbell is supported */
7289 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
7290 &cfg_base_addr_index, &cfg_offset);
7291 if (rc)
7292 goto unmap_vaddr;
7293 cfgtable = remap_pci_mem(pci_resource_start(pdev,
7294 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
7295 if (!cfgtable) {
7296 rc = -ENOMEM;
7297 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007298 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007299 rc = write_driver_ver_to_cfgtable(cfgtable);
7300 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06007301 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007302
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007303 /* If reset via doorbell register is supported, use that.
7304 * There are two such methods. Favor the newest method.
7305 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007306 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007307 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
7308 if (use_doorbell) {
7309 use_doorbell = DOORBELL_CTLR_RESET2;
7310 } else {
7311 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
7312 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007313 dev_warn(&pdev->dev,
7314 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007315 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007316 goto unmap_cfgtable;
7317 }
7318 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007319
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007320 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
7321 if (rc)
7322 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007323
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007324 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007325 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007326
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007327 /* Some devices (notably the HP Smart Array 5i Controller)
7328 need a little pause here */
7329 msleep(HPSA_POST_RESET_PAUSE_MSECS);
7330
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007331 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
7332 if (rc) {
7333 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06007334 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007335 goto unmap_cfgtable;
7336 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007337
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007338 rc = controller_reset_failed(vaddr);
7339 if (rc < 0)
7340 goto unmap_cfgtable;
7341 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007342 dev_warn(&pdev->dev, "Unable to successfully reset "
7343 "controller. Will try soft reset.\n");
7344 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007345 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007346 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007347 }
7348
7349unmap_cfgtable:
7350 iounmap(cfgtable);
7351
7352unmap_vaddr:
7353 iounmap(vaddr);
7354 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007355}
7356
7357/*
7358 * We cannot read the structure directly, for portability we must use
7359 * the io functions.
7360 * This is for debug only.
7361 */
Don Brace42a91642014-11-14 17:26:27 -06007362static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007363{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05007364#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007365 int i;
7366 char temp_name[17];
7367
7368 dev_info(dev, "Controller Configuration information\n");
7369 dev_info(dev, "------------------------------------\n");
7370 for (i = 0; i < 4; i++)
7371 temp_name[i] = readb(&(tb->Signature[i]));
7372 temp_name[4] = '\0';
7373 dev_info(dev, " Signature = %s\n", temp_name);
7374 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
7375 dev_info(dev, " Transport methods supported = 0x%x\n",
7376 readl(&(tb->TransportSupport)));
7377 dev_info(dev, " Transport methods active = 0x%x\n",
7378 readl(&(tb->TransportActive)));
7379 dev_info(dev, " Requested transport Method = 0x%x\n",
7380 readl(&(tb->HostWrite.TransportRequest)));
7381 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
7382 readl(&(tb->HostWrite.CoalIntDelay)));
7383 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
7384 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06007385 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007386 readl(&(tb->CmdsOutMax)));
7387 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
7388 for (i = 0; i < 16; i++)
7389 temp_name[i] = readb(&(tb->ServerName[i]));
7390 temp_name[16] = '\0';
7391 dev_info(dev, " Server Name = %s\n", temp_name);
7392 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
7393 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007394#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05007395}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007396
7397static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
7398{
7399 int i, offset, mem_type, bar_type;
7400
7401 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
7402 return 0;
7403 offset = 0;
7404 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
7405 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
7406 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
7407 offset += 4;
7408 else {
7409 mem_type = pci_resource_flags(pdev, i) &
7410 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
7411 switch (mem_type) {
7412 case PCI_BASE_ADDRESS_MEM_TYPE_32:
7413 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
7414 offset += 4; /* 32 bit */
7415 break;
7416 case PCI_BASE_ADDRESS_MEM_TYPE_64:
7417 offset += 8;
7418 break;
7419 default: /* reserved in PCI 2.2 */
7420 dev_warn(&pdev->dev,
7421 "base address is invalid\n");
7422 return -1;
7423 break;
7424 }
7425 }
7426 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
7427 return i + 1;
7428 }
7429 return -1;
7430}
7431
Robert Elliottcc64c812015-04-23 09:33:12 -05007432static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
7433{
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08007434 pci_free_irq_vectors(h->pdev);
7435 h->msix_vectors = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007436}
7437
Ming Lei8b834bf2018-03-13 17:42:39 +08007438static void hpsa_setup_reply_map(struct ctlr_info *h)
7439{
7440 const struct cpumask *mask;
7441 unsigned int queue, cpu;
7442
7443 for (queue = 0; queue < h->msix_vectors; queue++) {
7444 mask = pci_irq_get_affinity(h->pdev, queue);
7445 if (!mask)
7446 goto fallback;
7447
7448 for_each_cpu(cpu, mask)
7449 h->reply_map[cpu] = queue;
7450 }
7451 return;
7452
7453fallback:
7454 for_each_possible_cpu(cpu)
7455 h->reply_map[cpu] = 0;
7456}
7457
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007458/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06007459 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007460 */
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08007461static int hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007462{
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08007463 unsigned int flags = PCI_IRQ_LEGACY;
7464 int ret;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007465
7466 /* Some boards advertise MSI but don't really support it */
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08007467 switch (h->board_id) {
7468 case 0x40700E11:
7469 case 0x40800E11:
7470 case 0x40820E11:
7471 case 0x40830E11:
7472 break;
7473 default:
7474 ret = pci_alloc_irq_vectors(h->pdev, 1, MAX_REPLY_QUEUES,
7475 PCI_IRQ_MSIX | PCI_IRQ_AFFINITY);
7476 if (ret > 0) {
7477 h->msix_vectors = ret;
7478 return 0;
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007479 }
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08007480
7481 flags |= PCI_IRQ_MSI;
7482 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007483 }
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08007484
7485 ret = pci_alloc_irq_vectors(h->pdev, 1, 1, flags);
7486 if (ret < 0)
7487 return ret;
7488 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007489}
7490
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02007491static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id,
7492 bool *legacy_board)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007493{
7494 int i;
7495 u32 subsystem_vendor_id, subsystem_device_id;
7496
7497 subsystem_vendor_id = pdev->subsystem_vendor;
7498 subsystem_device_id = pdev->subsystem_device;
7499 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
7500 subsystem_vendor_id;
7501
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02007502 if (legacy_board)
7503 *legacy_board = false;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007504 for (i = 0; i < ARRAY_SIZE(products); i++)
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02007505 if (*board_id == products[i].board_id) {
7506 if (products[i].access != &SA5A_access &&
7507 products[i].access != &SA5B_access)
7508 return i;
Hannes Reineckec8cd71f2017-08-15 08:58:09 +02007509 dev_warn(&pdev->dev,
7510 "legacy board ID: 0x%08x\n",
7511 *board_id);
7512 if (legacy_board)
7513 *legacy_board = true;
7514 return i;
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02007515 }
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007516
Hannes Reineckec8cd71f2017-08-15 08:58:09 +02007517 dev_warn(&pdev->dev, "unrecognized board ID: 0x%08x\n", *board_id);
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02007518 if (legacy_board)
7519 *legacy_board = true;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007520 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
7521}
7522
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007523static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
7524 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007525{
7526 int i;
7527
7528 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007529 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007530 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007531 *memory_bar = pci_resource_start(pdev, i);
7532 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007533 *memory_bar);
7534 return 0;
7535 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007536 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007537 return -ENODEV;
7538}
7539
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007540static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
7541 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007542{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007543 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007544 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007545 if (wait_for_ready)
7546 iterations = HPSA_BOARD_READY_ITERATIONS;
7547 else
7548 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007549
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007550 for (i = 0; i < iterations; i++) {
7551 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
7552 if (wait_for_ready) {
7553 if (scratchpad == HPSA_FIRMWARE_READY)
7554 return 0;
7555 } else {
7556 if (scratchpad != HPSA_FIRMWARE_READY)
7557 return 0;
7558 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007559 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
7560 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007561 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007562 return -ENODEV;
7563}
7564
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007565static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
7566 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
7567 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007568{
7569 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
7570 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
7571 *cfg_base_addr &= (u32) 0x0000ffff;
7572 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
7573 if (*cfg_base_addr_index == -1) {
7574 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
7575 return -ENODEV;
7576 }
7577 return 0;
7578}
7579
Robert Elliott195f2c62015-04-23 09:33:17 -05007580static void hpsa_free_cfgtables(struct ctlr_info *h)
7581{
Robert Elliott105a3db2015-04-23 09:33:48 -05007582 if (h->transtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007583 iounmap(h->transtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007584 h->transtable = NULL;
7585 }
7586 if (h->cfgtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007587 iounmap(h->cfgtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007588 h->cfgtable = NULL;
7589 }
Robert Elliott195f2c62015-04-23 09:33:17 -05007590}
7591
7592/* Find and map CISS config table and transfer table
7593+ * several items must be unmapped (freed) later
7594+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007595static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007596{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06007597 u64 cfg_offset;
7598 u32 cfg_base_addr;
7599 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06007600 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007601 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007602
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007603 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7604 &cfg_base_addr_index, &cfg_offset);
7605 if (rc)
7606 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007607 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007608 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007609 if (!h->cfgtable) {
7610 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007611 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007612 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007613 rc = write_driver_ver_to_cfgtable(h->cfgtable);
7614 if (rc)
7615 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007616 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007617 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007618 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
7619 cfg_base_addr_index)+cfg_offset+trans_offset,
7620 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05007621 if (!h->transtable) {
7622 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
7623 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007624 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007625 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007626 return 0;
7627}
7628
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007629static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007630{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007631#define MIN_MAX_COMMANDS 16
7632 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
7633
7634 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06007635
7636 /* Limit commands in memory limited kdump scenario. */
7637 if (reset_devices && h->max_commands > 32)
7638 h->max_commands = 32;
7639
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007640 if (h->max_commands < MIN_MAX_COMMANDS) {
7641 dev_warn(&h->pdev->dev,
7642 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
7643 h->max_commands,
7644 MIN_MAX_COMMANDS);
7645 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007646 }
7647}
7648
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007649/* If the controller reports that the total max sg entries is greater than 512,
7650 * then we know that chained SG blocks work. (Original smart arrays did not
7651 * support chained SG blocks and would return zero for max sg entries.)
7652 */
7653static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
7654{
7655 return h->maxsgentries > 512;
7656}
7657
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007658/* Interrogate the hardware for some limits:
7659 * max commands, max SG elements without chaining, and with chaining,
7660 * SG chain block size, etc.
7661 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007662static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007663{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007664 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06007665 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007666 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007667 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007668 if (hpsa_supports_chained_sg_blocks(h)) {
7669 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007670 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06007671 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007672 h->maxsgentries--; /* save one for chain pointer */
7673 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007674 /*
7675 * Original smart arrays supported at most 31 s/g entries
7676 * embedded inline in the command (trying to use more
7677 * would lock up the controller)
7678 */
7679 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06007680 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007681 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007682 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007683
7684 /* Find out what task management functions are supported and cache */
7685 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06007686 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
7687 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
7688 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
7689 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen Cameron8be986c2015-04-23 09:34:06 -05007690 if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
7691 dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007692}
7693
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007694static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
7695{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09007696 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007697 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007698 return false;
7699 }
7700 return true;
7701}
7702
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007703static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007704{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007705 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007706
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007707 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02007708 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
7709#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007710 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007711#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06007712 driver_support |= ENABLE_UNIT_ATTN;
7713 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007714}
7715
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007716/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
7717 * in a prefetch beyond physical memory.
7718 */
7719static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
7720{
7721 u32 dma_prefetch;
7722
7723 if (h->board_id != 0x3225103C)
7724 return;
7725 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
7726 dma_prefetch |= 0x8000;
7727 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
7728}
7729
Robert Elliottc706a792015-01-23 16:45:01 -06007730static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007731{
7732 int i;
7733 u32 doorbell_value;
7734 unsigned long flags;
7735 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007736 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007737 spin_lock_irqsave(&h->lock, flags);
7738 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7739 spin_unlock_irqrestore(&h->lock, flags);
7740 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06007741 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007742 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007743 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007744 }
Robert Elliottc706a792015-01-23 16:45:01 -06007745 return -ENODEV;
7746done:
7747 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007748}
7749
Robert Elliottc706a792015-01-23 16:45:01 -06007750static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007751{
7752 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007753 u32 doorbell_value;
7754 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007755
7756 /* under certain very rare conditions, this can take awhile.
7757 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
7758 * as we enter this code.)
7759 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007760 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05007761 if (h->remove_in_progress)
7762 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007763 spin_lock_irqsave(&h->lock, flags);
7764 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7765 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06007766 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06007767 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007768 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007769 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007770 }
Robert Elliottc706a792015-01-23 16:45:01 -06007771 return -ENODEV;
7772done:
7773 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007774}
7775
Robert Elliottc706a792015-01-23 16:45:01 -06007776/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007777static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007778{
7779 u32 trans_support;
7780
7781 trans_support = readl(&(h->cfgtable->TransportSupport));
7782 if (!(trans_support & SIMPLE_MODE))
7783 return -ENOTSUPP;
7784
7785 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007786
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007787 /* Update the field, and then ring the doorbell */
7788 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007789 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007790 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007791 if (hpsa_wait_for_mode_change_ack(h))
7792 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007793 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007794 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
7795 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007796 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007797 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007798error:
Stephen Cameron050f7142015-01-23 16:42:22 -06007799 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007800 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007801}
7802
Robert Elliott195f2c62015-04-23 09:33:17 -05007803/* free items allocated or mapped by hpsa_pci_init */
7804static void hpsa_free_pci_init(struct ctlr_info *h)
7805{
7806 hpsa_free_cfgtables(h); /* pci_init 4 */
7807 iounmap(h->vaddr); /* pci_init 3 */
Robert Elliott105a3db2015-04-23 09:33:48 -05007808 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007809 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Robert Elliott943a7022015-04-23 09:34:32 -05007810 /*
7811 * call pci_disable_device before pci_release_regions per
Mauro Carvalho Chehabbff9e342019-07-15 05:31:06 -03007812 * Documentation/driver-api/pci/pci.rst
Robert Elliott943a7022015-04-23 09:34:32 -05007813 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007814 pci_disable_device(h->pdev); /* pci_init 1 */
Robert Elliott943a7022015-04-23 09:34:32 -05007815 pci_release_regions(h->pdev); /* pci_init 2 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007816}
7817
7818/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007819static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007820{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007821 int prod_index, err;
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02007822 bool legacy_board;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007823
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02007824 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id, &legacy_board);
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007825 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06007826 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007827 h->product_name = products[prod_index].product_name;
7828 h->access = *(products[prod_index].access);
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02007829 h->legacy_board = legacy_board;
Matthew Garrette5a44df2011-11-11 11:14:23 -05007830 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
7831 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
7832
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007833 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007834 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007835 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007836 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007837 return err;
7838 }
7839
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007840 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007841 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007842 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05007843 "failed to obtain PCI resources\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007844 pci_disable_device(h->pdev);
7845 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007846 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007847
7848 pci_set_master(h->pdev);
7849
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08007850 err = hpsa_interrupt_mode(h);
7851 if (err)
7852 goto clean1;
Ming Lei8b834bf2018-03-13 17:42:39 +08007853
7854 /* setup mapping between CPU and reply queue */
7855 hpsa_setup_reply_map(h);
7856
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007857 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007858 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007859 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007860 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007861 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007862 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007863 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007864 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007865 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007866 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007867 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007868 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007869 err = hpsa_find_cfgtables(h);
7870 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007871 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007872 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007873
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007874 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007875 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05007876 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007877 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007878 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007879 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007880 err = hpsa_enter_simple_mode(h);
7881 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007882 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007883 return 0;
7884
Robert Elliott195f2c62015-04-23 09:33:17 -05007885clean4: /* cfgtables, vaddr, intmode+region, pci */
7886 hpsa_free_cfgtables(h);
7887clean3: /* vaddr, intmode+region, pci */
7888 iounmap(h->vaddr);
Robert Elliott105a3db2015-04-23 09:33:48 -05007889 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007890clean2: /* intmode+region, pci */
7891 hpsa_disable_interrupt_mode(h);
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08007892clean1:
Robert Elliott943a7022015-04-23 09:34:32 -05007893 /*
7894 * call pci_disable_device before pci_release_regions per
Mauro Carvalho Chehabbff9e342019-07-15 05:31:06 -03007895 * Documentation/driver-api/pci/pci.rst
Robert Elliott943a7022015-04-23 09:34:32 -05007896 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007897 pci_disable_device(h->pdev);
Robert Elliott943a7022015-04-23 09:34:32 -05007898 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007899 return err;
7900}
7901
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007902static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007903{
7904 int rc;
7905
7906#define HBA_INQUIRY_BYTE_COUNT 64
7907 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
7908 if (!h->hba_inquiry_data)
7909 return;
7910 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
7911 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
7912 if (rc != 0) {
7913 kfree(h->hba_inquiry_data);
7914 h->hba_inquiry_data = NULL;
7915 }
7916}
7917
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007918static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007919{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007920 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06007921 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007922
7923 if (!reset_devices)
7924 return 0;
7925
Tomas Henzl132aa222014-08-14 16:12:39 +02007926 /* kdump kernel is loading, we don't know in which state is
7927 * the pci interface. The dev->enable_cnt is equal zero
7928 * so we call enable+disable, wait a while and switch it on.
7929 */
7930 rc = pci_enable_device(pdev);
7931 if (rc) {
7932 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
7933 return -ENODEV;
7934 }
7935 pci_disable_device(pdev);
7936 msleep(260); /* a randomly chosen number */
7937 rc = pci_enable_device(pdev);
7938 if (rc) {
7939 dev_warn(&pdev->dev, "failed to enable device.\n");
7940 return -ENODEV;
7941 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007942
Tomas Henzl859c75a2014-09-12 14:44:15 +02007943 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06007944
Tomas Henzl3b747292015-01-23 16:41:20 -06007945 vaddr = pci_ioremap_bar(pdev, 0);
7946 if (vaddr == NULL) {
7947 rc = -ENOMEM;
7948 goto out_disable;
7949 }
7950 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
7951 iounmap(vaddr);
7952
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007953 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007954 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007955
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007956 /* -ENOTSUPP here means we cannot reset the controller
7957 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05007958 * "performant mode". Or, it might be 640x, which can't reset
7959 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007960 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06007961 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02007962 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007963
7964 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06007965 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007966 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
7967 if (hpsa_noop(pdev) == 0)
7968 break;
7969 else
7970 dev_warn(&pdev->dev, "no-op failed%s\n",
7971 (i < 11 ? "; re-trying" : ""));
7972 }
Tomas Henzl132aa222014-08-14 16:12:39 +02007973
7974out_disable:
7975
7976 pci_disable_device(pdev);
7977 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007978}
7979
Robert Elliott1fb7c982015-04-23 09:33:22 -05007980static void hpsa_free_cmd_pool(struct ctlr_info *h)
7981{
7982 kfree(h->cmd_pool_bits);
Robert Elliott105a3db2015-04-23 09:33:48 -05007983 h->cmd_pool_bits = NULL;
7984 if (h->cmd_pool) {
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02007985 dma_free_coherent(&h->pdev->dev,
Robert Elliott1fb7c982015-04-23 09:33:22 -05007986 h->nr_cmds * sizeof(struct CommandList),
7987 h->cmd_pool,
7988 h->cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007989 h->cmd_pool = NULL;
7990 h->cmd_pool_dhandle = 0;
7991 }
7992 if (h->errinfo_pool) {
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02007993 dma_free_coherent(&h->pdev->dev,
Robert Elliott1fb7c982015-04-23 09:33:22 -05007994 h->nr_cmds * sizeof(struct ErrorInfo),
7995 h->errinfo_pool,
7996 h->errinfo_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007997 h->errinfo_pool = NULL;
7998 h->errinfo_pool_dhandle = 0;
7999 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008000}
8001
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008002static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008003{
Kees Cook6396bb22018-06-12 14:03:40 -07008004 h->cmd_pool_bits = kcalloc(DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG),
8005 sizeof(unsigned long),
8006 GFP_KERNEL);
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008007 h->cmd_pool = dma_alloc_coherent(&h->pdev->dev,
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008008 h->nr_cmds * sizeof(*h->cmd_pool),
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008009 &h->cmd_pool_dhandle, GFP_KERNEL);
8010 h->errinfo_pool = dma_alloc_coherent(&h->pdev->dev,
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008011 h->nr_cmds * sizeof(*h->errinfo_pool),
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008012 &h->errinfo_pool_dhandle, GFP_KERNEL);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008013 if ((h->cmd_pool_bits == NULL)
8014 || (h->cmd_pool == NULL)
8015 || (h->errinfo_pool == NULL)) {
8016 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06008017 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008018 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05008019 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008020 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06008021clean_up:
8022 hpsa_free_cmd_pool(h);
8023 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008024}
8025
Robert Elliottec501a12015-01-23 16:41:40 -06008026/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
8027static void hpsa_free_irqs(struct ctlr_info *h)
8028{
8029 int i;
Don Bracea68fdb32019-05-07 13:32:00 -05008030 int irq_vector = 0;
8031
8032 if (hpsa_simple_mode)
8033 irq_vector = h->intr_mode;
Robert Elliottec501a12015-01-23 16:41:40 -06008034
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008035 if (!h->msix_vectors || h->intr_mode != PERF_MODE_INT) {
Robert Elliottec501a12015-01-23 16:41:40 -06008036 /* Single reply queue, only one irq to free */
Don Bracea68fdb32019-05-07 13:32:00 -05008037 free_irq(pci_irq_vector(h->pdev, irq_vector),
8038 &h->q[h->intr_mode]);
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008039 h->q[h->intr_mode] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008040 return;
8041 }
8042
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008043 for (i = 0; i < h->msix_vectors; i++) {
8044 free_irq(pci_irq_vector(h->pdev, i), &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008045 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008046 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008047 for (; i < MAX_REPLY_QUEUES; i++)
8048 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008049}
8050
Robert Elliott9ee61792015-01-23 16:42:32 -06008051/* returns 0 on success; cleans up and returns -Enn on error */
8052static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008053 irqreturn_t (*msixhandler)(int, void *),
8054 irqreturn_t (*intxhandler)(int, void *))
8055{
Matt Gates254f7962012-05-01 11:43:06 -05008056 int rc, i;
Don Bracea68fdb32019-05-07 13:32:00 -05008057 int irq_vector = 0;
8058
8059 if (hpsa_simple_mode)
8060 irq_vector = h->intr_mode;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008061
Matt Gates254f7962012-05-01 11:43:06 -05008062 /*
8063 * initialize h->q[x] = x so that interrupt handlers know which
8064 * queue to process.
8065 */
8066 for (i = 0; i < MAX_REPLY_QUEUES; i++)
8067 h->q[i] = (u8) i;
8068
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008069 if (h->intr_mode == PERF_MODE_INT && h->msix_vectors > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05008070 /* If performant mode and MSI-X, use multiple reply queues */
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008071 for (i = 0; i < h->msix_vectors; i++) {
Robert Elliott8b470042015-04-23 09:34:58 -05008072 sprintf(h->intrname[i], "%s-msix%d", h->devname, i);
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008073 rc = request_irq(pci_irq_vector(h->pdev, i), msixhandler,
Robert Elliott8b470042015-04-23 09:34:58 -05008074 0, h->intrname[i],
Matt Gates254f7962012-05-01 11:43:06 -05008075 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008076 if (rc) {
8077 int j;
8078
8079 dev_err(&h->pdev->dev,
8080 "failed to get irq %d for %s\n",
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008081 pci_irq_vector(h->pdev, i), h->devname);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008082 for (j = 0; j < i; j++) {
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008083 free_irq(pci_irq_vector(h->pdev, j), &h->q[j]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008084 h->q[j] = 0;
8085 }
8086 for (; j < MAX_REPLY_QUEUES; j++)
8087 h->q[j] = 0;
8088 return rc;
8089 }
8090 }
Matt Gates254f7962012-05-01 11:43:06 -05008091 } else {
8092 /* Use single reply pool */
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008093 if (h->msix_vectors > 0 || h->pdev->msi_enabled) {
8094 sprintf(h->intrname[0], "%s-msi%s", h->devname,
8095 h->msix_vectors ? "x" : "");
Don Bracea68fdb32019-05-07 13:32:00 -05008096 rc = request_irq(pci_irq_vector(h->pdev, irq_vector),
Robert Elliott8b470042015-04-23 09:34:58 -05008097 msixhandler, 0,
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008098 h->intrname[0],
Matt Gates254f7962012-05-01 11:43:06 -05008099 &h->q[h->intr_mode]);
8100 } else {
Robert Elliott8b470042015-04-23 09:34:58 -05008101 sprintf(h->intrname[h->intr_mode],
8102 "%s-intx", h->devname);
Don Bracea68fdb32019-05-07 13:32:00 -05008103 rc = request_irq(pci_irq_vector(h->pdev, irq_vector),
Robert Elliott8b470042015-04-23 09:34:58 -05008104 intxhandler, IRQF_SHARED,
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08008105 h->intrname[0],
Matt Gates254f7962012-05-01 11:43:06 -05008106 &h->q[h->intr_mode]);
8107 }
8108 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008109 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05008110 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Don Bracea68fdb32019-05-07 13:32:00 -05008111 pci_irq_vector(h->pdev, irq_vector), h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05008112 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008113 return -ENODEV;
8114 }
8115 return 0;
8116}
8117
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008118static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008119{
Robert Elliott39c53f52015-04-23 09:35:14 -05008120 int rc;
Don Bracec5dfd102019-05-07 13:32:33 -05008121 hpsa_send_host_reset(h, HPSA_RESET_TYPE_CONTROLLER);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008122
8123 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008124 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY);
8125 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008126 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008127 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008128 }
8129
8130 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008131 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
8132 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008133 dev_warn(&h->pdev->dev, "Board failed to become ready "
8134 "after soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008135 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008136 }
8137
8138 return 0;
8139}
8140
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008141static void hpsa_free_reply_queues(struct ctlr_info *h)
8142{
8143 int i;
8144
8145 for (i = 0; i < h->nreply_queues; i++) {
8146 if (!h->reply_queue[i].head)
8147 continue;
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008148 dma_free_coherent(&h->pdev->dev,
Robert Elliott1fb7c982015-04-23 09:33:22 -05008149 h->reply_queue_size,
8150 h->reply_queue[i].head,
8151 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008152 h->reply_queue[i].head = NULL;
8153 h->reply_queue[i].busaddr = 0;
8154 }
Robert Elliott105a3db2015-04-23 09:33:48 -05008155 h->reply_queue_size = 0;
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008156}
8157
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05008158static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
8159{
Robert Elliott105a3db2015-04-23 09:33:48 -05008160 hpsa_free_performant_mode(h); /* init_one 7 */
8161 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
8162 hpsa_free_cmd_pool(h); /* init_one 5 */
8163 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliott2946e822015-04-23 09:35:09 -05008164 scsi_host_put(h->scsi_host); /* init_one 3 */
8165 h->scsi_host = NULL; /* init_one 3 */
8166 hpsa_free_pci_init(h); /* init_one 2_5 */
Robert Elliott9ecd9532015-04-23 09:34:43 -05008167 free_percpu(h->lockup_detected); /* init_one 2 */
8168 h->lockup_detected = NULL; /* init_one 2 */
8169 if (h->resubmit_wq) {
8170 destroy_workqueue(h->resubmit_wq); /* init_one 1 */
8171 h->resubmit_wq = NULL;
8172 }
8173 if (h->rescan_ctlr_wq) {
8174 destroy_workqueue(h->rescan_ctlr_wq);
8175 h->rescan_ctlr_wq = NULL;
8176 }
Don Brace01192082019-05-07 13:32:07 -05008177 if (h->monitor_ctlr_wq) {
8178 destroy_workqueue(h->monitor_ctlr_wq);
8179 h->monitor_ctlr_wq = NULL;
8180 }
8181
Robert Elliott105a3db2015-04-23 09:33:48 -05008182 kfree(h); /* init_one 1 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008183}
8184
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008185/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06008186static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008187{
Webb Scales281a7fd2015-01-23 16:43:35 -06008188 int i, refcount;
8189 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008190 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008191
Don Brace080ef1c2015-01-23 16:43:25 -06008192 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06008193 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06008194 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06008195 refcount = atomic_inc_return(&c->refcount);
8196 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05008197 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06008198 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05008199 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05008200 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06008201 }
8202 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008203 }
Webb Scales25163bd2015-04-23 09:32:00 -05008204 dev_warn(&h->pdev->dev,
8205 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008206}
8207
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008208static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
8209{
Rusty Russellc8ed0012015-03-05 10:49:19 +10308210 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008211
Rusty Russellc8ed0012015-03-05 10:49:19 +10308212 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008213 u32 *lockup_detected;
8214 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
8215 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008216 }
8217 wmb(); /* be sure the per-cpu variables are out to memory */
8218}
8219
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008220static void controller_lockup_detected(struct ctlr_info *h)
8221{
8222 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008223 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008224
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008225 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8226 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008227 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
8228 if (!lockup_detected) {
8229 /* no heartbeat, but controller gave us a zero. */
8230 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05008231 "lockup detected after %d but scratchpad register is zero\n",
8232 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008233 lockup_detected = 0xffffffff;
8234 }
8235 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008236 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05008237 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
8238 lockup_detected, h->heartbeat_sample_interval / HZ);
Don Braceb9b08ca2017-10-20 16:51:26 -05008239 if (lockup_detected == 0xffff0000) {
8240 dev_warn(&h->pdev->dev, "Telling controller to do a CHKPT\n");
8241 writel(DOORBELL_GENERATE_CHKPT, h->vaddr + SA5_DOORBELL);
8242 }
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008243 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06008244 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008245}
8246
Webb Scales25163bd2015-04-23 09:32:00 -05008247static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008248{
8249 u64 now;
8250 u32 heartbeat;
8251 unsigned long flags;
8252
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008253 now = get_jiffies_64();
8254 /* If we've received an interrupt recently, we're ok. */
8255 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05008256 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05008257 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008258
8259 /*
8260 * If we've already checked the heartbeat recently, we're ok.
8261 * This could happen if someone sends us a signal. We
8262 * otherwise don't care about signals in this thread.
8263 */
8264 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05008265 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05008266 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008267
8268 /* If heartbeat has not changed since we last looked, we're not ok. */
8269 spin_lock_irqsave(&h->lock, flags);
8270 heartbeat = readl(&h->cfgtable->HeartBeat);
8271 spin_unlock_irqrestore(&h->lock, flags);
8272 if (h->last_heartbeat == heartbeat) {
8273 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05008274 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008275 }
8276
8277 /* We're ok. */
8278 h->last_heartbeat = heartbeat;
8279 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05008280 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008281}
8282
Don Braceb2582a62017-10-20 16:51:45 -05008283/*
8284 * Set ioaccel status for all ioaccel volumes.
8285 *
8286 * Called from monitor controller worker (hpsa_event_monitor_worker)
8287 *
8288 * A Volume (or Volumes that comprise an Array set may be undergoing a
8289 * transformation, so we will be turning off ioaccel for all volumes that
8290 * make up the Array.
8291 */
8292static void hpsa_set_ioaccel_status(struct ctlr_info *h)
8293{
8294 int rc;
8295 int i;
8296 u8 ioaccel_status;
8297 unsigned char *buf;
8298 struct hpsa_scsi_dev_t *device;
8299
8300 if (!h)
8301 return;
8302
8303 buf = kmalloc(64, GFP_KERNEL);
8304 if (!buf)
8305 return;
8306
8307 /*
8308 * Run through current device list used during I/O requests.
8309 */
8310 for (i = 0; i < h->ndevices; i++) {
8311 device = h->dev[i];
8312
8313 if (!device)
8314 continue;
Don Braceb2582a62017-10-20 16:51:45 -05008315 if (!hpsa_vpd_page_supported(h, device->scsi3addr,
8316 HPSA_VPD_LV_IOACCEL_STATUS))
8317 continue;
8318
8319 memset(buf, 0, 64);
8320
8321 rc = hpsa_scsi_do_inquiry(h, device->scsi3addr,
8322 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS,
8323 buf, 64);
8324 if (rc != 0)
8325 continue;
8326
8327 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
8328 device->offload_config =
8329 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
8330 if (device->offload_config)
8331 device->offload_to_be_enabled =
8332 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
8333
8334 /*
8335 * Immediately turn off ioaccel for any volume the
8336 * controller tells us to. Some of the reasons could be:
8337 * transformation - change to the LVs of an Array.
8338 * degraded volume - component failure
8339 *
8340 * If ioaccel is to be re-enabled, re-enable later during the
8341 * scan operation so the driver can get a fresh raidmap
8342 * before turning ioaccel back on.
8343 *
8344 */
8345 if (!device->offload_to_be_enabled)
8346 device->offload_enabled = 0;
8347 }
8348
8349 kfree(buf);
8350}
8351
Stephen M. Cameron98465902014-02-21 16:25:00 -06008352static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008353{
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008354 char *event_type;
8355
Stephen Camerone4aa3e62015-01-23 16:44:07 -06008356 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
8357 return;
8358
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008359 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06008360 if ((h->transMethod & (CFGTBL_Trans_io_accel1
8361 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008362 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
8363 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
8364
8365 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
8366 event_type = "state change";
8367 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
8368 event_type = "configuration change";
8369 /* Stop sending new RAID offload reqs via the IO accelerator */
8370 scsi_block_requests(h->scsi_host);
Don Braceb2582a62017-10-20 16:51:45 -05008371 hpsa_set_ioaccel_status(h);
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008372 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008373 /* Set 'accelerator path config change' bit */
8374 dev_warn(&h->pdev->dev,
8375 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
8376 h->events, event_type);
8377 writel(h->events, &(h->cfgtable->clear_event_notify));
8378 /* Set the "clear event notify field update" bit 6 */
8379 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
8380 /* Wait until ctlr clears 'clear event notify field', bit 6 */
8381 hpsa_wait_for_clear_event_notify_ack(h);
8382 scsi_unblock_requests(h->scsi_host);
8383 } else {
8384 /* Acknowledge controller notification events. */
8385 writel(h->events, &(h->cfgtable->clear_event_notify));
8386 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
8387 hpsa_wait_for_clear_event_notify_ack(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008388 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008389 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008390}
8391
8392/* Check a register on the controller to see if there are configuration
8393 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06008394 * we should rescan the controller for devices.
8395 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008396 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06008397static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008398{
Don Brace853633e2015-11-04 15:50:37 -06008399 if (h->drv_req_rescan) {
8400 h->drv_req_rescan = 0;
8401 return 1;
8402 }
8403
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008404 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06008405 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008406
8407 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06008408 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008409}
8410
Stephen M. Cameron98465902014-02-21 16:25:00 -06008411/*
8412 * Check if any of the offline devices have become ready
8413 */
8414static int hpsa_offline_devices_ready(struct ctlr_info *h)
8415{
8416 unsigned long flags;
8417 struct offline_device_entry *d;
8418 struct list_head *this, *tmp;
8419
8420 spin_lock_irqsave(&h->offline_device_lock, flags);
8421 list_for_each_safe(this, tmp, &h->offline_device_list) {
8422 d = list_entry(this, struct offline_device_entry,
8423 offline_list);
8424 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05008425 if (!hpsa_volume_offline(h, d->scsi3addr)) {
8426 spin_lock_irqsave(&h->offline_device_lock, flags);
8427 list_del(&d->offline_list);
8428 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008429 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05008430 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008431 spin_lock_irqsave(&h->offline_device_lock, flags);
8432 }
8433 spin_unlock_irqrestore(&h->offline_device_lock, flags);
8434 return 0;
8435}
8436
Scott Teel34592252015-11-04 15:52:09 -06008437static int hpsa_luns_changed(struct ctlr_info *h)
8438{
8439 int rc = 1; /* assume there are changes */
8440 struct ReportLUNdata *logdev = NULL;
8441
8442 /* if we can't find out if lun data has changed,
8443 * assume that it has.
8444 */
8445
8446 if (!h->lastlogicals)
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05308447 return rc;
Scott Teel34592252015-11-04 15:52:09 -06008448
8449 logdev = kzalloc(sizeof(*logdev), GFP_KERNEL);
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05308450 if (!logdev)
8451 return rc;
8452
Scott Teel34592252015-11-04 15:52:09 -06008453 if (hpsa_scsi_do_report_luns(h, 1, logdev, sizeof(*logdev), 0)) {
8454 dev_warn(&h->pdev->dev,
8455 "report luns failed, can't track lun changes.\n");
8456 goto out;
8457 }
8458 if (memcmp(logdev, h->lastlogicals, sizeof(*logdev))) {
8459 dev_info(&h->pdev->dev,
8460 "Lun changes detected.\n");
8461 memcpy(h->lastlogicals, logdev, sizeof(*logdev));
8462 goto out;
8463 } else
8464 rc = 0; /* no changes detected. */
8465out:
8466 kfree(logdev);
8467 return rc;
8468}
8469
Scott Teel3d38f002017-05-04 17:51:36 -05008470static void hpsa_perform_rescan(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008471{
Scott Teel3d38f002017-05-04 17:51:36 -05008472 struct Scsi_Host *sh = NULL;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008473 unsigned long flags;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008474
Don Bracebfd75462016-11-15 14:45:32 -06008475 /*
8476 * Do the scan after the reset
8477 */
Don Bracec59d04f2017-05-04 17:51:22 -05008478 spin_lock_irqsave(&h->reset_lock, flags);
Don Bracebfd75462016-11-15 14:45:32 -06008479 if (h->reset_in_progress) {
8480 h->drv_req_rescan = 1;
Don Bracec59d04f2017-05-04 17:51:22 -05008481 spin_unlock_irqrestore(&h->reset_lock, flags);
Don Bracebfd75462016-11-15 14:45:32 -06008482 return;
8483 }
Don Bracec59d04f2017-05-04 17:51:22 -05008484 spin_unlock_irqrestore(&h->reset_lock, flags);
Don Bracebfd75462016-11-15 14:45:32 -06008485
Scott Teel3d38f002017-05-04 17:51:36 -05008486 sh = scsi_host_get(h->scsi_host);
8487 if (sh != NULL) {
8488 hpsa_scan_start(sh);
8489 scsi_host_put(sh);
8490 h->drv_req_rescan = 0;
8491 }
8492}
8493
8494/*
8495 * watch for controller events
8496 */
8497static void hpsa_event_monitor_worker(struct work_struct *work)
8498{
8499 struct ctlr_info *h = container_of(to_delayed_work(work),
8500 struct ctlr_info, event_monitor_work);
8501 unsigned long flags;
8502
8503 spin_lock_irqsave(&h->lock, flags);
8504 if (h->remove_in_progress) {
8505 spin_unlock_irqrestore(&h->lock, flags);
8506 return;
8507 }
8508 spin_unlock_irqrestore(&h->lock, flags);
8509
8510 if (hpsa_ctlr_needs_rescan(h)) {
Stephen M. Cameron98465902014-02-21 16:25:00 -06008511 hpsa_ack_ctlr_events(h);
Scott Teel3d38f002017-05-04 17:51:36 -05008512 hpsa_perform_rescan(h);
8513 }
8514
8515 spin_lock_irqsave(&h->lock, flags);
8516 if (!h->remove_in_progress)
Don Brace01192082019-05-07 13:32:07 -05008517 queue_delayed_work(h->monitor_ctlr_wq, &h->event_monitor_work,
8518 HPSA_EVENT_MONITOR_INTERVAL);
Scott Teel3d38f002017-05-04 17:51:36 -05008519 spin_unlock_irqrestore(&h->lock, flags);
8520}
8521
8522static void hpsa_rescan_ctlr_worker(struct work_struct *work)
8523{
8524 unsigned long flags;
8525 struct ctlr_info *h = container_of(to_delayed_work(work),
8526 struct ctlr_info, rescan_ctlr_work);
8527
8528 spin_lock_irqsave(&h->lock, flags);
8529 if (h->remove_in_progress) {
8530 spin_unlock_irqrestore(&h->lock, flags);
8531 return;
8532 }
8533 spin_unlock_irqrestore(&h->lock, flags);
8534
8535 if (h->drv_req_rescan || hpsa_offline_devices_ready(h)) {
8536 hpsa_perform_rescan(h);
Scott Teel34592252015-11-04 15:52:09 -06008537 } else if (h->discovery_polling) {
8538 if (hpsa_luns_changed(h)) {
Scott Teel34592252015-11-04 15:52:09 -06008539 dev_info(&h->pdev->dev,
8540 "driver discovery polling rescan.\n");
Scott Teel3d38f002017-05-04 17:51:36 -05008541 hpsa_perform_rescan(h);
Scott Teel34592252015-11-04 15:52:09 -06008542 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008543 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008544 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06008545 if (!h->remove_in_progress)
8546 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008547 h->heartbeat_sample_interval);
8548 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008549}
8550
Don Brace6636e7f2015-01-23 16:45:17 -06008551static void hpsa_monitor_ctlr_worker(struct work_struct *work)
8552{
8553 unsigned long flags;
8554 struct ctlr_info *h = container_of(to_delayed_work(work),
8555 struct ctlr_info, monitor_ctlr_work);
8556
8557 detect_controller_lockup(h);
8558 if (lockup_detected(h))
8559 return;
8560
8561 spin_lock_irqsave(&h->lock, flags);
8562 if (!h->remove_in_progress)
Don Brace01192082019-05-07 13:32:07 -05008563 queue_delayed_work(h->monitor_ctlr_wq, &h->monitor_ctlr_work,
Don Brace6636e7f2015-01-23 16:45:17 -06008564 h->heartbeat_sample_interval);
8565 spin_unlock_irqrestore(&h->lock, flags);
8566}
8567
8568static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
8569 char *name)
8570{
8571 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06008572
Don Brace397ea9c2015-02-06 17:44:15 -06008573 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06008574 if (!wq)
8575 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
8576
8577 return wq;
8578}
8579
Ming Lei8b834bf2018-03-13 17:42:39 +08008580static void hpda_free_ctlr_info(struct ctlr_info *h)
8581{
8582 kfree(h->reply_map);
8583 kfree(h);
8584}
8585
8586static struct ctlr_info *hpda_alloc_ctlr_info(void)
8587{
8588 struct ctlr_info *h;
8589
8590 h = kzalloc(sizeof(*h), GFP_KERNEL);
8591 if (!h)
8592 return NULL;
8593
Kees Cook6396bb22018-06-12 14:03:40 -07008594 h->reply_map = kcalloc(nr_cpu_ids, sizeof(*h->reply_map), GFP_KERNEL);
Ming Lei8b834bf2018-03-13 17:42:39 +08008595 if (!h->reply_map) {
8596 kfree(h);
8597 return NULL;
8598 }
8599 return h;
8600}
8601
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008602static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008603{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008604 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008605 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008606 int try_soft_reset = 0;
8607 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008608 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008609
8610 if (number_of_controllers == 0)
8611 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008612
Hannes Reinecke135ae6e2017-08-15 08:58:04 +02008613 rc = hpsa_lookup_board_id(pdev, &board_id, NULL);
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008614 if (rc < 0) {
8615 dev_warn(&pdev->dev, "Board ID not found\n");
8616 return rc;
8617 }
8618
8619 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008620 if (rc) {
8621 if (rc != -ENOTSUPP)
8622 return rc;
8623 /* If the reset fails in a particular way (it has no way to do
8624 * a proper hard reset, so returns -ENOTSUPP) we can try to do
8625 * a soft reset once we get the controller configured up to the
8626 * point that it can accept a command.
8627 */
8628 try_soft_reset = 1;
8629 rc = 0;
8630 }
8631
8632reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008633
Don Brace303932f2010-02-04 08:42:40 -06008634 /* Command structures must be aligned on a 32-byte boundary because
8635 * the 5 lower bits of the address are used by the hardware. and by
8636 * the driver. See comments in hpsa.h for more info.
8637 */
Don Brace303932f2010-02-04 08:42:40 -06008638 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Ming Lei8b834bf2018-03-13 17:42:39 +08008639 h = hpda_alloc_ctlr_info();
Robert Elliott105a3db2015-04-23 09:33:48 -05008640 if (!h) {
8641 dev_err(&pdev->dev, "Failed to allocate controller head\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008642 return -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05008643 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008644
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008645 h->pdev = pdev;
Robert Elliott105a3db2015-04-23 09:33:48 -05008646
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06008647 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008648 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008649 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008650 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008651 spin_lock_init(&h->scan_lock);
Don Bracec59d04f2017-05-04 17:51:22 -05008652 spin_lock_init(&h->reset_lock);
Don Brace34f0c622015-01-23 16:43:46 -06008653 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008654
8655 /* Allocate and clear per-cpu variable lockup_detected */
8656 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008657 if (!h->lockup_detected) {
Robert Elliott105a3db2015-04-23 09:33:48 -05008658 dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008659 rc = -ENOMEM;
Robert Elliott2efa5922015-04-23 09:34:53 -05008660 goto clean1; /* aer/h */
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008661 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008662 set_lockup_detected_for_all_cpus(h, 0);
8663
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008664 rc = hpsa_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008665 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008666 goto clean2; /* lu, aer/h */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008667
Robert Elliott2946e822015-04-23 09:35:09 -05008668 /* relies on h-> settings made by hpsa_pci_init, including
8669 * interrupt_mode h->intr */
8670 rc = hpsa_scsi_host_alloc(h);
8671 if (rc)
8672 goto clean2_5; /* pci, lu, aer/h */
8673
8674 sprintf(h->devname, HPSA "%d", h->scsi_host->host_no);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008675 h->ctlr = number_of_controllers;
8676 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008677
8678 /* configure PCI DMA stuff */
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008679 rc = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008680 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008681 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008682 } else {
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008683 rc = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008684 if (rc == 0) {
8685 dac = 0;
8686 } else {
8687 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott2946e822015-04-23 09:35:09 -05008688 goto clean3; /* shost, pci, lu, aer/h */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008689 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008690 }
8691
8692 /* make sure the board interrupts are off */
8693 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05008694
Robert Elliott105a3db2015-04-23 09:33:48 -05008695 rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
8696 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008697 goto clean3; /* shost, pci, lu, aer/h */
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008698 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06008699 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008700 goto clean4; /* irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008701 rc = hpsa_alloc_sg_chain_blocks(h);
8702 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008703 goto clean5; /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Camerona08a84712010-02-04 08:43:16 -06008704 init_waitqueue_head(&h->scan_wait_queue);
Webb Scalesd604f532015-04-23 09:35:22 -05008705 init_waitqueue_head(&h->event_sync_wait_queue);
8706 mutex_init(&h->reset_mutex);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06008707 h->scan_finished = 1; /* no scan currently in progress */
Don Brace87b9e6a2017-03-10 14:35:17 -06008708 h->scan_waiting = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008709
8710 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008711 h->ndevices = 0;
Robert Elliott2946e822015-04-23 09:35:09 -05008712
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008713 spin_lock_init(&h->devlock);
Robert Elliott105a3db2015-04-23 09:33:48 -05008714 rc = hpsa_put_ctlr_into_performant_mode(h);
8715 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008716 goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */
8717
Robert Elliott2efa5922015-04-23 09:34:53 -05008718 /* create the resubmit workqueue */
8719 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
8720 if (!h->rescan_ctlr_wq) {
8721 rc = -ENOMEM;
8722 goto clean7;
8723 }
8724
8725 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
8726 if (!h->resubmit_wq) {
8727 rc = -ENOMEM;
8728 goto clean7; /* aer/h */
8729 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008730
Don Brace01192082019-05-07 13:32:07 -05008731 h->monitor_ctlr_wq = hpsa_create_controller_wq(h, "monitor");
8732 if (!h->monitor_ctlr_wq) {
8733 rc = -ENOMEM;
8734 goto clean7;
8735 }
8736
Robert Elliott105a3db2015-04-23 09:33:48 -05008737 /*
8738 * At this point, the controller is ready to take commands.
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008739 * Now, if reset_devices and the hard reset didn't work, try
8740 * the soft reset and see if that works.
8741 */
8742 if (try_soft_reset) {
8743
8744 /* This is kind of gross. We may or may not get a completion
8745 * from the soft reset command, and if we do, then the value
8746 * from the fifo may or may not be valid. So, we wait 10 secs
8747 * after the reset throwing away any completions we get during
8748 * that time. Unregister the interrupt handler and register
8749 * fake ones to scoop up any residual completions.
8750 */
8751 spin_lock_irqsave(&h->lock, flags);
8752 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8753 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06008754 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06008755 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008756 hpsa_intx_discard_completions);
8757 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06008758 dev_warn(&h->pdev->dev,
8759 "Failed to request_irq after soft reset.\n");
Robert Elliottd4987572015-04-23 09:34:37 -05008760 /*
Robert Elliottb2ef4802015-04-23 09:34:48 -05008761 * cannot goto clean7 or free_irqs will be called
8762 * again. Instead, do its work
8763 */
8764 hpsa_free_performant_mode(h); /* clean7 */
8765 hpsa_free_sg_chain_blocks(h); /* clean6 */
8766 hpsa_free_cmd_pool(h); /* clean5 */
8767 /*
8768 * skip hpsa_free_irqs(h) clean4 since that
8769 * was just called before request_irqs failed
Robert Elliottd4987572015-04-23 09:34:37 -05008770 */
8771 goto clean3;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008772 }
8773
8774 rc = hpsa_kdump_soft_reset(h);
8775 if (rc)
8776 /* Neither hard nor soft reset worked, we're hosed. */
Don Brace7ef73232015-07-18 11:12:33 -05008777 goto clean7;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008778
8779 dev_info(&h->pdev->dev, "Board READY.\n");
8780 dev_info(&h->pdev->dev,
8781 "Waiting for stale completions to drain.\n");
8782 h->access.set_intr_mask(h, HPSA_INTR_ON);
8783 msleep(10000);
8784 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8785
8786 rc = controller_reset_failed(h->cfgtable);
8787 if (rc)
8788 dev_info(&h->pdev->dev,
8789 "Soft reset appears to have failed.\n");
8790
8791 /* since the controller's reset, we have to go back and re-init
8792 * everything. Easiest to just forget what we've done and do it
8793 * all over again.
8794 */
8795 hpsa_undo_allocations_after_kdump_soft_reset(h);
8796 try_soft_reset = 0;
8797 if (rc)
Robert Elliottb2ef4802015-04-23 09:34:48 -05008798 /* don't goto clean, we already unallocated */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008799 return -ENODEV;
8800
8801 goto reinit_after_soft_reset;
8802 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008803
Robert Elliott105a3db2015-04-23 09:33:48 -05008804 /* Enable Accelerated IO path at driver layer */
8805 h->acciopath_status = 1;
Scott Teel34592252015-11-04 15:52:09 -06008806 /* Disable discovery polling.*/
8807 h->discovery_polling = 0;
Scott Teelda0697b2014-02-18 13:57:00 -06008808
Scott Teele863d682014-02-18 13:57:05 -06008809
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008810 /* Turn the interrupts on so we can service requests */
8811 h->access.set_intr_mask(h, HPSA_INTR_ON);
8812
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06008813 hpsa_hba_inquiry(h);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008814
Scott Teel34592252015-11-04 15:52:09 -06008815 h->lastlogicals = kzalloc(sizeof(*(h->lastlogicals)), GFP_KERNEL);
8816 if (!h->lastlogicals)
8817 dev_info(&h->pdev->dev,
8818 "Can't track change to report lun data\n");
8819
Don Bracecf477232016-04-27 17:13:26 -05008820 /* hook into SCSI subsystem */
8821 rc = hpsa_scsi_add_host(h);
8822 if (rc)
8823 goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
8824
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008825 /* Monitor the controller for firmware lockups */
8826 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
8827 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
8828 schedule_delayed_work(&h->monitor_ctlr_work,
8829 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06008830 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
8831 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
8832 h->heartbeat_sample_interval);
Scott Teel3d38f002017-05-04 17:51:36 -05008833 INIT_DELAYED_WORK(&h->event_monitor_work, hpsa_event_monitor_worker);
8834 schedule_delayed_work(&h->event_monitor_work,
8835 HPSA_EVENT_MONITOR_INTERVAL);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05008836 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008837
Robert Elliott2946e822015-04-23 09:35:09 -05008838clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008839 hpsa_free_performant_mode(h);
8840 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8841clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06008842 hpsa_free_sg_chain_blocks(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008843clean5: /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008844 hpsa_free_cmd_pool(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008845clean4: /* irq, shost, pci, lu, aer/h */
Robert Elliottec501a12015-01-23 16:41:40 -06008846 hpsa_free_irqs(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008847clean3: /* shost, pci, lu, aer/h */
8848 scsi_host_put(h->scsi_host);
8849 h->scsi_host = NULL;
8850clean2_5: /* pci, lu, aer/h */
Robert Elliott195f2c62015-04-23 09:33:17 -05008851 hpsa_free_pci_init(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008852clean2: /* lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008853 if (h->lockup_detected) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008854 free_percpu(h->lockup_detected);
Robert Elliott105a3db2015-04-23 09:33:48 -05008855 h->lockup_detected = NULL;
8856 }
8857clean1: /* wq/aer/h */
8858 if (h->resubmit_wq) {
8859 destroy_workqueue(h->resubmit_wq);
8860 h->resubmit_wq = NULL;
8861 }
8862 if (h->rescan_ctlr_wq) {
8863 destroy_workqueue(h->rescan_ctlr_wq);
8864 h->rescan_ctlr_wq = NULL;
8865 }
Don Brace01192082019-05-07 13:32:07 -05008866 if (h->monitor_ctlr_wq) {
8867 destroy_workqueue(h->monitor_ctlr_wq);
8868 h->monitor_ctlr_wq = NULL;
8869 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008870 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008871 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008872}
8873
8874static void hpsa_flush_cache(struct ctlr_info *h)
8875{
8876 char *flush_buf;
8877 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008878 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008879
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008880 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008881 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008882 flush_buf = kzalloc(4, GFP_KERNEL);
8883 if (!flush_buf)
8884 return;
8885
Stephen Cameron45fcb862015-01-23 16:43:04 -06008886 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05008887
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008888 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
8889 RAID_CTLR_LUNID, TYPE_CMD)) {
8890 goto out;
8891 }
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008892 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_TO_DEVICE,
8893 DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05008894 if (rc)
8895 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008896 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008897out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008898 dev_warn(&h->pdev->dev,
8899 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06008900 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008901 kfree(flush_buf);
8902}
8903
Scott Teelc2adae42015-11-04 15:52:16 -06008904/* Make controller gather fresh report lun data each time we
8905 * send down a report luns request
8906 */
8907static void hpsa_disable_rld_caching(struct ctlr_info *h)
8908{
8909 u32 *options;
8910 struct CommandList *c;
8911 int rc;
8912
8913 /* Don't bother trying to set diag options if locked up */
8914 if (unlikely(h->lockup_detected))
8915 return;
8916
8917 options = kzalloc(sizeof(*options), GFP_KERNEL);
Amit Kushwaha7e8a9482016-12-12 16:34:21 +05308918 if (!options)
Scott Teelc2adae42015-11-04 15:52:16 -06008919 return;
Scott Teelc2adae42015-11-04 15:52:16 -06008920
8921 c = cmd_alloc(h);
8922
8923 /* first, get the current diag options settings */
8924 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8925 RAID_CTLR_LUNID, TYPE_CMD))
8926 goto errout;
8927
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008928 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
8929 NO_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06008930 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8931 goto errout;
8932
8933 /* Now, set the bit for disabling the RLD caching */
8934 *options |= HPSA_DIAG_OPTS_DISABLE_RLD_CACHING;
8935
8936 if (fill_cmd(c, BMIC_SET_DIAG_OPTIONS, h, options, 4, 0,
8937 RAID_CTLR_LUNID, TYPE_CMD))
8938 goto errout;
8939
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008940 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_TO_DEVICE,
8941 NO_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06008942 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8943 goto errout;
8944
8945 /* Now verify that it got set: */
8946 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8947 RAID_CTLR_LUNID, TYPE_CMD))
8948 goto errout;
8949
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02008950 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, DMA_FROM_DEVICE,
8951 NO_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06008952 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8953 goto errout;
8954
Dan Carpenterd8a080c2015-11-12 12:43:38 +03008955 if (*options & HPSA_DIAG_OPTS_DISABLE_RLD_CACHING)
Scott Teelc2adae42015-11-04 15:52:16 -06008956 goto out;
8957
8958errout:
8959 dev_err(&h->pdev->dev,
8960 "Error: failed to disable report lun data caching.\n");
8961out:
8962 cmd_free(h, c);
8963 kfree(options);
8964}
8965
Sinan Kaya0d98ba8d2018-06-02 00:28:53 -04008966static void __hpsa_shutdown(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008967{
8968 struct ctlr_info *h;
8969
8970 h = pci_get_drvdata(pdev);
8971 /* Turn board interrupts off and send the flush cache command
8972 * sendcmd will turn off interrupt, and send the flush...
8973 * To write all data in the battery backed cache to disks
8974 */
8975 hpsa_flush_cache(h);
8976 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliott105a3db2015-04-23 09:33:48 -05008977 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliottcc64c812015-04-23 09:33:12 -05008978 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008979}
8980
Sinan Kaya0d98ba8d2018-06-02 00:28:53 -04008981static void hpsa_shutdown(struct pci_dev *pdev)
8982{
8983 __hpsa_shutdown(pdev);
8984 pci_disable_device(pdev);
8985}
8986
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008987static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008988{
8989 int i;
8990
Robert Elliott105a3db2015-04-23 09:33:48 -05008991 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008992 kfree(h->dev[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008993 h->dev[i] = NULL;
8994 }
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008995}
8996
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008997static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008998{
8999 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009000 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009001
9002 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05009003 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009004 return;
9005 }
9006 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009007
9008 /* Get rid of any controller monitoring work items */
9009 spin_lock_irqsave(&h->lock, flags);
9010 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009011 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06009012 cancel_delayed_work_sync(&h->monitor_ctlr_work);
9013 cancel_delayed_work_sync(&h->rescan_ctlr_work);
Scott Teel3d38f002017-05-04 17:51:36 -05009014 cancel_delayed_work_sync(&h->event_monitor_work);
Don Brace6636e7f2015-01-23 16:45:17 -06009015 destroy_workqueue(h->rescan_ctlr_wq);
9016 destroy_workqueue(h->resubmit_wq);
Don Brace01192082019-05-07 13:32:07 -05009017 destroy_workqueue(h->monitor_ctlr_wq);
Robert Elliottcc64c812015-04-23 09:33:12 -05009018
Martin Wilckdfb2e6f2017-10-20 16:51:08 -05009019 hpsa_delete_sas_host(h);
9020
Don Brace2d041302015-07-18 11:13:15 -05009021 /*
9022 * Call before disabling interrupts.
9023 * scsi_remove_host can trigger I/O operations especially
9024 * when multipath is enabled. There can be SYNCHRONIZE CACHE
9025 * operations which cannot complete and will hang the system.
9026 */
9027 if (h->scsi_host)
9028 scsi_remove_host(h->scsi_host); /* init_one 8 */
Robert Elliott105a3db2015-04-23 09:33:48 -05009029 /* includes hpsa_free_irqs - init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009030 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Sinan Kaya0d98ba8d2018-06-02 00:28:53 -04009031 __hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05009032
Robert Elliott105a3db2015-04-23 09:33:48 -05009033 hpsa_free_device_info(h); /* scan */
9034
Robert Elliott2946e822015-04-23 09:35:09 -05009035 kfree(h->hba_inquiry_data); /* init_one 10 */
9036 h->hba_inquiry_data = NULL; /* init_one 10 */
Robert Elliott2946e822015-04-23 09:35:09 -05009037 hpsa_free_ioaccel2_sg_chain_blocks(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05009038 hpsa_free_performant_mode(h); /* init_one 7 */
9039 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
9040 hpsa_free_cmd_pool(h); /* init_one 5 */
Scott Teel34592252015-11-04 15:52:09 -06009041 kfree(h->lastlogicals);
Robert Elliott105a3db2015-04-23 09:33:48 -05009042
9043 /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009044
Robert Elliott2946e822015-04-23 09:35:09 -05009045 scsi_host_put(h->scsi_host); /* init_one 3 */
9046 h->scsi_host = NULL; /* init_one 3 */
9047
Robert Elliott195f2c62015-04-23 09:33:17 -05009048 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Robert Elliott2946e822015-04-23 09:35:09 -05009049 hpsa_free_pci_init(h); /* init_one 2.5 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009050
Robert Elliott105a3db2015-04-23 09:33:48 -05009051 free_percpu(h->lockup_detected); /* init_one 2 */
9052 h->lockup_detected = NULL; /* init_one 2 */
9053 /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009054
Ming Lei8b834bf2018-03-13 17:42:39 +08009055 hpda_free_ctlr_info(h); /* init_one 1 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009056}
9057
9058static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
9059 __attribute__((unused)) pm_message_t state)
9060{
9061 return -ENOSYS;
9062}
9063
9064static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
9065{
9066 return -ENOSYS;
9067}
9068
9069static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06009070 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009071 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009072 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009073 .id_table = hpsa_pci_device_id, /* id_table */
9074 .shutdown = hpsa_shutdown,
9075 .suspend = hpsa_suspend,
9076 .resume = hpsa_resume,
9077};
9078
Don Brace303932f2010-02-04 08:42:40 -06009079/* Fill in bucket_map[], given nsgs (the max number of
9080 * scatter gather elements supported) and bucket[],
9081 * which is an array of 8 integers. The bucket[] array
9082 * contains 8 different DMA transfer sizes (in 16
9083 * byte increments) which the controller uses to fetch
9084 * commands. This function fills in bucket_map[], which
9085 * maps a given number of scatter gather elements to one of
9086 * the 8 DMA transfer sizes. The point of it is to allow the
9087 * controller to only do as much DMA as needed to fetch the
9088 * command, with the DMA transfer size encoded in the lower
9089 * bits of the command address.
9090 */
9091static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06009092 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06009093{
9094 int i, j, b, size;
9095
Don Brace303932f2010-02-04 08:42:40 -06009096 /* Note, bucket_map must have nsgs+1 entries. */
9097 for (i = 0; i <= nsgs; i++) {
9098 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06009099 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06009100 b = num_buckets; /* Assume the biggest bucket */
9101 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06009102 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06009103 if (bucket[j] >= size) {
9104 b = j;
9105 break;
9106 }
9107 }
9108 /* for a command with i SG entries, use bucket b. */
9109 bucket_map[i] = b;
9110 }
9111}
9112
Robert Elliott105a3db2015-04-23 09:33:48 -05009113/*
9114 * return -ENODEV on err, 0 on success (or no action)
9115 * allocates numerous items that must be freed later
9116 */
Robert Elliottc706a792015-01-23 16:45:01 -06009117static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06009118{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009119 int i;
9120 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06009121 unsigned long transMethod = CFGTBL_Trans_Performant |
9122 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009123 CFGTBL_Trans_enable_directed_msix |
9124 (trans_support & (CFGTBL_Trans_io_accel1 |
9125 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06009126 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05009127
9128 /* This is a bit complicated. There are 8 registers on
9129 * the controller which we write to to tell it 8 different
9130 * sizes of commands which there may be. It's a way of
9131 * reducing the DMA done to fetch each command. Encoded into
9132 * each command's tag are 3 bits which communicate to the controller
9133 * which of the eight sizes that command fits within. The size of
9134 * each command depends on how many scatter gather entries there are.
9135 * Each SG entry requires 16 bytes. The eight registers are programmed
9136 * with the number of 16-byte blocks a command of that size requires.
9137 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009138 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05009139 * blocks. Note, this only extends to the SG entries contained
9140 * within the command block, and does not extend to chained blocks
9141 * of SG elements. bft[] contains the eight values we write to
9142 * the registers. They are not evenly distributed, but have more
9143 * sizes for small commands, and fewer sizes for larger commands.
9144 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009145 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009146#define MIN_IOACCEL2_BFT_ENTRY 5
9147#define HPSA_IOACCEL2_HEADER_SZ 4
9148 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
9149 13, 14, 15, 16, 17, 18, 19,
9150 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
9151 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
9152 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
9153 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
9154 16 * MIN_IOACCEL2_BFT_ENTRY);
9155 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009156 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06009157 /* 5 = 1 s/g entry or 4k
9158 * 6 = 2 s/g entry or 8k
9159 * 8 = 4 s/g entry or 16k
9160 * 10 = 6 s/g entry or 24k
9161 */
Don Brace303932f2010-02-04 08:42:40 -06009162
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05009163 /* If the controller supports either ioaccel method then
9164 * we can also use the RAID stack submit path that does not
9165 * perform the superfluous readl() after each command submission.
9166 */
9167 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
9168 access = SA5_performant_access_no_read;
9169
Don Brace303932f2010-02-04 08:42:40 -06009170 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009171 for (i = 0; i < h->nreply_queues; i++)
9172 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06009173
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009174 bft[7] = SG_ENTRIES_IN_CMD + 4;
9175 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06009176 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06009177 for (i = 0; i < 8; i++)
9178 writel(bft[i], &h->transtable->BlockFetch[i]);
9179
9180 /* size of controller ring buffer */
9181 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05009182 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06009183 writel(0, &h->transtable->RepQCtrAddrLow32);
9184 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05009185
9186 for (i = 0; i < h->nreply_queues; i++) {
9187 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009188 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05009189 &h->transtable->RepQAddr[i].lower);
9190 }
9191
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009192 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06009193 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
9194 /*
9195 * enable outbound interrupt coalescing in accelerator mode;
9196 */
9197 if (trans_support & CFGTBL_Trans_io_accel1) {
9198 access = SA5_ioaccel_mode1_access;
9199 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
9200 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Don Brace96b6ce42017-01-30 16:05:17 -06009201 } else
9202 if (trans_support & CFGTBL_Trans_io_accel2)
Scott Teelc3497752014-02-18 13:56:34 -06009203 access = SA5_ioaccel_mode2_access;
Don Brace303932f2010-02-04 08:42:40 -06009204 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06009205 if (hpsa_wait_for_mode_change_ack(h)) {
9206 dev_err(&h->pdev->dev,
9207 "performant mode problem - doorbell timeout\n");
9208 return -ENODEV;
9209 }
Don Brace303932f2010-02-04 08:42:40 -06009210 register_value = readl(&(h->cfgtable->TransportActive));
9211 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06009212 dev_err(&h->pdev->dev,
9213 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06009214 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06009215 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06009216 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06009217 h->access = access;
9218 h->transMethod = transMethod;
9219
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009220 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
9221 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06009222 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06009223
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009224 if (trans_support & CFGTBL_Trans_io_accel1) {
9225 /* Set up I/O accelerator mode */
9226 for (i = 0; i < h->nreply_queues; i++) {
9227 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
9228 h->reply_queue[i].current_entry =
9229 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
9230 }
9231 bft[7] = h->ioaccel_maxsg + 8;
9232 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
9233 h->ioaccel1_blockFetchTable);
9234
9235 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009236 for (i = 0; i < h->nreply_queues; i++)
9237 memset(h->reply_queue[i].head,
9238 (u8) IOACCEL_MODE1_REPLY_UNUSED,
9239 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009240
9241 /* set all the constant fields in the accelerator command
9242 * frames once at init time to save CPU cycles later.
9243 */
9244 for (i = 0; i < h->nr_cmds; i++) {
9245 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
9246
9247 cp->function = IOACCEL1_FUNCTION_SCSIIO;
9248 cp->err_info = (u32) (h->errinfo_pool_dhandle +
9249 (i * sizeof(struct ErrorInfo)));
9250 cp->err_info_len = sizeof(struct ErrorInfo);
9251 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06009252 cp->host_context_flags =
9253 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009254 cp->timeout_sec = 0;
9255 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009256 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06009257 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009258 cp->host_addr =
9259 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009260 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009261 }
9262 } else if (trans_support & CFGTBL_Trans_io_accel2) {
9263 u64 cfg_offset, cfg_base_addr_index;
9264 u32 bft2_offset, cfg_base_addr;
9265 int rc;
9266
9267 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
9268 &cfg_base_addr_index, &cfg_offset);
9269 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
9270 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
9271 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
9272 4, h->ioaccel2_blockFetchTable);
9273 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
9274 BUILD_BUG_ON(offsetof(struct CfgTable,
9275 io_accel_request_size_offset) != 0xb8);
9276 h->ioaccel2_bft2_regs =
9277 remap_pci_mem(pci_resource_start(h->pdev,
9278 cfg_base_addr_index) +
9279 cfg_offset + bft2_offset,
9280 ARRAY_SIZE(bft2) *
9281 sizeof(*h->ioaccel2_bft2_regs));
9282 for (i = 0; i < ARRAY_SIZE(bft2); i++)
9283 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06009284 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009285 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06009286 if (hpsa_wait_for_mode_change_ack(h)) {
9287 dev_err(&h->pdev->dev,
9288 "performant mode problem - enabling ioaccel mode\n");
9289 return -ENODEV;
9290 }
9291 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06009292}
9293
Robert Elliott1fb7c982015-04-23 09:33:22 -05009294/* Free ioaccel1 mode command blocks and block fetch table */
9295static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
9296{
Robert Elliott105a3db2015-04-23 09:33:48 -05009297 if (h->ioaccel_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05009298 pci_free_consistent(h->pdev,
9299 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
9300 h->ioaccel_cmd_pool,
9301 h->ioaccel_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05009302 h->ioaccel_cmd_pool = NULL;
9303 h->ioaccel_cmd_pool_dhandle = 0;
9304 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05009305 kfree(h->ioaccel1_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009306 h->ioaccel1_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05009307}
9308
Robert Elliottd37ffbe2015-04-23 09:32:27 -05009309/* Allocate ioaccel1 mode command blocks and block fetch table */
9310static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06009311{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06009312 h->ioaccel_maxsg =
9313 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
9314 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
9315 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
9316
Matt Gatese1f7de02014-02-18 13:55:17 -06009317 /* Command structures must be aligned on a 128-byte boundary
9318 * because the 7 lower bits of the address are used by the
9319 * hardware.
9320 */
Matt Gatese1f7de02014-02-18 13:55:17 -06009321 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
9322 IOACCEL1_COMMANDLIST_ALIGNMENT);
9323 h->ioaccel_cmd_pool =
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02009324 dma_alloc_coherent(&h->pdev->dev,
Matt Gatese1f7de02014-02-18 13:55:17 -06009325 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02009326 &h->ioaccel_cmd_pool_dhandle, GFP_KERNEL);
Matt Gatese1f7de02014-02-18 13:55:17 -06009327
9328 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06009329 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06009330 sizeof(u32)), GFP_KERNEL);
9331
9332 if ((h->ioaccel_cmd_pool == NULL) ||
9333 (h->ioaccel1_blockFetchTable == NULL))
9334 goto clean_up;
9335
9336 memset(h->ioaccel_cmd_pool, 0,
9337 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
9338 return 0;
9339
9340clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05009341 hpsa_free_ioaccel1_cmd_and_bft(h);
Robert Elliott2dd02d72015-04-23 09:33:43 -05009342 return -ENOMEM;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009343}
9344
Robert Elliott1fb7c982015-04-23 09:33:22 -05009345/* Free ioaccel2 mode command blocks and block fetch table */
9346static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
9347{
Webb Scalesd9a729f2015-04-23 09:33:27 -05009348 hpsa_free_ioaccel2_sg_chain_blocks(h);
9349
Robert Elliott105a3db2015-04-23 09:33:48 -05009350 if (h->ioaccel2_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05009351 pci_free_consistent(h->pdev,
9352 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
9353 h->ioaccel2_cmd_pool,
9354 h->ioaccel2_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05009355 h->ioaccel2_cmd_pool = NULL;
9356 h->ioaccel2_cmd_pool_dhandle = 0;
9357 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05009358 kfree(h->ioaccel2_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009359 h->ioaccel2_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05009360}
9361
Robert Elliottd37ffbe2015-04-23 09:32:27 -05009362/* Allocate ioaccel2 mode command blocks and block fetch table */
9363static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009364{
Webb Scalesd9a729f2015-04-23 09:33:27 -05009365 int rc;
9366
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009367 /* Allocate ioaccel2 mode command blocks and block fetch table */
9368
9369 h->ioaccel_maxsg =
9370 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
9371 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
9372 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
9373
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009374 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
9375 IOACCEL2_COMMANDLIST_ALIGNMENT);
9376 h->ioaccel2_cmd_pool =
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02009377 dma_alloc_coherent(&h->pdev->dev,
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009378 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02009379 &h->ioaccel2_cmd_pool_dhandle, GFP_KERNEL);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009380
9381 h->ioaccel2_blockFetchTable =
9382 kmalloc(((h->ioaccel_maxsg + 1) *
9383 sizeof(u32)), GFP_KERNEL);
9384
9385 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05009386 (h->ioaccel2_blockFetchTable == NULL)) {
9387 rc = -ENOMEM;
9388 goto clean_up;
9389 }
9390
9391 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
9392 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009393 goto clean_up;
9394
9395 memset(h->ioaccel2_cmd_pool, 0,
9396 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
9397 return 0;
9398
9399clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05009400 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05009401 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009402}
9403
Robert Elliott105a3db2015-04-23 09:33:48 -05009404/* Free items allocated by hpsa_put_ctlr_into_performant_mode */
9405static void hpsa_free_performant_mode(struct ctlr_info *h)
9406{
9407 kfree(h->blockFetchTable);
9408 h->blockFetchTable = NULL;
9409 hpsa_free_reply_queues(h);
9410 hpsa_free_ioaccel1_cmd_and_bft(h);
9411 hpsa_free_ioaccel2_cmd_and_bft(h);
9412}
9413
9414/* return -ENODEV on error, 0 on success (or no action)
9415 * allocates numerous items that must be freed later
9416 */
9417static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009418{
9419 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06009420 unsigned long transMethod = CFGTBL_Trans_Performant |
9421 CFGTBL_Trans_use_short_tags;
Robert Elliott105a3db2015-04-23 09:33:48 -05009422 int i, rc;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009423
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06009424 if (hpsa_simple_mode)
Robert Elliott105a3db2015-04-23 09:33:48 -05009425 return 0;
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06009426
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05009427 trans_support = readl(&(h->cfgtable->TransportSupport));
9428 if (!(trans_support & PERFORMANT_MODE))
Robert Elliott105a3db2015-04-23 09:33:48 -05009429 return 0;
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05009430
Matt Gatese1f7de02014-02-18 13:55:17 -06009431 /* Check for I/O accelerator mode support */
9432 if (trans_support & CFGTBL_Trans_io_accel1) {
9433 transMethod |= CFGTBL_Trans_io_accel1 |
9434 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05009435 rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
9436 if (rc)
9437 return rc;
9438 } else if (trans_support & CFGTBL_Trans_io_accel2) {
9439 transMethod |= CFGTBL_Trans_io_accel2 |
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009440 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05009441 rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
9442 if (rc)
9443 return rc;
Matt Gatese1f7de02014-02-18 13:55:17 -06009444 }
9445
Christoph Hellwigbc2bb152016-11-09 10:42:22 -08009446 h->nreply_queues = h->msix_vectors > 0 ? h->msix_vectors : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05009447 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009448 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009449 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009450
Matt Gates254f7962012-05-01 11:43:06 -05009451 for (i = 0; i < h->nreply_queues; i++) {
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02009452 h->reply_queue[i].head = dma_alloc_coherent(&h->pdev->dev,
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009453 h->reply_queue_size,
Christoph Hellwig8bc8f472018-10-10 18:56:15 +02009454 &h->reply_queue[i].busaddr,
9455 GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05009456 if (!h->reply_queue[i].head) {
9457 rc = -ENOMEM;
9458 goto clean1; /* rq, ioaccel */
9459 }
Matt Gates254f7962012-05-01 11:43:06 -05009460 h->reply_queue[i].size = h->max_commands;
9461 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
9462 h->reply_queue[i].current_entry = 0;
9463 }
9464
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009465 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009466 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009467 sizeof(u32)), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05009468 if (!h->blockFetchTable) {
9469 rc = -ENOMEM;
9470 goto clean1; /* rq, ioaccel */
9471 }
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009472
Robert Elliott105a3db2015-04-23 09:33:48 -05009473 rc = hpsa_enter_performant_mode(h, trans_support);
9474 if (rc)
9475 goto clean2; /* bft, rq, ioaccel */
9476 return 0;
Don Brace303932f2010-02-04 08:42:40 -06009477
Robert Elliott105a3db2015-04-23 09:33:48 -05009478clean2: /* bft, rq, ioaccel */
Don Brace303932f2010-02-04 08:42:40 -06009479 kfree(h->blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009480 h->blockFetchTable = NULL;
9481clean1: /* rq, ioaccel */
9482 hpsa_free_reply_queues(h);
9483 hpsa_free_ioaccel1_cmd_and_bft(h);
9484 hpsa_free_ioaccel2_cmd_and_bft(h);
9485 return rc;
Don Brace303932f2010-02-04 08:42:40 -06009486}
9487
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009488static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009489{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009490 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
9491}
9492
9493static void hpsa_drain_accel_commands(struct ctlr_info *h)
9494{
9495 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06009496 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06009497 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009498
Don Bracef2405db2015-01-23 16:43:09 -06009499 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009500 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06009501 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06009502 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06009503 refcount = atomic_inc_return(&c->refcount);
9504 if (refcount > 1) /* Command is allocated */
9505 accel_cmds_out += is_accelerated_cmd(c);
9506 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06009507 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009508 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06009509 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009510 msleep(100);
9511 } while (1);
9512}
9513
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009514static struct hpsa_sas_phy *hpsa_alloc_sas_phy(
9515 struct hpsa_sas_port *hpsa_sas_port)
9516{
9517 struct hpsa_sas_phy *hpsa_sas_phy;
9518 struct sas_phy *phy;
9519
9520 hpsa_sas_phy = kzalloc(sizeof(*hpsa_sas_phy), GFP_KERNEL);
9521 if (!hpsa_sas_phy)
9522 return NULL;
9523
9524 phy = sas_phy_alloc(hpsa_sas_port->parent_node->parent_dev,
9525 hpsa_sas_port->next_phy_index);
9526 if (!phy) {
9527 kfree(hpsa_sas_phy);
9528 return NULL;
9529 }
9530
9531 hpsa_sas_port->next_phy_index++;
9532 hpsa_sas_phy->phy = phy;
9533 hpsa_sas_phy->parent_port = hpsa_sas_port;
9534
9535 return hpsa_sas_phy;
9536}
9537
9538static void hpsa_free_sas_phy(struct hpsa_sas_phy *hpsa_sas_phy)
9539{
9540 struct sas_phy *phy = hpsa_sas_phy->phy;
9541
9542 sas_port_delete_phy(hpsa_sas_phy->parent_port->port, phy);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009543 if (hpsa_sas_phy->added_to_port)
9544 list_del(&hpsa_sas_phy->phy_list_entry);
Martin Wilck55ca38b2017-10-20 16:51:14 -05009545 sas_phy_delete(phy);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009546 kfree(hpsa_sas_phy);
9547}
9548
9549static int hpsa_sas_port_add_phy(struct hpsa_sas_phy *hpsa_sas_phy)
9550{
9551 int rc;
9552 struct hpsa_sas_port *hpsa_sas_port;
9553 struct sas_phy *phy;
9554 struct sas_identify *identify;
9555
9556 hpsa_sas_port = hpsa_sas_phy->parent_port;
9557 phy = hpsa_sas_phy->phy;
9558
9559 identify = &phy->identify;
9560 memset(identify, 0, sizeof(*identify));
9561 identify->sas_address = hpsa_sas_port->sas_address;
9562 identify->device_type = SAS_END_DEVICE;
9563 identify->initiator_port_protocols = SAS_PROTOCOL_STP;
9564 identify->target_port_protocols = SAS_PROTOCOL_STP;
9565 phy->minimum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
9566 phy->maximum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
9567 phy->minimum_linkrate = SAS_LINK_RATE_UNKNOWN;
9568 phy->maximum_linkrate = SAS_LINK_RATE_UNKNOWN;
9569 phy->negotiated_linkrate = SAS_LINK_RATE_UNKNOWN;
9570
9571 rc = sas_phy_add(hpsa_sas_phy->phy);
9572 if (rc)
9573 return rc;
9574
9575 sas_port_add_phy(hpsa_sas_port->port, hpsa_sas_phy->phy);
9576 list_add_tail(&hpsa_sas_phy->phy_list_entry,
9577 &hpsa_sas_port->phy_list_head);
9578 hpsa_sas_phy->added_to_port = true;
9579
9580 return 0;
9581}
9582
9583static int
9584 hpsa_sas_port_add_rphy(struct hpsa_sas_port *hpsa_sas_port,
9585 struct sas_rphy *rphy)
9586{
9587 struct sas_identify *identify;
9588
9589 identify = &rphy->identify;
9590 identify->sas_address = hpsa_sas_port->sas_address;
9591 identify->initiator_port_protocols = SAS_PROTOCOL_STP;
9592 identify->target_port_protocols = SAS_PROTOCOL_STP;
9593
9594 return sas_rphy_add(rphy);
9595}
9596
9597static struct hpsa_sas_port
9598 *hpsa_alloc_sas_port(struct hpsa_sas_node *hpsa_sas_node,
9599 u64 sas_address)
9600{
9601 int rc;
9602 struct hpsa_sas_port *hpsa_sas_port;
9603 struct sas_port *port;
9604
9605 hpsa_sas_port = kzalloc(sizeof(*hpsa_sas_port), GFP_KERNEL);
9606 if (!hpsa_sas_port)
9607 return NULL;
9608
9609 INIT_LIST_HEAD(&hpsa_sas_port->phy_list_head);
9610 hpsa_sas_port->parent_node = hpsa_sas_node;
9611
9612 port = sas_port_alloc_num(hpsa_sas_node->parent_dev);
9613 if (!port)
9614 goto free_hpsa_port;
9615
9616 rc = sas_port_add(port);
9617 if (rc)
9618 goto free_sas_port;
9619
9620 hpsa_sas_port->port = port;
9621 hpsa_sas_port->sas_address = sas_address;
9622 list_add_tail(&hpsa_sas_port->port_list_entry,
9623 &hpsa_sas_node->port_list_head);
9624
9625 return hpsa_sas_port;
9626
9627free_sas_port:
9628 sas_port_free(port);
9629free_hpsa_port:
9630 kfree(hpsa_sas_port);
9631
9632 return NULL;
9633}
9634
9635static void hpsa_free_sas_port(struct hpsa_sas_port *hpsa_sas_port)
9636{
9637 struct hpsa_sas_phy *hpsa_sas_phy;
9638 struct hpsa_sas_phy *next;
9639
9640 list_for_each_entry_safe(hpsa_sas_phy, next,
9641 &hpsa_sas_port->phy_list_head, phy_list_entry)
9642 hpsa_free_sas_phy(hpsa_sas_phy);
9643
9644 sas_port_delete(hpsa_sas_port->port);
9645 list_del(&hpsa_sas_port->port_list_entry);
9646 kfree(hpsa_sas_port);
9647}
9648
9649static struct hpsa_sas_node *hpsa_alloc_sas_node(struct device *parent_dev)
9650{
9651 struct hpsa_sas_node *hpsa_sas_node;
9652
9653 hpsa_sas_node = kzalloc(sizeof(*hpsa_sas_node), GFP_KERNEL);
9654 if (hpsa_sas_node) {
9655 hpsa_sas_node->parent_dev = parent_dev;
9656 INIT_LIST_HEAD(&hpsa_sas_node->port_list_head);
9657 }
9658
9659 return hpsa_sas_node;
9660}
9661
9662static void hpsa_free_sas_node(struct hpsa_sas_node *hpsa_sas_node)
9663{
9664 struct hpsa_sas_port *hpsa_sas_port;
9665 struct hpsa_sas_port *next;
9666
9667 if (!hpsa_sas_node)
9668 return;
9669
9670 list_for_each_entry_safe(hpsa_sas_port, next,
9671 &hpsa_sas_node->port_list_head, port_list_entry)
9672 hpsa_free_sas_port(hpsa_sas_port);
9673
9674 kfree(hpsa_sas_node);
9675}
9676
9677static struct hpsa_scsi_dev_t
9678 *hpsa_find_device_by_sas_rphy(struct ctlr_info *h,
9679 struct sas_rphy *rphy)
9680{
9681 int i;
9682 struct hpsa_scsi_dev_t *device;
9683
9684 for (i = 0; i < h->ndevices; i++) {
9685 device = h->dev[i];
9686 if (!device->sas_port)
9687 continue;
9688 if (device->sas_port->rphy == rphy)
9689 return device;
9690 }
9691
9692 return NULL;
9693}
9694
9695static int hpsa_add_sas_host(struct ctlr_info *h)
9696{
9697 int rc;
9698 struct device *parent_dev;
9699 struct hpsa_sas_node *hpsa_sas_node;
9700 struct hpsa_sas_port *hpsa_sas_port;
9701 struct hpsa_sas_phy *hpsa_sas_phy;
9702
Don Brace0a7c3bb2017-10-20 16:52:10 -05009703 parent_dev = &h->scsi_host->shost_dev;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009704
9705 hpsa_sas_node = hpsa_alloc_sas_node(parent_dev);
9706 if (!hpsa_sas_node)
9707 return -ENOMEM;
9708
9709 hpsa_sas_port = hpsa_alloc_sas_port(hpsa_sas_node, h->sas_address);
9710 if (!hpsa_sas_port) {
9711 rc = -ENODEV;
9712 goto free_sas_node;
9713 }
9714
9715 hpsa_sas_phy = hpsa_alloc_sas_phy(hpsa_sas_port);
9716 if (!hpsa_sas_phy) {
9717 rc = -ENODEV;
9718 goto free_sas_port;
9719 }
9720
9721 rc = hpsa_sas_port_add_phy(hpsa_sas_phy);
9722 if (rc)
9723 goto free_sas_phy;
9724
9725 h->sas_host = hpsa_sas_node;
9726
9727 return 0;
9728
9729free_sas_phy:
9730 hpsa_free_sas_phy(hpsa_sas_phy);
9731free_sas_port:
9732 hpsa_free_sas_port(hpsa_sas_port);
9733free_sas_node:
9734 hpsa_free_sas_node(hpsa_sas_node);
9735
9736 return rc;
9737}
9738
9739static void hpsa_delete_sas_host(struct ctlr_info *h)
9740{
9741 hpsa_free_sas_node(h->sas_host);
9742}
9743
9744static int hpsa_add_sas_device(struct hpsa_sas_node *hpsa_sas_node,
9745 struct hpsa_scsi_dev_t *device)
9746{
9747 int rc;
9748 struct hpsa_sas_port *hpsa_sas_port;
9749 struct sas_rphy *rphy;
9750
9751 hpsa_sas_port = hpsa_alloc_sas_port(hpsa_sas_node, device->sas_address);
9752 if (!hpsa_sas_port)
9753 return -ENOMEM;
9754
9755 rphy = sas_end_device_alloc(hpsa_sas_port->port);
9756 if (!rphy) {
9757 rc = -ENODEV;
9758 goto free_sas_port;
9759 }
9760
9761 hpsa_sas_port->rphy = rphy;
9762 device->sas_port = hpsa_sas_port;
9763
9764 rc = hpsa_sas_port_add_rphy(hpsa_sas_port, rphy);
9765 if (rc)
9766 goto free_sas_port;
9767
9768 return 0;
9769
9770free_sas_port:
9771 hpsa_free_sas_port(hpsa_sas_port);
9772 device->sas_port = NULL;
9773
9774 return rc;
9775}
9776
9777static void hpsa_remove_sas_device(struct hpsa_scsi_dev_t *device)
9778{
9779 if (device->sas_port) {
9780 hpsa_free_sas_port(device->sas_port);
9781 device->sas_port = NULL;
9782 }
9783}
9784
9785static int
9786hpsa_sas_get_linkerrors(struct sas_phy *phy)
9787{
9788 return 0;
9789}
9790
9791static int
9792hpsa_sas_get_enclosure_identifier(struct sas_rphy *rphy, u64 *identifier)
9793{
Don Brace01d0e782018-07-03 17:34:48 -05009794 struct Scsi_Host *shost = phy_to_shost(rphy);
9795 struct ctlr_info *h;
9796 struct hpsa_scsi_dev_t *sd;
9797
9798 if (!shost)
9799 return -ENXIO;
9800
9801 h = shost_to_hba(shost);
9802
9803 if (!h)
9804 return -ENXIO;
9805
9806 sd = hpsa_find_device_by_sas_rphy(h, rphy);
9807 if (!sd)
9808 return -ENXIO;
9809
9810 *identifier = sd->eli;
9811
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009812 return 0;
9813}
9814
9815static int
9816hpsa_sas_get_bay_identifier(struct sas_rphy *rphy)
9817{
9818 return -ENXIO;
9819}
9820
9821static int
9822hpsa_sas_phy_reset(struct sas_phy *phy, int hard_reset)
9823{
9824 return 0;
9825}
9826
9827static int
9828hpsa_sas_phy_enable(struct sas_phy *phy, int enable)
9829{
9830 return 0;
9831}
9832
9833static int
9834hpsa_sas_phy_setup(struct sas_phy *phy)
9835{
9836 return 0;
9837}
9838
9839static void
9840hpsa_sas_phy_release(struct sas_phy *phy)
9841{
9842}
9843
9844static int
9845hpsa_sas_phy_speed(struct sas_phy *phy, struct sas_phy_linkrates *rates)
9846{
9847 return -EINVAL;
9848}
9849
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009850static struct sas_function_template hpsa_sas_transport_functions = {
9851 .get_linkerrors = hpsa_sas_get_linkerrors,
9852 .get_enclosure_identifier = hpsa_sas_get_enclosure_identifier,
9853 .get_bay_identifier = hpsa_sas_get_bay_identifier,
9854 .phy_reset = hpsa_sas_phy_reset,
9855 .phy_enable = hpsa_sas_phy_enable,
9856 .phy_setup = hpsa_sas_phy_setup,
9857 .phy_release = hpsa_sas_phy_release,
9858 .set_phy_speed = hpsa_sas_phy_speed,
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009859};
9860
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009861/*
9862 * This is it. Register the PCI driver information for the cards we control
9863 * the OS will call our registered routines when it finds one of our cards.
9864 */
9865static int __init hpsa_init(void)
9866{
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009867 int rc;
9868
9869 hpsa_sas_transport_template =
9870 sas_attach_transport(&hpsa_sas_transport_functions);
9871 if (!hpsa_sas_transport_template)
9872 return -ENODEV;
9873
9874 rc = pci_register_driver(&hpsa_pci_driver);
9875
9876 if (rc)
9877 sas_release_transport(hpsa_sas_transport_template);
9878
9879 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009880}
9881
9882static void __exit hpsa_cleanup(void)
9883{
9884 pci_unregister_driver(&hpsa_pci_driver);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009885 sas_release_transport(hpsa_sas_transport_template);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009886}
9887
Matt Gatese1f7de02014-02-18 13:55:17 -06009888static void __attribute__((unused)) verify_offsets(void)
9889{
9890#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06009891 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
9892
9893 VERIFY_OFFSET(structure_size, 0);
9894 VERIFY_OFFSET(volume_blk_size, 4);
9895 VERIFY_OFFSET(volume_blk_cnt, 8);
9896 VERIFY_OFFSET(phys_blk_shift, 16);
9897 VERIFY_OFFSET(parity_rotation_shift, 17);
9898 VERIFY_OFFSET(strip_size, 18);
9899 VERIFY_OFFSET(disk_starting_blk, 20);
9900 VERIFY_OFFSET(disk_blk_cnt, 28);
9901 VERIFY_OFFSET(data_disks_per_row, 36);
9902 VERIFY_OFFSET(metadata_disks_per_row, 38);
9903 VERIFY_OFFSET(row_cnt, 40);
9904 VERIFY_OFFSET(layout_map_count, 42);
9905 VERIFY_OFFSET(flags, 44);
9906 VERIFY_OFFSET(dekindex, 46);
9907 /* VERIFY_OFFSET(reserved, 48 */
9908 VERIFY_OFFSET(data, 64);
9909
9910#undef VERIFY_OFFSET
9911
9912#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06009913 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
9914
9915 VERIFY_OFFSET(IU_type, 0);
9916 VERIFY_OFFSET(direction, 1);
9917 VERIFY_OFFSET(reply_queue, 2);
9918 /* VERIFY_OFFSET(reserved1, 3); */
9919 VERIFY_OFFSET(scsi_nexus, 4);
9920 VERIFY_OFFSET(Tag, 8);
9921 VERIFY_OFFSET(cdb, 16);
9922 VERIFY_OFFSET(cciss_lun, 32);
9923 VERIFY_OFFSET(data_len, 40);
9924 VERIFY_OFFSET(cmd_priority_task_attr, 44);
9925 VERIFY_OFFSET(sg_count, 45);
9926 /* VERIFY_OFFSET(reserved3 */
9927 VERIFY_OFFSET(err_ptr, 48);
9928 VERIFY_OFFSET(err_len, 56);
9929 /* VERIFY_OFFSET(reserved4 */
9930 VERIFY_OFFSET(sg, 64);
9931
9932#undef VERIFY_OFFSET
9933
9934#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06009935 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
9936
9937 VERIFY_OFFSET(dev_handle, 0x00);
9938 VERIFY_OFFSET(reserved1, 0x02);
9939 VERIFY_OFFSET(function, 0x03);
9940 VERIFY_OFFSET(reserved2, 0x04);
9941 VERIFY_OFFSET(err_info, 0x0C);
9942 VERIFY_OFFSET(reserved3, 0x10);
9943 VERIFY_OFFSET(err_info_len, 0x12);
9944 VERIFY_OFFSET(reserved4, 0x13);
9945 VERIFY_OFFSET(sgl_offset, 0x14);
9946 VERIFY_OFFSET(reserved5, 0x15);
9947 VERIFY_OFFSET(transfer_len, 0x1C);
9948 VERIFY_OFFSET(reserved6, 0x20);
9949 VERIFY_OFFSET(io_flags, 0x24);
9950 VERIFY_OFFSET(reserved7, 0x26);
9951 VERIFY_OFFSET(LUN, 0x34);
9952 VERIFY_OFFSET(control, 0x3C);
9953 VERIFY_OFFSET(CDB, 0x40);
9954 VERIFY_OFFSET(reserved8, 0x50);
9955 VERIFY_OFFSET(host_context_flags, 0x60);
9956 VERIFY_OFFSET(timeout_sec, 0x62);
9957 VERIFY_OFFSET(ReplyQueue, 0x64);
9958 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009959 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06009960 VERIFY_OFFSET(host_addr, 0x70);
9961 VERIFY_OFFSET(CISS_LUN, 0x78);
9962 VERIFY_OFFSET(SG, 0x78 + 8);
9963#undef VERIFY_OFFSET
9964}
9965
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009966module_init(hpsa_init);
9967module_exit(hpsa_cleanup);