blob: 99623701fc3de3076cb13dbb6356d6c49470e033 [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
Don Brace94c7bc32016-02-23 15:16:46 -06003 * Copyright 2016 Microsemi Corporation
Don Brace1358f6d2015-07-18 11:12:38 -05004 * Copyright 2014-2015 PMC-Sierra, Inc.
5 * Copyright 2000,2009-2015 Hewlett-Packard Development Company, L.P.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
14 * NON INFRINGEMENT. See the GNU General Public License for more details.
15 *
Don Brace94c7bc32016-02-23 15:16:46 -060016 * Questions/Comments/Bugfixes to esc.storagedev@microsemi.com
Stephen M. Cameronedd16362009-12-08 14:09:11 -080017 *
18 */
19
20#include <linux/module.h>
21#include <linux/interrupt.h>
22#include <linux/types.h>
23#include <linux/pci.h>
Matthew Garrette5a44df2011-11-11 11:14:23 -050024#include <linux/pci-aspm.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080025#include <linux/kernel.h>
26#include <linux/slab.h>
27#include <linux/delay.h>
28#include <linux/fs.h>
29#include <linux/timer.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080030#include <linux/init.h>
31#include <linux/spinlock.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080032#include <linux/compat.h>
33#include <linux/blktrace_api.h>
34#include <linux/uaccess.h>
35#include <linux/io.h>
36#include <linux/dma-mapping.h>
37#include <linux/completion.h>
38#include <linux/moduleparam.h>
39#include <scsi/scsi.h>
40#include <scsi/scsi_cmnd.h>
41#include <scsi/scsi_device.h>
42#include <scsi/scsi_host.h>
Stephen M. Cameron667e23d2010-02-25 14:02:51 -060043#include <scsi/scsi_tcq.h>
Stephen Cameron9437ac42015-04-23 09:32:16 -050044#include <scsi/scsi_eh.h>
Kevin Barnettd04e62b2015-11-04 15:52:34 -060045#include <scsi/scsi_transport_sas.h>
Webb Scales73153fe2015-04-23 09:35:04 -050046#include <scsi/scsi_dbg.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080047#include <linux/cciss_ioctl.h>
48#include <linux/string.h>
49#include <linux/bitmap.h>
Arun Sharma600634972011-07-26 16:09:06 -070050#include <linux/atomic.h>
Stephen M. Camerona0c12412011-10-26 16:22:04 -050051#include <linux/jiffies.h>
Don Brace42a91642014-11-14 17:26:27 -060052#include <linux/percpu-defs.h>
Stephen M. Cameron094963d2014-05-29 10:53:18 -050053#include <linux/percpu.h>
Don Brace2b08b3e2015-01-23 16:41:09 -060054#include <asm/unaligned.h>
Stephen M. Cameron283b4a92014-02-18 13:55:33 -060055#include <asm/div64.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080056#include "hpsa_cmd.h"
57#include "hpsa.h"
58
Don Braceec2c3aa2015-11-04 15:52:40 -060059/*
60 * HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.'
61 * with an optional trailing '-' followed by a byte value (0-255).
62 */
Don Braceff54aee2016-04-27 17:14:26 -050063#define HPSA_DRIVER_VERSION "3.4.16-0"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080064#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -060065#define HPSA "hpsa"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080066
Robert Elliott007e7aa2015-01-23 16:44:56 -060067/* How long to wait for CISS doorbell communication */
68#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */
69#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */
70#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */
71#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */
Stephen M. Cameronedd16362009-12-08 14:09:11 -080072#define MAX_IOCTL_CONFIG_WAIT 1000
73
74/*define how many times we will try a command because of bus resets */
75#define MAX_CMD_RETRIES 3
76
77/* Embedded module documentation macros - see modules.h */
78MODULE_AUTHOR("Hewlett-Packard Company");
79MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
80 HPSA_DRIVER_VERSION);
81MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
82MODULE_VERSION(HPSA_DRIVER_VERSION);
83MODULE_LICENSE("GPL");
84
85static int hpsa_allow_any;
86module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
87MODULE_PARM_DESC(hpsa_allow_any,
88 "Allow hpsa driver to access unknown HP Smart Array hardware");
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060089static int hpsa_simple_mode;
90module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
91MODULE_PARM_DESC(hpsa_simple_mode,
92 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080093
94/* define the PCI info for the cards we can control */
95static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080096 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
97 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
98 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
99 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -0500101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -0600103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -0600104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Mike Millerfe0c9612012-09-20 16:05:18 -0500111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Mike Millerfe0c9612012-09-20 16:05:18 -0500115 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926},
116 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928},
Mike Miller97b9f532013-09-04 15:05:55 -0500117 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929},
118 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD},
119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE},
120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF},
121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0},
122 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1},
123 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2},
124 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3},
125 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4},
126 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500127 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6},
Mike Miller97b9f532013-09-04 15:05:55 -0500128 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
129 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
130 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500131 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA},
132 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB},
133 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC},
134 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD},
135 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE},
Don Bracefdfa4b62015-04-23 09:35:27 -0500136 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0580},
Don Bracecbb47dc2015-07-18 11:12:54 -0500137 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0581},
138 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0582},
139 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0583},
140 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0584},
141 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0585},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600142 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
143 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
144 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
145 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
146 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
Mike Miller7c03b872010-12-01 11:16:07 -0600147 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Stephen M. Cameron6798cc02010-06-16 13:51:20 -0500148 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800149 {0,}
150};
151
152MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
153
154/* board_id = Subsystem Device ID & Vendor ID
155 * product = Marketing Name for the board
156 * access = Address of the struct of function pointers
157 */
158static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800159 {0x3241103C, "Smart Array P212", &SA5_access},
160 {0x3243103C, "Smart Array P410", &SA5_access},
161 {0x3245103C, "Smart Array P410i", &SA5_access},
162 {0x3247103C, "Smart Array P411", &SA5_access},
163 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500164 {0x324A103C, "Smart Array P712m", &SA5_access},
165 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600166 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500167 {0x3350103C, "Smart Array P222", &SA5_access},
168 {0x3351103C, "Smart Array P420", &SA5_access},
169 {0x3352103C, "Smart Array P421", &SA5_access},
170 {0x3353103C, "Smart Array P822", &SA5_access},
171 {0x3354103C, "Smart Array P420i", &SA5_access},
172 {0x3355103C, "Smart Array P220i", &SA5_access},
173 {0x3356103C, "Smart Array P721m", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500174 {0x1921103C, "Smart Array P830i", &SA5_access},
175 {0x1922103C, "Smart Array P430", &SA5_access},
176 {0x1923103C, "Smart Array P431", &SA5_access},
177 {0x1924103C, "Smart Array P830", &SA5_access},
178 {0x1926103C, "Smart Array P731m", &SA5_access},
179 {0x1928103C, "Smart Array P230i", &SA5_access},
180 {0x1929103C, "Smart Array P530", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600181 {0x21BD103C, "Smart Array P244br", &SA5_access},
182 {0x21BE103C, "Smart Array P741m", &SA5_access},
183 {0x21BF103C, "Smart HBA H240ar", &SA5_access},
184 {0x21C0103C, "Smart Array P440ar", &SA5_access},
Don Bracec8ae0ab2015-01-23 16:45:12 -0600185 {0x21C1103C, "Smart Array P840ar", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600186 {0x21C2103C, "Smart Array P440", &SA5_access},
187 {0x21C3103C, "Smart Array P441", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500188 {0x21C4103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600189 {0x21C5103C, "Smart Array P841", &SA5_access},
190 {0x21C6103C, "Smart HBA H244br", &SA5_access},
191 {0x21C7103C, "Smart HBA H240", &SA5_access},
192 {0x21C8103C, "Smart HBA H241", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500193 {0x21C9103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600194 {0x21CA103C, "Smart Array P246br", &SA5_access},
195 {0x21CB103C, "Smart Array P840", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500196 {0x21CC103C, "Smart Array", &SA5_access},
197 {0x21CD103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600198 {0x21CE103C, "Smart HBA", &SA5_access},
Don Bracefdfa4b62015-04-23 09:35:27 -0500199 {0x05809005, "SmartHBA-SA", &SA5_access},
Don Bracecbb47dc2015-07-18 11:12:54 -0500200 {0x05819005, "SmartHBA-SA 8i", &SA5_access},
201 {0x05829005, "SmartHBA-SA 8i8e", &SA5_access},
202 {0x05839005, "SmartHBA-SA 8e", &SA5_access},
203 {0x05849005, "SmartHBA-SA 16i", &SA5_access},
204 {0x05859005, "SmartHBA-SA 4i4e", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600205 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
206 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
207 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
208 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
209 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800210 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
211};
212
Kevin Barnettd04e62b2015-11-04 15:52:34 -0600213static struct scsi_transport_template *hpsa_sas_transport_template;
214static int hpsa_add_sas_host(struct ctlr_info *h);
215static void hpsa_delete_sas_host(struct ctlr_info *h);
216static int hpsa_add_sas_device(struct hpsa_sas_node *hpsa_sas_node,
217 struct hpsa_scsi_dev_t *device);
218static void hpsa_remove_sas_device(struct hpsa_scsi_dev_t *device);
219static struct hpsa_scsi_dev_t
220 *hpsa_find_device_by_sas_rphy(struct ctlr_info *h,
221 struct sas_rphy *rphy);
222
Webb Scalesa58e7e52015-04-23 09:34:16 -0500223#define SCSI_CMD_BUSY ((struct scsi_cmnd *)&hpsa_cmd_busy)
224static const struct scsi_cmnd hpsa_cmd_busy;
225#define SCSI_CMD_IDLE ((struct scsi_cmnd *)&hpsa_cmd_idle)
226static const struct scsi_cmnd hpsa_cmd_idle;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800227static int number_of_controllers;
228
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500229static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
230static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Don Brace42a91642014-11-14 17:26:27 -0600231static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800232
233#ifdef CONFIG_COMPAT
Don Brace42a91642014-11-14 17:26:27 -0600234static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
235 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800236#endif
237
238static void cmd_free(struct ctlr_info *h, struct CommandList *c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800239static struct CommandList *cmd_alloc(struct ctlr_info *h);
Webb Scales73153fe2015-04-23 09:35:04 -0500240static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c);
241static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
242 struct scsi_cmnd *scmd);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600243static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600244 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800245 int cmd_type);
Robert Elliott2c143342015-01-23 16:42:48 -0600246static void hpsa_free_cmd_pool(struct ctlr_info *h);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600247#define VPD_PAGE (1 << 8)
Don Braceb48d9802015-11-04 15:50:13 -0600248#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800249
Jeff Garzikf2812332010-11-16 02:10:29 -0500250static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600251static void hpsa_scan_start(struct Scsi_Host *);
252static int hpsa_scan_finished(struct Scsi_Host *sh,
253 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600254static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800255
256static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500257static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800258static int hpsa_slave_alloc(struct scsi_device *sdev);
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500259static int hpsa_slave_configure(struct scsi_device *sdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800260static void hpsa_slave_destroy(struct scsi_device *sdev);
261
Don Brace8aa60682015-11-04 15:50:01 -0600262static void hpsa_update_scsi_devices(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800263static int check_for_unit_attention(struct ctlr_info *h,
264 struct CommandList *c);
265static void check_ioctl_unit_attention(struct ctlr_info *h,
266 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600267/* performant mode helper functions */
268static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600269 int nsgs, int min_blocks, u32 *bucket_map);
Robert Elliott105a3db2015-04-23 09:33:48 -0500270static void hpsa_free_performant_mode(struct ctlr_info *h);
271static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500272static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800273static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
274 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
275 u64 *cfg_offset);
276static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
277 unsigned long *memory_bar);
278static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
279static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
280 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500281static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600282static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600283#define BOARD_NOT_READY 0
284#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600285static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600286static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600287static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
288 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600289 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600290static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500291static u32 lockup_detected(struct ctlr_info *h);
292static int detect_controller_lockup(struct ctlr_info *h);
Scott Teelc2adae42015-11-04 15:52:16 -0600293static void hpsa_disable_rld_caching(struct ctlr_info *h);
Kevin Barnettd04e62b2015-11-04 15:52:34 -0600294static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
295 struct ReportExtendedLUNdata *buf, int bufsize);
Scott Teel83832782016-09-09 16:30:29 -0500296static bool hpsa_vpd_page_supported(struct ctlr_info *h,
297 unsigned char scsi3addr[], u8 page);
Scott Teel34592252015-11-04 15:52:09 -0600298static int hpsa_luns_changed(struct ctlr_info *h);
Don Braceba74fdc2016-04-27 17:14:17 -0500299static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
300 struct hpsa_scsi_dev_t *dev,
301 unsigned char *scsi3addr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800302
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800303static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
304{
305 unsigned long *priv = shost_priv(sdev->host);
306 return (struct ctlr_info *) *priv;
307}
308
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600309static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
310{
311 unsigned long *priv = shost_priv(sh);
312 return (struct ctlr_info *) *priv;
313}
314
Webb Scalesa58e7e52015-04-23 09:34:16 -0500315static inline bool hpsa_is_cmd_idle(struct CommandList *c)
316{
317 return c->scsi_cmd == SCSI_CMD_IDLE;
318}
319
Webb Scalesd604f532015-04-23 09:35:22 -0500320static inline bool hpsa_is_pending_event(struct CommandList *c)
321{
322 return c->abort_pending || c->reset_pending;
323}
324
Stephen Cameron9437ac42015-04-23 09:32:16 -0500325/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
326static void decode_sense_data(const u8 *sense_data, int sense_data_len,
327 u8 *sense_key, u8 *asc, u8 *ascq)
328{
329 struct scsi_sense_hdr sshdr;
330 bool rc;
331
332 *sense_key = -1;
333 *asc = -1;
334 *ascq = -1;
335
336 if (sense_data_len < 1)
337 return;
338
339 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
340 if (rc) {
341 *sense_key = sshdr.sense_key;
342 *asc = sshdr.asc;
343 *ascq = sshdr.ascq;
344 }
345}
346
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800347static int check_for_unit_attention(struct ctlr_info *h,
348 struct CommandList *c)
349{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500350 u8 sense_key, asc, ascq;
351 int sense_len;
352
353 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
354 sense_len = sizeof(c->err_info->SenseInfo);
355 else
356 sense_len = c->err_info->SenseLen;
357
358 decode_sense_data(c->err_info->SenseInfo, sense_len,
359 &sense_key, &asc, &ascq);
Don Brace81c27552015-07-18 11:12:28 -0500360 if (sense_key != UNIT_ATTENTION || asc == 0xff)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800361 return 0;
362
Stephen Cameron9437ac42015-04-23 09:32:16 -0500363 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800364 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500365 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500366 "%s: a state change detected, command retried\n",
367 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800368 break;
369 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600370 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500371 "%s: LUN failure detected\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800372 break;
373 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600374 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500375 "%s: report LUN data changed\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800376 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600377 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
378 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800379 */
380 break;
381 case POWER_OR_RESET:
Robert Elliott2946e822015-04-23 09:35:09 -0500382 dev_warn(&h->pdev->dev,
383 "%s: a power on or device reset detected\n",
384 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800385 break;
386 case UNIT_ATTENTION_CLEARED:
Robert Elliott2946e822015-04-23 09:35:09 -0500387 dev_warn(&h->pdev->dev,
388 "%s: unit attention cleared by another initiator\n",
389 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800390 break;
391 default:
Robert Elliott2946e822015-04-23 09:35:09 -0500392 dev_warn(&h->pdev->dev,
393 "%s: unknown unit attention detected\n",
394 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800395 break;
396 }
397 return 1;
398}
399
Matt Bondurant852af202012-05-01 11:42:35 -0500400static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
401{
402 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
403 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
404 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
405 return 0;
406 dev_warn(&h->pdev->dev, HPSA "device busy");
407 return 1;
408}
409
Stephen Camerone985c582015-04-23 09:32:22 -0500410static u32 lockup_detected(struct ctlr_info *h);
411static ssize_t host_show_lockup_detected(struct device *dev,
412 struct device_attribute *attr, char *buf)
413{
414 int ld;
415 struct ctlr_info *h;
416 struct Scsi_Host *shost = class_to_shost(dev);
417
418 h = shost_to_hba(shost);
419 ld = lockup_detected(h);
420
421 return sprintf(buf, "ld=%d\n", ld);
422}
423
Scott Teelda0697b2014-02-18 13:57:00 -0600424static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
425 struct device_attribute *attr,
426 const char *buf, size_t count)
427{
428 int status, len;
429 struct ctlr_info *h;
430 struct Scsi_Host *shost = class_to_shost(dev);
431 char tmpbuf[10];
432
433 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
434 return -EACCES;
435 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
436 strncpy(tmpbuf, buf, len);
437 tmpbuf[len] = '\0';
438 if (sscanf(tmpbuf, "%d", &status) != 1)
439 return -EINVAL;
440 h = shost_to_hba(shost);
441 h->acciopath_status = !!status;
442 dev_warn(&h->pdev->dev,
443 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
444 h->acciopath_status ? "enabled" : "disabled");
445 return count;
446}
447
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600448static ssize_t host_store_raid_offload_debug(struct device *dev,
449 struct device_attribute *attr,
450 const char *buf, size_t count)
451{
452 int debug_level, len;
453 struct ctlr_info *h;
454 struct Scsi_Host *shost = class_to_shost(dev);
455 char tmpbuf[10];
456
457 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
458 return -EACCES;
459 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
460 strncpy(tmpbuf, buf, len);
461 tmpbuf[len] = '\0';
462 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
463 return -EINVAL;
464 if (debug_level < 0)
465 debug_level = 0;
466 h = shost_to_hba(shost);
467 h->raid_offload_debug = debug_level;
468 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
469 h->raid_offload_debug);
470 return count;
471}
472
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800473static ssize_t host_store_rescan(struct device *dev,
474 struct device_attribute *attr,
475 const char *buf, size_t count)
476{
477 struct ctlr_info *h;
478 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600479 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600480 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800481 return count;
482}
483
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500484static ssize_t host_show_firmware_revision(struct device *dev,
485 struct device_attribute *attr, char *buf)
486{
487 struct ctlr_info *h;
488 struct Scsi_Host *shost = class_to_shost(dev);
489 unsigned char *fwrev;
490
491 h = shost_to_hba(shost);
492 if (!h->hba_inquiry_data)
493 return 0;
494 fwrev = &h->hba_inquiry_data[32];
495 return snprintf(buf, 20, "%c%c%c%c\n",
496 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
497}
498
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600499static ssize_t host_show_commands_outstanding(struct device *dev,
500 struct device_attribute *attr, char *buf)
501{
502 struct Scsi_Host *shost = class_to_shost(dev);
503 struct ctlr_info *h = shost_to_hba(shost);
504
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600505 return snprintf(buf, 20, "%d\n",
506 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600507}
508
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600509static ssize_t host_show_transport_mode(struct device *dev,
510 struct device_attribute *attr, char *buf)
511{
512 struct ctlr_info *h;
513 struct Scsi_Host *shost = class_to_shost(dev);
514
515 h = shost_to_hba(shost);
516 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600517 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600518 "performant" : "simple");
519}
520
Scott Teelda0697b2014-02-18 13:57:00 -0600521static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
522 struct device_attribute *attr, char *buf)
523{
524 struct ctlr_info *h;
525 struct Scsi_Host *shost = class_to_shost(dev);
526
527 h = shost_to_hba(shost);
528 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
529 (h->acciopath_status == 1) ? "enabled" : "disabled");
530}
531
Stephen M. Cameron46380782011-05-03 15:00:01 -0500532/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600533static u32 unresettable_controller[] = {
534 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500535 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600536 0x3223103C, /* Smart Array P800 */
537 0x3234103C, /* Smart Array P400 */
538 0x3235103C, /* Smart Array P400i */
539 0x3211103C, /* Smart Array E200i */
540 0x3212103C, /* Smart Array E200 */
541 0x3213103C, /* Smart Array E200i */
542 0x3214103C, /* Smart Array E200i */
543 0x3215103C, /* Smart Array E200i */
544 0x3237103C, /* Smart Array E500 */
545 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100546 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600547 0x409C0E11, /* Smart Array 6400 */
548 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100549 0x40700E11, /* Smart Array 5300 */
550 0x40820E11, /* Smart Array 532 */
551 0x40830E11, /* Smart Array 5312 */
552 0x409A0E11, /* Smart Array 641 */
553 0x409B0E11, /* Smart Array 642 */
554 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600555};
556
Stephen M. Cameron46380782011-05-03 15:00:01 -0500557/* List of controllers which cannot even be soft reset */
558static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100559 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100560 0x40700E11, /* Smart Array 5300 */
561 0x40820E11, /* Smart Array 532 */
562 0x40830E11, /* Smart Array 5312 */
563 0x409A0E11, /* Smart Array 641 */
564 0x409B0E11, /* Smart Array 642 */
565 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500566 /* Exclude 640x boards. These are two pci devices in one slot
567 * which share a battery backed cache module. One controls the
568 * cache, the other accesses the cache through the one that controls
569 * it. If we reset the one controlling the cache, the other will
570 * likely not be happy. Just forbid resetting this conjoined mess.
571 * The 640x isn't really supported by hpsa anyway.
572 */
573 0x409C0E11, /* Smart Array 6400 */
574 0x409D0E11, /* Smart Array 6400 EM */
575};
576
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500577static u32 needs_abort_tags_swizzled[] = {
578 0x323D103C, /* Smart Array P700m */
579 0x324a103C, /* Smart Array P712m */
580 0x324b103C, /* SmartArray P711m */
581};
582
583static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600584{
585 int i;
586
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500587 for (i = 0; i < nelems; i++)
588 if (a[i] == board_id)
589 return 1;
590 return 0;
591}
592
593static int ctlr_is_hard_resettable(u32 board_id)
594{
595 return !board_id_in_array(unresettable_controller,
596 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600597}
598
Stephen M. Cameron46380782011-05-03 15:00:01 -0500599static int ctlr_is_soft_resettable(u32 board_id)
600{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500601 return !board_id_in_array(soft_unresettable_controller,
602 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500603}
604
605static int ctlr_is_resettable(u32 board_id)
606{
607 return ctlr_is_hard_resettable(board_id) ||
608 ctlr_is_soft_resettable(board_id);
609}
610
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500611static int ctlr_needs_abort_tags_swizzled(u32 board_id)
612{
613 return board_id_in_array(needs_abort_tags_swizzled,
614 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
615}
616
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600617static ssize_t host_show_resettable(struct device *dev,
618 struct device_attribute *attr, char *buf)
619{
620 struct ctlr_info *h;
621 struct Scsi_Host *shost = class_to_shost(dev);
622
623 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500624 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600625}
626
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800627static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
628{
629 return (scsi3addr[3] & 0xC0) == 0x40;
630}
631
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600632static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
Don Brace7c59a0d2015-11-04 15:52:22 -0600633 "1(+0)ADM", "UNKNOWN", "PHYS DRV"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800634};
Scott Teel6b80b182014-02-18 13:56:55 -0600635#define HPSA_RAID_0 0
636#define HPSA_RAID_4 1
637#define HPSA_RAID_1 2 /* also used for RAID 10 */
638#define HPSA_RAID_5 3 /* also used for RAID 50 */
639#define HPSA_RAID_51 4
640#define HPSA_RAID_6 5 /* also used for RAID 60 */
641#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Don Brace7c59a0d2015-11-04 15:52:22 -0600642#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 2)
643#define PHYSICAL_DRIVE (ARRAY_SIZE(raid_label) - 1)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800644
Kevin Barnettf3f01732015-11-04 15:51:33 -0600645static inline bool is_logical_device(struct hpsa_scsi_dev_t *device)
646{
647 return !device->physical_device;
648}
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800649
650static ssize_t raid_level_show(struct device *dev,
651 struct device_attribute *attr, char *buf)
652{
653 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600654 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800655 struct ctlr_info *h;
656 struct scsi_device *sdev;
657 struct hpsa_scsi_dev_t *hdev;
658 unsigned long flags;
659
660 sdev = to_scsi_device(dev);
661 h = sdev_to_hba(sdev);
662 spin_lock_irqsave(&h->lock, flags);
663 hdev = sdev->hostdata;
664 if (!hdev) {
665 spin_unlock_irqrestore(&h->lock, flags);
666 return -ENODEV;
667 }
668
669 /* Is this even a logical drive? */
Kevin Barnettf3f01732015-11-04 15:51:33 -0600670 if (!is_logical_device(hdev)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800671 spin_unlock_irqrestore(&h->lock, flags);
672 l = snprintf(buf, PAGE_SIZE, "N/A\n");
673 return l;
674 }
675
676 rlevel = hdev->raid_level;
677 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600678 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800679 rlevel = RAID_UNKNOWN;
680 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
681 return l;
682}
683
684static ssize_t lunid_show(struct device *dev,
685 struct device_attribute *attr, char *buf)
686{
687 struct ctlr_info *h;
688 struct scsi_device *sdev;
689 struct hpsa_scsi_dev_t *hdev;
690 unsigned long flags;
691 unsigned char lunid[8];
692
693 sdev = to_scsi_device(dev);
694 h = sdev_to_hba(sdev);
695 spin_lock_irqsave(&h->lock, flags);
696 hdev = sdev->hostdata;
697 if (!hdev) {
698 spin_unlock_irqrestore(&h->lock, flags);
699 return -ENODEV;
700 }
701 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
702 spin_unlock_irqrestore(&h->lock, flags);
703 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
704 lunid[0], lunid[1], lunid[2], lunid[3],
705 lunid[4], lunid[5], lunid[6], lunid[7]);
706}
707
708static ssize_t unique_id_show(struct device *dev,
709 struct device_attribute *attr, char *buf)
710{
711 struct ctlr_info *h;
712 struct scsi_device *sdev;
713 struct hpsa_scsi_dev_t *hdev;
714 unsigned long flags;
715 unsigned char sn[16];
716
717 sdev = to_scsi_device(dev);
718 h = sdev_to_hba(sdev);
719 spin_lock_irqsave(&h->lock, flags);
720 hdev = sdev->hostdata;
721 if (!hdev) {
722 spin_unlock_irqrestore(&h->lock, flags);
723 return -ENODEV;
724 }
725 memcpy(sn, hdev->device_id, sizeof(sn));
726 spin_unlock_irqrestore(&h->lock, flags);
727 return snprintf(buf, 16 * 2 + 2,
728 "%02X%02X%02X%02X%02X%02X%02X%02X"
729 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
730 sn[0], sn[1], sn[2], sn[3],
731 sn[4], sn[5], sn[6], sn[7],
732 sn[8], sn[9], sn[10], sn[11],
733 sn[12], sn[13], sn[14], sn[15]);
734}
735
Joseph T Handzikded1be42016-04-27 17:13:33 -0500736static ssize_t sas_address_show(struct device *dev,
737 struct device_attribute *attr, char *buf)
738{
739 struct ctlr_info *h;
740 struct scsi_device *sdev;
741 struct hpsa_scsi_dev_t *hdev;
742 unsigned long flags;
743 u64 sas_address;
744
745 sdev = to_scsi_device(dev);
746 h = sdev_to_hba(sdev);
747 spin_lock_irqsave(&h->lock, flags);
748 hdev = sdev->hostdata;
749 if (!hdev || is_logical_device(hdev) || !hdev->expose_device) {
750 spin_unlock_irqrestore(&h->lock, flags);
751 return -ENODEV;
752 }
753 sas_address = hdev->sas_address;
754 spin_unlock_irqrestore(&h->lock, flags);
755
756 return snprintf(buf, PAGE_SIZE, "0x%016llx\n", sas_address);
757}
758
Scott Teelc1988682014-02-18 13:55:54 -0600759static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
760 struct device_attribute *attr, char *buf)
761{
762 struct ctlr_info *h;
763 struct scsi_device *sdev;
764 struct hpsa_scsi_dev_t *hdev;
765 unsigned long flags;
766 int offload_enabled;
767
768 sdev = to_scsi_device(dev);
769 h = sdev_to_hba(sdev);
770 spin_lock_irqsave(&h->lock, flags);
771 hdev = sdev->hostdata;
772 if (!hdev) {
773 spin_unlock_irqrestore(&h->lock, flags);
774 return -ENODEV;
775 }
776 offload_enabled = hdev->offload_enabled;
777 spin_unlock_irqrestore(&h->lock, flags);
778 return snprintf(buf, 20, "%d\n", offload_enabled);
779}
780
Joe Handzik8270b862015-07-18 11:12:43 -0500781#define MAX_PATHS 8
Joe Handzik8270b862015-07-18 11:12:43 -0500782static ssize_t path_info_show(struct device *dev,
783 struct device_attribute *attr, char *buf)
784{
785 struct ctlr_info *h;
786 struct scsi_device *sdev;
787 struct hpsa_scsi_dev_t *hdev;
788 unsigned long flags;
789 int i;
790 int output_len = 0;
791 u8 box;
792 u8 bay;
793 u8 path_map_index = 0;
794 char *active;
795 unsigned char phys_connector[2];
Joe Handzik8270b862015-07-18 11:12:43 -0500796
Joe Handzik8270b862015-07-18 11:12:43 -0500797 sdev = to_scsi_device(dev);
798 h = sdev_to_hba(sdev);
799 spin_lock_irqsave(&h->devlock, flags);
800 hdev = sdev->hostdata;
801 if (!hdev) {
802 spin_unlock_irqrestore(&h->devlock, flags);
803 return -ENODEV;
804 }
805
806 bay = hdev->bay;
807 for (i = 0; i < MAX_PATHS; i++) {
808 path_map_index = 1<<i;
809 if (i == hdev->active_path_index)
810 active = "Active";
811 else if (hdev->path_map & path_map_index)
812 active = "Inactive";
813 else
814 continue;
815
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600816 output_len += scnprintf(buf + output_len,
817 PAGE_SIZE - output_len,
818 "[%d:%d:%d:%d] %20.20s ",
Joe Handzik8270b862015-07-18 11:12:43 -0500819 h->scsi_host->host_no,
820 hdev->bus, hdev->target, hdev->lun,
821 scsi_device_type(hdev->devtype));
822
Don Bracecca8f132015-12-22 10:36:48 -0600823 if (hdev->devtype == TYPE_RAID || is_logical_device(hdev)) {
Don Brace2708f292015-12-22 10:36:36 -0600824 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600825 PAGE_SIZE - output_len,
826 "%s\n", active);
Joe Handzik8270b862015-07-18 11:12:43 -0500827 continue;
828 }
829
830 box = hdev->box[i];
831 memcpy(&phys_connector, &hdev->phys_connector[i],
832 sizeof(phys_connector));
833 if (phys_connector[0] < '0')
834 phys_connector[0] = '0';
835 if (phys_connector[1] < '0')
836 phys_connector[1] = '0';
Don Bracecca8f132015-12-22 10:36:48 -0600837 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600838 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500839 "PORT: %.2s ",
840 phys_connector);
Don Braceaf15ed32016-02-23 15:16:15 -0600841 if ((hdev->devtype == TYPE_DISK || hdev->devtype == TYPE_ZBC) &&
842 hdev->expose_device) {
Joe Handzik8270b862015-07-18 11:12:43 -0500843 if (box == 0 || box == 0xFF) {
Don Brace2708f292015-12-22 10:36:36 -0600844 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600845 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500846 "BAY: %hhu %s\n",
847 bay, active);
848 } else {
Don Brace2708f292015-12-22 10:36:36 -0600849 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600850 PAGE_SIZE - output_len,
Joe Handzik8270b862015-07-18 11:12:43 -0500851 "BOX: %hhu BAY: %hhu %s\n",
852 box, bay, active);
853 }
854 } else if (box != 0 && box != 0xFF) {
Don Brace2708f292015-12-22 10:36:36 -0600855 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600856 PAGE_SIZE - output_len, "BOX: %hhu %s\n",
Joe Handzik8270b862015-07-18 11:12:43 -0500857 box, active);
858 } else
Don Brace2708f292015-12-22 10:36:36 -0600859 output_len += scnprintf(buf + output_len,
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600860 PAGE_SIZE - output_len, "%s\n", active);
Joe Handzik8270b862015-07-18 11:12:43 -0500861 }
862
863 spin_unlock_irqrestore(&h->devlock, flags);
Rasmus Villemoes1faf0722015-11-04 15:52:28 -0600864 return output_len;
Joe Handzik8270b862015-07-18 11:12:43 -0500865}
866
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600867static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
868static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
869static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
870static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Joseph T Handzikded1be42016-04-27 17:13:33 -0500871static DEVICE_ATTR(sas_address, S_IRUGO, sas_address_show, NULL);
Scott Teelc1988682014-02-18 13:55:54 -0600872static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
873 host_show_hp_ssd_smart_path_enabled, NULL);
Joe Handzik8270b862015-07-18 11:12:43 -0500874static DEVICE_ATTR(path_info, S_IRUGO, path_info_show, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600875static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
876 host_show_hp_ssd_smart_path_status,
877 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600878static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
879 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600880static DEVICE_ATTR(firmware_revision, S_IRUGO,
881 host_show_firmware_revision, NULL);
882static DEVICE_ATTR(commands_outstanding, S_IRUGO,
883 host_show_commands_outstanding, NULL);
884static DEVICE_ATTR(transport_mode, S_IRUGO,
885 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600886static DEVICE_ATTR(resettable, S_IRUGO,
887 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500888static DEVICE_ATTR(lockup_detected, S_IRUGO,
889 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600890
891static struct device_attribute *hpsa_sdev_attrs[] = {
892 &dev_attr_raid_level,
893 &dev_attr_lunid,
894 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600895 &dev_attr_hp_ssd_smart_path_enabled,
Joe Handzik8270b862015-07-18 11:12:43 -0500896 &dev_attr_path_info,
Joseph T Handzikded1be42016-04-27 17:13:33 -0500897 &dev_attr_sas_address,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600898 NULL,
899};
900
901static struct device_attribute *hpsa_shost_attrs[] = {
902 &dev_attr_rescan,
903 &dev_attr_firmware_revision,
904 &dev_attr_commands_outstanding,
905 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600906 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600907 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600908 &dev_attr_raid_offload_debug,
Tomas Henzlfb53c432015-11-06 16:24:09 +0100909 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600910 NULL,
911};
912
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500913#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
914 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
915
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600916static struct scsi_host_template hpsa_driver_template = {
917 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600918 .name = HPSA,
919 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600920 .queuecommand = hpsa_scsi_queue_command,
921 .scan_start = hpsa_scan_start,
922 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600923 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600924 .this_id = -1,
925 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500926 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600927 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
928 .ioctl = hpsa_ioctl,
929 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500930 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600931 .slave_destroy = hpsa_slave_destroy,
932#ifdef CONFIG_COMPAT
933 .compat_ioctl = hpsa_compat_ioctl,
934#endif
935 .sdev_attrs = hpsa_sdev_attrs,
936 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500937 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400938 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600939};
940
Matt Gates254f7962012-05-01 11:43:06 -0500941static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600942{
943 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500944 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600945
Matt Gatese1f7de02014-02-18 13:55:17 -0600946 if (h->transMethod & CFGTBL_Trans_io_accel1)
947 return h->access.command_completed(h, q);
948
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600949 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500950 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600951
Matt Gates254f7962012-05-01 11:43:06 -0500952 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
953 a = rq->head[rq->current_entry];
954 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600955 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600956 } else {
957 a = FIFO_EMPTY;
958 }
959 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500960 if (rq->current_entry == h->max_commands) {
961 rq->current_entry = 0;
962 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600963 }
964 return a;
965}
966
Scott Teelc3497752014-02-18 13:56:34 -0600967/*
968 * There are some special bits in the bus address of the
969 * command that we have to set for the controller to know
970 * how to process the command:
971 *
972 * Normal performant mode:
973 * bit 0: 1 means performant mode, 0 means simple mode.
974 * bits 1-3 = block fetch table entry
975 * bits 4-6 = command type (== 0)
976 *
977 * ioaccel1 mode:
978 * bit 0 = "performant mode" bit.
979 * bits 1-3 = block fetch table entry
980 * bits 4-6 = command type (== 110)
981 * (command type is needed because ioaccel1 mode
982 * commands are submitted through the same register as normal
983 * mode commands, so this is how the controller knows whether
984 * the command is normal mode or ioaccel1 mode.)
985 *
986 * ioaccel2 mode:
987 * bit 0 = "performant mode" bit.
988 * bits 1-4 = block fetch table entry (note extra bit)
989 * bits 4-6 = not needed, because ioaccel2 mode has
990 * a separate special register for submitting commands.
991 */
992
Webb Scales25163bd2015-04-23 09:32:00 -0500993/*
994 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600995 * set bit 0 for pull model, bits 3-1 for block fetch
996 * register number
997 */
Webb Scales25163bd2015-04-23 09:32:00 -0500998#define DEFAULT_REPLY_QUEUE (-1)
999static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
1000 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001001{
Matt Gates254f7962012-05-01 11:43:06 -05001002 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001003 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -05001004 if (unlikely(!h->msix_vector))
1005 return;
1006 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -05001007 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +02001008 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -05001009 else
1010 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -05001011 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001012}
1013
Scott Teelc3497752014-02-18 13:56:34 -06001014static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001015 struct CommandList *c,
1016 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001017{
1018 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
1019
Webb Scales25163bd2015-04-23 09:32:00 -05001020 /*
1021 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001022 * processor. This seems to give the best I/O throughput.
1023 */
Webb Scales25163bd2015-04-23 09:32:00 -05001024 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1025 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
1026 else
1027 cp->ReplyQueue = reply_queue % h->nreply_queues;
1028 /*
1029 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001030 * - performant mode bit (bit 0)
1031 * - pull count (bits 1-3)
1032 * - command type (bits 4-6)
1033 */
1034 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
1035 IOACCEL1_BUSADDR_CMDTYPE;
1036}
1037
Stephen Cameron8be986c2015-04-23 09:34:06 -05001038static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
1039 struct CommandList *c,
1040 int reply_queue)
1041{
1042 struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
1043 &h->ioaccel2_cmd_pool[c->cmdindex];
1044
1045 /* Tell the controller to post the reply to the queue for this
1046 * processor. This seems to give the best I/O throughput.
1047 */
1048 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1049 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1050 else
1051 cp->reply_queue = reply_queue % h->nreply_queues;
1052 /* Set the bits in the address sent down to include:
1053 * - performant mode bit not used in ioaccel mode 2
1054 * - pull count (bits 0-3)
1055 * - command type isn't needed for ioaccel2
1056 */
1057 c->busaddr |= h->ioaccel2_blockFetchTable[0];
1058}
1059
Scott Teelc3497752014-02-18 13:56:34 -06001060static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001061 struct CommandList *c,
1062 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001063{
1064 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
1065
Webb Scales25163bd2015-04-23 09:32:00 -05001066 /*
1067 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001068 * processor. This seems to give the best I/O throughput.
1069 */
Webb Scales25163bd2015-04-23 09:32:00 -05001070 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1071 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1072 else
1073 cp->reply_queue = reply_queue % h->nreply_queues;
1074 /*
1075 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001076 * - performant mode bit not used in ioaccel mode 2
1077 * - pull count (bits 0-3)
1078 * - command type isn't needed for ioaccel2
1079 */
1080 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
1081}
1082
Stephen M. Camerone85c5972012-05-01 11:43:42 -05001083static int is_firmware_flash_cmd(u8 *cdb)
1084{
1085 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
1086}
1087
1088/*
1089 * During firmware flash, the heartbeat register may not update as frequently
1090 * as it should. So we dial down lockup detection during firmware flash. and
1091 * dial it back up when firmware flash completes.
1092 */
1093#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
1094#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
1095static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
1096 struct CommandList *c)
1097{
1098 if (!is_firmware_flash_cmd(c->Request.CDB))
1099 return;
1100 atomic_inc(&h->firmware_flash_in_progress);
1101 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
1102}
1103
1104static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
1105 struct CommandList *c)
1106{
1107 if (is_firmware_flash_cmd(c->Request.CDB) &&
1108 atomic_dec_and_test(&h->firmware_flash_in_progress))
1109 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
1110}
1111
Webb Scales25163bd2015-04-23 09:32:00 -05001112static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
1113 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001114{
Stephen Cameronc05e8862015-01-23 16:44:40 -06001115 dial_down_lockup_detection_during_fw_flash(h, c);
1116 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -06001117 switch (c->cmd_type) {
1118 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -05001119 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001120 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -06001121 break;
1122 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -05001123 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001124 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -06001125 break;
Stephen Cameron8be986c2015-04-23 09:34:06 -05001126 case IOACCEL2_TMF:
1127 set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
1128 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
1129 break;
Scott Teelc3497752014-02-18 13:56:34 -06001130 default:
Webb Scales25163bd2015-04-23 09:32:00 -05001131 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001132 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06001133 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001134}
1135
Webb Scalesa58e7e52015-04-23 09:34:16 -05001136static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c)
Webb Scales25163bd2015-04-23 09:32:00 -05001137{
Webb Scalesd604f532015-04-23 09:35:22 -05001138 if (unlikely(hpsa_is_pending_event(c)))
Webb Scalesa58e7e52015-04-23 09:34:16 -05001139 return finish_cmd(c);
1140
Webb Scales25163bd2015-04-23 09:32:00 -05001141 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
1142}
1143
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001144static inline int is_hba_lunid(unsigned char scsi3addr[])
1145{
1146 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
1147}
1148
1149static inline int is_scsi_rev_5(struct ctlr_info *h)
1150{
1151 if (!h->hba_inquiry_data)
1152 return 0;
1153 if ((h->hba_inquiry_data[2] & 0x07) == 5)
1154 return 1;
1155 return 0;
1156}
1157
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001158static int hpsa_find_target_lun(struct ctlr_info *h,
1159 unsigned char scsi3addr[], int bus, int *target, int *lun)
1160{
1161 /* finds an unused bus, target, lun for a new physical device
1162 * assumes h->devlock is held
1163 */
1164 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -05001165 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001166
Akinobu Mita263d9402012-01-21 00:15:27 +09001167 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001168
1169 for (i = 0; i < h->ndevices; i++) {
1170 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +09001171 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001172 }
1173
Akinobu Mita263d9402012-01-21 00:15:27 +09001174 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
1175 if (i < HPSA_MAX_DEVICES) {
1176 /* *bus = 1; */
1177 *target = i;
1178 *lun = 0;
1179 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001180 }
1181 return !found;
1182}
1183
Don Brace1d33d852015-11-04 15:50:31 -06001184static void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
Webb Scales0d96ef52015-04-23 09:31:55 -05001185 struct hpsa_scsi_dev_t *dev, char *description)
1186{
Don Brace7c59a0d2015-11-04 15:52:22 -06001187#define LABEL_SIZE 25
1188 char label[LABEL_SIZE];
1189
Don Brace9975ec92015-11-04 15:50:25 -06001190 if (h == NULL || h->pdev == NULL || h->scsi_host == NULL)
1191 return;
1192
Don Brace7c59a0d2015-11-04 15:52:22 -06001193 switch (dev->devtype) {
1194 case TYPE_RAID:
1195 snprintf(label, LABEL_SIZE, "controller");
1196 break;
1197 case TYPE_ENCLOSURE:
1198 snprintf(label, LABEL_SIZE, "enclosure");
1199 break;
1200 case TYPE_DISK:
Don Braceaf15ed32016-02-23 15:16:15 -06001201 case TYPE_ZBC:
Don Brace7c59a0d2015-11-04 15:52:22 -06001202 if (dev->external)
1203 snprintf(label, LABEL_SIZE, "external");
1204 else if (!is_logical_dev_addr_mode(dev->scsi3addr))
1205 snprintf(label, LABEL_SIZE, "%s",
1206 raid_label[PHYSICAL_DRIVE]);
1207 else
1208 snprintf(label, LABEL_SIZE, "RAID-%s",
1209 dev->raid_level > RAID_UNKNOWN ? "?" :
1210 raid_label[dev->raid_level]);
1211 break;
1212 case TYPE_ROM:
1213 snprintf(label, LABEL_SIZE, "rom");
1214 break;
1215 case TYPE_TAPE:
1216 snprintf(label, LABEL_SIZE, "tape");
1217 break;
1218 case TYPE_MEDIUM_CHANGER:
1219 snprintf(label, LABEL_SIZE, "changer");
1220 break;
1221 default:
1222 snprintf(label, LABEL_SIZE, "UNKNOWN");
1223 break;
1224 }
1225
Webb Scales0d96ef52015-04-23 09:31:55 -05001226 dev_printk(level, &h->pdev->dev,
Don Brace7c59a0d2015-11-04 15:52:22 -06001227 "scsi %d:%d:%d:%d: %s %s %.8s %.16s %s SSDSmartPathCap%c En%c Exp=%d\n",
Webb Scales0d96ef52015-04-23 09:31:55 -05001228 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
1229 description,
1230 scsi_device_type(dev->devtype),
1231 dev->vendor,
1232 dev->model,
Don Brace7c59a0d2015-11-04 15:52:22 -06001233 label,
Webb Scales0d96ef52015-04-23 09:31:55 -05001234 dev->offload_config ? '+' : '-',
1235 dev->offload_enabled ? '+' : '-',
Kevin Barnett2a168202015-11-04 15:51:21 -06001236 dev->expose_device);
Webb Scales0d96ef52015-04-23 09:31:55 -05001237}
1238
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001239/* Add an entry into h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001240static int hpsa_scsi_add_entry(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001241 struct hpsa_scsi_dev_t *device,
1242 struct hpsa_scsi_dev_t *added[], int *nadded)
1243{
1244 /* assumes h->devlock is held */
1245 int n = h->ndevices;
1246 int i;
1247 unsigned char addr1[8], addr2[8];
1248 struct hpsa_scsi_dev_t *sd;
1249
Scott Teelcfe5bad2011-10-26 16:21:07 -05001250 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001251 dev_err(&h->pdev->dev, "too many devices, some will be "
1252 "inaccessible.\n");
1253 return -1;
1254 }
1255
1256 /* physical devices do not have lun or target assigned until now. */
1257 if (device->lun != -1)
1258 /* Logical device, lun is already assigned. */
1259 goto lun_assigned;
1260
1261 /* If this device a non-zero lun of a multi-lun device
1262 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001263 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001264 */
1265 if (device->scsi3addr[4] == 0) {
1266 /* This is not a non-zero lun of a multi-lun device */
1267 if (hpsa_find_target_lun(h, device->scsi3addr,
1268 device->bus, &device->target, &device->lun) != 0)
1269 return -1;
1270 goto lun_assigned;
1271 }
1272
1273 /* This is a non-zero lun of a multi-lun device.
1274 * Search through our list and find the device which
shane.seymour9a4178b2015-07-18 11:13:09 -05001275 * has the same 8 byte LUN address, excepting byte 4 and 5.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001276 * Assign the same bus and target for this new LUN.
1277 * Use the logical unit number from the firmware.
1278 */
1279 memcpy(addr1, device->scsi3addr, 8);
1280 addr1[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001281 addr1[5] = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001282 for (i = 0; i < n; i++) {
1283 sd = h->dev[i];
1284 memcpy(addr2, sd->scsi3addr, 8);
1285 addr2[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001286 addr2[5] = 0;
1287 /* differ only in byte 4 and 5? */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001288 if (memcmp(addr1, addr2, 8) == 0) {
1289 device->bus = sd->bus;
1290 device->target = sd->target;
1291 device->lun = device->scsi3addr[4];
1292 break;
1293 }
1294 }
1295 if (device->lun == -1) {
1296 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1297 " suspect firmware bug or unsupported hardware "
1298 "configuration.\n");
1299 return -1;
1300 }
1301
1302lun_assigned:
1303
1304 h->dev[n] = device;
1305 h->ndevices++;
1306 added[*nadded] = device;
1307 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001308 hpsa_show_dev_msg(KERN_INFO, h, device,
Kevin Barnett2a168202015-11-04 15:51:21 -06001309 device->expose_device ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001310 device->offload_to_be_enabled = device->offload_enabled;
1311 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001312 return 0;
1313}
1314
Scott Teelbd9244f2012-01-19 14:01:30 -06001315/* Update an entry in h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001316static void hpsa_scsi_update_entry(struct ctlr_info *h,
Scott Teelbd9244f2012-01-19 14:01:30 -06001317 int entry, struct hpsa_scsi_dev_t *new_entry)
1318{
Robert Elliotta473d862015-04-23 09:32:54 -05001319 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001320 /* assumes h->devlock is held */
1321 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1322
1323 /* Raid level changed. */
1324 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001325
Don Brace03383732015-01-23 16:43:30 -06001326 /* Raid offload parameters changed. Careful about the ordering. */
1327 if (new_entry->offload_config && new_entry->offload_enabled) {
1328 /*
1329 * if drive is newly offload_enabled, we want to copy the
1330 * raid map data first. If previously offload_enabled and
1331 * offload_config were set, raid map data had better be
1332 * the same as it was before. if raid map data is changed
1333 * then it had better be the case that
1334 * h->dev[entry]->offload_enabled is currently 0.
1335 */
1336 h->dev[entry]->raid_map = new_entry->raid_map;
1337 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001338 }
Joe Handzika3144e02015-04-23 09:32:59 -05001339 if (new_entry->hba_ioaccel_enabled) {
1340 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1341 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1342 }
1343 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001344 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001345 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001346 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001347
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001348 /*
1349 * We can turn off ioaccel offload now, but need to delay turning
1350 * it on until we can update h->dev[entry]->phys_disk[], but we
1351 * can't do that until all the devices are updated.
1352 */
1353 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1354 if (!new_entry->offload_enabled)
1355 h->dev[entry]->offload_enabled = 0;
1356
Robert Elliotta473d862015-04-23 09:32:54 -05001357 offload_enabled = h->dev[entry]->offload_enabled;
1358 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001359 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001360 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001361}
1362
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001363/* Replace an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001364static void hpsa_scsi_replace_entry(struct ctlr_info *h,
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001365 int entry, struct hpsa_scsi_dev_t *new_entry,
1366 struct hpsa_scsi_dev_t *added[], int *nadded,
1367 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1368{
1369 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001370 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001371 removed[*nremoved] = h->dev[entry];
1372 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001373
1374 /*
1375 * New physical devices won't have target/lun assigned yet
1376 * so we need to preserve the values in the slot we are replacing.
1377 */
1378 if (new_entry->target == -1) {
1379 new_entry->target = h->dev[entry]->target;
1380 new_entry->lun = h->dev[entry]->lun;
1381 }
1382
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001383 h->dev[entry] = new_entry;
1384 added[*nadded] = new_entry;
1385 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001386 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001387 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1388 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001389}
1390
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001391/* Remove an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001392static void hpsa_scsi_remove_entry(struct ctlr_info *h, int entry,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001393 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1394{
1395 /* assumes h->devlock is held */
1396 int i;
1397 struct hpsa_scsi_dev_t *sd;
1398
Scott Teelcfe5bad2011-10-26 16:21:07 -05001399 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001400
1401 sd = h->dev[entry];
1402 removed[*nremoved] = h->dev[entry];
1403 (*nremoved)++;
1404
1405 for (i = entry; i < h->ndevices-1; i++)
1406 h->dev[i] = h->dev[i+1];
1407 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001408 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001409}
1410
1411#define SCSI3ADDR_EQ(a, b) ( \
1412 (a)[7] == (b)[7] && \
1413 (a)[6] == (b)[6] && \
1414 (a)[5] == (b)[5] && \
1415 (a)[4] == (b)[4] && \
1416 (a)[3] == (b)[3] && \
1417 (a)[2] == (b)[2] && \
1418 (a)[1] == (b)[1] && \
1419 (a)[0] == (b)[0])
1420
1421static void fixup_botched_add(struct ctlr_info *h,
1422 struct hpsa_scsi_dev_t *added)
1423{
1424 /* called when scsi_add_device fails in order to re-adjust
1425 * h->dev[] to match the mid layer's view.
1426 */
1427 unsigned long flags;
1428 int i, j;
1429
1430 spin_lock_irqsave(&h->lock, flags);
1431 for (i = 0; i < h->ndevices; i++) {
1432 if (h->dev[i] == added) {
1433 for (j = i; j < h->ndevices-1; j++)
1434 h->dev[j] = h->dev[j+1];
1435 h->ndevices--;
1436 break;
1437 }
1438 }
1439 spin_unlock_irqrestore(&h->lock, flags);
1440 kfree(added);
1441}
1442
1443static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1444 struct hpsa_scsi_dev_t *dev2)
1445{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001446 /* we compare everything except lun and target as these
1447 * are not yet assigned. Compare parts likely
1448 * to differ first
1449 */
1450 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1451 sizeof(dev1->scsi3addr)) != 0)
1452 return 0;
1453 if (memcmp(dev1->device_id, dev2->device_id,
1454 sizeof(dev1->device_id)) != 0)
1455 return 0;
1456 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1457 return 0;
1458 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1459 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001460 if (dev1->devtype != dev2->devtype)
1461 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001462 if (dev1->bus != dev2->bus)
1463 return 0;
1464 return 1;
1465}
1466
Scott Teelbd9244f2012-01-19 14:01:30 -06001467static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1468 struct hpsa_scsi_dev_t *dev2)
1469{
1470 /* Device attributes that can change, but don't mean
1471 * that the device is a different device, nor that the OS
1472 * needs to be told anything about the change.
1473 */
1474 if (dev1->raid_level != dev2->raid_level)
1475 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001476 if (dev1->offload_config != dev2->offload_config)
1477 return 1;
1478 if (dev1->offload_enabled != dev2->offload_enabled)
1479 return 1;
Don Brace93849502015-07-18 11:12:49 -05001480 if (!is_logical_dev_addr_mode(dev1->scsi3addr))
1481 if (dev1->queue_depth != dev2->queue_depth)
1482 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001483 return 0;
1484}
1485
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001486/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1487 * and return needle location in *index. If scsi3addr matches, but not
1488 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001489 * location in *index.
1490 * In the case of a minor device attribute change, such as RAID level, just
1491 * return DEVICE_UPDATED, along with the updated device's location in index.
1492 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001493 */
1494static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1495 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1496 int *index)
1497{
1498 int i;
1499#define DEVICE_NOT_FOUND 0
1500#define DEVICE_CHANGED 1
1501#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001502#define DEVICE_UPDATED 3
Don Brace1d33d852015-11-04 15:50:31 -06001503 if (needle == NULL)
1504 return DEVICE_NOT_FOUND;
1505
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001506 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001507 if (haystack[i] == NULL) /* previously removed. */
1508 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001509 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1510 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001511 if (device_is_the_same(needle, haystack[i])) {
1512 if (device_updated(needle, haystack[i]))
1513 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001514 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001515 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001516 /* Keep offline devices offline */
1517 if (needle->volume_offline)
1518 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001519 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001520 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001521 }
1522 }
1523 *index = -1;
1524 return DEVICE_NOT_FOUND;
1525}
1526
Stephen M. Cameron98465902014-02-21 16:25:00 -06001527static void hpsa_monitor_offline_device(struct ctlr_info *h,
1528 unsigned char scsi3addr[])
1529{
1530 struct offline_device_entry *device;
1531 unsigned long flags;
1532
1533 /* Check to see if device is already on the list */
1534 spin_lock_irqsave(&h->offline_device_lock, flags);
1535 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1536 if (memcmp(device->scsi3addr, scsi3addr,
1537 sizeof(device->scsi3addr)) == 0) {
1538 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1539 return;
1540 }
1541 }
1542 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1543
1544 /* Device is not on the list, add it. */
1545 device = kmalloc(sizeof(*device), GFP_KERNEL);
1546 if (!device) {
1547 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1548 return;
1549 }
1550 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1551 spin_lock_irqsave(&h->offline_device_lock, flags);
1552 list_add_tail(&device->offline_list, &h->offline_device_list);
1553 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1554}
1555
1556/* Print a message explaining various offline volume states */
1557static void hpsa_show_volume_status(struct ctlr_info *h,
1558 struct hpsa_scsi_dev_t *sd)
1559{
1560 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1561 dev_info(&h->pdev->dev,
1562 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1563 h->scsi_host->host_no,
1564 sd->bus, sd->target, sd->lun);
1565 switch (sd->volume_offline) {
1566 case HPSA_LV_OK:
1567 break;
1568 case HPSA_LV_UNDERGOING_ERASE:
1569 dev_info(&h->pdev->dev,
1570 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1571 h->scsi_host->host_no,
1572 sd->bus, sd->target, sd->lun);
1573 break;
Scott Benesh5ca01202015-07-18 11:13:04 -05001574 case HPSA_LV_NOT_AVAILABLE:
1575 dev_info(&h->pdev->dev,
1576 "C%d:B%d:T%d:L%d Volume is waiting for transforming volume.\n",
1577 h->scsi_host->host_no,
1578 sd->bus, sd->target, sd->lun);
1579 break;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001580 case HPSA_LV_UNDERGOING_RPI:
1581 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001582 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity init.\n",
Stephen M. Cameron98465902014-02-21 16:25:00 -06001583 h->scsi_host->host_no,
1584 sd->bus, sd->target, sd->lun);
1585 break;
1586 case HPSA_LV_PENDING_RPI:
1587 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001588 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1589 h->scsi_host->host_no,
1590 sd->bus, sd->target, sd->lun);
Stephen M. Cameron98465902014-02-21 16:25:00 -06001591 break;
1592 case HPSA_LV_ENCRYPTED_NO_KEY:
1593 dev_info(&h->pdev->dev,
1594 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1595 h->scsi_host->host_no,
1596 sd->bus, sd->target, sd->lun);
1597 break;
1598 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1599 dev_info(&h->pdev->dev,
1600 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1601 h->scsi_host->host_no,
1602 sd->bus, sd->target, sd->lun);
1603 break;
1604 case HPSA_LV_UNDERGOING_ENCRYPTION:
1605 dev_info(&h->pdev->dev,
1606 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1607 h->scsi_host->host_no,
1608 sd->bus, sd->target, sd->lun);
1609 break;
1610 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1611 dev_info(&h->pdev->dev,
1612 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1613 h->scsi_host->host_no,
1614 sd->bus, sd->target, sd->lun);
1615 break;
1616 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1617 dev_info(&h->pdev->dev,
1618 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1619 h->scsi_host->host_no,
1620 sd->bus, sd->target, sd->lun);
1621 break;
1622 case HPSA_LV_PENDING_ENCRYPTION:
1623 dev_info(&h->pdev->dev,
1624 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1625 h->scsi_host->host_no,
1626 sd->bus, sd->target, sd->lun);
1627 break;
1628 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1629 dev_info(&h->pdev->dev,
1630 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1631 h->scsi_host->host_no,
1632 sd->bus, sd->target, sd->lun);
1633 break;
1634 }
1635}
1636
Don Brace03383732015-01-23 16:43:30 -06001637/*
1638 * Figure the list of physical drive pointers for a logical drive with
1639 * raid offload configured.
1640 */
1641static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1642 struct hpsa_scsi_dev_t *dev[], int ndevices,
1643 struct hpsa_scsi_dev_t *logical_drive)
1644{
1645 struct raid_map_data *map = &logical_drive->raid_map;
1646 struct raid_map_disk_data *dd = &map->data[0];
1647 int i, j;
1648 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1649 le16_to_cpu(map->metadata_disks_per_row);
1650 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1651 le16_to_cpu(map->layout_map_count) *
1652 total_disks_per_row;
1653 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1654 total_disks_per_row;
1655 int qdepth;
1656
1657 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1658 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1659
Webb Scalesd604f532015-04-23 09:35:22 -05001660 logical_drive->nphysical_disks = nraid_map_entries;
1661
Don Brace03383732015-01-23 16:43:30 -06001662 qdepth = 0;
1663 for (i = 0; i < nraid_map_entries; i++) {
1664 logical_drive->phys_disk[i] = NULL;
1665 if (!logical_drive->offload_config)
1666 continue;
1667 for (j = 0; j < ndevices; j++) {
Don Brace1d33d852015-11-04 15:50:31 -06001668 if (dev[j] == NULL)
1669 continue;
Petros Koutoupisff615f02016-05-09 13:44:10 -05001670 if (dev[j]->devtype != TYPE_DISK &&
1671 dev[j]->devtype != TYPE_ZBC)
Don Braceaf15ed32016-02-23 15:16:15 -06001672 continue;
Kevin Barnettf3f01732015-11-04 15:51:33 -06001673 if (is_logical_device(dev[j]))
Don Brace03383732015-01-23 16:43:30 -06001674 continue;
1675 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1676 continue;
1677
1678 logical_drive->phys_disk[i] = dev[j];
1679 if (i < nphys_disk)
1680 qdepth = min(h->nr_cmds, qdepth +
1681 logical_drive->phys_disk[i]->queue_depth);
1682 break;
1683 }
1684
1685 /*
1686 * This can happen if a physical drive is removed and
1687 * the logical drive is degraded. In that case, the RAID
1688 * map data will refer to a physical disk which isn't actually
1689 * present. And in that case offload_enabled should already
1690 * be 0, but we'll turn it off here just in case
1691 */
1692 if (!logical_drive->phys_disk[i]) {
1693 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001694 logical_drive->offload_to_be_enabled = 0;
1695 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001696 }
1697 }
1698 if (nraid_map_entries)
1699 /*
1700 * This is correct for reads, too high for full stripe writes,
1701 * way too high for partial stripe writes
1702 */
1703 logical_drive->queue_depth = qdepth;
1704 else
1705 logical_drive->queue_depth = h->nr_cmds;
1706}
1707
1708static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1709 struct hpsa_scsi_dev_t *dev[], int ndevices)
1710{
1711 int i;
1712
1713 for (i = 0; i < ndevices; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001714 if (dev[i] == NULL)
1715 continue;
Petros Koutoupisff615f02016-05-09 13:44:10 -05001716 if (dev[i]->devtype != TYPE_DISK &&
1717 dev[i]->devtype != TYPE_ZBC)
Don Braceaf15ed32016-02-23 15:16:15 -06001718 continue;
Kevin Barnettf3f01732015-11-04 15:51:33 -06001719 if (!is_logical_device(dev[i]))
Don Brace03383732015-01-23 16:43:30 -06001720 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001721
1722 /*
1723 * If offload is currently enabled, the RAID map and
1724 * phys_disk[] assignment *better* not be changing
1725 * and since it isn't changing, we do not need to
1726 * update it.
1727 */
1728 if (dev[i]->offload_enabled)
1729 continue;
1730
Don Brace03383732015-01-23 16:43:30 -06001731 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1732 }
1733}
1734
Kevin Barnett096ccff2015-11-04 15:51:51 -06001735static int hpsa_add_device(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
1736{
1737 int rc = 0;
1738
1739 if (!h->scsi_host)
1740 return 1;
1741
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001742 if (is_logical_device(device)) /* RAID */
1743 rc = scsi_add_device(h->scsi_host, device->bus,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001744 device->target, device->lun);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001745 else /* HBA */
1746 rc = hpsa_add_sas_device(h->sas_host, device);
1747
Kevin Barnett096ccff2015-11-04 15:51:51 -06001748 return rc;
1749}
1750
Don Braceba74fdc2016-04-27 17:14:17 -05001751static int hpsa_find_outstanding_commands_for_dev(struct ctlr_info *h,
1752 struct hpsa_scsi_dev_t *dev)
1753{
1754 int i;
1755 int count = 0;
1756
1757 for (i = 0; i < h->nr_cmds; i++) {
1758 struct CommandList *c = h->cmd_pool + i;
1759 int refcount = atomic_inc_return(&c->refcount);
1760
1761 if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev,
1762 dev->scsi3addr)) {
1763 unsigned long flags;
1764
1765 spin_lock_irqsave(&h->lock, flags); /* Implied MB */
1766 if (!hpsa_is_cmd_idle(c))
1767 ++count;
1768 spin_unlock_irqrestore(&h->lock, flags);
1769 }
1770
1771 cmd_free(h, c);
1772 }
1773
1774 return count;
1775}
1776
1777static void hpsa_wait_for_outstanding_commands_for_dev(struct ctlr_info *h,
1778 struct hpsa_scsi_dev_t *device)
1779{
1780 int cmds = 0;
1781 int waits = 0;
1782
1783 while (1) {
1784 cmds = hpsa_find_outstanding_commands_for_dev(h, device);
1785 if (cmds == 0)
1786 break;
1787 if (++waits > 20)
1788 break;
1789 dev_warn(&h->pdev->dev,
1790 "%s: removing device with %d outstanding commands!\n",
1791 __func__, cmds);
1792 msleep(1000);
1793 }
1794}
1795
Kevin Barnett096ccff2015-11-04 15:51:51 -06001796static void hpsa_remove_device(struct ctlr_info *h,
1797 struct hpsa_scsi_dev_t *device)
1798{
1799 struct scsi_device *sdev = NULL;
1800
1801 if (!h->scsi_host)
1802 return;
1803
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001804 if (is_logical_device(device)) { /* RAID */
1805 sdev = scsi_device_lookup(h->scsi_host, device->bus,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001806 device->target, device->lun);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001807 if (sdev) {
1808 scsi_remove_device(sdev);
1809 scsi_device_put(sdev);
1810 } else {
1811 /*
1812 * We don't expect to get here. Future commands
1813 * to this device will get a selection timeout as
1814 * if the device were gone.
1815 */
1816 hpsa_show_dev_msg(KERN_WARNING, h, device,
Kevin Barnett096ccff2015-11-04 15:51:51 -06001817 "didn't find device for removal.");
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001818 }
Don Braceba74fdc2016-04-27 17:14:17 -05001819 } else { /* HBA */
1820
1821 device->removed = 1;
1822 hpsa_wait_for_outstanding_commands_for_dev(h, device);
1823
Kevin Barnettd04e62b2015-11-04 15:52:34 -06001824 hpsa_remove_sas_device(device);
Don Braceba74fdc2016-04-27 17:14:17 -05001825 }
Kevin Barnett096ccff2015-11-04 15:51:51 -06001826}
1827
Don Brace8aa60682015-11-04 15:50:01 -06001828static void adjust_hpsa_scsi_table(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001829 struct hpsa_scsi_dev_t *sd[], int nsds)
1830{
1831 /* sd contains scsi3 addresses and devtypes, and inquiry
1832 * data. This function takes what's in sd to be the current
1833 * reality and updates h->dev[] to reflect that reality.
1834 */
1835 int i, entry, device_change, changes = 0;
1836 struct hpsa_scsi_dev_t *csd;
1837 unsigned long flags;
1838 struct hpsa_scsi_dev_t **added, **removed;
1839 int nadded, nremoved;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001840
Don Braceda03ded2015-11-04 15:50:56 -06001841 /*
1842 * A reset can cause a device status to change
1843 * re-schedule the scan to see what happened.
1844 */
1845 if (h->reset_in_progress) {
1846 h->drv_req_rescan = 1;
1847 return;
1848 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001849
Scott Teelcfe5bad2011-10-26 16:21:07 -05001850 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1851 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001852
1853 if (!added || !removed) {
1854 dev_warn(&h->pdev->dev, "out of memory in "
1855 "adjust_hpsa_scsi_table\n");
1856 goto free_and_out;
1857 }
1858
1859 spin_lock_irqsave(&h->devlock, flags);
1860
1861 /* find any devices in h->dev[] that are not in
1862 * sd[] and remove them from h->dev[], and for any
1863 * devices which have changed, remove the old device
1864 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001865 * If minor device attributes change, just update
1866 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001867 */
1868 i = 0;
1869 nremoved = 0;
1870 nadded = 0;
1871 while (i < h->ndevices) {
1872 csd = h->dev[i];
1873 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1874 if (device_change == DEVICE_NOT_FOUND) {
1875 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001876 hpsa_scsi_remove_entry(h, i, removed, &nremoved);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001877 continue; /* remove ^^^, hence i not incremented */
1878 } else if (device_change == DEVICE_CHANGED) {
1879 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001880 hpsa_scsi_replace_entry(h, i, sd[entry],
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001881 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001882 /* Set it to NULL to prevent it from being freed
1883 * at the bottom of hpsa_update_scsi_devices()
1884 */
1885 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001886 } else if (device_change == DEVICE_UPDATED) {
Don Brace8aa60682015-11-04 15:50:01 -06001887 hpsa_scsi_update_entry(h, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001888 }
1889 i++;
1890 }
1891
1892 /* Now, make sure every device listed in sd[] is also
1893 * listed in h->dev[], adding them if they aren't found
1894 */
1895
1896 for (i = 0; i < nsds; i++) {
1897 if (!sd[i]) /* if already added above. */
1898 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001899
1900 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1901 * as the SCSI mid-layer does not handle such devices well.
1902 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1903 * at 160Hz, and prevents the system from coming up.
1904 */
1905 if (sd[i]->volume_offline) {
1906 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001907 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001908 continue;
1909 }
1910
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001911 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1912 h->ndevices, &entry);
1913 if (device_change == DEVICE_NOT_FOUND) {
1914 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001915 if (hpsa_scsi_add_entry(h, sd[i], added, &nadded) != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001916 break;
1917 sd[i] = NULL; /* prevent from being freed later. */
1918 } else if (device_change == DEVICE_CHANGED) {
1919 /* should never happen... */
1920 changes++;
1921 dev_warn(&h->pdev->dev,
1922 "device unexpectedly changed.\n");
1923 /* but if it does happen, we just ignore that device */
1924 }
1925 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001926 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1927
1928 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1929 * any logical drives that need it enabled.
1930 */
Don Brace1d33d852015-11-04 15:50:31 -06001931 for (i = 0; i < h->ndevices; i++) {
1932 if (h->dev[i] == NULL)
1933 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001934 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
Don Brace1d33d852015-11-04 15:50:31 -06001935 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001936
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001937 spin_unlock_irqrestore(&h->devlock, flags);
1938
Stephen M. Cameron98465902014-02-21 16:25:00 -06001939 /* Monitor devices which are in one of several NOT READY states to be
1940 * brought online later. This must be done without holding h->devlock,
1941 * so don't touch h->dev[]
1942 */
1943 for (i = 0; i < nsds; i++) {
1944 if (!sd[i]) /* if already added above. */
1945 continue;
1946 if (sd[i]->volume_offline)
1947 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1948 }
1949
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001950 /* Don't notify scsi mid layer of any changes the first time through
1951 * (or if there are no changes) scsi_scan_host will do it later the
1952 * first time through.
1953 */
Don Brace8aa60682015-11-04 15:50:01 -06001954 if (!changes)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001955 goto free_and_out;
1956
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001957 /* Notify scsi mid layer of any removed devices */
1958 for (i = 0; i < nremoved; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001959 if (removed[i] == NULL)
1960 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001961 if (removed[i]->expose_device)
1962 hpsa_remove_device(h, removed[i]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001963 kfree(removed[i]);
1964 removed[i] = NULL;
1965 }
1966
1967 /* Notify scsi mid layer of any added devices */
1968 for (i = 0; i < nadded; i++) {
Kevin Barnett096ccff2015-11-04 15:51:51 -06001969 int rc = 0;
1970
Don Brace1d33d852015-11-04 15:50:31 -06001971 if (added[i] == NULL)
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001972 continue;
Kevin Barnett2a168202015-11-04 15:51:21 -06001973 if (!(added[i]->expose_device))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001974 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001975 rc = hpsa_add_device(h, added[i]);
1976 if (!rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001977 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001978 dev_warn(&h->pdev->dev,
1979 "addition failed %d, device not added.", rc);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001980 /* now we have to remove it from h->dev,
1981 * since it didn't get added to scsi mid layer
1982 */
1983 fixup_botched_add(h, added[i]);
Don Brace853633e2015-11-04 15:50:37 -06001984 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001985 }
1986
1987free_and_out:
1988 kfree(added);
1989 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001990}
1991
1992/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001993 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001994 * Assume's h->devlock is held.
1995 */
1996static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1997 int bus, int target, int lun)
1998{
1999 int i;
2000 struct hpsa_scsi_dev_t *sd;
2001
2002 for (i = 0; i < h->ndevices; i++) {
2003 sd = h->dev[i];
2004 if (sd->bus == bus && sd->target == target && sd->lun == lun)
2005 return sd;
2006 }
2007 return NULL;
2008}
2009
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002010static int hpsa_slave_alloc(struct scsi_device *sdev)
2011{
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01002012 struct hpsa_scsi_dev_t *sd = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002013 unsigned long flags;
2014 struct ctlr_info *h;
2015
2016 h = sdev_to_hba(sdev);
2017 spin_lock_irqsave(&h->devlock, flags);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06002018 if (sdev_channel(sdev) == HPSA_PHYSICAL_DEVICE_BUS) {
2019 struct scsi_target *starget;
2020 struct sas_rphy *rphy;
2021
2022 starget = scsi_target(sdev);
2023 rphy = target_to_rphy(starget);
2024 sd = hpsa_find_device_by_sas_rphy(h, rphy);
2025 if (sd) {
2026 sd->target = sdev_id(sdev);
2027 sd->lun = sdev->lun;
2028 }
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01002029 }
2030 if (!sd)
Kevin Barnettd04e62b2015-11-04 15:52:34 -06002031 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
2032 sdev_id(sdev), sdev->lun);
2033
2034 if (sd && sd->expose_device) {
Don Brace03383732015-01-23 16:43:30 -06002035 atomic_set(&sd->ioaccel_cmds_out, 0);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06002036 sdev->hostdata = sd;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002037 } else
2038 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002039 spin_unlock_irqrestore(&h->devlock, flags);
2040 return 0;
2041}
2042
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002043/* configure scsi device based on internal per-device structure */
2044static int hpsa_slave_configure(struct scsi_device *sdev)
2045{
2046 struct hpsa_scsi_dev_t *sd;
2047 int queue_depth;
2048
2049 sd = sdev->hostdata;
Kevin Barnett2a168202015-11-04 15:51:21 -06002050 sdev->no_uld_attach = !sd || !sd->expose_device;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002051
2052 if (sd)
2053 queue_depth = sd->queue_depth != 0 ?
2054 sd->queue_depth : sdev->host->can_queue;
2055 else
2056 queue_depth = sdev->host->can_queue;
2057
2058 scsi_change_queue_depth(sdev, queue_depth);
2059
2060 return 0;
2061}
2062
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002063static void hpsa_slave_destroy(struct scsi_device *sdev)
2064{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06002065 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002066}
2067
Webb Scalesd9a729f2015-04-23 09:33:27 -05002068static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
2069{
2070 int i;
2071
2072 if (!h->ioaccel2_cmd_sg_list)
2073 return;
2074 for (i = 0; i < h->nr_cmds; i++) {
2075 kfree(h->ioaccel2_cmd_sg_list[i]);
2076 h->ioaccel2_cmd_sg_list[i] = NULL;
2077 }
2078 kfree(h->ioaccel2_cmd_sg_list);
2079 h->ioaccel2_cmd_sg_list = NULL;
2080}
2081
2082static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
2083{
2084 int i;
2085
2086 if (h->chainsize <= 0)
2087 return 0;
2088
2089 h->ioaccel2_cmd_sg_list =
2090 kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
2091 GFP_KERNEL);
2092 if (!h->ioaccel2_cmd_sg_list)
2093 return -ENOMEM;
2094 for (i = 0; i < h->nr_cmds; i++) {
2095 h->ioaccel2_cmd_sg_list[i] =
2096 kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
2097 h->maxsgentries, GFP_KERNEL);
2098 if (!h->ioaccel2_cmd_sg_list[i])
2099 goto clean;
2100 }
2101 return 0;
2102
2103clean:
2104 hpsa_free_ioaccel2_sg_chain_blocks(h);
2105 return -ENOMEM;
2106}
2107
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002108static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
2109{
2110 int i;
2111
2112 if (!h->cmd_sg_list)
2113 return;
2114 for (i = 0; i < h->nr_cmds; i++) {
2115 kfree(h->cmd_sg_list[i]);
2116 h->cmd_sg_list[i] = NULL;
2117 }
2118 kfree(h->cmd_sg_list);
2119 h->cmd_sg_list = NULL;
2120}
2121
Robert Elliott105a3db2015-04-23 09:33:48 -05002122static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002123{
2124 int i;
2125
2126 if (h->chainsize <= 0)
2127 return 0;
2128
2129 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
2130 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06002131 if (!h->cmd_sg_list) {
2132 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002133 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06002134 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002135 for (i = 0; i < h->nr_cmds; i++) {
2136 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
2137 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06002138 if (!h->cmd_sg_list[i]) {
2139 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002140 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06002141 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002142 }
2143 return 0;
2144
2145clean:
2146 hpsa_free_sg_chain_blocks(h);
2147 return -ENOMEM;
2148}
2149
Webb Scalesd9a729f2015-04-23 09:33:27 -05002150static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
2151 struct io_accel2_cmd *cp, struct CommandList *c)
2152{
2153 struct ioaccel2_sg_element *chain_block;
2154 u64 temp64;
2155 u32 chain_size;
2156
2157 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
Don Bracea736e9b2015-11-04 15:51:14 -06002158 chain_size = le32_to_cpu(cp->sg[0].length);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002159 temp64 = pci_map_single(h->pdev, chain_block, chain_size,
2160 PCI_DMA_TODEVICE);
2161 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2162 /* prevent subsequent unmapping */
2163 cp->sg->address = 0;
2164 return -1;
2165 }
2166 cp->sg->address = cpu_to_le64(temp64);
2167 return 0;
2168}
2169
2170static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
2171 struct io_accel2_cmd *cp)
2172{
2173 struct ioaccel2_sg_element *chain_sg;
2174 u64 temp64;
2175 u32 chain_size;
2176
2177 chain_sg = cp->sg;
2178 temp64 = le64_to_cpu(chain_sg->address);
Don Bracea736e9b2015-11-04 15:51:14 -06002179 chain_size = le32_to_cpu(cp->sg[0].length);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002180 pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
2181}
2182
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002183static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002184 struct CommandList *c)
2185{
2186 struct SGDescriptor *chain_sg, *chain_block;
2187 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002188 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002189
2190 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
2191 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002192 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
2193 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06002194 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002195 chain_sg->Len = cpu_to_le32(chain_len);
2196 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002197 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002198 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2199 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002200 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002201 return -1;
2202 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002203 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002204 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002205}
2206
2207static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
2208 struct CommandList *c)
2209{
2210 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002211
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002212 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002213 return;
2214
2215 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002216 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
2217 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002218}
2219
Scott Teela09c1442014-02-18 13:57:21 -06002220
2221/* Decode the various types of errors on ioaccel2 path.
2222 * Return 1 for any error that should generate a RAID path retry.
2223 * Return 0 for errors that don't require a RAID path retry.
2224 */
2225static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06002226 struct CommandList *c,
2227 struct scsi_cmnd *cmd,
Don Braceba74fdc2016-04-27 17:14:17 -05002228 struct io_accel2_cmd *c2,
2229 struct hpsa_scsi_dev_t *dev)
Scott Teelc3497752014-02-18 13:56:34 -06002230{
2231 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06002232 int retry = 0;
Joe Handzikc40820d2015-04-23 09:33:32 -05002233 u32 ioaccel2_resid = 0;
Scott Teelc3497752014-02-18 13:56:34 -06002234
2235 switch (c2->error_data.serv_response) {
2236 case IOACCEL2_SERV_RESPONSE_COMPLETE:
2237 switch (c2->error_data.status) {
2238 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
2239 break;
2240 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002241 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06002242 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002243 IOACCEL2_SENSE_DATA_PRESENT) {
2244 memset(cmd->sense_buffer, 0,
2245 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06002246 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002247 }
Scott Teelc3497752014-02-18 13:56:34 -06002248 /* copy the sense data */
2249 data_len = c2->error_data.sense_data_len;
2250 if (data_len > SCSI_SENSE_BUFFERSIZE)
2251 data_len = SCSI_SENSE_BUFFERSIZE;
2252 if (data_len > sizeof(c2->error_data.sense_data_buff))
2253 data_len =
2254 sizeof(c2->error_data.sense_data_buff);
2255 memcpy(cmd->sense_buffer,
2256 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06002257 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002258 break;
2259 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
Scott Teela09c1442014-02-18 13:57:21 -06002260 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002261 break;
2262 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
Scott Teela09c1442014-02-18 13:57:21 -06002263 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002264 break;
2265 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05002266 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002267 break;
2268 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
Scott Teela09c1442014-02-18 13:57:21 -06002269 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002270 break;
2271 default:
Scott Teela09c1442014-02-18 13:57:21 -06002272 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002273 break;
2274 }
2275 break;
2276 case IOACCEL2_SERV_RESPONSE_FAILURE:
Joe Handzikc40820d2015-04-23 09:33:32 -05002277 switch (c2->error_data.status) {
2278 case IOACCEL2_STATUS_SR_IO_ERROR:
2279 case IOACCEL2_STATUS_SR_IO_ABORTED:
2280 case IOACCEL2_STATUS_SR_OVERRUN:
2281 retry = 1;
2282 break;
2283 case IOACCEL2_STATUS_SR_UNDERRUN:
2284 cmd->result = (DID_OK << 16); /* host byte */
2285 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
2286 ioaccel2_resid = get_unaligned_le32(
2287 &c2->error_data.resid_cnt[0]);
2288 scsi_set_resid(cmd, ioaccel2_resid);
2289 break;
2290 case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
2291 case IOACCEL2_STATUS_SR_INVALID_DEVICE:
2292 case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
Don Braceba74fdc2016-04-27 17:14:17 -05002293 /*
2294 * Did an HBA disk disappear? We will eventually
2295 * get a state change event from the controller but
2296 * in the meantime, we need to tell the OS that the
2297 * HBA disk is no longer there and stop I/O
2298 * from going down. This allows the potential re-insert
2299 * of the disk to get the same device node.
2300 */
2301 if (dev->physical_device && dev->expose_device) {
2302 cmd->result = DID_NO_CONNECT << 16;
2303 dev->removed = 1;
2304 h->drv_req_rescan = 1;
2305 dev_warn(&h->pdev->dev,
2306 "%s: device is gone!\n", __func__);
2307 } else
2308 /*
2309 * Retry by sending down the RAID path.
2310 * We will get an event from ctlr to
2311 * trigger rescan regardless.
2312 */
2313 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002314 break;
2315 default:
2316 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002317 }
Scott Teelc3497752014-02-18 13:56:34 -06002318 break;
2319 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
2320 break;
2321 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
2322 break;
2323 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
Scott Teela09c1442014-02-18 13:57:21 -06002324 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002325 break;
2326 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
Scott Teelc3497752014-02-18 13:56:34 -06002327 break;
2328 default:
Scott Teela09c1442014-02-18 13:57:21 -06002329 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002330 break;
2331 }
Scott Teela09c1442014-02-18 13:57:21 -06002332
2333 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06002334}
2335
Webb Scalesa58e7e52015-04-23 09:34:16 -05002336static void hpsa_cmd_resolve_events(struct ctlr_info *h,
2337 struct CommandList *c)
2338{
Webb Scalesd604f532015-04-23 09:35:22 -05002339 bool do_wake = false;
2340
Webb Scalesa58e7e52015-04-23 09:34:16 -05002341 /*
2342 * Prevent the following race in the abort handler:
2343 *
2344 * 1. LLD is requested to abort a SCSI command
2345 * 2. The SCSI command completes
2346 * 3. The struct CommandList associated with step 2 is made available
2347 * 4. New I/O request to LLD to another LUN re-uses struct CommandList
2348 * 5. Abort handler follows scsi_cmnd->host_scribble and
2349 * finds struct CommandList and tries to aborts it
2350 * Now we have aborted the wrong command.
2351 *
Webb Scalesd604f532015-04-23 09:35:22 -05002352 * Reset c->scsi_cmd here so that the abort or reset handler will know
2353 * this command has completed. Then, check to see if the handler is
Webb Scalesa58e7e52015-04-23 09:34:16 -05002354 * waiting for this command, and, if so, wake it.
2355 */
2356 c->scsi_cmd = SCSI_CMD_IDLE;
Webb Scalesd604f532015-04-23 09:35:22 -05002357 mb(); /* Declare command idle before checking for pending events. */
Webb Scalesa58e7e52015-04-23 09:34:16 -05002358 if (c->abort_pending) {
Webb Scalesd604f532015-04-23 09:35:22 -05002359 do_wake = true;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002360 c->abort_pending = false;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002361 }
Webb Scalesd604f532015-04-23 09:35:22 -05002362 if (c->reset_pending) {
2363 unsigned long flags;
2364 struct hpsa_scsi_dev_t *dev;
2365
2366 /*
2367 * There appears to be a reset pending; lock the lock and
2368 * reconfirm. If so, then decrement the count of outstanding
2369 * commands and wake the reset command if this is the last one.
2370 */
2371 spin_lock_irqsave(&h->lock, flags);
2372 dev = c->reset_pending; /* Re-fetch under the lock. */
2373 if (dev && atomic_dec_and_test(&dev->reset_cmds_out))
2374 do_wake = true;
2375 c->reset_pending = NULL;
2376 spin_unlock_irqrestore(&h->lock, flags);
2377 }
2378
2379 if (do_wake)
2380 wake_up_all(&h->event_sync_wait_queue);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002381}
2382
Webb Scales73153fe2015-04-23 09:35:04 -05002383static void hpsa_cmd_resolve_and_free(struct ctlr_info *h,
2384 struct CommandList *c)
2385{
2386 hpsa_cmd_resolve_events(h, c);
2387 cmd_tagged_free(h, c);
2388}
2389
Webb Scales8a0ff922015-04-23 09:34:11 -05002390static void hpsa_cmd_free_and_done(struct ctlr_info *h,
2391 struct CommandList *c, struct scsi_cmnd *cmd)
2392{
Webb Scales73153fe2015-04-23 09:35:04 -05002393 hpsa_cmd_resolve_and_free(h, c);
Don Braced49c2072016-09-09 16:30:23 -05002394 if (cmd && cmd->scsi_done)
2395 cmd->scsi_done(cmd);
Webb Scales8a0ff922015-04-23 09:34:11 -05002396}
2397
2398static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c)
2399{
2400 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
2401 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
2402}
2403
Webb Scalesa58e7e52015-04-23 09:34:16 -05002404static void hpsa_set_scsi_cmd_aborted(struct scsi_cmnd *cmd)
2405{
2406 cmd->result = DID_ABORT << 16;
2407}
2408
2409static void hpsa_cmd_abort_and_free(struct ctlr_info *h, struct CommandList *c,
2410 struct scsi_cmnd *cmd)
2411{
2412 hpsa_set_scsi_cmd_aborted(cmd);
2413 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2414 c->Request.CDB, c->err_info->ScsiStatus);
Webb Scales73153fe2015-04-23 09:35:04 -05002415 hpsa_cmd_resolve_and_free(h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002416}
2417
Scott Teelc3497752014-02-18 13:56:34 -06002418static void process_ioaccel2_completion(struct ctlr_info *h,
2419 struct CommandList *c, struct scsi_cmnd *cmd,
2420 struct hpsa_scsi_dev_t *dev)
2421{
2422 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2423
2424 /* check for good status */
2425 if (likely(c2->error_data.serv_response == 0 &&
Webb Scales8a0ff922015-04-23 09:34:11 -05002426 c2->error_data.status == 0))
2427 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002428
Webb Scales8a0ff922015-04-23 09:34:11 -05002429 /*
2430 * Any RAID offload error results in retry which will use
Scott Teelc3497752014-02-18 13:56:34 -06002431 * the normal I/O path so the controller can handle whatever's
2432 * wrong.
2433 */
Kevin Barnettf3f01732015-11-04 15:51:33 -06002434 if (is_logical_device(dev) &&
Scott Teelc3497752014-02-18 13:56:34 -06002435 c2->error_data.serv_response ==
2436 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06002437 if (c2->error_data.status ==
Don Brace064d1b12016-04-27 17:14:07 -05002438 IOACCEL2_STATUS_SR_IOACCEL_DISABLED) {
Don Brace080ef1c2015-01-23 16:43:25 -06002439 dev->offload_enabled = 0;
Don Brace064d1b12016-04-27 17:14:07 -05002440 dev->offload_to_be_enabled = 0;
2441 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002442
2443 return hpsa_retry_cmd(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06002444 }
Don Brace080ef1c2015-01-23 16:43:25 -06002445
Don Braceba74fdc2016-04-27 17:14:17 -05002446 if (handle_ioaccel_mode2_error(h, c, cmd, c2, dev))
Webb Scales8a0ff922015-04-23 09:34:11 -05002447 return hpsa_retry_cmd(h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06002448
Webb Scales8a0ff922015-04-23 09:34:11 -05002449 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002450}
2451
Stephen Cameron9437ac42015-04-23 09:32:16 -05002452/* Returns 0 on success, < 0 otherwise. */
2453static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
2454 struct CommandList *cp)
2455{
2456 u8 tmf_status = cp->err_info->ScsiStatus;
2457
2458 switch (tmf_status) {
2459 case CISS_TMF_COMPLETE:
2460 /*
2461 * CISS_TMF_COMPLETE never happens, instead,
2462 * ei->CommandStatus == 0 for this case.
2463 */
2464 case CISS_TMF_SUCCESS:
2465 return 0;
2466 case CISS_TMF_INVALID_FRAME:
2467 case CISS_TMF_NOT_SUPPORTED:
2468 case CISS_TMF_FAILED:
2469 case CISS_TMF_WRONG_LUN:
2470 case CISS_TMF_OVERLAPPED_TAG:
2471 break;
2472 default:
2473 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2474 tmf_status);
2475 break;
2476 }
2477 return -tmf_status;
2478}
2479
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002480static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002481{
2482 struct scsi_cmnd *cmd;
2483 struct ctlr_info *h;
2484 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002485 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002486 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002487
Stephen Cameron9437ac42015-04-23 09:32:16 -05002488 u8 sense_key;
2489 u8 asc; /* additional sense code */
2490 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002491 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002492
2493 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002494 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002495 h = cp->h;
Don Braced49c2072016-09-09 16:30:23 -05002496
2497 if (!cmd->device) {
2498 cmd->result = DID_NO_CONNECT << 16;
2499 return hpsa_cmd_free_and_done(h, cp, cmd);
2500 }
2501
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002502 dev = cmd->device->hostdata;
Don Brace45e596c2016-09-09 16:30:42 -05002503 if (!dev) {
2504 cmd->result = DID_NO_CONNECT << 16;
2505 return hpsa_cmd_free_and_done(h, cp, cmd);
2506 }
Webb Scalesd9a729f2015-04-23 09:33:27 -05002507 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002508
2509 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002510 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002511 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002512 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002513
Webb Scalesd9a729f2015-04-23 09:33:27 -05002514 if ((cp->cmd_type == CMD_IOACCEL2) &&
2515 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2516 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2517
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002518 cmd->result = (DID_OK << 16); /* host byte */
2519 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002520
Don Braced49c2072016-09-09 16:30:23 -05002521 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1) {
2522 if (dev->physical_device && dev->expose_device &&
2523 dev->removed) {
2524 cmd->result = DID_NO_CONNECT << 16;
2525 return hpsa_cmd_free_and_done(h, cp, cmd);
2526 }
2527 if (likely(cp->phys_disk != NULL))
2528 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2529 }
Don Brace03383732015-01-23 16:43:30 -06002530
Webb Scales25163bd2015-04-23 09:32:00 -05002531 /*
2532 * We check for lockup status here as it may be set for
2533 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2534 * fail_all_oustanding_cmds()
2535 */
2536 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2537 /* DID_NO_CONNECT will prevent a retry */
2538 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05002539 return hpsa_cmd_free_and_done(h, cp, cmd);
Webb Scales25163bd2015-04-23 09:32:00 -05002540 }
2541
Webb Scalesd604f532015-04-23 09:35:22 -05002542 if ((unlikely(hpsa_is_pending_event(cp)))) {
2543 if (cp->reset_pending)
2544 return hpsa_cmd_resolve_and_free(h, cp);
2545 if (cp->abort_pending)
2546 return hpsa_cmd_abort_and_free(h, cp, cmd);
2547 }
2548
Scott Teelc3497752014-02-18 13:56:34 -06002549 if (cp->cmd_type == CMD_IOACCEL2)
2550 return process_ioaccel2_completion(h, cp, cmd, dev);
2551
Robert Elliott6aa4c362014-07-03 10:18:19 -05002552 scsi_set_resid(cmd, ei->ResidualCnt);
Webb Scales8a0ff922015-04-23 09:34:11 -05002553 if (ei->CommandStatus == 0)
2554 return hpsa_cmd_free_and_done(h, cp, cmd);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002555
Matt Gatese1f7de02014-02-18 13:55:17 -06002556 /* For I/O accelerator commands, copy over some fields to the normal
2557 * CISS header used below for error handling.
2558 */
2559 if (cp->cmd_type == CMD_IOACCEL1) {
2560 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002561 cp->Header.SGList = scsi_sg_count(cmd);
2562 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2563 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2564 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002565 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002566 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2567 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002568
2569 /* Any RAID offload error results in retry which will use
2570 * the normal I/O path so the controller can handle whatever's
2571 * wrong.
2572 */
Kevin Barnettf3f01732015-11-04 15:51:33 -06002573 if (is_logical_device(dev)) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002574 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2575 dev->offload_enabled = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05002576 return hpsa_retry_cmd(h, cp);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002577 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002578 }
2579
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002580 /* an error has occurred */
2581 switch (ei->CommandStatus) {
2582
2583 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002584 cmd->result |= ei->ScsiStatus;
2585 /* copy the sense data */
2586 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2587 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2588 else
2589 sense_data_size = sizeof(ei->SenseInfo);
2590 if (ei->SenseLen < sense_data_size)
2591 sense_data_size = ei->SenseLen;
2592 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2593 if (ei->ScsiStatus)
2594 decode_sense_data(ei->SenseInfo, sense_data_size,
2595 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002596 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002597 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002598 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002599 break;
2600 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002601 break;
2602 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002603 /* Problem was not a check condition
2604 * Pass it up to the upper layers...
2605 */
2606 if (ei->ScsiStatus) {
2607 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2608 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2609 "Returning result: 0x%x\n",
2610 cp, ei->ScsiStatus,
2611 sense_key, asc, ascq,
2612 cmd->result);
2613 } else { /* scsi status is zero??? How??? */
2614 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2615 "Returning no connection.\n", cp),
2616
2617 /* Ordinarily, this case should never happen,
2618 * but there is a bug in some released firmware
2619 * revisions that allows it to happen if, for
2620 * example, a 4100 backplane loses power and
2621 * the tape drive is in it. We assume that
2622 * it's a fatal error of some kind because we
2623 * can't show that it wasn't. We will make it
2624 * look like selection timeout since that is
2625 * the most common reason for this to occur,
2626 * and it's severe enough.
2627 */
2628
2629 cmd->result = DID_NO_CONNECT << 16;
2630 }
2631 break;
2632
2633 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2634 break;
2635 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002636 dev_warn(&h->pdev->dev,
2637 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002638 break;
2639 case CMD_INVALID: {
2640 /* print_bytes(cp, sizeof(*cp), 1, 0);
2641 print_cmd(cp); */
2642 /* We get CMD_INVALID if you address a non-existent device
2643 * instead of a selection timeout (no response). You will
2644 * see this if you yank out a drive, then try to access it.
2645 * This is kind of a shame because it means that any other
2646 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2647 * missing target. */
2648 cmd->result = DID_NO_CONNECT << 16;
2649 }
2650 break;
2651 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002652 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002653 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2654 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002655 break;
2656 case CMD_HARDWARE_ERR:
2657 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002658 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2659 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002660 break;
2661 case CMD_CONNECTION_LOST:
2662 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002663 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2664 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002665 break;
2666 case CMD_ABORTED:
Webb Scalesa58e7e52015-04-23 09:34:16 -05002667 /* Return now to avoid calling scsi_done(). */
2668 return hpsa_cmd_abort_and_free(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002669 case CMD_ABORT_FAILED:
2670 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002671 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2672 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002673 break;
2674 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002675 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002676 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2677 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002678 break;
2679 case CMD_TIMEOUT:
2680 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002681 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2682 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002683 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002684 case CMD_UNABORTABLE:
2685 cmd->result = DID_ERROR << 16;
2686 dev_warn(&h->pdev->dev, "Command unabortable\n");
2687 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002688 case CMD_TMF_STATUS:
2689 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2690 cmd->result = DID_ERROR << 16;
2691 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002692 case CMD_IOACCEL_DISABLED:
2693 /* This only handles the direct pass-through case since RAID
2694 * offload is handled above. Just attempt a retry.
2695 */
2696 cmd->result = DID_SOFT_ERROR << 16;
2697 dev_warn(&h->pdev->dev,
2698 "cp %p had HP SSD Smart Path error\n", cp);
2699 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002700 default:
2701 cmd->result = DID_ERROR << 16;
2702 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2703 cp, ei->CommandStatus);
2704 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002705
2706 return hpsa_cmd_free_and_done(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002707}
2708
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002709static void hpsa_pci_unmap(struct pci_dev *pdev,
2710 struct CommandList *c, int sg_used, int data_direction)
2711{
2712 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002713
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002714 for (i = 0; i < sg_used; i++)
2715 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2716 le32_to_cpu(c->SG[i].Len),
2717 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002718}
2719
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002720static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002721 struct CommandList *cp,
2722 unsigned char *buf,
2723 size_t buflen,
2724 int data_direction)
2725{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002726 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002727
2728 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2729 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002730 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002731 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002732 }
2733
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002734 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002735 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002736 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002737 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002738 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002739 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002740 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002741 cp->SG[0].Addr = cpu_to_le64(addr64);
2742 cp->SG[0].Len = cpu_to_le32(buflen);
2743 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2744 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2745 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002746 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002747}
2748
Webb Scales25163bd2015-04-23 09:32:00 -05002749#define NO_TIMEOUT ((unsigned long) -1)
2750#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2751static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2752 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002753{
2754 DECLARE_COMPLETION_ONSTACK(wait);
2755
2756 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002757 __enqueue_cmd_and_start_io(h, c, reply_queue);
2758 if (timeout_msecs == NO_TIMEOUT) {
2759 /* TODO: get rid of this no-timeout thing */
2760 wait_for_completion_io(&wait);
2761 return IO_OK;
2762 }
2763 if (!wait_for_completion_io_timeout(&wait,
2764 msecs_to_jiffies(timeout_msecs))) {
2765 dev_warn(&h->pdev->dev, "Command timed out.\n");
2766 return -ETIMEDOUT;
2767 }
2768 return IO_OK;
2769}
2770
2771static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2772 int reply_queue, unsigned long timeout_msecs)
2773{
2774 if (unlikely(lockup_detected(h))) {
2775 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2776 return IO_OK;
2777 }
2778 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002779}
2780
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002781static u32 lockup_detected(struct ctlr_info *h)
2782{
2783 int cpu;
2784 u32 rc, *lockup_detected;
2785
2786 cpu = get_cpu();
2787 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2788 rc = *lockup_detected;
2789 put_cpu();
2790 return rc;
2791}
2792
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002793#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002794static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2795 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002796{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002797 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002798 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002799
2800 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002801 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002802 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2803 timeout_msecs);
2804 if (rc)
2805 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002806 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002807 if (retry_count > 3) {
2808 msleep(backoff_time);
2809 if (backoff_time < 1000)
2810 backoff_time *= 2;
2811 }
Matt Bondurant852af202012-05-01 11:42:35 -05002812 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002813 check_for_busy(h, c)) &&
2814 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002815 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002816 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2817 rc = -EIO;
2818 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002819}
2820
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002821static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2822 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002823{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002824 const u8 *cdb = c->Request.CDB;
2825 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002826
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002827 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2828 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2829 txt, lun[0], lun[1], lun[2], lun[3],
2830 lun[4], lun[5], lun[6], lun[7],
2831 cdb[0], cdb[1], cdb[2], cdb[3],
2832 cdb[4], cdb[5], cdb[6], cdb[7],
2833 cdb[8], cdb[9], cdb[10], cdb[11],
2834 cdb[12], cdb[13], cdb[14], cdb[15]);
2835}
2836
2837static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2838 struct CommandList *cp)
2839{
2840 const struct ErrorInfo *ei = cp->err_info;
2841 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002842 u8 sense_key, asc, ascq;
2843 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002844
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002845 switch (ei->CommandStatus) {
2846 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002847 if (ei->SenseLen > sizeof(ei->SenseInfo))
2848 sense_len = sizeof(ei->SenseInfo);
2849 else
2850 sense_len = ei->SenseLen;
2851 decode_sense_data(ei->SenseInfo, sense_len,
2852 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002853 hpsa_print_cmd(h, "SCSI status", cp);
2854 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002855 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2856 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002857 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002858 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002859 if (ei->ScsiStatus == 0)
2860 dev_warn(d, "SCSI status is abnormally zero. "
2861 "(probably indicates selection timeout "
2862 "reported incorrectly due to a known "
2863 "firmware bug, circa July, 2001.)\n");
2864 break;
2865 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002866 break;
2867 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002868 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002869 break;
2870 case CMD_INVALID: {
2871 /* controller unfortunately reports SCSI passthru's
2872 * to non-existent targets as invalid commands.
2873 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002874 hpsa_print_cmd(h, "invalid command", cp);
2875 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002876 }
2877 break;
2878 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002879 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002880 break;
2881 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002882 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002883 break;
2884 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002885 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002886 break;
2887 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002888 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002889 break;
2890 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002891 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002892 break;
2893 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002894 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002895 break;
2896 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002897 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002898 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002899 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002900 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002901 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002902 case CMD_CTLR_LOCKUP:
2903 hpsa_print_cmd(h, "controller lockup detected", cp);
2904 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002905 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002906 hpsa_print_cmd(h, "unknown status", cp);
2907 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002908 ei->CommandStatus);
2909 }
2910}
2911
2912static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002913 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002914 unsigned char bufsize)
2915{
2916 int rc = IO_OK;
2917 struct CommandList *c;
2918 struct ErrorInfo *ei;
2919
Stephen Cameron45fcb862015-01-23 16:43:04 -06002920 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002921
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002922 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2923 page, scsi3addr, TYPE_CMD)) {
2924 rc = -1;
2925 goto out;
2926 }
Webb Scales25163bd2015-04-23 09:32:00 -05002927 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05002928 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05002929 if (rc)
2930 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002931 ei = c->err_info;
2932 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002933 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002934 rc = -1;
2935 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002936out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002937 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002938 return rc;
2939}
2940
Scott Teelbf711ac2014-02-18 13:56:39 -06002941static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002942 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002943{
2944 int rc = IO_OK;
2945 struct CommandList *c;
2946 struct ErrorInfo *ei;
2947
Stephen Cameron45fcb862015-01-23 16:43:04 -06002948 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002949
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002950
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002951 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teel0b9b7b62015-11-04 15:51:02 -06002952 (void) fill_cmd(c, reset_type, h, NULL, 0, 0,
Scott Teelbf711ac2014-02-18 13:56:39 -06002953 scsi3addr, TYPE_MSG);
Don Brace91510a62017-03-10 14:35:23 -06002954 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05002955 if (rc) {
2956 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2957 goto out;
2958 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002959 /* no unmap needed here because no data xfer. */
2960
2961 ei = c->err_info;
2962 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002963 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002964 rc = -1;
2965 }
Webb Scales25163bd2015-04-23 09:32:00 -05002966out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002967 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002968 return rc;
2969}
2970
Webb Scalesd604f532015-04-23 09:35:22 -05002971static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
2972 struct hpsa_scsi_dev_t *dev,
2973 unsigned char *scsi3addr)
2974{
2975 int i;
2976 bool match = false;
2977 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2978 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
2979
2980 if (hpsa_is_cmd_idle(c))
2981 return false;
2982
2983 switch (c->cmd_type) {
2984 case CMD_SCSI:
2985 case CMD_IOCTL_PEND:
2986 match = !memcmp(scsi3addr, &c->Header.LUN.LunAddrBytes,
2987 sizeof(c->Header.LUN.LunAddrBytes));
2988 break;
2989
2990 case CMD_IOACCEL1:
2991 case CMD_IOACCEL2:
2992 if (c->phys_disk == dev) {
2993 /* HBA mode match */
2994 match = true;
2995 } else {
2996 /* Possible RAID mode -- check each phys dev. */
2997 /* FIXME: Do we need to take out a lock here? If
2998 * so, we could just call hpsa_get_pdisk_of_ioaccel2()
2999 * instead. */
3000 for (i = 0; i < dev->nphysical_disks && !match; i++) {
3001 /* FIXME: an alternate test might be
3002 *
3003 * match = dev->phys_disk[i]->ioaccel_handle
3004 * == c2->scsi_nexus; */
3005 match = dev->phys_disk[i] == c->phys_disk;
3006 }
3007 }
3008 break;
3009
3010 case IOACCEL2_TMF:
3011 for (i = 0; i < dev->nphysical_disks && !match; i++) {
3012 match = dev->phys_disk[i]->ioaccel_handle ==
3013 le32_to_cpu(ac->it_nexus);
3014 }
3015 break;
3016
3017 case 0: /* The command is in the middle of being initialized. */
3018 match = false;
3019 break;
3020
3021 default:
3022 dev_err(&h->pdev->dev, "unexpected cmd_type: %d\n",
3023 c->cmd_type);
3024 BUG();
3025 }
3026
3027 return match;
3028}
3029
3030static int hpsa_do_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
3031 unsigned char *scsi3addr, u8 reset_type, int reply_queue)
3032{
3033 int i;
3034 int rc = 0;
3035
3036 /* We can really only handle one reset at a time */
3037 if (mutex_lock_interruptible(&h->reset_mutex) == -EINTR) {
3038 dev_warn(&h->pdev->dev, "concurrent reset wait interrupted.\n");
3039 return -EINTR;
3040 }
3041
3042 BUG_ON(atomic_read(&dev->reset_cmds_out) != 0);
3043
3044 for (i = 0; i < h->nr_cmds; i++) {
3045 struct CommandList *c = h->cmd_pool + i;
3046 int refcount = atomic_inc_return(&c->refcount);
3047
3048 if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev, scsi3addr)) {
3049 unsigned long flags;
3050
3051 /*
3052 * Mark the target command as having a reset pending,
3053 * then lock a lock so that the command cannot complete
3054 * while we're considering it. If the command is not
3055 * idle then count it; otherwise revoke the event.
3056 */
3057 c->reset_pending = dev;
3058 spin_lock_irqsave(&h->lock, flags); /* Implied MB */
3059 if (!hpsa_is_cmd_idle(c))
3060 atomic_inc(&dev->reset_cmds_out);
3061 else
3062 c->reset_pending = NULL;
3063 spin_unlock_irqrestore(&h->lock, flags);
3064 }
3065
3066 cmd_free(h, c);
3067 }
3068
3069 rc = hpsa_send_reset(h, scsi3addr, reset_type, reply_queue);
3070 if (!rc)
3071 wait_event(h->event_sync_wait_queue,
3072 atomic_read(&dev->reset_cmds_out) == 0 ||
3073 lockup_detected(h));
3074
3075 if (unlikely(lockup_detected(h))) {
Don Brace77678d32015-07-18 11:12:22 -05003076 dev_warn(&h->pdev->dev,
3077 "Controller lockup detected during reset wait\n");
3078 rc = -ENODEV;
3079 }
Webb Scalesd604f532015-04-23 09:35:22 -05003080
3081 if (unlikely(rc))
3082 atomic_set(&dev->reset_cmds_out, 0);
3083
3084 mutex_unlock(&h->reset_mutex);
3085 return rc;
3086}
3087
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003088static void hpsa_get_raid_level(struct ctlr_info *h,
3089 unsigned char *scsi3addr, unsigned char *raid_level)
3090{
3091 int rc;
3092 unsigned char *buf;
3093
3094 *raid_level = RAID_UNKNOWN;
3095 buf = kzalloc(64, GFP_KERNEL);
3096 if (!buf)
3097 return;
Scott Teel83832782016-09-09 16:30:29 -05003098
3099 if (!hpsa_vpd_page_supported(h, scsi3addr,
3100 HPSA_VPD_LV_DEVICE_GEOMETRY))
3101 goto exit;
3102
3103 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE |
3104 HPSA_VPD_LV_DEVICE_GEOMETRY, buf, 64);
3105
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003106 if (rc == 0)
3107 *raid_level = buf[8];
3108 if (*raid_level > RAID_UNKNOWN)
3109 *raid_level = RAID_UNKNOWN;
Scott Teel83832782016-09-09 16:30:29 -05003110exit:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003111 kfree(buf);
3112 return;
3113}
3114
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003115#define HPSA_MAP_DEBUG
3116#ifdef HPSA_MAP_DEBUG
3117static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
3118 struct raid_map_data *map_buff)
3119{
3120 struct raid_map_disk_data *dd = &map_buff->data[0];
3121 int map, row, col;
3122 u16 map_cnt, row_cnt, disks_per_row;
3123
3124 if (rc != 0)
3125 return;
3126
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06003127 /* Show details only if debugging has been activated. */
3128 if (h->raid_offload_debug < 2)
3129 return;
3130
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003131 dev_info(&h->pdev->dev, "structure_size = %u\n",
3132 le32_to_cpu(map_buff->structure_size));
3133 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
3134 le32_to_cpu(map_buff->volume_blk_size));
3135 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
3136 le64_to_cpu(map_buff->volume_blk_cnt));
3137 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
3138 map_buff->phys_blk_shift);
3139 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
3140 map_buff->parity_rotation_shift);
3141 dev_info(&h->pdev->dev, "strip_size = %u\n",
3142 le16_to_cpu(map_buff->strip_size));
3143 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
3144 le64_to_cpu(map_buff->disk_starting_blk));
3145 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
3146 le64_to_cpu(map_buff->disk_blk_cnt));
3147 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
3148 le16_to_cpu(map_buff->data_disks_per_row));
3149 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
3150 le16_to_cpu(map_buff->metadata_disks_per_row));
3151 dev_info(&h->pdev->dev, "row_cnt = %u\n",
3152 le16_to_cpu(map_buff->row_cnt));
3153 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
3154 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06003155 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06003156 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06003157 dev_info(&h->pdev->dev, "encrypytion = %s\n",
3158 le16_to_cpu(map_buff->flags) &
3159 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06003160 dev_info(&h->pdev->dev, "dekindex = %u\n",
3161 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003162 map_cnt = le16_to_cpu(map_buff->layout_map_count);
3163 for (map = 0; map < map_cnt; map++) {
3164 dev_info(&h->pdev->dev, "Map%u:\n", map);
3165 row_cnt = le16_to_cpu(map_buff->row_cnt);
3166 for (row = 0; row < row_cnt; row++) {
3167 dev_info(&h->pdev->dev, " Row%u:\n", row);
3168 disks_per_row =
3169 le16_to_cpu(map_buff->data_disks_per_row);
3170 for (col = 0; col < disks_per_row; col++, dd++)
3171 dev_info(&h->pdev->dev,
3172 " D%02u: h=0x%04x xor=%u,%u\n",
3173 col, dd->ioaccel_handle,
3174 dd->xor_mult[0], dd->xor_mult[1]);
3175 disks_per_row =
3176 le16_to_cpu(map_buff->metadata_disks_per_row);
3177 for (col = 0; col < disks_per_row; col++, dd++)
3178 dev_info(&h->pdev->dev,
3179 " M%02u: h=0x%04x xor=%u,%u\n",
3180 col, dd->ioaccel_handle,
3181 dd->xor_mult[0], dd->xor_mult[1]);
3182 }
3183 }
3184}
3185#else
3186static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
3187 __attribute__((unused)) int rc,
3188 __attribute__((unused)) struct raid_map_data *map_buff)
3189{
3190}
3191#endif
3192
3193static int hpsa_get_raid_map(struct ctlr_info *h,
3194 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3195{
3196 int rc = 0;
3197 struct CommandList *c;
3198 struct ErrorInfo *ei;
3199
Stephen Cameron45fcb862015-01-23 16:43:04 -06003200 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003201
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003202 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
3203 sizeof(this_device->raid_map), 0,
3204 scsi3addr, TYPE_CMD)) {
Robert Elliott2dd02d72015-04-23 09:33:43 -05003205 dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
3206 cmd_free(h, c);
3207 return -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003208 }
Webb Scales25163bd2015-04-23 09:32:00 -05003209 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05003210 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003211 if (rc)
3212 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003213 ei = c->err_info;
3214 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003215 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05003216 rc = -1;
3217 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003218 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06003219 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003220
3221 /* @todo in the future, dynamically allocate RAID map memory */
3222 if (le32_to_cpu(this_device->raid_map.structure_size) >
3223 sizeof(this_device->raid_map)) {
3224 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
3225 rc = -1;
3226 }
3227 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
3228 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05003229out:
3230 cmd_free(h, c);
3231 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003232}
3233
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003234static int hpsa_bmic_sense_subsystem_information(struct ctlr_info *h,
3235 unsigned char scsi3addr[], u16 bmic_device_index,
3236 struct bmic_sense_subsystem_info *buf, size_t bufsize)
3237{
3238 int rc = IO_OK;
3239 struct CommandList *c;
3240 struct ErrorInfo *ei;
3241
3242 c = cmd_alloc(h);
3243
3244 rc = fill_cmd(c, BMIC_SENSE_SUBSYSTEM_INFORMATION, h, buf, bufsize,
3245 0, RAID_CTLR_LUNID, TYPE_CMD);
3246 if (rc)
3247 goto out;
3248
3249 c->Request.CDB[2] = bmic_device_index & 0xff;
3250 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3251
3252 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05003253 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003254 if (rc)
3255 goto out;
3256 ei = c->err_info;
3257 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3258 hpsa_scsi_interpret_error(h, c);
3259 rc = -1;
3260 }
3261out:
3262 cmd_free(h, c);
3263 return rc;
3264}
3265
Scott Teel66749d02015-11-04 15:51:57 -06003266static int hpsa_bmic_id_controller(struct ctlr_info *h,
3267 struct bmic_identify_controller *buf, size_t bufsize)
3268{
3269 int rc = IO_OK;
3270 struct CommandList *c;
3271 struct ErrorInfo *ei;
3272
3273 c = cmd_alloc(h);
3274
3275 rc = fill_cmd(c, BMIC_IDENTIFY_CONTROLLER, h, buf, bufsize,
3276 0, RAID_CTLR_LUNID, TYPE_CMD);
3277 if (rc)
3278 goto out;
3279
3280 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05003281 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Scott Teel66749d02015-11-04 15:51:57 -06003282 if (rc)
3283 goto out;
3284 ei = c->err_info;
3285 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3286 hpsa_scsi_interpret_error(h, c);
3287 rc = -1;
3288 }
3289out:
3290 cmd_free(h, c);
3291 return rc;
3292}
3293
Don Brace03383732015-01-23 16:43:30 -06003294static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
3295 unsigned char scsi3addr[], u16 bmic_device_index,
3296 struct bmic_identify_physical_device *buf, size_t bufsize)
3297{
3298 int rc = IO_OK;
3299 struct CommandList *c;
3300 struct ErrorInfo *ei;
3301
3302 c = cmd_alloc(h);
3303 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
3304 0, RAID_CTLR_LUNID, TYPE_CMD);
3305 if (rc)
3306 goto out;
3307
3308 c->Request.CDB[2] = bmic_device_index & 0xff;
3309 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3310
Webb Scales25163bd2015-04-23 09:32:00 -05003311 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
Don Bracec448ecf2016-04-27 17:13:51 -05003312 DEFAULT_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06003313 ei = c->err_info;
3314 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3315 hpsa_scsi_interpret_error(h, c);
3316 rc = -1;
3317 }
3318out:
3319 cmd_free(h, c);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003320
Don Brace03383732015-01-23 16:43:30 -06003321 return rc;
3322}
3323
Don Bracecca8f132015-12-22 10:36:48 -06003324/*
3325 * get enclosure information
3326 * struct ReportExtendedLUNdata *rlep - Used for BMIC drive number
3327 * struct hpsa_scsi_dev_t *encl_dev - device entry for enclosure
3328 * Uses id_physical_device to determine the box_index.
3329 */
3330static void hpsa_get_enclosure_info(struct ctlr_info *h,
3331 unsigned char *scsi3addr,
3332 struct ReportExtendedLUNdata *rlep, int rle_index,
3333 struct hpsa_scsi_dev_t *encl_dev)
3334{
3335 int rc = -1;
3336 struct CommandList *c = NULL;
3337 struct ErrorInfo *ei = NULL;
3338 struct bmic_sense_storage_box_params *bssbp = NULL;
3339 struct bmic_identify_physical_device *id_phys = NULL;
3340 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
3341 u16 bmic_device_index = 0;
3342
3343 bmic_device_index = GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]);
3344
Don Brace17a9e542016-02-23 15:16:09 -06003345 if (bmic_device_index == 0xFF00 || MASKED_DEVICE(&rle->lunid[0])) {
3346 rc = IO_OK;
Don Bracecca8f132015-12-22 10:36:48 -06003347 goto out;
Don Brace17a9e542016-02-23 15:16:09 -06003348 }
Don Bracecca8f132015-12-22 10:36:48 -06003349
3350 bssbp = kzalloc(sizeof(*bssbp), GFP_KERNEL);
3351 if (!bssbp)
3352 goto out;
3353
3354 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
3355 if (!id_phys)
3356 goto out;
3357
3358 rc = hpsa_bmic_id_physical_device(h, scsi3addr, bmic_device_index,
3359 id_phys, sizeof(*id_phys));
3360 if (rc) {
3361 dev_warn(&h->pdev->dev, "%s: id_phys failed %d bdi[0x%x]\n",
3362 __func__, encl_dev->external, bmic_device_index);
3363 goto out;
3364 }
3365
3366 c = cmd_alloc(h);
3367
3368 rc = fill_cmd(c, BMIC_SENSE_STORAGE_BOX_PARAMS, h, bssbp,
3369 sizeof(*bssbp), 0, RAID_CTLR_LUNID, TYPE_CMD);
3370
3371 if (rc)
3372 goto out;
3373
3374 if (id_phys->phys_connector[1] == 'E')
3375 c->Request.CDB[5] = id_phys->box_index;
3376 else
3377 c->Request.CDB[5] = 0;
3378
3379 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
Don Bracec448ecf2016-04-27 17:13:51 -05003380 DEFAULT_TIMEOUT);
Don Bracecca8f132015-12-22 10:36:48 -06003381 if (rc)
3382 goto out;
3383
3384 ei = c->err_info;
3385 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3386 rc = -1;
3387 goto out;
3388 }
3389
3390 encl_dev->box[id_phys->active_path_number] = bssbp->phys_box_on_port;
3391 memcpy(&encl_dev->phys_connector[id_phys->active_path_number],
3392 bssbp->phys_connector, sizeof(bssbp->phys_connector));
3393
3394 rc = IO_OK;
3395out:
3396 kfree(bssbp);
3397 kfree(id_phys);
3398
3399 if (c)
3400 cmd_free(h, c);
3401
3402 if (rc != IO_OK)
3403 hpsa_show_dev_msg(KERN_INFO, h, encl_dev,
3404 "Error, could not get enclosure information\n");
3405}
3406
Kevin Barnettd04e62b2015-11-04 15:52:34 -06003407static u64 hpsa_get_sas_address_from_report_physical(struct ctlr_info *h,
3408 unsigned char *scsi3addr)
3409{
3410 struct ReportExtendedLUNdata *physdev;
3411 u32 nphysicals;
3412 u64 sa = 0;
3413 int i;
3414
3415 physdev = kzalloc(sizeof(*physdev), GFP_KERNEL);
3416 if (!physdev)
3417 return 0;
3418
3419 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
3420 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3421 kfree(physdev);
3422 return 0;
3423 }
3424 nphysicals = get_unaligned_be32(physdev->LUNListLength) / 24;
3425
3426 for (i = 0; i < nphysicals; i++)
3427 if (!memcmp(&physdev->LUN[i].lunid[0], scsi3addr, 8)) {
3428 sa = get_unaligned_be64(&physdev->LUN[i].wwid[0]);
3429 break;
3430 }
3431
3432 kfree(physdev);
3433
3434 return sa;
3435}
3436
3437static void hpsa_get_sas_address(struct ctlr_info *h, unsigned char *scsi3addr,
3438 struct hpsa_scsi_dev_t *dev)
3439{
3440 int rc;
3441 u64 sa = 0;
3442
3443 if (is_hba_lunid(scsi3addr)) {
3444 struct bmic_sense_subsystem_info *ssi;
3445
3446 ssi = kzalloc(sizeof(*ssi), GFP_KERNEL);
3447 if (ssi == NULL) {
3448 dev_warn(&h->pdev->dev,
3449 "%s: out of memory\n", __func__);
3450 return;
3451 }
3452
3453 rc = hpsa_bmic_sense_subsystem_information(h,
3454 scsi3addr, 0, ssi, sizeof(*ssi));
3455 if (rc == 0) {
3456 sa = get_unaligned_be64(ssi->primary_world_wide_id);
3457 h->sas_address = sa;
3458 }
3459
3460 kfree(ssi);
3461 } else
3462 sa = hpsa_get_sas_address_from_report_physical(h, scsi3addr);
3463
3464 dev->sas_address = sa;
3465}
3466
3467/* Get a device id from inquiry page 0x83 */
Scott Teel83832782016-09-09 16:30:29 -05003468static bool hpsa_vpd_page_supported(struct ctlr_info *h,
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003469 unsigned char scsi3addr[], u8 page)
3470{
3471 int rc;
3472 int i;
3473 int pages;
3474 unsigned char *buf, bufsize;
3475
3476 buf = kzalloc(256, GFP_KERNEL);
3477 if (!buf)
Scott Teel83832782016-09-09 16:30:29 -05003478 return false;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003479
3480 /* Get the size of the page list first */
3481 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3482 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3483 buf, HPSA_VPD_HEADER_SZ);
3484 if (rc != 0)
3485 goto exit_unsupported;
3486 pages = buf[3];
3487 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
3488 bufsize = pages + HPSA_VPD_HEADER_SZ;
3489 else
3490 bufsize = 255;
3491
3492 /* Get the whole VPD page list */
3493 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3494 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3495 buf, bufsize);
3496 if (rc != 0)
3497 goto exit_unsupported;
3498
3499 pages = buf[3];
3500 for (i = 1; i <= pages; i++)
3501 if (buf[3 + i] == page)
3502 goto exit_supported;
3503exit_unsupported:
3504 kfree(buf);
Scott Teel83832782016-09-09 16:30:29 -05003505 return false;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003506exit_supported:
3507 kfree(buf);
Scott Teel83832782016-09-09 16:30:29 -05003508 return true;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003509}
3510
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003511static void hpsa_get_ioaccel_status(struct ctlr_info *h,
3512 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3513{
3514 int rc;
3515 unsigned char *buf;
3516 u8 ioaccel_status;
3517
3518 this_device->offload_config = 0;
3519 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003520 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003521
3522 buf = kzalloc(64, GFP_KERNEL);
3523 if (!buf)
3524 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003525 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
3526 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003527 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003528 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003529 if (rc != 0)
3530 goto out;
3531
3532#define IOACCEL_STATUS_BYTE 4
3533#define OFFLOAD_CONFIGURED_BIT 0x01
3534#define OFFLOAD_ENABLED_BIT 0x02
3535 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
3536 this_device->offload_config =
3537 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
3538 if (this_device->offload_config) {
3539 this_device->offload_enabled =
3540 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
3541 if (hpsa_get_raid_map(h, scsi3addr, this_device))
3542 this_device->offload_enabled = 0;
3543 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003544 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003545out:
3546 kfree(buf);
3547 return;
3548}
3549
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003550/* Get the device id from inquiry page 0x83 */
3551static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
Don Brace75d23d82015-11-04 15:51:39 -06003552 unsigned char *device_id, int index, int buflen)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003553{
3554 int rc;
3555 unsigned char *buf;
3556
Scott Teel83832782016-09-09 16:30:29 -05003557 /* Does controller have VPD for device id? */
3558 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_DEVICE_ID))
3559 return 1; /* not supported */
3560
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003561 buf = kzalloc(64, GFP_KERNEL);
3562 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05003563 return -ENOMEM;
Scott Teel83832782016-09-09 16:30:29 -05003564
3565 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE |
3566 HPSA_VPD_LV_DEVICE_ID, buf, 64);
3567 if (rc == 0) {
3568 if (buflen > 16)
3569 buflen = 16;
3570 memcpy(device_id, &buf[8], buflen);
3571 }
Don Brace75d23d82015-11-04 15:51:39 -06003572
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003573 kfree(buf);
Don Brace75d23d82015-11-04 15:51:39 -06003574
Scott Teel83832782016-09-09 16:30:29 -05003575 return rc; /*0 - got id, otherwise, didn't */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003576}
3577
3578static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06003579 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003580 int extended_response)
3581{
3582 int rc = IO_OK;
3583 struct CommandList *c;
3584 unsigned char scsi3addr[8];
3585 struct ErrorInfo *ei;
3586
Stephen Cameron45fcb862015-01-23 16:43:04 -06003587 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003588
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06003589 /* address the controller */
3590 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003591 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
3592 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
3593 rc = -1;
3594 goto out;
3595 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003596 if (extended_response)
3597 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05003598 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05003599 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003600 if (rc)
3601 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003602 ei = c->err_info;
3603 if (ei->CommandStatus != 0 &&
3604 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003605 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003606 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003607 } else {
Don Brace03383732015-01-23 16:43:30 -06003608 struct ReportLUNdata *rld = buf;
3609
3610 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003611 dev_err(&h->pdev->dev,
3612 "report luns requested format %u, got %u\n",
3613 extended_response,
Don Brace03383732015-01-23 16:43:30 -06003614 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003615 rc = -1;
3616 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003617 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003618out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06003619 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003620 return rc;
3621}
3622
3623static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003624 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003625{
Don Brace03383732015-01-23 16:43:30 -06003626 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
3627 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003628}
3629
3630static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
3631 struct ReportLUNdata *buf, int bufsize)
3632{
3633 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
3634}
3635
3636static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
3637 int bus, int target, int lun)
3638{
3639 device->bus = bus;
3640 device->target = target;
3641 device->lun = lun;
3642}
3643
Stephen M. Cameron98465902014-02-21 16:25:00 -06003644/* Use VPD inquiry to get details of volume status */
3645static int hpsa_get_volume_status(struct ctlr_info *h,
3646 unsigned char scsi3addr[])
3647{
3648 int rc;
3649 int status;
3650 int size;
3651 unsigned char *buf;
3652
3653 buf = kzalloc(64, GFP_KERNEL);
3654 if (!buf)
3655 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3656
3657 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003658 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06003659 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003660
3661 /* Get the size of the VPD return buffer */
3662 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3663 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003664 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003665 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003666 size = buf[3];
3667
3668 /* Now get the whole VPD buffer */
3669 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3670 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003671 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003672 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003673 status = buf[4]; /* status byte */
3674
3675 kfree(buf);
3676 return status;
3677exit_failed:
3678 kfree(buf);
3679 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3680}
3681
3682/* Determine offline status of a volume.
3683 * Return either:
3684 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003685 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003686 * # (integer code indicating one of several NOT READY states
3687 * describing why a volume is to be kept offline)
3688 */
Don Bracec81410a2017-03-10 14:35:11 -06003689static unsigned char hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06003690 unsigned char scsi3addr[])
3691{
3692 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003693 unsigned char *sense;
3694 u8 sense_key, asc, ascq;
3695 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05003696 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003697 u16 cmd_status;
3698 u8 scsi_status;
3699#define ASC_LUN_NOT_READY 0x04
3700#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
3701#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
3702
3703 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003704
Stephen M. Cameron98465902014-02-21 16:25:00 -06003705 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Don Bracec448ecf2016-04-27 17:13:51 -05003706 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
3707 DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05003708 if (rc) {
3709 cmd_free(h, c);
Don Bracec81410a2017-03-10 14:35:11 -06003710 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
Webb Scales25163bd2015-04-23 09:32:00 -05003711 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06003712 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003713 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
3714 sense_len = sizeof(c->err_info->SenseInfo);
3715 else
3716 sense_len = c->err_info->SenseLen;
3717 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003718 cmd_status = c->err_info->CommandStatus;
3719 scsi_status = c->err_info->ScsiStatus;
3720 cmd_free(h, c);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003721
3722 /* Determine the reason for not ready state */
3723 ldstat = hpsa_get_volume_status(h, scsi3addr);
3724
3725 /* Keep volume offline in certain cases: */
3726 switch (ldstat) {
Don Bracec81410a2017-03-10 14:35:11 -06003727 case HPSA_LV_FAILED:
Stephen M. Cameron98465902014-02-21 16:25:00 -06003728 case HPSA_LV_UNDERGOING_ERASE:
Scott Benesh5ca01202015-07-18 11:13:04 -05003729 case HPSA_LV_NOT_AVAILABLE:
Stephen M. Cameron98465902014-02-21 16:25:00 -06003730 case HPSA_LV_UNDERGOING_RPI:
3731 case HPSA_LV_PENDING_RPI:
3732 case HPSA_LV_ENCRYPTED_NO_KEY:
3733 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
3734 case HPSA_LV_UNDERGOING_ENCRYPTION:
3735 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
3736 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
3737 return ldstat;
3738 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
3739 /* If VPD status page isn't available,
3740 * use ASC/ASCQ to determine state
3741 */
3742 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
3743 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
3744 return ldstat;
3745 break;
3746 default:
3747 break;
3748 }
Don Bracec81410a2017-03-10 14:35:11 -06003749 return HPSA_LV_OK;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003750}
3751
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003752/*
3753 * Find out if a logical device supports aborts by simply trying one.
3754 * Smart Array may claim not to support aborts on logical drives, but
3755 * if a MSA2000 * is connected, the drives on that will be presented
3756 * by the Smart Array as logical drives, and aborts may be sent to
3757 * those devices successfully. So the simplest way to find out is
3758 * to simply try an abort and see how the device responds.
3759 */
3760static int hpsa_device_supports_aborts(struct ctlr_info *h,
3761 unsigned char *scsi3addr)
3762{
3763 struct CommandList *c;
3764 struct ErrorInfo *ei;
3765 int rc = 0;
3766
3767 u64 tag = (u64) -1; /* bogus tag */
3768
3769 /* Assume that physical devices support aborts */
3770 if (!is_logical_dev_addr_mode(scsi3addr))
3771 return 1;
3772
3773 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003774
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003775 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
Don Bracec448ecf2016-04-27 17:13:51 -05003776 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
3777 DEFAULT_TIMEOUT);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003778 /* no unmap needed here because no data xfer. */
3779 ei = c->err_info;
3780 switch (ei->CommandStatus) {
3781 case CMD_INVALID:
3782 rc = 0;
3783 break;
3784 case CMD_UNABORTABLE:
3785 case CMD_ABORT_FAILED:
3786 rc = 1;
3787 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003788 case CMD_TMF_STATUS:
3789 rc = hpsa_evaluate_tmf_status(h, c);
3790 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003791 default:
3792 rc = 0;
3793 break;
3794 }
3795 cmd_free(h, c);
3796 return rc;
3797}
3798
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003799static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003800 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3801 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003802{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003803
3804#define OBDR_SIG_OFFSET 43
3805#define OBDR_TAPE_SIG "$DR-10"
3806#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3807#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3808
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003809 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003810 unsigned char *obdr_sig;
Don Brace683fc442015-11-04 15:50:44 -06003811 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003812
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003813 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Don Brace683fc442015-11-04 15:50:44 -06003814 if (!inq_buff) {
3815 rc = -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003816 goto bail_out;
Don Brace683fc442015-11-04 15:50:44 -06003817 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003818
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003819 /* Do an inquiry to the device to see what it is. */
3820 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3821 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003822 dev_err(&h->pdev->dev,
Don Bracec81410a2017-03-10 14:35:11 -06003823 "%s: inquiry failed, device will be skipped.\n",
3824 __func__);
3825 rc = HPSA_INQUIRY_FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003826 goto bail_out;
3827 }
3828
Don Brace4af61e42016-02-23 15:16:40 -06003829 scsi_sanitize_inquiry_string(&inq_buff[8], 8);
3830 scsi_sanitize_inquiry_string(&inq_buff[16], 16);
Don Brace75d23d82015-11-04 15:51:39 -06003831
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003832 this_device->devtype = (inq_buff[0] & 0x1f);
3833 memcpy(this_device->scsi3addr, scsi3addr, 8);
3834 memcpy(this_device->vendor, &inq_buff[8],
3835 sizeof(this_device->vendor));
3836 memcpy(this_device->model, &inq_buff[16],
3837 sizeof(this_device->model));
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01003838 this_device->rev = inq_buff[2];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003839 memset(this_device->device_id, 0,
3840 sizeof(this_device->device_id));
Scott Teel83832782016-09-09 16:30:29 -05003841 if (hpsa_get_device_id(h, scsi3addr, this_device->device_id, 8,
3842 sizeof(this_device->device_id)))
3843 dev_err(&h->pdev->dev,
3844 "hpsa%d: %s: can't get device id for host %d:C0:T%d:L%d\t%s\t%.16s\n",
3845 h->ctlr, __func__,
3846 h->scsi_host->host_no,
3847 this_device->target, this_device->lun,
3848 scsi_device_type(this_device->devtype),
3849 this_device->model);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003850
Don Braceaf15ed32016-02-23 15:16:15 -06003851 if ((this_device->devtype == TYPE_DISK ||
3852 this_device->devtype == TYPE_ZBC) &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003853 is_logical_dev_addr_mode(scsi3addr)) {
Don Bracec81410a2017-03-10 14:35:11 -06003854 unsigned char volume_offline;
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003855
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003856 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003857 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3858 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003859 volume_offline = hpsa_volume_offline(h, scsi3addr);
Don Bracec81410a2017-03-10 14:35:11 -06003860 if (volume_offline == HPSA_LV_FAILED) {
3861 rc = HPSA_LV_FAILED;
3862 dev_err(&h->pdev->dev,
3863 "%s: LV failed, device will be skipped.\n",
3864 __func__);
3865 goto bail_out;
3866 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003867 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003868 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003869 this_device->offload_config = 0;
3870 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003871 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003872 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003873 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003874 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003875 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003876
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003877 if (is_OBDR_device) {
3878 /* See if this is a One-Button-Disaster-Recovery device
3879 * by looking for "$DR-10" at offset 43 in inquiry data.
3880 */
3881 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3882 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3883 strncmp(obdr_sig, OBDR_TAPE_SIG,
3884 OBDR_SIG_LEN) == 0);
3885 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003886 kfree(inq_buff);
3887 return 0;
3888
3889bail_out:
3890 kfree(inq_buff);
Don Brace683fc442015-11-04 15:50:44 -06003891 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003892}
3893
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003894static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3895 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3896{
3897 unsigned long flags;
3898 int rc, entry;
3899 /*
3900 * See if this device supports aborts. If we already know
3901 * the device, we already know if it supports aborts, otherwise
3902 * we have to find out if it supports aborts by trying one.
3903 */
3904 spin_lock_irqsave(&h->devlock, flags);
3905 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3906 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3907 entry >= 0 && entry < h->ndevices) {
3908 dev->supports_aborts = h->dev[entry]->supports_aborts;
3909 spin_unlock_irqrestore(&h->devlock, flags);
3910 } else {
3911 spin_unlock_irqrestore(&h->devlock, flags);
3912 dev->supports_aborts =
3913 hpsa_device_supports_aborts(h, scsi3addr);
3914 if (dev->supports_aborts < 0)
3915 dev->supports_aborts = 0;
3916 }
3917}
3918
Kevin Barnettc7955052015-11-04 15:51:45 -06003919/*
3920 * Helper function to assign bus, target, lun mapping of devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003921 * Logical drive target and lun are assigned at this time, but
3922 * physical device lun and target assignment are deferred (assigned
3923 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
Kevin Barnettc7955052015-11-04 15:51:45 -06003924*/
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003925static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003926 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003927{
Kevin Barnettc7955052015-11-04 15:51:45 -06003928 u32 lunid = get_unaligned_le32(lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003929
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003930 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3931 /* physical device, target and lun filled in later */
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01003932 if (is_hba_lunid(lunaddrbytes)) {
3933 int bus = HPSA_HBA_BUS;
3934
3935 if (!device->rev)
3936 bus = HPSA_LEGACY_HBA_BUS;
Kevin Barnettc7955052015-11-04 15:51:45 -06003937 hpsa_set_bus_target_lun(device,
Hannes Reinecke7630b3a2016-11-17 12:15:56 +01003938 bus, 0, lunid & 0x3fff);
3939 } else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003940 /* defer target, lun assignment for physical devices */
Kevin Barnettc7955052015-11-04 15:51:45 -06003941 hpsa_set_bus_target_lun(device,
3942 HPSA_PHYSICAL_DEVICE_BUS, -1, -1);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003943 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003944 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003945 /* It's a logical device */
Scott Teel66749d02015-11-04 15:51:57 -06003946 if (device->external) {
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003947 hpsa_set_bus_target_lun(device,
Kevin Barnettc7955052015-11-04 15:51:45 -06003948 HPSA_EXTERNAL_RAID_VOLUME_BUS, (lunid >> 16) & 0x3fff,
3949 lunid & 0x00ff);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003950 return;
3951 }
Kevin Barnettc7955052015-11-04 15:51:45 -06003952 hpsa_set_bus_target_lun(device, HPSA_RAID_VOLUME_BUS,
3953 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003954}
3955
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003956
3957/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003958 * Get address of physical disk used for an ioaccel2 mode command:
3959 * 1. Extract ioaccel2 handle from the command.
3960 * 2. Find a matching ioaccel2 handle from list of physical disks.
3961 * 3. Return:
3962 * 1 and set scsi3addr to address of matching physical
3963 * 0 if no matching physical disk was found.
3964 */
3965static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3966 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3967{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003968 struct io_accel2_cmd *c2 =
3969 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3970 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003971 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003972
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003973 spin_lock_irqsave(&h->devlock, flags);
3974 for (i = 0; i < h->ndevices; i++)
3975 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3976 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3977 sizeof(h->dev[i]->scsi3addr));
3978 spin_unlock_irqrestore(&h->devlock, flags);
3979 return 1;
3980 }
3981 spin_unlock_irqrestore(&h->devlock, flags);
3982 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003983}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003984
Scott Teel66749d02015-11-04 15:51:57 -06003985static int figure_external_status(struct ctlr_info *h, int raid_ctlr_position,
3986 int i, int nphysicals, int nlocal_logicals)
3987{
3988 /* In report logicals, local logicals are listed first,
3989 * then any externals.
3990 */
3991 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3992
3993 if (i == raid_ctlr_position)
3994 return 0;
3995
3996 if (i < logicals_start)
3997 return 0;
3998
3999 /* i is in logicals range, but still within local logicals */
4000 if ((i - nphysicals - (raid_ctlr_position == 0)) < nlocal_logicals)
4001 return 0;
4002
4003 return 1; /* it's an external lun */
4004}
4005
Scott Teel54b6e9e2014-02-18 13:56:45 -06004006/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004007 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
4008 * logdev. The number of luns in physdev and logdev are returned in
4009 * *nphysicals and *nlogicals, respectively.
4010 * Returns 0 on success, -1 otherwise.
4011 */
4012static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06004013 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004014 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004015{
Don Brace03383732015-01-23 16:43:30 -06004016 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004017 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
4018 return -1;
4019 }
Don Brace03383732015-01-23 16:43:30 -06004020 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004021 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06004022 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
4023 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004024 *nphysicals = HPSA_MAX_PHYS_LUN;
4025 }
Don Brace03383732015-01-23 16:43:30 -06004026 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004027 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
4028 return -1;
4029 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06004030 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004031 /* Reject Logicals in excess of our max capability. */
4032 if (*nlogicals > HPSA_MAX_LUN) {
4033 dev_warn(&h->pdev->dev,
4034 "maximum logical LUNs (%d) exceeded. "
4035 "%d LUNs ignored.\n", HPSA_MAX_LUN,
4036 *nlogicals - HPSA_MAX_LUN);
4037 *nlogicals = HPSA_MAX_LUN;
4038 }
4039 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
4040 dev_warn(&h->pdev->dev,
4041 "maximum logical + physical LUNs (%d) exceeded. "
4042 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
4043 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
4044 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
4045 }
4046 return 0;
4047}
4048
Don Brace42a91642014-11-14 17:26:27 -06004049static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
4050 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06004051 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004052 struct ReportLUNdata *logdev_list)
4053{
4054 /* Helper function, figure out where the LUN ID info is coming from
4055 * given index i, lists of physical and logical devices, where in
4056 * the list the raid controller is supposed to appear (first or last)
4057 */
4058
4059 int logicals_start = nphysicals + (raid_ctlr_position == 0);
4060 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
4061
4062 if (i == raid_ctlr_position)
4063 return RAID_CTLR_LUNID;
4064
4065 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05004066 return &physdev_list->LUN[i -
4067 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004068
4069 if (i < last_device)
4070 return &logdev_list->LUN[i - nphysicals -
4071 (raid_ctlr_position == 0)][0];
4072 BUG();
4073 return NULL;
4074}
4075
Don Brace03383732015-01-23 16:43:30 -06004076/* get physical drive ioaccel handle and queue depth */
4077static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
4078 struct hpsa_scsi_dev_t *dev,
Don Bracef2039b02015-11-04 15:51:08 -06004079 struct ReportExtendedLUNdata *rlep, int rle_index,
Don Brace03383732015-01-23 16:43:30 -06004080 struct bmic_identify_physical_device *id_phys)
4081{
4082 int rc;
Scott Teel4b6e5592016-09-09 16:30:36 -05004083 struct ext_report_lun_entry *rle;
4084
4085 /*
4086 * external targets don't support BMIC
4087 */
4088 if (dev->external) {
4089 dev->queue_depth = 7;
4090 return;
4091 }
4092
4093 rle = &rlep->LUN[rle_index];
Don Brace03383732015-01-23 16:43:30 -06004094
4095 dev->ioaccel_handle = rle->ioaccel_handle;
Don Bracef2039b02015-11-04 15:51:08 -06004096 if ((rle->device_flags & 0x08) && dev->ioaccel_handle)
Joe Handzika3144e02015-04-23 09:32:59 -05004097 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06004098 memset(id_phys, 0, sizeof(*id_phys));
Don Bracef2039b02015-11-04 15:51:08 -06004099 rc = hpsa_bmic_id_physical_device(h, &rle->lunid[0],
4100 GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]), id_phys,
Don Brace03383732015-01-23 16:43:30 -06004101 sizeof(*id_phys));
4102 if (!rc)
4103 /* Reserve space for FW operations */
4104#define DRIVE_CMDS_RESERVED_FOR_FW 2
4105#define DRIVE_QUEUE_DEPTH 7
4106 dev->queue_depth =
4107 le16_to_cpu(id_phys->current_queue_depth_limit) -
4108 DRIVE_CMDS_RESERVED_FOR_FW;
4109 else
4110 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
Don Brace03383732015-01-23 16:43:30 -06004111}
4112
Joe Handzik8270b862015-07-18 11:12:43 -05004113static void hpsa_get_path_info(struct hpsa_scsi_dev_t *this_device,
Don Bracef2039b02015-11-04 15:51:08 -06004114 struct ReportExtendedLUNdata *rlep, int rle_index,
Joe Handzik8270b862015-07-18 11:12:43 -05004115 struct bmic_identify_physical_device *id_phys)
4116{
Don Bracef2039b02015-11-04 15:51:08 -06004117 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
4118
4119 if ((rle->device_flags & 0x08) && this_device->ioaccel_handle)
Joe Handzik8270b862015-07-18 11:12:43 -05004120 this_device->hba_ioaccel_enabled = 1;
4121
4122 memcpy(&this_device->active_path_index,
4123 &id_phys->active_path_number,
4124 sizeof(this_device->active_path_index));
4125 memcpy(&this_device->path_map,
4126 &id_phys->redundant_path_present_map,
4127 sizeof(this_device->path_map));
4128 memcpy(&this_device->box,
4129 &id_phys->alternate_paths_phys_box_on_port,
4130 sizeof(this_device->box));
4131 memcpy(&this_device->phys_connector,
4132 &id_phys->alternate_paths_phys_connector,
4133 sizeof(this_device->phys_connector));
4134 memcpy(&this_device->bay,
4135 &id_phys->phys_bay_in_box,
4136 sizeof(this_device->bay));
4137}
4138
Scott Teel66749d02015-11-04 15:51:57 -06004139/* get number of local logical disks. */
4140static int hpsa_set_local_logical_count(struct ctlr_info *h,
4141 struct bmic_identify_controller *id_ctlr,
4142 u32 *nlocals)
4143{
4144 int rc;
4145
4146 if (!id_ctlr) {
4147 dev_warn(&h->pdev->dev, "%s: id_ctlr buffer is NULL.\n",
4148 __func__);
4149 return -ENOMEM;
4150 }
4151 memset(id_ctlr, 0, sizeof(*id_ctlr));
4152 rc = hpsa_bmic_id_controller(h, id_ctlr, sizeof(*id_ctlr));
4153 if (!rc)
4154 if (id_ctlr->configured_logical_drive_count < 256)
4155 *nlocals = id_ctlr->configured_logical_drive_count;
4156 else
4157 *nlocals = le16_to_cpu(
4158 id_ctlr->extended_logical_unit_count);
4159 else
4160 *nlocals = -1;
4161 return rc;
4162}
4163
Don Brace64ce60c2016-07-01 13:37:31 -05004164static bool hpsa_is_disk_spare(struct ctlr_info *h, u8 *lunaddrbytes)
4165{
4166 struct bmic_identify_physical_device *id_phys;
4167 bool is_spare = false;
4168 int rc;
4169
4170 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
4171 if (!id_phys)
4172 return false;
4173
4174 rc = hpsa_bmic_id_physical_device(h,
4175 lunaddrbytes,
4176 GET_BMIC_DRIVE_NUMBER(lunaddrbytes),
4177 id_phys, sizeof(*id_phys));
4178 if (rc == 0)
4179 is_spare = (id_phys->more_flags >> 6) & 0x01;
4180
4181 kfree(id_phys);
4182 return is_spare;
4183}
4184
4185#define RPL_DEV_FLAG_NON_DISK 0x1
4186#define RPL_DEV_FLAG_UNCONFIG_DISK_REPORTING_SUPPORTED 0x2
4187#define RPL_DEV_FLAG_UNCONFIG_DISK 0x4
4188
4189#define BMIC_DEVICE_TYPE_ENCLOSURE 6
4190
4191static bool hpsa_skip_device(struct ctlr_info *h, u8 *lunaddrbytes,
4192 struct ext_report_lun_entry *rle)
4193{
4194 u8 device_flags;
4195 u8 device_type;
4196
4197 if (!MASKED_DEVICE(lunaddrbytes))
4198 return false;
4199
4200 device_flags = rle->device_flags;
4201 device_type = rle->device_type;
4202
4203 if (device_flags & RPL_DEV_FLAG_NON_DISK) {
4204 if (device_type == BMIC_DEVICE_TYPE_ENCLOSURE)
4205 return false;
4206 return true;
4207 }
4208
4209 if (!(device_flags & RPL_DEV_FLAG_UNCONFIG_DISK_REPORTING_SUPPORTED))
4210 return false;
4211
4212 if (device_flags & RPL_DEV_FLAG_UNCONFIG_DISK)
4213 return false;
4214
4215 /*
4216 * Spares may be spun down, we do not want to
4217 * do an Inquiry to a RAID set spare drive as
4218 * that would have them spun up, that is a
4219 * performance hit because I/O to the RAID device
4220 * stops while the spin up occurs which can take
4221 * over 50 seconds.
4222 */
4223 if (hpsa_is_disk_spare(h, lunaddrbytes))
4224 return true;
4225
4226 return false;
4227}
Scott Teel66749d02015-11-04 15:51:57 -06004228
Don Brace8aa60682015-11-04 15:50:01 -06004229static void hpsa_update_scsi_devices(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004230{
4231 /* the idea here is we could get notified
4232 * that some devices have changed, so we do a report
4233 * physical luns and report logical luns cmd, and adjust
4234 * our list of devices accordingly.
4235 *
4236 * The scsi3addr's of devices won't change so long as the
4237 * adapter is not reset. That means we can rescan and
4238 * tell which devices we already know about, vs. new
4239 * devices, vs. disappearing devices.
4240 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06004241 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004242 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06004243 struct bmic_identify_physical_device *id_phys = NULL;
Scott Teel66749d02015-11-04 15:51:57 -06004244 struct bmic_identify_controller *id_ctlr = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004245 u32 nphysicals = 0;
4246 u32 nlogicals = 0;
Scott Teel66749d02015-11-04 15:51:57 -06004247 u32 nlocal_logicals = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004248 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004249 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
4250 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06004251 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004252 int raid_ctlr_position;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004253 bool physical_device;
Scott Teelaca4a522012-01-19 14:01:19 -06004254 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004255
Scott Teelcfe5bad2011-10-26 16:21:07 -05004256 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06004257 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
4258 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004259 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06004260 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Scott Teel66749d02015-11-04 15:51:57 -06004261 id_ctlr = kzalloc(sizeof(*id_ctlr), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004262
Don Brace03383732015-01-23 16:43:30 -06004263 if (!currentsd || !physdev_list || !logdev_list ||
Scott Teel66749d02015-11-04 15:51:57 -06004264 !tmpdevice || !id_phys || !id_ctlr) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004265 dev_err(&h->pdev->dev, "out of memory\n");
4266 goto out;
4267 }
4268 memset(lunzerobits, 0, sizeof(lunzerobits));
4269
Don Brace853633e2015-11-04 15:50:37 -06004270 h->drv_req_rescan = 0; /* cancel scheduled rescan - we're doing it. */
4271
Don Brace03383732015-01-23 16:43:30 -06004272 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
Don Brace853633e2015-11-04 15:50:37 -06004273 logdev_list, &nlogicals)) {
4274 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004275 goto out;
Don Brace853633e2015-11-04 15:50:37 -06004276 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004277
Scott Teel66749d02015-11-04 15:51:57 -06004278 /* Set number of local logicals (non PTRAID) */
4279 if (hpsa_set_local_logical_count(h, id_ctlr, &nlocal_logicals)) {
4280 dev_warn(&h->pdev->dev,
4281 "%s: Can't determine number of local logical devices.\n",
4282 __func__);
4283 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004284
Scott Teelaca4a522012-01-19 14:01:19 -06004285 /* We might see up to the maximum number of logical and physical disks
4286 * plus external target devices, and a device for the local RAID
4287 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004288 */
Scott Teelaca4a522012-01-19 14:01:19 -06004289 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004290
4291 /* Allocate the per device structures */
4292 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05004293 if (i >= HPSA_MAX_DEVICES) {
4294 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
4295 " %d devices ignored.\n", HPSA_MAX_DEVICES,
4296 ndevs_to_allocate - HPSA_MAX_DEVICES);
4297 break;
4298 }
4299
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004300 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
4301 if (!currentsd[i]) {
4302 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
4303 __FILE__, __LINE__);
Don Brace853633e2015-11-04 15:50:37 -06004304 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004305 goto out;
4306 }
4307 ndev_allocated++;
4308 }
4309
Stephen M. Cameron86452912014-05-29 10:53:49 -05004310 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004311 raid_ctlr_position = 0;
4312 else
4313 raid_ctlr_position = nphysicals + nlogicals;
4314
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004315 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06004316 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004317 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004318 u8 *lunaddrbytes, is_OBDR = 0;
Don Brace683fc442015-11-04 15:50:44 -06004319 int rc = 0;
Don Bracef2039b02015-11-04 15:51:08 -06004320 int phys_dev_index = i - (raid_ctlr_position == 0);
Don Brace64ce60c2016-07-01 13:37:31 -05004321 bool skip_device = false;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004322
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004323 physical_device = i < nphysicals + (raid_ctlr_position == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004324
4325 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06004326 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
4327 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004328
Don Brace86cf7132016-09-09 16:30:17 -05004329 /* Determine if this is a lun from an external target array */
4330 tmpdevice->external =
4331 figure_external_status(h, raid_ctlr_position, i,
4332 nphysicals, nlocal_logicals);
4333
Don Brace64ce60c2016-07-01 13:37:31 -05004334 /*
4335 * Skip over some devices such as a spare.
4336 */
4337 if (!tmpdevice->external && physical_device) {
4338 skip_device = hpsa_skip_device(h, lunaddrbytes,
4339 &physdev_list->LUN[phys_dev_index]);
4340 if (skip_device)
4341 continue;
4342 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004343
4344 /* Get device type, vendor, model, device id */
Don Brace683fc442015-11-04 15:50:44 -06004345 rc = hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
4346 &is_OBDR);
4347 if (rc == -ENOMEM) {
4348 dev_warn(&h->pdev->dev,
4349 "Out of memory, rescan deferred.\n");
Don Brace853633e2015-11-04 15:50:37 -06004350 h->drv_req_rescan = 1;
Don Brace683fc442015-11-04 15:50:44 -06004351 goto out;
Don Brace853633e2015-11-04 15:50:37 -06004352 }
Don Brace683fc442015-11-04 15:50:44 -06004353 if (rc) {
Don Bracec81410a2017-03-10 14:35:11 -06004354 h->drv_req_rescan = 1;
Don Brace683fc442015-11-04 15:50:44 -06004355 continue;
4356 }
4357
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06004358 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05004359 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004360 this_device = currentsd[ncurrent];
4361
Scott Teel34592252015-11-04 15:52:09 -06004362 /* Turn on discovery_polling if there are ext target devices.
4363 * Event-based change notification is unreliable for those.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004364 */
Scott Teel34592252015-11-04 15:52:09 -06004365 if (!h->discovery_polling) {
4366 if (tmpdevice->external) {
4367 h->discovery_polling = 1;
4368 dev_info(&h->pdev->dev,
4369 "External target, activate discovery polling.\n");
4370 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004371 }
4372
Scott Teel34592252015-11-04 15:52:09 -06004373
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004374 *this_device = *tmpdevice;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004375 this_device->physical_device = physical_device;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004376
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004377 /*
4378 * Expose all devices except for physical devices that
4379 * are masked.
4380 */
4381 if (MASKED_DEVICE(lunaddrbytes) && this_device->physical_device)
Kevin Barnett2a168202015-11-04 15:51:21 -06004382 this_device->expose_device = 0;
4383 else
4384 this_device->expose_device = 1;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004385
Kevin Barnettd04e62b2015-11-04 15:52:34 -06004386
4387 /*
4388 * Get the SAS address for physical devices that are exposed.
4389 */
4390 if (this_device->physical_device && this_device->expose_device)
4391 hpsa_get_sas_address(h, lunaddrbytes, this_device);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004392
4393 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004394 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004395 /* We don't *really* support actual CD-ROM devices,
4396 * just "One Button Disaster Recovery" tape drive
4397 * which temporarily pretends to be a CD-ROM drive.
4398 * So we check that the device is really an OBDR tape
4399 * device by checking for "$DR-10" in bytes 43-48 of
4400 * the inquiry data.
4401 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05004402 if (is_OBDR)
4403 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004404 break;
4405 case TYPE_DISK:
Don Braceaf15ed32016-02-23 15:16:15 -06004406 case TYPE_ZBC:
Kevin Barnett04fa2f42015-11-04 15:51:27 -06004407 if (this_device->physical_device) {
Kevin Barnettb9092b72015-07-18 11:12:59 -05004408 /* The disk is in HBA mode. */
4409 /* Never use RAID mapper in HBA mode. */
Stephen M. Cameron316b2212014-02-21 16:25:15 -06004410 this_device->offload_enabled = 0;
Kevin Barnettb9092b72015-07-18 11:12:59 -05004411 hpsa_get_ioaccel_drive_info(h, this_device,
Don Bracef2039b02015-11-04 15:51:08 -06004412 physdev_list, phys_dev_index, id_phys);
4413 hpsa_get_path_info(this_device,
4414 physdev_list, phys_dev_index, id_phys);
Kevin Barnettb9092b72015-07-18 11:12:59 -05004415 }
Joe Handzikecf418d12015-04-23 09:33:04 -05004416 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004417 break;
4418 case TYPE_TAPE:
4419 case TYPE_MEDIUM_CHANGER:
Don Bracecca8f132015-12-22 10:36:48 -06004420 ncurrent++;
4421 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004422 case TYPE_ENCLOSURE:
Don Brace17a9e542016-02-23 15:16:09 -06004423 if (!this_device->external)
4424 hpsa_get_enclosure_info(h, lunaddrbytes,
Don Bracecca8f132015-12-22 10:36:48 -06004425 physdev_list, phys_dev_index,
4426 this_device);
Kevin Barnettb9092b72015-07-18 11:12:59 -05004427 ncurrent++;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004428 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004429 case TYPE_RAID:
4430 /* Only present the Smartarray HBA as a RAID controller.
4431 * If it's a RAID controller other than the HBA itself
4432 * (an external RAID controller, MSA500 or similar)
4433 * don't present it.
4434 */
4435 if (!is_hba_lunid(lunaddrbytes))
4436 break;
4437 ncurrent++;
4438 break;
4439 default:
4440 break;
4441 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05004442 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004443 break;
4444 }
Kevin Barnettd04e62b2015-11-04 15:52:34 -06004445
4446 if (h->sas_host == NULL) {
4447 int rc = 0;
4448
4449 rc = hpsa_add_sas_host(h);
4450 if (rc) {
4451 dev_warn(&h->pdev->dev,
4452 "Could not add sas host %d\n", rc);
4453 goto out;
4454 }
4455 }
4456
Don Brace8aa60682015-11-04 15:50:01 -06004457 adjust_hpsa_scsi_table(h, currentsd, ncurrent);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004458out:
4459 kfree(tmpdevice);
4460 for (i = 0; i < ndev_allocated; i++)
4461 kfree(currentsd[i]);
4462 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004463 kfree(physdev_list);
4464 kfree(logdev_list);
Scott Teel66749d02015-11-04 15:51:57 -06004465 kfree(id_ctlr);
Don Brace03383732015-01-23 16:43:30 -06004466 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004467}
4468
Webb Scalesec5cbf02015-01-23 16:44:45 -06004469static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
4470 struct scatterlist *sg)
4471{
4472 u64 addr64 = (u64) sg_dma_address(sg);
4473 unsigned int len = sg_dma_len(sg);
4474
4475 desc->Addr = cpu_to_le64(addr64);
4476 desc->Len = cpu_to_le32(len);
4477 desc->Ext = 0;
4478}
4479
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004480/*
4481 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004482 * dma mapping and fills in the scatter gather entries of the
4483 * hpsa command, cp.
4484 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004485static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004486 struct CommandList *cp,
4487 struct scsi_cmnd *cmd)
4488{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004489 struct scatterlist *sg;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004490 int use_sg, i, sg_limit, chained, last_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004491 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004492
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004493 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004494
4495 use_sg = scsi_dma_map(cmd);
4496 if (use_sg < 0)
4497 return use_sg;
4498
4499 if (!use_sg)
4500 goto sglist_finished;
4501
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004502 /*
4503 * If the number of entries is greater than the max for a single list,
4504 * then we have a chained list; we will set up all but one entry in the
4505 * first list (the last entry is saved for link information);
4506 * otherwise, we don't have a chained list and we'll set up at each of
4507 * the entries in the one list.
4508 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004509 curr_sg = cp->SG;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004510 chained = use_sg > h->max_cmd_sg_entries;
4511 sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg;
4512 last_sg = scsi_sg_count(cmd) - 1;
4513 scsi_for_each_sg(cmd, sg, sg_limit, i) {
Webb Scalesec5cbf02015-01-23 16:44:45 -06004514 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004515 curr_sg++;
4516 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06004517
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004518 if (chained) {
4519 /*
4520 * Continue with the chained list. Set curr_sg to the chained
4521 * list. Modify the limit to the total count less the entries
4522 * we've already set up. Resume the scan at the list entry
4523 * where the previous loop left off.
4524 */
4525 curr_sg = h->cmd_sg_list[cp->cmdindex];
4526 sg_limit = use_sg - sg_limit;
4527 for_each_sg(sg, sg, sg_limit, i) {
4528 hpsa_set_sg_descriptor(curr_sg, sg);
4529 curr_sg++;
4530 }
4531 }
4532
Webb Scalesec5cbf02015-01-23 16:44:45 -06004533 /* Back the pointer up to the last entry and mark it as "last". */
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004534 (curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004535
4536 if (use_sg + chained > h->maxSG)
4537 h->maxSG = use_sg + chained;
4538
4539 if (chained) {
4540 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004541 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06004542 if (hpsa_map_sg_chain_block(h, cp)) {
4543 scsi_dma_unmap(cmd);
4544 return -1;
4545 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004546 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004547 }
4548
4549sglist_finished:
4550
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004551 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004552 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004553 return 0;
4554}
4555
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004556#define IO_ACCEL_INELIGIBLE (1)
4557static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
4558{
4559 int is_write = 0;
4560 u32 block;
4561 u32 block_cnt;
4562
4563 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
4564 switch (cdb[0]) {
4565 case WRITE_6:
4566 case WRITE_12:
4567 is_write = 1;
4568 case READ_6:
4569 case READ_12:
4570 if (*cdb_len == 6) {
Mahesh Rajashekharaabbada72016-09-16 14:54:23 -05004571 block = (((cdb[1] & 0x1F) << 16) |
4572 (cdb[2] << 8) |
4573 cdb[3]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004574 block_cnt = cdb[4];
Don Bracec8a6c9a2015-11-04 15:50:50 -06004575 if (block_cnt == 0)
4576 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004577 } else {
4578 BUG_ON(*cdb_len != 12);
Don Bracec8a6c9a2015-11-04 15:50:50 -06004579 block = get_unaligned_be32(&cdb[2]);
4580 block_cnt = get_unaligned_be32(&cdb[6]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004581 }
4582 if (block_cnt > 0xffff)
4583 return IO_ACCEL_INELIGIBLE;
4584
4585 cdb[0] = is_write ? WRITE_10 : READ_10;
4586 cdb[1] = 0;
4587 cdb[2] = (u8) (block >> 24);
4588 cdb[3] = (u8) (block >> 16);
4589 cdb[4] = (u8) (block >> 8);
4590 cdb[5] = (u8) (block);
4591 cdb[6] = 0;
4592 cdb[7] = (u8) (block_cnt >> 8);
4593 cdb[8] = (u8) (block_cnt);
4594 cdb[9] = 0;
4595 *cdb_len = 10;
4596 break;
4597 }
4598 return 0;
4599}
4600
Scott Teelc3497752014-02-18 13:56:34 -06004601static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004602 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004603 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06004604{
4605 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06004606 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
4607 unsigned int len;
4608 unsigned int total_len = 0;
4609 struct scatterlist *sg;
4610 u64 addr64;
4611 int use_sg, i;
4612 struct SGDescriptor *curr_sg;
4613 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
4614
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004615 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06004616 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
4617 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004618 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004619 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004620
Matt Gatese1f7de02014-02-18 13:55:17 -06004621 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
4622
Don Brace03383732015-01-23 16:43:30 -06004623 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4624 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004625 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004626 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004627
Matt Gatese1f7de02014-02-18 13:55:17 -06004628 c->cmd_type = CMD_IOACCEL1;
4629
4630 /* Adjust the DMA address to point to the accelerated command buffer */
4631 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
4632 (c->cmdindex * sizeof(*cp));
4633 BUG_ON(c->busaddr & 0x0000007F);
4634
4635 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004636 if (use_sg < 0) {
4637 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06004638 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004639 }
Matt Gatese1f7de02014-02-18 13:55:17 -06004640
4641 if (use_sg) {
4642 curr_sg = cp->SG;
4643 scsi_for_each_sg(cmd, sg, use_sg, i) {
4644 addr64 = (u64) sg_dma_address(sg);
4645 len = sg_dma_len(sg);
4646 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004647 curr_sg->Addr = cpu_to_le64(addr64);
4648 curr_sg->Len = cpu_to_le32(len);
4649 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06004650 curr_sg++;
4651 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004652 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06004653
4654 switch (cmd->sc_data_direction) {
4655 case DMA_TO_DEVICE:
4656 control |= IOACCEL1_CONTROL_DATA_OUT;
4657 break;
4658 case DMA_FROM_DEVICE:
4659 control |= IOACCEL1_CONTROL_DATA_IN;
4660 break;
4661 case DMA_NONE:
4662 control |= IOACCEL1_CONTROL_NODATAXFER;
4663 break;
4664 default:
4665 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4666 cmd->sc_data_direction);
4667 BUG();
4668 break;
4669 }
4670 } else {
4671 control |= IOACCEL1_CONTROL_NODATAXFER;
4672 }
4673
Scott Teelc3497752014-02-18 13:56:34 -06004674 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06004675 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06004676 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
4677 cp->transfer_len = cpu_to_le32(total_len);
4678 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
4679 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
4680 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004681 memcpy(cp->CDB, cdb, cdb_len);
4682 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06004683 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004684 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06004685 return 0;
4686}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004687
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004688/*
4689 * Queue a command directly to a device behind the controller using the
4690 * I/O accelerator path.
4691 */
4692static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
4693 struct CommandList *c)
4694{
4695 struct scsi_cmnd *cmd = c->scsi_cmd;
4696 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4697
Don Brace45e596c2016-09-09 16:30:42 -05004698 if (!dev)
4699 return -1;
4700
Don Brace03383732015-01-23 16:43:30 -06004701 c->phys_disk = dev;
4702
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004703 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004704 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004705}
4706
Scott Teeldd0e19f2014-02-18 13:57:31 -06004707/*
4708 * Set encryption parameters for the ioaccel2 request
4709 */
4710static void set_encrypt_ioaccel2(struct ctlr_info *h,
4711 struct CommandList *c, struct io_accel2_cmd *cp)
4712{
4713 struct scsi_cmnd *cmd = c->scsi_cmd;
4714 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4715 struct raid_map_data *map = &dev->raid_map;
4716 u64 first_block;
4717
Scott Teeldd0e19f2014-02-18 13:57:31 -06004718 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06004719 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06004720 return;
4721 /* Set the data encryption key index. */
4722 cp->dekindex = map->dekindex;
4723
4724 /* Set the encryption enable flag, encoded into direction field. */
4725 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
4726
4727 /* Set encryption tweak values based on logical block address
4728 * If block size is 512, tweak value is LBA.
4729 * For other block sizes, tweak is (LBA * block size)/ 512)
4730 */
4731 switch (cmd->cmnd[0]) {
4732 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
Scott Teeldd0e19f2014-02-18 13:57:31 -06004733 case READ_6:
Mahesh Rajashekharaabbada72016-09-16 14:54:23 -05004734 case WRITE_6:
4735 first_block = (((cmd->cmnd[1] & 0x1F) << 16) |
4736 (cmd->cmnd[2] << 8) |
4737 cmd->cmnd[3]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004738 break;
4739 case WRITE_10:
4740 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004741 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
4742 case WRITE_12:
4743 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06004744 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004745 break;
4746 case WRITE_16:
4747 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06004748 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004749 break;
4750 default:
4751 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06004752 "ERROR: %s: size (0x%x) not supported for encryption\n",
4753 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004754 BUG();
4755 break;
4756 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004757
4758 if (le32_to_cpu(map->volume_blk_size) != 512)
4759 first_block = first_block *
4760 le32_to_cpu(map->volume_blk_size)/512;
4761
4762 cp->tweak_lower = cpu_to_le32(first_block);
4763 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004764}
4765
Scott Teelc3497752014-02-18 13:56:34 -06004766static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
4767 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004768 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004769{
4770 struct scsi_cmnd *cmd = c->scsi_cmd;
4771 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
4772 struct ioaccel2_sg_element *curr_sg;
4773 int use_sg, i;
4774 struct scatterlist *sg;
4775 u64 addr64;
4776 u32 len;
4777 u32 total_len = 0;
4778
Don Brace45e596c2016-09-09 16:30:42 -05004779 if (!cmd->device)
4780 return -1;
4781
4782 if (!cmd->device->hostdata)
4783 return -1;
4784
Webb Scalesd9a729f2015-04-23 09:33:27 -05004785 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06004786
Don Brace03383732015-01-23 16:43:30 -06004787 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4788 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004789 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004790 }
4791
Scott Teelc3497752014-02-18 13:56:34 -06004792 c->cmd_type = CMD_IOACCEL2;
4793 /* Adjust the DMA address to point to the accelerated command buffer */
4794 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
4795 (c->cmdindex * sizeof(*cp));
4796 BUG_ON(c->busaddr & 0x0000007F);
4797
4798 memset(cp, 0, sizeof(*cp));
4799 cp->IU_type = IOACCEL2_IU_TYPE;
4800
4801 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004802 if (use_sg < 0) {
4803 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004804 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004805 }
Scott Teelc3497752014-02-18 13:56:34 -06004806
4807 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06004808 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05004809 if (use_sg > h->ioaccel_maxsg) {
4810 addr64 = le64_to_cpu(
4811 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
4812 curr_sg->address = cpu_to_le64(addr64);
4813 curr_sg->length = 0;
4814 curr_sg->reserved[0] = 0;
4815 curr_sg->reserved[1] = 0;
4816 curr_sg->reserved[2] = 0;
4817 curr_sg->chain_indicator = 0x80;
4818
4819 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
4820 }
Scott Teelc3497752014-02-18 13:56:34 -06004821 scsi_for_each_sg(cmd, sg, use_sg, i) {
4822 addr64 = (u64) sg_dma_address(sg);
4823 len = sg_dma_len(sg);
4824 total_len += len;
4825 curr_sg->address = cpu_to_le64(addr64);
4826 curr_sg->length = cpu_to_le32(len);
4827 curr_sg->reserved[0] = 0;
4828 curr_sg->reserved[1] = 0;
4829 curr_sg->reserved[2] = 0;
4830 curr_sg->chain_indicator = 0;
4831 curr_sg++;
4832 }
4833
4834 switch (cmd->sc_data_direction) {
4835 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004836 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4837 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06004838 break;
4839 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004840 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4841 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06004842 break;
4843 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004844 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4845 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004846 break;
4847 default:
4848 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4849 cmd->sc_data_direction);
4850 BUG();
4851 break;
4852 }
4853 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06004854 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4855 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004856 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06004857
4858 /* Set encryption parameters, if necessary */
4859 set_encrypt_ioaccel2(h, c, cp);
4860
Don Brace2b08b3e2015-01-23 16:41:09 -06004861 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06004862 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06004863 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06004864
Scott Teelc3497752014-02-18 13:56:34 -06004865 cp->data_len = cpu_to_le32(total_len);
4866 cp->err_ptr = cpu_to_le64(c->busaddr +
4867 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004868 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06004869
Webb Scalesd9a729f2015-04-23 09:33:27 -05004870 /* fill in sg elements */
4871 if (use_sg > h->ioaccel_maxsg) {
4872 cp->sg_count = 1;
Don Bracea736e9b2015-11-04 15:51:14 -06004873 cp->sg[0].length = cpu_to_le32(use_sg * sizeof(cp->sg[0]));
Webb Scalesd9a729f2015-04-23 09:33:27 -05004874 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
4875 atomic_dec(&phys_disk->ioaccel_cmds_out);
4876 scsi_dma_unmap(cmd);
4877 return -1;
4878 }
4879 } else
4880 cp->sg_count = (u8) use_sg;
4881
Scott Teelc3497752014-02-18 13:56:34 -06004882 enqueue_cmd_and_start_io(h, c);
4883 return 0;
4884}
4885
4886/*
4887 * Queue a command to the correct I/O accelerator path.
4888 */
4889static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
4890 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004891 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004892{
Don Brace45e596c2016-09-09 16:30:42 -05004893 if (!c->scsi_cmd->device)
4894 return -1;
4895
4896 if (!c->scsi_cmd->device->hostdata)
4897 return -1;
4898
Don Brace03383732015-01-23 16:43:30 -06004899 /* Try to honor the device's queue depth */
4900 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
4901 phys_disk->queue_depth) {
4902 atomic_dec(&phys_disk->ioaccel_cmds_out);
4903 return IO_ACCEL_INELIGIBLE;
4904 }
Scott Teelc3497752014-02-18 13:56:34 -06004905 if (h->transMethod & CFGTBL_Trans_io_accel1)
4906 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004907 cdb, cdb_len, scsi3addr,
4908 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004909 else
4910 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004911 cdb, cdb_len, scsi3addr,
4912 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004913}
4914
Scott Teel6b80b182014-02-18 13:56:55 -06004915static void raid_map_helper(struct raid_map_data *map,
4916 int offload_to_mirror, u32 *map_index, u32 *current_group)
4917{
4918 if (offload_to_mirror == 0) {
4919 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06004920 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004921 return;
4922 }
4923 do {
4924 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06004925 *current_group = *map_index /
4926 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004927 if (offload_to_mirror == *current_group)
4928 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06004929 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06004930 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004931 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004932 (*current_group)++;
4933 } else {
4934 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004935 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004936 *current_group = 0;
4937 }
4938 } while (offload_to_mirror != *current_group);
4939}
4940
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004941/*
4942 * Attempt to perform offload RAID mapping for a logical volume I/O.
4943 */
4944static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4945 struct CommandList *c)
4946{
4947 struct scsi_cmnd *cmd = c->scsi_cmd;
4948 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4949 struct raid_map_data *map = &dev->raid_map;
4950 struct raid_map_disk_data *dd = &map->data[0];
4951 int is_write = 0;
4952 u32 map_index;
4953 u64 first_block, last_block;
4954 u32 block_cnt;
4955 u32 blocks_per_row;
4956 u64 first_row, last_row;
4957 u32 first_row_offset, last_row_offset;
4958 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06004959 u64 r0_first_row, r0_last_row;
4960 u32 r5or6_blocks_per_row;
4961 u64 r5or6_first_row, r5or6_last_row;
4962 u32 r5or6_first_row_offset, r5or6_last_row_offset;
4963 u32 r5or6_first_column, r5or6_last_column;
4964 u32 total_disks_per_row;
4965 u32 stripesize;
4966 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004967 u32 map_row;
4968 u32 disk_handle;
4969 u64 disk_block;
4970 u32 disk_block_cnt;
4971 u8 cdb[16];
4972 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06004973 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004974#if BITS_PER_LONG == 32
4975 u64 tmpdiv;
4976#endif
Scott Teel6b80b182014-02-18 13:56:55 -06004977 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004978
Don Brace45e596c2016-09-09 16:30:42 -05004979 if (!dev)
4980 return -1;
4981
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004982 /* check for valid opcode, get LBA and block count */
4983 switch (cmd->cmnd[0]) {
4984 case WRITE_6:
4985 is_write = 1;
4986 case READ_6:
Mahesh Rajashekharaabbada72016-09-16 14:54:23 -05004987 first_block = (((cmd->cmnd[1] & 0x1F) << 16) |
4988 (cmd->cmnd[2] << 8) |
4989 cmd->cmnd[3]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004990 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05004991 if (block_cnt == 0)
4992 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004993 break;
4994 case WRITE_10:
4995 is_write = 1;
4996 case READ_10:
4997 first_block =
4998 (((u64) cmd->cmnd[2]) << 24) |
4999 (((u64) cmd->cmnd[3]) << 16) |
5000 (((u64) cmd->cmnd[4]) << 8) |
5001 cmd->cmnd[5];
5002 block_cnt =
5003 (((u32) cmd->cmnd[7]) << 8) |
5004 cmd->cmnd[8];
5005 break;
5006 case WRITE_12:
5007 is_write = 1;
5008 case READ_12:
5009 first_block =
5010 (((u64) cmd->cmnd[2]) << 24) |
5011 (((u64) cmd->cmnd[3]) << 16) |
5012 (((u64) cmd->cmnd[4]) << 8) |
5013 cmd->cmnd[5];
5014 block_cnt =
5015 (((u32) cmd->cmnd[6]) << 24) |
5016 (((u32) cmd->cmnd[7]) << 16) |
5017 (((u32) cmd->cmnd[8]) << 8) |
5018 cmd->cmnd[9];
5019 break;
5020 case WRITE_16:
5021 is_write = 1;
5022 case READ_16:
5023 first_block =
5024 (((u64) cmd->cmnd[2]) << 56) |
5025 (((u64) cmd->cmnd[3]) << 48) |
5026 (((u64) cmd->cmnd[4]) << 40) |
5027 (((u64) cmd->cmnd[5]) << 32) |
5028 (((u64) cmd->cmnd[6]) << 24) |
5029 (((u64) cmd->cmnd[7]) << 16) |
5030 (((u64) cmd->cmnd[8]) << 8) |
5031 cmd->cmnd[9];
5032 block_cnt =
5033 (((u32) cmd->cmnd[10]) << 24) |
5034 (((u32) cmd->cmnd[11]) << 16) |
5035 (((u32) cmd->cmnd[12]) << 8) |
5036 cmd->cmnd[13];
5037 break;
5038 default:
5039 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
5040 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005041 last_block = first_block + block_cnt - 1;
5042
5043 /* check for write to non-RAID-0 */
5044 if (is_write && dev->raid_level != 0)
5045 return IO_ACCEL_INELIGIBLE;
5046
5047 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06005048 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
5049 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005050 return IO_ACCEL_INELIGIBLE;
5051
5052 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06005053 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
5054 le16_to_cpu(map->strip_size);
5055 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005056#if BITS_PER_LONG == 32
5057 tmpdiv = first_block;
5058 (void) do_div(tmpdiv, blocks_per_row);
5059 first_row = tmpdiv;
5060 tmpdiv = last_block;
5061 (void) do_div(tmpdiv, blocks_per_row);
5062 last_row = tmpdiv;
5063 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
5064 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
5065 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06005066 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005067 first_column = tmpdiv;
5068 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06005069 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005070 last_column = tmpdiv;
5071#else
5072 first_row = first_block / blocks_per_row;
5073 last_row = last_block / blocks_per_row;
5074 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
5075 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06005076 first_column = first_row_offset / strip_size;
5077 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005078#endif
5079
5080 /* if this isn't a single row/column then give to the controller */
5081 if ((first_row != last_row) || (first_column != last_column))
5082 return IO_ACCEL_INELIGIBLE;
5083
5084 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06005085 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
5086 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005087 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06005088 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06005089 map_index = (map_row * total_disks_per_row) + first_column;
5090
5091 switch (dev->raid_level) {
5092 case HPSA_RAID_0:
5093 break; /* nothing special to do */
5094 case HPSA_RAID_1:
5095 /* Handles load balance across RAID 1 members.
5096 * (2-drive R1 and R10 with even # of drives.)
5097 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005098 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005099 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005100 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06005101 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005102 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06005103 break;
5104 case HPSA_RAID_ADM:
5105 /* Handles N-way mirrors (R1-ADM)
5106 * and R10 with # of drives divisible by 3.)
5107 */
Don Brace2b08b3e2015-01-23 16:41:09 -06005108 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06005109
5110 offload_to_mirror = dev->offload_to_mirror;
5111 raid_map_helper(map, offload_to_mirror,
5112 &map_index, &current_group);
5113 /* set mirror group to use next time */
5114 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06005115 (offload_to_mirror >=
5116 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06005117 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06005118 dev->offload_to_mirror = offload_to_mirror;
5119 /* Avoid direct use of dev->offload_to_mirror within this
5120 * function since multiple threads might simultaneously
5121 * increment it beyond the range of dev->layout_map_count -1.
5122 */
5123 break;
5124 case HPSA_RAID_5:
5125 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06005126 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06005127 break;
5128
5129 /* Verify first and last block are in same RAID group */
5130 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06005131 le16_to_cpu(map->strip_size) *
5132 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06005133 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06005134 stripesize = r5or6_blocks_per_row *
5135 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06005136#if BITS_PER_LONG == 32
5137 tmpdiv = first_block;
5138 first_group = do_div(tmpdiv, stripesize);
5139 tmpdiv = first_group;
5140 (void) do_div(tmpdiv, r5or6_blocks_per_row);
5141 first_group = tmpdiv;
5142 tmpdiv = last_block;
5143 last_group = do_div(tmpdiv, stripesize);
5144 tmpdiv = last_group;
5145 (void) do_div(tmpdiv, r5or6_blocks_per_row);
5146 last_group = tmpdiv;
5147#else
5148 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
5149 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06005150#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05005151 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06005152 return IO_ACCEL_INELIGIBLE;
5153
5154 /* Verify request is in a single row of RAID 5/6 */
5155#if BITS_PER_LONG == 32
5156 tmpdiv = first_block;
5157 (void) do_div(tmpdiv, stripesize);
5158 first_row = r5or6_first_row = r0_first_row = tmpdiv;
5159 tmpdiv = last_block;
5160 (void) do_div(tmpdiv, stripesize);
5161 r5or6_last_row = r0_last_row = tmpdiv;
5162#else
5163 first_row = r5or6_first_row = r0_first_row =
5164 first_block / stripesize;
5165 r5or6_last_row = r0_last_row = last_block / stripesize;
5166#endif
5167 if (r5or6_first_row != r5or6_last_row)
5168 return IO_ACCEL_INELIGIBLE;
5169
5170
5171 /* Verify request is in a single column */
5172#if BITS_PER_LONG == 32
5173 tmpdiv = first_block;
5174 first_row_offset = do_div(tmpdiv, stripesize);
5175 tmpdiv = first_row_offset;
5176 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
5177 r5or6_first_row_offset = first_row_offset;
5178 tmpdiv = last_block;
5179 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
5180 tmpdiv = r5or6_last_row_offset;
5181 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
5182 tmpdiv = r5or6_first_row_offset;
5183 (void) do_div(tmpdiv, map->strip_size);
5184 first_column = r5or6_first_column = tmpdiv;
5185 tmpdiv = r5or6_last_row_offset;
5186 (void) do_div(tmpdiv, map->strip_size);
5187 r5or6_last_column = tmpdiv;
5188#else
5189 first_row_offset = r5or6_first_row_offset =
5190 (u32)((first_block % stripesize) %
5191 r5or6_blocks_per_row);
5192
5193 r5or6_last_row_offset =
5194 (u32)((last_block % stripesize) %
5195 r5or6_blocks_per_row);
5196
5197 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06005198 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06005199 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06005200 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06005201#endif
5202 if (r5or6_first_column != r5or6_last_column)
5203 return IO_ACCEL_INELIGIBLE;
5204
5205 /* Request is eligible */
5206 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06005207 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06005208
5209 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06005210 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06005211 (map_row * total_disks_per_row) + first_column;
5212 break;
5213 default:
5214 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005215 }
Scott Teel6b80b182014-02-18 13:56:55 -06005216
Stephen Cameron07543e02015-01-23 16:44:14 -06005217 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
5218 return IO_ACCEL_INELIGIBLE;
5219
Don Brace03383732015-01-23 16:43:30 -06005220 c->phys_disk = dev->phys_disk[map_index];
Don Bracec3390df2016-02-23 15:16:34 -06005221 if (!c->phys_disk)
5222 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06005223
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005224 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06005225 disk_block = le64_to_cpu(map->disk_starting_blk) +
5226 first_row * le16_to_cpu(map->strip_size) +
5227 (first_row_offset - first_column *
5228 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005229 disk_block_cnt = block_cnt;
5230
5231 /* handle differing logical/physical block sizes */
5232 if (map->phys_blk_shift) {
5233 disk_block <<= map->phys_blk_shift;
5234 disk_block_cnt <<= map->phys_blk_shift;
5235 }
5236 BUG_ON(disk_block_cnt > 0xffff);
5237
5238 /* build the new CDB for the physical disk I/O */
5239 if (disk_block > 0xffffffff) {
5240 cdb[0] = is_write ? WRITE_16 : READ_16;
5241 cdb[1] = 0;
5242 cdb[2] = (u8) (disk_block >> 56);
5243 cdb[3] = (u8) (disk_block >> 48);
5244 cdb[4] = (u8) (disk_block >> 40);
5245 cdb[5] = (u8) (disk_block >> 32);
5246 cdb[6] = (u8) (disk_block >> 24);
5247 cdb[7] = (u8) (disk_block >> 16);
5248 cdb[8] = (u8) (disk_block >> 8);
5249 cdb[9] = (u8) (disk_block);
5250 cdb[10] = (u8) (disk_block_cnt >> 24);
5251 cdb[11] = (u8) (disk_block_cnt >> 16);
5252 cdb[12] = (u8) (disk_block_cnt >> 8);
5253 cdb[13] = (u8) (disk_block_cnt);
5254 cdb[14] = 0;
5255 cdb[15] = 0;
5256 cdb_len = 16;
5257 } else {
5258 cdb[0] = is_write ? WRITE_10 : READ_10;
5259 cdb[1] = 0;
5260 cdb[2] = (u8) (disk_block >> 24);
5261 cdb[3] = (u8) (disk_block >> 16);
5262 cdb[4] = (u8) (disk_block >> 8);
5263 cdb[5] = (u8) (disk_block);
5264 cdb[6] = 0;
5265 cdb[7] = (u8) (disk_block_cnt >> 8);
5266 cdb[8] = (u8) (disk_block_cnt);
5267 cdb[9] = 0;
5268 cdb_len = 10;
5269 }
5270 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06005271 dev->scsi3addr,
5272 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005273}
5274
Webb Scales25163bd2015-04-23 09:32:00 -05005275/*
5276 * Submit commands down the "normal" RAID stack path
5277 * All callers to hpsa_ciss_submit must check lockup_detected
5278 * beforehand, before (opt.) and after calling cmd_alloc
5279 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06005280static int hpsa_ciss_submit(struct ctlr_info *h,
5281 struct CommandList *c, struct scsi_cmnd *cmd,
5282 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005283{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005284 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005285 c->cmd_type = CMD_SCSI;
5286 c->scsi_cmd = cmd;
5287 c->Header.ReplyQueue = 0; /* unused in simple mode */
5288 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06005289 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005290
5291 /* Fill in the request block... */
5292
5293 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005294 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
5295 c->Request.CDBLen = cmd->cmd_len;
5296 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005297 switch (cmd->sc_data_direction) {
5298 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005299 c->Request.type_attr_dir =
5300 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005301 break;
5302 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005303 c->Request.type_attr_dir =
5304 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005305 break;
5306 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06005307 c->Request.type_attr_dir =
5308 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005309 break;
5310 case DMA_BIDIRECTIONAL:
5311 /* This can happen if a buggy application does a scsi passthru
5312 * and sets both inlen and outlen to non-zero. ( see
5313 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
5314 */
5315
Stephen M. Camerona505b862014-11-14 17:27:04 -06005316 c->Request.type_attr_dir =
5317 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005318 /* This is technically wrong, and hpsa controllers should
5319 * reject it with CMD_INVALID, which is the most correct
5320 * response, but non-fibre backends appear to let it
5321 * slide by, and give the same results as if this field
5322 * were set correctly. Either way is acceptable for
5323 * our purposes here.
5324 */
5325
5326 break;
5327
5328 default:
5329 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
5330 cmd->sc_data_direction);
5331 BUG();
5332 break;
5333 }
5334
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06005335 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Webb Scales73153fe2015-04-23 09:35:04 -05005336 hpsa_cmd_resolve_and_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005337 return SCSI_MLQUEUE_HOST_BUSY;
5338 }
5339 enqueue_cmd_and_start_io(h, c);
5340 /* the cmd'll come back via intr handler in complete_scsi_command() */
5341 return 0;
5342}
5343
Stephen Cameron360c73b2015-04-23 09:32:32 -05005344static void hpsa_cmd_init(struct ctlr_info *h, int index,
5345 struct CommandList *c)
5346{
5347 dma_addr_t cmd_dma_handle, err_dma_handle;
5348
5349 /* Zero out all of commandlist except the last field, refcount */
5350 memset(c, 0, offsetof(struct CommandList, refcount));
5351 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
5352 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
5353 c->err_info = h->errinfo_pool + index;
5354 memset(c->err_info, 0, sizeof(*c->err_info));
5355 err_dma_handle = h->errinfo_pool_dhandle
5356 + index * sizeof(*c->err_info);
5357 c->cmdindex = index;
5358 c->busaddr = (u32) cmd_dma_handle;
5359 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
5360 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
5361 c->h = h;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005362 c->scsi_cmd = SCSI_CMD_IDLE;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005363}
5364
5365static void hpsa_preinitialize_commands(struct ctlr_info *h)
5366{
5367 int i;
5368
5369 for (i = 0; i < h->nr_cmds; i++) {
5370 struct CommandList *c = h->cmd_pool + i;
5371
5372 hpsa_cmd_init(h, i, c);
5373 atomic_set(&c->refcount, 0);
5374 }
5375}
5376
5377static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
5378 struct CommandList *c)
5379{
5380 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
5381
Webb Scales73153fe2015-04-23 09:35:04 -05005382 BUG_ON(c->cmdindex != index);
5383
Stephen Cameron360c73b2015-04-23 09:32:32 -05005384 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
5385 memset(c->err_info, 0, sizeof(*c->err_info));
5386 c->busaddr = (u32) cmd_dma_handle;
5387}
5388
Webb Scales592a0ad2015-04-23 09:32:48 -05005389static int hpsa_ioaccel_submit(struct ctlr_info *h,
5390 struct CommandList *c, struct scsi_cmnd *cmd,
5391 unsigned char *scsi3addr)
5392{
5393 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
5394 int rc = IO_ACCEL_INELIGIBLE;
5395
Don Brace45e596c2016-09-09 16:30:42 -05005396 if (!dev)
5397 return SCSI_MLQUEUE_HOST_BUSY;
5398
Webb Scales592a0ad2015-04-23 09:32:48 -05005399 cmd->host_scribble = (unsigned char *) c;
5400
5401 if (dev->offload_enabled) {
5402 hpsa_cmd_init(h, c->cmdindex, c);
5403 c->cmd_type = CMD_SCSI;
5404 c->scsi_cmd = cmd;
5405 rc = hpsa_scsi_ioaccel_raid_map(h, c);
5406 if (rc < 0) /* scsi_dma_map failed. */
5407 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05005408 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05005409 hpsa_cmd_init(h, c->cmdindex, c);
5410 c->cmd_type = CMD_SCSI;
5411 c->scsi_cmd = cmd;
5412 rc = hpsa_scsi_ioaccel_direct_map(h, c);
5413 if (rc < 0) /* scsi_dma_map failed. */
5414 rc = SCSI_MLQUEUE_HOST_BUSY;
5415 }
5416 return rc;
5417}
5418
Don Brace080ef1c2015-01-23 16:43:25 -06005419static void hpsa_command_resubmit_worker(struct work_struct *work)
5420{
5421 struct scsi_cmnd *cmd;
5422 struct hpsa_scsi_dev_t *dev;
Webb Scales8a0ff922015-04-23 09:34:11 -05005423 struct CommandList *c = container_of(work, struct CommandList, work);
Don Brace080ef1c2015-01-23 16:43:25 -06005424
5425 cmd = c->scsi_cmd;
5426 dev = cmd->device->hostdata;
5427 if (!dev) {
5428 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05005429 return hpsa_cmd_free_and_done(c->h, c, cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06005430 }
Webb Scalesd604f532015-04-23 09:35:22 -05005431 if (c->reset_pending)
5432 return hpsa_cmd_resolve_and_free(c->h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05005433 if (c->abort_pending)
5434 return hpsa_cmd_abort_and_free(c->h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05005435 if (c->cmd_type == CMD_IOACCEL2) {
5436 struct ctlr_info *h = c->h;
5437 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5438 int rc;
5439
5440 if (c2->error_data.serv_response ==
5441 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
5442 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
5443 if (rc == 0)
5444 return;
5445 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
5446 /*
5447 * If we get here, it means dma mapping failed.
5448 * Try again via scsi mid layer, which will
5449 * then get SCSI_MLQUEUE_HOST_BUSY.
5450 */
5451 cmd->result = DID_IMM_RETRY << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05005452 return hpsa_cmd_free_and_done(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05005453 }
5454 /* else, fall thru and resubmit down CISS path */
5455 }
5456 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05005457 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06005458 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
5459 /*
5460 * If we get here, it means dma mapping failed. Try
5461 * again via scsi mid layer, which will then get
5462 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05005463 *
5464 * hpsa_ciss_submit will have already freed c
5465 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06005466 */
5467 cmd->result = DID_IMM_RETRY << 16;
5468 cmd->scsi_done(cmd);
5469 }
5470}
5471
Stephen Cameron574f05d2015-01-23 16:43:20 -06005472/* Running in struct Scsi_Host->host_lock less mode */
5473static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
5474{
5475 struct ctlr_info *h;
5476 struct hpsa_scsi_dev_t *dev;
5477 unsigned char scsi3addr[8];
5478 struct CommandList *c;
5479 int rc = 0;
5480
5481 /* Get the ptr to our adapter structure out of cmd->host. */
5482 h = sdev_to_hba(cmd->device);
Webb Scales73153fe2015-04-23 09:35:04 -05005483
5484 BUG_ON(cmd->request->tag < 0);
5485
Stephen Cameron574f05d2015-01-23 16:43:20 -06005486 dev = cmd->device->hostdata;
5487 if (!dev) {
Don Braceba74fdc2016-04-27 17:14:17 -05005488 cmd->result = NOT_READY << 16; /* host byte */
5489 cmd->scsi_done(cmd);
5490 return 0;
5491 }
5492
5493 if (dev->removed) {
Stephen Cameron574f05d2015-01-23 16:43:20 -06005494 cmd->result = DID_NO_CONNECT << 16;
5495 cmd->scsi_done(cmd);
5496 return 0;
5497 }
Webb Scales73153fe2015-04-23 09:35:04 -05005498
Stephen Cameron574f05d2015-01-23 16:43:20 -06005499 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
5500
5501 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05005502 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005503 cmd->scsi_done(cmd);
5504 return 0;
5505 }
Webb Scales73153fe2015-04-23 09:35:04 -05005506 c = cmd_tagged_alloc(h, cmd);
Stephen Cameron574f05d2015-01-23 16:43:20 -06005507
Stephen Cameron407863c2015-01-23 16:44:19 -06005508 /*
5509 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06005510 * Retries always go down the normal I/O path.
5511 */
5512 if (likely(cmd->retries == 0 &&
5513 cmd->request->cmd_type == REQ_TYPE_FS &&
5514 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05005515 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
5516 if (rc == 0)
5517 return 0;
5518 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
Webb Scales73153fe2015-04-23 09:35:04 -05005519 hpsa_cmd_resolve_and_free(h, c);
Webb Scales592a0ad2015-04-23 09:32:48 -05005520 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005521 }
5522 }
5523 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
5524}
5525
Webb Scales8ebc9242015-01-23 16:44:50 -06005526static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005527{
5528 unsigned long flags;
5529
Webb Scales8ebc9242015-01-23 16:44:50 -06005530 spin_lock_irqsave(&h->scan_lock, flags);
5531 h->scan_finished = 1;
Don Brace0f07e762017-03-10 14:35:17 -06005532 wake_up(&h->scan_wait_queue);
Webb Scales8ebc9242015-01-23 16:44:50 -06005533 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005534}
5535
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005536static void hpsa_scan_start(struct Scsi_Host *sh)
5537{
5538 struct ctlr_info *h = shost_to_hba(sh);
5539 unsigned long flags;
5540
Webb Scales8ebc9242015-01-23 16:44:50 -06005541 /*
5542 * Don't let rescans be initiated on a controller known to be locked
5543 * up. If the controller locks up *during* a rescan, that thread is
5544 * probably hosed, but at least we can prevent new rescan threads from
5545 * piling up on a locked up controller.
5546 */
5547 if (unlikely(lockup_detected(h)))
5548 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005549
Don Brace0f07e762017-03-10 14:35:17 -06005550 /*
5551 * If a scan is already waiting to run, no need to add another
5552 */
5553 spin_lock_irqsave(&h->scan_lock, flags);
5554 if (h->scan_waiting) {
5555 spin_unlock_irqrestore(&h->scan_lock, flags);
5556 return;
5557 }
5558
5559 spin_unlock_irqrestore(&h->scan_lock, flags);
5560
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005561 /* wait until any scan already in progress is finished. */
5562 while (1) {
5563 spin_lock_irqsave(&h->scan_lock, flags);
5564 if (h->scan_finished)
5565 break;
Don Brace0f07e762017-03-10 14:35:17 -06005566 h->scan_waiting = 1;
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005567 spin_unlock_irqrestore(&h->scan_lock, flags);
5568 wait_event(h->scan_wait_queue, h->scan_finished);
5569 /* Note: We don't need to worry about a race between this
5570 * thread and driver unload because the midlayer will
5571 * have incremented the reference count, so unload won't
5572 * happen if we're in here.
5573 */
5574 }
5575 h->scan_finished = 0; /* mark scan as in progress */
Don Brace0f07e762017-03-10 14:35:17 -06005576 h->scan_waiting = 0;
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005577 spin_unlock_irqrestore(&h->scan_lock, flags);
5578
Webb Scales8ebc9242015-01-23 16:44:50 -06005579 if (unlikely(lockup_detected(h)))
5580 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005581
Don Brace8aa60682015-11-04 15:50:01 -06005582 hpsa_update_scsi_devices(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005583
Webb Scales8ebc9242015-01-23 16:44:50 -06005584 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005585}
5586
Don Brace7c0a0222015-01-23 16:41:30 -06005587static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
5588{
Don Brace03383732015-01-23 16:43:30 -06005589 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
5590
5591 if (!logical_drive)
5592 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06005593
5594 if (qdepth < 1)
5595 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06005596 else if (qdepth > logical_drive->queue_depth)
5597 qdepth = logical_drive->queue_depth;
5598
5599 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06005600}
5601
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005602static int hpsa_scan_finished(struct Scsi_Host *sh,
5603 unsigned long elapsed_time)
5604{
5605 struct ctlr_info *h = shost_to_hba(sh);
5606 unsigned long flags;
5607 int finished;
5608
5609 spin_lock_irqsave(&h->scan_lock, flags);
5610 finished = h->scan_finished;
5611 spin_unlock_irqrestore(&h->scan_lock, flags);
5612 return finished;
5613}
5614
Robert Elliott2946e822015-04-23 09:35:09 -05005615static int hpsa_scsi_host_alloc(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005616{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005617 struct Scsi_Host *sh;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005618
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005619 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
Robert Elliott2946e822015-04-23 09:35:09 -05005620 if (sh == NULL) {
5621 dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
5622 return -ENOMEM;
5623 }
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005624
5625 sh->io_port = 0;
5626 sh->n_io_port = 0;
5627 sh->this_id = -1;
5628 sh->max_channel = 3;
5629 sh->max_cmd_len = MAX_COMMAND_SIZE;
5630 sh->max_lun = HPSA_MAX_LUN;
5631 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05005632 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06005633 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005634 sh->sg_tablesize = h->maxsgentries;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06005635 sh->transportt = hpsa_sas_transport_template;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005636 sh->hostdata[0] = (unsigned long) h;
5637 sh->irq = h->intr[h->intr_mode];
5638 sh->unique_id = sh->irq;
Christoph Hellwig64d513a2015-10-08 09:28:04 +01005639
Robert Elliott2946e822015-04-23 09:35:09 -05005640 h->scsi_host = sh;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005641 return 0;
Robert Elliott2946e822015-04-23 09:35:09 -05005642}
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005643
Robert Elliott2946e822015-04-23 09:35:09 -05005644static int hpsa_scsi_add_host(struct ctlr_info *h)
5645{
5646 int rv;
5647
5648 rv = scsi_add_host(h->scsi_host, &h->pdev->dev);
5649 if (rv) {
5650 dev_err(&h->pdev->dev, "scsi_add_host failed\n");
5651 return rv;
5652 }
5653 scsi_scan_host(h->scsi_host);
5654 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005655}
5656
Webb Scalesb69324f2015-04-23 09:34:22 -05005657/*
Webb Scales73153fe2015-04-23 09:35:04 -05005658 * The block layer has already gone to the trouble of picking out a unique,
5659 * small-integer tag for this request. We use an offset from that value as
5660 * an index to select our command block. (The offset allows us to reserve the
5661 * low-numbered entries for our own uses.)
5662 */
5663static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
5664{
5665 int idx = scmd->request->tag;
5666
5667 if (idx < 0)
5668 return idx;
5669
5670 /* Offset to leave space for internal cmds. */
5671 return idx += HPSA_NRESERVED_CMDS;
5672}
5673
5674/*
Webb Scalesb69324f2015-04-23 09:34:22 -05005675 * Send a TEST_UNIT_READY command to the specified LUN using the specified
5676 * reply queue; returns zero if the unit is ready, and non-zero otherwise.
5677 */
5678static int hpsa_send_test_unit_ready(struct ctlr_info *h,
5679 struct CommandList *c, unsigned char lunaddr[],
5680 int reply_queue)
5681{
5682 int rc;
5683
5684 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
5685 (void) fill_cmd(c, TEST_UNIT_READY, h,
5686 NULL, 0, 0, lunaddr, TYPE_CMD);
Don Bracec448ecf2016-04-27 17:13:51 -05005687 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, DEFAULT_TIMEOUT);
Webb Scalesb69324f2015-04-23 09:34:22 -05005688 if (rc)
5689 return rc;
5690 /* no unmap needed here because no data xfer. */
5691
5692 /* Check if the unit is already ready. */
5693 if (c->err_info->CommandStatus == CMD_SUCCESS)
5694 return 0;
5695
5696 /*
5697 * The first command sent after reset will receive "unit attention" to
5698 * indicate that the LUN has been reset...this is actually what we're
5699 * looking for (but, success is good too).
5700 */
5701 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5702 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
5703 (c->err_info->SenseInfo[2] == NO_SENSE ||
5704 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
5705 return 0;
5706
5707 return 1;
5708}
5709
5710/*
5711 * Wait for a TEST_UNIT_READY command to complete, retrying as necessary;
5712 * returns zero when the unit is ready, and non-zero when giving up.
5713 */
5714static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h,
5715 struct CommandList *c,
5716 unsigned char lunaddr[], int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005717{
Tomas Henzl89193582014-02-21 16:25:05 -06005718 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005719 int count = 0;
5720 int waittime = 1; /* seconds */
Webb Scalesb69324f2015-04-23 09:34:22 -05005721
5722 /* Send test unit ready until device ready, or give up. */
5723 for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) {
5724
5725 /*
5726 * Wait for a bit. do this first, because if we send
5727 * the TUR right away, the reset will just abort it.
5728 */
5729 msleep(1000 * waittime);
5730
5731 rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue);
5732 if (!rc)
5733 break;
5734
5735 /* Increase wait time with each try, up to a point. */
5736 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
5737 waittime *= 2;
5738
5739 dev_warn(&h->pdev->dev,
5740 "waiting %d secs for device to become ready.\n",
5741 waittime);
5742 }
5743
5744 return rc;
5745}
5746
5747static int wait_for_device_to_become_ready(struct ctlr_info *h,
5748 unsigned char lunaddr[],
5749 int reply_queue)
5750{
5751 int first_queue;
5752 int last_queue;
5753 int rq;
5754 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005755 struct CommandList *c;
5756
Stephen Cameron45fcb862015-01-23 16:43:04 -06005757 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005758
Webb Scalesb69324f2015-04-23 09:34:22 -05005759 /*
5760 * If no specific reply queue was requested, then send the TUR
5761 * repeatedly, requesting a reply on each reply queue; otherwise execute
5762 * the loop exactly once using only the specified queue.
5763 */
5764 if (reply_queue == DEFAULT_REPLY_QUEUE) {
5765 first_queue = 0;
5766 last_queue = h->nreply_queues - 1;
5767 } else {
5768 first_queue = reply_queue;
5769 last_queue = reply_queue;
5770 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005771
Webb Scalesb69324f2015-04-23 09:34:22 -05005772 for (rq = first_queue; rq <= last_queue; rq++) {
5773 rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq);
Webb Scales25163bd2015-04-23 09:32:00 -05005774 if (rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005775 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005776 }
5777
5778 if (rc)
5779 dev_warn(&h->pdev->dev, "giving up on device.\n");
5780 else
5781 dev_warn(&h->pdev->dev, "device is ready.\n");
5782
Stephen Cameron45fcb862015-01-23 16:43:04 -06005783 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005784 return rc;
5785}
5786
5787/* Need at least one of these error handlers to keep ../scsi/hosts.c from
5788 * complaining. Doing a host- or bus-reset can't do anything good here.
5789 */
5790static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
5791{
5792 int rc;
5793 struct ctlr_info *h;
5794 struct hpsa_scsi_dev_t *dev;
Scott Teel0b9b7b62015-11-04 15:51:02 -06005795 u8 reset_type;
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005796 char msg[48];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005797
5798 /* find the controller to which the command to be aborted was sent */
5799 h = sdev_to_hba(scsicmd->device);
5800 if (h == NULL) /* paranoia */
5801 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06005802
5803 if (lockup_detected(h))
5804 return FAILED;
5805
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005806 dev = scsicmd->device->hostdata;
5807 if (!dev) {
Webb Scalesd604f532015-04-23 09:35:22 -05005808 dev_err(&h->pdev->dev, "%s: device lookup failed\n", __func__);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005809 return FAILED;
5810 }
Webb Scales25163bd2015-04-23 09:32:00 -05005811
5812 /* if controller locked up, we can guarantee command won't complete */
5813 if (lockup_detected(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005814 snprintf(msg, sizeof(msg),
5815 "cmd %d RESET FAILED, lockup detected",
5816 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005817 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005818 return FAILED;
5819 }
5820
5821 /* this reset request might be the result of a lockup; check */
5822 if (detect_controller_lockup(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005823 snprintf(msg, sizeof(msg),
5824 "cmd %d RESET FAILED, new lockup detected",
5825 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005826 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005827 return FAILED;
5828 }
5829
Webb Scalesd604f532015-04-23 09:35:22 -05005830 /* Do not attempt on controller */
5831 if (is_hba_lunid(dev->scsi3addr))
5832 return SUCCESS;
5833
Scott Teel0b9b7b62015-11-04 15:51:02 -06005834 if (is_logical_dev_addr_mode(dev->scsi3addr))
5835 reset_type = HPSA_DEVICE_RESET_MSG;
5836 else
5837 reset_type = HPSA_PHYS_TARGET_RESET;
5838
5839 sprintf(msg, "resetting %s",
5840 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ");
5841 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005842
Don Braceda03ded2015-11-04 15:50:56 -06005843 h->reset_in_progress = 1;
Stephen M. Camerond416b0c2010-02-04 08:43:21 -06005844
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005845 /* send a reset to the SCSI LUN which the command was sent to */
Scott Teel0b9b7b62015-11-04 15:51:02 -06005846 rc = hpsa_do_reset(h, dev, dev->scsi3addr, reset_type,
Webb Scalesd604f532015-04-23 09:35:22 -05005847 DEFAULT_REPLY_QUEUE);
Scott Teel0b9b7b62015-11-04 15:51:02 -06005848 sprintf(msg, "reset %s %s",
5849 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ",
5850 rc == 0 ? "completed successfully" : "failed");
Webb Scalesd604f532015-04-23 09:35:22 -05005851 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Don Braceda03ded2015-11-04 15:50:56 -06005852 h->reset_in_progress = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05005853 return rc == 0 ? SUCCESS : FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005854}
5855
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005856static void swizzle_abort_tag(u8 *tag)
5857{
5858 u8 original_tag[8];
5859
5860 memcpy(original_tag, tag, 8);
5861 tag[0] = original_tag[3];
5862 tag[1] = original_tag[2];
5863 tag[2] = original_tag[1];
5864 tag[3] = original_tag[0];
5865 tag[4] = original_tag[7];
5866 tag[5] = original_tag[6];
5867 tag[6] = original_tag[5];
5868 tag[7] = original_tag[4];
5869}
5870
Scott Teel17eb87d2014-02-18 13:55:28 -06005871static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06005872 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06005873{
Don Brace2b08b3e2015-01-23 16:41:09 -06005874 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06005875 if (c->cmd_type == CMD_IOACCEL1) {
5876 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
5877 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06005878 tag = le64_to_cpu(cm1->tag);
5879 *tagupper = cpu_to_le32(tag >> 32);
5880 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005881 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06005882 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06005883 if (c->cmd_type == CMD_IOACCEL2) {
5884 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
5885 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06005886 /* upper tag not used in ioaccel2 mode */
5887 memset(tagupper, 0, sizeof(*tagupper));
5888 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005889 return;
5890 }
Don Brace2b08b3e2015-01-23 16:41:09 -06005891 tag = le64_to_cpu(c->Header.tag);
5892 *tagupper = cpu_to_le32(tag >> 32);
5893 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06005894}
5895
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005896static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005897 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005898{
5899 int rc = IO_OK;
5900 struct CommandList *c;
5901 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06005902 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005903
Stephen Cameron45fcb862015-01-23 16:43:04 -06005904 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005905
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005906 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005907 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005908 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005909 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005910 swizzle_abort_tag(&c->Request.CDB[4]);
Don Bracec448ecf2016-04-27 17:13:51 -05005911 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, DEFAULT_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06005912 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005913 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005914 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005915 /* no unmap needed here because no data xfer. */
5916
5917 ei = c->err_info;
5918 switch (ei->CommandStatus) {
5919 case CMD_SUCCESS:
5920 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05005921 case CMD_TMF_STATUS:
5922 rc = hpsa_evaluate_tmf_status(h, c);
5923 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005924 case CMD_UNABORTABLE: /* Very common, don't make noise. */
5925 rc = -1;
5926 break;
5927 default:
5928 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005929 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06005930 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005931 rc = -1;
5932 break;
5933 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005934 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06005935 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
5936 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005937 return rc;
5938}
5939
Stephen Cameron8be986c2015-04-23 09:34:06 -05005940static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h,
5941 struct CommandList *command_to_abort, int reply_queue)
5942{
5943 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5944 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
5945 struct io_accel2_cmd *c2a =
5946 &h->ioaccel2_cmd_pool[command_to_abort->cmdindex];
Webb Scalesa58e7e52015-04-23 09:34:16 -05005947 struct scsi_cmnd *scmd = command_to_abort->scsi_cmd;
Stephen Cameron8be986c2015-04-23 09:34:06 -05005948 struct hpsa_scsi_dev_t *dev = scmd->device->hostdata;
5949
Don Brace45e596c2016-09-09 16:30:42 -05005950 if (!dev)
5951 return;
5952
Stephen Cameron8be986c2015-04-23 09:34:06 -05005953 /*
5954 * We're overlaying struct hpsa_tmf_struct on top of something which
5955 * was allocated as a struct io_accel2_cmd, so we better be sure it
5956 * actually fits, and doesn't overrun the error info space.
5957 */
5958 BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) >
5959 sizeof(struct io_accel2_cmd));
5960 BUG_ON(offsetof(struct io_accel2_cmd, error_data) <
5961 offsetof(struct hpsa_tmf_struct, error_len) +
5962 sizeof(ac->error_len));
5963
5964 c->cmd_type = IOACCEL2_TMF;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005965 c->scsi_cmd = SCSI_CMD_BUSY;
5966
Stephen Cameron8be986c2015-04-23 09:34:06 -05005967 /* Adjust the DMA address to point to the accelerated command buffer */
5968 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
5969 (c->cmdindex * sizeof(struct io_accel2_cmd));
5970 BUG_ON(c->busaddr & 0x0000007F);
5971
5972 memset(ac, 0, sizeof(*c2)); /* yes this is correct */
5973 ac->iu_type = IOACCEL2_IU_TMF_TYPE;
5974 ac->reply_queue = reply_queue;
5975 ac->tmf = IOACCEL2_TMF_ABORT;
5976 ac->it_nexus = cpu_to_le32(dev->ioaccel_handle);
5977 memset(ac->lun_id, 0, sizeof(ac->lun_id));
5978 ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT);
5979 ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag));
5980 ac->error_ptr = cpu_to_le64(c->busaddr +
5981 offsetof(struct io_accel2_cmd, error_data));
5982 ac->error_len = cpu_to_le32(sizeof(c2->error_data));
5983}
5984
Scott Teel54b6e9e2014-02-18 13:56:45 -06005985/* ioaccel2 path firmware cannot handle abort task requests.
5986 * Change abort requests to physical target reset, and send to the
5987 * address of the physical disk used for the ioaccel 2 command.
5988 * Return 0 on success (IO_OK)
5989 * -1 on failure
5990 */
5991
5992static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005993 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06005994{
5995 int rc = IO_OK;
5996 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
5997 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
5998 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
5999 unsigned char *psa = &phys_scsi3addr[0];
6000
6001 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06006002 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06006003 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
6004 if (dev == NULL) {
6005 dev_warn(&h->pdev->dev,
6006 "Cannot abort: no device pointer for command.\n");
6007 return -1; /* not abortable */
6008 }
6009
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06006010 if (h->raid_offload_debug > 0)
6011 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05006012 "scsi %d:%d:%d:%d %s scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06006013 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05006014 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06006015 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
6016 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
6017
Scott Teel54b6e9e2014-02-18 13:56:45 -06006018 if (!dev->offload_enabled) {
6019 dev_warn(&h->pdev->dev,
6020 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
6021 return -1; /* not abortable */
6022 }
6023
6024 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
6025 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
6026 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
6027 return -1; /* not abortable */
6028 }
6029
6030 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06006031 if (h->raid_offload_debug > 0)
6032 dev_info(&h->pdev->dev,
6033 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
6034 psa[0], psa[1], psa[2], psa[3],
6035 psa[4], psa[5], psa[6], psa[7]);
Don Braceb32ece02016-09-20 15:42:30 -05006036 rc = hpsa_do_reset(h, dev, psa, HPSA_PHYS_TARGET_RESET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06006037 if (rc != 0) {
6038 dev_warn(&h->pdev->dev,
6039 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
6040 psa[0], psa[1], psa[2], psa[3],
6041 psa[4], psa[5], psa[6], psa[7]);
6042 return rc; /* failed to reset */
6043 }
6044
6045 /* wait for device to recover */
Webb Scalesb69324f2015-04-23 09:34:22 -05006046 if (wait_for_device_to_become_ready(h, psa, reply_queue) != 0) {
Scott Teel54b6e9e2014-02-18 13:56:45 -06006047 dev_warn(&h->pdev->dev,
6048 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
6049 psa[0], psa[1], psa[2], psa[3],
6050 psa[4], psa[5], psa[6], psa[7]);
6051 return -1; /* failed to recover */
6052 }
6053
6054 /* device recovered */
6055 dev_info(&h->pdev->dev,
6056 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
6057 psa[0], psa[1], psa[2], psa[3],
6058 psa[4], psa[5], psa[6], psa[7]);
6059
6060 return rc; /* success */
6061}
6062
Stephen Cameron8be986c2015-04-23 09:34:06 -05006063static int hpsa_send_abort_ioaccel2(struct ctlr_info *h,
6064 struct CommandList *abort, int reply_queue)
6065{
6066 int rc = IO_OK;
6067 struct CommandList *c;
6068 __le32 taglower, tagupper;
6069 struct hpsa_scsi_dev_t *dev;
6070 struct io_accel2_cmd *c2;
6071
6072 dev = abort->scsi_cmd->device->hostdata;
Don Brace45e596c2016-09-09 16:30:42 -05006073 if (!dev)
6074 return -1;
6075
Stephen Cameron8be986c2015-04-23 09:34:06 -05006076 if (!dev->offload_enabled && !dev->hba_ioaccel_enabled)
6077 return -1;
6078
6079 c = cmd_alloc(h);
6080 setup_ioaccel2_abort_cmd(c, h, abort, reply_queue);
6081 c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
Don Bracec448ecf2016-04-27 17:13:51 -05006082 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, DEFAULT_TIMEOUT);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006083 hpsa_get_tag(h, abort, &taglower, &tagupper);
6084 dev_dbg(&h->pdev->dev,
6085 "%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n",
6086 __func__, tagupper, taglower);
6087 /* no unmap needed here because no data xfer. */
6088
6089 dev_dbg(&h->pdev->dev,
6090 "%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n",
6091 __func__, tagupper, taglower, c2->error_data.serv_response);
6092 switch (c2->error_data.serv_response) {
6093 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
6094 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
6095 rc = 0;
6096 break;
6097 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
6098 case IOACCEL2_SERV_RESPONSE_FAILURE:
6099 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
6100 rc = -1;
6101 break;
6102 default:
6103 dev_warn(&h->pdev->dev,
6104 "%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n",
6105 __func__, tagupper, taglower,
6106 c2->error_data.serv_response);
6107 rc = -1;
6108 }
6109 cmd_free(h, c);
6110 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__,
6111 tagupper, taglower);
6112 return rc;
6113}
6114
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05006115static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Don Brace39f3deb2016-02-23 15:16:28 -06006116 struct hpsa_scsi_dev_t *dev, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05006117{
Stephen Cameron8be986c2015-04-23 09:34:06 -05006118 /*
6119 * ioccelerator mode 2 commands should be aborted via the
Scott Teel54b6e9e2014-02-18 13:56:45 -06006120 * accelerated path, since RAID path is unaware of these commands,
Stephen Cameron8be986c2015-04-23 09:34:06 -05006121 * but not all underlying firmware can handle abort TMF.
6122 * Change abort to physical device reset when abort TMF is unsupported.
Scott Teel54b6e9e2014-02-18 13:56:45 -06006123 */
Stephen Cameron8be986c2015-04-23 09:34:06 -05006124 if (abort->cmd_type == CMD_IOACCEL2) {
Don Brace39f3deb2016-02-23 15:16:28 -06006125 if ((HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags) ||
6126 dev->physical_device)
Stephen Cameron8be986c2015-04-23 09:34:06 -05006127 return hpsa_send_abort_ioaccel2(h, abort,
6128 reply_queue);
6129 else
Don Brace39f3deb2016-02-23 15:16:28 -06006130 return hpsa_send_reset_as_abort_ioaccel2(h,
6131 dev->scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05006132 abort, reply_queue);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006133 }
Don Brace39f3deb2016-02-23 15:16:28 -06006134 return hpsa_send_abort(h, dev->scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05006135}
6136
6137/* Find out which reply queue a command was meant to return on */
6138static int hpsa_extract_reply_queue(struct ctlr_info *h,
6139 struct CommandList *c)
6140{
6141 if (c->cmd_type == CMD_IOACCEL2)
6142 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
6143 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05006144}
6145
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006146/*
6147 * Limit concurrency of abort commands to prevent
6148 * over-subscription of commands
6149 */
6150static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
6151{
6152#define ABORT_CMD_WAIT_MSECS 5000
6153 return !wait_event_timeout(h->abort_cmd_wait_queue,
6154 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
6155 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
6156}
6157
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006158/* Send an abort for the specified command.
6159 * If the device and controller support it,
6160 * send a task abort request.
6161 */
6162static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
6163{
6164
Webb Scalesa58e7e52015-04-23 09:34:16 -05006165 int rc;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006166 struct ctlr_info *h;
6167 struct hpsa_scsi_dev_t *dev;
6168 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006169 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
6170 char msg[256]; /* For debug messaging. */
6171 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06006172 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05006173 int refcount, reply_queue;
6174
6175 if (sc == NULL)
6176 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006177
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006178 if (sc->device == NULL)
6179 return FAILED;
6180
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006181 /* Find the controller of the command to be aborted */
6182 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006183 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006184 return FAILED;
6185
Webb Scales25163bd2015-04-23 09:32:00 -05006186 /* Find the device of the command to be aborted */
6187 dev = sc->device->hostdata;
6188 if (!dev) {
6189 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
6190 msg);
Don Bracee3458932015-01-23 16:44:24 -06006191 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05006192 }
6193
6194 /* If controller locked up, we can guarantee command won't complete */
6195 if (lockup_detected(h)) {
6196 hpsa_show_dev_msg(KERN_WARNING, h, dev,
6197 "ABORT FAILED, lockup detected");
6198 return FAILED;
6199 }
6200
6201 /* This is a good time to check if controller lockup has occurred */
6202 if (detect_controller_lockup(h)) {
6203 hpsa_show_dev_msg(KERN_WARNING, h, dev,
6204 "ABORT FAILED, new lockup detected");
6205 return FAILED;
6206 }
Don Bracee3458932015-01-23 16:44:24 -06006207
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006208 /* Check that controller supports some kind of task abort */
6209 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
6210 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6211 return FAILED;
6212
6213 memset(msg, 0, sizeof(msg));
Robert Elliott4b761552015-04-23 09:33:54 -05006214 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006215 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05006216 sc->device->id, sc->device->lun,
Robert Elliott4b761552015-04-23 09:33:54 -05006217 "Aborting command", sc);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006218
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006219 /* Get SCSI command to be aborted */
6220 abort = (struct CommandList *) sc->host_scribble;
6221 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06006222 /* This can happen if the command already completed. */
6223 return SUCCESS;
6224 }
6225 refcount = atomic_inc_return(&abort->refcount);
6226 if (refcount == 1) { /* Command is done already. */
6227 cmd_free(h, abort);
6228 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006229 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006230
6231 /* Don't bother trying the abort if we know it won't work. */
6232 if (abort->cmd_type != CMD_IOACCEL2 &&
6233 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
6234 cmd_free(h, abort);
6235 return FAILED;
6236 }
6237
Webb Scalesa58e7e52015-04-23 09:34:16 -05006238 /*
6239 * Check that we're aborting the right command.
6240 * It's possible the CommandList already completed and got re-used.
6241 */
6242 if (abort->scsi_cmd != sc) {
6243 cmd_free(h, abort);
6244 return SUCCESS;
6245 }
6246
6247 abort->abort_pending = true;
Scott Teel17eb87d2014-02-18 13:55:28 -06006248 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05006249 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06006250 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06006251 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006252 if (as != NULL)
Robert Elliott4b761552015-04-23 09:33:54 -05006253 ml += sprintf(msg+ml,
6254 "CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ",
6255 as->cmd_len, as->cmnd[0], as->cmnd[1],
6256 as->serial_number);
6257 dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05006258 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Robert Elliott4b761552015-04-23 09:33:54 -05006259
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006260 /*
6261 * Command is in flight, or possibly already completed
6262 * by the firmware (but not to the scsi mid layer) but we can't
6263 * distinguish which. Send the abort down.
6264 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006265 if (wait_for_available_abort_cmd(h)) {
6266 dev_warn(&h->pdev->dev,
Robert Elliott4b761552015-04-23 09:33:54 -05006267 "%s FAILED, timeout waiting for an abort command to become available.\n",
6268 msg);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006269 cmd_free(h, abort);
6270 return FAILED;
6271 }
Don Brace39f3deb2016-02-23 15:16:28 -06006272 rc = hpsa_send_abort_both_ways(h, dev, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006273 atomic_inc(&h->abort_cmds_available);
6274 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006275 if (rc != 0) {
Robert Elliott4b761552015-04-23 09:33:54 -05006276 dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05006277 hpsa_show_dev_msg(KERN_WARNING, h, dev,
Robert Elliott4b761552015-04-23 09:33:54 -05006278 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06006279 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006280 return FAILED;
6281 }
Robert Elliott4b761552015-04-23 09:33:54 -05006282 dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg);
Webb Scalesd604f532015-04-23 09:35:22 -05006283 wait_event(h->event_sync_wait_queue,
Webb Scalesa58e7e52015-04-23 09:34:16 -05006284 abort->scsi_cmd != sc || lockup_detected(h));
Webb Scales281a7fd2015-01-23 16:43:35 -06006285 cmd_free(h, abort);
Webb Scalesa58e7e52015-04-23 09:34:16 -05006286 return !lockup_detected(h) ? SUCCESS : FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006287}
6288
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006289/*
Webb Scales73153fe2015-04-23 09:35:04 -05006290 * For operations with an associated SCSI command, a command block is allocated
6291 * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the
6292 * block request tag as an index into a table of entries. cmd_tagged_free() is
6293 * the complement, although cmd_free() may be called instead.
6294 */
6295static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
6296 struct scsi_cmnd *scmd)
6297{
6298 int idx = hpsa_get_cmd_index(scmd);
6299 struct CommandList *c = h->cmd_pool + idx;
6300
6301 if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) {
6302 dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n",
6303 idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1);
6304 /* The index value comes from the block layer, so if it's out of
6305 * bounds, it's probably not our bug.
6306 */
6307 BUG();
6308 }
6309
6310 atomic_inc(&c->refcount);
6311 if (unlikely(!hpsa_is_cmd_idle(c))) {
6312 /*
6313 * We expect that the SCSI layer will hand us a unique tag
6314 * value. Thus, there should never be a collision here between
6315 * two requests...because if the selected command isn't idle
6316 * then someone is going to be very disappointed.
6317 */
6318 dev_err(&h->pdev->dev,
6319 "tag collision (tag=%d) in cmd_tagged_alloc().\n",
6320 idx);
6321 if (c->scsi_cmd != NULL)
6322 scsi_print_command(c->scsi_cmd);
6323 scsi_print_command(scmd);
6324 }
6325
6326 hpsa_cmd_partial_init(h, idx, c);
6327 return c;
6328}
6329
6330static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c)
6331{
6332 /*
6333 * Release our reference to the block. We don't need to do anything
6334 * else to free it, because it is accessed by index. (There's no point
6335 * in checking the result of the decrement, since we cannot guarantee
6336 * that there isn't a concurrent abort which is also accessing it.)
6337 */
6338 (void)atomic_dec(&c->refcount);
6339}
6340
6341/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006342 * For operations that cannot sleep, a command block is allocated at init,
6343 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
6344 * which ones are free or in use. Lock must be held when calling this.
6345 * cmd_free() is the complement.
Robert Elliottbf43caf2015-04-23 09:33:38 -05006346 * This function never gives up and returns NULL. If it hangs,
6347 * another thread must call cmd_free() to free some tags.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006348 */
Webb Scales281a7fd2015-01-23 16:43:35 -06006349
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006350static struct CommandList *cmd_alloc(struct ctlr_info *h)
6351{
6352 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05006353 int refcount, i;
Webb Scales73153fe2015-04-23 09:35:04 -05006354 int offset = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006355
Robert Elliott33811022015-01-23 16:43:41 -06006356 /*
6357 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06006358 * multiple threads could get in here, and one thread could
6359 * be scanning through the list of bits looking for a free
6360 * one, but the free ones are always behind him, and other
6361 * threads sneak in behind him and eat them before he can
6362 * get to them, so that while there is always a free one, a
6363 * very unlucky thread might be starved anyway, never able to
6364 * beat the other threads. In reality, this happens so
6365 * infrequently as to be indistinguishable from never.
Webb Scales73153fe2015-04-23 09:35:04 -05006366 *
6367 * Note that we start allocating commands before the SCSI host structure
6368 * is initialized. Since the search starts at bit zero, this
6369 * all works, since we have at least one command structure available;
6370 * however, it means that the structures with the low indexes have to be
6371 * reserved for driver-initiated requests, while requests from the block
6372 * layer will use the higher indexes.
Stephen M. Cameron4c413122014-11-14 17:27:29 -06006373 */
6374
Webb Scales281a7fd2015-01-23 16:43:35 -06006375 for (;;) {
Webb Scales73153fe2015-04-23 09:35:04 -05006376 i = find_next_zero_bit(h->cmd_pool_bits,
6377 HPSA_NRESERVED_CMDS,
6378 offset);
6379 if (unlikely(i >= HPSA_NRESERVED_CMDS)) {
Webb Scales281a7fd2015-01-23 16:43:35 -06006380 offset = 0;
6381 continue;
6382 }
6383 c = h->cmd_pool + i;
6384 refcount = atomic_inc_return(&c->refcount);
6385 if (unlikely(refcount > 1)) {
6386 cmd_free(h, c); /* already in use */
Webb Scales73153fe2015-04-23 09:35:04 -05006387 offset = (i + 1) % HPSA_NRESERVED_CMDS;
Webb Scales281a7fd2015-01-23 16:43:35 -06006388 continue;
6389 }
6390 set_bit(i & (BITS_PER_LONG - 1),
6391 h->cmd_pool_bits + (i / BITS_PER_LONG));
6392 break; /* it's ours now. */
6393 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05006394 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006395 return c;
6396}
6397
Webb Scales73153fe2015-04-23 09:35:04 -05006398/*
6399 * This is the complementary operation to cmd_alloc(). Note, however, in some
6400 * corner cases it may also be used to free blocks allocated by
6401 * cmd_tagged_alloc() in which case the ref-count decrement does the trick and
6402 * the clear-bit is harmless.
6403 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006404static void cmd_free(struct ctlr_info *h, struct CommandList *c)
6405{
Webb Scales281a7fd2015-01-23 16:43:35 -06006406 if (atomic_dec_and_test(&c->refcount)) {
6407 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006408
Webb Scales281a7fd2015-01-23 16:43:35 -06006409 i = c - h->cmd_pool;
6410 clear_bit(i & (BITS_PER_LONG - 1),
6411 h->cmd_pool_bits + (i / BITS_PER_LONG));
6412 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006413}
6414
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006415#ifdef CONFIG_COMPAT
6416
Don Brace42a91642014-11-14 17:26:27 -06006417static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
6418 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006419{
6420 IOCTL32_Command_struct __user *arg32 =
6421 (IOCTL32_Command_struct __user *) arg;
6422 IOCTL_Command_struct arg64;
6423 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
6424 int err;
6425 u32 cp;
6426
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06006427 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006428 err = 0;
6429 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
6430 sizeof(arg64.LUN_info));
6431 err |= copy_from_user(&arg64.Request, &arg32->Request,
6432 sizeof(arg64.Request));
6433 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
6434 sizeof(arg64.error_info));
6435 err |= get_user(arg64.buf_size, &arg32->buf_size);
6436 err |= get_user(cp, &arg32->buf);
6437 arg64.buf = compat_ptr(cp);
6438 err |= copy_to_user(p, &arg64, sizeof(arg64));
6439
6440 if (err)
6441 return -EFAULT;
6442
Don Brace42a91642014-11-14 17:26:27 -06006443 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006444 if (err)
6445 return err;
6446 err |= copy_in_user(&arg32->error_info, &p->error_info,
6447 sizeof(arg32->error_info));
6448 if (err)
6449 return -EFAULT;
6450 return err;
6451}
6452
6453static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06006454 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006455{
6456 BIG_IOCTL32_Command_struct __user *arg32 =
6457 (BIG_IOCTL32_Command_struct __user *) arg;
6458 BIG_IOCTL_Command_struct arg64;
6459 BIG_IOCTL_Command_struct __user *p =
6460 compat_alloc_user_space(sizeof(arg64));
6461 int err;
6462 u32 cp;
6463
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06006464 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006465 err = 0;
6466 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
6467 sizeof(arg64.LUN_info));
6468 err |= copy_from_user(&arg64.Request, &arg32->Request,
6469 sizeof(arg64.Request));
6470 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
6471 sizeof(arg64.error_info));
6472 err |= get_user(arg64.buf_size, &arg32->buf_size);
6473 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
6474 err |= get_user(cp, &arg32->buf);
6475 arg64.buf = compat_ptr(cp);
6476 err |= copy_to_user(p, &arg64, sizeof(arg64));
6477
6478 if (err)
6479 return -EFAULT;
6480
Don Brace42a91642014-11-14 17:26:27 -06006481 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006482 if (err)
6483 return err;
6484 err |= copy_in_user(&arg32->error_info, &p->error_info,
6485 sizeof(arg32->error_info));
6486 if (err)
6487 return -EFAULT;
6488 return err;
6489}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06006490
Don Brace42a91642014-11-14 17:26:27 -06006491static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06006492{
6493 switch (cmd) {
6494 case CCISS_GETPCIINFO:
6495 case CCISS_GETINTINFO:
6496 case CCISS_SETINTINFO:
6497 case CCISS_GETNODENAME:
6498 case CCISS_SETNODENAME:
6499 case CCISS_GETHEARTBEAT:
6500 case CCISS_GETBUSTYPES:
6501 case CCISS_GETFIRMVER:
6502 case CCISS_GETDRIVVER:
6503 case CCISS_REVALIDVOLS:
6504 case CCISS_DEREGDISK:
6505 case CCISS_REGNEWDISK:
6506 case CCISS_REGNEWD:
6507 case CCISS_RESCANDISK:
6508 case CCISS_GETLUNINFO:
6509 return hpsa_ioctl(dev, cmd, arg);
6510
6511 case CCISS_PASSTHRU32:
6512 return hpsa_ioctl32_passthru(dev, cmd, arg);
6513 case CCISS_BIG_PASSTHRU32:
6514 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
6515
6516 default:
6517 return -ENOIOCTLCMD;
6518 }
6519}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006520#endif
6521
6522static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
6523{
6524 struct hpsa_pci_info pciinfo;
6525
6526 if (!argp)
6527 return -EINVAL;
6528 pciinfo.domain = pci_domain_nr(h->pdev->bus);
6529 pciinfo.bus = h->pdev->bus->number;
6530 pciinfo.dev_fn = h->pdev->devfn;
6531 pciinfo.board_id = h->board_id;
6532 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
6533 return -EFAULT;
6534 return 0;
6535}
6536
6537static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
6538{
6539 DriverVer_type DriverVer;
6540 unsigned char vmaj, vmin, vsubmin;
6541 int rc;
6542
6543 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
6544 &vmaj, &vmin, &vsubmin);
6545 if (rc != 3) {
6546 dev_info(&h->pdev->dev, "driver version string '%s' "
6547 "unrecognized.", HPSA_DRIVER_VERSION);
6548 vmaj = 0;
6549 vmin = 0;
6550 vsubmin = 0;
6551 }
6552 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
6553 if (!argp)
6554 return -EINVAL;
6555 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
6556 return -EFAULT;
6557 return 0;
6558}
6559
6560static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6561{
6562 IOCTL_Command_struct iocommand;
6563 struct CommandList *c;
6564 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006565 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006566 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006567
6568 if (!argp)
6569 return -EINVAL;
6570 if (!capable(CAP_SYS_RAWIO))
6571 return -EPERM;
6572 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
6573 return -EFAULT;
6574 if ((iocommand.buf_size < 1) &&
6575 (iocommand.Request.Type.Direction != XFER_NONE)) {
6576 return -EINVAL;
6577 }
6578 if (iocommand.buf_size > 0) {
6579 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
6580 if (buff == NULL)
Robert Elliott2dd02d72015-04-23 09:33:43 -05006581 return -ENOMEM;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006582 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006583 /* Copy the data into the buffer we created */
6584 if (copy_from_user(buff, iocommand.buf,
6585 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006586 rc = -EFAULT;
6587 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006588 }
6589 } else {
6590 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006591 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006592 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006593 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006594
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006595 /* Fill in the command type */
6596 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006597 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006598 /* Fill in Command Header */
6599 c->Header.ReplyQueue = 0; /* unused in simple mode */
6600 if (iocommand.buf_size > 0) { /* buffer to fill */
6601 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006602 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006603 } else { /* no buffers to fill */
6604 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006605 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006606 }
6607 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006608
6609 /* Fill in Request block */
6610 memcpy(&c->Request, &iocommand.Request,
6611 sizeof(c->Request));
6612
6613 /* Fill in the scatter gather information */
6614 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006615 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006616 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006617 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
6618 c->SG[0].Addr = cpu_to_le64(0);
6619 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006620 rc = -ENOMEM;
6621 goto out;
6622 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006623 c->SG[0].Addr = cpu_to_le64(temp64);
6624 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
6625 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006626 }
Don Bracec448ecf2016-04-27 17:13:51 -05006627 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
Don Brace3fb134c2016-07-01 13:37:38 -05006628 NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05006629 if (iocommand.buf_size > 0)
6630 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006631 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006632 if (rc) {
6633 rc = -EIO;
6634 goto out;
6635 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006636
6637 /* Copy the error information out */
6638 memcpy(&iocommand.error_info, c->err_info,
6639 sizeof(iocommand.error_info));
6640 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006641 rc = -EFAULT;
6642 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006643 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006644 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006645 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006646 /* Copy the data out of the buffer we created */
6647 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006648 rc = -EFAULT;
6649 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006650 }
6651 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006652out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006653 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006654out_kfree:
6655 kfree(buff);
6656 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006657}
6658
6659static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6660{
6661 BIG_IOCTL_Command_struct *ioc;
6662 struct CommandList *c;
6663 unsigned char **buff = NULL;
6664 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006665 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006666 BYTE sg_used = 0;
6667 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006668 u32 left;
6669 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006670 BYTE __user *data_ptr;
6671
6672 if (!argp)
6673 return -EINVAL;
6674 if (!capable(CAP_SYS_RAWIO))
6675 return -EPERM;
6676 ioc = (BIG_IOCTL_Command_struct *)
6677 kmalloc(sizeof(*ioc), GFP_KERNEL);
6678 if (!ioc) {
6679 status = -ENOMEM;
6680 goto cleanup1;
6681 }
6682 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
6683 status = -EFAULT;
6684 goto cleanup1;
6685 }
6686 if ((ioc->buf_size < 1) &&
6687 (ioc->Request.Type.Direction != XFER_NONE)) {
6688 status = -EINVAL;
6689 goto cleanup1;
6690 }
6691 /* Check kmalloc limits using all SGs */
6692 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
6693 status = -EINVAL;
6694 goto cleanup1;
6695 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006696 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006697 status = -EINVAL;
6698 goto cleanup1;
6699 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006700 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006701 if (!buff) {
6702 status = -ENOMEM;
6703 goto cleanup1;
6704 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006705 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006706 if (!buff_size) {
6707 status = -ENOMEM;
6708 goto cleanup1;
6709 }
6710 left = ioc->buf_size;
6711 data_ptr = ioc->buf;
6712 while (left) {
6713 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
6714 buff_size[sg_used] = sz;
6715 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
6716 if (buff[sg_used] == NULL) {
6717 status = -ENOMEM;
6718 goto cleanup1;
6719 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006720 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006721 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05006722 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006723 goto cleanup1;
6724 }
6725 } else
6726 memset(buff[sg_used], 0, sz);
6727 left -= sz;
6728 data_ptr += sz;
6729 sg_used++;
6730 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006731 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006732
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006733 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006734 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006735 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006736 c->Header.SGList = (u8) sg_used;
6737 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006738 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006739 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
6740 if (ioc->buf_size > 0) {
6741 int i;
6742 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006743 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006744 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006745 if (dma_mapping_error(&h->pdev->dev,
6746 (dma_addr_t) temp64)) {
6747 c->SG[i].Addr = cpu_to_le64(0);
6748 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006749 hpsa_pci_unmap(h->pdev, c, i,
6750 PCI_DMA_BIDIRECTIONAL);
6751 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006752 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006753 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006754 c->SG[i].Addr = cpu_to_le64(temp64);
6755 c->SG[i].Len = cpu_to_le32(buff_size[i]);
6756 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006757 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006758 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006759 }
Don Bracec448ecf2016-04-27 17:13:51 -05006760 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
Don Brace3fb134c2016-07-01 13:37:38 -05006761 NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006762 if (sg_used)
6763 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006764 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006765 if (status) {
6766 status = -EIO;
6767 goto cleanup0;
6768 }
6769
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006770 /* Copy the error information out */
6771 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
6772 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006773 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006774 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006775 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006776 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006777 int i;
6778
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006779 /* Copy the data out of the buffer we created */
6780 BYTE __user *ptr = ioc->buf;
6781 for (i = 0; i < sg_used; i++) {
6782 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006783 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006784 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006785 }
6786 ptr += buff_size[i];
6787 }
6788 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006789 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006790cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006791 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006792cleanup1:
6793 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006794 int i;
6795
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006796 for (i = 0; i < sg_used; i++)
6797 kfree(buff[i]);
6798 kfree(buff);
6799 }
6800 kfree(buff_size);
6801 kfree(ioc);
6802 return status;
6803}
6804
6805static void check_ioctl_unit_attention(struct ctlr_info *h,
6806 struct CommandList *c)
6807{
6808 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
6809 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
6810 (void) check_for_unit_attention(h, c);
6811}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006812
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006813/*
6814 * ioctl
6815 */
Don Brace42a91642014-11-14 17:26:27 -06006816static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006817{
6818 struct ctlr_info *h;
6819 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006820 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006821
6822 h = sdev_to_hba(dev);
6823
6824 switch (cmd) {
6825 case CCISS_DEREGDISK:
6826 case CCISS_REGNEWDISK:
6827 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06006828 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006829 return 0;
6830 case CCISS_GETPCIINFO:
6831 return hpsa_getpciinfo_ioctl(h, argp);
6832 case CCISS_GETDRIVVER:
6833 return hpsa_getdrivver_ioctl(h, argp);
6834 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006835 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006836 return -EAGAIN;
6837 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006838 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006839 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006840 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006841 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006842 return -EAGAIN;
6843 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006844 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006845 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006846 default:
6847 return -ENOTTY;
6848 }
6849}
6850
Robert Elliottbf43caf2015-04-23 09:33:38 -05006851static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006852 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006853{
6854 struct CommandList *c;
6855
6856 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006857
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006858 /* fill_cmd can't fail here, no data buffer to map */
6859 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006860 RAID_CTLR_LUNID, TYPE_MSG);
6861 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
6862 c->waiting = NULL;
6863 enqueue_cmd_and_start_io(h, c);
6864 /* Don't wait for completion, the reset won't complete. Don't free
6865 * the command either. This is the last command we will send before
6866 * re-initializing everything, so it doesn't matter and won't leak.
6867 */
Robert Elliottbf43caf2015-04-23 09:33:38 -05006868 return;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006869}
6870
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006871static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006872 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006873 int cmd_type)
6874{
6875 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006876 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006877
6878 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006879 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006880 c->Header.ReplyQueue = 0;
6881 if (buff != NULL && size > 0) {
6882 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006883 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006884 } else {
6885 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006886 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006887 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006888 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
6889
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006890 if (cmd_type == TYPE_CMD) {
6891 switch (cmd) {
6892 case HPSA_INQUIRY:
6893 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006894 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006895 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006896 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006897 }
6898 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006899 c->Request.type_attr_dir =
6900 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006901 c->Request.Timeout = 0;
6902 c->Request.CDB[0] = HPSA_INQUIRY;
6903 c->Request.CDB[4] = size & 0xFF;
6904 break;
6905 case HPSA_REPORT_LOG:
6906 case HPSA_REPORT_PHYS:
6907 /* Talking to controller so It's a physical command
6908 mode = 00 target = 0. Nothing to write.
6909 */
6910 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006911 c->Request.type_attr_dir =
6912 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006913 c->Request.Timeout = 0;
6914 c->Request.CDB[0] = cmd;
6915 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6916 c->Request.CDB[7] = (size >> 16) & 0xFF;
6917 c->Request.CDB[8] = (size >> 8) & 0xFF;
6918 c->Request.CDB[9] = size & 0xFF;
6919 break;
Scott Teelc2adae42015-11-04 15:52:16 -06006920 case BMIC_SENSE_DIAG_OPTIONS:
6921 c->Request.CDBLen = 16;
6922 c->Request.type_attr_dir =
6923 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6924 c->Request.Timeout = 0;
6925 /* Spec says this should be BMIC_WRITE */
6926 c->Request.CDB[0] = BMIC_READ;
6927 c->Request.CDB[6] = BMIC_SENSE_DIAG_OPTIONS;
6928 break;
6929 case BMIC_SET_DIAG_OPTIONS:
6930 c->Request.CDBLen = 16;
6931 c->Request.type_attr_dir =
6932 TYPE_ATTR_DIR(cmd_type,
6933 ATTR_SIMPLE, XFER_WRITE);
6934 c->Request.Timeout = 0;
6935 c->Request.CDB[0] = BMIC_WRITE;
6936 c->Request.CDB[6] = BMIC_SET_DIAG_OPTIONS;
6937 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006938 case HPSA_CACHE_FLUSH:
6939 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006940 c->Request.type_attr_dir =
6941 TYPE_ATTR_DIR(cmd_type,
6942 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006943 c->Request.Timeout = 0;
6944 c->Request.CDB[0] = BMIC_WRITE;
6945 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05006946 c->Request.CDB[7] = (size >> 8) & 0xFF;
6947 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006948 break;
6949 case TEST_UNIT_READY:
6950 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006951 c->Request.type_attr_dir =
6952 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006953 c->Request.Timeout = 0;
6954 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006955 case HPSA_GET_RAID_MAP:
6956 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006957 c->Request.type_attr_dir =
6958 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006959 c->Request.Timeout = 0;
6960 c->Request.CDB[0] = HPSA_CISS_READ;
6961 c->Request.CDB[1] = cmd;
6962 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6963 c->Request.CDB[7] = (size >> 16) & 0xFF;
6964 c->Request.CDB[8] = (size >> 8) & 0xFF;
6965 c->Request.CDB[9] = size & 0xFF;
6966 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006967 case BMIC_SENSE_CONTROLLER_PARAMETERS:
6968 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006969 c->Request.type_attr_dir =
6970 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006971 c->Request.Timeout = 0;
6972 c->Request.CDB[0] = BMIC_READ;
6973 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
6974 c->Request.CDB[7] = (size >> 16) & 0xFF;
6975 c->Request.CDB[8] = (size >> 8) & 0xFF;
6976 break;
Don Brace03383732015-01-23 16:43:30 -06006977 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
6978 c->Request.CDBLen = 10;
6979 c->Request.type_attr_dir =
6980 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6981 c->Request.Timeout = 0;
6982 c->Request.CDB[0] = BMIC_READ;
6983 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
6984 c->Request.CDB[7] = (size >> 16) & 0xFF;
6985 c->Request.CDB[8] = (size >> 8) & 0XFF;
6986 break;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06006987 case BMIC_SENSE_SUBSYSTEM_INFORMATION:
6988 c->Request.CDBLen = 10;
6989 c->Request.type_attr_dir =
6990 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6991 c->Request.Timeout = 0;
6992 c->Request.CDB[0] = BMIC_READ;
6993 c->Request.CDB[6] = BMIC_SENSE_SUBSYSTEM_INFORMATION;
6994 c->Request.CDB[7] = (size >> 16) & 0xFF;
6995 c->Request.CDB[8] = (size >> 8) & 0XFF;
6996 break;
Don Bracecca8f132015-12-22 10:36:48 -06006997 case BMIC_SENSE_STORAGE_BOX_PARAMS:
6998 c->Request.CDBLen = 10;
6999 c->Request.type_attr_dir =
7000 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
7001 c->Request.Timeout = 0;
7002 c->Request.CDB[0] = BMIC_READ;
7003 c->Request.CDB[6] = BMIC_SENSE_STORAGE_BOX_PARAMS;
7004 c->Request.CDB[7] = (size >> 16) & 0xFF;
7005 c->Request.CDB[8] = (size >> 8) & 0XFF;
7006 break;
Scott Teel66749d02015-11-04 15:51:57 -06007007 case BMIC_IDENTIFY_CONTROLLER:
7008 c->Request.CDBLen = 10;
7009 c->Request.type_attr_dir =
7010 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
7011 c->Request.Timeout = 0;
7012 c->Request.CDB[0] = BMIC_READ;
7013 c->Request.CDB[1] = 0;
7014 c->Request.CDB[2] = 0;
7015 c->Request.CDB[3] = 0;
7016 c->Request.CDB[4] = 0;
7017 c->Request.CDB[5] = 0;
7018 c->Request.CDB[6] = BMIC_IDENTIFY_CONTROLLER;
7019 c->Request.CDB[7] = (size >> 16) & 0xFF;
7020 c->Request.CDB[8] = (size >> 8) & 0XFF;
7021 c->Request.CDB[9] = 0;
7022 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007023 default:
7024 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
7025 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007026 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007027 }
7028 } else if (cmd_type == TYPE_MSG) {
7029 switch (cmd) {
7030
Scott Teel0b9b7b62015-11-04 15:51:02 -06007031 case HPSA_PHYS_TARGET_RESET:
7032 c->Request.CDBLen = 16;
7033 c->Request.type_attr_dir =
7034 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
7035 c->Request.Timeout = 0; /* Don't time out */
7036 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
7037 c->Request.CDB[0] = HPSA_RESET;
7038 c->Request.CDB[1] = HPSA_TARGET_RESET_TYPE;
7039 /* Physical target reset needs no control bytes 4-7*/
7040 c->Request.CDB[4] = 0x00;
7041 c->Request.CDB[5] = 0x00;
7042 c->Request.CDB[6] = 0x00;
7043 c->Request.CDB[7] = 0x00;
7044 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007045 case HPSA_DEVICE_RESET_MSG:
7046 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06007047 c->Request.type_attr_dir =
7048 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007049 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007050 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
7051 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05007052 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007053 /* If bytes 4-7 are zero, it means reset the */
7054 /* LunID device */
7055 c->Request.CDB[4] = 0x00;
7056 c->Request.CDB[5] = 0x00;
7057 c->Request.CDB[6] = 0x00;
7058 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007059 break;
7060 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007061 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06007062 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007063 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
7064 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007065 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06007066 c->Request.type_attr_dir =
7067 TYPE_ATTR_DIR(cmd_type,
7068 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007069 c->Request.Timeout = 0; /* Don't time out */
7070 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
7071 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
7072 c->Request.CDB[2] = 0x00; /* reserved */
7073 c->Request.CDB[3] = 0x00; /* reserved */
7074 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007075 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007076 c->Request.CDB[12] = 0x00; /* reserved */
7077 c->Request.CDB[13] = 0x00; /* reserved */
7078 c->Request.CDB[14] = 0x00; /* reserved */
7079 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007080 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007081 default:
7082 dev_warn(&h->pdev->dev, "unknown message type %d\n",
7083 cmd);
7084 BUG();
7085 }
7086 } else {
7087 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
7088 BUG();
7089 }
7090
Stephen M. Camerona505b862014-11-14 17:27:04 -06007091 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007092 case XFER_READ:
7093 pci_dir = PCI_DMA_FROMDEVICE;
7094 break;
7095 case XFER_WRITE:
7096 pci_dir = PCI_DMA_TODEVICE;
7097 break;
7098 case XFER_NONE:
7099 pci_dir = PCI_DMA_NONE;
7100 break;
7101 default:
7102 pci_dir = PCI_DMA_BIDIRECTIONAL;
7103 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007104 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
7105 return -1;
7106 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007107}
7108
7109/*
7110 * Map (physical) PCI mem into (virtual) kernel space
7111 */
7112static void __iomem *remap_pci_mem(ulong base, ulong size)
7113{
7114 ulong page_base = ((ulong) base) & PAGE_MASK;
7115 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05007116 void __iomem *page_remapped = ioremap_nocache(page_base,
7117 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007118
7119 return page_remapped ? (page_remapped + page_offs) : NULL;
7120}
7121
Matt Gates254f7962012-05-01 11:43:06 -05007122static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007123{
Matt Gates254f7962012-05-01 11:43:06 -05007124 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007125}
7126
Stephen M. Cameron900c5442010-02-04 08:42:35 -06007127static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007128{
7129 return h->access.intr_pending(h);
7130}
7131
7132static inline long interrupt_not_for_us(struct ctlr_info *h)
7133{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007134 return (h->access.intr_pending(h) == 0) ||
7135 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007136}
7137
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06007138static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
7139 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007140{
7141 if (unlikely(tag_index >= h->nr_cmds)) {
7142 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
7143 return 1;
7144 }
7145 return 0;
7146}
7147
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05007148static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007149{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007150 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06007151 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
7152 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05007153 complete_scsi_command(c);
Stephen Cameron8be986c2015-04-23 09:34:06 -05007154 else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007155 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06007156}
7157
Don Brace303932f2010-02-04 08:42:40 -06007158/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05007159static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06007160 u32 raw_tag)
7161{
7162 u32 tag_index;
7163 struct CommandList *c;
7164
Don Bracef2405db2015-01-23 16:43:09 -06007165 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05007166 if (!bad_tag(h, tag_index, raw_tag)) {
7167 c = h->cmd_pool + tag_index;
7168 finish_cmd(c);
7169 }
Don Brace303932f2010-02-04 08:42:40 -06007170}
7171
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007172/* Some controllers, like p400, will give us one interrupt
7173 * after a soft reset, even if we turned interrupts off.
7174 * Only need to check for this in the hpsa_xxx_discard_completions
7175 * functions.
7176 */
7177static int ignore_bogus_interrupt(struct ctlr_info *h)
7178{
7179 if (likely(!reset_devices))
7180 return 0;
7181
7182 if (likely(h->interrupts_enabled))
7183 return 0;
7184
7185 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
7186 "(known firmware bug.) Ignoring.\n");
7187
7188 return 1;
7189}
7190
Matt Gates254f7962012-05-01 11:43:06 -05007191/*
7192 * Convert &h->q[x] (passed to interrupt handlers) back to h.
7193 * Relies on (h-q[x] == x) being true for x such that
7194 * 0 <= x < MAX_REPLY_QUEUES.
7195 */
7196static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007197{
Matt Gates254f7962012-05-01 11:43:06 -05007198 return container_of((queue - *queue), struct ctlr_info, q[0]);
7199}
7200
7201static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
7202{
7203 struct ctlr_info *h = queue_to_hba(queue);
7204 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007205 u32 raw_tag;
7206
7207 if (ignore_bogus_interrupt(h))
7208 return IRQ_NONE;
7209
7210 if (interrupt_not_for_us(h))
7211 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007212 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007213 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05007214 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007215 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05007216 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007217 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007218 return IRQ_HANDLED;
7219}
7220
Matt Gates254f7962012-05-01 11:43:06 -05007221static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007222{
Matt Gates254f7962012-05-01 11:43:06 -05007223 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007224 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05007225 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007226
7227 if (ignore_bogus_interrupt(h))
7228 return IRQ_NONE;
7229
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007230 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05007231 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007232 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05007233 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007234 return IRQ_HANDLED;
7235}
7236
Matt Gates254f7962012-05-01 11:43:06 -05007237static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007238{
Matt Gates254f7962012-05-01 11:43:06 -05007239 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06007240 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05007241 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007242
7243 if (interrupt_not_for_us(h))
7244 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007245 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007246 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05007247 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007248 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06007249 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05007250 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007251 }
7252 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007253 return IRQ_HANDLED;
7254}
7255
Matt Gates254f7962012-05-01 11:43:06 -05007256static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007257{
Matt Gates254f7962012-05-01 11:43:06 -05007258 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007259 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05007260 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007261
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007262 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05007263 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06007264 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06007265 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05007266 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007267 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007268 return IRQ_HANDLED;
7269}
7270
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007271/* Send a message CDB to the firmware. Careful, this only works
7272 * in simple mode, not performant mode due to the tag lookup.
7273 * We only ever use this immediately after a controller reset.
7274 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007275static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
7276 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007277{
7278 struct Command {
7279 struct CommandListHeader CommandHeader;
7280 struct RequestBlock Request;
7281 struct ErrDescriptor ErrorDescriptor;
7282 };
7283 struct Command *cmd;
7284 static const size_t cmd_sz = sizeof(*cmd) +
7285 sizeof(cmd->ErrorDescriptor);
7286 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06007287 __le32 paddr32;
7288 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007289 void __iomem *vaddr;
7290 int i, err;
7291
7292 vaddr = pci_ioremap_bar(pdev, 0);
7293 if (vaddr == NULL)
7294 return -ENOMEM;
7295
7296 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
7297 * CCISS commands, so they must be allocated from the lower 4GiB of
7298 * memory.
7299 */
7300 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
7301 if (err) {
7302 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06007303 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007304 }
7305
7306 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
7307 if (cmd == NULL) {
7308 iounmap(vaddr);
7309 return -ENOMEM;
7310 }
7311
7312 /* This must fit, because of the 32-bit consistent DMA mask. Also,
7313 * although there's no guarantee, we assume that the address is at
7314 * least 4-byte aligned (most likely, it's page-aligned).
7315 */
Don Brace2b08b3e2015-01-23 16:41:09 -06007316 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007317
7318 cmd->CommandHeader.ReplyQueue = 0;
7319 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007320 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06007321 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007322 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
7323
7324 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06007325 cmd->Request.type_attr_dir =
7326 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007327 cmd->Request.Timeout = 0; /* Don't time out */
7328 cmd->Request.CDB[0] = opcode;
7329 cmd->Request.CDB[1] = type;
7330 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007331 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06007332 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007333 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007334
Don Brace2b08b3e2015-01-23 16:41:09 -06007335 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007336
7337 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
7338 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06007339 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007340 break;
7341 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
7342 }
7343
7344 iounmap(vaddr);
7345
7346 /* we leak the DMA buffer here ... no choice since the controller could
7347 * still complete the command.
7348 */
7349 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
7350 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
7351 opcode, type);
7352 return -ETIMEDOUT;
7353 }
7354
7355 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
7356
7357 if (tag & HPSA_ERROR_BIT) {
7358 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
7359 opcode, type);
7360 return -EIO;
7361 }
7362
7363 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
7364 opcode, type);
7365 return 0;
7366}
7367
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007368#define hpsa_noop(p) hpsa_message(p, 3, 0)
7369
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007370static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06007371 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007372{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007373
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007374 if (use_doorbell) {
7375 /* For everything after the P600, the PCI power state method
7376 * of resetting the controller doesn't work, so we have this
7377 * other way using the doorbell register.
7378 */
7379 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007380 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05007381
Justin Lindley00701a92014-05-29 10:52:47 -05007382 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05007383 * doorbell reset and before any attempt to talk to the board
7384 * at all to ensure that this actually works and doesn't fall
7385 * over in some weird corner cases.
7386 */
Justin Lindley00701a92014-05-29 10:52:47 -05007387 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007388 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007389
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007390 /* Quoting from the Open CISS Specification: "The Power
7391 * Management Control/Status Register (CSR) controls the power
7392 * state of the device. The normal operating state is D0,
7393 * CSR=00h. The software off state is D3, CSR=03h. To reset
7394 * the controller, place the interface device in D3 then to D0,
7395 * this causes a secondary PCI reset which will reset the
7396 * controller." */
7397
Don Brace2662cab2015-01-23 16:41:25 -06007398 int rc = 0;
7399
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007400 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06007401
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007402 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06007403 rc = pci_set_power_state(pdev, PCI_D3hot);
7404 if (rc)
7405 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007406
7407 msleep(500);
7408
7409 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06007410 rc = pci_set_power_state(pdev, PCI_D0);
7411 if (rc)
7412 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02007413
7414 /*
7415 * The P600 requires a small delay when changing states.
7416 * Otherwise we may think the board did not reset and we bail.
7417 * This for kdump only and is particular to the P600.
7418 */
7419 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007420 }
7421 return 0;
7422}
7423
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007424static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007425{
7426 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007427 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007428}
7429
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007430static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007431{
7432 char *driver_version;
7433 int i, size = sizeof(cfgtable->driver_version);
7434
7435 driver_version = kmalloc(size, GFP_KERNEL);
7436 if (!driver_version)
7437 return -ENOMEM;
7438
7439 init_driver_version(driver_version, size);
7440 for (i = 0; i < size; i++)
7441 writeb(driver_version[i], &cfgtable->driver_version[i]);
7442 kfree(driver_version);
7443 return 0;
7444}
7445
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007446static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
7447 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007448{
7449 int i;
7450
7451 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
7452 driver_ver[i] = readb(&cfgtable->driver_version[i]);
7453}
7454
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007455static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007456{
7457
7458 char *driver_ver, *old_driver_ver;
7459 int rc, size = sizeof(cfgtable->driver_version);
7460
7461 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
7462 if (!old_driver_ver)
7463 return -ENOMEM;
7464 driver_ver = old_driver_ver + size;
7465
7466 /* After a reset, the 32 bytes of "driver version" in the cfgtable
7467 * should have been changed, otherwise we know the reset failed.
7468 */
7469 init_driver_version(old_driver_ver, size);
7470 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
7471 rc = !memcmp(driver_ver, old_driver_ver, size);
7472 kfree(old_driver_ver);
7473 return rc;
7474}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007475/* This does a hard reset of the controller using PCI power management
7476 * states or the using the doorbell register.
7477 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007478static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007479{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007480 u64 cfg_offset;
7481 u32 cfg_base_addr;
7482 u64 cfg_base_addr_index;
7483 void __iomem *vaddr;
7484 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007485 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007486 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007487 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007488 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007489 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007490
7491 /* For controllers as old as the P600, this is very nearly
7492 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007493 *
7494 * pci_save_state(pci_dev);
7495 * pci_set_power_state(pci_dev, PCI_D3hot);
7496 * pci_set_power_state(pci_dev, PCI_D0);
7497 * pci_restore_state(pci_dev);
7498 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007499 * For controllers newer than the P600, the pci power state
7500 * method of resetting doesn't work so we have another way
7501 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007502 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05007503
Robert Elliott60f923b2015-01-23 16:42:06 -06007504 if (!ctlr_is_resettable(board_id)) {
7505 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06007506 return -ENODEV;
7507 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05007508
7509 /* if controller is soft- but not hard resettable... */
7510 if (!ctlr_is_hard_resettable(board_id))
7511 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05007512
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007513 /* Save the PCI command register */
7514 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007515 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007516
7517 /* find the first memory BAR, so we can find the cfg table */
7518 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
7519 if (rc)
7520 return rc;
7521 vaddr = remap_pci_mem(paddr, 0x250);
7522 if (!vaddr)
7523 return -ENOMEM;
7524
7525 /* find cfgtable in order to check if reset via doorbell is supported */
7526 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
7527 &cfg_base_addr_index, &cfg_offset);
7528 if (rc)
7529 goto unmap_vaddr;
7530 cfgtable = remap_pci_mem(pci_resource_start(pdev,
7531 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
7532 if (!cfgtable) {
7533 rc = -ENOMEM;
7534 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007535 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007536 rc = write_driver_ver_to_cfgtable(cfgtable);
7537 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06007538 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007539
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007540 /* If reset via doorbell register is supported, use that.
7541 * There are two such methods. Favor the newest method.
7542 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007543 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007544 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
7545 if (use_doorbell) {
7546 use_doorbell = DOORBELL_CTLR_RESET2;
7547 } else {
7548 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
7549 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007550 dev_warn(&pdev->dev,
7551 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007552 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05007553 goto unmap_cfgtable;
7554 }
7555 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007556
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007557 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
7558 if (rc)
7559 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007560
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007561 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007562 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007563
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007564 /* Some devices (notably the HP Smart Array 5i Controller)
7565 need a little pause here */
7566 msleep(HPSA_POST_RESET_PAUSE_MSECS);
7567
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007568 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
7569 if (rc) {
7570 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06007571 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007572 goto unmap_cfgtable;
7573 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007574
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007575 rc = controller_reset_failed(vaddr);
7576 if (rc < 0)
7577 goto unmap_cfgtable;
7578 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007579 dev_warn(&pdev->dev, "Unable to successfully reset "
7580 "controller. Will try soft reset.\n");
7581 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007582 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007583 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007584 }
7585
7586unmap_cfgtable:
7587 iounmap(cfgtable);
7588
7589unmap_vaddr:
7590 iounmap(vaddr);
7591 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007592}
7593
7594/*
7595 * We cannot read the structure directly, for portability we must use
7596 * the io functions.
7597 * This is for debug only.
7598 */
Don Brace42a91642014-11-14 17:26:27 -06007599static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007600{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05007601#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007602 int i;
7603 char temp_name[17];
7604
7605 dev_info(dev, "Controller Configuration information\n");
7606 dev_info(dev, "------------------------------------\n");
7607 for (i = 0; i < 4; i++)
7608 temp_name[i] = readb(&(tb->Signature[i]));
7609 temp_name[4] = '\0';
7610 dev_info(dev, " Signature = %s\n", temp_name);
7611 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
7612 dev_info(dev, " Transport methods supported = 0x%x\n",
7613 readl(&(tb->TransportSupport)));
7614 dev_info(dev, " Transport methods active = 0x%x\n",
7615 readl(&(tb->TransportActive)));
7616 dev_info(dev, " Requested transport Method = 0x%x\n",
7617 readl(&(tb->HostWrite.TransportRequest)));
7618 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
7619 readl(&(tb->HostWrite.CoalIntDelay)));
7620 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
7621 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06007622 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007623 readl(&(tb->CmdsOutMax)));
7624 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
7625 for (i = 0; i < 16; i++)
7626 temp_name[i] = readb(&(tb->ServerName[i]));
7627 temp_name[16] = '\0';
7628 dev_info(dev, " Server Name = %s\n", temp_name);
7629 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
7630 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007631#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05007632}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007633
7634static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
7635{
7636 int i, offset, mem_type, bar_type;
7637
7638 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
7639 return 0;
7640 offset = 0;
7641 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
7642 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
7643 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
7644 offset += 4;
7645 else {
7646 mem_type = pci_resource_flags(pdev, i) &
7647 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
7648 switch (mem_type) {
7649 case PCI_BASE_ADDRESS_MEM_TYPE_32:
7650 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
7651 offset += 4; /* 32 bit */
7652 break;
7653 case PCI_BASE_ADDRESS_MEM_TYPE_64:
7654 offset += 8;
7655 break;
7656 default: /* reserved in PCI 2.2 */
7657 dev_warn(&pdev->dev,
7658 "base address is invalid\n");
7659 return -1;
7660 break;
7661 }
7662 }
7663 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
7664 return i + 1;
7665 }
7666 return -1;
7667}
7668
Robert Elliottcc64c812015-04-23 09:33:12 -05007669static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
7670{
7671 if (h->msix_vector) {
7672 if (h->pdev->msix_enabled)
7673 pci_disable_msix(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007674 h->msix_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007675 } else if (h->msi_vector) {
7676 if (h->pdev->msi_enabled)
7677 pci_disable_msi(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007678 h->msi_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007679 }
7680}
7681
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007682/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06007683 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007684 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007685static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007686{
7687#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05007688 int err, i;
7689 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
7690
7691 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
7692 hpsa_msix_entries[i].vector = 0;
7693 hpsa_msix_entries[i].entry = i;
7694 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007695
7696 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007697 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
7698 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007699 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007700 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007701 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007702 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05007703 if (h->msix_vector > num_online_cpus())
7704 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007705 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
7706 1, h->msix_vector);
7707 if (err < 0) {
7708 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
7709 h->msix_vector = 0;
7710 goto single_msi_mode;
7711 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007712 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007713 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007714 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007715 h->msix_vector = err;
7716 for (i = 0; i < h->msix_vector; i++)
7717 h->intr[i] = hpsa_msix_entries[i].vector;
7718 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007719 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007720single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007721 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007722 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007723 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007724 h->msi_vector = 1;
7725 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007726 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007727 }
7728default_int_mode:
7729#endif /* CONFIG_PCI_MSI */
7730 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007731 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007732}
7733
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007734static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007735{
7736 int i;
7737 u32 subsystem_vendor_id, subsystem_device_id;
7738
7739 subsystem_vendor_id = pdev->subsystem_vendor;
7740 subsystem_device_id = pdev->subsystem_device;
7741 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
7742 subsystem_vendor_id;
7743
7744 for (i = 0; i < ARRAY_SIZE(products); i++)
7745 if (*board_id == products[i].board_id)
7746 return i;
7747
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05007748 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
7749 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
7750 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007751 dev_warn(&pdev->dev, "unrecognized board ID: "
7752 "0x%08x, ignoring.\n", *board_id);
7753 return -ENODEV;
7754 }
7755 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
7756}
7757
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007758static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
7759 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007760{
7761 int i;
7762
7763 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007764 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007765 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007766 *memory_bar = pci_resource_start(pdev, i);
7767 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007768 *memory_bar);
7769 return 0;
7770 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007771 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007772 return -ENODEV;
7773}
7774
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007775static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
7776 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007777{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007778 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007779 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007780 if (wait_for_ready)
7781 iterations = HPSA_BOARD_READY_ITERATIONS;
7782 else
7783 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007784
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007785 for (i = 0; i < iterations; i++) {
7786 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
7787 if (wait_for_ready) {
7788 if (scratchpad == HPSA_FIRMWARE_READY)
7789 return 0;
7790 } else {
7791 if (scratchpad != HPSA_FIRMWARE_READY)
7792 return 0;
7793 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007794 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
7795 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007796 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007797 return -ENODEV;
7798}
7799
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007800static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
7801 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
7802 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007803{
7804 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
7805 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
7806 *cfg_base_addr &= (u32) 0x0000ffff;
7807 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
7808 if (*cfg_base_addr_index == -1) {
7809 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
7810 return -ENODEV;
7811 }
7812 return 0;
7813}
7814
Robert Elliott195f2c62015-04-23 09:33:17 -05007815static void hpsa_free_cfgtables(struct ctlr_info *h)
7816{
Robert Elliott105a3db2015-04-23 09:33:48 -05007817 if (h->transtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007818 iounmap(h->transtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007819 h->transtable = NULL;
7820 }
7821 if (h->cfgtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007822 iounmap(h->cfgtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007823 h->cfgtable = NULL;
7824 }
Robert Elliott195f2c62015-04-23 09:33:17 -05007825}
7826
7827/* Find and map CISS config table and transfer table
7828+ * several items must be unmapped (freed) later
7829+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007830static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007831{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06007832 u64 cfg_offset;
7833 u32 cfg_base_addr;
7834 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06007835 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007836 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007837
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007838 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7839 &cfg_base_addr_index, &cfg_offset);
7840 if (rc)
7841 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007842 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007843 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007844 if (!h->cfgtable) {
7845 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007846 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007847 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007848 rc = write_driver_ver_to_cfgtable(h->cfgtable);
7849 if (rc)
7850 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007851 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007852 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007853 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
7854 cfg_base_addr_index)+cfg_offset+trans_offset,
7855 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05007856 if (!h->transtable) {
7857 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
7858 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007859 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007860 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007861 return 0;
7862}
7863
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007864static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007865{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007866#define MIN_MAX_COMMANDS 16
7867 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
7868
7869 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06007870
7871 /* Limit commands in memory limited kdump scenario. */
7872 if (reset_devices && h->max_commands > 32)
7873 h->max_commands = 32;
7874
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007875 if (h->max_commands < MIN_MAX_COMMANDS) {
7876 dev_warn(&h->pdev->dev,
7877 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
7878 h->max_commands,
7879 MIN_MAX_COMMANDS);
7880 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007881 }
7882}
7883
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007884/* If the controller reports that the total max sg entries is greater than 512,
7885 * then we know that chained SG blocks work. (Original smart arrays did not
7886 * support chained SG blocks and would return zero for max sg entries.)
7887 */
7888static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
7889{
7890 return h->maxsgentries > 512;
7891}
7892
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007893/* Interrogate the hardware for some limits:
7894 * max commands, max SG elements without chaining, and with chaining,
7895 * SG chain block size, etc.
7896 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007897static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007898{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007899 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06007900 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007901 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007902 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007903 if (hpsa_supports_chained_sg_blocks(h)) {
7904 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007905 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06007906 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007907 h->maxsgentries--; /* save one for chain pointer */
7908 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007909 /*
7910 * Original smart arrays supported at most 31 s/g entries
7911 * embedded inline in the command (trying to use more
7912 * would lock up the controller)
7913 */
7914 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06007915 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007916 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007917 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007918
7919 /* Find out what task management functions are supported and cache */
7920 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06007921 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
7922 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
7923 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
7924 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen Cameron8be986c2015-04-23 09:34:06 -05007925 if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
7926 dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007927}
7928
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007929static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
7930{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09007931 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007932 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007933 return false;
7934 }
7935 return true;
7936}
7937
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007938static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007939{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007940 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007941
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007942 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02007943 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
7944#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007945 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007946#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06007947 driver_support |= ENABLE_UNIT_ATTN;
7948 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007949}
7950
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007951/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
7952 * in a prefetch beyond physical memory.
7953 */
7954static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
7955{
7956 u32 dma_prefetch;
7957
7958 if (h->board_id != 0x3225103C)
7959 return;
7960 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
7961 dma_prefetch |= 0x8000;
7962 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
7963}
7964
Robert Elliottc706a792015-01-23 16:45:01 -06007965static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007966{
7967 int i;
7968 u32 doorbell_value;
7969 unsigned long flags;
7970 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007971 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007972 spin_lock_irqsave(&h->lock, flags);
7973 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7974 spin_unlock_irqrestore(&h->lock, flags);
7975 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06007976 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007977 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007978 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007979 }
Robert Elliottc706a792015-01-23 16:45:01 -06007980 return -ENODEV;
7981done:
7982 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007983}
7984
Robert Elliottc706a792015-01-23 16:45:01 -06007985static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007986{
7987 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007988 u32 doorbell_value;
7989 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007990
7991 /* under certain very rare conditions, this can take awhile.
7992 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
7993 * as we enter this code.)
7994 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007995 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05007996 if (h->remove_in_progress)
7997 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007998 spin_lock_irqsave(&h->lock, flags);
7999 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
8000 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06008001 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06008002 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008003 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06008004 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008005 }
Robert Elliottc706a792015-01-23 16:45:01 -06008006 return -ENODEV;
8007done:
8008 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05008009}
8010
Robert Elliottc706a792015-01-23 16:45:01 -06008011/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008012static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05008013{
8014 u32 trans_support;
8015
8016 trans_support = readl(&(h->cfgtable->TransportSupport));
8017 if (!(trans_support & SIMPLE_MODE))
8018 return -ENOTSUPP;
8019
8020 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008021
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05008022 /* Update the field, and then ring the doorbell */
8023 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008024 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05008025 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008026 if (hpsa_wait_for_mode_change_ack(h))
8027 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008028 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008029 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
8030 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06008031 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008032 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008033error:
Stephen Cameron050f7142015-01-23 16:42:22 -06008034 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008035 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008036}
8037
Robert Elliott195f2c62015-04-23 09:33:17 -05008038/* free items allocated or mapped by hpsa_pci_init */
8039static void hpsa_free_pci_init(struct ctlr_info *h)
8040{
8041 hpsa_free_cfgtables(h); /* pci_init 4 */
8042 iounmap(h->vaddr); /* pci_init 3 */
Robert Elliott105a3db2015-04-23 09:33:48 -05008043 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05008044 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Robert Elliott943a7022015-04-23 09:34:32 -05008045 /*
8046 * call pci_disable_device before pci_release_regions per
8047 * Documentation/PCI/pci.txt
8048 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008049 pci_disable_device(h->pdev); /* pci_init 1 */
Robert Elliott943a7022015-04-23 09:34:32 -05008050 pci_release_regions(h->pdev); /* pci_init 2 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008051}
8052
8053/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008054static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05008055{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008056 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008057
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05008058 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
8059 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06008060 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05008061 h->product_name = products[prod_index].product_name;
8062 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008063
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008064 h->needs_abort_tags_swizzled =
8065 ctlr_needs_abort_tags_swizzled(h->board_id);
8066
Matthew Garrette5a44df2011-11-11 11:14:23 -05008067 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
8068 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
8069
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008070 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008071 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05008072 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Robert Elliott943a7022015-04-23 09:34:32 -05008073 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008074 return err;
8075 }
8076
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06008077 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008078 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008079 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05008080 "failed to obtain PCI resources\n");
Robert Elliott943a7022015-04-23 09:34:32 -05008081 pci_disable_device(h->pdev);
8082 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008083 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06008084
8085 pci_set_master(h->pdev);
8086
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05008087 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05008088 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05008089 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05008090 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008091 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05008092 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05008093 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05008094 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05008095 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05008096 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06008097 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05008098 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05008099 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05008100 err = hpsa_find_cfgtables(h);
8101 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05008102 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05008103 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008104
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05008105 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008106 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05008107 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008108 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06008109 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05008110 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05008111 err = hpsa_enter_simple_mode(h);
8112 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05008113 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008114 return 0;
8115
Robert Elliott195f2c62015-04-23 09:33:17 -05008116clean4: /* cfgtables, vaddr, intmode+region, pci */
8117 hpsa_free_cfgtables(h);
8118clean3: /* vaddr, intmode+region, pci */
8119 iounmap(h->vaddr);
Robert Elliott105a3db2015-04-23 09:33:48 -05008120 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05008121clean2: /* intmode+region, pci */
8122 hpsa_disable_interrupt_mode(h);
Robert Elliott943a7022015-04-23 09:34:32 -05008123 /*
8124 * call pci_disable_device before pci_release_regions per
8125 * Documentation/PCI/pci.txt
8126 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008127 pci_disable_device(h->pdev);
Robert Elliott943a7022015-04-23 09:34:32 -05008128 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008129 return err;
8130}
8131
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008132static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06008133{
8134 int rc;
8135
8136#define HBA_INQUIRY_BYTE_COUNT 64
8137 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
8138 if (!h->hba_inquiry_data)
8139 return;
8140 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
8141 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
8142 if (rc != 0) {
8143 kfree(h->hba_inquiry_data);
8144 h->hba_inquiry_data = NULL;
8145 }
8146}
8147
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008148static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008149{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05008150 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06008151 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008152
8153 if (!reset_devices)
8154 return 0;
8155
Tomas Henzl132aa222014-08-14 16:12:39 +02008156 /* kdump kernel is loading, we don't know in which state is
8157 * the pci interface. The dev->enable_cnt is equal zero
8158 * so we call enable+disable, wait a while and switch it on.
8159 */
8160 rc = pci_enable_device(pdev);
8161 if (rc) {
8162 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
8163 return -ENODEV;
8164 }
8165 pci_disable_device(pdev);
8166 msleep(260); /* a randomly chosen number */
8167 rc = pci_enable_device(pdev);
8168 if (rc) {
8169 dev_warn(&pdev->dev, "failed to enable device.\n");
8170 return -ENODEV;
8171 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06008172
Tomas Henzl859c75a2014-09-12 14:44:15 +02008173 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06008174
Tomas Henzl3b747292015-01-23 16:41:20 -06008175 vaddr = pci_ioremap_bar(pdev, 0);
8176 if (vaddr == NULL) {
8177 rc = -ENOMEM;
8178 goto out_disable;
8179 }
8180 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
8181 iounmap(vaddr);
8182
Stephen M. Cameron1df85522010-06-16 13:51:40 -05008183 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008184 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008185
Stephen M. Cameron1df85522010-06-16 13:51:40 -05008186 /* -ENOTSUPP here means we cannot reset the controller
8187 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05008188 * "performant mode". Or, it might be 640x, which can't reset
8189 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05008190 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06008191 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02008192 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008193
8194 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06008195 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008196 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
8197 if (hpsa_noop(pdev) == 0)
8198 break;
8199 else
8200 dev_warn(&pdev->dev, "no-op failed%s\n",
8201 (i < 11 ? "; re-trying" : ""));
8202 }
Tomas Henzl132aa222014-08-14 16:12:39 +02008203
8204out_disable:
8205
8206 pci_disable_device(pdev);
8207 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008208}
8209
Robert Elliott1fb7c982015-04-23 09:33:22 -05008210static void hpsa_free_cmd_pool(struct ctlr_info *h)
8211{
8212 kfree(h->cmd_pool_bits);
Robert Elliott105a3db2015-04-23 09:33:48 -05008213 h->cmd_pool_bits = NULL;
8214 if (h->cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008215 pci_free_consistent(h->pdev,
8216 h->nr_cmds * sizeof(struct CommandList),
8217 h->cmd_pool,
8218 h->cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008219 h->cmd_pool = NULL;
8220 h->cmd_pool_dhandle = 0;
8221 }
8222 if (h->errinfo_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008223 pci_free_consistent(h->pdev,
8224 h->nr_cmds * sizeof(struct ErrorInfo),
8225 h->errinfo_pool,
8226 h->errinfo_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008227 h->errinfo_pool = NULL;
8228 h->errinfo_pool_dhandle = 0;
8229 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008230}
8231
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008232static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008233{
8234 h->cmd_pool_bits = kzalloc(
8235 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
8236 sizeof(unsigned long), GFP_KERNEL);
8237 h->cmd_pool = pci_alloc_consistent(h->pdev,
8238 h->nr_cmds * sizeof(*h->cmd_pool),
8239 &(h->cmd_pool_dhandle));
8240 h->errinfo_pool = pci_alloc_consistent(h->pdev,
8241 h->nr_cmds * sizeof(*h->errinfo_pool),
8242 &(h->errinfo_pool_dhandle));
8243 if ((h->cmd_pool_bits == NULL)
8244 || (h->cmd_pool == NULL)
8245 || (h->errinfo_pool == NULL)) {
8246 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06008247 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008248 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05008249 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008250 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06008251clean_up:
8252 hpsa_free_cmd_pool(h);
8253 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008254}
8255
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05008256static void hpsa_irq_affinity_hints(struct ctlr_info *h)
8257{
Fabian Frederickec429952015-01-23 16:41:46 -06008258 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05008259
8260 cpu = cpumask_first(cpu_online_mask);
8261 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06008262 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05008263 cpu = cpumask_next(cpu, cpu_online_mask);
8264 }
8265}
8266
Robert Elliottec501a12015-01-23 16:41:40 -06008267/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
8268static void hpsa_free_irqs(struct ctlr_info *h)
8269{
8270 int i;
8271
8272 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
8273 /* Single reply queue, only one irq to free */
8274 i = h->intr_mode;
8275 irq_set_affinity_hint(h->intr[i], NULL);
8276 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008277 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008278 return;
8279 }
8280
8281 for (i = 0; i < h->msix_vector; i++) {
8282 irq_set_affinity_hint(h->intr[i], NULL);
8283 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008284 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008285 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008286 for (; i < MAX_REPLY_QUEUES; i++)
8287 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06008288}
8289
Robert Elliott9ee61792015-01-23 16:42:32 -06008290/* returns 0 on success; cleans up and returns -Enn on error */
8291static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008292 irqreturn_t (*msixhandler)(int, void *),
8293 irqreturn_t (*intxhandler)(int, void *))
8294{
Matt Gates254f7962012-05-01 11:43:06 -05008295 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008296
Matt Gates254f7962012-05-01 11:43:06 -05008297 /*
8298 * initialize h->q[x] = x so that interrupt handlers know which
8299 * queue to process.
8300 */
8301 for (i = 0; i < MAX_REPLY_QUEUES; i++)
8302 h->q[i] = (u8) i;
8303
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008304 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05008305 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008306 for (i = 0; i < h->msix_vector; i++) {
Robert Elliott8b470042015-04-23 09:34:58 -05008307 sprintf(h->intrname[i], "%s-msix%d", h->devname, i);
Matt Gates254f7962012-05-01 11:43:06 -05008308 rc = request_irq(h->intr[i], msixhandler,
Robert Elliott8b470042015-04-23 09:34:58 -05008309 0, h->intrname[i],
Matt Gates254f7962012-05-01 11:43:06 -05008310 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06008311 if (rc) {
8312 int j;
8313
8314 dev_err(&h->pdev->dev,
8315 "failed to get irq %d for %s\n",
8316 h->intr[i], h->devname);
8317 for (j = 0; j < i; j++) {
8318 free_irq(h->intr[j], &h->q[j]);
8319 h->q[j] = 0;
8320 }
8321 for (; j < MAX_REPLY_QUEUES; j++)
8322 h->q[j] = 0;
8323 return rc;
8324 }
8325 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05008326 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05008327 } else {
8328 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008329 if (h->msix_vector > 0 || h->msi_vector) {
Robert Elliott8b470042015-04-23 09:34:58 -05008330 if (h->msix_vector)
8331 sprintf(h->intrname[h->intr_mode],
8332 "%s-msix", h->devname);
8333 else
8334 sprintf(h->intrname[h->intr_mode],
8335 "%s-msi", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05008336 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05008337 msixhandler, 0,
8338 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05008339 &h->q[h->intr_mode]);
8340 } else {
Robert Elliott8b470042015-04-23 09:34:58 -05008341 sprintf(h->intrname[h->intr_mode],
8342 "%s-intx", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05008343 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05008344 intxhandler, IRQF_SHARED,
8345 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05008346 &h->q[h->intr_mode]);
8347 }
Robert Elliott105a3db2015-04-23 09:33:48 -05008348 irq_set_affinity_hint(h->intr[h->intr_mode], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05008349 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008350 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05008351 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008352 h->intr[h->intr_mode], h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05008353 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05008354 return -ENODEV;
8355 }
8356 return 0;
8357}
8358
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008359static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008360{
Robert Elliott39c53f52015-04-23 09:35:14 -05008361 int rc;
Robert Elliottbf43caf2015-04-23 09:33:38 -05008362 hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008363
8364 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008365 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY);
8366 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008367 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008368 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008369 }
8370
8371 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008372 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
8373 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008374 dev_warn(&h->pdev->dev, "Board failed to become ready "
8375 "after soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05008376 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008377 }
8378
8379 return 0;
8380}
8381
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008382static void hpsa_free_reply_queues(struct ctlr_info *h)
8383{
8384 int i;
8385
8386 for (i = 0; i < h->nreply_queues; i++) {
8387 if (!h->reply_queue[i].head)
8388 continue;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008389 pci_free_consistent(h->pdev,
8390 h->reply_queue_size,
8391 h->reply_queue[i].head,
8392 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008393 h->reply_queue[i].head = NULL;
8394 h->reply_queue[i].busaddr = 0;
8395 }
Robert Elliott105a3db2015-04-23 09:33:48 -05008396 h->reply_queue_size = 0;
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008397}
8398
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05008399static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
8400{
Robert Elliott105a3db2015-04-23 09:33:48 -05008401 hpsa_free_performant_mode(h); /* init_one 7 */
8402 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
8403 hpsa_free_cmd_pool(h); /* init_one 5 */
8404 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliott2946e822015-04-23 09:35:09 -05008405 scsi_host_put(h->scsi_host); /* init_one 3 */
8406 h->scsi_host = NULL; /* init_one 3 */
8407 hpsa_free_pci_init(h); /* init_one 2_5 */
Robert Elliott9ecd9532015-04-23 09:34:43 -05008408 free_percpu(h->lockup_detected); /* init_one 2 */
8409 h->lockup_detected = NULL; /* init_one 2 */
8410 if (h->resubmit_wq) {
8411 destroy_workqueue(h->resubmit_wq); /* init_one 1 */
8412 h->resubmit_wq = NULL;
8413 }
8414 if (h->rescan_ctlr_wq) {
8415 destroy_workqueue(h->rescan_ctlr_wq);
8416 h->rescan_ctlr_wq = NULL;
8417 }
Robert Elliott105a3db2015-04-23 09:33:48 -05008418 kfree(h); /* init_one 1 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008419}
8420
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008421/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06008422static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008423{
Webb Scales281a7fd2015-01-23 16:43:35 -06008424 int i, refcount;
8425 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008426 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008427
Don Brace080ef1c2015-01-23 16:43:25 -06008428 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06008429 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06008430 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06008431 refcount = atomic_inc_return(&c->refcount);
8432 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05008433 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06008434 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05008435 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05008436 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06008437 }
8438 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008439 }
Webb Scales25163bd2015-04-23 09:32:00 -05008440 dev_warn(&h->pdev->dev,
8441 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008442}
8443
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008444static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
8445{
Rusty Russellc8ed0012015-03-05 10:49:19 +10308446 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008447
Rusty Russellc8ed0012015-03-05 10:49:19 +10308448 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008449 u32 *lockup_detected;
8450 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
8451 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008452 }
8453 wmb(); /* be sure the per-cpu variables are out to memory */
8454}
8455
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008456static void controller_lockup_detected(struct ctlr_info *h)
8457{
8458 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008459 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008460
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008461 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8462 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008463 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
8464 if (!lockup_detected) {
8465 /* no heartbeat, but controller gave us a zero. */
8466 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05008467 "lockup detected after %d but scratchpad register is zero\n",
8468 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008469 lockup_detected = 0xffffffff;
8470 }
8471 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008472 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05008473 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
8474 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008475 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06008476 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008477}
8478
Webb Scales25163bd2015-04-23 09:32:00 -05008479static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008480{
8481 u64 now;
8482 u32 heartbeat;
8483 unsigned long flags;
8484
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008485 now = get_jiffies_64();
8486 /* If we've received an interrupt recently, we're ok. */
8487 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05008488 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05008489 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008490
8491 /*
8492 * If we've already checked the heartbeat recently, we're ok.
8493 * This could happen if someone sends us a signal. We
8494 * otherwise don't care about signals in this thread.
8495 */
8496 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05008497 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05008498 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008499
8500 /* If heartbeat has not changed since we last looked, we're not ok. */
8501 spin_lock_irqsave(&h->lock, flags);
8502 heartbeat = readl(&h->cfgtable->HeartBeat);
8503 spin_unlock_irqrestore(&h->lock, flags);
8504 if (h->last_heartbeat == heartbeat) {
8505 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05008506 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008507 }
8508
8509 /* We're ok. */
8510 h->last_heartbeat = heartbeat;
8511 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05008512 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008513}
8514
Stephen M. Cameron98465902014-02-21 16:25:00 -06008515static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008516{
8517 int i;
8518 char *event_type;
8519
Stephen Camerone4aa3e62015-01-23 16:44:07 -06008520 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
8521 return;
8522
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008523 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06008524 if ((h->transMethod & (CFGTBL_Trans_io_accel1
8525 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008526 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
8527 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
8528
8529 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
8530 event_type = "state change";
8531 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
8532 event_type = "configuration change";
8533 /* Stop sending new RAID offload reqs via the IO accelerator */
8534 scsi_block_requests(h->scsi_host);
Don Brace5323ed72016-04-27 17:13:59 -05008535 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008536 h->dev[i]->offload_enabled = 0;
Don Brace5323ed72016-04-27 17:13:59 -05008537 h->dev[i]->offload_to_be_enabled = 0;
8538 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008539 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008540 /* Set 'accelerator path config change' bit */
8541 dev_warn(&h->pdev->dev,
8542 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
8543 h->events, event_type);
8544 writel(h->events, &(h->cfgtable->clear_event_notify));
8545 /* Set the "clear event notify field update" bit 6 */
8546 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
8547 /* Wait until ctlr clears 'clear event notify field', bit 6 */
8548 hpsa_wait_for_clear_event_notify_ack(h);
8549 scsi_unblock_requests(h->scsi_host);
8550 } else {
8551 /* Acknowledge controller notification events. */
8552 writel(h->events, &(h->cfgtable->clear_event_notify));
8553 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
8554 hpsa_wait_for_clear_event_notify_ack(h);
8555#if 0
8556 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
8557 hpsa_wait_for_mode_change_ack(h);
8558#endif
8559 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008560 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008561}
8562
8563/* Check a register on the controller to see if there are configuration
8564 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06008565 * we should rescan the controller for devices.
8566 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008567 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06008568static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008569{
Don Brace853633e2015-11-04 15:50:37 -06008570 if (h->drv_req_rescan) {
8571 h->drv_req_rescan = 0;
8572 return 1;
8573 }
8574
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008575 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06008576 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008577
8578 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06008579 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008580}
8581
Stephen M. Cameron98465902014-02-21 16:25:00 -06008582/*
8583 * Check if any of the offline devices have become ready
8584 */
8585static int hpsa_offline_devices_ready(struct ctlr_info *h)
8586{
8587 unsigned long flags;
8588 struct offline_device_entry *d;
8589 struct list_head *this, *tmp;
8590
8591 spin_lock_irqsave(&h->offline_device_lock, flags);
8592 list_for_each_safe(this, tmp, &h->offline_device_list) {
8593 d = list_entry(this, struct offline_device_entry,
8594 offline_list);
8595 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05008596 if (!hpsa_volume_offline(h, d->scsi3addr)) {
8597 spin_lock_irqsave(&h->offline_device_lock, flags);
8598 list_del(&d->offline_list);
8599 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008600 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05008601 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008602 spin_lock_irqsave(&h->offline_device_lock, flags);
8603 }
8604 spin_unlock_irqrestore(&h->offline_device_lock, flags);
8605 return 0;
8606}
8607
Scott Teel34592252015-11-04 15:52:09 -06008608static int hpsa_luns_changed(struct ctlr_info *h)
8609{
8610 int rc = 1; /* assume there are changes */
8611 struct ReportLUNdata *logdev = NULL;
8612
8613 /* if we can't find out if lun data has changed,
8614 * assume that it has.
8615 */
8616
8617 if (!h->lastlogicals)
8618 goto out;
8619
8620 logdev = kzalloc(sizeof(*logdev), GFP_KERNEL);
8621 if (!logdev) {
8622 dev_warn(&h->pdev->dev,
8623 "Out of memory, can't track lun changes.\n");
8624 goto out;
8625 }
8626 if (hpsa_scsi_do_report_luns(h, 1, logdev, sizeof(*logdev), 0)) {
8627 dev_warn(&h->pdev->dev,
8628 "report luns failed, can't track lun changes.\n");
8629 goto out;
8630 }
8631 if (memcmp(logdev, h->lastlogicals, sizeof(*logdev))) {
8632 dev_info(&h->pdev->dev,
8633 "Lun changes detected.\n");
8634 memcpy(h->lastlogicals, logdev, sizeof(*logdev));
8635 goto out;
8636 } else
8637 rc = 0; /* no changes detected. */
8638out:
8639 kfree(logdev);
8640 return rc;
8641}
8642
Don Brace6636e7f2015-01-23 16:45:17 -06008643static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008644{
8645 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008646 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06008647 struct ctlr_info, rescan_ctlr_work);
8648
8649
8650 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008651 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008652
8653 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
8654 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008655 hpsa_ack_ctlr_events(h);
8656 hpsa_scan_start(h->scsi_host);
8657 scsi_host_put(h->scsi_host);
Scott Teel34592252015-11-04 15:52:09 -06008658 } else if (h->discovery_polling) {
Scott Teelc2adae42015-11-04 15:52:16 -06008659 hpsa_disable_rld_caching(h);
Scott Teel34592252015-11-04 15:52:09 -06008660 if (hpsa_luns_changed(h)) {
8661 struct Scsi_Host *sh = NULL;
8662
8663 dev_info(&h->pdev->dev,
8664 "driver discovery polling rescan.\n");
8665 sh = scsi_host_get(h->scsi_host);
8666 if (sh != NULL) {
8667 hpsa_scan_start(sh);
8668 scsi_host_put(sh);
8669 }
8670 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008671 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008672 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06008673 if (!h->remove_in_progress)
8674 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008675 h->heartbeat_sample_interval);
8676 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008677}
8678
Don Brace6636e7f2015-01-23 16:45:17 -06008679static void hpsa_monitor_ctlr_worker(struct work_struct *work)
8680{
8681 unsigned long flags;
8682 struct ctlr_info *h = container_of(to_delayed_work(work),
8683 struct ctlr_info, monitor_ctlr_work);
8684
8685 detect_controller_lockup(h);
8686 if (lockup_detected(h))
8687 return;
8688
8689 spin_lock_irqsave(&h->lock, flags);
8690 if (!h->remove_in_progress)
8691 schedule_delayed_work(&h->monitor_ctlr_work,
8692 h->heartbeat_sample_interval);
8693 spin_unlock_irqrestore(&h->lock, flags);
8694}
8695
8696static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
8697 char *name)
8698{
8699 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06008700
Don Brace397ea9c2015-02-06 17:44:15 -06008701 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06008702 if (!wq)
8703 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
8704
8705 return wq;
8706}
8707
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008708static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008709{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008710 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008711 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008712 int try_soft_reset = 0;
8713 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008714 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008715
8716 if (number_of_controllers == 0)
8717 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008718
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008719 rc = hpsa_lookup_board_id(pdev, &board_id);
8720 if (rc < 0) {
8721 dev_warn(&pdev->dev, "Board ID not found\n");
8722 return rc;
8723 }
8724
8725 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008726 if (rc) {
8727 if (rc != -ENOTSUPP)
8728 return rc;
8729 /* If the reset fails in a particular way (it has no way to do
8730 * a proper hard reset, so returns -ENOTSUPP) we can try to do
8731 * a soft reset once we get the controller configured up to the
8732 * point that it can accept a command.
8733 */
8734 try_soft_reset = 1;
8735 rc = 0;
8736 }
8737
8738reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008739
Don Brace303932f2010-02-04 08:42:40 -06008740 /* Command structures must be aligned on a 32-byte boundary because
8741 * the 5 lower bits of the address are used by the hardware. and by
8742 * the driver. See comments in hpsa.h for more info.
8743 */
Don Brace303932f2010-02-04 08:42:40 -06008744 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008745 h = kzalloc(sizeof(*h), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008746 if (!h) {
8747 dev_err(&pdev->dev, "Failed to allocate controller head\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008748 return -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05008749 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008750
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008751 h->pdev = pdev;
Robert Elliott105a3db2015-04-23 09:33:48 -05008752
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06008753 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008754 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008755 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008756 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008757 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06008758 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008759 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008760
8761 /* Allocate and clear per-cpu variable lockup_detected */
8762 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008763 if (!h->lockup_detected) {
Robert Elliott105a3db2015-04-23 09:33:48 -05008764 dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008765 rc = -ENOMEM;
Robert Elliott2efa5922015-04-23 09:34:53 -05008766 goto clean1; /* aer/h */
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008767 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008768 set_lockup_detected_for_all_cpus(h, 0);
8769
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008770 rc = hpsa_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008771 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008772 goto clean2; /* lu, aer/h */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008773
Robert Elliott2946e822015-04-23 09:35:09 -05008774 /* relies on h-> settings made by hpsa_pci_init, including
8775 * interrupt_mode h->intr */
8776 rc = hpsa_scsi_host_alloc(h);
8777 if (rc)
8778 goto clean2_5; /* pci, lu, aer/h */
8779
8780 sprintf(h->devname, HPSA "%d", h->scsi_host->host_no);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008781 h->ctlr = number_of_controllers;
8782 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008783
8784 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008785 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
8786 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008787 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008788 } else {
8789 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8790 if (rc == 0) {
8791 dac = 0;
8792 } else {
8793 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott2946e822015-04-23 09:35:09 -05008794 goto clean3; /* shost, pci, lu, aer/h */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008795 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008796 }
8797
8798 /* make sure the board interrupts are off */
8799 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05008800
Robert Elliott105a3db2015-04-23 09:33:48 -05008801 rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
8802 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008803 goto clean3; /* shost, pci, lu, aer/h */
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008804 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06008805 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008806 goto clean4; /* irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008807 rc = hpsa_alloc_sg_chain_blocks(h);
8808 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008809 goto clean5; /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Camerona08a8472010-02-04 08:43:16 -06008810 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008811 init_waitqueue_head(&h->abort_cmd_wait_queue);
Webb Scalesd604f532015-04-23 09:35:22 -05008812 init_waitqueue_head(&h->event_sync_wait_queue);
8813 mutex_init(&h->reset_mutex);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06008814 h->scan_finished = 1; /* no scan currently in progress */
Don Brace0f07e762017-03-10 14:35:17 -06008815 h->scan_waiting = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008816
8817 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008818 h->ndevices = 0;
Robert Elliott2946e822015-04-23 09:35:09 -05008819
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008820 spin_lock_init(&h->devlock);
Robert Elliott105a3db2015-04-23 09:33:48 -05008821 rc = hpsa_put_ctlr_into_performant_mode(h);
8822 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008823 goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */
8824
Robert Elliott2efa5922015-04-23 09:34:53 -05008825 /* create the resubmit workqueue */
8826 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
8827 if (!h->rescan_ctlr_wq) {
8828 rc = -ENOMEM;
8829 goto clean7;
8830 }
8831
8832 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
8833 if (!h->resubmit_wq) {
8834 rc = -ENOMEM;
8835 goto clean7; /* aer/h */
8836 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008837
Robert Elliott105a3db2015-04-23 09:33:48 -05008838 /*
8839 * At this point, the controller is ready to take commands.
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008840 * Now, if reset_devices and the hard reset didn't work, try
8841 * the soft reset and see if that works.
8842 */
8843 if (try_soft_reset) {
8844
8845 /* This is kind of gross. We may or may not get a completion
8846 * from the soft reset command, and if we do, then the value
8847 * from the fifo may or may not be valid. So, we wait 10 secs
8848 * after the reset throwing away any completions we get during
8849 * that time. Unregister the interrupt handler and register
8850 * fake ones to scoop up any residual completions.
8851 */
8852 spin_lock_irqsave(&h->lock, flags);
8853 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8854 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06008855 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06008856 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008857 hpsa_intx_discard_completions);
8858 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06008859 dev_warn(&h->pdev->dev,
8860 "Failed to request_irq after soft reset.\n");
Robert Elliottd4987572015-04-23 09:34:37 -05008861 /*
Robert Elliottb2ef4802015-04-23 09:34:48 -05008862 * cannot goto clean7 or free_irqs will be called
8863 * again. Instead, do its work
8864 */
8865 hpsa_free_performant_mode(h); /* clean7 */
8866 hpsa_free_sg_chain_blocks(h); /* clean6 */
8867 hpsa_free_cmd_pool(h); /* clean5 */
8868 /*
8869 * skip hpsa_free_irqs(h) clean4 since that
8870 * was just called before request_irqs failed
Robert Elliottd4987572015-04-23 09:34:37 -05008871 */
8872 goto clean3;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008873 }
8874
8875 rc = hpsa_kdump_soft_reset(h);
8876 if (rc)
8877 /* Neither hard nor soft reset worked, we're hosed. */
Don Brace7ef73232015-07-18 11:12:33 -05008878 goto clean7;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008879
8880 dev_info(&h->pdev->dev, "Board READY.\n");
8881 dev_info(&h->pdev->dev,
8882 "Waiting for stale completions to drain.\n");
8883 h->access.set_intr_mask(h, HPSA_INTR_ON);
8884 msleep(10000);
8885 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8886
8887 rc = controller_reset_failed(h->cfgtable);
8888 if (rc)
8889 dev_info(&h->pdev->dev,
8890 "Soft reset appears to have failed.\n");
8891
8892 /* since the controller's reset, we have to go back and re-init
8893 * everything. Easiest to just forget what we've done and do it
8894 * all over again.
8895 */
8896 hpsa_undo_allocations_after_kdump_soft_reset(h);
8897 try_soft_reset = 0;
8898 if (rc)
Robert Elliottb2ef4802015-04-23 09:34:48 -05008899 /* don't goto clean, we already unallocated */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008900 return -ENODEV;
8901
8902 goto reinit_after_soft_reset;
8903 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008904
Robert Elliott105a3db2015-04-23 09:33:48 -05008905 /* Enable Accelerated IO path at driver layer */
8906 h->acciopath_status = 1;
Scott Teel34592252015-11-04 15:52:09 -06008907 /* Disable discovery polling.*/
8908 h->discovery_polling = 0;
Scott Teelda0697b2014-02-18 13:57:00 -06008909
Scott Teele863d682014-02-18 13:57:05 -06008910
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008911 /* Turn the interrupts on so we can service requests */
8912 h->access.set_intr_mask(h, HPSA_INTR_ON);
8913
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06008914 hpsa_hba_inquiry(h);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008915
Scott Teel34592252015-11-04 15:52:09 -06008916 h->lastlogicals = kzalloc(sizeof(*(h->lastlogicals)), GFP_KERNEL);
8917 if (!h->lastlogicals)
8918 dev_info(&h->pdev->dev,
8919 "Can't track change to report lun data\n");
8920
Don Bracecf477232016-04-27 17:13:26 -05008921 /* hook into SCSI subsystem */
8922 rc = hpsa_scsi_add_host(h);
8923 if (rc)
8924 goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
8925
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008926 /* Monitor the controller for firmware lockups */
8927 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
8928 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
8929 schedule_delayed_work(&h->monitor_ctlr_work,
8930 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06008931 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
8932 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
8933 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05008934 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008935
Robert Elliott2946e822015-04-23 09:35:09 -05008936clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008937 hpsa_free_performant_mode(h);
8938 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8939clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06008940 hpsa_free_sg_chain_blocks(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008941clean5: /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008942 hpsa_free_cmd_pool(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008943clean4: /* irq, shost, pci, lu, aer/h */
Robert Elliottec501a12015-01-23 16:41:40 -06008944 hpsa_free_irqs(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008945clean3: /* shost, pci, lu, aer/h */
8946 scsi_host_put(h->scsi_host);
8947 h->scsi_host = NULL;
8948clean2_5: /* pci, lu, aer/h */
Robert Elliott195f2c62015-04-23 09:33:17 -05008949 hpsa_free_pci_init(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008950clean2: /* lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008951 if (h->lockup_detected) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008952 free_percpu(h->lockup_detected);
Robert Elliott105a3db2015-04-23 09:33:48 -05008953 h->lockup_detected = NULL;
8954 }
8955clean1: /* wq/aer/h */
8956 if (h->resubmit_wq) {
8957 destroy_workqueue(h->resubmit_wq);
8958 h->resubmit_wq = NULL;
8959 }
8960 if (h->rescan_ctlr_wq) {
8961 destroy_workqueue(h->rescan_ctlr_wq);
8962 h->rescan_ctlr_wq = NULL;
8963 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008964 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008965 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008966}
8967
8968static void hpsa_flush_cache(struct ctlr_info *h)
8969{
8970 char *flush_buf;
8971 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008972 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008973
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008974 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008975 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008976 flush_buf = kzalloc(4, GFP_KERNEL);
8977 if (!flush_buf)
8978 return;
8979
Stephen Cameron45fcb862015-01-23 16:43:04 -06008980 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05008981
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008982 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
8983 RAID_CTLR_LUNID, TYPE_CMD)) {
8984 goto out;
8985 }
Webb Scales25163bd2015-04-23 09:32:00 -05008986 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05008987 PCI_DMA_TODEVICE, DEFAULT_TIMEOUT);
Webb Scales25163bd2015-04-23 09:32:00 -05008988 if (rc)
8989 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008990 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008991out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008992 dev_warn(&h->pdev->dev,
8993 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06008994 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008995 kfree(flush_buf);
8996}
8997
Scott Teelc2adae42015-11-04 15:52:16 -06008998/* Make controller gather fresh report lun data each time we
8999 * send down a report luns request
9000 */
9001static void hpsa_disable_rld_caching(struct ctlr_info *h)
9002{
9003 u32 *options;
9004 struct CommandList *c;
9005 int rc;
9006
9007 /* Don't bother trying to set diag options if locked up */
9008 if (unlikely(h->lockup_detected))
9009 return;
9010
9011 options = kzalloc(sizeof(*options), GFP_KERNEL);
9012 if (!options) {
9013 dev_err(&h->pdev->dev,
9014 "Error: failed to disable rld caching, during alloc.\n");
9015 return;
9016 }
9017
9018 c = cmd_alloc(h);
9019
9020 /* first, get the current diag options settings */
9021 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
9022 RAID_CTLR_LUNID, TYPE_CMD))
9023 goto errout;
9024
9025 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05009026 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06009027 if ((rc != 0) || (c->err_info->CommandStatus != 0))
9028 goto errout;
9029
9030 /* Now, set the bit for disabling the RLD caching */
9031 *options |= HPSA_DIAG_OPTS_DISABLE_RLD_CACHING;
9032
9033 if (fill_cmd(c, BMIC_SET_DIAG_OPTIONS, h, options, 4, 0,
9034 RAID_CTLR_LUNID, TYPE_CMD))
9035 goto errout;
9036
9037 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05009038 PCI_DMA_TODEVICE, DEFAULT_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06009039 if ((rc != 0) || (c->err_info->CommandStatus != 0))
9040 goto errout;
9041
9042 /* Now verify that it got set: */
9043 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
9044 RAID_CTLR_LUNID, TYPE_CMD))
9045 goto errout;
9046
9047 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
Don Bracec448ecf2016-04-27 17:13:51 -05009048 PCI_DMA_FROMDEVICE, DEFAULT_TIMEOUT);
Scott Teelc2adae42015-11-04 15:52:16 -06009049 if ((rc != 0) || (c->err_info->CommandStatus != 0))
9050 goto errout;
9051
Dan Carpenterd8a080c2015-11-12 12:43:38 +03009052 if (*options & HPSA_DIAG_OPTS_DISABLE_RLD_CACHING)
Scott Teelc2adae42015-11-04 15:52:16 -06009053 goto out;
9054
9055errout:
9056 dev_err(&h->pdev->dev,
9057 "Error: failed to disable report lun data caching.\n");
9058out:
9059 cmd_free(h, c);
9060 kfree(options);
9061}
9062
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009063static void hpsa_shutdown(struct pci_dev *pdev)
9064{
9065 struct ctlr_info *h;
9066
9067 h = pci_get_drvdata(pdev);
9068 /* Turn board interrupts off and send the flush cache command
9069 * sendcmd will turn off interrupt, and send the flush...
9070 * To write all data in the battery backed cache to disks
9071 */
9072 hpsa_flush_cache(h);
9073 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliott105a3db2015-04-23 09:33:48 -05009074 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliottcc64c812015-04-23 09:33:12 -05009075 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009076}
9077
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009078static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06009079{
9080 int i;
9081
Robert Elliott105a3db2015-04-23 09:33:48 -05009082 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06009083 kfree(h->dev[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05009084 h->dev[i] = NULL;
9085 }
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06009086}
9087
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009088static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009089{
9090 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009091 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009092
9093 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05009094 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009095 return;
9096 }
9097 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009098
9099 /* Get rid of any controller monitoring work items */
9100 spin_lock_irqsave(&h->lock, flags);
9101 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06009102 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06009103 cancel_delayed_work_sync(&h->monitor_ctlr_work);
9104 cancel_delayed_work_sync(&h->rescan_ctlr_work);
9105 destroy_workqueue(h->rescan_ctlr_wq);
9106 destroy_workqueue(h->resubmit_wq);
Robert Elliottcc64c812015-04-23 09:33:12 -05009107
Martin Wilckab9d2572017-10-20 16:51:08 -05009108 hpsa_delete_sas_host(h);
9109
Don Brace2d041302015-07-18 11:13:15 -05009110 /*
9111 * Call before disabling interrupts.
9112 * scsi_remove_host can trigger I/O operations especially
9113 * when multipath is enabled. There can be SYNCHRONIZE CACHE
9114 * operations which cannot complete and will hang the system.
9115 */
9116 if (h->scsi_host)
9117 scsi_remove_host(h->scsi_host); /* init_one 8 */
Robert Elliott105a3db2015-04-23 09:33:48 -05009118 /* includes hpsa_free_irqs - init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009119 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009120 hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05009121
Robert Elliott105a3db2015-04-23 09:33:48 -05009122 hpsa_free_device_info(h); /* scan */
9123
Robert Elliott2946e822015-04-23 09:35:09 -05009124 kfree(h->hba_inquiry_data); /* init_one 10 */
9125 h->hba_inquiry_data = NULL; /* init_one 10 */
Robert Elliott2946e822015-04-23 09:35:09 -05009126 hpsa_free_ioaccel2_sg_chain_blocks(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05009127 hpsa_free_performant_mode(h); /* init_one 7 */
9128 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
9129 hpsa_free_cmd_pool(h); /* init_one 5 */
Scott Teel34592252015-11-04 15:52:09 -06009130 kfree(h->lastlogicals);
Robert Elliott105a3db2015-04-23 09:33:48 -05009131
9132 /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009133
Robert Elliott2946e822015-04-23 09:35:09 -05009134 scsi_host_put(h->scsi_host); /* init_one 3 */
9135 h->scsi_host = NULL; /* init_one 3 */
9136
Robert Elliott195f2c62015-04-23 09:33:17 -05009137 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Robert Elliott2946e822015-04-23 09:35:09 -05009138 hpsa_free_pci_init(h); /* init_one 2.5 */
Robert Elliott195f2c62015-04-23 09:33:17 -05009139
Robert Elliott105a3db2015-04-23 09:33:48 -05009140 free_percpu(h->lockup_detected); /* init_one 2 */
9141 h->lockup_detected = NULL; /* init_one 2 */
9142 /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009143
Robert Elliott105a3db2015-04-23 09:33:48 -05009144 kfree(h); /* init_one 1 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009145}
9146
9147static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
9148 __attribute__((unused)) pm_message_t state)
9149{
9150 return -ENOSYS;
9151}
9152
9153static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
9154{
9155 return -ENOSYS;
9156}
9157
9158static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06009159 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009160 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009161 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009162 .id_table = hpsa_pci_device_id, /* id_table */
9163 .shutdown = hpsa_shutdown,
9164 .suspend = hpsa_suspend,
9165 .resume = hpsa_resume,
9166};
9167
Don Brace303932f2010-02-04 08:42:40 -06009168/* Fill in bucket_map[], given nsgs (the max number of
9169 * scatter gather elements supported) and bucket[],
9170 * which is an array of 8 integers. The bucket[] array
9171 * contains 8 different DMA transfer sizes (in 16
9172 * byte increments) which the controller uses to fetch
9173 * commands. This function fills in bucket_map[], which
9174 * maps a given number of scatter gather elements to one of
9175 * the 8 DMA transfer sizes. The point of it is to allow the
9176 * controller to only do as much DMA as needed to fetch the
9177 * command, with the DMA transfer size encoded in the lower
9178 * bits of the command address.
9179 */
9180static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06009181 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06009182{
9183 int i, j, b, size;
9184
Don Brace303932f2010-02-04 08:42:40 -06009185 /* Note, bucket_map must have nsgs+1 entries. */
9186 for (i = 0; i <= nsgs; i++) {
9187 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06009188 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06009189 b = num_buckets; /* Assume the biggest bucket */
9190 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06009191 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06009192 if (bucket[j] >= size) {
9193 b = j;
9194 break;
9195 }
9196 }
9197 /* for a command with i SG entries, use bucket b. */
9198 bucket_map[i] = b;
9199 }
9200}
9201
Robert Elliott105a3db2015-04-23 09:33:48 -05009202/*
9203 * return -ENODEV on err, 0 on success (or no action)
9204 * allocates numerous items that must be freed later
9205 */
Robert Elliottc706a792015-01-23 16:45:01 -06009206static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06009207{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009208 int i;
9209 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06009210 unsigned long transMethod = CFGTBL_Trans_Performant |
9211 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009212 CFGTBL_Trans_enable_directed_msix |
9213 (trans_support & (CFGTBL_Trans_io_accel1 |
9214 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06009215 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05009216
9217 /* This is a bit complicated. There are 8 registers on
9218 * the controller which we write to to tell it 8 different
9219 * sizes of commands which there may be. It's a way of
9220 * reducing the DMA done to fetch each command. Encoded into
9221 * each command's tag are 3 bits which communicate to the controller
9222 * which of the eight sizes that command fits within. The size of
9223 * each command depends on how many scatter gather entries there are.
9224 * Each SG entry requires 16 bytes. The eight registers are programmed
9225 * with the number of 16-byte blocks a command of that size requires.
9226 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009227 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05009228 * blocks. Note, this only extends to the SG entries contained
9229 * within the command block, and does not extend to chained blocks
9230 * of SG elements. bft[] contains the eight values we write to
9231 * the registers. They are not evenly distributed, but have more
9232 * sizes for small commands, and fewer sizes for larger commands.
9233 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009234 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009235#define MIN_IOACCEL2_BFT_ENTRY 5
9236#define HPSA_IOACCEL2_HEADER_SZ 4
9237 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
9238 13, 14, 15, 16, 17, 18, 19,
9239 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
9240 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
9241 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
9242 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
9243 16 * MIN_IOACCEL2_BFT_ENTRY);
9244 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009245 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06009246 /* 5 = 1 s/g entry or 4k
9247 * 6 = 2 s/g entry or 8k
9248 * 8 = 4 s/g entry or 16k
9249 * 10 = 6 s/g entry or 24k
9250 */
Don Brace303932f2010-02-04 08:42:40 -06009251
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05009252 /* If the controller supports either ioaccel method then
9253 * we can also use the RAID stack submit path that does not
9254 * perform the superfluous readl() after each command submission.
9255 */
9256 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
9257 access = SA5_performant_access_no_read;
9258
Don Brace303932f2010-02-04 08:42:40 -06009259 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009260 for (i = 0; i < h->nreply_queues; i++)
9261 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06009262
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009263 bft[7] = SG_ENTRIES_IN_CMD + 4;
9264 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06009265 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06009266 for (i = 0; i < 8; i++)
9267 writel(bft[i], &h->transtable->BlockFetch[i]);
9268
9269 /* size of controller ring buffer */
9270 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05009271 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06009272 writel(0, &h->transtable->RepQCtrAddrLow32);
9273 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05009274
9275 for (i = 0; i < h->nreply_queues; i++) {
9276 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009277 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05009278 &h->transtable->RepQAddr[i].lower);
9279 }
9280
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009281 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06009282 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
9283 /*
9284 * enable outbound interrupt coalescing in accelerator mode;
9285 */
9286 if (trans_support & CFGTBL_Trans_io_accel1) {
9287 access = SA5_ioaccel_mode1_access;
9288 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
9289 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06009290 } else {
9291 if (trans_support & CFGTBL_Trans_io_accel2) {
9292 access = SA5_ioaccel_mode2_access;
9293 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
9294 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
9295 }
Matt Gatese1f7de02014-02-18 13:55:17 -06009296 }
Don Brace303932f2010-02-04 08:42:40 -06009297 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06009298 if (hpsa_wait_for_mode_change_ack(h)) {
9299 dev_err(&h->pdev->dev,
9300 "performant mode problem - doorbell timeout\n");
9301 return -ENODEV;
9302 }
Don Brace303932f2010-02-04 08:42:40 -06009303 register_value = readl(&(h->cfgtable->TransportActive));
9304 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06009305 dev_err(&h->pdev->dev,
9306 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06009307 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06009308 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06009309 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06009310 h->access = access;
9311 h->transMethod = transMethod;
9312
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009313 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
9314 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06009315 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06009316
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009317 if (trans_support & CFGTBL_Trans_io_accel1) {
9318 /* Set up I/O accelerator mode */
9319 for (i = 0; i < h->nreply_queues; i++) {
9320 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
9321 h->reply_queue[i].current_entry =
9322 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
9323 }
9324 bft[7] = h->ioaccel_maxsg + 8;
9325 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
9326 h->ioaccel1_blockFetchTable);
9327
9328 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009329 for (i = 0; i < h->nreply_queues; i++)
9330 memset(h->reply_queue[i].head,
9331 (u8) IOACCEL_MODE1_REPLY_UNUSED,
9332 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009333
9334 /* set all the constant fields in the accelerator command
9335 * frames once at init time to save CPU cycles later.
9336 */
9337 for (i = 0; i < h->nr_cmds; i++) {
9338 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
9339
9340 cp->function = IOACCEL1_FUNCTION_SCSIIO;
9341 cp->err_info = (u32) (h->errinfo_pool_dhandle +
9342 (i * sizeof(struct ErrorInfo)));
9343 cp->err_info_len = sizeof(struct ErrorInfo);
9344 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06009345 cp->host_context_flags =
9346 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009347 cp->timeout_sec = 0;
9348 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009349 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06009350 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009351 cp->host_addr =
9352 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009353 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009354 }
9355 } else if (trans_support & CFGTBL_Trans_io_accel2) {
9356 u64 cfg_offset, cfg_base_addr_index;
9357 u32 bft2_offset, cfg_base_addr;
9358 int rc;
9359
9360 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
9361 &cfg_base_addr_index, &cfg_offset);
9362 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
9363 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
9364 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
9365 4, h->ioaccel2_blockFetchTable);
9366 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
9367 BUILD_BUG_ON(offsetof(struct CfgTable,
9368 io_accel_request_size_offset) != 0xb8);
9369 h->ioaccel2_bft2_regs =
9370 remap_pci_mem(pci_resource_start(h->pdev,
9371 cfg_base_addr_index) +
9372 cfg_offset + bft2_offset,
9373 ARRAY_SIZE(bft2) *
9374 sizeof(*h->ioaccel2_bft2_regs));
9375 for (i = 0; i < ARRAY_SIZE(bft2); i++)
9376 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06009377 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06009378 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06009379 if (hpsa_wait_for_mode_change_ack(h)) {
9380 dev_err(&h->pdev->dev,
9381 "performant mode problem - enabling ioaccel mode\n");
9382 return -ENODEV;
9383 }
9384 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06009385}
9386
Robert Elliott1fb7c982015-04-23 09:33:22 -05009387/* Free ioaccel1 mode command blocks and block fetch table */
9388static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
9389{
Robert Elliott105a3db2015-04-23 09:33:48 -05009390 if (h->ioaccel_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05009391 pci_free_consistent(h->pdev,
9392 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
9393 h->ioaccel_cmd_pool,
9394 h->ioaccel_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05009395 h->ioaccel_cmd_pool = NULL;
9396 h->ioaccel_cmd_pool_dhandle = 0;
9397 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05009398 kfree(h->ioaccel1_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009399 h->ioaccel1_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05009400}
9401
Robert Elliottd37ffbe2015-04-23 09:32:27 -05009402/* Allocate ioaccel1 mode command blocks and block fetch table */
9403static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06009404{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06009405 h->ioaccel_maxsg =
9406 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
9407 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
9408 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
9409
Matt Gatese1f7de02014-02-18 13:55:17 -06009410 /* Command structures must be aligned on a 128-byte boundary
9411 * because the 7 lower bits of the address are used by the
9412 * hardware.
9413 */
Matt Gatese1f7de02014-02-18 13:55:17 -06009414 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
9415 IOACCEL1_COMMANDLIST_ALIGNMENT);
9416 h->ioaccel_cmd_pool =
9417 pci_alloc_consistent(h->pdev,
9418 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
9419 &(h->ioaccel_cmd_pool_dhandle));
9420
9421 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06009422 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06009423 sizeof(u32)), GFP_KERNEL);
9424
9425 if ((h->ioaccel_cmd_pool == NULL) ||
9426 (h->ioaccel1_blockFetchTable == NULL))
9427 goto clean_up;
9428
9429 memset(h->ioaccel_cmd_pool, 0,
9430 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
9431 return 0;
9432
9433clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05009434 hpsa_free_ioaccel1_cmd_and_bft(h);
Robert Elliott2dd02d72015-04-23 09:33:43 -05009435 return -ENOMEM;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009436}
9437
Robert Elliott1fb7c982015-04-23 09:33:22 -05009438/* Free ioaccel2 mode command blocks and block fetch table */
9439static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
9440{
Webb Scalesd9a729f2015-04-23 09:33:27 -05009441 hpsa_free_ioaccel2_sg_chain_blocks(h);
9442
Robert Elliott105a3db2015-04-23 09:33:48 -05009443 if (h->ioaccel2_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05009444 pci_free_consistent(h->pdev,
9445 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
9446 h->ioaccel2_cmd_pool,
9447 h->ioaccel2_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05009448 h->ioaccel2_cmd_pool = NULL;
9449 h->ioaccel2_cmd_pool_dhandle = 0;
9450 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05009451 kfree(h->ioaccel2_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009452 h->ioaccel2_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05009453}
9454
Robert Elliottd37ffbe2015-04-23 09:32:27 -05009455/* Allocate ioaccel2 mode command blocks and block fetch table */
9456static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009457{
Webb Scalesd9a729f2015-04-23 09:33:27 -05009458 int rc;
9459
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009460 /* Allocate ioaccel2 mode command blocks and block fetch table */
9461
9462 h->ioaccel_maxsg =
9463 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
9464 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
9465 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
9466
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009467 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
9468 IOACCEL2_COMMANDLIST_ALIGNMENT);
9469 h->ioaccel2_cmd_pool =
9470 pci_alloc_consistent(h->pdev,
9471 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
9472 &(h->ioaccel2_cmd_pool_dhandle));
9473
9474 h->ioaccel2_blockFetchTable =
9475 kmalloc(((h->ioaccel_maxsg + 1) *
9476 sizeof(u32)), GFP_KERNEL);
9477
9478 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05009479 (h->ioaccel2_blockFetchTable == NULL)) {
9480 rc = -ENOMEM;
9481 goto clean_up;
9482 }
9483
9484 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
9485 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009486 goto clean_up;
9487
9488 memset(h->ioaccel2_cmd_pool, 0,
9489 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
9490 return 0;
9491
9492clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05009493 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05009494 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009495}
9496
Robert Elliott105a3db2015-04-23 09:33:48 -05009497/* Free items allocated by hpsa_put_ctlr_into_performant_mode */
9498static void hpsa_free_performant_mode(struct ctlr_info *h)
9499{
9500 kfree(h->blockFetchTable);
9501 h->blockFetchTable = NULL;
9502 hpsa_free_reply_queues(h);
9503 hpsa_free_ioaccel1_cmd_and_bft(h);
9504 hpsa_free_ioaccel2_cmd_and_bft(h);
9505}
9506
9507/* return -ENODEV on error, 0 on success (or no action)
9508 * allocates numerous items that must be freed later
9509 */
9510static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009511{
9512 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06009513 unsigned long transMethod = CFGTBL_Trans_Performant |
9514 CFGTBL_Trans_use_short_tags;
Robert Elliott105a3db2015-04-23 09:33:48 -05009515 int i, rc;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009516
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06009517 if (hpsa_simple_mode)
Robert Elliott105a3db2015-04-23 09:33:48 -05009518 return 0;
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06009519
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05009520 trans_support = readl(&(h->cfgtable->TransportSupport));
9521 if (!(trans_support & PERFORMANT_MODE))
Robert Elliott105a3db2015-04-23 09:33:48 -05009522 return 0;
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05009523
Matt Gatese1f7de02014-02-18 13:55:17 -06009524 /* Check for I/O accelerator mode support */
9525 if (trans_support & CFGTBL_Trans_io_accel1) {
9526 transMethod |= CFGTBL_Trans_io_accel1 |
9527 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05009528 rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
9529 if (rc)
9530 return rc;
9531 } else if (trans_support & CFGTBL_Trans_io_accel2) {
9532 transMethod |= CFGTBL_Trans_io_accel2 |
Stephen M. Cameronaca90122014-02-18 13:56:14 -06009533 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05009534 rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
9535 if (rc)
9536 return rc;
Matt Gatese1f7de02014-02-18 13:55:17 -06009537 }
9538
Hannes Reineckeeee0f032014-01-15 13:30:53 +01009539 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05009540 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009541 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009542 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009543
Matt Gates254f7962012-05-01 11:43:06 -05009544 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05009545 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
9546 h->reply_queue_size,
9547 &(h->reply_queue[i].busaddr));
Robert Elliott105a3db2015-04-23 09:33:48 -05009548 if (!h->reply_queue[i].head) {
9549 rc = -ENOMEM;
9550 goto clean1; /* rq, ioaccel */
9551 }
Matt Gates254f7962012-05-01 11:43:06 -05009552 h->reply_queue[i].size = h->max_commands;
9553 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
9554 h->reply_queue[i].current_entry = 0;
9555 }
9556
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009557 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06009558 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009559 sizeof(u32)), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05009560 if (!h->blockFetchTable) {
9561 rc = -ENOMEM;
9562 goto clean1; /* rq, ioaccel */
9563 }
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009564
Robert Elliott105a3db2015-04-23 09:33:48 -05009565 rc = hpsa_enter_performant_mode(h, trans_support);
9566 if (rc)
9567 goto clean2; /* bft, rq, ioaccel */
9568 return 0;
Don Brace303932f2010-02-04 08:42:40 -06009569
Robert Elliott105a3db2015-04-23 09:33:48 -05009570clean2: /* bft, rq, ioaccel */
Don Brace303932f2010-02-04 08:42:40 -06009571 kfree(h->blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009572 h->blockFetchTable = NULL;
9573clean1: /* rq, ioaccel */
9574 hpsa_free_reply_queues(h);
9575 hpsa_free_ioaccel1_cmd_and_bft(h);
9576 hpsa_free_ioaccel2_cmd_and_bft(h);
9577 return rc;
Don Brace303932f2010-02-04 08:42:40 -06009578}
9579
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009580static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009581{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009582 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
9583}
9584
9585static void hpsa_drain_accel_commands(struct ctlr_info *h)
9586{
9587 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06009588 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06009589 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009590
Don Bracef2405db2015-01-23 16:43:09 -06009591 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009592 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06009593 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06009594 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06009595 refcount = atomic_inc_return(&c->refcount);
9596 if (refcount > 1) /* Command is allocated */
9597 accel_cmds_out += is_accelerated_cmd(c);
9598 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06009599 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009600 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06009601 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009602 msleep(100);
9603 } while (1);
9604}
9605
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009606static struct hpsa_sas_phy *hpsa_alloc_sas_phy(
9607 struct hpsa_sas_port *hpsa_sas_port)
9608{
9609 struct hpsa_sas_phy *hpsa_sas_phy;
9610 struct sas_phy *phy;
9611
9612 hpsa_sas_phy = kzalloc(sizeof(*hpsa_sas_phy), GFP_KERNEL);
9613 if (!hpsa_sas_phy)
9614 return NULL;
9615
9616 phy = sas_phy_alloc(hpsa_sas_port->parent_node->parent_dev,
9617 hpsa_sas_port->next_phy_index);
9618 if (!phy) {
9619 kfree(hpsa_sas_phy);
9620 return NULL;
9621 }
9622
9623 hpsa_sas_port->next_phy_index++;
9624 hpsa_sas_phy->phy = phy;
9625 hpsa_sas_phy->parent_port = hpsa_sas_port;
9626
9627 return hpsa_sas_phy;
9628}
9629
9630static void hpsa_free_sas_phy(struct hpsa_sas_phy *hpsa_sas_phy)
9631{
9632 struct sas_phy *phy = hpsa_sas_phy->phy;
9633
9634 sas_port_delete_phy(hpsa_sas_phy->parent_port->port, phy);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009635 if (hpsa_sas_phy->added_to_port)
9636 list_del(&hpsa_sas_phy->phy_list_entry);
Martin Wilck1723d662017-10-20 16:51:14 -05009637 sas_phy_delete(phy);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009638 kfree(hpsa_sas_phy);
9639}
9640
9641static int hpsa_sas_port_add_phy(struct hpsa_sas_phy *hpsa_sas_phy)
9642{
9643 int rc;
9644 struct hpsa_sas_port *hpsa_sas_port;
9645 struct sas_phy *phy;
9646 struct sas_identify *identify;
9647
9648 hpsa_sas_port = hpsa_sas_phy->parent_port;
9649 phy = hpsa_sas_phy->phy;
9650
9651 identify = &phy->identify;
9652 memset(identify, 0, sizeof(*identify));
9653 identify->sas_address = hpsa_sas_port->sas_address;
9654 identify->device_type = SAS_END_DEVICE;
9655 identify->initiator_port_protocols = SAS_PROTOCOL_STP;
9656 identify->target_port_protocols = SAS_PROTOCOL_STP;
9657 phy->minimum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
9658 phy->maximum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
9659 phy->minimum_linkrate = SAS_LINK_RATE_UNKNOWN;
9660 phy->maximum_linkrate = SAS_LINK_RATE_UNKNOWN;
9661 phy->negotiated_linkrate = SAS_LINK_RATE_UNKNOWN;
9662
9663 rc = sas_phy_add(hpsa_sas_phy->phy);
9664 if (rc)
9665 return rc;
9666
9667 sas_port_add_phy(hpsa_sas_port->port, hpsa_sas_phy->phy);
9668 list_add_tail(&hpsa_sas_phy->phy_list_entry,
9669 &hpsa_sas_port->phy_list_head);
9670 hpsa_sas_phy->added_to_port = true;
9671
9672 return 0;
9673}
9674
9675static int
9676 hpsa_sas_port_add_rphy(struct hpsa_sas_port *hpsa_sas_port,
9677 struct sas_rphy *rphy)
9678{
9679 struct sas_identify *identify;
9680
9681 identify = &rphy->identify;
9682 identify->sas_address = hpsa_sas_port->sas_address;
9683 identify->initiator_port_protocols = SAS_PROTOCOL_STP;
9684 identify->target_port_protocols = SAS_PROTOCOL_STP;
9685
9686 return sas_rphy_add(rphy);
9687}
9688
9689static struct hpsa_sas_port
9690 *hpsa_alloc_sas_port(struct hpsa_sas_node *hpsa_sas_node,
9691 u64 sas_address)
9692{
9693 int rc;
9694 struct hpsa_sas_port *hpsa_sas_port;
9695 struct sas_port *port;
9696
9697 hpsa_sas_port = kzalloc(sizeof(*hpsa_sas_port), GFP_KERNEL);
9698 if (!hpsa_sas_port)
9699 return NULL;
9700
9701 INIT_LIST_HEAD(&hpsa_sas_port->phy_list_head);
9702 hpsa_sas_port->parent_node = hpsa_sas_node;
9703
9704 port = sas_port_alloc_num(hpsa_sas_node->parent_dev);
9705 if (!port)
9706 goto free_hpsa_port;
9707
9708 rc = sas_port_add(port);
9709 if (rc)
9710 goto free_sas_port;
9711
9712 hpsa_sas_port->port = port;
9713 hpsa_sas_port->sas_address = sas_address;
9714 list_add_tail(&hpsa_sas_port->port_list_entry,
9715 &hpsa_sas_node->port_list_head);
9716
9717 return hpsa_sas_port;
9718
9719free_sas_port:
9720 sas_port_free(port);
9721free_hpsa_port:
9722 kfree(hpsa_sas_port);
9723
9724 return NULL;
9725}
9726
9727static void hpsa_free_sas_port(struct hpsa_sas_port *hpsa_sas_port)
9728{
9729 struct hpsa_sas_phy *hpsa_sas_phy;
9730 struct hpsa_sas_phy *next;
9731
9732 list_for_each_entry_safe(hpsa_sas_phy, next,
9733 &hpsa_sas_port->phy_list_head, phy_list_entry)
9734 hpsa_free_sas_phy(hpsa_sas_phy);
9735
9736 sas_port_delete(hpsa_sas_port->port);
9737 list_del(&hpsa_sas_port->port_list_entry);
9738 kfree(hpsa_sas_port);
9739}
9740
9741static struct hpsa_sas_node *hpsa_alloc_sas_node(struct device *parent_dev)
9742{
9743 struct hpsa_sas_node *hpsa_sas_node;
9744
9745 hpsa_sas_node = kzalloc(sizeof(*hpsa_sas_node), GFP_KERNEL);
9746 if (hpsa_sas_node) {
9747 hpsa_sas_node->parent_dev = parent_dev;
9748 INIT_LIST_HEAD(&hpsa_sas_node->port_list_head);
9749 }
9750
9751 return hpsa_sas_node;
9752}
9753
9754static void hpsa_free_sas_node(struct hpsa_sas_node *hpsa_sas_node)
9755{
9756 struct hpsa_sas_port *hpsa_sas_port;
9757 struct hpsa_sas_port *next;
9758
9759 if (!hpsa_sas_node)
9760 return;
9761
9762 list_for_each_entry_safe(hpsa_sas_port, next,
9763 &hpsa_sas_node->port_list_head, port_list_entry)
9764 hpsa_free_sas_port(hpsa_sas_port);
9765
9766 kfree(hpsa_sas_node);
9767}
9768
9769static struct hpsa_scsi_dev_t
9770 *hpsa_find_device_by_sas_rphy(struct ctlr_info *h,
9771 struct sas_rphy *rphy)
9772{
9773 int i;
9774 struct hpsa_scsi_dev_t *device;
9775
9776 for (i = 0; i < h->ndevices; i++) {
9777 device = h->dev[i];
9778 if (!device->sas_port)
9779 continue;
9780 if (device->sas_port->rphy == rphy)
9781 return device;
9782 }
9783
9784 return NULL;
9785}
9786
9787static int hpsa_add_sas_host(struct ctlr_info *h)
9788{
9789 int rc;
9790 struct device *parent_dev;
9791 struct hpsa_sas_node *hpsa_sas_node;
9792 struct hpsa_sas_port *hpsa_sas_port;
9793 struct hpsa_sas_phy *hpsa_sas_phy;
9794
9795 parent_dev = &h->scsi_host->shost_gendev;
9796
9797 hpsa_sas_node = hpsa_alloc_sas_node(parent_dev);
9798 if (!hpsa_sas_node)
9799 return -ENOMEM;
9800
9801 hpsa_sas_port = hpsa_alloc_sas_port(hpsa_sas_node, h->sas_address);
9802 if (!hpsa_sas_port) {
9803 rc = -ENODEV;
9804 goto free_sas_node;
9805 }
9806
9807 hpsa_sas_phy = hpsa_alloc_sas_phy(hpsa_sas_port);
9808 if (!hpsa_sas_phy) {
9809 rc = -ENODEV;
9810 goto free_sas_port;
9811 }
9812
9813 rc = hpsa_sas_port_add_phy(hpsa_sas_phy);
9814 if (rc)
9815 goto free_sas_phy;
9816
9817 h->sas_host = hpsa_sas_node;
9818
9819 return 0;
9820
9821free_sas_phy:
9822 hpsa_free_sas_phy(hpsa_sas_phy);
9823free_sas_port:
9824 hpsa_free_sas_port(hpsa_sas_port);
9825free_sas_node:
9826 hpsa_free_sas_node(hpsa_sas_node);
9827
9828 return rc;
9829}
9830
9831static void hpsa_delete_sas_host(struct ctlr_info *h)
9832{
9833 hpsa_free_sas_node(h->sas_host);
9834}
9835
9836static int hpsa_add_sas_device(struct hpsa_sas_node *hpsa_sas_node,
9837 struct hpsa_scsi_dev_t *device)
9838{
9839 int rc;
9840 struct hpsa_sas_port *hpsa_sas_port;
9841 struct sas_rphy *rphy;
9842
9843 hpsa_sas_port = hpsa_alloc_sas_port(hpsa_sas_node, device->sas_address);
9844 if (!hpsa_sas_port)
9845 return -ENOMEM;
9846
9847 rphy = sas_end_device_alloc(hpsa_sas_port->port);
9848 if (!rphy) {
9849 rc = -ENODEV;
9850 goto free_sas_port;
9851 }
9852
9853 hpsa_sas_port->rphy = rphy;
9854 device->sas_port = hpsa_sas_port;
9855
9856 rc = hpsa_sas_port_add_rphy(hpsa_sas_port, rphy);
9857 if (rc)
9858 goto free_sas_port;
9859
9860 return 0;
9861
9862free_sas_port:
9863 hpsa_free_sas_port(hpsa_sas_port);
9864 device->sas_port = NULL;
9865
9866 return rc;
9867}
9868
9869static void hpsa_remove_sas_device(struct hpsa_scsi_dev_t *device)
9870{
9871 if (device->sas_port) {
9872 hpsa_free_sas_port(device->sas_port);
9873 device->sas_port = NULL;
9874 }
9875}
9876
9877static int
9878hpsa_sas_get_linkerrors(struct sas_phy *phy)
9879{
9880 return 0;
9881}
9882
9883static int
9884hpsa_sas_get_enclosure_identifier(struct sas_rphy *rphy, u64 *identifier)
9885{
Dan Carpenteraa105692016-04-14 12:37:44 +03009886 *identifier = 0;
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009887 return 0;
9888}
9889
9890static int
9891hpsa_sas_get_bay_identifier(struct sas_rphy *rphy)
9892{
9893 return -ENXIO;
9894}
9895
9896static int
9897hpsa_sas_phy_reset(struct sas_phy *phy, int hard_reset)
9898{
9899 return 0;
9900}
9901
9902static int
9903hpsa_sas_phy_enable(struct sas_phy *phy, int enable)
9904{
9905 return 0;
9906}
9907
9908static int
9909hpsa_sas_phy_setup(struct sas_phy *phy)
9910{
9911 return 0;
9912}
9913
9914static void
9915hpsa_sas_phy_release(struct sas_phy *phy)
9916{
9917}
9918
9919static int
9920hpsa_sas_phy_speed(struct sas_phy *phy, struct sas_phy_linkrates *rates)
9921{
9922 return -EINVAL;
9923}
9924
9925/* SMP = Serial Management Protocol */
9926static int
9927hpsa_sas_smp_handler(struct Scsi_Host *shost, struct sas_rphy *rphy,
9928struct request *req)
9929{
9930 return -EINVAL;
9931}
9932
9933static struct sas_function_template hpsa_sas_transport_functions = {
9934 .get_linkerrors = hpsa_sas_get_linkerrors,
9935 .get_enclosure_identifier = hpsa_sas_get_enclosure_identifier,
9936 .get_bay_identifier = hpsa_sas_get_bay_identifier,
9937 .phy_reset = hpsa_sas_phy_reset,
9938 .phy_enable = hpsa_sas_phy_enable,
9939 .phy_setup = hpsa_sas_phy_setup,
9940 .phy_release = hpsa_sas_phy_release,
9941 .set_phy_speed = hpsa_sas_phy_speed,
9942 .smp_handler = hpsa_sas_smp_handler,
9943};
9944
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009945/*
9946 * This is it. Register the PCI driver information for the cards we control
9947 * the OS will call our registered routines when it finds one of our cards.
9948 */
9949static int __init hpsa_init(void)
9950{
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009951 int rc;
9952
9953 hpsa_sas_transport_template =
9954 sas_attach_transport(&hpsa_sas_transport_functions);
9955 if (!hpsa_sas_transport_template)
9956 return -ENODEV;
9957
9958 rc = pci_register_driver(&hpsa_pci_driver);
9959
9960 if (rc)
9961 sas_release_transport(hpsa_sas_transport_template);
9962
9963 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009964}
9965
9966static void __exit hpsa_cleanup(void)
9967{
9968 pci_unregister_driver(&hpsa_pci_driver);
Kevin Barnettd04e62b2015-11-04 15:52:34 -06009969 sas_release_transport(hpsa_sas_transport_template);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009970}
9971
Matt Gatese1f7de02014-02-18 13:55:17 -06009972static void __attribute__((unused)) verify_offsets(void)
9973{
9974#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06009975 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
9976
9977 VERIFY_OFFSET(structure_size, 0);
9978 VERIFY_OFFSET(volume_blk_size, 4);
9979 VERIFY_OFFSET(volume_blk_cnt, 8);
9980 VERIFY_OFFSET(phys_blk_shift, 16);
9981 VERIFY_OFFSET(parity_rotation_shift, 17);
9982 VERIFY_OFFSET(strip_size, 18);
9983 VERIFY_OFFSET(disk_starting_blk, 20);
9984 VERIFY_OFFSET(disk_blk_cnt, 28);
9985 VERIFY_OFFSET(data_disks_per_row, 36);
9986 VERIFY_OFFSET(metadata_disks_per_row, 38);
9987 VERIFY_OFFSET(row_cnt, 40);
9988 VERIFY_OFFSET(layout_map_count, 42);
9989 VERIFY_OFFSET(flags, 44);
9990 VERIFY_OFFSET(dekindex, 46);
9991 /* VERIFY_OFFSET(reserved, 48 */
9992 VERIFY_OFFSET(data, 64);
9993
9994#undef VERIFY_OFFSET
9995
9996#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06009997 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
9998
9999 VERIFY_OFFSET(IU_type, 0);
10000 VERIFY_OFFSET(direction, 1);
10001 VERIFY_OFFSET(reply_queue, 2);
10002 /* VERIFY_OFFSET(reserved1, 3); */
10003 VERIFY_OFFSET(scsi_nexus, 4);
10004 VERIFY_OFFSET(Tag, 8);
10005 VERIFY_OFFSET(cdb, 16);
10006 VERIFY_OFFSET(cciss_lun, 32);
10007 VERIFY_OFFSET(data_len, 40);
10008 VERIFY_OFFSET(cmd_priority_task_attr, 44);
10009 VERIFY_OFFSET(sg_count, 45);
10010 /* VERIFY_OFFSET(reserved3 */
10011 VERIFY_OFFSET(err_ptr, 48);
10012 VERIFY_OFFSET(err_len, 56);
10013 /* VERIFY_OFFSET(reserved4 */
10014 VERIFY_OFFSET(sg, 64);
10015
10016#undef VERIFY_OFFSET
10017
10018#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -060010019 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
10020
10021 VERIFY_OFFSET(dev_handle, 0x00);
10022 VERIFY_OFFSET(reserved1, 0x02);
10023 VERIFY_OFFSET(function, 0x03);
10024 VERIFY_OFFSET(reserved2, 0x04);
10025 VERIFY_OFFSET(err_info, 0x0C);
10026 VERIFY_OFFSET(reserved3, 0x10);
10027 VERIFY_OFFSET(err_info_len, 0x12);
10028 VERIFY_OFFSET(reserved4, 0x13);
10029 VERIFY_OFFSET(sgl_offset, 0x14);
10030 VERIFY_OFFSET(reserved5, 0x15);
10031 VERIFY_OFFSET(transfer_len, 0x1C);
10032 VERIFY_OFFSET(reserved6, 0x20);
10033 VERIFY_OFFSET(io_flags, 0x24);
10034 VERIFY_OFFSET(reserved7, 0x26);
10035 VERIFY_OFFSET(LUN, 0x34);
10036 VERIFY_OFFSET(control, 0x3C);
10037 VERIFY_OFFSET(CDB, 0x40);
10038 VERIFY_OFFSET(reserved8, 0x50);
10039 VERIFY_OFFSET(host_context_flags, 0x60);
10040 VERIFY_OFFSET(timeout_sec, 0x62);
10041 VERIFY_OFFSET(ReplyQueue, 0x64);
10042 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -060010043 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -060010044 VERIFY_OFFSET(host_addr, 0x70);
10045 VERIFY_OFFSET(CISS_LUN, 0x78);
10046 VERIFY_OFFSET(SG, 0x78 + 8);
10047#undef VERIFY_OFFSET
10048}
10049
Stephen M. Cameronedd16362009-12-08 14:09:11 -080010050module_init(hpsa_init);
10051module_exit(hpsa_cleanup);