blob: c88cb1bb84127ada411826ca5167fe82811ee4ad [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
Scott Teel51c35132014-02-18 13:57:26 -06003 * Copyright 2000, 2014 Hewlett-Packard Development Company, L.P.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
12 * NON INFRINGEMENT. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/interrupt.h>
24#include <linux/types.h>
25#include <linux/pci.h>
Matthew Garrette5a44df2011-11-11 11:14:23 -050026#include <linux/pci-aspm.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080027#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/delay.h>
30#include <linux/fs.h>
31#include <linux/timer.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080032#include <linux/init.h>
33#include <linux/spinlock.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080034#include <linux/compat.h>
35#include <linux/blktrace_api.h>
36#include <linux/uaccess.h>
37#include <linux/io.h>
38#include <linux/dma-mapping.h>
39#include <linux/completion.h>
40#include <linux/moduleparam.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_cmnd.h>
43#include <scsi/scsi_device.h>
44#include <scsi/scsi_host.h>
Stephen M. Cameron667e23d2010-02-25 14:02:51 -060045#include <scsi/scsi_tcq.h>
Stephen Cameron9437ac42015-04-23 09:32:16 -050046#include <scsi/scsi_eh.h>
Webb Scales73153fe2015-04-23 09:35:04 -050047#include <scsi/scsi_dbg.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080048#include <linux/cciss_ioctl.h>
49#include <linux/string.h>
50#include <linux/bitmap.h>
Arun Sharma600634972011-07-26 16:09:06 -070051#include <linux/atomic.h>
Stephen M. Camerona0c12412011-10-26 16:22:04 -050052#include <linux/jiffies.h>
Don Brace42a91642014-11-14 17:26:27 -060053#include <linux/percpu-defs.h>
Stephen M. Cameron094963d2014-05-29 10:53:18 -050054#include <linux/percpu.h>
Don Brace2b08b3e2015-01-23 16:41:09 -060055#include <asm/unaligned.h>
Stephen M. Cameron283b4a92014-02-18 13:55:33 -060056#include <asm/div64.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080057#include "hpsa_cmd.h"
58#include "hpsa.h"
59
60/* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */
Stephen M. Cameron9a993302014-03-13 17:13:06 -050061#define HPSA_DRIVER_VERSION "3.4.4-1"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080062#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -060063#define HPSA "hpsa"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080064
Robert Elliott007e7aa2015-01-23 16:44:56 -060065/* How long to wait for CISS doorbell communication */
66#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */
67#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */
68#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */
69#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */
Stephen M. Cameronedd16362009-12-08 14:09:11 -080070#define MAX_IOCTL_CONFIG_WAIT 1000
71
72/*define how many times we will try a command because of bus resets */
73#define MAX_CMD_RETRIES 3
74
75/* Embedded module documentation macros - see modules.h */
76MODULE_AUTHOR("Hewlett-Packard Company");
77MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
78 HPSA_DRIVER_VERSION);
79MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
80MODULE_VERSION(HPSA_DRIVER_VERSION);
81MODULE_LICENSE("GPL");
82
83static int hpsa_allow_any;
84module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
85MODULE_PARM_DESC(hpsa_allow_any,
86 "Allow hpsa driver to access unknown HP Smart Array hardware");
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060087static int hpsa_simple_mode;
88module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
89MODULE_PARM_DESC(hpsa_simple_mode,
90 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080091
92/* define the PCI info for the cards we can control */
93static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080094 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
95 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
96 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
97 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
98 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -050099 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -0600101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -0600102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Mike Millerfe0c9612012-09-20 16:05:18 -0500109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Mike Millerfe0c9612012-09-20 16:05:18 -0500113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926},
114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928},
Mike Miller97b9f532013-09-04 15:05:55 -0500115 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929},
116 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD},
117 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE},
118 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF},
119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0},
120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1},
121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2},
122 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3},
123 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4},
124 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500125 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6},
Mike Miller97b9f532013-09-04 15:05:55 -0500126 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
127 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
128 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500129 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA},
130 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB},
131 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC},
132 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD},
133 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600134 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
135 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
136 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
137 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
138 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
Mike Miller7c03b872010-12-01 11:16:07 -0600139 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Stephen M. Cameron6798cc02010-06-16 13:51:20 -0500140 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800141 {0,}
142};
143
144MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
145
146/* board_id = Subsystem Device ID & Vendor ID
147 * product = Marketing Name for the board
148 * access = Address of the struct of function pointers
149 */
150static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800151 {0x3241103C, "Smart Array P212", &SA5_access},
152 {0x3243103C, "Smart Array P410", &SA5_access},
153 {0x3245103C, "Smart Array P410i", &SA5_access},
154 {0x3247103C, "Smart Array P411", &SA5_access},
155 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500156 {0x324A103C, "Smart Array P712m", &SA5_access},
157 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600158 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500159 {0x3350103C, "Smart Array P222", &SA5_access},
160 {0x3351103C, "Smart Array P420", &SA5_access},
161 {0x3352103C, "Smart Array P421", &SA5_access},
162 {0x3353103C, "Smart Array P822", &SA5_access},
163 {0x3354103C, "Smart Array P420i", &SA5_access},
164 {0x3355103C, "Smart Array P220i", &SA5_access},
165 {0x3356103C, "Smart Array P721m", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500166 {0x1921103C, "Smart Array P830i", &SA5_access},
167 {0x1922103C, "Smart Array P430", &SA5_access},
168 {0x1923103C, "Smart Array P431", &SA5_access},
169 {0x1924103C, "Smart Array P830", &SA5_access},
170 {0x1926103C, "Smart Array P731m", &SA5_access},
171 {0x1928103C, "Smart Array P230i", &SA5_access},
172 {0x1929103C, "Smart Array P530", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600173 {0x21BD103C, "Smart Array P244br", &SA5_access},
174 {0x21BE103C, "Smart Array P741m", &SA5_access},
175 {0x21BF103C, "Smart HBA H240ar", &SA5_access},
176 {0x21C0103C, "Smart Array P440ar", &SA5_access},
Don Bracec8ae0ab2015-01-23 16:45:12 -0600177 {0x21C1103C, "Smart Array P840ar", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600178 {0x21C2103C, "Smart Array P440", &SA5_access},
179 {0x21C3103C, "Smart Array P441", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500180 {0x21C4103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600181 {0x21C5103C, "Smart Array P841", &SA5_access},
182 {0x21C6103C, "Smart HBA H244br", &SA5_access},
183 {0x21C7103C, "Smart HBA H240", &SA5_access},
184 {0x21C8103C, "Smart HBA H241", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500185 {0x21C9103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600186 {0x21CA103C, "Smart Array P246br", &SA5_access},
187 {0x21CB103C, "Smart Array P840", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500188 {0x21CC103C, "Smart Array", &SA5_access},
189 {0x21CD103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600190 {0x21CE103C, "Smart HBA", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600191 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
192 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
193 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
194 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
195 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800196 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
197};
198
Webb Scalesa58e7e52015-04-23 09:34:16 -0500199#define SCSI_CMD_BUSY ((struct scsi_cmnd *)&hpsa_cmd_busy)
200static const struct scsi_cmnd hpsa_cmd_busy;
201#define SCSI_CMD_IDLE ((struct scsi_cmnd *)&hpsa_cmd_idle)
202static const struct scsi_cmnd hpsa_cmd_idle;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800203static int number_of_controllers;
204
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500205static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
206static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Don Brace42a91642014-11-14 17:26:27 -0600207static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800208
209#ifdef CONFIG_COMPAT
Don Brace42a91642014-11-14 17:26:27 -0600210static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
211 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800212#endif
213
214static void cmd_free(struct ctlr_info *h, struct CommandList *c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800215static struct CommandList *cmd_alloc(struct ctlr_info *h);
Webb Scales73153fe2015-04-23 09:35:04 -0500216static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c);
217static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
218 struct scsi_cmnd *scmd);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600219static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600220 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800221 int cmd_type);
Robert Elliott2c143342015-01-23 16:42:48 -0600222static void hpsa_free_cmd_pool(struct ctlr_info *h);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600223#define VPD_PAGE (1 << 8)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800224
Jeff Garzikf2812332010-11-16 02:10:29 -0500225static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600226static void hpsa_scan_start(struct Scsi_Host *);
227static int hpsa_scan_finished(struct Scsi_Host *sh,
228 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600229static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800230
231static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500232static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800233static int hpsa_slave_alloc(struct scsi_device *sdev);
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500234static int hpsa_slave_configure(struct scsi_device *sdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800235static void hpsa_slave_destroy(struct scsi_device *sdev);
236
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800237static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800238static int check_for_unit_attention(struct ctlr_info *h,
239 struct CommandList *c);
240static void check_ioctl_unit_attention(struct ctlr_info *h,
241 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600242/* performant mode helper functions */
243static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600244 int nsgs, int min_blocks, u32 *bucket_map);
Robert Elliott105a3db2015-04-23 09:33:48 -0500245static void hpsa_free_performant_mode(struct ctlr_info *h);
246static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500247static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800248static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
249 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
250 u64 *cfg_offset);
251static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
252 unsigned long *memory_bar);
253static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
254static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
255 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500256static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600257static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600258#define BOARD_NOT_READY 0
259#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600260static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600261static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600262static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
263 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600264 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600265static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500266static u32 lockup_detected(struct ctlr_info *h);
267static int detect_controller_lockup(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800268
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800269static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
270{
271 unsigned long *priv = shost_priv(sdev->host);
272 return (struct ctlr_info *) *priv;
273}
274
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600275static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
276{
277 unsigned long *priv = shost_priv(sh);
278 return (struct ctlr_info *) *priv;
279}
280
Webb Scalesa58e7e52015-04-23 09:34:16 -0500281static inline bool hpsa_is_cmd_idle(struct CommandList *c)
282{
283 return c->scsi_cmd == SCSI_CMD_IDLE;
284}
285
Stephen Cameron9437ac42015-04-23 09:32:16 -0500286/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
287static void decode_sense_data(const u8 *sense_data, int sense_data_len,
288 u8 *sense_key, u8 *asc, u8 *ascq)
289{
290 struct scsi_sense_hdr sshdr;
291 bool rc;
292
293 *sense_key = -1;
294 *asc = -1;
295 *ascq = -1;
296
297 if (sense_data_len < 1)
298 return;
299
300 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
301 if (rc) {
302 *sense_key = sshdr.sense_key;
303 *asc = sshdr.asc;
304 *ascq = sshdr.ascq;
305 }
306}
307
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800308static int check_for_unit_attention(struct ctlr_info *h,
309 struct CommandList *c)
310{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500311 u8 sense_key, asc, ascq;
312 int sense_len;
313
314 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
315 sense_len = sizeof(c->err_info->SenseInfo);
316 else
317 sense_len = c->err_info->SenseLen;
318
319 decode_sense_data(c->err_info->SenseInfo, sense_len,
320 &sense_key, &asc, &ascq);
321 if (sense_key != UNIT_ATTENTION || asc == -1)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800322 return 0;
323
Stephen Cameron9437ac42015-04-23 09:32:16 -0500324 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800325 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500326 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500327 "%s: a state change detected, command retried\n",
328 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800329 break;
330 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600331 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500332 "%s: LUN failure detected\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800333 break;
334 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600335 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500336 "%s: report LUN data changed\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800337 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600338 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
339 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800340 */
341 break;
342 case POWER_OR_RESET:
Robert Elliott2946e822015-04-23 09:35:09 -0500343 dev_warn(&h->pdev->dev,
344 "%s: a power on or device reset detected\n",
345 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800346 break;
347 case UNIT_ATTENTION_CLEARED:
Robert Elliott2946e822015-04-23 09:35:09 -0500348 dev_warn(&h->pdev->dev,
349 "%s: unit attention cleared by another initiator\n",
350 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800351 break;
352 default:
Robert Elliott2946e822015-04-23 09:35:09 -0500353 dev_warn(&h->pdev->dev,
354 "%s: unknown unit attention detected\n",
355 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800356 break;
357 }
358 return 1;
359}
360
Matt Bondurant852af202012-05-01 11:42:35 -0500361static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
362{
363 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
364 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
365 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
366 return 0;
367 dev_warn(&h->pdev->dev, HPSA "device busy");
368 return 1;
369}
370
Stephen Camerone985c582015-04-23 09:32:22 -0500371static u32 lockup_detected(struct ctlr_info *h);
372static ssize_t host_show_lockup_detected(struct device *dev,
373 struct device_attribute *attr, char *buf)
374{
375 int ld;
376 struct ctlr_info *h;
377 struct Scsi_Host *shost = class_to_shost(dev);
378
379 h = shost_to_hba(shost);
380 ld = lockup_detected(h);
381
382 return sprintf(buf, "ld=%d\n", ld);
383}
384
Scott Teelda0697b2014-02-18 13:57:00 -0600385static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
386 struct device_attribute *attr,
387 const char *buf, size_t count)
388{
389 int status, len;
390 struct ctlr_info *h;
391 struct Scsi_Host *shost = class_to_shost(dev);
392 char tmpbuf[10];
393
394 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
395 return -EACCES;
396 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
397 strncpy(tmpbuf, buf, len);
398 tmpbuf[len] = '\0';
399 if (sscanf(tmpbuf, "%d", &status) != 1)
400 return -EINVAL;
401 h = shost_to_hba(shost);
402 h->acciopath_status = !!status;
403 dev_warn(&h->pdev->dev,
404 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
405 h->acciopath_status ? "enabled" : "disabled");
406 return count;
407}
408
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600409static ssize_t host_store_raid_offload_debug(struct device *dev,
410 struct device_attribute *attr,
411 const char *buf, size_t count)
412{
413 int debug_level, len;
414 struct ctlr_info *h;
415 struct Scsi_Host *shost = class_to_shost(dev);
416 char tmpbuf[10];
417
418 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
419 return -EACCES;
420 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
421 strncpy(tmpbuf, buf, len);
422 tmpbuf[len] = '\0';
423 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
424 return -EINVAL;
425 if (debug_level < 0)
426 debug_level = 0;
427 h = shost_to_hba(shost);
428 h->raid_offload_debug = debug_level;
429 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
430 h->raid_offload_debug);
431 return count;
432}
433
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800434static ssize_t host_store_rescan(struct device *dev,
435 struct device_attribute *attr,
436 const char *buf, size_t count)
437{
438 struct ctlr_info *h;
439 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600440 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600441 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800442 return count;
443}
444
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500445static ssize_t host_show_firmware_revision(struct device *dev,
446 struct device_attribute *attr, char *buf)
447{
448 struct ctlr_info *h;
449 struct Scsi_Host *shost = class_to_shost(dev);
450 unsigned char *fwrev;
451
452 h = shost_to_hba(shost);
453 if (!h->hba_inquiry_data)
454 return 0;
455 fwrev = &h->hba_inquiry_data[32];
456 return snprintf(buf, 20, "%c%c%c%c\n",
457 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
458}
459
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600460static ssize_t host_show_commands_outstanding(struct device *dev,
461 struct device_attribute *attr, char *buf)
462{
463 struct Scsi_Host *shost = class_to_shost(dev);
464 struct ctlr_info *h = shost_to_hba(shost);
465
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600466 return snprintf(buf, 20, "%d\n",
467 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600468}
469
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600470static ssize_t host_show_transport_mode(struct device *dev,
471 struct device_attribute *attr, char *buf)
472{
473 struct ctlr_info *h;
474 struct Scsi_Host *shost = class_to_shost(dev);
475
476 h = shost_to_hba(shost);
477 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600478 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600479 "performant" : "simple");
480}
481
Scott Teelda0697b2014-02-18 13:57:00 -0600482static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
483 struct device_attribute *attr, char *buf)
484{
485 struct ctlr_info *h;
486 struct Scsi_Host *shost = class_to_shost(dev);
487
488 h = shost_to_hba(shost);
489 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
490 (h->acciopath_status == 1) ? "enabled" : "disabled");
491}
492
Stephen M. Cameron46380782011-05-03 15:00:01 -0500493/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600494static u32 unresettable_controller[] = {
495 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500496 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600497 0x3223103C, /* Smart Array P800 */
498 0x3234103C, /* Smart Array P400 */
499 0x3235103C, /* Smart Array P400i */
500 0x3211103C, /* Smart Array E200i */
501 0x3212103C, /* Smart Array E200 */
502 0x3213103C, /* Smart Array E200i */
503 0x3214103C, /* Smart Array E200i */
504 0x3215103C, /* Smart Array E200i */
505 0x3237103C, /* Smart Array E500 */
506 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100507 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600508 0x409C0E11, /* Smart Array 6400 */
509 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100510 0x40700E11, /* Smart Array 5300 */
511 0x40820E11, /* Smart Array 532 */
512 0x40830E11, /* Smart Array 5312 */
513 0x409A0E11, /* Smart Array 641 */
514 0x409B0E11, /* Smart Array 642 */
515 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600516};
517
Stephen M. Cameron46380782011-05-03 15:00:01 -0500518/* List of controllers which cannot even be soft reset */
519static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100520 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100521 0x40700E11, /* Smart Array 5300 */
522 0x40820E11, /* Smart Array 532 */
523 0x40830E11, /* Smart Array 5312 */
524 0x409A0E11, /* Smart Array 641 */
525 0x409B0E11, /* Smart Array 642 */
526 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500527 /* Exclude 640x boards. These are two pci devices in one slot
528 * which share a battery backed cache module. One controls the
529 * cache, the other accesses the cache through the one that controls
530 * it. If we reset the one controlling the cache, the other will
531 * likely not be happy. Just forbid resetting this conjoined mess.
532 * The 640x isn't really supported by hpsa anyway.
533 */
534 0x409C0E11, /* Smart Array 6400 */
535 0x409D0E11, /* Smart Array 6400 EM */
536};
537
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500538static u32 needs_abort_tags_swizzled[] = {
539 0x323D103C, /* Smart Array P700m */
540 0x324a103C, /* Smart Array P712m */
541 0x324b103C, /* SmartArray P711m */
542};
543
544static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600545{
546 int i;
547
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500548 for (i = 0; i < nelems; i++)
549 if (a[i] == board_id)
550 return 1;
551 return 0;
552}
553
554static int ctlr_is_hard_resettable(u32 board_id)
555{
556 return !board_id_in_array(unresettable_controller,
557 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600558}
559
Stephen M. Cameron46380782011-05-03 15:00:01 -0500560static int ctlr_is_soft_resettable(u32 board_id)
561{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500562 return !board_id_in_array(soft_unresettable_controller,
563 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500564}
565
566static int ctlr_is_resettable(u32 board_id)
567{
568 return ctlr_is_hard_resettable(board_id) ||
569 ctlr_is_soft_resettable(board_id);
570}
571
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500572static int ctlr_needs_abort_tags_swizzled(u32 board_id)
573{
574 return board_id_in_array(needs_abort_tags_swizzled,
575 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
576}
577
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600578static ssize_t host_show_resettable(struct device *dev,
579 struct device_attribute *attr, char *buf)
580{
581 struct ctlr_info *h;
582 struct Scsi_Host *shost = class_to_shost(dev);
583
584 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500585 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600586}
587
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800588static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
589{
590 return (scsi3addr[3] & 0xC0) == 0x40;
591}
592
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600593static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
594 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800595};
Scott Teel6b80b182014-02-18 13:56:55 -0600596#define HPSA_RAID_0 0
597#define HPSA_RAID_4 1
598#define HPSA_RAID_1 2 /* also used for RAID 10 */
599#define HPSA_RAID_5 3 /* also used for RAID 50 */
600#define HPSA_RAID_51 4
601#define HPSA_RAID_6 5 /* also used for RAID 60 */
602#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800603#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
604
605static ssize_t raid_level_show(struct device *dev,
606 struct device_attribute *attr, char *buf)
607{
608 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600609 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800610 struct ctlr_info *h;
611 struct scsi_device *sdev;
612 struct hpsa_scsi_dev_t *hdev;
613 unsigned long flags;
614
615 sdev = to_scsi_device(dev);
616 h = sdev_to_hba(sdev);
617 spin_lock_irqsave(&h->lock, flags);
618 hdev = sdev->hostdata;
619 if (!hdev) {
620 spin_unlock_irqrestore(&h->lock, flags);
621 return -ENODEV;
622 }
623
624 /* Is this even a logical drive? */
625 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
626 spin_unlock_irqrestore(&h->lock, flags);
627 l = snprintf(buf, PAGE_SIZE, "N/A\n");
628 return l;
629 }
630
631 rlevel = hdev->raid_level;
632 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600633 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800634 rlevel = RAID_UNKNOWN;
635 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
636 return l;
637}
638
639static ssize_t lunid_show(struct device *dev,
640 struct device_attribute *attr, char *buf)
641{
642 struct ctlr_info *h;
643 struct scsi_device *sdev;
644 struct hpsa_scsi_dev_t *hdev;
645 unsigned long flags;
646 unsigned char lunid[8];
647
648 sdev = to_scsi_device(dev);
649 h = sdev_to_hba(sdev);
650 spin_lock_irqsave(&h->lock, flags);
651 hdev = sdev->hostdata;
652 if (!hdev) {
653 spin_unlock_irqrestore(&h->lock, flags);
654 return -ENODEV;
655 }
656 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
657 spin_unlock_irqrestore(&h->lock, flags);
658 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
659 lunid[0], lunid[1], lunid[2], lunid[3],
660 lunid[4], lunid[5], lunid[6], lunid[7]);
661}
662
663static ssize_t unique_id_show(struct device *dev,
664 struct device_attribute *attr, char *buf)
665{
666 struct ctlr_info *h;
667 struct scsi_device *sdev;
668 struct hpsa_scsi_dev_t *hdev;
669 unsigned long flags;
670 unsigned char sn[16];
671
672 sdev = to_scsi_device(dev);
673 h = sdev_to_hba(sdev);
674 spin_lock_irqsave(&h->lock, flags);
675 hdev = sdev->hostdata;
676 if (!hdev) {
677 spin_unlock_irqrestore(&h->lock, flags);
678 return -ENODEV;
679 }
680 memcpy(sn, hdev->device_id, sizeof(sn));
681 spin_unlock_irqrestore(&h->lock, flags);
682 return snprintf(buf, 16 * 2 + 2,
683 "%02X%02X%02X%02X%02X%02X%02X%02X"
684 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
685 sn[0], sn[1], sn[2], sn[3],
686 sn[4], sn[5], sn[6], sn[7],
687 sn[8], sn[9], sn[10], sn[11],
688 sn[12], sn[13], sn[14], sn[15]);
689}
690
Scott Teelc1988682014-02-18 13:55:54 -0600691static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
692 struct device_attribute *attr, char *buf)
693{
694 struct ctlr_info *h;
695 struct scsi_device *sdev;
696 struct hpsa_scsi_dev_t *hdev;
697 unsigned long flags;
698 int offload_enabled;
699
700 sdev = to_scsi_device(dev);
701 h = sdev_to_hba(sdev);
702 spin_lock_irqsave(&h->lock, flags);
703 hdev = sdev->hostdata;
704 if (!hdev) {
705 spin_unlock_irqrestore(&h->lock, flags);
706 return -ENODEV;
707 }
708 offload_enabled = hdev->offload_enabled;
709 spin_unlock_irqrestore(&h->lock, flags);
710 return snprintf(buf, 20, "%d\n", offload_enabled);
711}
712
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600713static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
714static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
715static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
716static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600717static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
718 host_show_hp_ssd_smart_path_enabled, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600719static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
720 host_show_hp_ssd_smart_path_status,
721 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600722static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
723 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600724static DEVICE_ATTR(firmware_revision, S_IRUGO,
725 host_show_firmware_revision, NULL);
726static DEVICE_ATTR(commands_outstanding, S_IRUGO,
727 host_show_commands_outstanding, NULL);
728static DEVICE_ATTR(transport_mode, S_IRUGO,
729 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600730static DEVICE_ATTR(resettable, S_IRUGO,
731 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500732static DEVICE_ATTR(lockup_detected, S_IRUGO,
733 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600734
735static struct device_attribute *hpsa_sdev_attrs[] = {
736 &dev_attr_raid_level,
737 &dev_attr_lunid,
738 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600739 &dev_attr_hp_ssd_smart_path_enabled,
Stephen Camerone985c582015-04-23 09:32:22 -0500740 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600741 NULL,
742};
743
744static struct device_attribute *hpsa_shost_attrs[] = {
745 &dev_attr_rescan,
746 &dev_attr_firmware_revision,
747 &dev_attr_commands_outstanding,
748 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600749 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600750 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600751 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600752 NULL,
753};
754
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500755#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
756 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
757
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600758static struct scsi_host_template hpsa_driver_template = {
759 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600760 .name = HPSA,
761 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600762 .queuecommand = hpsa_scsi_queue_command,
763 .scan_start = hpsa_scan_start,
764 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600765 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600766 .this_id = -1,
767 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500768 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600769 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
770 .ioctl = hpsa_ioctl,
771 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500772 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600773 .slave_destroy = hpsa_slave_destroy,
774#ifdef CONFIG_COMPAT
775 .compat_ioctl = hpsa_compat_ioctl,
776#endif
777 .sdev_attrs = hpsa_sdev_attrs,
778 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500779 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400780 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600781};
782
Matt Gates254f7962012-05-01 11:43:06 -0500783static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600784{
785 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500786 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600787
Matt Gatese1f7de02014-02-18 13:55:17 -0600788 if (h->transMethod & CFGTBL_Trans_io_accel1)
789 return h->access.command_completed(h, q);
790
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600791 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500792 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600793
Matt Gates254f7962012-05-01 11:43:06 -0500794 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
795 a = rq->head[rq->current_entry];
796 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600797 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600798 } else {
799 a = FIFO_EMPTY;
800 }
801 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500802 if (rq->current_entry == h->max_commands) {
803 rq->current_entry = 0;
804 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600805 }
806 return a;
807}
808
Scott Teelc3497752014-02-18 13:56:34 -0600809/*
810 * There are some special bits in the bus address of the
811 * command that we have to set for the controller to know
812 * how to process the command:
813 *
814 * Normal performant mode:
815 * bit 0: 1 means performant mode, 0 means simple mode.
816 * bits 1-3 = block fetch table entry
817 * bits 4-6 = command type (== 0)
818 *
819 * ioaccel1 mode:
820 * bit 0 = "performant mode" bit.
821 * bits 1-3 = block fetch table entry
822 * bits 4-6 = command type (== 110)
823 * (command type is needed because ioaccel1 mode
824 * commands are submitted through the same register as normal
825 * mode commands, so this is how the controller knows whether
826 * the command is normal mode or ioaccel1 mode.)
827 *
828 * ioaccel2 mode:
829 * bit 0 = "performant mode" bit.
830 * bits 1-4 = block fetch table entry (note extra bit)
831 * bits 4-6 = not needed, because ioaccel2 mode has
832 * a separate special register for submitting commands.
833 */
834
Webb Scales25163bd2015-04-23 09:32:00 -0500835/*
836 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600837 * set bit 0 for pull model, bits 3-1 for block fetch
838 * register number
839 */
Webb Scales25163bd2015-04-23 09:32:00 -0500840#define DEFAULT_REPLY_QUEUE (-1)
841static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
842 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600843{
Matt Gates254f7962012-05-01 11:43:06 -0500844 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600845 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -0500846 if (unlikely(!h->msix_vector))
847 return;
848 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -0500849 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200850 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -0500851 else
852 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500853 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600854}
855
Scott Teelc3497752014-02-18 13:56:34 -0600856static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500857 struct CommandList *c,
858 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600859{
860 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
861
Webb Scales25163bd2015-04-23 09:32:00 -0500862 /*
863 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600864 * processor. This seems to give the best I/O throughput.
865 */
Webb Scales25163bd2015-04-23 09:32:00 -0500866 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
867 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
868 else
869 cp->ReplyQueue = reply_queue % h->nreply_queues;
870 /*
871 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600872 * - performant mode bit (bit 0)
873 * - pull count (bits 1-3)
874 * - command type (bits 4-6)
875 */
876 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
877 IOACCEL1_BUSADDR_CMDTYPE;
878}
879
Stephen Cameron8be986c2015-04-23 09:34:06 -0500880static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
881 struct CommandList *c,
882 int reply_queue)
883{
884 struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
885 &h->ioaccel2_cmd_pool[c->cmdindex];
886
887 /* Tell the controller to post the reply to the queue for this
888 * processor. This seems to give the best I/O throughput.
889 */
890 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
891 cp->reply_queue = smp_processor_id() % h->nreply_queues;
892 else
893 cp->reply_queue = reply_queue % h->nreply_queues;
894 /* Set the bits in the address sent down to include:
895 * - performant mode bit not used in ioaccel mode 2
896 * - pull count (bits 0-3)
897 * - command type isn't needed for ioaccel2
898 */
899 c->busaddr |= h->ioaccel2_blockFetchTable[0];
900}
901
Scott Teelc3497752014-02-18 13:56:34 -0600902static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500903 struct CommandList *c,
904 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600905{
906 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
907
Webb Scales25163bd2015-04-23 09:32:00 -0500908 /*
909 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600910 * processor. This seems to give the best I/O throughput.
911 */
Webb Scales25163bd2015-04-23 09:32:00 -0500912 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
913 cp->reply_queue = smp_processor_id() % h->nreply_queues;
914 else
915 cp->reply_queue = reply_queue % h->nreply_queues;
916 /*
917 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600918 * - performant mode bit not used in ioaccel mode 2
919 * - pull count (bits 0-3)
920 * - command type isn't needed for ioaccel2
921 */
922 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
923}
924
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500925static int is_firmware_flash_cmd(u8 *cdb)
926{
927 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
928}
929
930/*
931 * During firmware flash, the heartbeat register may not update as frequently
932 * as it should. So we dial down lockup detection during firmware flash. and
933 * dial it back up when firmware flash completes.
934 */
935#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
936#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
937static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
938 struct CommandList *c)
939{
940 if (!is_firmware_flash_cmd(c->Request.CDB))
941 return;
942 atomic_inc(&h->firmware_flash_in_progress);
943 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
944}
945
946static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
947 struct CommandList *c)
948{
949 if (is_firmware_flash_cmd(c->Request.CDB) &&
950 atomic_dec_and_test(&h->firmware_flash_in_progress))
951 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
952}
953
Webb Scales25163bd2015-04-23 09:32:00 -0500954static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
955 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600956{
Stephen Cameronc05e8862015-01-23 16:44:40 -0600957 dial_down_lockup_detection_during_fw_flash(h, c);
958 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -0600959 switch (c->cmd_type) {
960 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -0500961 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600962 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -0600963 break;
964 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -0500965 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600966 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -0600967 break;
Stephen Cameron8be986c2015-04-23 09:34:06 -0500968 case IOACCEL2_TMF:
969 set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
970 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
971 break;
Scott Teelc3497752014-02-18 13:56:34 -0600972 default:
Webb Scales25163bd2015-04-23 09:32:00 -0500973 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -0600974 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -0600975 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600976}
977
Webb Scalesa58e7e52015-04-23 09:34:16 -0500978static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c)
Webb Scales25163bd2015-04-23 09:32:00 -0500979{
Webb Scalesa58e7e52015-04-23 09:34:16 -0500980 if (unlikely(c->abort_pending))
981 return finish_cmd(c);
982
Webb Scales25163bd2015-04-23 09:32:00 -0500983 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
984}
985
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600986static inline int is_hba_lunid(unsigned char scsi3addr[])
987{
988 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
989}
990
991static inline int is_scsi_rev_5(struct ctlr_info *h)
992{
993 if (!h->hba_inquiry_data)
994 return 0;
995 if ((h->hba_inquiry_data[2] & 0x07) == 5)
996 return 1;
997 return 0;
998}
999
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001000static int hpsa_find_target_lun(struct ctlr_info *h,
1001 unsigned char scsi3addr[], int bus, int *target, int *lun)
1002{
1003 /* finds an unused bus, target, lun for a new physical device
1004 * assumes h->devlock is held
1005 */
1006 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -05001007 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001008
Akinobu Mita263d9402012-01-21 00:15:27 +09001009 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001010
1011 for (i = 0; i < h->ndevices; i++) {
1012 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +09001013 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001014 }
1015
Akinobu Mita263d9402012-01-21 00:15:27 +09001016 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
1017 if (i < HPSA_MAX_DEVICES) {
1018 /* *bus = 1; */
1019 *target = i;
1020 *lun = 0;
1021 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001022 }
1023 return !found;
1024}
1025
Webb Scales0d96ef52015-04-23 09:31:55 -05001026static inline void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
1027 struct hpsa_scsi_dev_t *dev, char *description)
1028{
1029 dev_printk(level, &h->pdev->dev,
1030 "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
1031 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
1032 description,
1033 scsi_device_type(dev->devtype),
1034 dev->vendor,
1035 dev->model,
1036 dev->raid_level > RAID_UNKNOWN ?
1037 "RAID-?" : raid_label[dev->raid_level],
1038 dev->offload_config ? '+' : '-',
1039 dev->offload_enabled ? '+' : '-',
1040 dev->expose_state);
1041}
1042
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001043/* Add an entry into h->dev[] array. */
1044static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
1045 struct hpsa_scsi_dev_t *device,
1046 struct hpsa_scsi_dev_t *added[], int *nadded)
1047{
1048 /* assumes h->devlock is held */
1049 int n = h->ndevices;
1050 int i;
1051 unsigned char addr1[8], addr2[8];
1052 struct hpsa_scsi_dev_t *sd;
1053
Scott Teelcfe5bad2011-10-26 16:21:07 -05001054 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001055 dev_err(&h->pdev->dev, "too many devices, some will be "
1056 "inaccessible.\n");
1057 return -1;
1058 }
1059
1060 /* physical devices do not have lun or target assigned until now. */
1061 if (device->lun != -1)
1062 /* Logical device, lun is already assigned. */
1063 goto lun_assigned;
1064
1065 /* If this device a non-zero lun of a multi-lun device
1066 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001067 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001068 */
1069 if (device->scsi3addr[4] == 0) {
1070 /* This is not a non-zero lun of a multi-lun device */
1071 if (hpsa_find_target_lun(h, device->scsi3addr,
1072 device->bus, &device->target, &device->lun) != 0)
1073 return -1;
1074 goto lun_assigned;
1075 }
1076
1077 /* This is a non-zero lun of a multi-lun device.
1078 * Search through our list and find the device which
1079 * has the same 8 byte LUN address, excepting byte 4.
1080 * Assign the same bus and target for this new LUN.
1081 * Use the logical unit number from the firmware.
1082 */
1083 memcpy(addr1, device->scsi3addr, 8);
1084 addr1[4] = 0;
1085 for (i = 0; i < n; i++) {
1086 sd = h->dev[i];
1087 memcpy(addr2, sd->scsi3addr, 8);
1088 addr2[4] = 0;
1089 /* differ only in byte 4? */
1090 if (memcmp(addr1, addr2, 8) == 0) {
1091 device->bus = sd->bus;
1092 device->target = sd->target;
1093 device->lun = device->scsi3addr[4];
1094 break;
1095 }
1096 }
1097 if (device->lun == -1) {
1098 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1099 " suspect firmware bug or unsupported hardware "
1100 "configuration.\n");
1101 return -1;
1102 }
1103
1104lun_assigned:
1105
1106 h->dev[n] = device;
1107 h->ndevices++;
1108 added[*nadded] = device;
1109 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001110 hpsa_show_dev_msg(KERN_INFO, h, device,
1111 device->expose_state & HPSA_SCSI_ADD ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001112 device->offload_to_be_enabled = device->offload_enabled;
1113 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001114 return 0;
1115}
1116
Scott Teelbd9244f2012-01-19 14:01:30 -06001117/* Update an entry in h->dev[] array. */
1118static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
1119 int entry, struct hpsa_scsi_dev_t *new_entry)
1120{
Robert Elliotta473d862015-04-23 09:32:54 -05001121 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001122 /* assumes h->devlock is held */
1123 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1124
1125 /* Raid level changed. */
1126 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001127
Don Brace03383732015-01-23 16:43:30 -06001128 /* Raid offload parameters changed. Careful about the ordering. */
1129 if (new_entry->offload_config && new_entry->offload_enabled) {
1130 /*
1131 * if drive is newly offload_enabled, we want to copy the
1132 * raid map data first. If previously offload_enabled and
1133 * offload_config were set, raid map data had better be
1134 * the same as it was before. if raid map data is changed
1135 * then it had better be the case that
1136 * h->dev[entry]->offload_enabled is currently 0.
1137 */
1138 h->dev[entry]->raid_map = new_entry->raid_map;
1139 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001140 }
Joe Handzika3144e02015-04-23 09:32:59 -05001141 if (new_entry->hba_ioaccel_enabled) {
1142 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1143 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1144 }
1145 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001146 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001147 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001148 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001149
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001150 /*
1151 * We can turn off ioaccel offload now, but need to delay turning
1152 * it on until we can update h->dev[entry]->phys_disk[], but we
1153 * can't do that until all the devices are updated.
1154 */
1155 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1156 if (!new_entry->offload_enabled)
1157 h->dev[entry]->offload_enabled = 0;
1158
Robert Elliotta473d862015-04-23 09:32:54 -05001159 offload_enabled = h->dev[entry]->offload_enabled;
1160 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001161 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001162 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001163}
1164
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001165/* Replace an entry from h->dev[] array. */
1166static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
1167 int entry, struct hpsa_scsi_dev_t *new_entry,
1168 struct hpsa_scsi_dev_t *added[], int *nadded,
1169 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1170{
1171 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001172 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001173 removed[*nremoved] = h->dev[entry];
1174 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001175
1176 /*
1177 * New physical devices won't have target/lun assigned yet
1178 * so we need to preserve the values in the slot we are replacing.
1179 */
1180 if (new_entry->target == -1) {
1181 new_entry->target = h->dev[entry]->target;
1182 new_entry->lun = h->dev[entry]->lun;
1183 }
1184
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001185 h->dev[entry] = new_entry;
1186 added[*nadded] = new_entry;
1187 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001188 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001189 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1190 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001191}
1192
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001193/* Remove an entry from h->dev[] array. */
1194static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1195 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1196{
1197 /* assumes h->devlock is held */
1198 int i;
1199 struct hpsa_scsi_dev_t *sd;
1200
Scott Teelcfe5bad2011-10-26 16:21:07 -05001201 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001202
1203 sd = h->dev[entry];
1204 removed[*nremoved] = h->dev[entry];
1205 (*nremoved)++;
1206
1207 for (i = entry; i < h->ndevices-1; i++)
1208 h->dev[i] = h->dev[i+1];
1209 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001210 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001211}
1212
1213#define SCSI3ADDR_EQ(a, b) ( \
1214 (a)[7] == (b)[7] && \
1215 (a)[6] == (b)[6] && \
1216 (a)[5] == (b)[5] && \
1217 (a)[4] == (b)[4] && \
1218 (a)[3] == (b)[3] && \
1219 (a)[2] == (b)[2] && \
1220 (a)[1] == (b)[1] && \
1221 (a)[0] == (b)[0])
1222
1223static void fixup_botched_add(struct ctlr_info *h,
1224 struct hpsa_scsi_dev_t *added)
1225{
1226 /* called when scsi_add_device fails in order to re-adjust
1227 * h->dev[] to match the mid layer's view.
1228 */
1229 unsigned long flags;
1230 int i, j;
1231
1232 spin_lock_irqsave(&h->lock, flags);
1233 for (i = 0; i < h->ndevices; i++) {
1234 if (h->dev[i] == added) {
1235 for (j = i; j < h->ndevices-1; j++)
1236 h->dev[j] = h->dev[j+1];
1237 h->ndevices--;
1238 break;
1239 }
1240 }
1241 spin_unlock_irqrestore(&h->lock, flags);
1242 kfree(added);
1243}
1244
1245static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1246 struct hpsa_scsi_dev_t *dev2)
1247{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001248 /* we compare everything except lun and target as these
1249 * are not yet assigned. Compare parts likely
1250 * to differ first
1251 */
1252 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1253 sizeof(dev1->scsi3addr)) != 0)
1254 return 0;
1255 if (memcmp(dev1->device_id, dev2->device_id,
1256 sizeof(dev1->device_id)) != 0)
1257 return 0;
1258 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1259 return 0;
1260 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1261 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001262 if (dev1->devtype != dev2->devtype)
1263 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001264 if (dev1->bus != dev2->bus)
1265 return 0;
1266 return 1;
1267}
1268
Scott Teelbd9244f2012-01-19 14:01:30 -06001269static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1270 struct hpsa_scsi_dev_t *dev2)
1271{
1272 /* Device attributes that can change, but don't mean
1273 * that the device is a different device, nor that the OS
1274 * needs to be told anything about the change.
1275 */
1276 if (dev1->raid_level != dev2->raid_level)
1277 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001278 if (dev1->offload_config != dev2->offload_config)
1279 return 1;
1280 if (dev1->offload_enabled != dev2->offload_enabled)
1281 return 1;
Don Brace03383732015-01-23 16:43:30 -06001282 if (dev1->queue_depth != dev2->queue_depth)
1283 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001284 return 0;
1285}
1286
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001287/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1288 * and return needle location in *index. If scsi3addr matches, but not
1289 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001290 * location in *index.
1291 * In the case of a minor device attribute change, such as RAID level, just
1292 * return DEVICE_UPDATED, along with the updated device's location in index.
1293 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001294 */
1295static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1296 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1297 int *index)
1298{
1299 int i;
1300#define DEVICE_NOT_FOUND 0
1301#define DEVICE_CHANGED 1
1302#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001303#define DEVICE_UPDATED 3
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001304 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001305 if (haystack[i] == NULL) /* previously removed. */
1306 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001307 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1308 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001309 if (device_is_the_same(needle, haystack[i])) {
1310 if (device_updated(needle, haystack[i]))
1311 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001312 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001313 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001314 /* Keep offline devices offline */
1315 if (needle->volume_offline)
1316 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001317 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001318 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001319 }
1320 }
1321 *index = -1;
1322 return DEVICE_NOT_FOUND;
1323}
1324
Stephen M. Cameron98465902014-02-21 16:25:00 -06001325static void hpsa_monitor_offline_device(struct ctlr_info *h,
1326 unsigned char scsi3addr[])
1327{
1328 struct offline_device_entry *device;
1329 unsigned long flags;
1330
1331 /* Check to see if device is already on the list */
1332 spin_lock_irqsave(&h->offline_device_lock, flags);
1333 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1334 if (memcmp(device->scsi3addr, scsi3addr,
1335 sizeof(device->scsi3addr)) == 0) {
1336 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1337 return;
1338 }
1339 }
1340 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1341
1342 /* Device is not on the list, add it. */
1343 device = kmalloc(sizeof(*device), GFP_KERNEL);
1344 if (!device) {
1345 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1346 return;
1347 }
1348 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1349 spin_lock_irqsave(&h->offline_device_lock, flags);
1350 list_add_tail(&device->offline_list, &h->offline_device_list);
1351 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1352}
1353
1354/* Print a message explaining various offline volume states */
1355static void hpsa_show_volume_status(struct ctlr_info *h,
1356 struct hpsa_scsi_dev_t *sd)
1357{
1358 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1359 dev_info(&h->pdev->dev,
1360 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1361 h->scsi_host->host_no,
1362 sd->bus, sd->target, sd->lun);
1363 switch (sd->volume_offline) {
1364 case HPSA_LV_OK:
1365 break;
1366 case HPSA_LV_UNDERGOING_ERASE:
1367 dev_info(&h->pdev->dev,
1368 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1369 h->scsi_host->host_no,
1370 sd->bus, sd->target, sd->lun);
1371 break;
1372 case HPSA_LV_UNDERGOING_RPI:
1373 dev_info(&h->pdev->dev,
1374 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
1375 h->scsi_host->host_no,
1376 sd->bus, sd->target, sd->lun);
1377 break;
1378 case HPSA_LV_PENDING_RPI:
1379 dev_info(&h->pdev->dev,
1380 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1381 h->scsi_host->host_no,
1382 sd->bus, sd->target, sd->lun);
1383 break;
1384 case HPSA_LV_ENCRYPTED_NO_KEY:
1385 dev_info(&h->pdev->dev,
1386 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1387 h->scsi_host->host_no,
1388 sd->bus, sd->target, sd->lun);
1389 break;
1390 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1391 dev_info(&h->pdev->dev,
1392 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1393 h->scsi_host->host_no,
1394 sd->bus, sd->target, sd->lun);
1395 break;
1396 case HPSA_LV_UNDERGOING_ENCRYPTION:
1397 dev_info(&h->pdev->dev,
1398 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1399 h->scsi_host->host_no,
1400 sd->bus, sd->target, sd->lun);
1401 break;
1402 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1403 dev_info(&h->pdev->dev,
1404 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1405 h->scsi_host->host_no,
1406 sd->bus, sd->target, sd->lun);
1407 break;
1408 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1409 dev_info(&h->pdev->dev,
1410 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1411 h->scsi_host->host_no,
1412 sd->bus, sd->target, sd->lun);
1413 break;
1414 case HPSA_LV_PENDING_ENCRYPTION:
1415 dev_info(&h->pdev->dev,
1416 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1417 h->scsi_host->host_no,
1418 sd->bus, sd->target, sd->lun);
1419 break;
1420 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1421 dev_info(&h->pdev->dev,
1422 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1423 h->scsi_host->host_no,
1424 sd->bus, sd->target, sd->lun);
1425 break;
1426 }
1427}
1428
Don Brace03383732015-01-23 16:43:30 -06001429/*
1430 * Figure the list of physical drive pointers for a logical drive with
1431 * raid offload configured.
1432 */
1433static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1434 struct hpsa_scsi_dev_t *dev[], int ndevices,
1435 struct hpsa_scsi_dev_t *logical_drive)
1436{
1437 struct raid_map_data *map = &logical_drive->raid_map;
1438 struct raid_map_disk_data *dd = &map->data[0];
1439 int i, j;
1440 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1441 le16_to_cpu(map->metadata_disks_per_row);
1442 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1443 le16_to_cpu(map->layout_map_count) *
1444 total_disks_per_row;
1445 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1446 total_disks_per_row;
1447 int qdepth;
1448
1449 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1450 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1451
1452 qdepth = 0;
1453 for (i = 0; i < nraid_map_entries; i++) {
1454 logical_drive->phys_disk[i] = NULL;
1455 if (!logical_drive->offload_config)
1456 continue;
1457 for (j = 0; j < ndevices; j++) {
1458 if (dev[j]->devtype != TYPE_DISK)
1459 continue;
1460 if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
1461 continue;
1462 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1463 continue;
1464
1465 logical_drive->phys_disk[i] = dev[j];
1466 if (i < nphys_disk)
1467 qdepth = min(h->nr_cmds, qdepth +
1468 logical_drive->phys_disk[i]->queue_depth);
1469 break;
1470 }
1471
1472 /*
1473 * This can happen if a physical drive is removed and
1474 * the logical drive is degraded. In that case, the RAID
1475 * map data will refer to a physical disk which isn't actually
1476 * present. And in that case offload_enabled should already
1477 * be 0, but we'll turn it off here just in case
1478 */
1479 if (!logical_drive->phys_disk[i]) {
1480 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001481 logical_drive->offload_to_be_enabled = 0;
1482 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001483 }
1484 }
1485 if (nraid_map_entries)
1486 /*
1487 * This is correct for reads, too high for full stripe writes,
1488 * way too high for partial stripe writes
1489 */
1490 logical_drive->queue_depth = qdepth;
1491 else
1492 logical_drive->queue_depth = h->nr_cmds;
1493}
1494
1495static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1496 struct hpsa_scsi_dev_t *dev[], int ndevices)
1497{
1498 int i;
1499
1500 for (i = 0; i < ndevices; i++) {
1501 if (dev[i]->devtype != TYPE_DISK)
1502 continue;
1503 if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
1504 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001505
1506 /*
1507 * If offload is currently enabled, the RAID map and
1508 * phys_disk[] assignment *better* not be changing
1509 * and since it isn't changing, we do not need to
1510 * update it.
1511 */
1512 if (dev[i]->offload_enabled)
1513 continue;
1514
Don Brace03383732015-01-23 16:43:30 -06001515 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1516 }
1517}
1518
Stephen M. Cameron4967bd32010-02-04 08:41:49 -06001519static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001520 struct hpsa_scsi_dev_t *sd[], int nsds)
1521{
1522 /* sd contains scsi3 addresses and devtypes, and inquiry
1523 * data. This function takes what's in sd to be the current
1524 * reality and updates h->dev[] to reflect that reality.
1525 */
1526 int i, entry, device_change, changes = 0;
1527 struct hpsa_scsi_dev_t *csd;
1528 unsigned long flags;
1529 struct hpsa_scsi_dev_t **added, **removed;
1530 int nadded, nremoved;
1531 struct Scsi_Host *sh = NULL;
1532
Scott Teelcfe5bad2011-10-26 16:21:07 -05001533 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1534 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001535
1536 if (!added || !removed) {
1537 dev_warn(&h->pdev->dev, "out of memory in "
1538 "adjust_hpsa_scsi_table\n");
1539 goto free_and_out;
1540 }
1541
1542 spin_lock_irqsave(&h->devlock, flags);
1543
1544 /* find any devices in h->dev[] that are not in
1545 * sd[] and remove them from h->dev[], and for any
1546 * devices which have changed, remove the old device
1547 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001548 * If minor device attributes change, just update
1549 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001550 */
1551 i = 0;
1552 nremoved = 0;
1553 nadded = 0;
1554 while (i < h->ndevices) {
1555 csd = h->dev[i];
1556 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1557 if (device_change == DEVICE_NOT_FOUND) {
1558 changes++;
1559 hpsa_scsi_remove_entry(h, hostno, i,
1560 removed, &nremoved);
1561 continue; /* remove ^^^, hence i not incremented */
1562 } else if (device_change == DEVICE_CHANGED) {
1563 changes++;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001564 hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
1565 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001566 /* Set it to NULL to prevent it from being freed
1567 * at the bottom of hpsa_update_scsi_devices()
1568 */
1569 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001570 } else if (device_change == DEVICE_UPDATED) {
1571 hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001572 }
1573 i++;
1574 }
1575
1576 /* Now, make sure every device listed in sd[] is also
1577 * listed in h->dev[], adding them if they aren't found
1578 */
1579
1580 for (i = 0; i < nsds; i++) {
1581 if (!sd[i]) /* if already added above. */
1582 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001583
1584 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1585 * as the SCSI mid-layer does not handle such devices well.
1586 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1587 * at 160Hz, and prevents the system from coming up.
1588 */
1589 if (sd[i]->volume_offline) {
1590 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001591 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001592 continue;
1593 }
1594
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001595 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1596 h->ndevices, &entry);
1597 if (device_change == DEVICE_NOT_FOUND) {
1598 changes++;
1599 if (hpsa_scsi_add_entry(h, hostno, sd[i],
1600 added, &nadded) != 0)
1601 break;
1602 sd[i] = NULL; /* prevent from being freed later. */
1603 } else if (device_change == DEVICE_CHANGED) {
1604 /* should never happen... */
1605 changes++;
1606 dev_warn(&h->pdev->dev,
1607 "device unexpectedly changed.\n");
1608 /* but if it does happen, we just ignore that device */
1609 }
1610 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001611 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1612
1613 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1614 * any logical drives that need it enabled.
1615 */
1616 for (i = 0; i < h->ndevices; i++)
1617 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
1618
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001619 spin_unlock_irqrestore(&h->devlock, flags);
1620
Stephen M. Cameron98465902014-02-21 16:25:00 -06001621 /* Monitor devices which are in one of several NOT READY states to be
1622 * brought online later. This must be done without holding h->devlock,
1623 * so don't touch h->dev[]
1624 */
1625 for (i = 0; i < nsds; i++) {
1626 if (!sd[i]) /* if already added above. */
1627 continue;
1628 if (sd[i]->volume_offline)
1629 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1630 }
1631
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001632 /* Don't notify scsi mid layer of any changes the first time through
1633 * (or if there are no changes) scsi_scan_host will do it later the
1634 * first time through.
1635 */
1636 if (hostno == -1 || !changes)
1637 goto free_and_out;
1638
1639 sh = h->scsi_host;
1640 /* Notify scsi mid layer of any removed devices */
1641 for (i = 0; i < nremoved; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001642 if (removed[i]->expose_state & HPSA_SCSI_ADD) {
1643 struct scsi_device *sdev =
1644 scsi_device_lookup(sh, removed[i]->bus,
1645 removed[i]->target, removed[i]->lun);
1646 if (sdev != NULL) {
1647 scsi_remove_device(sdev);
1648 scsi_device_put(sdev);
1649 } else {
1650 /*
1651 * We don't expect to get here.
1652 * future cmds to this device will get selection
1653 * timeout as if the device was gone.
1654 */
Webb Scales0d96ef52015-04-23 09:31:55 -05001655 hpsa_show_dev_msg(KERN_WARNING, h, removed[i],
1656 "didn't find device for removal.");
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001657 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001658 }
1659 kfree(removed[i]);
1660 removed[i] = NULL;
1661 }
1662
1663 /* Notify scsi mid layer of any added devices */
1664 for (i = 0; i < nadded; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001665 if (!(added[i]->expose_state & HPSA_SCSI_ADD))
1666 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001667 if (scsi_add_device(sh, added[i]->bus,
1668 added[i]->target, added[i]->lun) == 0)
1669 continue;
Webb Scales0d96ef52015-04-23 09:31:55 -05001670 hpsa_show_dev_msg(KERN_WARNING, h, added[i],
1671 "addition failed, device not added.");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001672 /* now we have to remove it from h->dev,
1673 * since it didn't get added to scsi mid layer
1674 */
1675 fixup_botched_add(h, added[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05001676 added[i] = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001677 }
1678
1679free_and_out:
1680 kfree(added);
1681 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001682}
1683
1684/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001685 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001686 * Assume's h->devlock is held.
1687 */
1688static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1689 int bus, int target, int lun)
1690{
1691 int i;
1692 struct hpsa_scsi_dev_t *sd;
1693
1694 for (i = 0; i < h->ndevices; i++) {
1695 sd = h->dev[i];
1696 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1697 return sd;
1698 }
1699 return NULL;
1700}
1701
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001702static int hpsa_slave_alloc(struct scsi_device *sdev)
1703{
1704 struct hpsa_scsi_dev_t *sd;
1705 unsigned long flags;
1706 struct ctlr_info *h;
1707
1708 h = sdev_to_hba(sdev);
1709 spin_lock_irqsave(&h->devlock, flags);
1710 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1711 sdev_id(sdev), sdev->lun);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001712 if (likely(sd)) {
Don Brace03383732015-01-23 16:43:30 -06001713 atomic_set(&sd->ioaccel_cmds_out, 0);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001714 sdev->hostdata = (sd->expose_state & HPSA_SCSI_ADD) ? sd : NULL;
1715 } else
1716 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001717 spin_unlock_irqrestore(&h->devlock, flags);
1718 return 0;
1719}
1720
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001721/* configure scsi device based on internal per-device structure */
1722static int hpsa_slave_configure(struct scsi_device *sdev)
1723{
1724 struct hpsa_scsi_dev_t *sd;
1725 int queue_depth;
1726
1727 sd = sdev->hostdata;
1728 sdev->no_uld_attach = !sd || !(sd->expose_state & HPSA_ULD_ATTACH);
1729
1730 if (sd)
1731 queue_depth = sd->queue_depth != 0 ?
1732 sd->queue_depth : sdev->host->can_queue;
1733 else
1734 queue_depth = sdev->host->can_queue;
1735
1736 scsi_change_queue_depth(sdev, queue_depth);
1737
1738 return 0;
1739}
1740
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001741static void hpsa_slave_destroy(struct scsi_device *sdev)
1742{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001743 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001744}
1745
Webb Scalesd9a729f2015-04-23 09:33:27 -05001746static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1747{
1748 int i;
1749
1750 if (!h->ioaccel2_cmd_sg_list)
1751 return;
1752 for (i = 0; i < h->nr_cmds; i++) {
1753 kfree(h->ioaccel2_cmd_sg_list[i]);
1754 h->ioaccel2_cmd_sg_list[i] = NULL;
1755 }
1756 kfree(h->ioaccel2_cmd_sg_list);
1757 h->ioaccel2_cmd_sg_list = NULL;
1758}
1759
1760static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1761{
1762 int i;
1763
1764 if (h->chainsize <= 0)
1765 return 0;
1766
1767 h->ioaccel2_cmd_sg_list =
1768 kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
1769 GFP_KERNEL);
1770 if (!h->ioaccel2_cmd_sg_list)
1771 return -ENOMEM;
1772 for (i = 0; i < h->nr_cmds; i++) {
1773 h->ioaccel2_cmd_sg_list[i] =
1774 kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
1775 h->maxsgentries, GFP_KERNEL);
1776 if (!h->ioaccel2_cmd_sg_list[i])
1777 goto clean;
1778 }
1779 return 0;
1780
1781clean:
1782 hpsa_free_ioaccel2_sg_chain_blocks(h);
1783 return -ENOMEM;
1784}
1785
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001786static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1787{
1788 int i;
1789
1790 if (!h->cmd_sg_list)
1791 return;
1792 for (i = 0; i < h->nr_cmds; i++) {
1793 kfree(h->cmd_sg_list[i]);
1794 h->cmd_sg_list[i] = NULL;
1795 }
1796 kfree(h->cmd_sg_list);
1797 h->cmd_sg_list = NULL;
1798}
1799
Robert Elliott105a3db2015-04-23 09:33:48 -05001800static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001801{
1802 int i;
1803
1804 if (h->chainsize <= 0)
1805 return 0;
1806
1807 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1808 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001809 if (!h->cmd_sg_list) {
1810 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001811 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001812 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001813 for (i = 0; i < h->nr_cmds; i++) {
1814 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1815 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001816 if (!h->cmd_sg_list[i]) {
1817 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001818 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001819 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001820 }
1821 return 0;
1822
1823clean:
1824 hpsa_free_sg_chain_blocks(h);
1825 return -ENOMEM;
1826}
1827
Webb Scalesd9a729f2015-04-23 09:33:27 -05001828static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
1829 struct io_accel2_cmd *cp, struct CommandList *c)
1830{
1831 struct ioaccel2_sg_element *chain_block;
1832 u64 temp64;
1833 u32 chain_size;
1834
1835 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
1836 chain_size = le32_to_cpu(cp->data_len);
1837 temp64 = pci_map_single(h->pdev, chain_block, chain_size,
1838 PCI_DMA_TODEVICE);
1839 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1840 /* prevent subsequent unmapping */
1841 cp->sg->address = 0;
1842 return -1;
1843 }
1844 cp->sg->address = cpu_to_le64(temp64);
1845 return 0;
1846}
1847
1848static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
1849 struct io_accel2_cmd *cp)
1850{
1851 struct ioaccel2_sg_element *chain_sg;
1852 u64 temp64;
1853 u32 chain_size;
1854
1855 chain_sg = cp->sg;
1856 temp64 = le64_to_cpu(chain_sg->address);
1857 chain_size = le32_to_cpu(cp->data_len);
1858 pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
1859}
1860
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001861static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001862 struct CommandList *c)
1863{
1864 struct SGDescriptor *chain_sg, *chain_block;
1865 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001866 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001867
1868 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
1869 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001870 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
1871 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06001872 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001873 chain_sg->Len = cpu_to_le32(chain_len);
1874 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001875 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001876 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1877 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001878 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001879 return -1;
1880 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001881 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001882 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001883}
1884
1885static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
1886 struct CommandList *c)
1887{
1888 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001889
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001890 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001891 return;
1892
1893 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001894 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
1895 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001896}
1897
Scott Teela09c1442014-02-18 13:57:21 -06001898
1899/* Decode the various types of errors on ioaccel2 path.
1900 * Return 1 for any error that should generate a RAID path retry.
1901 * Return 0 for errors that don't require a RAID path retry.
1902 */
1903static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06001904 struct CommandList *c,
1905 struct scsi_cmnd *cmd,
1906 struct io_accel2_cmd *c2)
1907{
1908 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06001909 int retry = 0;
Joe Handzikc40820d2015-04-23 09:33:32 -05001910 u32 ioaccel2_resid = 0;
Scott Teelc3497752014-02-18 13:56:34 -06001911
1912 switch (c2->error_data.serv_response) {
1913 case IOACCEL2_SERV_RESPONSE_COMPLETE:
1914 switch (c2->error_data.status) {
1915 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
1916 break;
1917 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001918 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06001919 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001920 IOACCEL2_SENSE_DATA_PRESENT) {
1921 memset(cmd->sense_buffer, 0,
1922 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06001923 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001924 }
Scott Teelc3497752014-02-18 13:56:34 -06001925 /* copy the sense data */
1926 data_len = c2->error_data.sense_data_len;
1927 if (data_len > SCSI_SENSE_BUFFERSIZE)
1928 data_len = SCSI_SENSE_BUFFERSIZE;
1929 if (data_len > sizeof(c2->error_data.sense_data_buff))
1930 data_len =
1931 sizeof(c2->error_data.sense_data_buff);
1932 memcpy(cmd->sense_buffer,
1933 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06001934 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001935 break;
1936 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
Scott Teela09c1442014-02-18 13:57:21 -06001937 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001938 break;
1939 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
Scott Teela09c1442014-02-18 13:57:21 -06001940 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001941 break;
1942 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05001943 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001944 break;
1945 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
Scott Teela09c1442014-02-18 13:57:21 -06001946 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001947 break;
1948 default:
Scott Teela09c1442014-02-18 13:57:21 -06001949 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001950 break;
1951 }
1952 break;
1953 case IOACCEL2_SERV_RESPONSE_FAILURE:
Joe Handzikc40820d2015-04-23 09:33:32 -05001954 switch (c2->error_data.status) {
1955 case IOACCEL2_STATUS_SR_IO_ERROR:
1956 case IOACCEL2_STATUS_SR_IO_ABORTED:
1957 case IOACCEL2_STATUS_SR_OVERRUN:
1958 retry = 1;
1959 break;
1960 case IOACCEL2_STATUS_SR_UNDERRUN:
1961 cmd->result = (DID_OK << 16); /* host byte */
1962 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
1963 ioaccel2_resid = get_unaligned_le32(
1964 &c2->error_data.resid_cnt[0]);
1965 scsi_set_resid(cmd, ioaccel2_resid);
1966 break;
1967 case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
1968 case IOACCEL2_STATUS_SR_INVALID_DEVICE:
1969 case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
1970 /* We will get an event from ctlr to trigger rescan */
1971 retry = 1;
1972 break;
1973 default:
1974 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05001975 }
Scott Teelc3497752014-02-18 13:56:34 -06001976 break;
1977 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
1978 break;
1979 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
1980 break;
1981 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
Scott Teela09c1442014-02-18 13:57:21 -06001982 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001983 break;
1984 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
Scott Teelc3497752014-02-18 13:56:34 -06001985 break;
1986 default:
Scott Teela09c1442014-02-18 13:57:21 -06001987 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001988 break;
1989 }
Scott Teela09c1442014-02-18 13:57:21 -06001990
1991 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06001992}
1993
Webb Scalesa58e7e52015-04-23 09:34:16 -05001994static void hpsa_cmd_resolve_events(struct ctlr_info *h,
1995 struct CommandList *c)
1996{
1997 /*
1998 * Prevent the following race in the abort handler:
1999 *
2000 * 1. LLD is requested to abort a SCSI command
2001 * 2. The SCSI command completes
2002 * 3. The struct CommandList associated with step 2 is made available
2003 * 4. New I/O request to LLD to another LUN re-uses struct CommandList
2004 * 5. Abort handler follows scsi_cmnd->host_scribble and
2005 * finds struct CommandList and tries to aborts it
2006 * Now we have aborted the wrong command.
2007 *
2008 * Clear c->scsi_cmd here so that the abort handler will know this
2009 * command has completed. Then, check to see if the abort handler is
2010 * waiting for this command, and, if so, wake it.
2011 */
2012 c->scsi_cmd = SCSI_CMD_IDLE;
2013 mb(); /* Ensure c->scsi_cmd is set to SCSI_CMD_IDLE */
2014 if (c->abort_pending) {
2015 c->abort_pending = false;
2016 wake_up_all(&h->abort_sync_wait_queue);
2017 }
2018}
2019
Webb Scales73153fe2015-04-23 09:35:04 -05002020static void hpsa_cmd_resolve_and_free(struct ctlr_info *h,
2021 struct CommandList *c)
2022{
2023 hpsa_cmd_resolve_events(h, c);
2024 cmd_tagged_free(h, c);
2025}
2026
Webb Scales8a0ff922015-04-23 09:34:11 -05002027static void hpsa_cmd_free_and_done(struct ctlr_info *h,
2028 struct CommandList *c, struct scsi_cmnd *cmd)
2029{
Webb Scales73153fe2015-04-23 09:35:04 -05002030 hpsa_cmd_resolve_and_free(h, c);
Webb Scales8a0ff922015-04-23 09:34:11 -05002031 cmd->scsi_done(cmd);
2032}
2033
2034static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c)
2035{
2036 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
2037 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
2038}
2039
Webb Scalesa58e7e52015-04-23 09:34:16 -05002040static void hpsa_set_scsi_cmd_aborted(struct scsi_cmnd *cmd)
2041{
2042 cmd->result = DID_ABORT << 16;
2043}
2044
2045static void hpsa_cmd_abort_and_free(struct ctlr_info *h, struct CommandList *c,
2046 struct scsi_cmnd *cmd)
2047{
2048 hpsa_set_scsi_cmd_aborted(cmd);
2049 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2050 c->Request.CDB, c->err_info->ScsiStatus);
Webb Scales73153fe2015-04-23 09:35:04 -05002051 hpsa_cmd_resolve_and_free(h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002052}
2053
Scott Teelc3497752014-02-18 13:56:34 -06002054static void process_ioaccel2_completion(struct ctlr_info *h,
2055 struct CommandList *c, struct scsi_cmnd *cmd,
2056 struct hpsa_scsi_dev_t *dev)
2057{
2058 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2059
2060 /* check for good status */
2061 if (likely(c2->error_data.serv_response == 0 &&
Webb Scales8a0ff922015-04-23 09:34:11 -05002062 c2->error_data.status == 0))
2063 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002064
Webb Scalesa58e7e52015-04-23 09:34:16 -05002065 /* don't requeue a command which is being aborted */
2066 if (unlikely(c->abort_pending))
2067 return hpsa_cmd_abort_and_free(h, c, cmd);
2068
Webb Scales8a0ff922015-04-23 09:34:11 -05002069 /*
2070 * Any RAID offload error results in retry which will use
Scott Teelc3497752014-02-18 13:56:34 -06002071 * the normal I/O path so the controller can handle whatever's
2072 * wrong.
2073 */
2074 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
2075 c2->error_data.serv_response ==
2076 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06002077 if (c2->error_data.status ==
2078 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
2079 dev->offload_enabled = 0;
Webb Scales8a0ff922015-04-23 09:34:11 -05002080
2081 return hpsa_retry_cmd(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06002082 }
Don Brace080ef1c2015-01-23 16:43:25 -06002083
2084 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
Webb Scales8a0ff922015-04-23 09:34:11 -05002085 return hpsa_retry_cmd(h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06002086
Webb Scales8a0ff922015-04-23 09:34:11 -05002087 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002088}
2089
Stephen Cameron9437ac42015-04-23 09:32:16 -05002090/* Returns 0 on success, < 0 otherwise. */
2091static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
2092 struct CommandList *cp)
2093{
2094 u8 tmf_status = cp->err_info->ScsiStatus;
2095
2096 switch (tmf_status) {
2097 case CISS_TMF_COMPLETE:
2098 /*
2099 * CISS_TMF_COMPLETE never happens, instead,
2100 * ei->CommandStatus == 0 for this case.
2101 */
2102 case CISS_TMF_SUCCESS:
2103 return 0;
2104 case CISS_TMF_INVALID_FRAME:
2105 case CISS_TMF_NOT_SUPPORTED:
2106 case CISS_TMF_FAILED:
2107 case CISS_TMF_WRONG_LUN:
2108 case CISS_TMF_OVERLAPPED_TAG:
2109 break;
2110 default:
2111 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2112 tmf_status);
2113 break;
2114 }
2115 return -tmf_status;
2116}
2117
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002118static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002119{
2120 struct scsi_cmnd *cmd;
2121 struct ctlr_info *h;
2122 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002123 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002124 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002125
Stephen Cameron9437ac42015-04-23 09:32:16 -05002126 u8 sense_key;
2127 u8 asc; /* additional sense code */
2128 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002129 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002130
2131 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002132 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002133 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002134 dev = cmd->device->hostdata;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002135 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002136
2137 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002138 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002139 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002140 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002141
Webb Scalesd9a729f2015-04-23 09:33:27 -05002142 if ((cp->cmd_type == CMD_IOACCEL2) &&
2143 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2144 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2145
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002146 cmd->result = (DID_OK << 16); /* host byte */
2147 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002148
Don Brace03383732015-01-23 16:43:30 -06002149 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
2150 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2151
Webb Scales25163bd2015-04-23 09:32:00 -05002152 /*
2153 * We check for lockup status here as it may be set for
2154 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2155 * fail_all_oustanding_cmds()
2156 */
2157 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2158 /* DID_NO_CONNECT will prevent a retry */
2159 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05002160 return hpsa_cmd_free_and_done(h, cp, cmd);
Webb Scales25163bd2015-04-23 09:32:00 -05002161 }
2162
Scott Teelc3497752014-02-18 13:56:34 -06002163 if (cp->cmd_type == CMD_IOACCEL2)
2164 return process_ioaccel2_completion(h, cp, cmd, dev);
2165
Robert Elliott6aa4c362014-07-03 10:18:19 -05002166 scsi_set_resid(cmd, ei->ResidualCnt);
Webb Scales8a0ff922015-04-23 09:34:11 -05002167 if (ei->CommandStatus == 0)
2168 return hpsa_cmd_free_and_done(h, cp, cmd);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002169
Matt Gatese1f7de02014-02-18 13:55:17 -06002170 /* For I/O accelerator commands, copy over some fields to the normal
2171 * CISS header used below for error handling.
2172 */
2173 if (cp->cmd_type == CMD_IOACCEL1) {
2174 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002175 cp->Header.SGList = scsi_sg_count(cmd);
2176 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2177 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2178 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002179 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002180 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2181 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002182
2183 /* Any RAID offload error results in retry which will use
2184 * the normal I/O path so the controller can handle whatever's
2185 * wrong.
2186 */
2187 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
2188 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2189 dev->offload_enabled = 0;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002190 if (!cp->abort_pending)
2191 return hpsa_retry_cmd(h, cp);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002192 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002193 }
2194
Webb Scalesa58e7e52015-04-23 09:34:16 -05002195 if (cp->abort_pending)
2196 ei->CommandStatus = CMD_ABORTED;
2197
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002198 /* an error has occurred */
2199 switch (ei->CommandStatus) {
2200
2201 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002202 cmd->result |= ei->ScsiStatus;
2203 /* copy the sense data */
2204 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2205 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2206 else
2207 sense_data_size = sizeof(ei->SenseInfo);
2208 if (ei->SenseLen < sense_data_size)
2209 sense_data_size = ei->SenseLen;
2210 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2211 if (ei->ScsiStatus)
2212 decode_sense_data(ei->SenseInfo, sense_data_size,
2213 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002214 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002215 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002216 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002217 break;
2218 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002219 break;
2220 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002221 /* Problem was not a check condition
2222 * Pass it up to the upper layers...
2223 */
2224 if (ei->ScsiStatus) {
2225 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2226 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2227 "Returning result: 0x%x\n",
2228 cp, ei->ScsiStatus,
2229 sense_key, asc, ascq,
2230 cmd->result);
2231 } else { /* scsi status is zero??? How??? */
2232 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2233 "Returning no connection.\n", cp),
2234
2235 /* Ordinarily, this case should never happen,
2236 * but there is a bug in some released firmware
2237 * revisions that allows it to happen if, for
2238 * example, a 4100 backplane loses power and
2239 * the tape drive is in it. We assume that
2240 * it's a fatal error of some kind because we
2241 * can't show that it wasn't. We will make it
2242 * look like selection timeout since that is
2243 * the most common reason for this to occur,
2244 * and it's severe enough.
2245 */
2246
2247 cmd->result = DID_NO_CONNECT << 16;
2248 }
2249 break;
2250
2251 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2252 break;
2253 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002254 dev_warn(&h->pdev->dev,
2255 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002256 break;
2257 case CMD_INVALID: {
2258 /* print_bytes(cp, sizeof(*cp), 1, 0);
2259 print_cmd(cp); */
2260 /* We get CMD_INVALID if you address a non-existent device
2261 * instead of a selection timeout (no response). You will
2262 * see this if you yank out a drive, then try to access it.
2263 * This is kind of a shame because it means that any other
2264 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2265 * missing target. */
2266 cmd->result = DID_NO_CONNECT << 16;
2267 }
2268 break;
2269 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002270 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002271 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2272 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002273 break;
2274 case CMD_HARDWARE_ERR:
2275 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002276 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2277 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002278 break;
2279 case CMD_CONNECTION_LOST:
2280 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002281 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2282 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002283 break;
2284 case CMD_ABORTED:
Webb Scalesa58e7e52015-04-23 09:34:16 -05002285 /* Return now to avoid calling scsi_done(). */
2286 return hpsa_cmd_abort_and_free(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002287 case CMD_ABORT_FAILED:
2288 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002289 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2290 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002291 break;
2292 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002293 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002294 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2295 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002296 break;
2297 case CMD_TIMEOUT:
2298 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002299 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2300 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002301 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002302 case CMD_UNABORTABLE:
2303 cmd->result = DID_ERROR << 16;
2304 dev_warn(&h->pdev->dev, "Command unabortable\n");
2305 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002306 case CMD_TMF_STATUS:
2307 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2308 cmd->result = DID_ERROR << 16;
2309 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002310 case CMD_IOACCEL_DISABLED:
2311 /* This only handles the direct pass-through case since RAID
2312 * offload is handled above. Just attempt a retry.
2313 */
2314 cmd->result = DID_SOFT_ERROR << 16;
2315 dev_warn(&h->pdev->dev,
2316 "cp %p had HP SSD Smart Path error\n", cp);
2317 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002318 default:
2319 cmd->result = DID_ERROR << 16;
2320 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2321 cp, ei->CommandStatus);
2322 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002323
2324 return hpsa_cmd_free_and_done(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002325}
2326
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002327static void hpsa_pci_unmap(struct pci_dev *pdev,
2328 struct CommandList *c, int sg_used, int data_direction)
2329{
2330 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002331
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002332 for (i = 0; i < sg_used; i++)
2333 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2334 le32_to_cpu(c->SG[i].Len),
2335 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002336}
2337
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002338static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002339 struct CommandList *cp,
2340 unsigned char *buf,
2341 size_t buflen,
2342 int data_direction)
2343{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002344 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002345
2346 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2347 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002348 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002349 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002350 }
2351
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002352 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002353 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002354 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002355 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002356 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002357 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002358 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002359 cp->SG[0].Addr = cpu_to_le64(addr64);
2360 cp->SG[0].Len = cpu_to_le32(buflen);
2361 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2362 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2363 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002364 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002365}
2366
Webb Scales25163bd2015-04-23 09:32:00 -05002367#define NO_TIMEOUT ((unsigned long) -1)
2368#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2369static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2370 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002371{
2372 DECLARE_COMPLETION_ONSTACK(wait);
2373
2374 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002375 __enqueue_cmd_and_start_io(h, c, reply_queue);
2376 if (timeout_msecs == NO_TIMEOUT) {
2377 /* TODO: get rid of this no-timeout thing */
2378 wait_for_completion_io(&wait);
2379 return IO_OK;
2380 }
2381 if (!wait_for_completion_io_timeout(&wait,
2382 msecs_to_jiffies(timeout_msecs))) {
2383 dev_warn(&h->pdev->dev, "Command timed out.\n");
2384 return -ETIMEDOUT;
2385 }
2386 return IO_OK;
2387}
2388
2389static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2390 int reply_queue, unsigned long timeout_msecs)
2391{
2392 if (unlikely(lockup_detected(h))) {
2393 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2394 return IO_OK;
2395 }
2396 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002397}
2398
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002399static u32 lockup_detected(struct ctlr_info *h)
2400{
2401 int cpu;
2402 u32 rc, *lockup_detected;
2403
2404 cpu = get_cpu();
2405 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2406 rc = *lockup_detected;
2407 put_cpu();
2408 return rc;
2409}
2410
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002411#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002412static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2413 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002414{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002415 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002416 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002417
2418 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002419 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002420 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2421 timeout_msecs);
2422 if (rc)
2423 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002424 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002425 if (retry_count > 3) {
2426 msleep(backoff_time);
2427 if (backoff_time < 1000)
2428 backoff_time *= 2;
2429 }
Matt Bondurant852af202012-05-01 11:42:35 -05002430 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002431 check_for_busy(h, c)) &&
2432 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002433 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002434 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2435 rc = -EIO;
2436 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002437}
2438
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002439static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2440 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002441{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002442 const u8 *cdb = c->Request.CDB;
2443 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002444
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002445 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2446 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2447 txt, lun[0], lun[1], lun[2], lun[3],
2448 lun[4], lun[5], lun[6], lun[7],
2449 cdb[0], cdb[1], cdb[2], cdb[3],
2450 cdb[4], cdb[5], cdb[6], cdb[7],
2451 cdb[8], cdb[9], cdb[10], cdb[11],
2452 cdb[12], cdb[13], cdb[14], cdb[15]);
2453}
2454
2455static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2456 struct CommandList *cp)
2457{
2458 const struct ErrorInfo *ei = cp->err_info;
2459 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002460 u8 sense_key, asc, ascq;
2461 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002462
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002463 switch (ei->CommandStatus) {
2464 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002465 if (ei->SenseLen > sizeof(ei->SenseInfo))
2466 sense_len = sizeof(ei->SenseInfo);
2467 else
2468 sense_len = ei->SenseLen;
2469 decode_sense_data(ei->SenseInfo, sense_len,
2470 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002471 hpsa_print_cmd(h, "SCSI status", cp);
2472 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002473 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2474 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002475 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002476 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002477 if (ei->ScsiStatus == 0)
2478 dev_warn(d, "SCSI status is abnormally zero. "
2479 "(probably indicates selection timeout "
2480 "reported incorrectly due to a known "
2481 "firmware bug, circa July, 2001.)\n");
2482 break;
2483 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002484 break;
2485 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002486 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002487 break;
2488 case CMD_INVALID: {
2489 /* controller unfortunately reports SCSI passthru's
2490 * to non-existent targets as invalid commands.
2491 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002492 hpsa_print_cmd(h, "invalid command", cp);
2493 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002494 }
2495 break;
2496 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002497 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002498 break;
2499 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002500 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002501 break;
2502 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002503 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002504 break;
2505 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002506 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002507 break;
2508 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002509 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002510 break;
2511 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002512 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002513 break;
2514 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002515 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002516 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002517 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002518 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002519 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002520 case CMD_CTLR_LOCKUP:
2521 hpsa_print_cmd(h, "controller lockup detected", cp);
2522 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002523 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002524 hpsa_print_cmd(h, "unknown status", cp);
2525 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002526 ei->CommandStatus);
2527 }
2528}
2529
2530static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002531 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002532 unsigned char bufsize)
2533{
2534 int rc = IO_OK;
2535 struct CommandList *c;
2536 struct ErrorInfo *ei;
2537
Stephen Cameron45fcb862015-01-23 16:43:04 -06002538 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002539
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002540 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2541 page, scsi3addr, TYPE_CMD)) {
2542 rc = -1;
2543 goto out;
2544 }
Webb Scales25163bd2015-04-23 09:32:00 -05002545 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2546 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2547 if (rc)
2548 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002549 ei = c->err_info;
2550 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002551 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002552 rc = -1;
2553 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002554out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002555 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002556 return rc;
2557}
2558
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002559static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
2560 unsigned char *scsi3addr, unsigned char page,
2561 struct bmic_controller_parameters *buf, size_t bufsize)
2562{
2563 int rc = IO_OK;
2564 struct CommandList *c;
2565 struct ErrorInfo *ei;
2566
Stephen Cameron45fcb862015-01-23 16:43:04 -06002567 c = cmd_alloc(h);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002568 if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize,
2569 page, scsi3addr, TYPE_CMD)) {
2570 rc = -1;
2571 goto out;
2572 }
Webb Scales25163bd2015-04-23 09:32:00 -05002573 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2574 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2575 if (rc)
2576 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002577 ei = c->err_info;
2578 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2579 hpsa_scsi_interpret_error(h, c);
2580 rc = -1;
2581 }
2582out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002583 cmd_free(h, c);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002584 return rc;
Robert Elliottbf43caf2015-04-23 09:33:38 -05002585}
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002586
Scott Teelbf711ac2014-02-18 13:56:39 -06002587static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002588 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002589{
2590 int rc = IO_OK;
2591 struct CommandList *c;
2592 struct ErrorInfo *ei;
2593
Stephen Cameron45fcb862015-01-23 16:43:04 -06002594 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002595
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002596
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002597 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teelbf711ac2014-02-18 13:56:39 -06002598 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2599 scsi3addr, TYPE_MSG);
2600 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
Webb Scales25163bd2015-04-23 09:32:00 -05002601 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
2602 if (rc) {
2603 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2604 goto out;
2605 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002606 /* no unmap needed here because no data xfer. */
2607
2608 ei = c->err_info;
2609 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002610 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002611 rc = -1;
2612 }
Webb Scales25163bd2015-04-23 09:32:00 -05002613out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002614 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002615 return rc;
2616}
2617
2618static void hpsa_get_raid_level(struct ctlr_info *h,
2619 unsigned char *scsi3addr, unsigned char *raid_level)
2620{
2621 int rc;
2622 unsigned char *buf;
2623
2624 *raid_level = RAID_UNKNOWN;
2625 buf = kzalloc(64, GFP_KERNEL);
2626 if (!buf)
2627 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002628 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002629 if (rc == 0)
2630 *raid_level = buf[8];
2631 if (*raid_level > RAID_UNKNOWN)
2632 *raid_level = RAID_UNKNOWN;
2633 kfree(buf);
2634 return;
2635}
2636
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002637#define HPSA_MAP_DEBUG
2638#ifdef HPSA_MAP_DEBUG
2639static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2640 struct raid_map_data *map_buff)
2641{
2642 struct raid_map_disk_data *dd = &map_buff->data[0];
2643 int map, row, col;
2644 u16 map_cnt, row_cnt, disks_per_row;
2645
2646 if (rc != 0)
2647 return;
2648
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002649 /* Show details only if debugging has been activated. */
2650 if (h->raid_offload_debug < 2)
2651 return;
2652
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002653 dev_info(&h->pdev->dev, "structure_size = %u\n",
2654 le32_to_cpu(map_buff->structure_size));
2655 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2656 le32_to_cpu(map_buff->volume_blk_size));
2657 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2658 le64_to_cpu(map_buff->volume_blk_cnt));
2659 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2660 map_buff->phys_blk_shift);
2661 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2662 map_buff->parity_rotation_shift);
2663 dev_info(&h->pdev->dev, "strip_size = %u\n",
2664 le16_to_cpu(map_buff->strip_size));
2665 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2666 le64_to_cpu(map_buff->disk_starting_blk));
2667 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2668 le64_to_cpu(map_buff->disk_blk_cnt));
2669 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2670 le16_to_cpu(map_buff->data_disks_per_row));
2671 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2672 le16_to_cpu(map_buff->metadata_disks_per_row));
2673 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2674 le16_to_cpu(map_buff->row_cnt));
2675 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2676 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002677 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002678 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002679 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2680 le16_to_cpu(map_buff->flags) &
2681 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002682 dev_info(&h->pdev->dev, "dekindex = %u\n",
2683 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002684 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2685 for (map = 0; map < map_cnt; map++) {
2686 dev_info(&h->pdev->dev, "Map%u:\n", map);
2687 row_cnt = le16_to_cpu(map_buff->row_cnt);
2688 for (row = 0; row < row_cnt; row++) {
2689 dev_info(&h->pdev->dev, " Row%u:\n", row);
2690 disks_per_row =
2691 le16_to_cpu(map_buff->data_disks_per_row);
2692 for (col = 0; col < disks_per_row; col++, dd++)
2693 dev_info(&h->pdev->dev,
2694 " D%02u: h=0x%04x xor=%u,%u\n",
2695 col, dd->ioaccel_handle,
2696 dd->xor_mult[0], dd->xor_mult[1]);
2697 disks_per_row =
2698 le16_to_cpu(map_buff->metadata_disks_per_row);
2699 for (col = 0; col < disks_per_row; col++, dd++)
2700 dev_info(&h->pdev->dev,
2701 " M%02u: h=0x%04x xor=%u,%u\n",
2702 col, dd->ioaccel_handle,
2703 dd->xor_mult[0], dd->xor_mult[1]);
2704 }
2705 }
2706}
2707#else
2708static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2709 __attribute__((unused)) int rc,
2710 __attribute__((unused)) struct raid_map_data *map_buff)
2711{
2712}
2713#endif
2714
2715static int hpsa_get_raid_map(struct ctlr_info *h,
2716 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2717{
2718 int rc = 0;
2719 struct CommandList *c;
2720 struct ErrorInfo *ei;
2721
Stephen Cameron45fcb862015-01-23 16:43:04 -06002722 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05002723
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002724 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2725 sizeof(this_device->raid_map), 0,
2726 scsi3addr, TYPE_CMD)) {
Robert Elliott2dd02d72015-04-23 09:33:43 -05002727 dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
2728 cmd_free(h, c);
2729 return -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002730 }
Webb Scales25163bd2015-04-23 09:32:00 -05002731 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2732 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2733 if (rc)
2734 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002735 ei = c->err_info;
2736 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002737 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05002738 rc = -1;
2739 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002740 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002741 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002742
2743 /* @todo in the future, dynamically allocate RAID map memory */
2744 if (le32_to_cpu(this_device->raid_map.structure_size) >
2745 sizeof(this_device->raid_map)) {
2746 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2747 rc = -1;
2748 }
2749 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
2750 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05002751out:
2752 cmd_free(h, c);
2753 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002754}
2755
Don Brace03383732015-01-23 16:43:30 -06002756static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
2757 unsigned char scsi3addr[], u16 bmic_device_index,
2758 struct bmic_identify_physical_device *buf, size_t bufsize)
2759{
2760 int rc = IO_OK;
2761 struct CommandList *c;
2762 struct ErrorInfo *ei;
2763
2764 c = cmd_alloc(h);
2765 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
2766 0, RAID_CTLR_LUNID, TYPE_CMD);
2767 if (rc)
2768 goto out;
2769
2770 c->Request.CDB[2] = bmic_device_index & 0xff;
2771 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
2772
Webb Scales25163bd2015-04-23 09:32:00 -05002773 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
2774 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06002775 ei = c->err_info;
2776 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2777 hpsa_scsi_interpret_error(h, c);
2778 rc = -1;
2779 }
2780out:
2781 cmd_free(h, c);
2782 return rc;
2783}
2784
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002785static int hpsa_vpd_page_supported(struct ctlr_info *h,
2786 unsigned char scsi3addr[], u8 page)
2787{
2788 int rc;
2789 int i;
2790 int pages;
2791 unsigned char *buf, bufsize;
2792
2793 buf = kzalloc(256, GFP_KERNEL);
2794 if (!buf)
2795 return 0;
2796
2797 /* Get the size of the page list first */
2798 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2799 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2800 buf, HPSA_VPD_HEADER_SZ);
2801 if (rc != 0)
2802 goto exit_unsupported;
2803 pages = buf[3];
2804 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
2805 bufsize = pages + HPSA_VPD_HEADER_SZ;
2806 else
2807 bufsize = 255;
2808
2809 /* Get the whole VPD page list */
2810 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2811 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2812 buf, bufsize);
2813 if (rc != 0)
2814 goto exit_unsupported;
2815
2816 pages = buf[3];
2817 for (i = 1; i <= pages; i++)
2818 if (buf[3 + i] == page)
2819 goto exit_supported;
2820exit_unsupported:
2821 kfree(buf);
2822 return 0;
2823exit_supported:
2824 kfree(buf);
2825 return 1;
2826}
2827
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002828static void hpsa_get_ioaccel_status(struct ctlr_info *h,
2829 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2830{
2831 int rc;
2832 unsigned char *buf;
2833 u8 ioaccel_status;
2834
2835 this_device->offload_config = 0;
2836 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002837 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002838
2839 buf = kzalloc(64, GFP_KERNEL);
2840 if (!buf)
2841 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002842 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
2843 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002844 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002845 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002846 if (rc != 0)
2847 goto out;
2848
2849#define IOACCEL_STATUS_BYTE 4
2850#define OFFLOAD_CONFIGURED_BIT 0x01
2851#define OFFLOAD_ENABLED_BIT 0x02
2852 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
2853 this_device->offload_config =
2854 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
2855 if (this_device->offload_config) {
2856 this_device->offload_enabled =
2857 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
2858 if (hpsa_get_raid_map(h, scsi3addr, this_device))
2859 this_device->offload_enabled = 0;
2860 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05002861 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002862out:
2863 kfree(buf);
2864 return;
2865}
2866
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002867/* Get the device id from inquiry page 0x83 */
2868static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
2869 unsigned char *device_id, int buflen)
2870{
2871 int rc;
2872 unsigned char *buf;
2873
2874 if (buflen > 16)
2875 buflen = 16;
2876 buf = kzalloc(64, GFP_KERNEL);
2877 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05002878 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002879 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002880 if (rc == 0)
2881 memcpy(device_id, &buf[8], buflen);
2882 kfree(buf);
2883 return rc != 0;
2884}
2885
2886static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06002887 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002888 int extended_response)
2889{
2890 int rc = IO_OK;
2891 struct CommandList *c;
2892 unsigned char scsi3addr[8];
2893 struct ErrorInfo *ei;
2894
Stephen Cameron45fcb862015-01-23 16:43:04 -06002895 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05002896
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06002897 /* address the controller */
2898 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002899 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
2900 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
2901 rc = -1;
2902 goto out;
2903 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002904 if (extended_response)
2905 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05002906 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2907 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2908 if (rc)
2909 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002910 ei = c->err_info;
2911 if (ei->CommandStatus != 0 &&
2912 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002913 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002914 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002915 } else {
Don Brace03383732015-01-23 16:43:30 -06002916 struct ReportLUNdata *rld = buf;
2917
2918 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002919 dev_err(&h->pdev->dev,
2920 "report luns requested format %u, got %u\n",
2921 extended_response,
Don Brace03383732015-01-23 16:43:30 -06002922 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002923 rc = -1;
2924 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002925 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002926out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002927 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002928 return rc;
2929}
2930
2931static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06002932 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002933{
Don Brace03383732015-01-23 16:43:30 -06002934 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
2935 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002936}
2937
2938static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
2939 struct ReportLUNdata *buf, int bufsize)
2940{
2941 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
2942}
2943
2944static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
2945 int bus, int target, int lun)
2946{
2947 device->bus = bus;
2948 device->target = target;
2949 device->lun = lun;
2950}
2951
Stephen M. Cameron98465902014-02-21 16:25:00 -06002952/* Use VPD inquiry to get details of volume status */
2953static int hpsa_get_volume_status(struct ctlr_info *h,
2954 unsigned char scsi3addr[])
2955{
2956 int rc;
2957 int status;
2958 int size;
2959 unsigned char *buf;
2960
2961 buf = kzalloc(64, GFP_KERNEL);
2962 if (!buf)
2963 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2964
2965 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002966 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06002967 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002968
2969 /* Get the size of the VPD return buffer */
2970 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2971 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002972 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002973 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002974 size = buf[3];
2975
2976 /* Now get the whole VPD buffer */
2977 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2978 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002979 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002980 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002981 status = buf[4]; /* status byte */
2982
2983 kfree(buf);
2984 return status;
2985exit_failed:
2986 kfree(buf);
2987 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2988}
2989
2990/* Determine offline status of a volume.
2991 * Return either:
2992 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002993 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002994 * # (integer code indicating one of several NOT READY states
2995 * describing why a volume is to be kept offline)
2996 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002997static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06002998 unsigned char scsi3addr[])
2999{
3000 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003001 unsigned char *sense;
3002 u8 sense_key, asc, ascq;
3003 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05003004 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003005 u16 cmd_status;
3006 u8 scsi_status;
3007#define ASC_LUN_NOT_READY 0x04
3008#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
3009#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
3010
3011 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003012
Stephen M. Cameron98465902014-02-21 16:25:00 -06003013 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05003014 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3015 if (rc) {
3016 cmd_free(h, c);
3017 return 0;
3018 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06003019 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003020 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
3021 sense_len = sizeof(c->err_info->SenseInfo);
3022 else
3023 sense_len = c->err_info->SenseLen;
3024 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003025 cmd_status = c->err_info->CommandStatus;
3026 scsi_status = c->err_info->ScsiStatus;
3027 cmd_free(h, c);
3028 /* Is the volume 'not ready'? */
3029 if (cmd_status != CMD_TARGET_STATUS ||
3030 scsi_status != SAM_STAT_CHECK_CONDITION ||
3031 sense_key != NOT_READY ||
3032 asc != ASC_LUN_NOT_READY) {
3033 return 0;
3034 }
3035
3036 /* Determine the reason for not ready state */
3037 ldstat = hpsa_get_volume_status(h, scsi3addr);
3038
3039 /* Keep volume offline in certain cases: */
3040 switch (ldstat) {
3041 case HPSA_LV_UNDERGOING_ERASE:
3042 case HPSA_LV_UNDERGOING_RPI:
3043 case HPSA_LV_PENDING_RPI:
3044 case HPSA_LV_ENCRYPTED_NO_KEY:
3045 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
3046 case HPSA_LV_UNDERGOING_ENCRYPTION:
3047 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
3048 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
3049 return ldstat;
3050 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
3051 /* If VPD status page isn't available,
3052 * use ASC/ASCQ to determine state
3053 */
3054 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
3055 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
3056 return ldstat;
3057 break;
3058 default:
3059 break;
3060 }
3061 return 0;
3062}
3063
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003064/*
3065 * Find out if a logical device supports aborts by simply trying one.
3066 * Smart Array may claim not to support aborts on logical drives, but
3067 * if a MSA2000 * is connected, the drives on that will be presented
3068 * by the Smart Array as logical drives, and aborts may be sent to
3069 * those devices successfully. So the simplest way to find out is
3070 * to simply try an abort and see how the device responds.
3071 */
3072static int hpsa_device_supports_aborts(struct ctlr_info *h,
3073 unsigned char *scsi3addr)
3074{
3075 struct CommandList *c;
3076 struct ErrorInfo *ei;
3077 int rc = 0;
3078
3079 u64 tag = (u64) -1; /* bogus tag */
3080
3081 /* Assume that physical devices support aborts */
3082 if (!is_logical_dev_addr_mode(scsi3addr))
3083 return 1;
3084
3085 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003086
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003087 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
3088 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3089 /* no unmap needed here because no data xfer. */
3090 ei = c->err_info;
3091 switch (ei->CommandStatus) {
3092 case CMD_INVALID:
3093 rc = 0;
3094 break;
3095 case CMD_UNABORTABLE:
3096 case CMD_ABORT_FAILED:
3097 rc = 1;
3098 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003099 case CMD_TMF_STATUS:
3100 rc = hpsa_evaluate_tmf_status(h, c);
3101 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003102 default:
3103 rc = 0;
3104 break;
3105 }
3106 cmd_free(h, c);
3107 return rc;
3108}
3109
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003110static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003111 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3112 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003113{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003114
3115#define OBDR_SIG_OFFSET 43
3116#define OBDR_TAPE_SIG "$DR-10"
3117#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3118#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3119
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003120 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003121 unsigned char *obdr_sig;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003122
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003123 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003124 if (!inq_buff)
3125 goto bail_out;
3126
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003127 /* Do an inquiry to the device to see what it is. */
3128 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3129 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
3130 /* Inquiry failed (msg printed already) */
3131 dev_err(&h->pdev->dev,
3132 "hpsa_update_device_info: inquiry failed\n");
3133 goto bail_out;
3134 }
3135
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003136 this_device->devtype = (inq_buff[0] & 0x1f);
3137 memcpy(this_device->scsi3addr, scsi3addr, 8);
3138 memcpy(this_device->vendor, &inq_buff[8],
3139 sizeof(this_device->vendor));
3140 memcpy(this_device->model, &inq_buff[16],
3141 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003142 memset(this_device->device_id, 0,
3143 sizeof(this_device->device_id));
3144 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
3145 sizeof(this_device->device_id));
3146
3147 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003148 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003149 int volume_offline;
3150
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003151 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003152 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3153 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003154 volume_offline = hpsa_volume_offline(h, scsi3addr);
3155 if (volume_offline < 0 || volume_offline > 0xff)
3156 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3157 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003158 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003159 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003160 this_device->offload_config = 0;
3161 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003162 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003163 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003164 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003165 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003166 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003167
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003168 if (is_OBDR_device) {
3169 /* See if this is a One-Button-Disaster-Recovery device
3170 * by looking for "$DR-10" at offset 43 in inquiry data.
3171 */
3172 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3173 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3174 strncmp(obdr_sig, OBDR_TAPE_SIG,
3175 OBDR_SIG_LEN) == 0);
3176 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003177 kfree(inq_buff);
3178 return 0;
3179
3180bail_out:
3181 kfree(inq_buff);
3182 return 1;
3183}
3184
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003185static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3186 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3187{
3188 unsigned long flags;
3189 int rc, entry;
3190 /*
3191 * See if this device supports aborts. If we already know
3192 * the device, we already know if it supports aborts, otherwise
3193 * we have to find out if it supports aborts by trying one.
3194 */
3195 spin_lock_irqsave(&h->devlock, flags);
3196 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3197 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3198 entry >= 0 && entry < h->ndevices) {
3199 dev->supports_aborts = h->dev[entry]->supports_aborts;
3200 spin_unlock_irqrestore(&h->devlock, flags);
3201 } else {
3202 spin_unlock_irqrestore(&h->devlock, flags);
3203 dev->supports_aborts =
3204 hpsa_device_supports_aborts(h, scsi3addr);
3205 if (dev->supports_aborts < 0)
3206 dev->supports_aborts = 0;
3207 }
3208}
3209
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003210static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003211 "MSA2012",
3212 "MSA2024",
3213 "MSA2312",
3214 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05003215 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05003216 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003217 NULL,
3218};
3219
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003220static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003221{
3222 int i;
3223
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003224 for (i = 0; ext_target_model[i]; i++)
3225 if (strncmp(device->model, ext_target_model[i],
3226 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003227 return 1;
3228 return 0;
3229}
3230
3231/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003232 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003233 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
3234 * Logical drive target and lun are assigned at this time, but
3235 * physical device lun and target assignment are deferred (assigned
3236 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
3237 */
3238static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003239 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003240{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003241 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003242
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003243 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3244 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003245 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003246 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003247 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003248 /* defer target, lun assignment for physical devices */
3249 hpsa_set_bus_target_lun(device, 2, -1, -1);
3250 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003251 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003252 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003253 if (is_ext_target(h, device)) {
3254 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003255 * and match target/lun numbers box
3256 * reports, other smart array, bus 0, target 0, match lunid
3257 */
3258 hpsa_set_bus_target_lun(device,
3259 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
3260 return;
3261 }
3262 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003263}
3264
3265/*
3266 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003267 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003268 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
3269 * it for some reason. *tmpdevice is the target we're adding,
3270 * this_device is a pointer into the current element of currentsd[]
3271 * that we're building up in update_scsi_devices(), below.
3272 * lunzerobits is a bitmap that tracks which targets already have a
3273 * lun 0 assigned.
3274 * Returns 1 if an enclosure was added, 0 if not.
3275 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003276static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003277 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003278 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003279 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003280{
3281 unsigned char scsi3addr[8];
3282
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003283 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003284 return 0; /* There is already a lun 0 on this target. */
3285
3286 if (!is_logical_dev_addr_mode(lunaddrbytes))
3287 return 0; /* It's the logical targets that may lack lun 0. */
3288
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003289 if (!is_ext_target(h, tmpdevice))
3290 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003291
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003292 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003293 return 0;
3294
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06003295 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003296 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003297 if (is_hba_lunid(scsi3addr))
3298 return 0; /* Don't add the RAID controller here. */
3299
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003300 if (is_scsi_rev_5(h))
3301 return 0; /* p1210m doesn't need to do this. */
3302
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003303 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06003304 dev_warn(&h->pdev->dev, "Maximum number of external "
3305 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003306 "configuration.");
3307 return 0;
3308 }
3309
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003310 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003311 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003312 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003313 hpsa_set_bus_target_lun(this_device,
3314 tmpdevice->bus, tmpdevice->target, 0);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003315 hpsa_update_device_supports_aborts(h, this_device, scsi3addr);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003316 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003317 return 1;
3318}
3319
3320/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003321 * Get address of physical disk used for an ioaccel2 mode command:
3322 * 1. Extract ioaccel2 handle from the command.
3323 * 2. Find a matching ioaccel2 handle from list of physical disks.
3324 * 3. Return:
3325 * 1 and set scsi3addr to address of matching physical
3326 * 0 if no matching physical disk was found.
3327 */
3328static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3329 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3330{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003331 struct io_accel2_cmd *c2 =
3332 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3333 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003334 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003335
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003336 spin_lock_irqsave(&h->devlock, flags);
3337 for (i = 0; i < h->ndevices; i++)
3338 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3339 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3340 sizeof(h->dev[i]->scsi3addr));
3341 spin_unlock_irqrestore(&h->devlock, flags);
3342 return 1;
3343 }
3344 spin_unlock_irqrestore(&h->devlock, flags);
3345 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003346}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003347
Scott Teel54b6e9e2014-02-18 13:56:45 -06003348/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003349 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
3350 * logdev. The number of luns in physdev and logdev are returned in
3351 * *nphysicals and *nlogicals, respectively.
3352 * Returns 0 on success, -1 otherwise.
3353 */
3354static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003355 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003356 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003357{
Don Brace03383732015-01-23 16:43:30 -06003358 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003359 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3360 return -1;
3361 }
Don Brace03383732015-01-23 16:43:30 -06003362 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003363 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06003364 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
3365 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003366 *nphysicals = HPSA_MAX_PHYS_LUN;
3367 }
Don Brace03383732015-01-23 16:43:30 -06003368 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003369 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3370 return -1;
3371 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06003372 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003373 /* Reject Logicals in excess of our max capability. */
3374 if (*nlogicals > HPSA_MAX_LUN) {
3375 dev_warn(&h->pdev->dev,
3376 "maximum logical LUNs (%d) exceeded. "
3377 "%d LUNs ignored.\n", HPSA_MAX_LUN,
3378 *nlogicals - HPSA_MAX_LUN);
3379 *nlogicals = HPSA_MAX_LUN;
3380 }
3381 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3382 dev_warn(&h->pdev->dev,
3383 "maximum logical + physical LUNs (%d) exceeded. "
3384 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3385 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3386 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3387 }
3388 return 0;
3389}
3390
Don Brace42a91642014-11-14 17:26:27 -06003391static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
3392 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003393 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003394 struct ReportLUNdata *logdev_list)
3395{
3396 /* Helper function, figure out where the LUN ID info is coming from
3397 * given index i, lists of physical and logical devices, where in
3398 * the list the raid controller is supposed to appear (first or last)
3399 */
3400
3401 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3402 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3403
3404 if (i == raid_ctlr_position)
3405 return RAID_CTLR_LUNID;
3406
3407 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05003408 return &physdev_list->LUN[i -
3409 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003410
3411 if (i < last_device)
3412 return &logdev_list->LUN[i - nphysicals -
3413 (raid_ctlr_position == 0)][0];
3414 BUG();
3415 return NULL;
3416}
3417
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003418static int hpsa_hba_mode_enabled(struct ctlr_info *h)
3419{
3420 int rc;
Joe Handzik6e8e8082014-05-15 15:44:42 -05003421 int hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003422 struct bmic_controller_parameters *ctlr_params;
3423 ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters),
3424 GFP_KERNEL);
3425
3426 if (!ctlr_params)
Joe Handzik96444fb2014-05-15 15:44:47 -05003427 return -ENOMEM;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003428 rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params,
3429 sizeof(struct bmic_controller_parameters));
Joe Handzik96444fb2014-05-15 15:44:47 -05003430 if (rc) {
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003431 kfree(ctlr_params);
Joe Handzik96444fb2014-05-15 15:44:47 -05003432 return rc;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003433 }
Joe Handzik6e8e8082014-05-15 15:44:42 -05003434
3435 hba_mode_enabled =
3436 ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0);
3437 kfree(ctlr_params);
3438 return hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003439}
3440
Don Brace03383732015-01-23 16:43:30 -06003441/* get physical drive ioaccel handle and queue depth */
3442static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3443 struct hpsa_scsi_dev_t *dev,
3444 u8 *lunaddrbytes,
3445 struct bmic_identify_physical_device *id_phys)
3446{
3447 int rc;
3448 struct ext_report_lun_entry *rle =
3449 (struct ext_report_lun_entry *) lunaddrbytes;
3450
3451 dev->ioaccel_handle = rle->ioaccel_handle;
Joe Handzika3144e02015-04-23 09:32:59 -05003452 if (PHYS_IOACCEL(lunaddrbytes) && dev->ioaccel_handle)
3453 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06003454 memset(id_phys, 0, sizeof(*id_phys));
3455 rc = hpsa_bmic_id_physical_device(h, lunaddrbytes,
3456 GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys,
3457 sizeof(*id_phys));
3458 if (!rc)
3459 /* Reserve space for FW operations */
3460#define DRIVE_CMDS_RESERVED_FOR_FW 2
3461#define DRIVE_QUEUE_DEPTH 7
3462 dev->queue_depth =
3463 le16_to_cpu(id_phys->current_queue_depth_limit) -
3464 DRIVE_CMDS_RESERVED_FOR_FW;
3465 else
3466 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
3467 atomic_set(&dev->ioaccel_cmds_out, 0);
3468}
3469
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003470static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
3471{
3472 /* the idea here is we could get notified
3473 * that some devices have changed, so we do a report
3474 * physical luns and report logical luns cmd, and adjust
3475 * our list of devices accordingly.
3476 *
3477 * The scsi3addr's of devices won't change so long as the
3478 * adapter is not reset. That means we can rescan and
3479 * tell which devices we already know about, vs. new
3480 * devices, vs. disappearing devices.
3481 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003482 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003483 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003484 struct bmic_identify_physical_device *id_phys = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003485 u32 nphysicals = 0;
3486 u32 nlogicals = 0;
3487 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003488 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3489 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003490 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003491 int raid_ctlr_position;
Joe Handzik2bbf5c72014-05-21 11:16:01 -05003492 int rescan_hba_mode;
Scott Teelaca4a522012-01-19 14:01:19 -06003493 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003494
Scott Teelcfe5bad2011-10-26 16:21:07 -05003495 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003496 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3497 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003498 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003499 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003500
Don Brace03383732015-01-23 16:43:30 -06003501 if (!currentsd || !physdev_list || !logdev_list ||
3502 !tmpdevice || !id_phys) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003503 dev_err(&h->pdev->dev, "out of memory\n");
3504 goto out;
3505 }
3506 memset(lunzerobits, 0, sizeof(lunzerobits));
3507
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003508 rescan_hba_mode = hpsa_hba_mode_enabled(h);
Joe Handzik96444fb2014-05-15 15:44:47 -05003509 if (rescan_hba_mode < 0)
3510 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003511
3512 if (!h->hba_mode_enabled && rescan_hba_mode)
3513 dev_warn(&h->pdev->dev, "HBA mode enabled\n");
3514 else if (h->hba_mode_enabled && !rescan_hba_mode)
3515 dev_warn(&h->pdev->dev, "HBA mode disabled\n");
3516
3517 h->hba_mode_enabled = rescan_hba_mode;
3518
Don Brace03383732015-01-23 16:43:30 -06003519 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
3520 logdev_list, &nlogicals))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003521 goto out;
3522
Scott Teelaca4a522012-01-19 14:01:19 -06003523 /* We might see up to the maximum number of logical and physical disks
3524 * plus external target devices, and a device for the local RAID
3525 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003526 */
Scott Teelaca4a522012-01-19 14:01:19 -06003527 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003528
3529 /* Allocate the per device structures */
3530 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003531 if (i >= HPSA_MAX_DEVICES) {
3532 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3533 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3534 ndevs_to_allocate - HPSA_MAX_DEVICES);
3535 break;
3536 }
3537
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003538 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3539 if (!currentsd[i]) {
3540 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3541 __FILE__, __LINE__);
3542 goto out;
3543 }
3544 ndev_allocated++;
3545 }
3546
Stephen M. Cameron86452912014-05-29 10:53:49 -05003547 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003548 raid_ctlr_position = 0;
3549 else
3550 raid_ctlr_position = nphysicals + nlogicals;
3551
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003552 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003553 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003554 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003555 u8 *lunaddrbytes, is_OBDR = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003556
3557 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003558 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3559 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003560
3561 /* skip masked non-disk devices */
3562 if (MASKED_DEVICE(lunaddrbytes))
3563 if (i < nphysicals + (raid_ctlr_position == 0) &&
3564 NON_DISK_PHYS_DEV(lunaddrbytes))
3565 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003566
3567 /* Get device type, vendor, model, device id */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003568 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3569 &is_OBDR))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003570 continue; /* skip it if we can't talk to it. */
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003571 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003572 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003573 this_device = currentsd[ncurrent];
3574
3575 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003576 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003577 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3578 * is nonetheless an enclosure device there. We have to
3579 * present that otherwise linux won't find anything if
3580 * there is no lun 0.
3581 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003582 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003583 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003584 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003585 ncurrent++;
3586 this_device = currentsd[ncurrent];
3587 }
3588
3589 *this_device = *tmpdevice;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003590
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003591 /* do not expose masked devices */
3592 if (MASKED_DEVICE(lunaddrbytes) &&
3593 i < nphysicals + (raid_ctlr_position == 0)) {
3594 if (h->hba_mode_enabled)
3595 dev_warn(&h->pdev->dev,
3596 "Masked physical device detected\n");
3597 this_device->expose_state = HPSA_DO_NOT_EXPOSE;
3598 } else {
3599 this_device->expose_state =
3600 HPSA_SG_ATTACH | HPSA_ULD_ATTACH;
3601 }
3602
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003603 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003604 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003605 /* We don't *really* support actual CD-ROM devices,
3606 * just "One Button Disaster Recovery" tape drive
3607 * which temporarily pretends to be a CD-ROM drive.
3608 * So we check that the device is really an OBDR tape
3609 * device by checking for "$DR-10" in bytes 43-48 of
3610 * the inquiry data.
3611 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003612 if (is_OBDR)
3613 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003614 break;
3615 case TYPE_DISK:
Joe Handzikecf418d12015-04-23 09:33:04 -05003616 if (i >= nphysicals) {
3617 ncurrent++;
3618 break;
3619 }
3620
3621 if (h->hba_mode_enabled)
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003622 /* never use raid mapper in HBA mode */
3623 this_device->offload_enabled = 0;
Joe Handzikecf418d12015-04-23 09:33:04 -05003624 else if (!(h->transMethod & CFGTBL_Trans_io_accel1 ||
3625 h->transMethod & CFGTBL_Trans_io_accel2))
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003626 break;
Joe Handzikecf418d12015-04-23 09:33:04 -05003627
3628 hpsa_get_ioaccel_drive_info(h, this_device,
3629 lunaddrbytes, id_phys);
3630 atomic_set(&this_device->ioaccel_cmds_out, 0);
3631 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003632 break;
3633 case TYPE_TAPE:
3634 case TYPE_MEDIUM_CHANGER:
3635 ncurrent++;
3636 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003637 case TYPE_ENCLOSURE:
3638 if (h->hba_mode_enabled)
3639 ncurrent++;
3640 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003641 case TYPE_RAID:
3642 /* Only present the Smartarray HBA as a RAID controller.
3643 * If it's a RAID controller other than the HBA itself
3644 * (an external RAID controller, MSA500 or similar)
3645 * don't present it.
3646 */
3647 if (!is_hba_lunid(lunaddrbytes))
3648 break;
3649 ncurrent++;
3650 break;
3651 default:
3652 break;
3653 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003654 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003655 break;
3656 }
3657 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3658out:
3659 kfree(tmpdevice);
3660 for (i = 0; i < ndev_allocated; i++)
3661 kfree(currentsd[i]);
3662 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003663 kfree(physdev_list);
3664 kfree(logdev_list);
Don Brace03383732015-01-23 16:43:30 -06003665 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003666}
3667
Webb Scalesec5cbf02015-01-23 16:44:45 -06003668static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3669 struct scatterlist *sg)
3670{
3671 u64 addr64 = (u64) sg_dma_address(sg);
3672 unsigned int len = sg_dma_len(sg);
3673
3674 desc->Addr = cpu_to_le64(addr64);
3675 desc->Len = cpu_to_le32(len);
3676 desc->Ext = 0;
3677}
3678
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003679/*
3680 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003681 * dma mapping and fills in the scatter gather entries of the
3682 * hpsa command, cp.
3683 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003684static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003685 struct CommandList *cp,
3686 struct scsi_cmnd *cmd)
3687{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003688 struct scatterlist *sg;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003689 int use_sg, i, sg_limit, chained, last_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003690 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003691
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003692 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003693
3694 use_sg = scsi_dma_map(cmd);
3695 if (use_sg < 0)
3696 return use_sg;
3697
3698 if (!use_sg)
3699 goto sglist_finished;
3700
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003701 /*
3702 * If the number of entries is greater than the max for a single list,
3703 * then we have a chained list; we will set up all but one entry in the
3704 * first list (the last entry is saved for link information);
3705 * otherwise, we don't have a chained list and we'll set up at each of
3706 * the entries in the one list.
3707 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003708 curr_sg = cp->SG;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003709 chained = use_sg > h->max_cmd_sg_entries;
3710 sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg;
3711 last_sg = scsi_sg_count(cmd) - 1;
3712 scsi_for_each_sg(cmd, sg, sg_limit, i) {
Webb Scalesec5cbf02015-01-23 16:44:45 -06003713 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003714 curr_sg++;
3715 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003716
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003717 if (chained) {
3718 /*
3719 * Continue with the chained list. Set curr_sg to the chained
3720 * list. Modify the limit to the total count less the entries
3721 * we've already set up. Resume the scan at the list entry
3722 * where the previous loop left off.
3723 */
3724 curr_sg = h->cmd_sg_list[cp->cmdindex];
3725 sg_limit = use_sg - sg_limit;
3726 for_each_sg(sg, sg, sg_limit, i) {
3727 hpsa_set_sg_descriptor(curr_sg, sg);
3728 curr_sg++;
3729 }
3730 }
3731
Webb Scalesec5cbf02015-01-23 16:44:45 -06003732 /* Back the pointer up to the last entry and mark it as "last". */
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003733 (curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003734
3735 if (use_sg + chained > h->maxSG)
3736 h->maxSG = use_sg + chained;
3737
3738 if (chained) {
3739 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003740 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06003741 if (hpsa_map_sg_chain_block(h, cp)) {
3742 scsi_dma_unmap(cmd);
3743 return -1;
3744 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003745 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003746 }
3747
3748sglist_finished:
3749
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003750 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003751 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003752 return 0;
3753}
3754
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003755#define IO_ACCEL_INELIGIBLE (1)
3756static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
3757{
3758 int is_write = 0;
3759 u32 block;
3760 u32 block_cnt;
3761
3762 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
3763 switch (cdb[0]) {
3764 case WRITE_6:
3765 case WRITE_12:
3766 is_write = 1;
3767 case READ_6:
3768 case READ_12:
3769 if (*cdb_len == 6) {
3770 block = (((u32) cdb[2]) << 8) | cdb[3];
3771 block_cnt = cdb[4];
3772 } else {
3773 BUG_ON(*cdb_len != 12);
3774 block = (((u32) cdb[2]) << 24) |
3775 (((u32) cdb[3]) << 16) |
3776 (((u32) cdb[4]) << 8) |
3777 cdb[5];
3778 block_cnt =
3779 (((u32) cdb[6]) << 24) |
3780 (((u32) cdb[7]) << 16) |
3781 (((u32) cdb[8]) << 8) |
3782 cdb[9];
3783 }
3784 if (block_cnt > 0xffff)
3785 return IO_ACCEL_INELIGIBLE;
3786
3787 cdb[0] = is_write ? WRITE_10 : READ_10;
3788 cdb[1] = 0;
3789 cdb[2] = (u8) (block >> 24);
3790 cdb[3] = (u8) (block >> 16);
3791 cdb[4] = (u8) (block >> 8);
3792 cdb[5] = (u8) (block);
3793 cdb[6] = 0;
3794 cdb[7] = (u8) (block_cnt >> 8);
3795 cdb[8] = (u8) (block_cnt);
3796 cdb[9] = 0;
3797 *cdb_len = 10;
3798 break;
3799 }
3800 return 0;
3801}
3802
Scott Teelc3497752014-02-18 13:56:34 -06003803static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003804 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003805 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06003806{
3807 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06003808 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
3809 unsigned int len;
3810 unsigned int total_len = 0;
3811 struct scatterlist *sg;
3812 u64 addr64;
3813 int use_sg, i;
3814 struct SGDescriptor *curr_sg;
3815 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
3816
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003817 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06003818 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
3819 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003820 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003821 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003822
Matt Gatese1f7de02014-02-18 13:55:17 -06003823 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
3824
Don Brace03383732015-01-23 16:43:30 -06003825 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3826 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003827 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003828 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003829
Matt Gatese1f7de02014-02-18 13:55:17 -06003830 c->cmd_type = CMD_IOACCEL1;
3831
3832 /* Adjust the DMA address to point to the accelerated command buffer */
3833 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
3834 (c->cmdindex * sizeof(*cp));
3835 BUG_ON(c->busaddr & 0x0000007F);
3836
3837 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003838 if (use_sg < 0) {
3839 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06003840 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003841 }
Matt Gatese1f7de02014-02-18 13:55:17 -06003842
3843 if (use_sg) {
3844 curr_sg = cp->SG;
3845 scsi_for_each_sg(cmd, sg, use_sg, i) {
3846 addr64 = (u64) sg_dma_address(sg);
3847 len = sg_dma_len(sg);
3848 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003849 curr_sg->Addr = cpu_to_le64(addr64);
3850 curr_sg->Len = cpu_to_le32(len);
3851 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06003852 curr_sg++;
3853 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003854 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06003855
3856 switch (cmd->sc_data_direction) {
3857 case DMA_TO_DEVICE:
3858 control |= IOACCEL1_CONTROL_DATA_OUT;
3859 break;
3860 case DMA_FROM_DEVICE:
3861 control |= IOACCEL1_CONTROL_DATA_IN;
3862 break;
3863 case DMA_NONE:
3864 control |= IOACCEL1_CONTROL_NODATAXFER;
3865 break;
3866 default:
3867 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3868 cmd->sc_data_direction);
3869 BUG();
3870 break;
3871 }
3872 } else {
3873 control |= IOACCEL1_CONTROL_NODATAXFER;
3874 }
3875
Scott Teelc3497752014-02-18 13:56:34 -06003876 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06003877 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06003878 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
3879 cp->transfer_len = cpu_to_le32(total_len);
3880 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
3881 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
3882 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003883 memcpy(cp->CDB, cdb, cdb_len);
3884 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06003885 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003886 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06003887 return 0;
3888}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003889
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003890/*
3891 * Queue a command directly to a device behind the controller using the
3892 * I/O accelerator path.
3893 */
3894static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
3895 struct CommandList *c)
3896{
3897 struct scsi_cmnd *cmd = c->scsi_cmd;
3898 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3899
Don Brace03383732015-01-23 16:43:30 -06003900 c->phys_disk = dev;
3901
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003902 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06003903 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003904}
3905
Scott Teeldd0e19f2014-02-18 13:57:31 -06003906/*
3907 * Set encryption parameters for the ioaccel2 request
3908 */
3909static void set_encrypt_ioaccel2(struct ctlr_info *h,
3910 struct CommandList *c, struct io_accel2_cmd *cp)
3911{
3912 struct scsi_cmnd *cmd = c->scsi_cmd;
3913 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3914 struct raid_map_data *map = &dev->raid_map;
3915 u64 first_block;
3916
Scott Teeldd0e19f2014-02-18 13:57:31 -06003917 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06003918 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06003919 return;
3920 /* Set the data encryption key index. */
3921 cp->dekindex = map->dekindex;
3922
3923 /* Set the encryption enable flag, encoded into direction field. */
3924 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
3925
3926 /* Set encryption tweak values based on logical block address
3927 * If block size is 512, tweak value is LBA.
3928 * For other block sizes, tweak is (LBA * block size)/ 512)
3929 */
3930 switch (cmd->cmnd[0]) {
3931 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
3932 case WRITE_6:
3933 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06003934 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003935 break;
3936 case WRITE_10:
3937 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003938 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
3939 case WRITE_12:
3940 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06003941 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003942 break;
3943 case WRITE_16:
3944 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06003945 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003946 break;
3947 default:
3948 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06003949 "ERROR: %s: size (0x%x) not supported for encryption\n",
3950 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003951 BUG();
3952 break;
3953 }
Don Brace2b08b3e2015-01-23 16:41:09 -06003954
3955 if (le32_to_cpu(map->volume_blk_size) != 512)
3956 first_block = first_block *
3957 le32_to_cpu(map->volume_blk_size)/512;
3958
3959 cp->tweak_lower = cpu_to_le32(first_block);
3960 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06003961}
3962
Scott Teelc3497752014-02-18 13:56:34 -06003963static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
3964 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06003965 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06003966{
3967 struct scsi_cmnd *cmd = c->scsi_cmd;
3968 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
3969 struct ioaccel2_sg_element *curr_sg;
3970 int use_sg, i;
3971 struct scatterlist *sg;
3972 u64 addr64;
3973 u32 len;
3974 u32 total_len = 0;
3975
Webb Scalesd9a729f2015-04-23 09:33:27 -05003976 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06003977
Don Brace03383732015-01-23 16:43:30 -06003978 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
3979 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003980 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06003981 }
3982
Scott Teelc3497752014-02-18 13:56:34 -06003983 c->cmd_type = CMD_IOACCEL2;
3984 /* Adjust the DMA address to point to the accelerated command buffer */
3985 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
3986 (c->cmdindex * sizeof(*cp));
3987 BUG_ON(c->busaddr & 0x0000007F);
3988
3989 memset(cp, 0, sizeof(*cp));
3990 cp->IU_type = IOACCEL2_IU_TYPE;
3991
3992 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06003993 if (use_sg < 0) {
3994 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06003995 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06003996 }
Scott Teelc3497752014-02-18 13:56:34 -06003997
3998 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06003999 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05004000 if (use_sg > h->ioaccel_maxsg) {
4001 addr64 = le64_to_cpu(
4002 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
4003 curr_sg->address = cpu_to_le64(addr64);
4004 curr_sg->length = 0;
4005 curr_sg->reserved[0] = 0;
4006 curr_sg->reserved[1] = 0;
4007 curr_sg->reserved[2] = 0;
4008 curr_sg->chain_indicator = 0x80;
4009
4010 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
4011 }
Scott Teelc3497752014-02-18 13:56:34 -06004012 scsi_for_each_sg(cmd, sg, use_sg, i) {
4013 addr64 = (u64) sg_dma_address(sg);
4014 len = sg_dma_len(sg);
4015 total_len += len;
4016 curr_sg->address = cpu_to_le64(addr64);
4017 curr_sg->length = cpu_to_le32(len);
4018 curr_sg->reserved[0] = 0;
4019 curr_sg->reserved[1] = 0;
4020 curr_sg->reserved[2] = 0;
4021 curr_sg->chain_indicator = 0;
4022 curr_sg++;
4023 }
4024
4025 switch (cmd->sc_data_direction) {
4026 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004027 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4028 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06004029 break;
4030 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004031 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4032 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06004033 break;
4034 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004035 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4036 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004037 break;
4038 default:
4039 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4040 cmd->sc_data_direction);
4041 BUG();
4042 break;
4043 }
4044 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06004045 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4046 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004047 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06004048
4049 /* Set encryption parameters, if necessary */
4050 set_encrypt_ioaccel2(h, c, cp);
4051
Don Brace2b08b3e2015-01-23 16:41:09 -06004052 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06004053 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06004054 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06004055
Scott Teelc3497752014-02-18 13:56:34 -06004056 cp->data_len = cpu_to_le32(total_len);
4057 cp->err_ptr = cpu_to_le64(c->busaddr +
4058 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004059 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06004060
Webb Scalesd9a729f2015-04-23 09:33:27 -05004061 /* fill in sg elements */
4062 if (use_sg > h->ioaccel_maxsg) {
4063 cp->sg_count = 1;
4064 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
4065 atomic_dec(&phys_disk->ioaccel_cmds_out);
4066 scsi_dma_unmap(cmd);
4067 return -1;
4068 }
4069 } else
4070 cp->sg_count = (u8) use_sg;
4071
Scott Teelc3497752014-02-18 13:56:34 -06004072 enqueue_cmd_and_start_io(h, c);
4073 return 0;
4074}
4075
4076/*
4077 * Queue a command to the correct I/O accelerator path.
4078 */
4079static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
4080 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004081 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004082{
Don Brace03383732015-01-23 16:43:30 -06004083 /* Try to honor the device's queue depth */
4084 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
4085 phys_disk->queue_depth) {
4086 atomic_dec(&phys_disk->ioaccel_cmds_out);
4087 return IO_ACCEL_INELIGIBLE;
4088 }
Scott Teelc3497752014-02-18 13:56:34 -06004089 if (h->transMethod & CFGTBL_Trans_io_accel1)
4090 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004091 cdb, cdb_len, scsi3addr,
4092 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004093 else
4094 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004095 cdb, cdb_len, scsi3addr,
4096 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004097}
4098
Scott Teel6b80b182014-02-18 13:56:55 -06004099static void raid_map_helper(struct raid_map_data *map,
4100 int offload_to_mirror, u32 *map_index, u32 *current_group)
4101{
4102 if (offload_to_mirror == 0) {
4103 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06004104 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004105 return;
4106 }
4107 do {
4108 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06004109 *current_group = *map_index /
4110 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004111 if (offload_to_mirror == *current_group)
4112 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06004113 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06004114 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004115 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004116 (*current_group)++;
4117 } else {
4118 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004119 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004120 *current_group = 0;
4121 }
4122 } while (offload_to_mirror != *current_group);
4123}
4124
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004125/*
4126 * Attempt to perform offload RAID mapping for a logical volume I/O.
4127 */
4128static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4129 struct CommandList *c)
4130{
4131 struct scsi_cmnd *cmd = c->scsi_cmd;
4132 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4133 struct raid_map_data *map = &dev->raid_map;
4134 struct raid_map_disk_data *dd = &map->data[0];
4135 int is_write = 0;
4136 u32 map_index;
4137 u64 first_block, last_block;
4138 u32 block_cnt;
4139 u32 blocks_per_row;
4140 u64 first_row, last_row;
4141 u32 first_row_offset, last_row_offset;
4142 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06004143 u64 r0_first_row, r0_last_row;
4144 u32 r5or6_blocks_per_row;
4145 u64 r5or6_first_row, r5or6_last_row;
4146 u32 r5or6_first_row_offset, r5or6_last_row_offset;
4147 u32 r5or6_first_column, r5or6_last_column;
4148 u32 total_disks_per_row;
4149 u32 stripesize;
4150 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004151 u32 map_row;
4152 u32 disk_handle;
4153 u64 disk_block;
4154 u32 disk_block_cnt;
4155 u8 cdb[16];
4156 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06004157 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004158#if BITS_PER_LONG == 32
4159 u64 tmpdiv;
4160#endif
Scott Teel6b80b182014-02-18 13:56:55 -06004161 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004162
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004163 /* check for valid opcode, get LBA and block count */
4164 switch (cmd->cmnd[0]) {
4165 case WRITE_6:
4166 is_write = 1;
4167 case READ_6:
4168 first_block =
4169 (((u64) cmd->cmnd[2]) << 8) |
4170 cmd->cmnd[3];
4171 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05004172 if (block_cnt == 0)
4173 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004174 break;
4175 case WRITE_10:
4176 is_write = 1;
4177 case READ_10:
4178 first_block =
4179 (((u64) cmd->cmnd[2]) << 24) |
4180 (((u64) cmd->cmnd[3]) << 16) |
4181 (((u64) cmd->cmnd[4]) << 8) |
4182 cmd->cmnd[5];
4183 block_cnt =
4184 (((u32) cmd->cmnd[7]) << 8) |
4185 cmd->cmnd[8];
4186 break;
4187 case WRITE_12:
4188 is_write = 1;
4189 case READ_12:
4190 first_block =
4191 (((u64) cmd->cmnd[2]) << 24) |
4192 (((u64) cmd->cmnd[3]) << 16) |
4193 (((u64) cmd->cmnd[4]) << 8) |
4194 cmd->cmnd[5];
4195 block_cnt =
4196 (((u32) cmd->cmnd[6]) << 24) |
4197 (((u32) cmd->cmnd[7]) << 16) |
4198 (((u32) cmd->cmnd[8]) << 8) |
4199 cmd->cmnd[9];
4200 break;
4201 case WRITE_16:
4202 is_write = 1;
4203 case READ_16:
4204 first_block =
4205 (((u64) cmd->cmnd[2]) << 56) |
4206 (((u64) cmd->cmnd[3]) << 48) |
4207 (((u64) cmd->cmnd[4]) << 40) |
4208 (((u64) cmd->cmnd[5]) << 32) |
4209 (((u64) cmd->cmnd[6]) << 24) |
4210 (((u64) cmd->cmnd[7]) << 16) |
4211 (((u64) cmd->cmnd[8]) << 8) |
4212 cmd->cmnd[9];
4213 block_cnt =
4214 (((u32) cmd->cmnd[10]) << 24) |
4215 (((u32) cmd->cmnd[11]) << 16) |
4216 (((u32) cmd->cmnd[12]) << 8) |
4217 cmd->cmnd[13];
4218 break;
4219 default:
4220 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4221 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004222 last_block = first_block + block_cnt - 1;
4223
4224 /* check for write to non-RAID-0 */
4225 if (is_write && dev->raid_level != 0)
4226 return IO_ACCEL_INELIGIBLE;
4227
4228 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06004229 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
4230 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004231 return IO_ACCEL_INELIGIBLE;
4232
4233 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06004234 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
4235 le16_to_cpu(map->strip_size);
4236 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004237#if BITS_PER_LONG == 32
4238 tmpdiv = first_block;
4239 (void) do_div(tmpdiv, blocks_per_row);
4240 first_row = tmpdiv;
4241 tmpdiv = last_block;
4242 (void) do_div(tmpdiv, blocks_per_row);
4243 last_row = tmpdiv;
4244 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4245 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4246 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004247 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004248 first_column = tmpdiv;
4249 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004250 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004251 last_column = tmpdiv;
4252#else
4253 first_row = first_block / blocks_per_row;
4254 last_row = last_block / blocks_per_row;
4255 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4256 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06004257 first_column = first_row_offset / strip_size;
4258 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004259#endif
4260
4261 /* if this isn't a single row/column then give to the controller */
4262 if ((first_row != last_row) || (first_column != last_column))
4263 return IO_ACCEL_INELIGIBLE;
4264
4265 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06004266 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
4267 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004268 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004269 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004270 map_index = (map_row * total_disks_per_row) + first_column;
4271
4272 switch (dev->raid_level) {
4273 case HPSA_RAID_0:
4274 break; /* nothing special to do */
4275 case HPSA_RAID_1:
4276 /* Handles load balance across RAID 1 members.
4277 * (2-drive R1 and R10 with even # of drives.)
4278 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004279 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004280 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004281 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06004282 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004283 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06004284 break;
4285 case HPSA_RAID_ADM:
4286 /* Handles N-way mirrors (R1-ADM)
4287 * and R10 with # of drives divisible by 3.)
4288 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004289 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06004290
4291 offload_to_mirror = dev->offload_to_mirror;
4292 raid_map_helper(map, offload_to_mirror,
4293 &map_index, &current_group);
4294 /* set mirror group to use next time */
4295 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06004296 (offload_to_mirror >=
4297 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004298 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06004299 dev->offload_to_mirror = offload_to_mirror;
4300 /* Avoid direct use of dev->offload_to_mirror within this
4301 * function since multiple threads might simultaneously
4302 * increment it beyond the range of dev->layout_map_count -1.
4303 */
4304 break;
4305 case HPSA_RAID_5:
4306 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004307 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004308 break;
4309
4310 /* Verify first and last block are in same RAID group */
4311 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06004312 le16_to_cpu(map->strip_size) *
4313 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004314 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06004315 stripesize = r5or6_blocks_per_row *
4316 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06004317#if BITS_PER_LONG == 32
4318 tmpdiv = first_block;
4319 first_group = do_div(tmpdiv, stripesize);
4320 tmpdiv = first_group;
4321 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4322 first_group = tmpdiv;
4323 tmpdiv = last_block;
4324 last_group = do_div(tmpdiv, stripesize);
4325 tmpdiv = last_group;
4326 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4327 last_group = tmpdiv;
4328#else
4329 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
4330 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06004331#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05004332 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06004333 return IO_ACCEL_INELIGIBLE;
4334
4335 /* Verify request is in a single row of RAID 5/6 */
4336#if BITS_PER_LONG == 32
4337 tmpdiv = first_block;
4338 (void) do_div(tmpdiv, stripesize);
4339 first_row = r5or6_first_row = r0_first_row = tmpdiv;
4340 tmpdiv = last_block;
4341 (void) do_div(tmpdiv, stripesize);
4342 r5or6_last_row = r0_last_row = tmpdiv;
4343#else
4344 first_row = r5or6_first_row = r0_first_row =
4345 first_block / stripesize;
4346 r5or6_last_row = r0_last_row = last_block / stripesize;
4347#endif
4348 if (r5or6_first_row != r5or6_last_row)
4349 return IO_ACCEL_INELIGIBLE;
4350
4351
4352 /* Verify request is in a single column */
4353#if BITS_PER_LONG == 32
4354 tmpdiv = first_block;
4355 first_row_offset = do_div(tmpdiv, stripesize);
4356 tmpdiv = first_row_offset;
4357 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
4358 r5or6_first_row_offset = first_row_offset;
4359 tmpdiv = last_block;
4360 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
4361 tmpdiv = r5or6_last_row_offset;
4362 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
4363 tmpdiv = r5or6_first_row_offset;
4364 (void) do_div(tmpdiv, map->strip_size);
4365 first_column = r5or6_first_column = tmpdiv;
4366 tmpdiv = r5or6_last_row_offset;
4367 (void) do_div(tmpdiv, map->strip_size);
4368 r5or6_last_column = tmpdiv;
4369#else
4370 first_row_offset = r5or6_first_row_offset =
4371 (u32)((first_block % stripesize) %
4372 r5or6_blocks_per_row);
4373
4374 r5or6_last_row_offset =
4375 (u32)((last_block % stripesize) %
4376 r5or6_blocks_per_row);
4377
4378 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004379 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004380 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004381 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004382#endif
4383 if (r5or6_first_column != r5or6_last_column)
4384 return IO_ACCEL_INELIGIBLE;
4385
4386 /* Request is eligible */
4387 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004388 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004389
4390 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06004391 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06004392 (map_row * total_disks_per_row) + first_column;
4393 break;
4394 default:
4395 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004396 }
Scott Teel6b80b182014-02-18 13:56:55 -06004397
Stephen Cameron07543e02015-01-23 16:44:14 -06004398 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
4399 return IO_ACCEL_INELIGIBLE;
4400
Don Brace03383732015-01-23 16:43:30 -06004401 c->phys_disk = dev->phys_disk[map_index];
4402
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004403 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06004404 disk_block = le64_to_cpu(map->disk_starting_blk) +
4405 first_row * le16_to_cpu(map->strip_size) +
4406 (first_row_offset - first_column *
4407 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004408 disk_block_cnt = block_cnt;
4409
4410 /* handle differing logical/physical block sizes */
4411 if (map->phys_blk_shift) {
4412 disk_block <<= map->phys_blk_shift;
4413 disk_block_cnt <<= map->phys_blk_shift;
4414 }
4415 BUG_ON(disk_block_cnt > 0xffff);
4416
4417 /* build the new CDB for the physical disk I/O */
4418 if (disk_block > 0xffffffff) {
4419 cdb[0] = is_write ? WRITE_16 : READ_16;
4420 cdb[1] = 0;
4421 cdb[2] = (u8) (disk_block >> 56);
4422 cdb[3] = (u8) (disk_block >> 48);
4423 cdb[4] = (u8) (disk_block >> 40);
4424 cdb[5] = (u8) (disk_block >> 32);
4425 cdb[6] = (u8) (disk_block >> 24);
4426 cdb[7] = (u8) (disk_block >> 16);
4427 cdb[8] = (u8) (disk_block >> 8);
4428 cdb[9] = (u8) (disk_block);
4429 cdb[10] = (u8) (disk_block_cnt >> 24);
4430 cdb[11] = (u8) (disk_block_cnt >> 16);
4431 cdb[12] = (u8) (disk_block_cnt >> 8);
4432 cdb[13] = (u8) (disk_block_cnt);
4433 cdb[14] = 0;
4434 cdb[15] = 0;
4435 cdb_len = 16;
4436 } else {
4437 cdb[0] = is_write ? WRITE_10 : READ_10;
4438 cdb[1] = 0;
4439 cdb[2] = (u8) (disk_block >> 24);
4440 cdb[3] = (u8) (disk_block >> 16);
4441 cdb[4] = (u8) (disk_block >> 8);
4442 cdb[5] = (u8) (disk_block);
4443 cdb[6] = 0;
4444 cdb[7] = (u8) (disk_block_cnt >> 8);
4445 cdb[8] = (u8) (disk_block_cnt);
4446 cdb[9] = 0;
4447 cdb_len = 10;
4448 }
4449 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004450 dev->scsi3addr,
4451 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004452}
4453
Webb Scales25163bd2015-04-23 09:32:00 -05004454/*
4455 * Submit commands down the "normal" RAID stack path
4456 * All callers to hpsa_ciss_submit must check lockup_detected
4457 * beforehand, before (opt.) and after calling cmd_alloc
4458 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06004459static int hpsa_ciss_submit(struct ctlr_info *h,
4460 struct CommandList *c, struct scsi_cmnd *cmd,
4461 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004462{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004463 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004464 c->cmd_type = CMD_SCSI;
4465 c->scsi_cmd = cmd;
4466 c->Header.ReplyQueue = 0; /* unused in simple mode */
4467 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004468 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004469
4470 /* Fill in the request block... */
4471
4472 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004473 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4474 c->Request.CDBLen = cmd->cmd_len;
4475 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004476 switch (cmd->sc_data_direction) {
4477 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004478 c->Request.type_attr_dir =
4479 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004480 break;
4481 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004482 c->Request.type_attr_dir =
4483 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004484 break;
4485 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004486 c->Request.type_attr_dir =
4487 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004488 break;
4489 case DMA_BIDIRECTIONAL:
4490 /* This can happen if a buggy application does a scsi passthru
4491 * and sets both inlen and outlen to non-zero. ( see
4492 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4493 */
4494
Stephen M. Camerona505b862014-11-14 17:27:04 -06004495 c->Request.type_attr_dir =
4496 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004497 /* This is technically wrong, and hpsa controllers should
4498 * reject it with CMD_INVALID, which is the most correct
4499 * response, but non-fibre backends appear to let it
4500 * slide by, and give the same results as if this field
4501 * were set correctly. Either way is acceptable for
4502 * our purposes here.
4503 */
4504
4505 break;
4506
4507 default:
4508 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4509 cmd->sc_data_direction);
4510 BUG();
4511 break;
4512 }
4513
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004514 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Webb Scales73153fe2015-04-23 09:35:04 -05004515 hpsa_cmd_resolve_and_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004516 return SCSI_MLQUEUE_HOST_BUSY;
4517 }
4518 enqueue_cmd_and_start_io(h, c);
4519 /* the cmd'll come back via intr handler in complete_scsi_command() */
4520 return 0;
4521}
4522
Stephen Cameron360c73b2015-04-23 09:32:32 -05004523static void hpsa_cmd_init(struct ctlr_info *h, int index,
4524 struct CommandList *c)
4525{
4526 dma_addr_t cmd_dma_handle, err_dma_handle;
4527
4528 /* Zero out all of commandlist except the last field, refcount */
4529 memset(c, 0, offsetof(struct CommandList, refcount));
4530 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
4531 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4532 c->err_info = h->errinfo_pool + index;
4533 memset(c->err_info, 0, sizeof(*c->err_info));
4534 err_dma_handle = h->errinfo_pool_dhandle
4535 + index * sizeof(*c->err_info);
4536 c->cmdindex = index;
4537 c->busaddr = (u32) cmd_dma_handle;
4538 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4539 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
4540 c->h = h;
Webb Scalesa58e7e52015-04-23 09:34:16 -05004541 c->scsi_cmd = SCSI_CMD_IDLE;
Stephen Cameron360c73b2015-04-23 09:32:32 -05004542}
4543
4544static void hpsa_preinitialize_commands(struct ctlr_info *h)
4545{
4546 int i;
4547
4548 for (i = 0; i < h->nr_cmds; i++) {
4549 struct CommandList *c = h->cmd_pool + i;
4550
4551 hpsa_cmd_init(h, i, c);
4552 atomic_set(&c->refcount, 0);
4553 }
4554}
4555
4556static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
4557 struct CommandList *c)
4558{
4559 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4560
Webb Scales73153fe2015-04-23 09:35:04 -05004561 BUG_ON(c->cmdindex != index);
4562
Stephen Cameron360c73b2015-04-23 09:32:32 -05004563 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4564 memset(c->err_info, 0, sizeof(*c->err_info));
4565 c->busaddr = (u32) cmd_dma_handle;
4566}
4567
Webb Scales592a0ad2015-04-23 09:32:48 -05004568static int hpsa_ioaccel_submit(struct ctlr_info *h,
4569 struct CommandList *c, struct scsi_cmnd *cmd,
4570 unsigned char *scsi3addr)
4571{
4572 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4573 int rc = IO_ACCEL_INELIGIBLE;
4574
4575 cmd->host_scribble = (unsigned char *) c;
4576
4577 if (dev->offload_enabled) {
4578 hpsa_cmd_init(h, c->cmdindex, c);
4579 c->cmd_type = CMD_SCSI;
4580 c->scsi_cmd = cmd;
4581 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4582 if (rc < 0) /* scsi_dma_map failed. */
4583 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05004584 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004585 hpsa_cmd_init(h, c->cmdindex, c);
4586 c->cmd_type = CMD_SCSI;
4587 c->scsi_cmd = cmd;
4588 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4589 if (rc < 0) /* scsi_dma_map failed. */
4590 rc = SCSI_MLQUEUE_HOST_BUSY;
4591 }
4592 return rc;
4593}
4594
Don Brace080ef1c2015-01-23 16:43:25 -06004595static void hpsa_command_resubmit_worker(struct work_struct *work)
4596{
4597 struct scsi_cmnd *cmd;
4598 struct hpsa_scsi_dev_t *dev;
Webb Scales8a0ff922015-04-23 09:34:11 -05004599 struct CommandList *c = container_of(work, struct CommandList, work);
Don Brace080ef1c2015-01-23 16:43:25 -06004600
4601 cmd = c->scsi_cmd;
4602 dev = cmd->device->hostdata;
4603 if (!dev) {
4604 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05004605 return hpsa_cmd_free_and_done(c->h, c, cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06004606 }
Webb Scalesa58e7e52015-04-23 09:34:16 -05004607 if (c->abort_pending)
4608 return hpsa_cmd_abort_and_free(c->h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05004609 if (c->cmd_type == CMD_IOACCEL2) {
4610 struct ctlr_info *h = c->h;
4611 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4612 int rc;
4613
4614 if (c2->error_data.serv_response ==
4615 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
4616 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
4617 if (rc == 0)
4618 return;
4619 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4620 /*
4621 * If we get here, it means dma mapping failed.
4622 * Try again via scsi mid layer, which will
4623 * then get SCSI_MLQUEUE_HOST_BUSY.
4624 */
4625 cmd->result = DID_IMM_RETRY << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05004626 return hpsa_cmd_free_and_done(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05004627 }
4628 /* else, fall thru and resubmit down CISS path */
4629 }
4630 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05004631 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004632 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4633 /*
4634 * If we get here, it means dma mapping failed. Try
4635 * again via scsi mid layer, which will then get
4636 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05004637 *
4638 * hpsa_ciss_submit will have already freed c
4639 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06004640 */
4641 cmd->result = DID_IMM_RETRY << 16;
4642 cmd->scsi_done(cmd);
4643 }
4644}
4645
Stephen Cameron574f05d2015-01-23 16:43:20 -06004646/* Running in struct Scsi_Host->host_lock less mode */
4647static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4648{
4649 struct ctlr_info *h;
4650 struct hpsa_scsi_dev_t *dev;
4651 unsigned char scsi3addr[8];
4652 struct CommandList *c;
4653 int rc = 0;
4654
4655 /* Get the ptr to our adapter structure out of cmd->host. */
4656 h = sdev_to_hba(cmd->device);
Webb Scales73153fe2015-04-23 09:35:04 -05004657
4658 BUG_ON(cmd->request->tag < 0);
4659
Stephen Cameron574f05d2015-01-23 16:43:20 -06004660 dev = cmd->device->hostdata;
4661 if (!dev) {
4662 cmd->result = DID_NO_CONNECT << 16;
4663 cmd->scsi_done(cmd);
4664 return 0;
4665 }
Webb Scales73153fe2015-04-23 09:35:04 -05004666
Stephen Cameron574f05d2015-01-23 16:43:20 -06004667 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4668
4669 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004670 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004671 cmd->scsi_done(cmd);
4672 return 0;
4673 }
Webb Scales73153fe2015-04-23 09:35:04 -05004674 c = cmd_tagged_alloc(h, cmd);
Stephen Cameron574f05d2015-01-23 16:43:20 -06004675
Stephen Cameron407863c2015-01-23 16:44:19 -06004676 /*
4677 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004678 * Retries always go down the normal I/O path.
4679 */
4680 if (likely(cmd->retries == 0 &&
4681 cmd->request->cmd_type == REQ_TYPE_FS &&
4682 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004683 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
4684 if (rc == 0)
4685 return 0;
4686 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
Webb Scales73153fe2015-04-23 09:35:04 -05004687 hpsa_cmd_resolve_and_free(h, c);
Webb Scales592a0ad2015-04-23 09:32:48 -05004688 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004689 }
4690 }
4691 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4692}
4693
Webb Scales8ebc9242015-01-23 16:44:50 -06004694static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004695{
4696 unsigned long flags;
4697
Webb Scales8ebc9242015-01-23 16:44:50 -06004698 spin_lock_irqsave(&h->scan_lock, flags);
4699 h->scan_finished = 1;
4700 wake_up_all(&h->scan_wait_queue);
4701 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004702}
4703
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004704static void hpsa_scan_start(struct Scsi_Host *sh)
4705{
4706 struct ctlr_info *h = shost_to_hba(sh);
4707 unsigned long flags;
4708
Webb Scales8ebc9242015-01-23 16:44:50 -06004709 /*
4710 * Don't let rescans be initiated on a controller known to be locked
4711 * up. If the controller locks up *during* a rescan, that thread is
4712 * probably hosed, but at least we can prevent new rescan threads from
4713 * piling up on a locked up controller.
4714 */
4715 if (unlikely(lockup_detected(h)))
4716 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004717
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004718 /* wait until any scan already in progress is finished. */
4719 while (1) {
4720 spin_lock_irqsave(&h->scan_lock, flags);
4721 if (h->scan_finished)
4722 break;
4723 spin_unlock_irqrestore(&h->scan_lock, flags);
4724 wait_event(h->scan_wait_queue, h->scan_finished);
4725 /* Note: We don't need to worry about a race between this
4726 * thread and driver unload because the midlayer will
4727 * have incremented the reference count, so unload won't
4728 * happen if we're in here.
4729 */
4730 }
4731 h->scan_finished = 0; /* mark scan as in progress */
4732 spin_unlock_irqrestore(&h->scan_lock, flags);
4733
Webb Scales8ebc9242015-01-23 16:44:50 -06004734 if (unlikely(lockup_detected(h)))
4735 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004736
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004737 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4738
Webb Scales8ebc9242015-01-23 16:44:50 -06004739 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004740}
4741
Don Brace7c0a0222015-01-23 16:41:30 -06004742static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
4743{
Don Brace03383732015-01-23 16:43:30 -06004744 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
4745
4746 if (!logical_drive)
4747 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06004748
4749 if (qdepth < 1)
4750 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06004751 else if (qdepth > logical_drive->queue_depth)
4752 qdepth = logical_drive->queue_depth;
4753
4754 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06004755}
4756
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004757static int hpsa_scan_finished(struct Scsi_Host *sh,
4758 unsigned long elapsed_time)
4759{
4760 struct ctlr_info *h = shost_to_hba(sh);
4761 unsigned long flags;
4762 int finished;
4763
4764 spin_lock_irqsave(&h->scan_lock, flags);
4765 finished = h->scan_finished;
4766 spin_unlock_irqrestore(&h->scan_lock, flags);
4767 return finished;
4768}
4769
Robert Elliott2946e822015-04-23 09:35:09 -05004770static int hpsa_scsi_host_alloc(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004771{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004772 struct Scsi_Host *sh;
4773 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004774
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004775 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
Robert Elliott2946e822015-04-23 09:35:09 -05004776 if (sh == NULL) {
4777 dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
4778 return -ENOMEM;
4779 }
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004780
4781 sh->io_port = 0;
4782 sh->n_io_port = 0;
4783 sh->this_id = -1;
4784 sh->max_channel = 3;
4785 sh->max_cmd_len = MAX_COMMAND_SIZE;
4786 sh->max_lun = HPSA_MAX_LUN;
4787 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05004788 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06004789 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004790 sh->sg_tablesize = h->maxsgentries;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004791 sh->hostdata[0] = (unsigned long) h;
4792 sh->irq = h->intr[h->intr_mode];
4793 sh->unique_id = sh->irq;
Webb Scales73153fe2015-04-23 09:35:04 -05004794 error = scsi_init_shared_tag_map(sh, sh->can_queue);
4795 if (error) {
4796 dev_err(&h->pdev->dev,
4797 "%s: scsi_init_shared_tag_map failed for controller %d\n",
4798 __func__, h->ctlr);
Robert Elliott2946e822015-04-23 09:35:09 -05004799 scsi_host_put(sh);
4800 return error;
Webb Scales73153fe2015-04-23 09:35:04 -05004801 }
Robert Elliott2946e822015-04-23 09:35:09 -05004802 h->scsi_host = sh;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004803 return 0;
Robert Elliott2946e822015-04-23 09:35:09 -05004804}
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004805
Robert Elliott2946e822015-04-23 09:35:09 -05004806static int hpsa_scsi_add_host(struct ctlr_info *h)
4807{
4808 int rv;
4809
4810 rv = scsi_add_host(h->scsi_host, &h->pdev->dev);
4811 if (rv) {
4812 dev_err(&h->pdev->dev, "scsi_add_host failed\n");
4813 return rv;
4814 }
4815 scsi_scan_host(h->scsi_host);
4816 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004817}
4818
Webb Scalesb69324f2015-04-23 09:34:22 -05004819/*
Webb Scales73153fe2015-04-23 09:35:04 -05004820 * The block layer has already gone to the trouble of picking out a unique,
4821 * small-integer tag for this request. We use an offset from that value as
4822 * an index to select our command block. (The offset allows us to reserve the
4823 * low-numbered entries for our own uses.)
4824 */
4825static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
4826{
4827 int idx = scmd->request->tag;
4828
4829 if (idx < 0)
4830 return idx;
4831
4832 /* Offset to leave space for internal cmds. */
4833 return idx += HPSA_NRESERVED_CMDS;
4834}
4835
4836/*
Webb Scalesb69324f2015-04-23 09:34:22 -05004837 * Send a TEST_UNIT_READY command to the specified LUN using the specified
4838 * reply queue; returns zero if the unit is ready, and non-zero otherwise.
4839 */
4840static int hpsa_send_test_unit_ready(struct ctlr_info *h,
4841 struct CommandList *c, unsigned char lunaddr[],
4842 int reply_queue)
4843{
4844 int rc;
4845
4846 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
4847 (void) fill_cmd(c, TEST_UNIT_READY, h,
4848 NULL, 0, 0, lunaddr, TYPE_CMD);
4849 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
4850 if (rc)
4851 return rc;
4852 /* no unmap needed here because no data xfer. */
4853
4854 /* Check if the unit is already ready. */
4855 if (c->err_info->CommandStatus == CMD_SUCCESS)
4856 return 0;
4857
4858 /*
4859 * The first command sent after reset will receive "unit attention" to
4860 * indicate that the LUN has been reset...this is actually what we're
4861 * looking for (but, success is good too).
4862 */
4863 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
4864 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
4865 (c->err_info->SenseInfo[2] == NO_SENSE ||
4866 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
4867 return 0;
4868
4869 return 1;
4870}
4871
4872/*
4873 * Wait for a TEST_UNIT_READY command to complete, retrying as necessary;
4874 * returns zero when the unit is ready, and non-zero when giving up.
4875 */
4876static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h,
4877 struct CommandList *c,
4878 unsigned char lunaddr[], int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004879{
Tomas Henzl89193582014-02-21 16:25:05 -06004880 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004881 int count = 0;
4882 int waittime = 1; /* seconds */
Webb Scalesb69324f2015-04-23 09:34:22 -05004883
4884 /* Send test unit ready until device ready, or give up. */
4885 for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) {
4886
4887 /*
4888 * Wait for a bit. do this first, because if we send
4889 * the TUR right away, the reset will just abort it.
4890 */
4891 msleep(1000 * waittime);
4892
4893 rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue);
4894 if (!rc)
4895 break;
4896
4897 /* Increase wait time with each try, up to a point. */
4898 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
4899 waittime *= 2;
4900
4901 dev_warn(&h->pdev->dev,
4902 "waiting %d secs for device to become ready.\n",
4903 waittime);
4904 }
4905
4906 return rc;
4907}
4908
4909static int wait_for_device_to_become_ready(struct ctlr_info *h,
4910 unsigned char lunaddr[],
4911 int reply_queue)
4912{
4913 int first_queue;
4914 int last_queue;
4915 int rq;
4916 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004917 struct CommandList *c;
4918
Stephen Cameron45fcb862015-01-23 16:43:04 -06004919 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004920
Webb Scalesb69324f2015-04-23 09:34:22 -05004921 /*
4922 * If no specific reply queue was requested, then send the TUR
4923 * repeatedly, requesting a reply on each reply queue; otherwise execute
4924 * the loop exactly once using only the specified queue.
4925 */
4926 if (reply_queue == DEFAULT_REPLY_QUEUE) {
4927 first_queue = 0;
4928 last_queue = h->nreply_queues - 1;
4929 } else {
4930 first_queue = reply_queue;
4931 last_queue = reply_queue;
4932 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004933
Webb Scalesb69324f2015-04-23 09:34:22 -05004934 for (rq = first_queue; rq <= last_queue; rq++) {
4935 rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq);
Webb Scales25163bd2015-04-23 09:32:00 -05004936 if (rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004937 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004938 }
4939
4940 if (rc)
4941 dev_warn(&h->pdev->dev, "giving up on device.\n");
4942 else
4943 dev_warn(&h->pdev->dev, "device is ready.\n");
4944
Stephen Cameron45fcb862015-01-23 16:43:04 -06004945 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004946 return rc;
4947}
4948
4949/* Need at least one of these error handlers to keep ../scsi/hosts.c from
4950 * complaining. Doing a host- or bus-reset can't do anything good here.
4951 */
4952static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
4953{
4954 int rc;
4955 struct ctlr_info *h;
4956 struct hpsa_scsi_dev_t *dev;
Webb Scales73153fe2015-04-23 09:35:04 -05004957 char msg[40];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004958
4959 /* find the controller to which the command to be aborted was sent */
4960 h = sdev_to_hba(scsicmd->device);
4961 if (h == NULL) /* paranoia */
4962 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06004963
4964 if (lockup_detected(h))
4965 return FAILED;
4966
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004967 dev = scsicmd->device->hostdata;
4968 if (!dev) {
4969 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
4970 "device lookup failed.\n");
4971 return FAILED;
4972 }
Webb Scales25163bd2015-04-23 09:32:00 -05004973
4974 /* if controller locked up, we can guarantee command won't complete */
4975 if (lockup_detected(h)) {
Webb Scales73153fe2015-04-23 09:35:04 -05004976 sprintf(msg, "cmd %d RESET FAILED, lockup detected",
4977 hpsa_get_cmd_index(scsicmd));
4978 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05004979 return FAILED;
4980 }
4981
4982 /* this reset request might be the result of a lockup; check */
4983 if (detect_controller_lockup(h)) {
Webb Scales73153fe2015-04-23 09:35:04 -05004984 sprintf(msg, "cmd %d RESET FAILED, new lockup detected",
4985 hpsa_get_cmd_index(scsicmd));
4986 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05004987 return FAILED;
4988 }
4989
4990 hpsa_show_dev_msg(KERN_WARNING, h, dev, "resetting");
4991
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004992 /* send a reset to the SCSI LUN which the command was sent to */
Webb Scales25163bd2015-04-23 09:32:00 -05004993 rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN,
4994 DEFAULT_REPLY_QUEUE);
Webb Scalesb69324f2015-04-23 09:34:22 -05004995 if (rc == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004996 return SUCCESS;
4997
Webb Scales25163bd2015-04-23 09:32:00 -05004998 dev_warn(&h->pdev->dev,
4999 "scsi %d:%d:%d:%d reset failed\n",
5000 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005001 return FAILED;
5002}
5003
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005004static void swizzle_abort_tag(u8 *tag)
5005{
5006 u8 original_tag[8];
5007
5008 memcpy(original_tag, tag, 8);
5009 tag[0] = original_tag[3];
5010 tag[1] = original_tag[2];
5011 tag[2] = original_tag[1];
5012 tag[3] = original_tag[0];
5013 tag[4] = original_tag[7];
5014 tag[5] = original_tag[6];
5015 tag[6] = original_tag[5];
5016 tag[7] = original_tag[4];
5017}
5018
Scott Teel17eb87d2014-02-18 13:55:28 -06005019static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06005020 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06005021{
Don Brace2b08b3e2015-01-23 16:41:09 -06005022 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06005023 if (c->cmd_type == CMD_IOACCEL1) {
5024 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
5025 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06005026 tag = le64_to_cpu(cm1->tag);
5027 *tagupper = cpu_to_le32(tag >> 32);
5028 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005029 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06005030 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06005031 if (c->cmd_type == CMD_IOACCEL2) {
5032 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
5033 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06005034 /* upper tag not used in ioaccel2 mode */
5035 memset(tagupper, 0, sizeof(*tagupper));
5036 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005037 return;
5038 }
Don Brace2b08b3e2015-01-23 16:41:09 -06005039 tag = le64_to_cpu(c->Header.tag);
5040 *tagupper = cpu_to_le32(tag >> 32);
5041 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06005042}
5043
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005044static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005045 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005046{
5047 int rc = IO_OK;
5048 struct CommandList *c;
5049 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06005050 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005051
Stephen Cameron45fcb862015-01-23 16:43:04 -06005052 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005053
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005054 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005055 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005056 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005057 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005058 swizzle_abort_tag(&c->Request.CDB[4]);
Webb Scales25163bd2015-04-23 09:32:00 -05005059 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06005060 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005061 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005062 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005063 /* no unmap needed here because no data xfer. */
5064
5065 ei = c->err_info;
5066 switch (ei->CommandStatus) {
5067 case CMD_SUCCESS:
5068 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05005069 case CMD_TMF_STATUS:
5070 rc = hpsa_evaluate_tmf_status(h, c);
5071 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005072 case CMD_UNABORTABLE: /* Very common, don't make noise. */
5073 rc = -1;
5074 break;
5075 default:
5076 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005077 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06005078 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005079 rc = -1;
5080 break;
5081 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005082 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06005083 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
5084 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005085 return rc;
5086}
5087
Stephen Cameron8be986c2015-04-23 09:34:06 -05005088static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h,
5089 struct CommandList *command_to_abort, int reply_queue)
5090{
5091 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5092 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
5093 struct io_accel2_cmd *c2a =
5094 &h->ioaccel2_cmd_pool[command_to_abort->cmdindex];
Webb Scalesa58e7e52015-04-23 09:34:16 -05005095 struct scsi_cmnd *scmd = command_to_abort->scsi_cmd;
Stephen Cameron8be986c2015-04-23 09:34:06 -05005096 struct hpsa_scsi_dev_t *dev = scmd->device->hostdata;
5097
5098 /*
5099 * We're overlaying struct hpsa_tmf_struct on top of something which
5100 * was allocated as a struct io_accel2_cmd, so we better be sure it
5101 * actually fits, and doesn't overrun the error info space.
5102 */
5103 BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) >
5104 sizeof(struct io_accel2_cmd));
5105 BUG_ON(offsetof(struct io_accel2_cmd, error_data) <
5106 offsetof(struct hpsa_tmf_struct, error_len) +
5107 sizeof(ac->error_len));
5108
5109 c->cmd_type = IOACCEL2_TMF;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005110 c->scsi_cmd = SCSI_CMD_BUSY;
5111
Stephen Cameron8be986c2015-04-23 09:34:06 -05005112 /* Adjust the DMA address to point to the accelerated command buffer */
5113 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
5114 (c->cmdindex * sizeof(struct io_accel2_cmd));
5115 BUG_ON(c->busaddr & 0x0000007F);
5116
5117 memset(ac, 0, sizeof(*c2)); /* yes this is correct */
5118 ac->iu_type = IOACCEL2_IU_TMF_TYPE;
5119 ac->reply_queue = reply_queue;
5120 ac->tmf = IOACCEL2_TMF_ABORT;
5121 ac->it_nexus = cpu_to_le32(dev->ioaccel_handle);
5122 memset(ac->lun_id, 0, sizeof(ac->lun_id));
5123 ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT);
5124 ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag));
5125 ac->error_ptr = cpu_to_le64(c->busaddr +
5126 offsetof(struct io_accel2_cmd, error_data));
5127 ac->error_len = cpu_to_le32(sizeof(c2->error_data));
5128}
5129
Scott Teel54b6e9e2014-02-18 13:56:45 -06005130/* ioaccel2 path firmware cannot handle abort task requests.
5131 * Change abort requests to physical target reset, and send to the
5132 * address of the physical disk used for the ioaccel 2 command.
5133 * Return 0 on success (IO_OK)
5134 * -1 on failure
5135 */
5136
5137static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005138 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06005139{
5140 int rc = IO_OK;
5141 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
5142 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
5143 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
5144 unsigned char *psa = &phys_scsi3addr[0];
5145
5146 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06005147 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005148 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
5149 if (dev == NULL) {
5150 dev_warn(&h->pdev->dev,
5151 "Cannot abort: no device pointer for command.\n");
5152 return -1; /* not abortable */
5153 }
5154
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005155 if (h->raid_offload_debug > 0)
5156 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05005157 "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 -06005158 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05005159 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005160 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
5161 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
5162
Scott Teel54b6e9e2014-02-18 13:56:45 -06005163 if (!dev->offload_enabled) {
5164 dev_warn(&h->pdev->dev,
5165 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
5166 return -1; /* not abortable */
5167 }
5168
5169 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
5170 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
5171 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
5172 return -1; /* not abortable */
5173 }
5174
5175 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005176 if (h->raid_offload_debug > 0)
5177 dev_info(&h->pdev->dev,
5178 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5179 psa[0], psa[1], psa[2], psa[3],
5180 psa[4], psa[5], psa[6], psa[7]);
Webb Scales25163bd2015-04-23 09:32:00 -05005181 rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005182 if (rc != 0) {
5183 dev_warn(&h->pdev->dev,
5184 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5185 psa[0], psa[1], psa[2], psa[3],
5186 psa[4], psa[5], psa[6], psa[7]);
5187 return rc; /* failed to reset */
5188 }
5189
5190 /* wait for device to recover */
Webb Scalesb69324f2015-04-23 09:34:22 -05005191 if (wait_for_device_to_become_ready(h, psa, reply_queue) != 0) {
Scott Teel54b6e9e2014-02-18 13:56:45 -06005192 dev_warn(&h->pdev->dev,
5193 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5194 psa[0], psa[1], psa[2], psa[3],
5195 psa[4], psa[5], psa[6], psa[7]);
5196 return -1; /* failed to recover */
5197 }
5198
5199 /* device recovered */
5200 dev_info(&h->pdev->dev,
5201 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5202 psa[0], psa[1], psa[2], psa[3],
5203 psa[4], psa[5], psa[6], psa[7]);
5204
5205 return rc; /* success */
5206}
5207
Stephen Cameron8be986c2015-04-23 09:34:06 -05005208static int hpsa_send_abort_ioaccel2(struct ctlr_info *h,
5209 struct CommandList *abort, int reply_queue)
5210{
5211 int rc = IO_OK;
5212 struct CommandList *c;
5213 __le32 taglower, tagupper;
5214 struct hpsa_scsi_dev_t *dev;
5215 struct io_accel2_cmd *c2;
5216
5217 dev = abort->scsi_cmd->device->hostdata;
5218 if (!dev->offload_enabled && !dev->hba_ioaccel_enabled)
5219 return -1;
5220
5221 c = cmd_alloc(h);
5222 setup_ioaccel2_abort_cmd(c, h, abort, reply_queue);
5223 c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5224 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
5225 hpsa_get_tag(h, abort, &taglower, &tagupper);
5226 dev_dbg(&h->pdev->dev,
5227 "%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n",
5228 __func__, tagupper, taglower);
5229 /* no unmap needed here because no data xfer. */
5230
5231 dev_dbg(&h->pdev->dev,
5232 "%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n",
5233 __func__, tagupper, taglower, c2->error_data.serv_response);
5234 switch (c2->error_data.serv_response) {
5235 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
5236 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
5237 rc = 0;
5238 break;
5239 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
5240 case IOACCEL2_SERV_RESPONSE_FAILURE:
5241 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
5242 rc = -1;
5243 break;
5244 default:
5245 dev_warn(&h->pdev->dev,
5246 "%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n",
5247 __func__, tagupper, taglower,
5248 c2->error_data.serv_response);
5249 rc = -1;
5250 }
5251 cmd_free(h, c);
5252 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__,
5253 tagupper, taglower);
5254 return rc;
5255}
5256
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005257static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005258 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005259{
Stephen Cameron8be986c2015-04-23 09:34:06 -05005260 /*
5261 * ioccelerator mode 2 commands should be aborted via the
Scott Teel54b6e9e2014-02-18 13:56:45 -06005262 * accelerated path, since RAID path is unaware of these commands,
Stephen Cameron8be986c2015-04-23 09:34:06 -05005263 * but not all underlying firmware can handle abort TMF.
5264 * Change abort to physical device reset when abort TMF is unsupported.
Scott Teel54b6e9e2014-02-18 13:56:45 -06005265 */
Stephen Cameron8be986c2015-04-23 09:34:06 -05005266 if (abort->cmd_type == CMD_IOACCEL2) {
5267 if (HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags)
5268 return hpsa_send_abort_ioaccel2(h, abort,
5269 reply_queue);
5270 else
5271 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05005272 abort, reply_queue);
Stephen Cameron8be986c2015-04-23 09:34:06 -05005273 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005274 return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05005275}
5276
5277/* Find out which reply queue a command was meant to return on */
5278static int hpsa_extract_reply_queue(struct ctlr_info *h,
5279 struct CommandList *c)
5280{
5281 if (c->cmd_type == CMD_IOACCEL2)
5282 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
5283 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005284}
5285
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005286/*
5287 * Limit concurrency of abort commands to prevent
5288 * over-subscription of commands
5289 */
5290static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
5291{
5292#define ABORT_CMD_WAIT_MSECS 5000
5293 return !wait_event_timeout(h->abort_cmd_wait_queue,
5294 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
5295 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
5296}
5297
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005298/* Send an abort for the specified command.
5299 * If the device and controller support it,
5300 * send a task abort request.
5301 */
5302static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
5303{
5304
Webb Scalesa58e7e52015-04-23 09:34:16 -05005305 int rc;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005306 struct ctlr_info *h;
5307 struct hpsa_scsi_dev_t *dev;
5308 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005309 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
5310 char msg[256]; /* For debug messaging. */
5311 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06005312 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05005313 int refcount, reply_queue;
5314
5315 if (sc == NULL)
5316 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005317
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005318 if (sc->device == NULL)
5319 return FAILED;
5320
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005321 /* Find the controller of the command to be aborted */
5322 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005323 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005324 return FAILED;
5325
Webb Scales25163bd2015-04-23 09:32:00 -05005326 /* Find the device of the command to be aborted */
5327 dev = sc->device->hostdata;
5328 if (!dev) {
5329 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
5330 msg);
Don Bracee3458932015-01-23 16:44:24 -06005331 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05005332 }
5333
5334 /* If controller locked up, we can guarantee command won't complete */
5335 if (lockup_detected(h)) {
5336 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5337 "ABORT FAILED, lockup detected");
5338 return FAILED;
5339 }
5340
5341 /* This is a good time to check if controller lockup has occurred */
5342 if (detect_controller_lockup(h)) {
5343 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5344 "ABORT FAILED, new lockup detected");
5345 return FAILED;
5346 }
Don Bracee3458932015-01-23 16:44:24 -06005347
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005348 /* Check that controller supports some kind of task abort */
5349 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
5350 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
5351 return FAILED;
5352
5353 memset(msg, 0, sizeof(msg));
Robert Elliott4b761552015-04-23 09:33:54 -05005354 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005355 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05005356 sc->device->id, sc->device->lun,
Robert Elliott4b761552015-04-23 09:33:54 -05005357 "Aborting command", sc);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005358
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005359 /* Get SCSI command to be aborted */
5360 abort = (struct CommandList *) sc->host_scribble;
5361 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005362 /* This can happen if the command already completed. */
5363 return SUCCESS;
5364 }
5365 refcount = atomic_inc_return(&abort->refcount);
5366 if (refcount == 1) { /* Command is done already. */
5367 cmd_free(h, abort);
5368 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005369 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005370
5371 /* Don't bother trying the abort if we know it won't work. */
5372 if (abort->cmd_type != CMD_IOACCEL2 &&
5373 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
5374 cmd_free(h, abort);
5375 return FAILED;
5376 }
5377
Webb Scalesa58e7e52015-04-23 09:34:16 -05005378 /*
5379 * Check that we're aborting the right command.
5380 * It's possible the CommandList already completed and got re-used.
5381 */
5382 if (abort->scsi_cmd != sc) {
5383 cmd_free(h, abort);
5384 return SUCCESS;
5385 }
5386
5387 abort->abort_pending = true;
Scott Teel17eb87d2014-02-18 13:55:28 -06005388 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005389 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06005390 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06005391 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005392 if (as != NULL)
Robert Elliott4b761552015-04-23 09:33:54 -05005393 ml += sprintf(msg+ml,
5394 "CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ",
5395 as->cmd_len, as->cmnd[0], as->cmnd[1],
5396 as->serial_number);
5397 dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005398 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Robert Elliott4b761552015-04-23 09:33:54 -05005399
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005400 /*
5401 * Command is in flight, or possibly already completed
5402 * by the firmware (but not to the scsi mid layer) but we can't
5403 * distinguish which. Send the abort down.
5404 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005405 if (wait_for_available_abort_cmd(h)) {
5406 dev_warn(&h->pdev->dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005407 "%s FAILED, timeout waiting for an abort command to become available.\n",
5408 msg);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005409 cmd_free(h, abort);
5410 return FAILED;
5411 }
Webb Scales25163bd2015-04-23 09:32:00 -05005412 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005413 atomic_inc(&h->abort_cmds_available);
5414 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005415 if (rc != 0) {
Robert Elliott4b761552015-04-23 09:33:54 -05005416 dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005417 hpsa_show_dev_msg(KERN_WARNING, h, dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005418 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06005419 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005420 return FAILED;
5421 }
Robert Elliott4b761552015-04-23 09:33:54 -05005422 dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg);
Webb Scalesa58e7e52015-04-23 09:34:16 -05005423 wait_event(h->abort_sync_wait_queue,
5424 abort->scsi_cmd != sc || lockup_detected(h));
Webb Scales281a7fd2015-01-23 16:43:35 -06005425 cmd_free(h, abort);
Webb Scalesa58e7e52015-04-23 09:34:16 -05005426 return !lockup_detected(h) ? SUCCESS : FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005427}
5428
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005429/*
Webb Scales73153fe2015-04-23 09:35:04 -05005430 * For operations with an associated SCSI command, a command block is allocated
5431 * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the
5432 * block request tag as an index into a table of entries. cmd_tagged_free() is
5433 * the complement, although cmd_free() may be called instead.
5434 */
5435static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
5436 struct scsi_cmnd *scmd)
5437{
5438 int idx = hpsa_get_cmd_index(scmd);
5439 struct CommandList *c = h->cmd_pool + idx;
5440
5441 if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) {
5442 dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n",
5443 idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1);
5444 /* The index value comes from the block layer, so if it's out of
5445 * bounds, it's probably not our bug.
5446 */
5447 BUG();
5448 }
5449
5450 atomic_inc(&c->refcount);
5451 if (unlikely(!hpsa_is_cmd_idle(c))) {
5452 /*
5453 * We expect that the SCSI layer will hand us a unique tag
5454 * value. Thus, there should never be a collision here between
5455 * two requests...because if the selected command isn't idle
5456 * then someone is going to be very disappointed.
5457 */
5458 dev_err(&h->pdev->dev,
5459 "tag collision (tag=%d) in cmd_tagged_alloc().\n",
5460 idx);
5461 if (c->scsi_cmd != NULL)
5462 scsi_print_command(c->scsi_cmd);
5463 scsi_print_command(scmd);
5464 }
5465
5466 hpsa_cmd_partial_init(h, idx, c);
5467 return c;
5468}
5469
5470static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c)
5471{
5472 /*
5473 * Release our reference to the block. We don't need to do anything
5474 * else to free it, because it is accessed by index. (There's no point
5475 * in checking the result of the decrement, since we cannot guarantee
5476 * that there isn't a concurrent abort which is also accessing it.)
5477 */
5478 (void)atomic_dec(&c->refcount);
5479}
5480
5481/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005482 * For operations that cannot sleep, a command block is allocated at init,
5483 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5484 * which ones are free or in use. Lock must be held when calling this.
5485 * cmd_free() is the complement.
Robert Elliottbf43caf2015-04-23 09:33:38 -05005486 * This function never gives up and returns NULL. If it hangs,
5487 * another thread must call cmd_free() to free some tags.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005488 */
Webb Scales281a7fd2015-01-23 16:43:35 -06005489
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005490static struct CommandList *cmd_alloc(struct ctlr_info *h)
5491{
5492 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005493 int refcount, i;
Webb Scales73153fe2015-04-23 09:35:04 -05005494 int offset = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005495
Robert Elliott33811022015-01-23 16:43:41 -06005496 /*
5497 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005498 * multiple threads could get in here, and one thread could
5499 * be scanning through the list of bits looking for a free
5500 * one, but the free ones are always behind him, and other
5501 * threads sneak in behind him and eat them before he can
5502 * get to them, so that while there is always a free one, a
5503 * very unlucky thread might be starved anyway, never able to
5504 * beat the other threads. In reality, this happens so
5505 * infrequently as to be indistinguishable from never.
Webb Scales73153fe2015-04-23 09:35:04 -05005506 *
5507 * Note that we start allocating commands before the SCSI host structure
5508 * is initialized. Since the search starts at bit zero, this
5509 * all works, since we have at least one command structure available;
5510 * however, it means that the structures with the low indexes have to be
5511 * reserved for driver-initiated requests, while requests from the block
5512 * layer will use the higher indexes.
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005513 */
5514
Webb Scales281a7fd2015-01-23 16:43:35 -06005515 for (;;) {
Webb Scales73153fe2015-04-23 09:35:04 -05005516 i = find_next_zero_bit(h->cmd_pool_bits,
5517 HPSA_NRESERVED_CMDS,
5518 offset);
5519 if (unlikely(i >= HPSA_NRESERVED_CMDS)) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005520 offset = 0;
5521 continue;
5522 }
5523 c = h->cmd_pool + i;
5524 refcount = atomic_inc_return(&c->refcount);
5525 if (unlikely(refcount > 1)) {
5526 cmd_free(h, c); /* already in use */
Webb Scales73153fe2015-04-23 09:35:04 -05005527 offset = (i + 1) % HPSA_NRESERVED_CMDS;
Webb Scales281a7fd2015-01-23 16:43:35 -06005528 continue;
5529 }
5530 set_bit(i & (BITS_PER_LONG - 1),
5531 h->cmd_pool_bits + (i / BITS_PER_LONG));
5532 break; /* it's ours now. */
5533 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05005534 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005535 return c;
5536}
5537
Webb Scales73153fe2015-04-23 09:35:04 -05005538/*
5539 * This is the complementary operation to cmd_alloc(). Note, however, in some
5540 * corner cases it may also be used to free blocks allocated by
5541 * cmd_tagged_alloc() in which case the ref-count decrement does the trick and
5542 * the clear-bit is harmless.
5543 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005544static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5545{
Webb Scales281a7fd2015-01-23 16:43:35 -06005546 if (atomic_dec_and_test(&c->refcount)) {
5547 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005548
Webb Scales281a7fd2015-01-23 16:43:35 -06005549 i = c - h->cmd_pool;
5550 clear_bit(i & (BITS_PER_LONG - 1),
5551 h->cmd_pool_bits + (i / BITS_PER_LONG));
5552 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005553}
5554
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005555#ifdef CONFIG_COMPAT
5556
Don Brace42a91642014-11-14 17:26:27 -06005557static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
5558 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005559{
5560 IOCTL32_Command_struct __user *arg32 =
5561 (IOCTL32_Command_struct __user *) arg;
5562 IOCTL_Command_struct arg64;
5563 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5564 int err;
5565 u32 cp;
5566
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005567 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005568 err = 0;
5569 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5570 sizeof(arg64.LUN_info));
5571 err |= copy_from_user(&arg64.Request, &arg32->Request,
5572 sizeof(arg64.Request));
5573 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5574 sizeof(arg64.error_info));
5575 err |= get_user(arg64.buf_size, &arg32->buf_size);
5576 err |= get_user(cp, &arg32->buf);
5577 arg64.buf = compat_ptr(cp);
5578 err |= copy_to_user(p, &arg64, sizeof(arg64));
5579
5580 if (err)
5581 return -EFAULT;
5582
Don Brace42a91642014-11-14 17:26:27 -06005583 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005584 if (err)
5585 return err;
5586 err |= copy_in_user(&arg32->error_info, &p->error_info,
5587 sizeof(arg32->error_info));
5588 if (err)
5589 return -EFAULT;
5590 return err;
5591}
5592
5593static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06005594 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005595{
5596 BIG_IOCTL32_Command_struct __user *arg32 =
5597 (BIG_IOCTL32_Command_struct __user *) arg;
5598 BIG_IOCTL_Command_struct arg64;
5599 BIG_IOCTL_Command_struct __user *p =
5600 compat_alloc_user_space(sizeof(arg64));
5601 int err;
5602 u32 cp;
5603
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005604 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005605 err = 0;
5606 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5607 sizeof(arg64.LUN_info));
5608 err |= copy_from_user(&arg64.Request, &arg32->Request,
5609 sizeof(arg64.Request));
5610 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5611 sizeof(arg64.error_info));
5612 err |= get_user(arg64.buf_size, &arg32->buf_size);
5613 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5614 err |= get_user(cp, &arg32->buf);
5615 arg64.buf = compat_ptr(cp);
5616 err |= copy_to_user(p, &arg64, sizeof(arg64));
5617
5618 if (err)
5619 return -EFAULT;
5620
Don Brace42a91642014-11-14 17:26:27 -06005621 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005622 if (err)
5623 return err;
5624 err |= copy_in_user(&arg32->error_info, &p->error_info,
5625 sizeof(arg32->error_info));
5626 if (err)
5627 return -EFAULT;
5628 return err;
5629}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005630
Don Brace42a91642014-11-14 17:26:27 -06005631static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005632{
5633 switch (cmd) {
5634 case CCISS_GETPCIINFO:
5635 case CCISS_GETINTINFO:
5636 case CCISS_SETINTINFO:
5637 case CCISS_GETNODENAME:
5638 case CCISS_SETNODENAME:
5639 case CCISS_GETHEARTBEAT:
5640 case CCISS_GETBUSTYPES:
5641 case CCISS_GETFIRMVER:
5642 case CCISS_GETDRIVVER:
5643 case CCISS_REVALIDVOLS:
5644 case CCISS_DEREGDISK:
5645 case CCISS_REGNEWDISK:
5646 case CCISS_REGNEWD:
5647 case CCISS_RESCANDISK:
5648 case CCISS_GETLUNINFO:
5649 return hpsa_ioctl(dev, cmd, arg);
5650
5651 case CCISS_PASSTHRU32:
5652 return hpsa_ioctl32_passthru(dev, cmd, arg);
5653 case CCISS_BIG_PASSTHRU32:
5654 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
5655
5656 default:
5657 return -ENOIOCTLCMD;
5658 }
5659}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005660#endif
5661
5662static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5663{
5664 struct hpsa_pci_info pciinfo;
5665
5666 if (!argp)
5667 return -EINVAL;
5668 pciinfo.domain = pci_domain_nr(h->pdev->bus);
5669 pciinfo.bus = h->pdev->bus->number;
5670 pciinfo.dev_fn = h->pdev->devfn;
5671 pciinfo.board_id = h->board_id;
5672 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5673 return -EFAULT;
5674 return 0;
5675}
5676
5677static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
5678{
5679 DriverVer_type DriverVer;
5680 unsigned char vmaj, vmin, vsubmin;
5681 int rc;
5682
5683 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
5684 &vmaj, &vmin, &vsubmin);
5685 if (rc != 3) {
5686 dev_info(&h->pdev->dev, "driver version string '%s' "
5687 "unrecognized.", HPSA_DRIVER_VERSION);
5688 vmaj = 0;
5689 vmin = 0;
5690 vsubmin = 0;
5691 }
5692 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
5693 if (!argp)
5694 return -EINVAL;
5695 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
5696 return -EFAULT;
5697 return 0;
5698}
5699
5700static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5701{
5702 IOCTL_Command_struct iocommand;
5703 struct CommandList *c;
5704 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005705 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005706 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005707
5708 if (!argp)
5709 return -EINVAL;
5710 if (!capable(CAP_SYS_RAWIO))
5711 return -EPERM;
5712 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
5713 return -EFAULT;
5714 if ((iocommand.buf_size < 1) &&
5715 (iocommand.Request.Type.Direction != XFER_NONE)) {
5716 return -EINVAL;
5717 }
5718 if (iocommand.buf_size > 0) {
5719 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
5720 if (buff == NULL)
Robert Elliott2dd02d72015-04-23 09:33:43 -05005721 return -ENOMEM;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005722 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005723 /* Copy the data into the buffer we created */
5724 if (copy_from_user(buff, iocommand.buf,
5725 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005726 rc = -EFAULT;
5727 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005728 }
5729 } else {
5730 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005731 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005732 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005733 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05005734
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005735 /* Fill in the command type */
5736 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005737 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005738 /* Fill in Command Header */
5739 c->Header.ReplyQueue = 0; /* unused in simple mode */
5740 if (iocommand.buf_size > 0) { /* buffer to fill */
5741 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005742 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005743 } else { /* no buffers to fill */
5744 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005745 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005746 }
5747 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005748
5749 /* Fill in Request block */
5750 memcpy(&c->Request, &iocommand.Request,
5751 sizeof(c->Request));
5752
5753 /* Fill in the scatter gather information */
5754 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005755 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005756 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005757 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
5758 c->SG[0].Addr = cpu_to_le64(0);
5759 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005760 rc = -ENOMEM;
5761 goto out;
5762 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005763 c->SG[0].Addr = cpu_to_le64(temp64);
5764 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
5765 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005766 }
Webb Scales25163bd2015-04-23 09:32:00 -05005767 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05005768 if (iocommand.buf_size > 0)
5769 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005770 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005771 if (rc) {
5772 rc = -EIO;
5773 goto out;
5774 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005775
5776 /* Copy the error information out */
5777 memcpy(&iocommand.error_info, c->err_info,
5778 sizeof(iocommand.error_info));
5779 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005780 rc = -EFAULT;
5781 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005782 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005783 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005784 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005785 /* Copy the data out of the buffer we created */
5786 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005787 rc = -EFAULT;
5788 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005789 }
5790 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005791out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005792 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005793out_kfree:
5794 kfree(buff);
5795 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005796}
5797
5798static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5799{
5800 BIG_IOCTL_Command_struct *ioc;
5801 struct CommandList *c;
5802 unsigned char **buff = NULL;
5803 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005804 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005805 BYTE sg_used = 0;
5806 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005807 u32 left;
5808 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005809 BYTE __user *data_ptr;
5810
5811 if (!argp)
5812 return -EINVAL;
5813 if (!capable(CAP_SYS_RAWIO))
5814 return -EPERM;
5815 ioc = (BIG_IOCTL_Command_struct *)
5816 kmalloc(sizeof(*ioc), GFP_KERNEL);
5817 if (!ioc) {
5818 status = -ENOMEM;
5819 goto cleanup1;
5820 }
5821 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
5822 status = -EFAULT;
5823 goto cleanup1;
5824 }
5825 if ((ioc->buf_size < 1) &&
5826 (ioc->Request.Type.Direction != XFER_NONE)) {
5827 status = -EINVAL;
5828 goto cleanup1;
5829 }
5830 /* Check kmalloc limits using all SGs */
5831 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
5832 status = -EINVAL;
5833 goto cleanup1;
5834 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005835 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005836 status = -EINVAL;
5837 goto cleanup1;
5838 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005839 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005840 if (!buff) {
5841 status = -ENOMEM;
5842 goto cleanup1;
5843 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06005844 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005845 if (!buff_size) {
5846 status = -ENOMEM;
5847 goto cleanup1;
5848 }
5849 left = ioc->buf_size;
5850 data_ptr = ioc->buf;
5851 while (left) {
5852 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
5853 buff_size[sg_used] = sz;
5854 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
5855 if (buff[sg_used] == NULL) {
5856 status = -ENOMEM;
5857 goto cleanup1;
5858 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005859 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005860 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05005861 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005862 goto cleanup1;
5863 }
5864 } else
5865 memset(buff[sg_used], 0, sz);
5866 left -= sz;
5867 data_ptr += sz;
5868 sg_used++;
5869 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005870 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05005871
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005872 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005873 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005874 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005875 c->Header.SGList = (u8) sg_used;
5876 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005877 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005878 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
5879 if (ioc->buf_size > 0) {
5880 int i;
5881 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005882 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005883 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005884 if (dma_mapping_error(&h->pdev->dev,
5885 (dma_addr_t) temp64)) {
5886 c->SG[i].Addr = cpu_to_le64(0);
5887 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005888 hpsa_pci_unmap(h->pdev, c, i,
5889 PCI_DMA_BIDIRECTIONAL);
5890 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005891 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005892 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005893 c->SG[i].Addr = cpu_to_le64(temp64);
5894 c->SG[i].Len = cpu_to_le32(buff_size[i]);
5895 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005896 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005897 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005898 }
Webb Scales25163bd2015-04-23 09:32:00 -05005899 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005900 if (sg_used)
5901 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005902 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05005903 if (status) {
5904 status = -EIO;
5905 goto cleanup0;
5906 }
5907
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005908 /* Copy the error information out */
5909 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
5910 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005911 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005912 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005913 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005914 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005915 int i;
5916
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005917 /* Copy the data out of the buffer we created */
5918 BYTE __user *ptr = ioc->buf;
5919 for (i = 0; i < sg_used; i++) {
5920 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005921 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005922 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005923 }
5924 ptr += buff_size[i];
5925 }
5926 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005927 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005928cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06005929 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005930cleanup1:
5931 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06005932 int i;
5933
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005934 for (i = 0; i < sg_used; i++)
5935 kfree(buff[i]);
5936 kfree(buff);
5937 }
5938 kfree(buff_size);
5939 kfree(ioc);
5940 return status;
5941}
5942
5943static void check_ioctl_unit_attention(struct ctlr_info *h,
5944 struct CommandList *c)
5945{
5946 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5947 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
5948 (void) check_for_unit_attention(h, c);
5949}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005950
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005951/*
5952 * ioctl
5953 */
Don Brace42a91642014-11-14 17:26:27 -06005954static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005955{
5956 struct ctlr_info *h;
5957 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005958 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005959
5960 h = sdev_to_hba(dev);
5961
5962 switch (cmd) {
5963 case CCISS_DEREGDISK:
5964 case CCISS_REGNEWDISK:
5965 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005966 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005967 return 0;
5968 case CCISS_GETPCIINFO:
5969 return hpsa_getpciinfo_ioctl(h, argp);
5970 case CCISS_GETDRIVVER:
5971 return hpsa_getdrivver_ioctl(h, argp);
5972 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005973 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005974 return -EAGAIN;
5975 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005976 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005977 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005978 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06005979 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005980 return -EAGAIN;
5981 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06005982 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005983 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005984 default:
5985 return -ENOTTY;
5986 }
5987}
5988
Robert Elliottbf43caf2015-04-23 09:33:38 -05005989static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005990 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005991{
5992 struct CommandList *c;
5993
5994 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05005995
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005996 /* fill_cmd can't fail here, no data buffer to map */
5997 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005998 RAID_CTLR_LUNID, TYPE_MSG);
5999 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
6000 c->waiting = NULL;
6001 enqueue_cmd_and_start_io(h, c);
6002 /* Don't wait for completion, the reset won't complete. Don't free
6003 * the command either. This is the last command we will send before
6004 * re-initializing everything, so it doesn't matter and won't leak.
6005 */
Robert Elliottbf43caf2015-04-23 09:33:38 -05006006 return;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006007}
6008
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006009static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006010 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006011 int cmd_type)
6012{
6013 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006014 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006015
6016 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006017 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006018 c->Header.ReplyQueue = 0;
6019 if (buff != NULL && size > 0) {
6020 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006021 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006022 } else {
6023 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006024 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006025 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006026 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
6027
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006028 if (cmd_type == TYPE_CMD) {
6029 switch (cmd) {
6030 case HPSA_INQUIRY:
6031 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006032 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006033 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006034 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006035 }
6036 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006037 c->Request.type_attr_dir =
6038 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006039 c->Request.Timeout = 0;
6040 c->Request.CDB[0] = HPSA_INQUIRY;
6041 c->Request.CDB[4] = size & 0xFF;
6042 break;
6043 case HPSA_REPORT_LOG:
6044 case HPSA_REPORT_PHYS:
6045 /* Talking to controller so It's a physical command
6046 mode = 00 target = 0. Nothing to write.
6047 */
6048 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006049 c->Request.type_attr_dir =
6050 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006051 c->Request.Timeout = 0;
6052 c->Request.CDB[0] = cmd;
6053 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6054 c->Request.CDB[7] = (size >> 16) & 0xFF;
6055 c->Request.CDB[8] = (size >> 8) & 0xFF;
6056 c->Request.CDB[9] = size & 0xFF;
6057 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006058 case HPSA_CACHE_FLUSH:
6059 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006060 c->Request.type_attr_dir =
6061 TYPE_ATTR_DIR(cmd_type,
6062 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006063 c->Request.Timeout = 0;
6064 c->Request.CDB[0] = BMIC_WRITE;
6065 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05006066 c->Request.CDB[7] = (size >> 8) & 0xFF;
6067 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006068 break;
6069 case TEST_UNIT_READY:
6070 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006071 c->Request.type_attr_dir =
6072 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006073 c->Request.Timeout = 0;
6074 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006075 case HPSA_GET_RAID_MAP:
6076 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006077 c->Request.type_attr_dir =
6078 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006079 c->Request.Timeout = 0;
6080 c->Request.CDB[0] = HPSA_CISS_READ;
6081 c->Request.CDB[1] = cmd;
6082 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6083 c->Request.CDB[7] = (size >> 16) & 0xFF;
6084 c->Request.CDB[8] = (size >> 8) & 0xFF;
6085 c->Request.CDB[9] = size & 0xFF;
6086 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006087 case BMIC_SENSE_CONTROLLER_PARAMETERS:
6088 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006089 c->Request.type_attr_dir =
6090 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006091 c->Request.Timeout = 0;
6092 c->Request.CDB[0] = BMIC_READ;
6093 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
6094 c->Request.CDB[7] = (size >> 16) & 0xFF;
6095 c->Request.CDB[8] = (size >> 8) & 0xFF;
6096 break;
Don Brace03383732015-01-23 16:43:30 -06006097 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
6098 c->Request.CDBLen = 10;
6099 c->Request.type_attr_dir =
6100 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6101 c->Request.Timeout = 0;
6102 c->Request.CDB[0] = BMIC_READ;
6103 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
6104 c->Request.CDB[7] = (size >> 16) & 0xFF;
6105 c->Request.CDB[8] = (size >> 8) & 0XFF;
6106 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006107 default:
6108 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
6109 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006110 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006111 }
6112 } else if (cmd_type == TYPE_MSG) {
6113 switch (cmd) {
6114
6115 case HPSA_DEVICE_RESET_MSG:
6116 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006117 c->Request.type_attr_dir =
6118 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006119 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006120 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6121 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05006122 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006123 /* If bytes 4-7 are zero, it means reset the */
6124 /* LunID device */
6125 c->Request.CDB[4] = 0x00;
6126 c->Request.CDB[5] = 0x00;
6127 c->Request.CDB[6] = 0x00;
6128 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006129 break;
6130 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006131 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06006132 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006133 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
6134 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006135 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006136 c->Request.type_attr_dir =
6137 TYPE_ATTR_DIR(cmd_type,
6138 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006139 c->Request.Timeout = 0; /* Don't time out */
6140 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
6141 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
6142 c->Request.CDB[2] = 0x00; /* reserved */
6143 c->Request.CDB[3] = 0x00; /* reserved */
6144 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006145 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006146 c->Request.CDB[12] = 0x00; /* reserved */
6147 c->Request.CDB[13] = 0x00; /* reserved */
6148 c->Request.CDB[14] = 0x00; /* reserved */
6149 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006150 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006151 default:
6152 dev_warn(&h->pdev->dev, "unknown message type %d\n",
6153 cmd);
6154 BUG();
6155 }
6156 } else {
6157 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
6158 BUG();
6159 }
6160
Stephen M. Camerona505b862014-11-14 17:27:04 -06006161 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006162 case XFER_READ:
6163 pci_dir = PCI_DMA_FROMDEVICE;
6164 break;
6165 case XFER_WRITE:
6166 pci_dir = PCI_DMA_TODEVICE;
6167 break;
6168 case XFER_NONE:
6169 pci_dir = PCI_DMA_NONE;
6170 break;
6171 default:
6172 pci_dir = PCI_DMA_BIDIRECTIONAL;
6173 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006174 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
6175 return -1;
6176 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006177}
6178
6179/*
6180 * Map (physical) PCI mem into (virtual) kernel space
6181 */
6182static void __iomem *remap_pci_mem(ulong base, ulong size)
6183{
6184 ulong page_base = ((ulong) base) & PAGE_MASK;
6185 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05006186 void __iomem *page_remapped = ioremap_nocache(page_base,
6187 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006188
6189 return page_remapped ? (page_remapped + page_offs) : NULL;
6190}
6191
Matt Gates254f7962012-05-01 11:43:06 -05006192static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006193{
Matt Gates254f7962012-05-01 11:43:06 -05006194 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006195}
6196
Stephen M. Cameron900c5442010-02-04 08:42:35 -06006197static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006198{
6199 return h->access.intr_pending(h);
6200}
6201
6202static inline long interrupt_not_for_us(struct ctlr_info *h)
6203{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006204 return (h->access.intr_pending(h) == 0) ||
6205 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006206}
6207
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006208static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
6209 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006210{
6211 if (unlikely(tag_index >= h->nr_cmds)) {
6212 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
6213 return 1;
6214 }
6215 return 0;
6216}
6217
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05006218static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006219{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006220 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06006221 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
6222 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05006223 complete_scsi_command(c);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006224 else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006225 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06006226}
6227
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006228
6229static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06006230{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006231#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
6232#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006233 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006234 return tag & ~HPSA_SIMPLE_ERROR_BITS;
6235 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06006236}
6237
Don Brace303932f2010-02-04 08:42:40 -06006238/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006239static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06006240 u32 raw_tag)
6241{
6242 u32 tag_index;
6243 struct CommandList *c;
6244
Don Bracef2405db2015-01-23 16:43:09 -06006245 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006246 if (!bad_tag(h, tag_index, raw_tag)) {
6247 c = h->cmd_pool + tag_index;
6248 finish_cmd(c);
6249 }
Don Brace303932f2010-02-04 08:42:40 -06006250}
6251
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006252/* Some controllers, like p400, will give us one interrupt
6253 * after a soft reset, even if we turned interrupts off.
6254 * Only need to check for this in the hpsa_xxx_discard_completions
6255 * functions.
6256 */
6257static int ignore_bogus_interrupt(struct ctlr_info *h)
6258{
6259 if (likely(!reset_devices))
6260 return 0;
6261
6262 if (likely(h->interrupts_enabled))
6263 return 0;
6264
6265 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
6266 "(known firmware bug.) Ignoring.\n");
6267
6268 return 1;
6269}
6270
Matt Gates254f7962012-05-01 11:43:06 -05006271/*
6272 * Convert &h->q[x] (passed to interrupt handlers) back to h.
6273 * Relies on (h-q[x] == x) being true for x such that
6274 * 0 <= x < MAX_REPLY_QUEUES.
6275 */
6276static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006277{
Matt Gates254f7962012-05-01 11:43:06 -05006278 return container_of((queue - *queue), struct ctlr_info, q[0]);
6279}
6280
6281static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
6282{
6283 struct ctlr_info *h = queue_to_hba(queue);
6284 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006285 u32 raw_tag;
6286
6287 if (ignore_bogus_interrupt(h))
6288 return IRQ_NONE;
6289
6290 if (interrupt_not_for_us(h))
6291 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006292 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006293 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006294 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006295 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006296 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006297 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006298 return IRQ_HANDLED;
6299}
6300
Matt Gates254f7962012-05-01 11:43:06 -05006301static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006302{
Matt Gates254f7962012-05-01 11:43:06 -05006303 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006304 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006305 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006306
6307 if (ignore_bogus_interrupt(h))
6308 return IRQ_NONE;
6309
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006310 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006311 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006312 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006313 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006314 return IRQ_HANDLED;
6315}
6316
Matt Gates254f7962012-05-01 11:43:06 -05006317static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006318{
Matt Gates254f7962012-05-01 11:43:06 -05006319 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06006320 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006321 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006322
6323 if (interrupt_not_for_us(h))
6324 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006325 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006326 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006327 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006328 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006329 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006330 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006331 }
6332 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006333 return IRQ_HANDLED;
6334}
6335
Matt Gates254f7962012-05-01 11:43:06 -05006336static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006337{
Matt Gates254f7962012-05-01 11:43:06 -05006338 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006339 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006340 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006341
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006342 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006343 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06006344 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006345 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006346 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006347 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006348 return IRQ_HANDLED;
6349}
6350
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006351/* Send a message CDB to the firmware. Careful, this only works
6352 * in simple mode, not performant mode due to the tag lookup.
6353 * We only ever use this immediately after a controller reset.
6354 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006355static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
6356 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006357{
6358 struct Command {
6359 struct CommandListHeader CommandHeader;
6360 struct RequestBlock Request;
6361 struct ErrDescriptor ErrorDescriptor;
6362 };
6363 struct Command *cmd;
6364 static const size_t cmd_sz = sizeof(*cmd) +
6365 sizeof(cmd->ErrorDescriptor);
6366 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06006367 __le32 paddr32;
6368 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006369 void __iomem *vaddr;
6370 int i, err;
6371
6372 vaddr = pci_ioremap_bar(pdev, 0);
6373 if (vaddr == NULL)
6374 return -ENOMEM;
6375
6376 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
6377 * CCISS commands, so they must be allocated from the lower 4GiB of
6378 * memory.
6379 */
6380 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6381 if (err) {
6382 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06006383 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006384 }
6385
6386 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
6387 if (cmd == NULL) {
6388 iounmap(vaddr);
6389 return -ENOMEM;
6390 }
6391
6392 /* This must fit, because of the 32-bit consistent DMA mask. Also,
6393 * although there's no guarantee, we assume that the address is at
6394 * least 4-byte aligned (most likely, it's page-aligned).
6395 */
Don Brace2b08b3e2015-01-23 16:41:09 -06006396 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006397
6398 cmd->CommandHeader.ReplyQueue = 0;
6399 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006400 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06006401 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006402 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
6403
6404 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006405 cmd->Request.type_attr_dir =
6406 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006407 cmd->Request.Timeout = 0; /* Don't time out */
6408 cmd->Request.CDB[0] = opcode;
6409 cmd->Request.CDB[1] = type;
6410 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006411 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06006412 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006413 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006414
Don Brace2b08b3e2015-01-23 16:41:09 -06006415 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006416
6417 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
6418 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06006419 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006420 break;
6421 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
6422 }
6423
6424 iounmap(vaddr);
6425
6426 /* we leak the DMA buffer here ... no choice since the controller could
6427 * still complete the command.
6428 */
6429 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
6430 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
6431 opcode, type);
6432 return -ETIMEDOUT;
6433 }
6434
6435 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
6436
6437 if (tag & HPSA_ERROR_BIT) {
6438 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
6439 opcode, type);
6440 return -EIO;
6441 }
6442
6443 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
6444 opcode, type);
6445 return 0;
6446}
6447
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006448#define hpsa_noop(p) hpsa_message(p, 3, 0)
6449
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006450static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06006451 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006452{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006453
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006454 if (use_doorbell) {
6455 /* For everything after the P600, the PCI power state method
6456 * of resetting the controller doesn't work, so we have this
6457 * other way using the doorbell register.
6458 */
6459 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006460 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05006461
Justin Lindley00701a92014-05-29 10:52:47 -05006462 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05006463 * doorbell reset and before any attempt to talk to the board
6464 * at all to ensure that this actually works and doesn't fall
6465 * over in some weird corner cases.
6466 */
Justin Lindley00701a92014-05-29 10:52:47 -05006467 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006468 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006469
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006470 /* Quoting from the Open CISS Specification: "The Power
6471 * Management Control/Status Register (CSR) controls the power
6472 * state of the device. The normal operating state is D0,
6473 * CSR=00h. The software off state is D3, CSR=03h. To reset
6474 * the controller, place the interface device in D3 then to D0,
6475 * this causes a secondary PCI reset which will reset the
6476 * controller." */
6477
Don Brace2662cab2015-01-23 16:41:25 -06006478 int rc = 0;
6479
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006480 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06006481
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006482 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006483 rc = pci_set_power_state(pdev, PCI_D3hot);
6484 if (rc)
6485 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006486
6487 msleep(500);
6488
6489 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006490 rc = pci_set_power_state(pdev, PCI_D0);
6491 if (rc)
6492 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02006493
6494 /*
6495 * The P600 requires a small delay when changing states.
6496 * Otherwise we may think the board did not reset and we bail.
6497 * This for kdump only and is particular to the P600.
6498 */
6499 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006500 }
6501 return 0;
6502}
6503
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006504static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006505{
6506 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006507 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006508}
6509
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006510static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006511{
6512 char *driver_version;
6513 int i, size = sizeof(cfgtable->driver_version);
6514
6515 driver_version = kmalloc(size, GFP_KERNEL);
6516 if (!driver_version)
6517 return -ENOMEM;
6518
6519 init_driver_version(driver_version, size);
6520 for (i = 0; i < size; i++)
6521 writeb(driver_version[i], &cfgtable->driver_version[i]);
6522 kfree(driver_version);
6523 return 0;
6524}
6525
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006526static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
6527 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006528{
6529 int i;
6530
6531 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6532 driver_ver[i] = readb(&cfgtable->driver_version[i]);
6533}
6534
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006535static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006536{
6537
6538 char *driver_ver, *old_driver_ver;
6539 int rc, size = sizeof(cfgtable->driver_version);
6540
6541 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6542 if (!old_driver_ver)
6543 return -ENOMEM;
6544 driver_ver = old_driver_ver + size;
6545
6546 /* After a reset, the 32 bytes of "driver version" in the cfgtable
6547 * should have been changed, otherwise we know the reset failed.
6548 */
6549 init_driver_version(old_driver_ver, size);
6550 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6551 rc = !memcmp(driver_ver, old_driver_ver, size);
6552 kfree(old_driver_ver);
6553 return rc;
6554}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006555/* This does a hard reset of the controller using PCI power management
6556 * states or the using the doorbell register.
6557 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006558static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006559{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006560 u64 cfg_offset;
6561 u32 cfg_base_addr;
6562 u64 cfg_base_addr_index;
6563 void __iomem *vaddr;
6564 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006565 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006566 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006567 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006568 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006569 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006570
6571 /* For controllers as old as the P600, this is very nearly
6572 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006573 *
6574 * pci_save_state(pci_dev);
6575 * pci_set_power_state(pci_dev, PCI_D3hot);
6576 * pci_set_power_state(pci_dev, PCI_D0);
6577 * pci_restore_state(pci_dev);
6578 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006579 * For controllers newer than the P600, the pci power state
6580 * method of resetting doesn't work so we have another way
6581 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006582 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006583
Robert Elliott60f923b2015-01-23 16:42:06 -06006584 if (!ctlr_is_resettable(board_id)) {
6585 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06006586 return -ENODEV;
6587 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05006588
6589 /* if controller is soft- but not hard resettable... */
6590 if (!ctlr_is_hard_resettable(board_id))
6591 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006592
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006593 /* Save the PCI command register */
6594 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006595 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006596
6597 /* find the first memory BAR, so we can find the cfg table */
6598 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
6599 if (rc)
6600 return rc;
6601 vaddr = remap_pci_mem(paddr, 0x250);
6602 if (!vaddr)
6603 return -ENOMEM;
6604
6605 /* find cfgtable in order to check if reset via doorbell is supported */
6606 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
6607 &cfg_base_addr_index, &cfg_offset);
6608 if (rc)
6609 goto unmap_vaddr;
6610 cfgtable = remap_pci_mem(pci_resource_start(pdev,
6611 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
6612 if (!cfgtable) {
6613 rc = -ENOMEM;
6614 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006615 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006616 rc = write_driver_ver_to_cfgtable(cfgtable);
6617 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06006618 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006619
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006620 /* If reset via doorbell register is supported, use that.
6621 * There are two such methods. Favor the newest method.
6622 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006623 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006624 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6625 if (use_doorbell) {
6626 use_doorbell = DOORBELL_CTLR_RESET2;
6627 } else {
6628 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6629 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006630 dev_warn(&pdev->dev,
6631 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006632 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006633 goto unmap_cfgtable;
6634 }
6635 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006636
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006637 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
6638 if (rc)
6639 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006640
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006641 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006642 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006643
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006644 /* Some devices (notably the HP Smart Array 5i Controller)
6645 need a little pause here */
6646 msleep(HPSA_POST_RESET_PAUSE_MSECS);
6647
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006648 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
6649 if (rc) {
6650 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06006651 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006652 goto unmap_cfgtable;
6653 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006654
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006655 rc = controller_reset_failed(vaddr);
6656 if (rc < 0)
6657 goto unmap_cfgtable;
6658 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006659 dev_warn(&pdev->dev, "Unable to successfully reset "
6660 "controller. Will try soft reset.\n");
6661 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006662 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006663 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006664 }
6665
6666unmap_cfgtable:
6667 iounmap(cfgtable);
6668
6669unmap_vaddr:
6670 iounmap(vaddr);
6671 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006672}
6673
6674/*
6675 * We cannot read the structure directly, for portability we must use
6676 * the io functions.
6677 * This is for debug only.
6678 */
Don Brace42a91642014-11-14 17:26:27 -06006679static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006680{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006681#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006682 int i;
6683 char temp_name[17];
6684
6685 dev_info(dev, "Controller Configuration information\n");
6686 dev_info(dev, "------------------------------------\n");
6687 for (i = 0; i < 4; i++)
6688 temp_name[i] = readb(&(tb->Signature[i]));
6689 temp_name[4] = '\0';
6690 dev_info(dev, " Signature = %s\n", temp_name);
6691 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
6692 dev_info(dev, " Transport methods supported = 0x%x\n",
6693 readl(&(tb->TransportSupport)));
6694 dev_info(dev, " Transport methods active = 0x%x\n",
6695 readl(&(tb->TransportActive)));
6696 dev_info(dev, " Requested transport Method = 0x%x\n",
6697 readl(&(tb->HostWrite.TransportRequest)));
6698 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
6699 readl(&(tb->HostWrite.CoalIntDelay)));
6700 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
6701 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06006702 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006703 readl(&(tb->CmdsOutMax)));
6704 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
6705 for (i = 0; i < 16; i++)
6706 temp_name[i] = readb(&(tb->ServerName[i]));
6707 temp_name[16] = '\0';
6708 dev_info(dev, " Server Name = %s\n", temp_name);
6709 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
6710 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006711#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006712}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006713
6714static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
6715{
6716 int i, offset, mem_type, bar_type;
6717
6718 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
6719 return 0;
6720 offset = 0;
6721 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
6722 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
6723 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
6724 offset += 4;
6725 else {
6726 mem_type = pci_resource_flags(pdev, i) &
6727 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
6728 switch (mem_type) {
6729 case PCI_BASE_ADDRESS_MEM_TYPE_32:
6730 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
6731 offset += 4; /* 32 bit */
6732 break;
6733 case PCI_BASE_ADDRESS_MEM_TYPE_64:
6734 offset += 8;
6735 break;
6736 default: /* reserved in PCI 2.2 */
6737 dev_warn(&pdev->dev,
6738 "base address is invalid\n");
6739 return -1;
6740 break;
6741 }
6742 }
6743 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
6744 return i + 1;
6745 }
6746 return -1;
6747}
6748
Robert Elliottcc64c812015-04-23 09:33:12 -05006749static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
6750{
6751 if (h->msix_vector) {
6752 if (h->pdev->msix_enabled)
6753 pci_disable_msix(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05006754 h->msix_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05006755 } else if (h->msi_vector) {
6756 if (h->pdev->msi_enabled)
6757 pci_disable_msi(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05006758 h->msi_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05006759 }
6760}
6761
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006762/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06006763 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006764 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006765static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006766{
6767#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05006768 int err, i;
6769 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
6770
6771 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
6772 hpsa_msix_entries[i].vector = 0;
6773 hpsa_msix_entries[i].entry = i;
6774 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006775
6776 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006777 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
6778 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006779 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006780 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006781 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006782 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05006783 if (h->msix_vector > num_online_cpus())
6784 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006785 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
6786 1, h->msix_vector);
6787 if (err < 0) {
6788 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
6789 h->msix_vector = 0;
6790 goto single_msi_mode;
6791 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006792 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006793 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006794 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006795 h->msix_vector = err;
6796 for (i = 0; i < h->msix_vector; i++)
6797 h->intr[i] = hpsa_msix_entries[i].vector;
6798 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006799 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006800single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006801 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006802 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006803 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006804 h->msi_vector = 1;
6805 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006806 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006807 }
6808default_int_mode:
6809#endif /* CONFIG_PCI_MSI */
6810 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006811 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006812}
6813
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006814static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006815{
6816 int i;
6817 u32 subsystem_vendor_id, subsystem_device_id;
6818
6819 subsystem_vendor_id = pdev->subsystem_vendor;
6820 subsystem_device_id = pdev->subsystem_device;
6821 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
6822 subsystem_vendor_id;
6823
6824 for (i = 0; i < ARRAY_SIZE(products); i++)
6825 if (*board_id == products[i].board_id)
6826 return i;
6827
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05006828 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
6829 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
6830 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006831 dev_warn(&pdev->dev, "unrecognized board ID: "
6832 "0x%08x, ignoring.\n", *board_id);
6833 return -ENODEV;
6834 }
6835 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
6836}
6837
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006838static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
6839 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006840{
6841 int i;
6842
6843 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006844 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006845 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006846 *memory_bar = pci_resource_start(pdev, i);
6847 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006848 *memory_bar);
6849 return 0;
6850 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006851 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006852 return -ENODEV;
6853}
6854
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006855static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
6856 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006857{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006858 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006859 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006860 if (wait_for_ready)
6861 iterations = HPSA_BOARD_READY_ITERATIONS;
6862 else
6863 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006864
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006865 for (i = 0; i < iterations; i++) {
6866 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
6867 if (wait_for_ready) {
6868 if (scratchpad == HPSA_FIRMWARE_READY)
6869 return 0;
6870 } else {
6871 if (scratchpad != HPSA_FIRMWARE_READY)
6872 return 0;
6873 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006874 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
6875 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006876 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006877 return -ENODEV;
6878}
6879
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006880static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
6881 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
6882 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006883{
6884 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
6885 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
6886 *cfg_base_addr &= (u32) 0x0000ffff;
6887 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
6888 if (*cfg_base_addr_index == -1) {
6889 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
6890 return -ENODEV;
6891 }
6892 return 0;
6893}
6894
Robert Elliott195f2c62015-04-23 09:33:17 -05006895static void hpsa_free_cfgtables(struct ctlr_info *h)
6896{
Robert Elliott105a3db2015-04-23 09:33:48 -05006897 if (h->transtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05006898 iounmap(h->transtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05006899 h->transtable = NULL;
6900 }
6901 if (h->cfgtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05006902 iounmap(h->cfgtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05006903 h->cfgtable = NULL;
6904 }
Robert Elliott195f2c62015-04-23 09:33:17 -05006905}
6906
6907/* Find and map CISS config table and transfer table
6908+ * several items must be unmapped (freed) later
6909+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006910static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006911{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006912 u64 cfg_offset;
6913 u32 cfg_base_addr;
6914 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06006915 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006916 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006917
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006918 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
6919 &cfg_base_addr_index, &cfg_offset);
6920 if (rc)
6921 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006922 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006923 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006924 if (!h->cfgtable) {
6925 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006926 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06006927 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006928 rc = write_driver_ver_to_cfgtable(h->cfgtable);
6929 if (rc)
6930 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006931 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006932 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006933 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
6934 cfg_base_addr_index)+cfg_offset+trans_offset,
6935 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05006936 if (!h->transtable) {
6937 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
6938 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006939 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05006940 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006941 return 0;
6942}
6943
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006944static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006945{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006946#define MIN_MAX_COMMANDS 16
6947 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
6948
6949 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06006950
6951 /* Limit commands in memory limited kdump scenario. */
6952 if (reset_devices && h->max_commands > 32)
6953 h->max_commands = 32;
6954
Stephen Cameron41ce4c32015-04-23 09:31:47 -05006955 if (h->max_commands < MIN_MAX_COMMANDS) {
6956 dev_warn(&h->pdev->dev,
6957 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
6958 h->max_commands,
6959 MIN_MAX_COMMANDS);
6960 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006961 }
6962}
6963
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006964/* If the controller reports that the total max sg entries is greater than 512,
6965 * then we know that chained SG blocks work. (Original smart arrays did not
6966 * support chained SG blocks and would return zero for max sg entries.)
6967 */
6968static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
6969{
6970 return h->maxsgentries > 512;
6971}
6972
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006973/* Interrogate the hardware for some limits:
6974 * max commands, max SG elements without chaining, and with chaining,
6975 * SG chain block size, etc.
6976 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006977static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006978{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006979 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06006980 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006981 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006982 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006983 if (hpsa_supports_chained_sg_blocks(h)) {
6984 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006985 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06006986 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006987 h->maxsgentries--; /* save one for chain pointer */
6988 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006989 /*
6990 * Original smart arrays supported at most 31 s/g entries
6991 * embedded inline in the command (trying to use more
6992 * would lock up the controller)
6993 */
6994 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06006995 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06006996 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006997 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006998
6999 /* Find out what task management functions are supported and cache */
7000 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06007001 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
7002 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
7003 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
7004 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen Cameron8be986c2015-04-23 09:34:06 -05007005 if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
7006 dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007007}
7008
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007009static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
7010{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09007011 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007012 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007013 return false;
7014 }
7015 return true;
7016}
7017
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007018static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007019{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007020 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007021
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007022 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02007023 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
7024#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007025 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007026#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06007027 driver_support |= ENABLE_UNIT_ATTN;
7028 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007029}
7030
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007031/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
7032 * in a prefetch beyond physical memory.
7033 */
7034static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
7035{
7036 u32 dma_prefetch;
7037
7038 if (h->board_id != 0x3225103C)
7039 return;
7040 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
7041 dma_prefetch |= 0x8000;
7042 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
7043}
7044
Robert Elliottc706a792015-01-23 16:45:01 -06007045static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007046{
7047 int i;
7048 u32 doorbell_value;
7049 unsigned long flags;
7050 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007051 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007052 spin_lock_irqsave(&h->lock, flags);
7053 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7054 spin_unlock_irqrestore(&h->lock, flags);
7055 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06007056 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007057 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007058 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007059 }
Robert Elliottc706a792015-01-23 16:45:01 -06007060 return -ENODEV;
7061done:
7062 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007063}
7064
Robert Elliottc706a792015-01-23 16:45:01 -06007065static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007066{
7067 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007068 u32 doorbell_value;
7069 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007070
7071 /* under certain very rare conditions, this can take awhile.
7072 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
7073 * as we enter this code.)
7074 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007075 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05007076 if (h->remove_in_progress)
7077 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007078 spin_lock_irqsave(&h->lock, flags);
7079 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7080 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06007081 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06007082 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007083 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007084 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007085 }
Robert Elliottc706a792015-01-23 16:45:01 -06007086 return -ENODEV;
7087done:
7088 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007089}
7090
Robert Elliottc706a792015-01-23 16:45:01 -06007091/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007092static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007093{
7094 u32 trans_support;
7095
7096 trans_support = readl(&(h->cfgtable->TransportSupport));
7097 if (!(trans_support & SIMPLE_MODE))
7098 return -ENOTSUPP;
7099
7100 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007101
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007102 /* Update the field, and then ring the doorbell */
7103 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007104 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007105 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007106 if (hpsa_wait_for_mode_change_ack(h))
7107 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007108 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007109 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
7110 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007111 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007112 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007113error:
Stephen Cameron050f7142015-01-23 16:42:22 -06007114 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007115 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007116}
7117
Robert Elliott195f2c62015-04-23 09:33:17 -05007118/* free items allocated or mapped by hpsa_pci_init */
7119static void hpsa_free_pci_init(struct ctlr_info *h)
7120{
7121 hpsa_free_cfgtables(h); /* pci_init 4 */
7122 iounmap(h->vaddr); /* pci_init 3 */
Robert Elliott105a3db2015-04-23 09:33:48 -05007123 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007124 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Robert Elliott943a7022015-04-23 09:34:32 -05007125 /*
7126 * call pci_disable_device before pci_release_regions per
7127 * Documentation/PCI/pci.txt
7128 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007129 pci_disable_device(h->pdev); /* pci_init 1 */
Robert Elliott943a7022015-04-23 09:34:32 -05007130 pci_release_regions(h->pdev); /* pci_init 2 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007131}
7132
7133/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007134static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007135{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007136 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007137
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007138 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
7139 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06007140 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007141 h->product_name = products[prod_index].product_name;
7142 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007143
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007144 h->needs_abort_tags_swizzled =
7145 ctlr_needs_abort_tags_swizzled(h->board_id);
7146
Matthew Garrette5a44df2011-11-11 11:14:23 -05007147 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
7148 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
7149
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007150 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007151 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007152 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007153 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007154 return err;
7155 }
7156
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007157 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007158 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007159 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05007160 "failed to obtain PCI resources\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007161 pci_disable_device(h->pdev);
7162 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007163 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007164
7165 pci_set_master(h->pdev);
7166
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007167 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007168 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007169 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007170 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007171 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007172 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007173 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007174 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007175 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007176 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007177 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007178 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007179 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007180 err = hpsa_find_cfgtables(h);
7181 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007182 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007183 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007184
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007185 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007186 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05007187 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007188 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007189 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007190 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007191 err = hpsa_enter_simple_mode(h);
7192 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007193 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007194 return 0;
7195
Robert Elliott195f2c62015-04-23 09:33:17 -05007196clean4: /* cfgtables, vaddr, intmode+region, pci */
7197 hpsa_free_cfgtables(h);
7198clean3: /* vaddr, intmode+region, pci */
7199 iounmap(h->vaddr);
Robert Elliott105a3db2015-04-23 09:33:48 -05007200 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007201clean2: /* intmode+region, pci */
7202 hpsa_disable_interrupt_mode(h);
Robert Elliott943a7022015-04-23 09:34:32 -05007203 /*
7204 * call pci_disable_device before pci_release_regions per
7205 * Documentation/PCI/pci.txt
7206 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007207 pci_disable_device(h->pdev);
Robert Elliott943a7022015-04-23 09:34:32 -05007208 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007209 return err;
7210}
7211
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007212static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007213{
7214 int rc;
7215
7216#define HBA_INQUIRY_BYTE_COUNT 64
7217 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
7218 if (!h->hba_inquiry_data)
7219 return;
7220 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
7221 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
7222 if (rc != 0) {
7223 kfree(h->hba_inquiry_data);
7224 h->hba_inquiry_data = NULL;
7225 }
7226}
7227
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007228static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007229{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007230 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06007231 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007232
7233 if (!reset_devices)
7234 return 0;
7235
Tomas Henzl132aa222014-08-14 16:12:39 +02007236 /* kdump kernel is loading, we don't know in which state is
7237 * the pci interface. The dev->enable_cnt is equal zero
7238 * so we call enable+disable, wait a while and switch it on.
7239 */
7240 rc = pci_enable_device(pdev);
7241 if (rc) {
7242 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
7243 return -ENODEV;
7244 }
7245 pci_disable_device(pdev);
7246 msleep(260); /* a randomly chosen number */
7247 rc = pci_enable_device(pdev);
7248 if (rc) {
7249 dev_warn(&pdev->dev, "failed to enable device.\n");
7250 return -ENODEV;
7251 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007252
Tomas Henzl859c75a2014-09-12 14:44:15 +02007253 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06007254
Tomas Henzl3b747292015-01-23 16:41:20 -06007255 vaddr = pci_ioremap_bar(pdev, 0);
7256 if (vaddr == NULL) {
7257 rc = -ENOMEM;
7258 goto out_disable;
7259 }
7260 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
7261 iounmap(vaddr);
7262
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007263 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007264 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007265
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007266 /* -ENOTSUPP here means we cannot reset the controller
7267 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05007268 * "performant mode". Or, it might be 640x, which can't reset
7269 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007270 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06007271 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02007272 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007273
7274 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06007275 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007276 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
7277 if (hpsa_noop(pdev) == 0)
7278 break;
7279 else
7280 dev_warn(&pdev->dev, "no-op failed%s\n",
7281 (i < 11 ? "; re-trying" : ""));
7282 }
Tomas Henzl132aa222014-08-14 16:12:39 +02007283
7284out_disable:
7285
7286 pci_disable_device(pdev);
7287 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007288}
7289
Robert Elliott1fb7c982015-04-23 09:33:22 -05007290static void hpsa_free_cmd_pool(struct ctlr_info *h)
7291{
7292 kfree(h->cmd_pool_bits);
Robert Elliott105a3db2015-04-23 09:33:48 -05007293 h->cmd_pool_bits = NULL;
7294 if (h->cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007295 pci_free_consistent(h->pdev,
7296 h->nr_cmds * sizeof(struct CommandList),
7297 h->cmd_pool,
7298 h->cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007299 h->cmd_pool = NULL;
7300 h->cmd_pool_dhandle = 0;
7301 }
7302 if (h->errinfo_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007303 pci_free_consistent(h->pdev,
7304 h->nr_cmds * sizeof(struct ErrorInfo),
7305 h->errinfo_pool,
7306 h->errinfo_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007307 h->errinfo_pool = NULL;
7308 h->errinfo_pool_dhandle = 0;
7309 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05007310}
7311
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007312static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007313{
7314 h->cmd_pool_bits = kzalloc(
7315 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
7316 sizeof(unsigned long), GFP_KERNEL);
7317 h->cmd_pool = pci_alloc_consistent(h->pdev,
7318 h->nr_cmds * sizeof(*h->cmd_pool),
7319 &(h->cmd_pool_dhandle));
7320 h->errinfo_pool = pci_alloc_consistent(h->pdev,
7321 h->nr_cmds * sizeof(*h->errinfo_pool),
7322 &(h->errinfo_pool_dhandle));
7323 if ((h->cmd_pool_bits == NULL)
7324 || (h->cmd_pool == NULL)
7325 || (h->errinfo_pool == NULL)) {
7326 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06007327 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007328 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05007329 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007330 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06007331clean_up:
7332 hpsa_free_cmd_pool(h);
7333 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007334}
7335
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007336static void hpsa_irq_affinity_hints(struct ctlr_info *h)
7337{
Fabian Frederickec429952015-01-23 16:41:46 -06007338 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007339
7340 cpu = cpumask_first(cpu_online_mask);
7341 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06007342 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007343 cpu = cpumask_next(cpu, cpu_online_mask);
7344 }
7345}
7346
Robert Elliottec501a12015-01-23 16:41:40 -06007347/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
7348static void hpsa_free_irqs(struct ctlr_info *h)
7349{
7350 int i;
7351
7352 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
7353 /* Single reply queue, only one irq to free */
7354 i = h->intr_mode;
7355 irq_set_affinity_hint(h->intr[i], NULL);
7356 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007357 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007358 return;
7359 }
7360
7361 for (i = 0; i < h->msix_vector; i++) {
7362 irq_set_affinity_hint(h->intr[i], NULL);
7363 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007364 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007365 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007366 for (; i < MAX_REPLY_QUEUES; i++)
7367 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007368}
7369
Robert Elliott9ee61792015-01-23 16:42:32 -06007370/* returns 0 on success; cleans up and returns -Enn on error */
7371static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007372 irqreturn_t (*msixhandler)(int, void *),
7373 irqreturn_t (*intxhandler)(int, void *))
7374{
Matt Gates254f7962012-05-01 11:43:06 -05007375 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007376
Matt Gates254f7962012-05-01 11:43:06 -05007377 /*
7378 * initialize h->q[x] = x so that interrupt handlers know which
7379 * queue to process.
7380 */
7381 for (i = 0; i < MAX_REPLY_QUEUES; i++)
7382 h->q[i] = (u8) i;
7383
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007384 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05007385 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007386 for (i = 0; i < h->msix_vector; i++) {
Robert Elliott8b470042015-04-23 09:34:58 -05007387 sprintf(h->intrname[i], "%s-msix%d", h->devname, i);
Matt Gates254f7962012-05-01 11:43:06 -05007388 rc = request_irq(h->intr[i], msixhandler,
Robert Elliott8b470042015-04-23 09:34:58 -05007389 0, h->intrname[i],
Matt Gates254f7962012-05-01 11:43:06 -05007390 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007391 if (rc) {
7392 int j;
7393
7394 dev_err(&h->pdev->dev,
7395 "failed to get irq %d for %s\n",
7396 h->intr[i], h->devname);
7397 for (j = 0; j < i; j++) {
7398 free_irq(h->intr[j], &h->q[j]);
7399 h->q[j] = 0;
7400 }
7401 for (; j < MAX_REPLY_QUEUES; j++)
7402 h->q[j] = 0;
7403 return rc;
7404 }
7405 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007406 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05007407 } else {
7408 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007409 if (h->msix_vector > 0 || h->msi_vector) {
Robert Elliott8b470042015-04-23 09:34:58 -05007410 if (h->msix_vector)
7411 sprintf(h->intrname[h->intr_mode],
7412 "%s-msix", h->devname);
7413 else
7414 sprintf(h->intrname[h->intr_mode],
7415 "%s-msi", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05007416 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05007417 msixhandler, 0,
7418 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05007419 &h->q[h->intr_mode]);
7420 } else {
Robert Elliott8b470042015-04-23 09:34:58 -05007421 sprintf(h->intrname[h->intr_mode],
7422 "%s-intx", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05007423 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05007424 intxhandler, IRQF_SHARED,
7425 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05007426 &h->q[h->intr_mode]);
7427 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007428 irq_set_affinity_hint(h->intr[h->intr_mode], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05007429 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007430 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007431 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007432 h->intr[h->intr_mode], h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05007433 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007434 return -ENODEV;
7435 }
7436 return 0;
7437}
7438
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007439static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007440{
Robert Elliottbf43caf2015-04-23 09:33:38 -05007441 hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007442
7443 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
7444 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) {
7445 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
7446 return -1;
7447 }
7448
7449 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
7450 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) {
7451 dev_warn(&h->pdev->dev, "Board failed to become ready "
7452 "after soft reset.\n");
7453 return -1;
7454 }
7455
7456 return 0;
7457}
7458
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007459static void hpsa_free_reply_queues(struct ctlr_info *h)
7460{
7461 int i;
7462
7463 for (i = 0; i < h->nreply_queues; i++) {
7464 if (!h->reply_queue[i].head)
7465 continue;
Robert Elliott1fb7c982015-04-23 09:33:22 -05007466 pci_free_consistent(h->pdev,
7467 h->reply_queue_size,
7468 h->reply_queue[i].head,
7469 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007470 h->reply_queue[i].head = NULL;
7471 h->reply_queue[i].busaddr = 0;
7472 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007473 h->reply_queue_size = 0;
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007474}
7475
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007476static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
7477{
Robert Elliott105a3db2015-04-23 09:33:48 -05007478 hpsa_free_performant_mode(h); /* init_one 7 */
7479 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
7480 hpsa_free_cmd_pool(h); /* init_one 5 */
7481 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliott2946e822015-04-23 09:35:09 -05007482 scsi_host_put(h->scsi_host); /* init_one 3 */
7483 h->scsi_host = NULL; /* init_one 3 */
7484 hpsa_free_pci_init(h); /* init_one 2_5 */
Robert Elliott9ecd9532015-04-23 09:34:43 -05007485 free_percpu(h->lockup_detected); /* init_one 2 */
7486 h->lockup_detected = NULL; /* init_one 2 */
7487 if (h->resubmit_wq) {
7488 destroy_workqueue(h->resubmit_wq); /* init_one 1 */
7489 h->resubmit_wq = NULL;
7490 }
7491 if (h->rescan_ctlr_wq) {
7492 destroy_workqueue(h->rescan_ctlr_wq);
7493 h->rescan_ctlr_wq = NULL;
7494 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007495 kfree(h); /* init_one 1 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007496}
7497
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007498/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06007499static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007500{
Webb Scales281a7fd2015-01-23 16:43:35 -06007501 int i, refcount;
7502 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007503 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007504
Don Brace080ef1c2015-01-23 16:43:25 -06007505 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06007506 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007507 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007508 refcount = atomic_inc_return(&c->refcount);
7509 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05007510 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06007511 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05007512 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05007513 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06007514 }
7515 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007516 }
Webb Scales25163bd2015-04-23 09:32:00 -05007517 dev_warn(&h->pdev->dev,
7518 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007519}
7520
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007521static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
7522{
Rusty Russellc8ed0012015-03-05 10:49:19 +10307523 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007524
Rusty Russellc8ed0012015-03-05 10:49:19 +10307525 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007526 u32 *lockup_detected;
7527 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7528 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007529 }
7530 wmb(); /* be sure the per-cpu variables are out to memory */
7531}
7532
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007533static void controller_lockup_detected(struct ctlr_info *h)
7534{
7535 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007536 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007537
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007538 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7539 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007540 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7541 if (!lockup_detected) {
7542 /* no heartbeat, but controller gave us a zero. */
7543 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05007544 "lockup detected after %d but scratchpad register is zero\n",
7545 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007546 lockup_detected = 0xffffffff;
7547 }
7548 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007549 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05007550 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
7551 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007552 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06007553 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007554}
7555
Webb Scales25163bd2015-04-23 09:32:00 -05007556static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007557{
7558 u64 now;
7559 u32 heartbeat;
7560 unsigned long flags;
7561
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007562 now = get_jiffies_64();
7563 /* If we've received an interrupt recently, we're ok. */
7564 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007565 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007566 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007567
7568 /*
7569 * If we've already checked the heartbeat recently, we're ok.
7570 * This could happen if someone sends us a signal. We
7571 * otherwise don't care about signals in this thread.
7572 */
7573 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007574 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007575 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007576
7577 /* If heartbeat has not changed since we last looked, we're not ok. */
7578 spin_lock_irqsave(&h->lock, flags);
7579 heartbeat = readl(&h->cfgtable->HeartBeat);
7580 spin_unlock_irqrestore(&h->lock, flags);
7581 if (h->last_heartbeat == heartbeat) {
7582 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05007583 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007584 }
7585
7586 /* We're ok. */
7587 h->last_heartbeat = heartbeat;
7588 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05007589 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007590}
7591
Stephen M. Cameron98465902014-02-21 16:25:00 -06007592static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007593{
7594 int i;
7595 char *event_type;
7596
Stephen Camerone4aa3e62015-01-23 16:44:07 -06007597 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7598 return;
7599
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007600 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06007601 if ((h->transMethod & (CFGTBL_Trans_io_accel1
7602 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007603 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
7604 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
7605
7606 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
7607 event_type = "state change";
7608 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
7609 event_type = "configuration change";
7610 /* Stop sending new RAID offload reqs via the IO accelerator */
7611 scsi_block_requests(h->scsi_host);
7612 for (i = 0; i < h->ndevices; i++)
7613 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007614 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007615 /* Set 'accelerator path config change' bit */
7616 dev_warn(&h->pdev->dev,
7617 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
7618 h->events, event_type);
7619 writel(h->events, &(h->cfgtable->clear_event_notify));
7620 /* Set the "clear event notify field update" bit 6 */
7621 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7622 /* Wait until ctlr clears 'clear event notify field', bit 6 */
7623 hpsa_wait_for_clear_event_notify_ack(h);
7624 scsi_unblock_requests(h->scsi_host);
7625 } else {
7626 /* Acknowledge controller notification events. */
7627 writel(h->events, &(h->cfgtable->clear_event_notify));
7628 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7629 hpsa_wait_for_clear_event_notify_ack(h);
7630#if 0
7631 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7632 hpsa_wait_for_mode_change_ack(h);
7633#endif
7634 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007635 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007636}
7637
7638/* Check a register on the controller to see if there are configuration
7639 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06007640 * we should rescan the controller for devices.
7641 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007642 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06007643static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007644{
7645 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06007646 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007647
7648 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06007649 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007650}
7651
Stephen M. Cameron98465902014-02-21 16:25:00 -06007652/*
7653 * Check if any of the offline devices have become ready
7654 */
7655static int hpsa_offline_devices_ready(struct ctlr_info *h)
7656{
7657 unsigned long flags;
7658 struct offline_device_entry *d;
7659 struct list_head *this, *tmp;
7660
7661 spin_lock_irqsave(&h->offline_device_lock, flags);
7662 list_for_each_safe(this, tmp, &h->offline_device_list) {
7663 d = list_entry(this, struct offline_device_entry,
7664 offline_list);
7665 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007666 if (!hpsa_volume_offline(h, d->scsi3addr)) {
7667 spin_lock_irqsave(&h->offline_device_lock, flags);
7668 list_del(&d->offline_list);
7669 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007670 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007671 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007672 spin_lock_irqsave(&h->offline_device_lock, flags);
7673 }
7674 spin_unlock_irqrestore(&h->offline_device_lock, flags);
7675 return 0;
7676}
7677
Don Brace6636e7f2015-01-23 16:45:17 -06007678static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007679{
7680 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007681 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06007682 struct ctlr_info, rescan_ctlr_work);
7683
7684
7685 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007686 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007687
7688 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
7689 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007690 hpsa_ack_ctlr_events(h);
7691 hpsa_scan_start(h->scsi_host);
7692 scsi_host_put(h->scsi_host);
7693 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007694 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007695 if (!h->remove_in_progress)
7696 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007697 h->heartbeat_sample_interval);
7698 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007699}
7700
Don Brace6636e7f2015-01-23 16:45:17 -06007701static void hpsa_monitor_ctlr_worker(struct work_struct *work)
7702{
7703 unsigned long flags;
7704 struct ctlr_info *h = container_of(to_delayed_work(work),
7705 struct ctlr_info, monitor_ctlr_work);
7706
7707 detect_controller_lockup(h);
7708 if (lockup_detected(h))
7709 return;
7710
7711 spin_lock_irqsave(&h->lock, flags);
7712 if (!h->remove_in_progress)
7713 schedule_delayed_work(&h->monitor_ctlr_work,
7714 h->heartbeat_sample_interval);
7715 spin_unlock_irqrestore(&h->lock, flags);
7716}
7717
7718static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
7719 char *name)
7720{
7721 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06007722
Don Brace397ea9c2015-02-06 17:44:15 -06007723 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06007724 if (!wq)
7725 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
7726
7727 return wq;
7728}
7729
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007730static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007731{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007732 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007733 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007734 int try_soft_reset = 0;
7735 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007736 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007737
7738 if (number_of_controllers == 0)
7739 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007740
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007741 rc = hpsa_lookup_board_id(pdev, &board_id);
7742 if (rc < 0) {
7743 dev_warn(&pdev->dev, "Board ID not found\n");
7744 return rc;
7745 }
7746
7747 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007748 if (rc) {
7749 if (rc != -ENOTSUPP)
7750 return rc;
7751 /* If the reset fails in a particular way (it has no way to do
7752 * a proper hard reset, so returns -ENOTSUPP) we can try to do
7753 * a soft reset once we get the controller configured up to the
7754 * point that it can accept a command.
7755 */
7756 try_soft_reset = 1;
7757 rc = 0;
7758 }
7759
7760reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007761
Don Brace303932f2010-02-04 08:42:40 -06007762 /* Command structures must be aligned on a 32-byte boundary because
7763 * the 5 lower bits of the address are used by the hardware. and by
7764 * the driver. See comments in hpsa.h for more info.
7765 */
Don Brace303932f2010-02-04 08:42:40 -06007766 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007767 h = kzalloc(sizeof(*h), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05007768 if (!h) {
7769 dev_err(&pdev->dev, "Failed to allocate controller head\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007770 return -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05007771 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007772
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007773 h->pdev = pdev;
Robert Elliott105a3db2015-04-23 09:33:48 -05007774
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007775 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007776 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007777 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007778 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007779 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06007780 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007781 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007782
7783 /* Allocate and clear per-cpu variable lockup_detected */
7784 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007785 if (!h->lockup_detected) {
Robert Elliott105a3db2015-04-23 09:33:48 -05007786 dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007787 rc = -ENOMEM;
Robert Elliott2efa5922015-04-23 09:34:53 -05007788 goto clean1; /* aer/h */
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05007789 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007790 set_lockup_detected_for_all_cpus(h, 0);
7791
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007792 rc = hpsa_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05007793 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05007794 goto clean2; /* lu, aer/h */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007795
Robert Elliott2946e822015-04-23 09:35:09 -05007796 /* relies on h-> settings made by hpsa_pci_init, including
7797 * interrupt_mode h->intr */
7798 rc = hpsa_scsi_host_alloc(h);
7799 if (rc)
7800 goto clean2_5; /* pci, lu, aer/h */
7801
7802 sprintf(h->devname, HPSA "%d", h->scsi_host->host_no);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007803 h->ctlr = number_of_controllers;
7804 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007805
7806 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007807 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
7808 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007809 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007810 } else {
7811 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
7812 if (rc == 0) {
7813 dac = 0;
7814 } else {
7815 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott2946e822015-04-23 09:35:09 -05007816 goto clean3; /* shost, pci, lu, aer/h */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007817 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007818 }
7819
7820 /* make sure the board interrupts are off */
7821 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05007822
Robert Elliott105a3db2015-04-23 09:33:48 -05007823 rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
7824 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05007825 goto clean3; /* shost, pci, lu, aer/h */
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007826 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06007827 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05007828 goto clean4; /* irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05007829 rc = hpsa_alloc_sg_chain_blocks(h);
7830 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05007831 goto clean5; /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007832 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007833 init_waitqueue_head(&h->abort_cmd_wait_queue);
Webb Scalesa58e7e52015-04-23 09:34:16 -05007834 init_waitqueue_head(&h->abort_sync_wait_queue);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06007835 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007836
7837 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007838 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007839 h->hba_mode_enabled = 0;
Robert Elliott2946e822015-04-23 09:35:09 -05007840
Stephen M. Cameron9a413382011-05-03 14:59:41 -05007841 spin_lock_init(&h->devlock);
Robert Elliott105a3db2015-04-23 09:33:48 -05007842 rc = hpsa_put_ctlr_into_performant_mode(h);
7843 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05007844 goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */
7845
7846 /* hook into SCSI subsystem */
7847 rc = hpsa_scsi_add_host(h);
7848 if (rc)
7849 goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott2efa5922015-04-23 09:34:53 -05007850
7851 /* create the resubmit workqueue */
7852 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
7853 if (!h->rescan_ctlr_wq) {
7854 rc = -ENOMEM;
7855 goto clean7;
7856 }
7857
7858 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
7859 if (!h->resubmit_wq) {
7860 rc = -ENOMEM;
7861 goto clean7; /* aer/h */
7862 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007863
Robert Elliott105a3db2015-04-23 09:33:48 -05007864 /*
7865 * At this point, the controller is ready to take commands.
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007866 * Now, if reset_devices and the hard reset didn't work, try
7867 * the soft reset and see if that works.
7868 */
7869 if (try_soft_reset) {
7870
7871 /* This is kind of gross. We may or may not get a completion
7872 * from the soft reset command, and if we do, then the value
7873 * from the fifo may or may not be valid. So, we wait 10 secs
7874 * after the reset throwing away any completions we get during
7875 * that time. Unregister the interrupt handler and register
7876 * fake ones to scoop up any residual completions.
7877 */
7878 spin_lock_irqsave(&h->lock, flags);
7879 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7880 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06007881 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06007882 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007883 hpsa_intx_discard_completions);
7884 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06007885 dev_warn(&h->pdev->dev,
7886 "Failed to request_irq after soft reset.\n");
Robert Elliottd4987572015-04-23 09:34:37 -05007887 /*
Robert Elliottb2ef4802015-04-23 09:34:48 -05007888 * cannot goto clean7 or free_irqs will be called
7889 * again. Instead, do its work
7890 */
7891 hpsa_free_performant_mode(h); /* clean7 */
7892 hpsa_free_sg_chain_blocks(h); /* clean6 */
7893 hpsa_free_cmd_pool(h); /* clean5 */
7894 /*
7895 * skip hpsa_free_irqs(h) clean4 since that
7896 * was just called before request_irqs failed
Robert Elliottd4987572015-04-23 09:34:37 -05007897 */
7898 goto clean3;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007899 }
7900
7901 rc = hpsa_kdump_soft_reset(h);
7902 if (rc)
7903 /* Neither hard nor soft reset worked, we're hosed. */
Robert Elliott2946e822015-04-23 09:35:09 -05007904 goto clean9;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007905
7906 dev_info(&h->pdev->dev, "Board READY.\n");
7907 dev_info(&h->pdev->dev,
7908 "Waiting for stale completions to drain.\n");
7909 h->access.set_intr_mask(h, HPSA_INTR_ON);
7910 msleep(10000);
7911 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7912
7913 rc = controller_reset_failed(h->cfgtable);
7914 if (rc)
7915 dev_info(&h->pdev->dev,
7916 "Soft reset appears to have failed.\n");
7917
7918 /* since the controller's reset, we have to go back and re-init
7919 * everything. Easiest to just forget what we've done and do it
7920 * all over again.
7921 */
7922 hpsa_undo_allocations_after_kdump_soft_reset(h);
7923 try_soft_reset = 0;
7924 if (rc)
Robert Elliottb2ef4802015-04-23 09:34:48 -05007925 /* don't goto clean, we already unallocated */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007926 return -ENODEV;
7927
7928 goto reinit_after_soft_reset;
7929 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007930
Robert Elliott105a3db2015-04-23 09:33:48 -05007931 /* Enable Accelerated IO path at driver layer */
7932 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06007933
Scott Teele863d682014-02-18 13:57:05 -06007934
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007935 /* Turn the interrupts on so we can service requests */
7936 h->access.set_intr_mask(h, HPSA_INTR_ON);
7937
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007938 hpsa_hba_inquiry(h);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007939
7940 /* Monitor the controller for firmware lockups */
7941 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
7942 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
7943 schedule_delayed_work(&h->monitor_ctlr_work,
7944 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06007945 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
7946 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
7947 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05007948 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007949
Robert Elliott2946e822015-04-23 09:35:09 -05007950clean9: /* wq, sh, perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05007951 kfree(h->hba_inquiry_data);
Robert Elliott2946e822015-04-23 09:35:09 -05007952clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05007953 hpsa_free_performant_mode(h);
7954 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7955clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007956 hpsa_free_sg_chain_blocks(h);
Robert Elliott2946e822015-04-23 09:35:09 -05007957clean5: /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007958 hpsa_free_cmd_pool(h);
Robert Elliott2946e822015-04-23 09:35:09 -05007959clean4: /* irq, shost, pci, lu, aer/h */
Robert Elliottec501a12015-01-23 16:41:40 -06007960 hpsa_free_irqs(h);
Robert Elliott2946e822015-04-23 09:35:09 -05007961clean3: /* shost, pci, lu, aer/h */
7962 scsi_host_put(h->scsi_host);
7963 h->scsi_host = NULL;
7964clean2_5: /* pci, lu, aer/h */
Robert Elliott195f2c62015-04-23 09:33:17 -05007965 hpsa_free_pci_init(h);
Robert Elliott2946e822015-04-23 09:35:09 -05007966clean2: /* lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05007967 if (h->lockup_detected) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007968 free_percpu(h->lockup_detected);
Robert Elliott105a3db2015-04-23 09:33:48 -05007969 h->lockup_detected = NULL;
7970 }
7971clean1: /* wq/aer/h */
7972 if (h->resubmit_wq) {
7973 destroy_workqueue(h->resubmit_wq);
7974 h->resubmit_wq = NULL;
7975 }
7976 if (h->rescan_ctlr_wq) {
7977 destroy_workqueue(h->rescan_ctlr_wq);
7978 h->rescan_ctlr_wq = NULL;
7979 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007980 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007981 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007982}
7983
7984static void hpsa_flush_cache(struct ctlr_info *h)
7985{
7986 char *flush_buf;
7987 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007988 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007989
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007990 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007991 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007992 flush_buf = kzalloc(4, GFP_KERNEL);
7993 if (!flush_buf)
7994 return;
7995
Stephen Cameron45fcb862015-01-23 16:43:04 -06007996 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05007997
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007998 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
7999 RAID_CTLR_LUNID, TYPE_CMD)) {
8000 goto out;
8001 }
Webb Scales25163bd2015-04-23 09:32:00 -05008002 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
8003 PCI_DMA_TODEVICE, NO_TIMEOUT);
8004 if (rc)
8005 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008006 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008007out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008008 dev_warn(&h->pdev->dev,
8009 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06008010 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008011 kfree(flush_buf);
8012}
8013
8014static void hpsa_shutdown(struct pci_dev *pdev)
8015{
8016 struct ctlr_info *h;
8017
8018 h = pci_get_drvdata(pdev);
8019 /* Turn board interrupts off and send the flush cache command
8020 * sendcmd will turn off interrupt, and send the flush...
8021 * To write all data in the battery backed cache to disks
8022 */
8023 hpsa_flush_cache(h);
8024 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliott105a3db2015-04-23 09:33:48 -05008025 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliottcc64c812015-04-23 09:33:12 -05008026 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008027}
8028
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008029static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008030{
8031 int i;
8032
Robert Elliott105a3db2015-04-23 09:33:48 -05008033 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008034 kfree(h->dev[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008035 h->dev[i] = NULL;
8036 }
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008037}
8038
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008039static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008040{
8041 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008042 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008043
8044 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008045 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008046 return;
8047 }
8048 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008049
8050 /* Get rid of any controller monitoring work items */
8051 spin_lock_irqsave(&h->lock, flags);
8052 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008053 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06008054 cancel_delayed_work_sync(&h->monitor_ctlr_work);
8055 cancel_delayed_work_sync(&h->rescan_ctlr_work);
8056 destroy_workqueue(h->rescan_ctlr_wq);
8057 destroy_workqueue(h->resubmit_wq);
Robert Elliottcc64c812015-04-23 09:33:12 -05008058
Robert Elliott105a3db2015-04-23 09:33:48 -05008059 /* includes hpsa_free_irqs - init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008060 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008061 hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05008062
Robert Elliott105a3db2015-04-23 09:33:48 -05008063 hpsa_free_device_info(h); /* scan */
8064
Robert Elliott2946e822015-04-23 09:35:09 -05008065 kfree(h->hba_inquiry_data); /* init_one 10 */
8066 h->hba_inquiry_data = NULL; /* init_one 10 */
8067 if (h->scsi_host)
8068 scsi_remove_host(h->scsi_host); /* init_one 8 */
8069 hpsa_free_ioaccel2_sg_chain_blocks(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008070 hpsa_free_performant_mode(h); /* init_one 7 */
8071 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
8072 hpsa_free_cmd_pool(h); /* init_one 5 */
8073
8074 /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008075
Robert Elliott2946e822015-04-23 09:35:09 -05008076 scsi_host_put(h->scsi_host); /* init_one 3 */
8077 h->scsi_host = NULL; /* init_one 3 */
8078
Robert Elliott195f2c62015-04-23 09:33:17 -05008079 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Robert Elliott2946e822015-04-23 09:35:09 -05008080 hpsa_free_pci_init(h); /* init_one 2.5 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008081
Robert Elliott105a3db2015-04-23 09:33:48 -05008082 free_percpu(h->lockup_detected); /* init_one 2 */
8083 h->lockup_detected = NULL; /* init_one 2 */
8084 /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */
8085 kfree(h); /* init_one 1 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008086}
8087
8088static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
8089 __attribute__((unused)) pm_message_t state)
8090{
8091 return -ENOSYS;
8092}
8093
8094static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
8095{
8096 return -ENOSYS;
8097}
8098
8099static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06008100 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008101 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008102 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008103 .id_table = hpsa_pci_device_id, /* id_table */
8104 .shutdown = hpsa_shutdown,
8105 .suspend = hpsa_suspend,
8106 .resume = hpsa_resume,
8107};
8108
Don Brace303932f2010-02-04 08:42:40 -06008109/* Fill in bucket_map[], given nsgs (the max number of
8110 * scatter gather elements supported) and bucket[],
8111 * which is an array of 8 integers. The bucket[] array
8112 * contains 8 different DMA transfer sizes (in 16
8113 * byte increments) which the controller uses to fetch
8114 * commands. This function fills in bucket_map[], which
8115 * maps a given number of scatter gather elements to one of
8116 * the 8 DMA transfer sizes. The point of it is to allow the
8117 * controller to only do as much DMA as needed to fetch the
8118 * command, with the DMA transfer size encoded in the lower
8119 * bits of the command address.
8120 */
8121static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06008122 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06008123{
8124 int i, j, b, size;
8125
Don Brace303932f2010-02-04 08:42:40 -06008126 /* Note, bucket_map must have nsgs+1 entries. */
8127 for (i = 0; i <= nsgs; i++) {
8128 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06008129 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06008130 b = num_buckets; /* Assume the biggest bucket */
8131 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06008132 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06008133 if (bucket[j] >= size) {
8134 b = j;
8135 break;
8136 }
8137 }
8138 /* for a command with i SG entries, use bucket b. */
8139 bucket_map[i] = b;
8140 }
8141}
8142
Robert Elliott105a3db2015-04-23 09:33:48 -05008143/*
8144 * return -ENODEV on err, 0 on success (or no action)
8145 * allocates numerous items that must be freed later
8146 */
Robert Elliottc706a792015-01-23 16:45:01 -06008147static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06008148{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008149 int i;
8150 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06008151 unsigned long transMethod = CFGTBL_Trans_Performant |
8152 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008153 CFGTBL_Trans_enable_directed_msix |
8154 (trans_support & (CFGTBL_Trans_io_accel1 |
8155 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06008156 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05008157
8158 /* This is a bit complicated. There are 8 registers on
8159 * the controller which we write to to tell it 8 different
8160 * sizes of commands which there may be. It's a way of
8161 * reducing the DMA done to fetch each command. Encoded into
8162 * each command's tag are 3 bits which communicate to the controller
8163 * which of the eight sizes that command fits within. The size of
8164 * each command depends on how many scatter gather entries there are.
8165 * Each SG entry requires 16 bytes. The eight registers are programmed
8166 * with the number of 16-byte blocks a command of that size requires.
8167 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008168 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05008169 * blocks. Note, this only extends to the SG entries contained
8170 * within the command block, and does not extend to chained blocks
8171 * of SG elements. bft[] contains the eight values we write to
8172 * the registers. They are not evenly distributed, but have more
8173 * sizes for small commands, and fewer sizes for larger commands.
8174 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008175 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008176#define MIN_IOACCEL2_BFT_ENTRY 5
8177#define HPSA_IOACCEL2_HEADER_SZ 4
8178 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
8179 13, 14, 15, 16, 17, 18, 19,
8180 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
8181 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
8182 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
8183 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
8184 16 * MIN_IOACCEL2_BFT_ENTRY);
8185 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008186 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06008187 /* 5 = 1 s/g entry or 4k
8188 * 6 = 2 s/g entry or 8k
8189 * 8 = 4 s/g entry or 16k
8190 * 10 = 6 s/g entry or 24k
8191 */
Don Brace303932f2010-02-04 08:42:40 -06008192
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05008193 /* If the controller supports either ioaccel method then
8194 * we can also use the RAID stack submit path that does not
8195 * perform the superfluous readl() after each command submission.
8196 */
8197 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
8198 access = SA5_performant_access_no_read;
8199
Don Brace303932f2010-02-04 08:42:40 -06008200 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008201 for (i = 0; i < h->nreply_queues; i++)
8202 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06008203
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008204 bft[7] = SG_ENTRIES_IN_CMD + 4;
8205 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06008206 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06008207 for (i = 0; i < 8; i++)
8208 writel(bft[i], &h->transtable->BlockFetch[i]);
8209
8210 /* size of controller ring buffer */
8211 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05008212 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06008213 writel(0, &h->transtable->RepQCtrAddrLow32);
8214 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05008215
8216 for (i = 0; i < h->nreply_queues; i++) {
8217 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008218 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05008219 &h->transtable->RepQAddr[i].lower);
8220 }
8221
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008222 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06008223 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
8224 /*
8225 * enable outbound interrupt coalescing in accelerator mode;
8226 */
8227 if (trans_support & CFGTBL_Trans_io_accel1) {
8228 access = SA5_ioaccel_mode1_access;
8229 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8230 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06008231 } else {
8232 if (trans_support & CFGTBL_Trans_io_accel2) {
8233 access = SA5_ioaccel_mode2_access;
8234 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8235 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
8236 }
Matt Gatese1f7de02014-02-18 13:55:17 -06008237 }
Don Brace303932f2010-02-04 08:42:40 -06008238 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008239 if (hpsa_wait_for_mode_change_ack(h)) {
8240 dev_err(&h->pdev->dev,
8241 "performant mode problem - doorbell timeout\n");
8242 return -ENODEV;
8243 }
Don Brace303932f2010-02-04 08:42:40 -06008244 register_value = readl(&(h->cfgtable->TransportActive));
8245 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06008246 dev_err(&h->pdev->dev,
8247 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06008248 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06008249 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06008250 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06008251 h->access = access;
8252 h->transMethod = transMethod;
8253
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008254 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
8255 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06008256 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008257
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008258 if (trans_support & CFGTBL_Trans_io_accel1) {
8259 /* Set up I/O accelerator mode */
8260 for (i = 0; i < h->nreply_queues; i++) {
8261 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
8262 h->reply_queue[i].current_entry =
8263 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
8264 }
8265 bft[7] = h->ioaccel_maxsg + 8;
8266 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
8267 h->ioaccel1_blockFetchTable);
8268
8269 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008270 for (i = 0; i < h->nreply_queues; i++)
8271 memset(h->reply_queue[i].head,
8272 (u8) IOACCEL_MODE1_REPLY_UNUSED,
8273 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008274
8275 /* set all the constant fields in the accelerator command
8276 * frames once at init time to save CPU cycles later.
8277 */
8278 for (i = 0; i < h->nr_cmds; i++) {
8279 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
8280
8281 cp->function = IOACCEL1_FUNCTION_SCSIIO;
8282 cp->err_info = (u32) (h->errinfo_pool_dhandle +
8283 (i * sizeof(struct ErrorInfo)));
8284 cp->err_info_len = sizeof(struct ErrorInfo);
8285 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06008286 cp->host_context_flags =
8287 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008288 cp->timeout_sec = 0;
8289 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008290 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06008291 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008292 cp->host_addr =
8293 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008294 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008295 }
8296 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8297 u64 cfg_offset, cfg_base_addr_index;
8298 u32 bft2_offset, cfg_base_addr;
8299 int rc;
8300
8301 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
8302 &cfg_base_addr_index, &cfg_offset);
8303 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
8304 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
8305 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
8306 4, h->ioaccel2_blockFetchTable);
8307 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
8308 BUILD_BUG_ON(offsetof(struct CfgTable,
8309 io_accel_request_size_offset) != 0xb8);
8310 h->ioaccel2_bft2_regs =
8311 remap_pci_mem(pci_resource_start(h->pdev,
8312 cfg_base_addr_index) +
8313 cfg_offset + bft2_offset,
8314 ARRAY_SIZE(bft2) *
8315 sizeof(*h->ioaccel2_bft2_regs));
8316 for (i = 0; i < ARRAY_SIZE(bft2); i++)
8317 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06008318 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008319 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008320 if (hpsa_wait_for_mode_change_ack(h)) {
8321 dev_err(&h->pdev->dev,
8322 "performant mode problem - enabling ioaccel mode\n");
8323 return -ENODEV;
8324 }
8325 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008326}
8327
Robert Elliott1fb7c982015-04-23 09:33:22 -05008328/* Free ioaccel1 mode command blocks and block fetch table */
8329static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
8330{
Robert Elliott105a3db2015-04-23 09:33:48 -05008331 if (h->ioaccel_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008332 pci_free_consistent(h->pdev,
8333 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8334 h->ioaccel_cmd_pool,
8335 h->ioaccel_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008336 h->ioaccel_cmd_pool = NULL;
8337 h->ioaccel_cmd_pool_dhandle = 0;
8338 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008339 kfree(h->ioaccel1_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008340 h->ioaccel1_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008341}
8342
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008343/* Allocate ioaccel1 mode command blocks and block fetch table */
8344static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06008345{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008346 h->ioaccel_maxsg =
8347 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8348 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
8349 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
8350
Matt Gatese1f7de02014-02-18 13:55:17 -06008351 /* Command structures must be aligned on a 128-byte boundary
8352 * because the 7 lower bits of the address are used by the
8353 * hardware.
8354 */
Matt Gatese1f7de02014-02-18 13:55:17 -06008355 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
8356 IOACCEL1_COMMANDLIST_ALIGNMENT);
8357 h->ioaccel_cmd_pool =
8358 pci_alloc_consistent(h->pdev,
8359 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8360 &(h->ioaccel_cmd_pool_dhandle));
8361
8362 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008363 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06008364 sizeof(u32)), GFP_KERNEL);
8365
8366 if ((h->ioaccel_cmd_pool == NULL) ||
8367 (h->ioaccel1_blockFetchTable == NULL))
8368 goto clean_up;
8369
8370 memset(h->ioaccel_cmd_pool, 0,
8371 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
8372 return 0;
8373
8374clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008375 hpsa_free_ioaccel1_cmd_and_bft(h);
Robert Elliott2dd02d72015-04-23 09:33:43 -05008376 return -ENOMEM;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008377}
8378
Robert Elliott1fb7c982015-04-23 09:33:22 -05008379/* Free ioaccel2 mode command blocks and block fetch table */
8380static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
8381{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008382 hpsa_free_ioaccel2_sg_chain_blocks(h);
8383
Robert Elliott105a3db2015-04-23 09:33:48 -05008384 if (h->ioaccel2_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008385 pci_free_consistent(h->pdev,
8386 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8387 h->ioaccel2_cmd_pool,
8388 h->ioaccel2_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008389 h->ioaccel2_cmd_pool = NULL;
8390 h->ioaccel2_cmd_pool_dhandle = 0;
8391 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008392 kfree(h->ioaccel2_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008393 h->ioaccel2_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008394}
8395
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008396/* Allocate ioaccel2 mode command blocks and block fetch table */
8397static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008398{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008399 int rc;
8400
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008401 /* Allocate ioaccel2 mode command blocks and block fetch table */
8402
8403 h->ioaccel_maxsg =
8404 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8405 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
8406 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
8407
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008408 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
8409 IOACCEL2_COMMANDLIST_ALIGNMENT);
8410 h->ioaccel2_cmd_pool =
8411 pci_alloc_consistent(h->pdev,
8412 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8413 &(h->ioaccel2_cmd_pool_dhandle));
8414
8415 h->ioaccel2_blockFetchTable =
8416 kmalloc(((h->ioaccel_maxsg + 1) *
8417 sizeof(u32)), GFP_KERNEL);
8418
8419 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05008420 (h->ioaccel2_blockFetchTable == NULL)) {
8421 rc = -ENOMEM;
8422 goto clean_up;
8423 }
8424
8425 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
8426 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008427 goto clean_up;
8428
8429 memset(h->ioaccel2_cmd_pool, 0,
8430 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
8431 return 0;
8432
8433clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008434 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05008435 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008436}
8437
Robert Elliott105a3db2015-04-23 09:33:48 -05008438/* Free items allocated by hpsa_put_ctlr_into_performant_mode */
8439static void hpsa_free_performant_mode(struct ctlr_info *h)
8440{
8441 kfree(h->blockFetchTable);
8442 h->blockFetchTable = NULL;
8443 hpsa_free_reply_queues(h);
8444 hpsa_free_ioaccel1_cmd_and_bft(h);
8445 hpsa_free_ioaccel2_cmd_and_bft(h);
8446}
8447
8448/* return -ENODEV on error, 0 on success (or no action)
8449 * allocates numerous items that must be freed later
8450 */
8451static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008452{
8453 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06008454 unsigned long transMethod = CFGTBL_Trans_Performant |
8455 CFGTBL_Trans_use_short_tags;
Robert Elliott105a3db2015-04-23 09:33:48 -05008456 int i, rc;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008457
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008458 if (hpsa_simple_mode)
Robert Elliott105a3db2015-04-23 09:33:48 -05008459 return 0;
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008460
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008461 trans_support = readl(&(h->cfgtable->TransportSupport));
8462 if (!(trans_support & PERFORMANT_MODE))
Robert Elliott105a3db2015-04-23 09:33:48 -05008463 return 0;
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008464
Matt Gatese1f7de02014-02-18 13:55:17 -06008465 /* Check for I/O accelerator mode support */
8466 if (trans_support & CFGTBL_Trans_io_accel1) {
8467 transMethod |= CFGTBL_Trans_io_accel1 |
8468 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008469 rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
8470 if (rc)
8471 return rc;
8472 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8473 transMethod |= CFGTBL_Trans_io_accel2 |
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008474 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008475 rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
8476 if (rc)
8477 return rc;
Matt Gatese1f7de02014-02-18 13:55:17 -06008478 }
8479
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008480 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05008481 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008482 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008483 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008484
Matt Gates254f7962012-05-01 11:43:06 -05008485 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008486 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
8487 h->reply_queue_size,
8488 &(h->reply_queue[i].busaddr));
Robert Elliott105a3db2015-04-23 09:33:48 -05008489 if (!h->reply_queue[i].head) {
8490 rc = -ENOMEM;
8491 goto clean1; /* rq, ioaccel */
8492 }
Matt Gates254f7962012-05-01 11:43:06 -05008493 h->reply_queue[i].size = h->max_commands;
8494 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
8495 h->reply_queue[i].current_entry = 0;
8496 }
8497
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008498 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008499 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008500 sizeof(u32)), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008501 if (!h->blockFetchTable) {
8502 rc = -ENOMEM;
8503 goto clean1; /* rq, ioaccel */
8504 }
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008505
Robert Elliott105a3db2015-04-23 09:33:48 -05008506 rc = hpsa_enter_performant_mode(h, trans_support);
8507 if (rc)
8508 goto clean2; /* bft, rq, ioaccel */
8509 return 0;
Don Brace303932f2010-02-04 08:42:40 -06008510
Robert Elliott105a3db2015-04-23 09:33:48 -05008511clean2: /* bft, rq, ioaccel */
Don Brace303932f2010-02-04 08:42:40 -06008512 kfree(h->blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008513 h->blockFetchTable = NULL;
8514clean1: /* rq, ioaccel */
8515 hpsa_free_reply_queues(h);
8516 hpsa_free_ioaccel1_cmd_and_bft(h);
8517 hpsa_free_ioaccel2_cmd_and_bft(h);
8518 return rc;
Don Brace303932f2010-02-04 08:42:40 -06008519}
8520
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008521static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008522{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008523 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
8524}
8525
8526static void hpsa_drain_accel_commands(struct ctlr_info *h)
8527{
8528 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06008529 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06008530 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008531
Don Bracef2405db2015-01-23 16:43:09 -06008532 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008533 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06008534 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06008535 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06008536 refcount = atomic_inc_return(&c->refcount);
8537 if (refcount > 1) /* Command is allocated */
8538 accel_cmds_out += is_accelerated_cmd(c);
8539 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06008540 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008541 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06008542 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008543 msleep(100);
8544 } while (1);
8545}
8546
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008547/*
8548 * This is it. Register the PCI driver information for the cards we control
8549 * the OS will call our registered routines when it finds one of our cards.
8550 */
8551static int __init hpsa_init(void)
8552{
Mike Miller31468402010-02-25 14:03:12 -06008553 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008554}
8555
8556static void __exit hpsa_cleanup(void)
8557{
8558 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008559}
8560
Matt Gatese1f7de02014-02-18 13:55:17 -06008561static void __attribute__((unused)) verify_offsets(void)
8562{
8563#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06008564 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
8565
8566 VERIFY_OFFSET(structure_size, 0);
8567 VERIFY_OFFSET(volume_blk_size, 4);
8568 VERIFY_OFFSET(volume_blk_cnt, 8);
8569 VERIFY_OFFSET(phys_blk_shift, 16);
8570 VERIFY_OFFSET(parity_rotation_shift, 17);
8571 VERIFY_OFFSET(strip_size, 18);
8572 VERIFY_OFFSET(disk_starting_blk, 20);
8573 VERIFY_OFFSET(disk_blk_cnt, 28);
8574 VERIFY_OFFSET(data_disks_per_row, 36);
8575 VERIFY_OFFSET(metadata_disks_per_row, 38);
8576 VERIFY_OFFSET(row_cnt, 40);
8577 VERIFY_OFFSET(layout_map_count, 42);
8578 VERIFY_OFFSET(flags, 44);
8579 VERIFY_OFFSET(dekindex, 46);
8580 /* VERIFY_OFFSET(reserved, 48 */
8581 VERIFY_OFFSET(data, 64);
8582
8583#undef VERIFY_OFFSET
8584
8585#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06008586 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
8587
8588 VERIFY_OFFSET(IU_type, 0);
8589 VERIFY_OFFSET(direction, 1);
8590 VERIFY_OFFSET(reply_queue, 2);
8591 /* VERIFY_OFFSET(reserved1, 3); */
8592 VERIFY_OFFSET(scsi_nexus, 4);
8593 VERIFY_OFFSET(Tag, 8);
8594 VERIFY_OFFSET(cdb, 16);
8595 VERIFY_OFFSET(cciss_lun, 32);
8596 VERIFY_OFFSET(data_len, 40);
8597 VERIFY_OFFSET(cmd_priority_task_attr, 44);
8598 VERIFY_OFFSET(sg_count, 45);
8599 /* VERIFY_OFFSET(reserved3 */
8600 VERIFY_OFFSET(err_ptr, 48);
8601 VERIFY_OFFSET(err_len, 56);
8602 /* VERIFY_OFFSET(reserved4 */
8603 VERIFY_OFFSET(sg, 64);
8604
8605#undef VERIFY_OFFSET
8606
8607#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06008608 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
8609
8610 VERIFY_OFFSET(dev_handle, 0x00);
8611 VERIFY_OFFSET(reserved1, 0x02);
8612 VERIFY_OFFSET(function, 0x03);
8613 VERIFY_OFFSET(reserved2, 0x04);
8614 VERIFY_OFFSET(err_info, 0x0C);
8615 VERIFY_OFFSET(reserved3, 0x10);
8616 VERIFY_OFFSET(err_info_len, 0x12);
8617 VERIFY_OFFSET(reserved4, 0x13);
8618 VERIFY_OFFSET(sgl_offset, 0x14);
8619 VERIFY_OFFSET(reserved5, 0x15);
8620 VERIFY_OFFSET(transfer_len, 0x1C);
8621 VERIFY_OFFSET(reserved6, 0x20);
8622 VERIFY_OFFSET(io_flags, 0x24);
8623 VERIFY_OFFSET(reserved7, 0x26);
8624 VERIFY_OFFSET(LUN, 0x34);
8625 VERIFY_OFFSET(control, 0x3C);
8626 VERIFY_OFFSET(CDB, 0x40);
8627 VERIFY_OFFSET(reserved8, 0x50);
8628 VERIFY_OFFSET(host_context_flags, 0x60);
8629 VERIFY_OFFSET(timeout_sec, 0x62);
8630 VERIFY_OFFSET(ReplyQueue, 0x64);
8631 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008632 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06008633 VERIFY_OFFSET(host_addr, 0x70);
8634 VERIFY_OFFSET(CISS_LUN, 0x78);
8635 VERIFY_OFFSET(SG, 0x78 + 8);
8636#undef VERIFY_OFFSET
8637}
8638
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008639module_init(hpsa_init);
8640module_exit(hpsa_cleanup);