blob: 91e7005811d6ce332ab9e120a54739544f55e818 [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
Don Brace1358f6d2015-07-18 11:12:38 -05003 * Copyright 2014-2015 PMC-Sierra, Inc.
4 * Copyright 2000,2009-2015 Hewlett-Packard Development Company, L.P.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13 * NON INFRINGEMENT. See the GNU General Public License for more details.
14 *
Don Brace1358f6d2015-07-18 11:12:38 -050015 * Questions/Comments/Bugfixes to storagedev@pmcs.com
Stephen M. Cameronedd16362009-12-08 14:09:11 -080016 *
17 */
18
19#include <linux/module.h>
20#include <linux/interrupt.h>
21#include <linux/types.h>
22#include <linux/pci.h>
Matthew Garrette5a44df2011-11-11 11:14:23 -050023#include <linux/pci-aspm.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080024#include <linux/kernel.h>
25#include <linux/slab.h>
26#include <linux/delay.h>
27#include <linux/fs.h>
28#include <linux/timer.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080029#include <linux/init.h>
30#include <linux/spinlock.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080031#include <linux/compat.h>
32#include <linux/blktrace_api.h>
33#include <linux/uaccess.h>
34#include <linux/io.h>
35#include <linux/dma-mapping.h>
36#include <linux/completion.h>
37#include <linux/moduleparam.h>
38#include <scsi/scsi.h>
39#include <scsi/scsi_cmnd.h>
40#include <scsi/scsi_device.h>
41#include <scsi/scsi_host.h>
Stephen M. Cameron667e23d2010-02-25 14:02:51 -060042#include <scsi/scsi_tcq.h>
Stephen Cameron9437ac42015-04-23 09:32:16 -050043#include <scsi/scsi_eh.h>
Webb Scales73153fe2015-04-23 09:35:04 -050044#include <scsi/scsi_dbg.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080045#include <linux/cciss_ioctl.h>
46#include <linux/string.h>
47#include <linux/bitmap.h>
Arun Sharma600634972011-07-26 16:09:06 -070048#include <linux/atomic.h>
Stephen M. Camerona0c12412011-10-26 16:22:04 -050049#include <linux/jiffies.h>
Don Brace42a91642014-11-14 17:26:27 -060050#include <linux/percpu-defs.h>
Stephen M. Cameron094963d2014-05-29 10:53:18 -050051#include <linux/percpu.h>
Don Brace2b08b3e2015-01-23 16:41:09 -060052#include <asm/unaligned.h>
Stephen M. Cameron283b4a92014-02-18 13:55:33 -060053#include <asm/div64.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080054#include "hpsa_cmd.h"
55#include "hpsa.h"
56
57/* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */
Don Bracef532a3f2015-04-23 09:35:33 -050058#define HPSA_DRIVER_VERSION "3.4.10-0"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080059#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -060060#define HPSA "hpsa"
Stephen M. Cameronedd16362009-12-08 14:09:11 -080061
Robert Elliott007e7aa2015-01-23 16:44:56 -060062/* How long to wait for CISS doorbell communication */
63#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */
64#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */
65#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */
66#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */
Stephen M. Cameronedd16362009-12-08 14:09:11 -080067#define MAX_IOCTL_CONFIG_WAIT 1000
68
69/*define how many times we will try a command because of bus resets */
70#define MAX_CMD_RETRIES 3
71
72/* Embedded module documentation macros - see modules.h */
73MODULE_AUTHOR("Hewlett-Packard Company");
74MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
75 HPSA_DRIVER_VERSION);
76MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
77MODULE_VERSION(HPSA_DRIVER_VERSION);
78MODULE_LICENSE("GPL");
79
80static int hpsa_allow_any;
81module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
82MODULE_PARM_DESC(hpsa_allow_any,
83 "Allow hpsa driver to access unknown HP Smart Array hardware");
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060084static int hpsa_simple_mode;
85module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
86MODULE_PARM_DESC(hpsa_simple_mode,
87 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080088
89/* define the PCI info for the cards we can control */
90static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080091 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
92 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
93 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
94 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
95 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -050096 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
97 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -060098 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -060099 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Mike Millerfe0c9612012-09-20 16:05:18 -0500106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Mike Millerfe0c9612012-09-20 16:05:18 -0500110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926},
111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928},
Mike Miller97b9f532013-09-04 15:05:55 -0500112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929},
113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD},
114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE},
115 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF},
116 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0},
117 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1},
118 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2},
119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3},
120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4},
121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500122 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6},
Mike Miller97b9f532013-09-04 15:05:55 -0500123 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
124 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
125 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500126 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA},
127 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB},
128 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC},
129 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD},
130 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE},
Don Bracefdfa4b62015-04-23 09:35:27 -0500131 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0580},
Don Bracecbb47dc2015-07-18 11:12:54 -0500132 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0581},
133 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0582},
134 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0583},
135 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0584},
136 {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0585},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600137 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
138 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
139 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
140 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
141 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
Mike Miller7c03b872010-12-01 11:16:07 -0600142 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Stephen M. Cameron6798cc02010-06-16 13:51:20 -0500143 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800144 {0,}
145};
146
147MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
148
149/* board_id = Subsystem Device ID & Vendor ID
150 * product = Marketing Name for the board
151 * access = Address of the struct of function pointers
152 */
153static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800154 {0x3241103C, "Smart Array P212", &SA5_access},
155 {0x3243103C, "Smart Array P410", &SA5_access},
156 {0x3245103C, "Smart Array P410i", &SA5_access},
157 {0x3247103C, "Smart Array P411", &SA5_access},
158 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500159 {0x324A103C, "Smart Array P712m", &SA5_access},
160 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600161 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500162 {0x3350103C, "Smart Array P222", &SA5_access},
163 {0x3351103C, "Smart Array P420", &SA5_access},
164 {0x3352103C, "Smart Array P421", &SA5_access},
165 {0x3353103C, "Smart Array P822", &SA5_access},
166 {0x3354103C, "Smart Array P420i", &SA5_access},
167 {0x3355103C, "Smart Array P220i", &SA5_access},
168 {0x3356103C, "Smart Array P721m", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500169 {0x1921103C, "Smart Array P830i", &SA5_access},
170 {0x1922103C, "Smart Array P430", &SA5_access},
171 {0x1923103C, "Smart Array P431", &SA5_access},
172 {0x1924103C, "Smart Array P830", &SA5_access},
173 {0x1926103C, "Smart Array P731m", &SA5_access},
174 {0x1928103C, "Smart Array P230i", &SA5_access},
175 {0x1929103C, "Smart Array P530", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600176 {0x21BD103C, "Smart Array P244br", &SA5_access},
177 {0x21BE103C, "Smart Array P741m", &SA5_access},
178 {0x21BF103C, "Smart HBA H240ar", &SA5_access},
179 {0x21C0103C, "Smart Array P440ar", &SA5_access},
Don Bracec8ae0ab2015-01-23 16:45:12 -0600180 {0x21C1103C, "Smart Array P840ar", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600181 {0x21C2103C, "Smart Array P440", &SA5_access},
182 {0x21C3103C, "Smart Array P441", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500183 {0x21C4103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600184 {0x21C5103C, "Smart Array P841", &SA5_access},
185 {0x21C6103C, "Smart HBA H244br", &SA5_access},
186 {0x21C7103C, "Smart HBA H240", &SA5_access},
187 {0x21C8103C, "Smart HBA H241", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500188 {0x21C9103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600189 {0x21CA103C, "Smart Array P246br", &SA5_access},
190 {0x21CB103C, "Smart Array P840", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500191 {0x21CC103C, "Smart Array", &SA5_access},
192 {0x21CD103C, "Smart Array", &SA5_access},
Don Brace27fb8132015-01-23 16:45:07 -0600193 {0x21CE103C, "Smart HBA", &SA5_access},
Don Bracefdfa4b62015-04-23 09:35:27 -0500194 {0x05809005, "SmartHBA-SA", &SA5_access},
Don Bracecbb47dc2015-07-18 11:12:54 -0500195 {0x05819005, "SmartHBA-SA 8i", &SA5_access},
196 {0x05829005, "SmartHBA-SA 8i8e", &SA5_access},
197 {0x05839005, "SmartHBA-SA 8e", &SA5_access},
198 {0x05849005, "SmartHBA-SA 16i", &SA5_access},
199 {0x05859005, "SmartHBA-SA 4i4e", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600200 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
201 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
202 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
203 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
204 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800205 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
206};
207
Webb Scalesa58e7e52015-04-23 09:34:16 -0500208#define SCSI_CMD_BUSY ((struct scsi_cmnd *)&hpsa_cmd_busy)
209static const struct scsi_cmnd hpsa_cmd_busy;
210#define SCSI_CMD_IDLE ((struct scsi_cmnd *)&hpsa_cmd_idle)
211static const struct scsi_cmnd hpsa_cmd_idle;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800212static int number_of_controllers;
213
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500214static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
215static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Don Brace42a91642014-11-14 17:26:27 -0600216static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800217
218#ifdef CONFIG_COMPAT
Don Brace42a91642014-11-14 17:26:27 -0600219static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
220 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800221#endif
222
223static void cmd_free(struct ctlr_info *h, struct CommandList *c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800224static struct CommandList *cmd_alloc(struct ctlr_info *h);
Webb Scales73153fe2015-04-23 09:35:04 -0500225static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c);
226static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
227 struct scsi_cmnd *scmd);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600228static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600229 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800230 int cmd_type);
Robert Elliott2c143342015-01-23 16:42:48 -0600231static void hpsa_free_cmd_pool(struct ctlr_info *h);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600232#define VPD_PAGE (1 << 8)
Don Braceb48d9802015-11-04 15:50:13 -0600233#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800234
Jeff Garzikf2812332010-11-16 02:10:29 -0500235static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a84712010-02-04 08:43:16 -0600236static void hpsa_scan_start(struct Scsi_Host *);
237static int hpsa_scan_finished(struct Scsi_Host *sh,
238 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600239static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800240
241static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500242static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800243static int hpsa_slave_alloc(struct scsi_device *sdev);
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500244static int hpsa_slave_configure(struct scsi_device *sdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800245static void hpsa_slave_destroy(struct scsi_device *sdev);
246
Don Brace8aa60682015-11-04 15:50:01 -0600247static void hpsa_update_scsi_devices(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800248static int check_for_unit_attention(struct ctlr_info *h,
249 struct CommandList *c);
250static void check_ioctl_unit_attention(struct ctlr_info *h,
251 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600252/* performant mode helper functions */
253static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600254 int nsgs, int min_blocks, u32 *bucket_map);
Robert Elliott105a3db2015-04-23 09:33:48 -0500255static void hpsa_free_performant_mode(struct ctlr_info *h);
256static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500257static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800258static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
259 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
260 u64 *cfg_offset);
261static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
262 unsigned long *memory_bar);
263static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
264static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
265 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500266static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600267static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600268#define BOARD_NOT_READY 0
269#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600270static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600271static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600272static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
273 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600274 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600275static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500276static u32 lockup_detected(struct ctlr_info *h);
277static int detect_controller_lockup(struct ctlr_info *h);
Scott Teelc2adae42015-11-04 15:52:16 -0600278static void hpsa_disable_rld_caching(struct ctlr_info *h);
Scott Teel34592252015-11-04 15:52:09 -0600279static int hpsa_luns_changed(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800280
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800281static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
282{
283 unsigned long *priv = shost_priv(sdev->host);
284 return (struct ctlr_info *) *priv;
285}
286
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600287static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
288{
289 unsigned long *priv = shost_priv(sh);
290 return (struct ctlr_info *) *priv;
291}
292
Webb Scalesa58e7e52015-04-23 09:34:16 -0500293static inline bool hpsa_is_cmd_idle(struct CommandList *c)
294{
295 return c->scsi_cmd == SCSI_CMD_IDLE;
296}
297
Webb Scalesd604f532015-04-23 09:35:22 -0500298static inline bool hpsa_is_pending_event(struct CommandList *c)
299{
300 return c->abort_pending || c->reset_pending;
301}
302
Stephen Cameron9437ac42015-04-23 09:32:16 -0500303/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
304static void decode_sense_data(const u8 *sense_data, int sense_data_len,
305 u8 *sense_key, u8 *asc, u8 *ascq)
306{
307 struct scsi_sense_hdr sshdr;
308 bool rc;
309
310 *sense_key = -1;
311 *asc = -1;
312 *ascq = -1;
313
314 if (sense_data_len < 1)
315 return;
316
317 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
318 if (rc) {
319 *sense_key = sshdr.sense_key;
320 *asc = sshdr.asc;
321 *ascq = sshdr.ascq;
322 }
323}
324
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800325static int check_for_unit_attention(struct ctlr_info *h,
326 struct CommandList *c)
327{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500328 u8 sense_key, asc, ascq;
329 int sense_len;
330
331 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
332 sense_len = sizeof(c->err_info->SenseInfo);
333 else
334 sense_len = c->err_info->SenseLen;
335
336 decode_sense_data(c->err_info->SenseInfo, sense_len,
337 &sense_key, &asc, &ascq);
Don Brace81c27552015-07-18 11:12:28 -0500338 if (sense_key != UNIT_ATTENTION || asc == 0xff)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800339 return 0;
340
Stephen Cameron9437ac42015-04-23 09:32:16 -0500341 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800342 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500343 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500344 "%s: a state change detected, command retried\n",
345 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800346 break;
347 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600348 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500349 "%s: LUN failure detected\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800350 break;
351 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600352 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500353 "%s: report LUN data changed\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800354 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600355 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
356 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800357 */
358 break;
359 case POWER_OR_RESET:
Robert Elliott2946e822015-04-23 09:35:09 -0500360 dev_warn(&h->pdev->dev,
361 "%s: a power on or device reset detected\n",
362 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800363 break;
364 case UNIT_ATTENTION_CLEARED:
Robert Elliott2946e822015-04-23 09:35:09 -0500365 dev_warn(&h->pdev->dev,
366 "%s: unit attention cleared by another initiator\n",
367 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800368 break;
369 default:
Robert Elliott2946e822015-04-23 09:35:09 -0500370 dev_warn(&h->pdev->dev,
371 "%s: unknown unit attention detected\n",
372 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800373 break;
374 }
375 return 1;
376}
377
Matt Bondurant852af202012-05-01 11:42:35 -0500378static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
379{
380 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
381 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
382 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
383 return 0;
384 dev_warn(&h->pdev->dev, HPSA "device busy");
385 return 1;
386}
387
Stephen Camerone985c582015-04-23 09:32:22 -0500388static u32 lockup_detected(struct ctlr_info *h);
389static ssize_t host_show_lockup_detected(struct device *dev,
390 struct device_attribute *attr, char *buf)
391{
392 int ld;
393 struct ctlr_info *h;
394 struct Scsi_Host *shost = class_to_shost(dev);
395
396 h = shost_to_hba(shost);
397 ld = lockup_detected(h);
398
399 return sprintf(buf, "ld=%d\n", ld);
400}
401
Scott Teelda0697b2014-02-18 13:57:00 -0600402static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
403 struct device_attribute *attr,
404 const char *buf, size_t count)
405{
406 int status, len;
407 struct ctlr_info *h;
408 struct Scsi_Host *shost = class_to_shost(dev);
409 char tmpbuf[10];
410
411 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
412 return -EACCES;
413 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
414 strncpy(tmpbuf, buf, len);
415 tmpbuf[len] = '\0';
416 if (sscanf(tmpbuf, "%d", &status) != 1)
417 return -EINVAL;
418 h = shost_to_hba(shost);
419 h->acciopath_status = !!status;
420 dev_warn(&h->pdev->dev,
421 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
422 h->acciopath_status ? "enabled" : "disabled");
423 return count;
424}
425
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600426static ssize_t host_store_raid_offload_debug(struct device *dev,
427 struct device_attribute *attr,
428 const char *buf, size_t count)
429{
430 int debug_level, len;
431 struct ctlr_info *h;
432 struct Scsi_Host *shost = class_to_shost(dev);
433 char tmpbuf[10];
434
435 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
436 return -EACCES;
437 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
438 strncpy(tmpbuf, buf, len);
439 tmpbuf[len] = '\0';
440 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
441 return -EINVAL;
442 if (debug_level < 0)
443 debug_level = 0;
444 h = shost_to_hba(shost);
445 h->raid_offload_debug = debug_level;
446 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
447 h->raid_offload_debug);
448 return count;
449}
450
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800451static ssize_t host_store_rescan(struct device *dev,
452 struct device_attribute *attr,
453 const char *buf, size_t count)
454{
455 struct ctlr_info *h;
456 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600457 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600458 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800459 return count;
460}
461
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500462static ssize_t host_show_firmware_revision(struct device *dev,
463 struct device_attribute *attr, char *buf)
464{
465 struct ctlr_info *h;
466 struct Scsi_Host *shost = class_to_shost(dev);
467 unsigned char *fwrev;
468
469 h = shost_to_hba(shost);
470 if (!h->hba_inquiry_data)
471 return 0;
472 fwrev = &h->hba_inquiry_data[32];
473 return snprintf(buf, 20, "%c%c%c%c\n",
474 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
475}
476
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600477static ssize_t host_show_commands_outstanding(struct device *dev,
478 struct device_attribute *attr, char *buf)
479{
480 struct Scsi_Host *shost = class_to_shost(dev);
481 struct ctlr_info *h = shost_to_hba(shost);
482
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600483 return snprintf(buf, 20, "%d\n",
484 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600485}
486
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600487static ssize_t host_show_transport_mode(struct device *dev,
488 struct device_attribute *attr, char *buf)
489{
490 struct ctlr_info *h;
491 struct Scsi_Host *shost = class_to_shost(dev);
492
493 h = shost_to_hba(shost);
494 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600495 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600496 "performant" : "simple");
497}
498
Scott Teelda0697b2014-02-18 13:57:00 -0600499static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
500 struct device_attribute *attr, char *buf)
501{
502 struct ctlr_info *h;
503 struct Scsi_Host *shost = class_to_shost(dev);
504
505 h = shost_to_hba(shost);
506 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
507 (h->acciopath_status == 1) ? "enabled" : "disabled");
508}
509
Stephen M. Cameron46380782011-05-03 15:00:01 -0500510/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600511static u32 unresettable_controller[] = {
512 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500513 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600514 0x3223103C, /* Smart Array P800 */
515 0x3234103C, /* Smart Array P400 */
516 0x3235103C, /* Smart Array P400i */
517 0x3211103C, /* Smart Array E200i */
518 0x3212103C, /* Smart Array E200 */
519 0x3213103C, /* Smart Array E200i */
520 0x3214103C, /* Smart Array E200i */
521 0x3215103C, /* Smart Array E200i */
522 0x3237103C, /* Smart Array E500 */
523 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100524 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600525 0x409C0E11, /* Smart Array 6400 */
526 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100527 0x40700E11, /* Smart Array 5300 */
528 0x40820E11, /* Smart Array 532 */
529 0x40830E11, /* Smart Array 5312 */
530 0x409A0E11, /* Smart Array 641 */
531 0x409B0E11, /* Smart Array 642 */
532 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600533};
534
Stephen M. Cameron46380782011-05-03 15:00:01 -0500535/* List of controllers which cannot even be soft reset */
536static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100537 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100538 0x40700E11, /* Smart Array 5300 */
539 0x40820E11, /* Smart Array 532 */
540 0x40830E11, /* Smart Array 5312 */
541 0x409A0E11, /* Smart Array 641 */
542 0x409B0E11, /* Smart Array 642 */
543 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500544 /* Exclude 640x boards. These are two pci devices in one slot
545 * which share a battery backed cache module. One controls the
546 * cache, the other accesses the cache through the one that controls
547 * it. If we reset the one controlling the cache, the other will
548 * likely not be happy. Just forbid resetting this conjoined mess.
549 * The 640x isn't really supported by hpsa anyway.
550 */
551 0x409C0E11, /* Smart Array 6400 */
552 0x409D0E11, /* Smart Array 6400 EM */
553};
554
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500555static u32 needs_abort_tags_swizzled[] = {
556 0x323D103C, /* Smart Array P700m */
557 0x324a103C, /* Smart Array P712m */
558 0x324b103C, /* SmartArray P711m */
559};
560
561static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600562{
563 int i;
564
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500565 for (i = 0; i < nelems; i++)
566 if (a[i] == board_id)
567 return 1;
568 return 0;
569}
570
571static int ctlr_is_hard_resettable(u32 board_id)
572{
573 return !board_id_in_array(unresettable_controller,
574 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600575}
576
Stephen M. Cameron46380782011-05-03 15:00:01 -0500577static int ctlr_is_soft_resettable(u32 board_id)
578{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500579 return !board_id_in_array(soft_unresettable_controller,
580 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500581}
582
583static int ctlr_is_resettable(u32 board_id)
584{
585 return ctlr_is_hard_resettable(board_id) ||
586 ctlr_is_soft_resettable(board_id);
587}
588
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500589static int ctlr_needs_abort_tags_swizzled(u32 board_id)
590{
591 return board_id_in_array(needs_abort_tags_swizzled,
592 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
593}
594
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600595static ssize_t host_show_resettable(struct device *dev,
596 struct device_attribute *attr, char *buf)
597{
598 struct ctlr_info *h;
599 struct Scsi_Host *shost = class_to_shost(dev);
600
601 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500602 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600603}
604
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800605static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
606{
607 return (scsi3addr[3] & 0xC0) == 0x40;
608}
609
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600610static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
611 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800612};
Scott Teel6b80b182014-02-18 13:56:55 -0600613#define HPSA_RAID_0 0
614#define HPSA_RAID_4 1
615#define HPSA_RAID_1 2 /* also used for RAID 10 */
616#define HPSA_RAID_5 3 /* also used for RAID 50 */
617#define HPSA_RAID_51 4
618#define HPSA_RAID_6 5 /* also used for RAID 60 */
619#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800620#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
621
Kevin Barnettf3f01732015-11-04 15:51:33 -0600622static inline bool is_logical_device(struct hpsa_scsi_dev_t *device)
623{
624 return !device->physical_device;
625}
626
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800627static ssize_t raid_level_show(struct device *dev,
628 struct device_attribute *attr, char *buf)
629{
630 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600631 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800632 struct ctlr_info *h;
633 struct scsi_device *sdev;
634 struct hpsa_scsi_dev_t *hdev;
635 unsigned long flags;
636
637 sdev = to_scsi_device(dev);
638 h = sdev_to_hba(sdev);
639 spin_lock_irqsave(&h->lock, flags);
640 hdev = sdev->hostdata;
641 if (!hdev) {
642 spin_unlock_irqrestore(&h->lock, flags);
643 return -ENODEV;
644 }
645
646 /* Is this even a logical drive? */
Kevin Barnettf3f01732015-11-04 15:51:33 -0600647 if (!is_logical_device(hdev)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800648 spin_unlock_irqrestore(&h->lock, flags);
649 l = snprintf(buf, PAGE_SIZE, "N/A\n");
650 return l;
651 }
652
653 rlevel = hdev->raid_level;
654 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600655 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800656 rlevel = RAID_UNKNOWN;
657 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
658 return l;
659}
660
661static ssize_t lunid_show(struct device *dev,
662 struct device_attribute *attr, char *buf)
663{
664 struct ctlr_info *h;
665 struct scsi_device *sdev;
666 struct hpsa_scsi_dev_t *hdev;
667 unsigned long flags;
668 unsigned char lunid[8];
669
670 sdev = to_scsi_device(dev);
671 h = sdev_to_hba(sdev);
672 spin_lock_irqsave(&h->lock, flags);
673 hdev = sdev->hostdata;
674 if (!hdev) {
675 spin_unlock_irqrestore(&h->lock, flags);
676 return -ENODEV;
677 }
678 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
679 spin_unlock_irqrestore(&h->lock, flags);
680 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
681 lunid[0], lunid[1], lunid[2], lunid[3],
682 lunid[4], lunid[5], lunid[6], lunid[7]);
683}
684
685static ssize_t unique_id_show(struct device *dev,
686 struct device_attribute *attr, char *buf)
687{
688 struct ctlr_info *h;
689 struct scsi_device *sdev;
690 struct hpsa_scsi_dev_t *hdev;
691 unsigned long flags;
692 unsigned char sn[16];
693
694 sdev = to_scsi_device(dev);
695 h = sdev_to_hba(sdev);
696 spin_lock_irqsave(&h->lock, flags);
697 hdev = sdev->hostdata;
698 if (!hdev) {
699 spin_unlock_irqrestore(&h->lock, flags);
700 return -ENODEV;
701 }
702 memcpy(sn, hdev->device_id, sizeof(sn));
703 spin_unlock_irqrestore(&h->lock, flags);
704 return snprintf(buf, 16 * 2 + 2,
705 "%02X%02X%02X%02X%02X%02X%02X%02X"
706 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
707 sn[0], sn[1], sn[2], sn[3],
708 sn[4], sn[5], sn[6], sn[7],
709 sn[8], sn[9], sn[10], sn[11],
710 sn[12], sn[13], sn[14], sn[15]);
711}
712
Scott Teelc1988682014-02-18 13:55:54 -0600713static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
714 struct device_attribute *attr, char *buf)
715{
716 struct ctlr_info *h;
717 struct scsi_device *sdev;
718 struct hpsa_scsi_dev_t *hdev;
719 unsigned long flags;
720 int offload_enabled;
721
722 sdev = to_scsi_device(dev);
723 h = sdev_to_hba(sdev);
724 spin_lock_irqsave(&h->lock, flags);
725 hdev = sdev->hostdata;
726 if (!hdev) {
727 spin_unlock_irqrestore(&h->lock, flags);
728 return -ENODEV;
729 }
730 offload_enabled = hdev->offload_enabled;
731 spin_unlock_irqrestore(&h->lock, flags);
732 return snprintf(buf, 20, "%d\n", offload_enabled);
733}
734
Joe Handzik8270b862015-07-18 11:12:43 -0500735#define MAX_PATHS 8
736#define PATH_STRING_LEN 50
737
738static ssize_t path_info_show(struct device *dev,
739 struct device_attribute *attr, char *buf)
740{
741 struct ctlr_info *h;
742 struct scsi_device *sdev;
743 struct hpsa_scsi_dev_t *hdev;
744 unsigned long flags;
745 int i;
746 int output_len = 0;
747 u8 box;
748 u8 bay;
749 u8 path_map_index = 0;
750 char *active;
751 unsigned char phys_connector[2];
752 unsigned char path[MAX_PATHS][PATH_STRING_LEN];
753
754 memset(path, 0, MAX_PATHS * PATH_STRING_LEN);
755 sdev = to_scsi_device(dev);
756 h = sdev_to_hba(sdev);
757 spin_lock_irqsave(&h->devlock, flags);
758 hdev = sdev->hostdata;
759 if (!hdev) {
760 spin_unlock_irqrestore(&h->devlock, flags);
761 return -ENODEV;
762 }
763
764 bay = hdev->bay;
765 for (i = 0; i < MAX_PATHS; i++) {
766 path_map_index = 1<<i;
767 if (i == hdev->active_path_index)
768 active = "Active";
769 else if (hdev->path_map & path_map_index)
770 active = "Inactive";
771 else
772 continue;
773
774 output_len = snprintf(path[i],
775 PATH_STRING_LEN, "[%d:%d:%d:%d] %20.20s ",
776 h->scsi_host->host_no,
777 hdev->bus, hdev->target, hdev->lun,
778 scsi_device_type(hdev->devtype));
779
Scott Teel66749d02015-11-04 15:51:57 -0600780 if (hdev->external ||
Kevin Barnettf3f01732015-11-04 15:51:33 -0600781 hdev->devtype == TYPE_RAID ||
782 is_logical_device(hdev)) {
Joe Handzik8270b862015-07-18 11:12:43 -0500783 output_len += snprintf(path[i] + output_len,
784 PATH_STRING_LEN, "%s\n",
785 active);
786 continue;
787 }
788
789 box = hdev->box[i];
790 memcpy(&phys_connector, &hdev->phys_connector[i],
791 sizeof(phys_connector));
792 if (phys_connector[0] < '0')
793 phys_connector[0] = '0';
794 if (phys_connector[1] < '0')
795 phys_connector[1] = '0';
796 if (hdev->phys_connector[i] > 0)
797 output_len += snprintf(path[i] + output_len,
798 PATH_STRING_LEN,
799 "PORT: %.2s ",
800 phys_connector);
Kevin Barnett2a168202015-11-04 15:51:21 -0600801 if (hdev->devtype == TYPE_DISK && hdev->expose_device) {
Joe Handzik8270b862015-07-18 11:12:43 -0500802 if (box == 0 || box == 0xFF) {
803 output_len += snprintf(path[i] + output_len,
804 PATH_STRING_LEN,
805 "BAY: %hhu %s\n",
806 bay, active);
807 } else {
808 output_len += snprintf(path[i] + output_len,
809 PATH_STRING_LEN,
810 "BOX: %hhu BAY: %hhu %s\n",
811 box, bay, active);
812 }
813 } else if (box != 0 && box != 0xFF) {
814 output_len += snprintf(path[i] + output_len,
815 PATH_STRING_LEN, "BOX: %hhu %s\n",
816 box, active);
817 } else
818 output_len += snprintf(path[i] + output_len,
819 PATH_STRING_LEN, "%s\n", active);
820 }
821
822 spin_unlock_irqrestore(&h->devlock, flags);
823 return snprintf(buf, output_len+1, "%s%s%s%s%s%s%s%s",
824 path[0], path[1], path[2], path[3],
825 path[4], path[5], path[6], path[7]);
826}
827
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600828static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
829static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
830static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
831static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600832static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
833 host_show_hp_ssd_smart_path_enabled, NULL);
Joe Handzik8270b862015-07-18 11:12:43 -0500834static DEVICE_ATTR(path_info, S_IRUGO, path_info_show, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600835static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
836 host_show_hp_ssd_smart_path_status,
837 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600838static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
839 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600840static DEVICE_ATTR(firmware_revision, S_IRUGO,
841 host_show_firmware_revision, NULL);
842static DEVICE_ATTR(commands_outstanding, S_IRUGO,
843 host_show_commands_outstanding, NULL);
844static DEVICE_ATTR(transport_mode, S_IRUGO,
845 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600846static DEVICE_ATTR(resettable, S_IRUGO,
847 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500848static DEVICE_ATTR(lockup_detected, S_IRUGO,
849 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600850
851static struct device_attribute *hpsa_sdev_attrs[] = {
852 &dev_attr_raid_level,
853 &dev_attr_lunid,
854 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600855 &dev_attr_hp_ssd_smart_path_enabled,
Joe Handzik8270b862015-07-18 11:12:43 -0500856 &dev_attr_path_info,
Stephen Camerone985c582015-04-23 09:32:22 -0500857 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600858 NULL,
859};
860
861static struct device_attribute *hpsa_shost_attrs[] = {
862 &dev_attr_rescan,
863 &dev_attr_firmware_revision,
864 &dev_attr_commands_outstanding,
865 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600866 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600867 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600868 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600869 NULL,
870};
871
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500872#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
873 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
874
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600875static struct scsi_host_template hpsa_driver_template = {
876 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600877 .name = HPSA,
878 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600879 .queuecommand = hpsa_scsi_queue_command,
880 .scan_start = hpsa_scan_start,
881 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600882 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600883 .this_id = -1,
884 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500885 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600886 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
887 .ioctl = hpsa_ioctl,
888 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500889 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600890 .slave_destroy = hpsa_slave_destroy,
891#ifdef CONFIG_COMPAT
892 .compat_ioctl = hpsa_compat_ioctl,
893#endif
894 .sdev_attrs = hpsa_sdev_attrs,
895 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500896 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400897 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600898};
899
Matt Gates254f7962012-05-01 11:43:06 -0500900static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600901{
902 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500903 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600904
Matt Gatese1f7de02014-02-18 13:55:17 -0600905 if (h->transMethod & CFGTBL_Trans_io_accel1)
906 return h->access.command_completed(h, q);
907
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600908 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500909 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600910
Matt Gates254f7962012-05-01 11:43:06 -0500911 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
912 a = rq->head[rq->current_entry];
913 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600914 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600915 } else {
916 a = FIFO_EMPTY;
917 }
918 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500919 if (rq->current_entry == h->max_commands) {
920 rq->current_entry = 0;
921 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600922 }
923 return a;
924}
925
Scott Teelc3497752014-02-18 13:56:34 -0600926/*
927 * There are some special bits in the bus address of the
928 * command that we have to set for the controller to know
929 * how to process the command:
930 *
931 * Normal performant mode:
932 * bit 0: 1 means performant mode, 0 means simple mode.
933 * bits 1-3 = block fetch table entry
934 * bits 4-6 = command type (== 0)
935 *
936 * ioaccel1 mode:
937 * bit 0 = "performant mode" bit.
938 * bits 1-3 = block fetch table entry
939 * bits 4-6 = command type (== 110)
940 * (command type is needed because ioaccel1 mode
941 * commands are submitted through the same register as normal
942 * mode commands, so this is how the controller knows whether
943 * the command is normal mode or ioaccel1 mode.)
944 *
945 * ioaccel2 mode:
946 * bit 0 = "performant mode" bit.
947 * bits 1-4 = block fetch table entry (note extra bit)
948 * bits 4-6 = not needed, because ioaccel2 mode has
949 * a separate special register for submitting commands.
950 */
951
Webb Scales25163bd2015-04-23 09:32:00 -0500952/*
953 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600954 * set bit 0 for pull model, bits 3-1 for block fetch
955 * register number
956 */
Webb Scales25163bd2015-04-23 09:32:00 -0500957#define DEFAULT_REPLY_QUEUE (-1)
958static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
959 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600960{
Matt Gates254f7962012-05-01 11:43:06 -0500961 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600962 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -0500963 if (unlikely(!h->msix_vector))
964 return;
965 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -0500966 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200967 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -0500968 else
969 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500970 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600971}
972
Scott Teelc3497752014-02-18 13:56:34 -0600973static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500974 struct CommandList *c,
975 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600976{
977 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
978
Webb Scales25163bd2015-04-23 09:32:00 -0500979 /*
980 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600981 * processor. This seems to give the best I/O throughput.
982 */
Webb Scales25163bd2015-04-23 09:32:00 -0500983 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
984 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
985 else
986 cp->ReplyQueue = reply_queue % h->nreply_queues;
987 /*
988 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600989 * - performant mode bit (bit 0)
990 * - pull count (bits 1-3)
991 * - command type (bits 4-6)
992 */
993 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
994 IOACCEL1_BUSADDR_CMDTYPE;
995}
996
Stephen Cameron8be986c2015-04-23 09:34:06 -0500997static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
998 struct CommandList *c,
999 int reply_queue)
1000{
1001 struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
1002 &h->ioaccel2_cmd_pool[c->cmdindex];
1003
1004 /* Tell the controller to post the reply to the queue for this
1005 * processor. This seems to give the best I/O throughput.
1006 */
1007 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1008 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1009 else
1010 cp->reply_queue = reply_queue % h->nreply_queues;
1011 /* Set the bits in the address sent down to include:
1012 * - performant mode bit not used in ioaccel mode 2
1013 * - pull count (bits 0-3)
1014 * - command type isn't needed for ioaccel2
1015 */
1016 c->busaddr |= h->ioaccel2_blockFetchTable[0];
1017}
1018
Scott Teelc3497752014-02-18 13:56:34 -06001019static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001020 struct CommandList *c,
1021 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001022{
1023 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
1024
Webb Scales25163bd2015-04-23 09:32:00 -05001025 /*
1026 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001027 * processor. This seems to give the best I/O throughput.
1028 */
Webb Scales25163bd2015-04-23 09:32:00 -05001029 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1030 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1031 else
1032 cp->reply_queue = reply_queue % h->nreply_queues;
1033 /*
1034 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001035 * - performant mode bit not used in ioaccel mode 2
1036 * - pull count (bits 0-3)
1037 * - command type isn't needed for ioaccel2
1038 */
1039 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
1040}
1041
Stephen M. Camerone85c5972012-05-01 11:43:42 -05001042static int is_firmware_flash_cmd(u8 *cdb)
1043{
1044 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
1045}
1046
1047/*
1048 * During firmware flash, the heartbeat register may not update as frequently
1049 * as it should. So we dial down lockup detection during firmware flash. and
1050 * dial it back up when firmware flash completes.
1051 */
1052#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
1053#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
1054static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
1055 struct CommandList *c)
1056{
1057 if (!is_firmware_flash_cmd(c->Request.CDB))
1058 return;
1059 atomic_inc(&h->firmware_flash_in_progress);
1060 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
1061}
1062
1063static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
1064 struct CommandList *c)
1065{
1066 if (is_firmware_flash_cmd(c->Request.CDB) &&
1067 atomic_dec_and_test(&h->firmware_flash_in_progress))
1068 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
1069}
1070
Webb Scales25163bd2015-04-23 09:32:00 -05001071static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
1072 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001073{
Stephen Cameronc05e8862015-01-23 16:44:40 -06001074 dial_down_lockup_detection_during_fw_flash(h, c);
1075 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -06001076 switch (c->cmd_type) {
1077 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -05001078 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001079 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -06001080 break;
1081 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -05001082 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001083 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -06001084 break;
Stephen Cameron8be986c2015-04-23 09:34:06 -05001085 case IOACCEL2_TMF:
1086 set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
1087 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
1088 break;
Scott Teelc3497752014-02-18 13:56:34 -06001089 default:
Webb Scales25163bd2015-04-23 09:32:00 -05001090 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001091 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06001092 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001093}
1094
Webb Scalesa58e7e52015-04-23 09:34:16 -05001095static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c)
Webb Scales25163bd2015-04-23 09:32:00 -05001096{
Webb Scalesd604f532015-04-23 09:35:22 -05001097 if (unlikely(hpsa_is_pending_event(c)))
Webb Scalesa58e7e52015-04-23 09:34:16 -05001098 return finish_cmd(c);
1099
Webb Scales25163bd2015-04-23 09:32:00 -05001100 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
1101}
1102
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001103static inline int is_hba_lunid(unsigned char scsi3addr[])
1104{
1105 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
1106}
1107
1108static inline int is_scsi_rev_5(struct ctlr_info *h)
1109{
1110 if (!h->hba_inquiry_data)
1111 return 0;
1112 if ((h->hba_inquiry_data[2] & 0x07) == 5)
1113 return 1;
1114 return 0;
1115}
1116
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001117static int hpsa_find_target_lun(struct ctlr_info *h,
1118 unsigned char scsi3addr[], int bus, int *target, int *lun)
1119{
1120 /* finds an unused bus, target, lun for a new physical device
1121 * assumes h->devlock is held
1122 */
1123 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -05001124 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001125
Akinobu Mita263d9402012-01-21 00:15:27 +09001126 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001127
1128 for (i = 0; i < h->ndevices; i++) {
1129 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +09001130 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001131 }
1132
Akinobu Mita263d9402012-01-21 00:15:27 +09001133 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
1134 if (i < HPSA_MAX_DEVICES) {
1135 /* *bus = 1; */
1136 *target = i;
1137 *lun = 0;
1138 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001139 }
1140 return !found;
1141}
1142
Don Brace1d33d852015-11-04 15:50:31 -06001143static void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
Webb Scales0d96ef52015-04-23 09:31:55 -05001144 struct hpsa_scsi_dev_t *dev, char *description)
1145{
Don Brace9975ec92015-11-04 15:50:25 -06001146 if (h == NULL || h->pdev == NULL || h->scsi_host == NULL)
1147 return;
1148
Webb Scales0d96ef52015-04-23 09:31:55 -05001149 dev_printk(level, &h->pdev->dev,
1150 "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
1151 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
1152 description,
1153 scsi_device_type(dev->devtype),
1154 dev->vendor,
1155 dev->model,
1156 dev->raid_level > RAID_UNKNOWN ?
1157 "RAID-?" : raid_label[dev->raid_level],
1158 dev->offload_config ? '+' : '-',
1159 dev->offload_enabled ? '+' : '-',
Kevin Barnett2a168202015-11-04 15:51:21 -06001160 dev->expose_device);
Webb Scales0d96ef52015-04-23 09:31:55 -05001161}
1162
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001163/* Add an entry into h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001164static int hpsa_scsi_add_entry(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001165 struct hpsa_scsi_dev_t *device,
1166 struct hpsa_scsi_dev_t *added[], int *nadded)
1167{
1168 /* assumes h->devlock is held */
1169 int n = h->ndevices;
1170 int i;
1171 unsigned char addr1[8], addr2[8];
1172 struct hpsa_scsi_dev_t *sd;
1173
Scott Teelcfe5bad2011-10-26 16:21:07 -05001174 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001175 dev_err(&h->pdev->dev, "too many devices, some will be "
1176 "inaccessible.\n");
1177 return -1;
1178 }
1179
1180 /* physical devices do not have lun or target assigned until now. */
1181 if (device->lun != -1)
1182 /* Logical device, lun is already assigned. */
1183 goto lun_assigned;
1184
1185 /* If this device a non-zero lun of a multi-lun device
1186 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001187 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001188 */
1189 if (device->scsi3addr[4] == 0) {
1190 /* This is not a non-zero lun of a multi-lun device */
1191 if (hpsa_find_target_lun(h, device->scsi3addr,
1192 device->bus, &device->target, &device->lun) != 0)
1193 return -1;
1194 goto lun_assigned;
1195 }
1196
1197 /* This is a non-zero lun of a multi-lun device.
1198 * Search through our list and find the device which
shane.seymour9a4178b2015-07-18 11:13:09 -05001199 * has the same 8 byte LUN address, excepting byte 4 and 5.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001200 * Assign the same bus and target for this new LUN.
1201 * Use the logical unit number from the firmware.
1202 */
1203 memcpy(addr1, device->scsi3addr, 8);
1204 addr1[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001205 addr1[5] = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001206 for (i = 0; i < n; i++) {
1207 sd = h->dev[i];
1208 memcpy(addr2, sd->scsi3addr, 8);
1209 addr2[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001210 addr2[5] = 0;
1211 /* differ only in byte 4 and 5? */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001212 if (memcmp(addr1, addr2, 8) == 0) {
1213 device->bus = sd->bus;
1214 device->target = sd->target;
1215 device->lun = device->scsi3addr[4];
1216 break;
1217 }
1218 }
1219 if (device->lun == -1) {
1220 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1221 " suspect firmware bug or unsupported hardware "
1222 "configuration.\n");
1223 return -1;
1224 }
1225
1226lun_assigned:
1227
1228 h->dev[n] = device;
1229 h->ndevices++;
1230 added[*nadded] = device;
1231 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001232 hpsa_show_dev_msg(KERN_INFO, h, device,
Kevin Barnett2a168202015-11-04 15:51:21 -06001233 device->expose_device ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001234 device->offload_to_be_enabled = device->offload_enabled;
1235 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001236 return 0;
1237}
1238
Scott Teelbd9244f2012-01-19 14:01:30 -06001239/* Update an entry in h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001240static void hpsa_scsi_update_entry(struct ctlr_info *h,
Scott Teelbd9244f2012-01-19 14:01:30 -06001241 int entry, struct hpsa_scsi_dev_t *new_entry)
1242{
Robert Elliotta473d862015-04-23 09:32:54 -05001243 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001244 /* assumes h->devlock is held */
1245 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1246
1247 /* Raid level changed. */
1248 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001249
Don Brace03383732015-01-23 16:43:30 -06001250 /* Raid offload parameters changed. Careful about the ordering. */
1251 if (new_entry->offload_config && new_entry->offload_enabled) {
1252 /*
1253 * if drive is newly offload_enabled, we want to copy the
1254 * raid map data first. If previously offload_enabled and
1255 * offload_config were set, raid map data had better be
1256 * the same as it was before. if raid map data is changed
1257 * then it had better be the case that
1258 * h->dev[entry]->offload_enabled is currently 0.
1259 */
1260 h->dev[entry]->raid_map = new_entry->raid_map;
1261 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001262 }
Joe Handzika3144e02015-04-23 09:32:59 -05001263 if (new_entry->hba_ioaccel_enabled) {
1264 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1265 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1266 }
1267 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001268 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001269 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001270 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001271
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001272 /*
1273 * We can turn off ioaccel offload now, but need to delay turning
1274 * it on until we can update h->dev[entry]->phys_disk[], but we
1275 * can't do that until all the devices are updated.
1276 */
1277 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1278 if (!new_entry->offload_enabled)
1279 h->dev[entry]->offload_enabled = 0;
1280
Robert Elliotta473d862015-04-23 09:32:54 -05001281 offload_enabled = h->dev[entry]->offload_enabled;
1282 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001283 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001284 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001285}
1286
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001287/* Replace an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001288static void hpsa_scsi_replace_entry(struct ctlr_info *h,
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001289 int entry, struct hpsa_scsi_dev_t *new_entry,
1290 struct hpsa_scsi_dev_t *added[], int *nadded,
1291 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1292{
1293 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001294 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001295 removed[*nremoved] = h->dev[entry];
1296 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001297
1298 /*
1299 * New physical devices won't have target/lun assigned yet
1300 * so we need to preserve the values in the slot we are replacing.
1301 */
1302 if (new_entry->target == -1) {
1303 new_entry->target = h->dev[entry]->target;
1304 new_entry->lun = h->dev[entry]->lun;
1305 }
1306
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001307 h->dev[entry] = new_entry;
1308 added[*nadded] = new_entry;
1309 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001310 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001311 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1312 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001313}
1314
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001315/* Remove an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001316static void hpsa_scsi_remove_entry(struct ctlr_info *h, int entry,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001317 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1318{
1319 /* assumes h->devlock is held */
1320 int i;
1321 struct hpsa_scsi_dev_t *sd;
1322
Scott Teelcfe5bad2011-10-26 16:21:07 -05001323 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001324
1325 sd = h->dev[entry];
1326 removed[*nremoved] = h->dev[entry];
1327 (*nremoved)++;
1328
1329 for (i = entry; i < h->ndevices-1; i++)
1330 h->dev[i] = h->dev[i+1];
1331 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001332 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001333}
1334
1335#define SCSI3ADDR_EQ(a, b) ( \
1336 (a)[7] == (b)[7] && \
1337 (a)[6] == (b)[6] && \
1338 (a)[5] == (b)[5] && \
1339 (a)[4] == (b)[4] && \
1340 (a)[3] == (b)[3] && \
1341 (a)[2] == (b)[2] && \
1342 (a)[1] == (b)[1] && \
1343 (a)[0] == (b)[0])
1344
1345static void fixup_botched_add(struct ctlr_info *h,
1346 struct hpsa_scsi_dev_t *added)
1347{
1348 /* called when scsi_add_device fails in order to re-adjust
1349 * h->dev[] to match the mid layer's view.
1350 */
1351 unsigned long flags;
1352 int i, j;
1353
1354 spin_lock_irqsave(&h->lock, flags);
1355 for (i = 0; i < h->ndevices; i++) {
1356 if (h->dev[i] == added) {
1357 for (j = i; j < h->ndevices-1; j++)
1358 h->dev[j] = h->dev[j+1];
1359 h->ndevices--;
1360 break;
1361 }
1362 }
1363 spin_unlock_irqrestore(&h->lock, flags);
1364 kfree(added);
1365}
1366
1367static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1368 struct hpsa_scsi_dev_t *dev2)
1369{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001370 /* we compare everything except lun and target as these
1371 * are not yet assigned. Compare parts likely
1372 * to differ first
1373 */
1374 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1375 sizeof(dev1->scsi3addr)) != 0)
1376 return 0;
1377 if (memcmp(dev1->device_id, dev2->device_id,
1378 sizeof(dev1->device_id)) != 0)
1379 return 0;
1380 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1381 return 0;
1382 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1383 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001384 if (dev1->devtype != dev2->devtype)
1385 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001386 if (dev1->bus != dev2->bus)
1387 return 0;
1388 return 1;
1389}
1390
Scott Teelbd9244f2012-01-19 14:01:30 -06001391static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1392 struct hpsa_scsi_dev_t *dev2)
1393{
1394 /* Device attributes that can change, but don't mean
1395 * that the device is a different device, nor that the OS
1396 * needs to be told anything about the change.
1397 */
1398 if (dev1->raid_level != dev2->raid_level)
1399 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001400 if (dev1->offload_config != dev2->offload_config)
1401 return 1;
1402 if (dev1->offload_enabled != dev2->offload_enabled)
1403 return 1;
Don Brace93849502015-07-18 11:12:49 -05001404 if (!is_logical_dev_addr_mode(dev1->scsi3addr))
1405 if (dev1->queue_depth != dev2->queue_depth)
1406 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001407 return 0;
1408}
1409
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001410/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1411 * and return needle location in *index. If scsi3addr matches, but not
1412 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001413 * location in *index.
1414 * In the case of a minor device attribute change, such as RAID level, just
1415 * return DEVICE_UPDATED, along with the updated device's location in index.
1416 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001417 */
1418static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1419 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1420 int *index)
1421{
1422 int i;
1423#define DEVICE_NOT_FOUND 0
1424#define DEVICE_CHANGED 1
1425#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001426#define DEVICE_UPDATED 3
Don Brace1d33d852015-11-04 15:50:31 -06001427 if (needle == NULL)
1428 return DEVICE_NOT_FOUND;
1429
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001430 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001431 if (haystack[i] == NULL) /* previously removed. */
1432 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001433 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1434 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001435 if (device_is_the_same(needle, haystack[i])) {
1436 if (device_updated(needle, haystack[i]))
1437 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001438 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001439 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001440 /* Keep offline devices offline */
1441 if (needle->volume_offline)
1442 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001443 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001444 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001445 }
1446 }
1447 *index = -1;
1448 return DEVICE_NOT_FOUND;
1449}
1450
Stephen M. Cameron98465902014-02-21 16:25:00 -06001451static void hpsa_monitor_offline_device(struct ctlr_info *h,
1452 unsigned char scsi3addr[])
1453{
1454 struct offline_device_entry *device;
1455 unsigned long flags;
1456
1457 /* Check to see if device is already on the list */
1458 spin_lock_irqsave(&h->offline_device_lock, flags);
1459 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1460 if (memcmp(device->scsi3addr, scsi3addr,
1461 sizeof(device->scsi3addr)) == 0) {
1462 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1463 return;
1464 }
1465 }
1466 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1467
1468 /* Device is not on the list, add it. */
1469 device = kmalloc(sizeof(*device), GFP_KERNEL);
1470 if (!device) {
1471 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1472 return;
1473 }
1474 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1475 spin_lock_irqsave(&h->offline_device_lock, flags);
1476 list_add_tail(&device->offline_list, &h->offline_device_list);
1477 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1478}
1479
1480/* Print a message explaining various offline volume states */
1481static void hpsa_show_volume_status(struct ctlr_info *h,
1482 struct hpsa_scsi_dev_t *sd)
1483{
1484 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1485 dev_info(&h->pdev->dev,
1486 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1487 h->scsi_host->host_no,
1488 sd->bus, sd->target, sd->lun);
1489 switch (sd->volume_offline) {
1490 case HPSA_LV_OK:
1491 break;
1492 case HPSA_LV_UNDERGOING_ERASE:
1493 dev_info(&h->pdev->dev,
1494 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1495 h->scsi_host->host_no,
1496 sd->bus, sd->target, sd->lun);
1497 break;
Scott Benesh5ca01202015-07-18 11:13:04 -05001498 case HPSA_LV_NOT_AVAILABLE:
1499 dev_info(&h->pdev->dev,
1500 "C%d:B%d:T%d:L%d Volume is waiting for transforming volume.\n",
1501 h->scsi_host->host_no,
1502 sd->bus, sd->target, sd->lun);
1503 break;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001504 case HPSA_LV_UNDERGOING_RPI:
1505 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001506 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity init.\n",
Stephen M. Cameron98465902014-02-21 16:25:00 -06001507 h->scsi_host->host_no,
1508 sd->bus, sd->target, sd->lun);
1509 break;
1510 case HPSA_LV_PENDING_RPI:
1511 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001512 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1513 h->scsi_host->host_no,
1514 sd->bus, sd->target, sd->lun);
Stephen M. Cameron98465902014-02-21 16:25:00 -06001515 break;
1516 case HPSA_LV_ENCRYPTED_NO_KEY:
1517 dev_info(&h->pdev->dev,
1518 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1519 h->scsi_host->host_no,
1520 sd->bus, sd->target, sd->lun);
1521 break;
1522 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1523 dev_info(&h->pdev->dev,
1524 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1525 h->scsi_host->host_no,
1526 sd->bus, sd->target, sd->lun);
1527 break;
1528 case HPSA_LV_UNDERGOING_ENCRYPTION:
1529 dev_info(&h->pdev->dev,
1530 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1531 h->scsi_host->host_no,
1532 sd->bus, sd->target, sd->lun);
1533 break;
1534 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1535 dev_info(&h->pdev->dev,
1536 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1537 h->scsi_host->host_no,
1538 sd->bus, sd->target, sd->lun);
1539 break;
1540 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1541 dev_info(&h->pdev->dev,
1542 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1543 h->scsi_host->host_no,
1544 sd->bus, sd->target, sd->lun);
1545 break;
1546 case HPSA_LV_PENDING_ENCRYPTION:
1547 dev_info(&h->pdev->dev,
1548 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1549 h->scsi_host->host_no,
1550 sd->bus, sd->target, sd->lun);
1551 break;
1552 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1553 dev_info(&h->pdev->dev,
1554 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1555 h->scsi_host->host_no,
1556 sd->bus, sd->target, sd->lun);
1557 break;
1558 }
1559}
1560
Don Brace03383732015-01-23 16:43:30 -06001561/*
1562 * Figure the list of physical drive pointers for a logical drive with
1563 * raid offload configured.
1564 */
1565static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1566 struct hpsa_scsi_dev_t *dev[], int ndevices,
1567 struct hpsa_scsi_dev_t *logical_drive)
1568{
1569 struct raid_map_data *map = &logical_drive->raid_map;
1570 struct raid_map_disk_data *dd = &map->data[0];
1571 int i, j;
1572 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1573 le16_to_cpu(map->metadata_disks_per_row);
1574 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1575 le16_to_cpu(map->layout_map_count) *
1576 total_disks_per_row;
1577 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1578 total_disks_per_row;
1579 int qdepth;
1580
1581 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1582 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1583
Webb Scalesd604f532015-04-23 09:35:22 -05001584 logical_drive->nphysical_disks = nraid_map_entries;
1585
Don Brace03383732015-01-23 16:43:30 -06001586 qdepth = 0;
1587 for (i = 0; i < nraid_map_entries; i++) {
1588 logical_drive->phys_disk[i] = NULL;
1589 if (!logical_drive->offload_config)
1590 continue;
1591 for (j = 0; j < ndevices; j++) {
Don Brace1d33d852015-11-04 15:50:31 -06001592 if (dev[j] == NULL)
1593 continue;
Don Brace03383732015-01-23 16:43:30 -06001594 if (dev[j]->devtype != TYPE_DISK)
1595 continue;
Kevin Barnettf3f01732015-11-04 15:51:33 -06001596 if (is_logical_device(dev[j]))
Don Brace03383732015-01-23 16:43:30 -06001597 continue;
1598 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1599 continue;
1600
1601 logical_drive->phys_disk[i] = dev[j];
1602 if (i < nphys_disk)
1603 qdepth = min(h->nr_cmds, qdepth +
1604 logical_drive->phys_disk[i]->queue_depth);
1605 break;
1606 }
1607
1608 /*
1609 * This can happen if a physical drive is removed and
1610 * the logical drive is degraded. In that case, the RAID
1611 * map data will refer to a physical disk which isn't actually
1612 * present. And in that case offload_enabled should already
1613 * be 0, but we'll turn it off here just in case
1614 */
1615 if (!logical_drive->phys_disk[i]) {
1616 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001617 logical_drive->offload_to_be_enabled = 0;
1618 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001619 }
1620 }
1621 if (nraid_map_entries)
1622 /*
1623 * This is correct for reads, too high for full stripe writes,
1624 * way too high for partial stripe writes
1625 */
1626 logical_drive->queue_depth = qdepth;
1627 else
1628 logical_drive->queue_depth = h->nr_cmds;
1629}
1630
1631static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1632 struct hpsa_scsi_dev_t *dev[], int ndevices)
1633{
1634 int i;
1635
1636 for (i = 0; i < ndevices; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001637 if (dev[i] == NULL)
1638 continue;
Don Brace03383732015-01-23 16:43:30 -06001639 if (dev[i]->devtype != TYPE_DISK)
1640 continue;
Kevin Barnettf3f01732015-11-04 15:51:33 -06001641 if (!is_logical_device(dev[i]))
Don Brace03383732015-01-23 16:43:30 -06001642 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001643
1644 /*
1645 * If offload is currently enabled, the RAID map and
1646 * phys_disk[] assignment *better* not be changing
1647 * and since it isn't changing, we do not need to
1648 * update it.
1649 */
1650 if (dev[i]->offload_enabled)
1651 continue;
1652
Don Brace03383732015-01-23 16:43:30 -06001653 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1654 }
1655}
1656
Kevin Barnett096ccff2015-11-04 15:51:51 -06001657static int hpsa_add_device(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
1658{
1659 int rc = 0;
1660
1661 if (!h->scsi_host)
1662 return 1;
1663
1664 rc = scsi_add_device(h->scsi_host, device->bus,
1665 device->target, device->lun);
1666 return rc;
1667}
1668
1669static void hpsa_remove_device(struct ctlr_info *h,
1670 struct hpsa_scsi_dev_t *device)
1671{
1672 struct scsi_device *sdev = NULL;
1673
1674 if (!h->scsi_host)
1675 return;
1676
1677 sdev = scsi_device_lookup(h->scsi_host, device->bus,
1678 device->target, device->lun);
1679
1680 if (sdev) {
1681 scsi_remove_device(sdev);
1682 scsi_device_put(sdev);
1683 } else {
1684 /*
1685 * We don't expect to get here. Future commands
1686 * to this device will get a selection timeout as
1687 * if the device were gone.
1688 */
1689 hpsa_show_dev_msg(KERN_WARNING, h, device,
1690 "didn't find device for removal.");
1691 }
1692}
1693
Don Brace8aa60682015-11-04 15:50:01 -06001694static void adjust_hpsa_scsi_table(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001695 struct hpsa_scsi_dev_t *sd[], int nsds)
1696{
1697 /* sd contains scsi3 addresses and devtypes, and inquiry
1698 * data. This function takes what's in sd to be the current
1699 * reality and updates h->dev[] to reflect that reality.
1700 */
1701 int i, entry, device_change, changes = 0;
1702 struct hpsa_scsi_dev_t *csd;
1703 unsigned long flags;
1704 struct hpsa_scsi_dev_t **added, **removed;
1705 int nadded, nremoved;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001706
Don Braceda03ded2015-11-04 15:50:56 -06001707 /*
1708 * A reset can cause a device status to change
1709 * re-schedule the scan to see what happened.
1710 */
1711 if (h->reset_in_progress) {
1712 h->drv_req_rescan = 1;
1713 return;
1714 }
1715
Scott Teelcfe5bad2011-10-26 16:21:07 -05001716 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1717 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001718
1719 if (!added || !removed) {
1720 dev_warn(&h->pdev->dev, "out of memory in "
1721 "adjust_hpsa_scsi_table\n");
1722 goto free_and_out;
1723 }
1724
1725 spin_lock_irqsave(&h->devlock, flags);
1726
1727 /* find any devices in h->dev[] that are not in
1728 * sd[] and remove them from h->dev[], and for any
1729 * devices which have changed, remove the old device
1730 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001731 * If minor device attributes change, just update
1732 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001733 */
1734 i = 0;
1735 nremoved = 0;
1736 nadded = 0;
1737 while (i < h->ndevices) {
1738 csd = h->dev[i];
1739 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1740 if (device_change == DEVICE_NOT_FOUND) {
1741 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001742 hpsa_scsi_remove_entry(h, i, removed, &nremoved);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001743 continue; /* remove ^^^, hence i not incremented */
1744 } else if (device_change == DEVICE_CHANGED) {
1745 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001746 hpsa_scsi_replace_entry(h, i, sd[entry],
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001747 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001748 /* Set it to NULL to prevent it from being freed
1749 * at the bottom of hpsa_update_scsi_devices()
1750 */
1751 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001752 } else if (device_change == DEVICE_UPDATED) {
Don Brace8aa60682015-11-04 15:50:01 -06001753 hpsa_scsi_update_entry(h, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001754 }
1755 i++;
1756 }
1757
1758 /* Now, make sure every device listed in sd[] is also
1759 * listed in h->dev[], adding them if they aren't found
1760 */
1761
1762 for (i = 0; i < nsds; i++) {
1763 if (!sd[i]) /* if already added above. */
1764 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001765
1766 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1767 * as the SCSI mid-layer does not handle such devices well.
1768 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1769 * at 160Hz, and prevents the system from coming up.
1770 */
1771 if (sd[i]->volume_offline) {
1772 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001773 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001774 continue;
1775 }
1776
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001777 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1778 h->ndevices, &entry);
1779 if (device_change == DEVICE_NOT_FOUND) {
1780 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001781 if (hpsa_scsi_add_entry(h, sd[i], added, &nadded) != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001782 break;
1783 sd[i] = NULL; /* prevent from being freed later. */
1784 } else if (device_change == DEVICE_CHANGED) {
1785 /* should never happen... */
1786 changes++;
1787 dev_warn(&h->pdev->dev,
1788 "device unexpectedly changed.\n");
1789 /* but if it does happen, we just ignore that device */
1790 }
1791 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001792 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1793
1794 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1795 * any logical drives that need it enabled.
1796 */
Don Brace1d33d852015-11-04 15:50:31 -06001797 for (i = 0; i < h->ndevices; i++) {
1798 if (h->dev[i] == NULL)
1799 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001800 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
Don Brace1d33d852015-11-04 15:50:31 -06001801 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001802
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001803 spin_unlock_irqrestore(&h->devlock, flags);
1804
Stephen M. Cameron98465902014-02-21 16:25:00 -06001805 /* Monitor devices which are in one of several NOT READY states to be
1806 * brought online later. This must be done without holding h->devlock,
1807 * so don't touch h->dev[]
1808 */
1809 for (i = 0; i < nsds; i++) {
1810 if (!sd[i]) /* if already added above. */
1811 continue;
1812 if (sd[i]->volume_offline)
1813 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1814 }
1815
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001816 /* Don't notify scsi mid layer of any changes the first time through
1817 * (or if there are no changes) scsi_scan_host will do it later the
1818 * first time through.
1819 */
Don Brace8aa60682015-11-04 15:50:01 -06001820 if (!changes)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001821 goto free_and_out;
1822
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001823 /* Notify scsi mid layer of any removed devices */
1824 for (i = 0; i < nremoved; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001825 if (removed[i] == NULL)
1826 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001827 if (removed[i]->expose_device)
1828 hpsa_remove_device(h, removed[i]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001829 kfree(removed[i]);
1830 removed[i] = NULL;
1831 }
1832
1833 /* Notify scsi mid layer of any added devices */
1834 for (i = 0; i < nadded; i++) {
Kevin Barnett096ccff2015-11-04 15:51:51 -06001835 int rc = 0;
1836
Don Brace1d33d852015-11-04 15:50:31 -06001837 if (added[i] == NULL)
1838 continue;
Kevin Barnett2a168202015-11-04 15:51:21 -06001839 if (!(added[i]->expose_device))
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001840 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001841 rc = hpsa_add_device(h, added[i]);
1842 if (!rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001843 continue;
Kevin Barnett096ccff2015-11-04 15:51:51 -06001844 dev_warn(&h->pdev->dev,
1845 "addition failed %d, device not added.", rc);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001846 /* now we have to remove it from h->dev,
1847 * since it didn't get added to scsi mid layer
1848 */
1849 fixup_botched_add(h, added[i]);
Don Brace853633e2015-11-04 15:50:37 -06001850 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001851 }
1852
1853free_and_out:
1854 kfree(added);
1855 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001856}
1857
1858/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001859 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001860 * Assume's h->devlock is held.
1861 */
1862static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1863 int bus, int target, int lun)
1864{
1865 int i;
1866 struct hpsa_scsi_dev_t *sd;
1867
1868 for (i = 0; i < h->ndevices; i++) {
1869 sd = h->dev[i];
1870 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1871 return sd;
1872 }
1873 return NULL;
1874}
1875
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001876static int hpsa_slave_alloc(struct scsi_device *sdev)
1877{
1878 struct hpsa_scsi_dev_t *sd;
1879 unsigned long flags;
1880 struct ctlr_info *h;
1881
1882 h = sdev_to_hba(sdev);
1883 spin_lock_irqsave(&h->devlock, flags);
1884 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1885 sdev_id(sdev), sdev->lun);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001886 if (likely(sd)) {
Don Brace03383732015-01-23 16:43:30 -06001887 atomic_set(&sd->ioaccel_cmds_out, 0);
Kevin Barnett2a168202015-11-04 15:51:21 -06001888 sdev->hostdata = sd->expose_device ? sd : NULL;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001889 } else
1890 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001891 spin_unlock_irqrestore(&h->devlock, flags);
1892 return 0;
1893}
1894
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001895/* configure scsi device based on internal per-device structure */
1896static int hpsa_slave_configure(struct scsi_device *sdev)
1897{
1898 struct hpsa_scsi_dev_t *sd;
1899 int queue_depth;
1900
1901 sd = sdev->hostdata;
Kevin Barnett2a168202015-11-04 15:51:21 -06001902 sdev->no_uld_attach = !sd || !sd->expose_device;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001903
1904 if (sd)
1905 queue_depth = sd->queue_depth != 0 ?
1906 sd->queue_depth : sdev->host->can_queue;
1907 else
1908 queue_depth = sdev->host->can_queue;
1909
1910 scsi_change_queue_depth(sdev, queue_depth);
1911
1912 return 0;
1913}
1914
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001915static void hpsa_slave_destroy(struct scsi_device *sdev)
1916{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001917 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001918}
1919
Webb Scalesd9a729f2015-04-23 09:33:27 -05001920static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1921{
1922 int i;
1923
1924 if (!h->ioaccel2_cmd_sg_list)
1925 return;
1926 for (i = 0; i < h->nr_cmds; i++) {
1927 kfree(h->ioaccel2_cmd_sg_list[i]);
1928 h->ioaccel2_cmd_sg_list[i] = NULL;
1929 }
1930 kfree(h->ioaccel2_cmd_sg_list);
1931 h->ioaccel2_cmd_sg_list = NULL;
1932}
1933
1934static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1935{
1936 int i;
1937
1938 if (h->chainsize <= 0)
1939 return 0;
1940
1941 h->ioaccel2_cmd_sg_list =
1942 kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
1943 GFP_KERNEL);
1944 if (!h->ioaccel2_cmd_sg_list)
1945 return -ENOMEM;
1946 for (i = 0; i < h->nr_cmds; i++) {
1947 h->ioaccel2_cmd_sg_list[i] =
1948 kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
1949 h->maxsgentries, GFP_KERNEL);
1950 if (!h->ioaccel2_cmd_sg_list[i])
1951 goto clean;
1952 }
1953 return 0;
1954
1955clean:
1956 hpsa_free_ioaccel2_sg_chain_blocks(h);
1957 return -ENOMEM;
1958}
1959
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001960static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1961{
1962 int i;
1963
1964 if (!h->cmd_sg_list)
1965 return;
1966 for (i = 0; i < h->nr_cmds; i++) {
1967 kfree(h->cmd_sg_list[i]);
1968 h->cmd_sg_list[i] = NULL;
1969 }
1970 kfree(h->cmd_sg_list);
1971 h->cmd_sg_list = NULL;
1972}
1973
Robert Elliott105a3db2015-04-23 09:33:48 -05001974static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001975{
1976 int i;
1977
1978 if (h->chainsize <= 0)
1979 return 0;
1980
1981 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1982 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001983 if (!h->cmd_sg_list) {
1984 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001985 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001986 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001987 for (i = 0; i < h->nr_cmds; i++) {
1988 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1989 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001990 if (!h->cmd_sg_list[i]) {
1991 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001992 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001993 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001994 }
1995 return 0;
1996
1997clean:
1998 hpsa_free_sg_chain_blocks(h);
1999 return -ENOMEM;
2000}
2001
Webb Scalesd9a729f2015-04-23 09:33:27 -05002002static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
2003 struct io_accel2_cmd *cp, struct CommandList *c)
2004{
2005 struct ioaccel2_sg_element *chain_block;
2006 u64 temp64;
2007 u32 chain_size;
2008
2009 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
Don Bracea736e9b2015-11-04 15:51:14 -06002010 chain_size = le32_to_cpu(cp->sg[0].length);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002011 temp64 = pci_map_single(h->pdev, chain_block, chain_size,
2012 PCI_DMA_TODEVICE);
2013 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2014 /* prevent subsequent unmapping */
2015 cp->sg->address = 0;
2016 return -1;
2017 }
2018 cp->sg->address = cpu_to_le64(temp64);
2019 return 0;
2020}
2021
2022static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
2023 struct io_accel2_cmd *cp)
2024{
2025 struct ioaccel2_sg_element *chain_sg;
2026 u64 temp64;
2027 u32 chain_size;
2028
2029 chain_sg = cp->sg;
2030 temp64 = le64_to_cpu(chain_sg->address);
Don Bracea736e9b2015-11-04 15:51:14 -06002031 chain_size = le32_to_cpu(cp->sg[0].length);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002032 pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
2033}
2034
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002035static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002036 struct CommandList *c)
2037{
2038 struct SGDescriptor *chain_sg, *chain_block;
2039 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002040 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002041
2042 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
2043 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002044 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
2045 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06002046 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002047 chain_sg->Len = cpu_to_le32(chain_len);
2048 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002049 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002050 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2051 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002052 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002053 return -1;
2054 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002055 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002056 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002057}
2058
2059static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
2060 struct CommandList *c)
2061{
2062 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002063
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002064 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002065 return;
2066
2067 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002068 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
2069 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002070}
2071
Scott Teela09c1442014-02-18 13:57:21 -06002072
2073/* Decode the various types of errors on ioaccel2 path.
2074 * Return 1 for any error that should generate a RAID path retry.
2075 * Return 0 for errors that don't require a RAID path retry.
2076 */
2077static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06002078 struct CommandList *c,
2079 struct scsi_cmnd *cmd,
2080 struct io_accel2_cmd *c2)
2081{
2082 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06002083 int retry = 0;
Joe Handzikc40820d2015-04-23 09:33:32 -05002084 u32 ioaccel2_resid = 0;
Scott Teelc3497752014-02-18 13:56:34 -06002085
2086 switch (c2->error_data.serv_response) {
2087 case IOACCEL2_SERV_RESPONSE_COMPLETE:
2088 switch (c2->error_data.status) {
2089 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
2090 break;
2091 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002092 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06002093 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002094 IOACCEL2_SENSE_DATA_PRESENT) {
2095 memset(cmd->sense_buffer, 0,
2096 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06002097 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002098 }
Scott Teelc3497752014-02-18 13:56:34 -06002099 /* copy the sense data */
2100 data_len = c2->error_data.sense_data_len;
2101 if (data_len > SCSI_SENSE_BUFFERSIZE)
2102 data_len = SCSI_SENSE_BUFFERSIZE;
2103 if (data_len > sizeof(c2->error_data.sense_data_buff))
2104 data_len =
2105 sizeof(c2->error_data.sense_data_buff);
2106 memcpy(cmd->sense_buffer,
2107 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06002108 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002109 break;
2110 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
Scott Teela09c1442014-02-18 13:57:21 -06002111 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002112 break;
2113 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
Scott Teela09c1442014-02-18 13:57:21 -06002114 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002115 break;
2116 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05002117 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002118 break;
2119 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
Scott Teela09c1442014-02-18 13:57:21 -06002120 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002121 break;
2122 default:
Scott Teela09c1442014-02-18 13:57:21 -06002123 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002124 break;
2125 }
2126 break;
2127 case IOACCEL2_SERV_RESPONSE_FAILURE:
Joe Handzikc40820d2015-04-23 09:33:32 -05002128 switch (c2->error_data.status) {
2129 case IOACCEL2_STATUS_SR_IO_ERROR:
2130 case IOACCEL2_STATUS_SR_IO_ABORTED:
2131 case IOACCEL2_STATUS_SR_OVERRUN:
2132 retry = 1;
2133 break;
2134 case IOACCEL2_STATUS_SR_UNDERRUN:
2135 cmd->result = (DID_OK << 16); /* host byte */
2136 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
2137 ioaccel2_resid = get_unaligned_le32(
2138 &c2->error_data.resid_cnt[0]);
2139 scsi_set_resid(cmd, ioaccel2_resid);
2140 break;
2141 case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
2142 case IOACCEL2_STATUS_SR_INVALID_DEVICE:
2143 case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
2144 /* We will get an event from ctlr to trigger rescan */
2145 retry = 1;
2146 break;
2147 default:
2148 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002149 }
Scott Teelc3497752014-02-18 13:56:34 -06002150 break;
2151 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
2152 break;
2153 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
2154 break;
2155 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
Scott Teela09c1442014-02-18 13:57:21 -06002156 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002157 break;
2158 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
Scott Teelc3497752014-02-18 13:56:34 -06002159 break;
2160 default:
Scott Teela09c1442014-02-18 13:57:21 -06002161 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002162 break;
2163 }
Scott Teela09c1442014-02-18 13:57:21 -06002164
2165 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06002166}
2167
Webb Scalesa58e7e52015-04-23 09:34:16 -05002168static void hpsa_cmd_resolve_events(struct ctlr_info *h,
2169 struct CommandList *c)
2170{
Webb Scalesd604f532015-04-23 09:35:22 -05002171 bool do_wake = false;
2172
Webb Scalesa58e7e52015-04-23 09:34:16 -05002173 /*
2174 * Prevent the following race in the abort handler:
2175 *
2176 * 1. LLD is requested to abort a SCSI command
2177 * 2. The SCSI command completes
2178 * 3. The struct CommandList associated with step 2 is made available
2179 * 4. New I/O request to LLD to another LUN re-uses struct CommandList
2180 * 5. Abort handler follows scsi_cmnd->host_scribble and
2181 * finds struct CommandList and tries to aborts it
2182 * Now we have aborted the wrong command.
2183 *
Webb Scalesd604f532015-04-23 09:35:22 -05002184 * Reset c->scsi_cmd here so that the abort or reset handler will know
2185 * this command has completed. Then, check to see if the handler is
Webb Scalesa58e7e52015-04-23 09:34:16 -05002186 * waiting for this command, and, if so, wake it.
2187 */
2188 c->scsi_cmd = SCSI_CMD_IDLE;
Webb Scalesd604f532015-04-23 09:35:22 -05002189 mb(); /* Declare command idle before checking for pending events. */
Webb Scalesa58e7e52015-04-23 09:34:16 -05002190 if (c->abort_pending) {
Webb Scalesd604f532015-04-23 09:35:22 -05002191 do_wake = true;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002192 c->abort_pending = false;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002193 }
Webb Scalesd604f532015-04-23 09:35:22 -05002194 if (c->reset_pending) {
2195 unsigned long flags;
2196 struct hpsa_scsi_dev_t *dev;
2197
2198 /*
2199 * There appears to be a reset pending; lock the lock and
2200 * reconfirm. If so, then decrement the count of outstanding
2201 * commands and wake the reset command if this is the last one.
2202 */
2203 spin_lock_irqsave(&h->lock, flags);
2204 dev = c->reset_pending; /* Re-fetch under the lock. */
2205 if (dev && atomic_dec_and_test(&dev->reset_cmds_out))
2206 do_wake = true;
2207 c->reset_pending = NULL;
2208 spin_unlock_irqrestore(&h->lock, flags);
2209 }
2210
2211 if (do_wake)
2212 wake_up_all(&h->event_sync_wait_queue);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002213}
2214
Webb Scales73153fe2015-04-23 09:35:04 -05002215static void hpsa_cmd_resolve_and_free(struct ctlr_info *h,
2216 struct CommandList *c)
2217{
2218 hpsa_cmd_resolve_events(h, c);
2219 cmd_tagged_free(h, c);
2220}
2221
Webb Scales8a0ff922015-04-23 09:34:11 -05002222static void hpsa_cmd_free_and_done(struct ctlr_info *h,
2223 struct CommandList *c, struct scsi_cmnd *cmd)
2224{
Webb Scales73153fe2015-04-23 09:35:04 -05002225 hpsa_cmd_resolve_and_free(h, c);
Webb Scales8a0ff922015-04-23 09:34:11 -05002226 cmd->scsi_done(cmd);
2227}
2228
2229static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c)
2230{
2231 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
2232 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
2233}
2234
Webb Scalesa58e7e52015-04-23 09:34:16 -05002235static void hpsa_set_scsi_cmd_aborted(struct scsi_cmnd *cmd)
2236{
2237 cmd->result = DID_ABORT << 16;
2238}
2239
2240static void hpsa_cmd_abort_and_free(struct ctlr_info *h, struct CommandList *c,
2241 struct scsi_cmnd *cmd)
2242{
2243 hpsa_set_scsi_cmd_aborted(cmd);
2244 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2245 c->Request.CDB, c->err_info->ScsiStatus);
Webb Scales73153fe2015-04-23 09:35:04 -05002246 hpsa_cmd_resolve_and_free(h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002247}
2248
Scott Teelc3497752014-02-18 13:56:34 -06002249static void process_ioaccel2_completion(struct ctlr_info *h,
2250 struct CommandList *c, struct scsi_cmnd *cmd,
2251 struct hpsa_scsi_dev_t *dev)
2252{
2253 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2254
2255 /* check for good status */
2256 if (likely(c2->error_data.serv_response == 0 &&
Webb Scales8a0ff922015-04-23 09:34:11 -05002257 c2->error_data.status == 0))
2258 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002259
Webb Scales8a0ff922015-04-23 09:34:11 -05002260 /*
2261 * Any RAID offload error results in retry which will use
Scott Teelc3497752014-02-18 13:56:34 -06002262 * the normal I/O path so the controller can handle whatever's
2263 * wrong.
2264 */
Kevin Barnettf3f01732015-11-04 15:51:33 -06002265 if (is_logical_device(dev) &&
Scott Teelc3497752014-02-18 13:56:34 -06002266 c2->error_data.serv_response ==
2267 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06002268 if (c2->error_data.status ==
2269 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
2270 dev->offload_enabled = 0;
Webb Scales8a0ff922015-04-23 09:34:11 -05002271
2272 return hpsa_retry_cmd(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06002273 }
Don Brace080ef1c2015-01-23 16:43:25 -06002274
2275 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
Webb Scales8a0ff922015-04-23 09:34:11 -05002276 return hpsa_retry_cmd(h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06002277
Webb Scales8a0ff922015-04-23 09:34:11 -05002278 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002279}
2280
Stephen Cameron9437ac42015-04-23 09:32:16 -05002281/* Returns 0 on success, < 0 otherwise. */
2282static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
2283 struct CommandList *cp)
2284{
2285 u8 tmf_status = cp->err_info->ScsiStatus;
2286
2287 switch (tmf_status) {
2288 case CISS_TMF_COMPLETE:
2289 /*
2290 * CISS_TMF_COMPLETE never happens, instead,
2291 * ei->CommandStatus == 0 for this case.
2292 */
2293 case CISS_TMF_SUCCESS:
2294 return 0;
2295 case CISS_TMF_INVALID_FRAME:
2296 case CISS_TMF_NOT_SUPPORTED:
2297 case CISS_TMF_FAILED:
2298 case CISS_TMF_WRONG_LUN:
2299 case CISS_TMF_OVERLAPPED_TAG:
2300 break;
2301 default:
2302 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2303 tmf_status);
2304 break;
2305 }
2306 return -tmf_status;
2307}
2308
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002309static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002310{
2311 struct scsi_cmnd *cmd;
2312 struct ctlr_info *h;
2313 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002314 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002315 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002316
Stephen Cameron9437ac42015-04-23 09:32:16 -05002317 u8 sense_key;
2318 u8 asc; /* additional sense code */
2319 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002320 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002321
2322 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002323 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002324 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002325 dev = cmd->device->hostdata;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002326 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002327
2328 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002329 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002330 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002331 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002332
Webb Scalesd9a729f2015-04-23 09:33:27 -05002333 if ((cp->cmd_type == CMD_IOACCEL2) &&
2334 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2335 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2336
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002337 cmd->result = (DID_OK << 16); /* host byte */
2338 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002339
Don Brace03383732015-01-23 16:43:30 -06002340 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
2341 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2342
Webb Scales25163bd2015-04-23 09:32:00 -05002343 /*
2344 * We check for lockup status here as it may be set for
2345 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2346 * fail_all_oustanding_cmds()
2347 */
2348 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2349 /* DID_NO_CONNECT will prevent a retry */
2350 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05002351 return hpsa_cmd_free_and_done(h, cp, cmd);
Webb Scales25163bd2015-04-23 09:32:00 -05002352 }
2353
Webb Scalesd604f532015-04-23 09:35:22 -05002354 if ((unlikely(hpsa_is_pending_event(cp)))) {
2355 if (cp->reset_pending)
2356 return hpsa_cmd_resolve_and_free(h, cp);
2357 if (cp->abort_pending)
2358 return hpsa_cmd_abort_and_free(h, cp, cmd);
2359 }
2360
Scott Teelc3497752014-02-18 13:56:34 -06002361 if (cp->cmd_type == CMD_IOACCEL2)
2362 return process_ioaccel2_completion(h, cp, cmd, dev);
2363
Robert Elliott6aa4c362014-07-03 10:18:19 -05002364 scsi_set_resid(cmd, ei->ResidualCnt);
Webb Scales8a0ff922015-04-23 09:34:11 -05002365 if (ei->CommandStatus == 0)
2366 return hpsa_cmd_free_and_done(h, cp, cmd);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002367
Matt Gatese1f7de02014-02-18 13:55:17 -06002368 /* For I/O accelerator commands, copy over some fields to the normal
2369 * CISS header used below for error handling.
2370 */
2371 if (cp->cmd_type == CMD_IOACCEL1) {
2372 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002373 cp->Header.SGList = scsi_sg_count(cmd);
2374 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2375 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2376 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002377 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002378 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2379 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002380
2381 /* Any RAID offload error results in retry which will use
2382 * the normal I/O path so the controller can handle whatever's
2383 * wrong.
2384 */
Kevin Barnettf3f01732015-11-04 15:51:33 -06002385 if (is_logical_device(dev)) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002386 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2387 dev->offload_enabled = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05002388 return hpsa_retry_cmd(h, cp);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002389 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002390 }
2391
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002392 /* an error has occurred */
2393 switch (ei->CommandStatus) {
2394
2395 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002396 cmd->result |= ei->ScsiStatus;
2397 /* copy the sense data */
2398 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2399 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2400 else
2401 sense_data_size = sizeof(ei->SenseInfo);
2402 if (ei->SenseLen < sense_data_size)
2403 sense_data_size = ei->SenseLen;
2404 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2405 if (ei->ScsiStatus)
2406 decode_sense_data(ei->SenseInfo, sense_data_size,
2407 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002408 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002409 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002410 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002411 break;
2412 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002413 break;
2414 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002415 /* Problem was not a check condition
2416 * Pass it up to the upper layers...
2417 */
2418 if (ei->ScsiStatus) {
2419 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2420 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2421 "Returning result: 0x%x\n",
2422 cp, ei->ScsiStatus,
2423 sense_key, asc, ascq,
2424 cmd->result);
2425 } else { /* scsi status is zero??? How??? */
2426 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2427 "Returning no connection.\n", cp),
2428
2429 /* Ordinarily, this case should never happen,
2430 * but there is a bug in some released firmware
2431 * revisions that allows it to happen if, for
2432 * example, a 4100 backplane loses power and
2433 * the tape drive is in it. We assume that
2434 * it's a fatal error of some kind because we
2435 * can't show that it wasn't. We will make it
2436 * look like selection timeout since that is
2437 * the most common reason for this to occur,
2438 * and it's severe enough.
2439 */
2440
2441 cmd->result = DID_NO_CONNECT << 16;
2442 }
2443 break;
2444
2445 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2446 break;
2447 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002448 dev_warn(&h->pdev->dev,
2449 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002450 break;
2451 case CMD_INVALID: {
2452 /* print_bytes(cp, sizeof(*cp), 1, 0);
2453 print_cmd(cp); */
2454 /* We get CMD_INVALID if you address a non-existent device
2455 * instead of a selection timeout (no response). You will
2456 * see this if you yank out a drive, then try to access it.
2457 * This is kind of a shame because it means that any other
2458 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2459 * missing target. */
2460 cmd->result = DID_NO_CONNECT << 16;
2461 }
2462 break;
2463 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002464 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002465 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2466 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002467 break;
2468 case CMD_HARDWARE_ERR:
2469 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002470 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2471 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002472 break;
2473 case CMD_CONNECTION_LOST:
2474 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002475 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2476 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002477 break;
2478 case CMD_ABORTED:
Webb Scalesa58e7e52015-04-23 09:34:16 -05002479 /* Return now to avoid calling scsi_done(). */
2480 return hpsa_cmd_abort_and_free(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002481 case CMD_ABORT_FAILED:
2482 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002483 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2484 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002485 break;
2486 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002487 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002488 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2489 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002490 break;
2491 case CMD_TIMEOUT:
2492 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002493 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2494 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002495 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002496 case CMD_UNABORTABLE:
2497 cmd->result = DID_ERROR << 16;
2498 dev_warn(&h->pdev->dev, "Command unabortable\n");
2499 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002500 case CMD_TMF_STATUS:
2501 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2502 cmd->result = DID_ERROR << 16;
2503 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002504 case CMD_IOACCEL_DISABLED:
2505 /* This only handles the direct pass-through case since RAID
2506 * offload is handled above. Just attempt a retry.
2507 */
2508 cmd->result = DID_SOFT_ERROR << 16;
2509 dev_warn(&h->pdev->dev,
2510 "cp %p had HP SSD Smart Path error\n", cp);
2511 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002512 default:
2513 cmd->result = DID_ERROR << 16;
2514 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2515 cp, ei->CommandStatus);
2516 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002517
2518 return hpsa_cmd_free_and_done(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002519}
2520
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002521static void hpsa_pci_unmap(struct pci_dev *pdev,
2522 struct CommandList *c, int sg_used, int data_direction)
2523{
2524 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002525
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002526 for (i = 0; i < sg_used; i++)
2527 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2528 le32_to_cpu(c->SG[i].Len),
2529 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002530}
2531
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002532static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002533 struct CommandList *cp,
2534 unsigned char *buf,
2535 size_t buflen,
2536 int data_direction)
2537{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002538 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002539
2540 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2541 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002542 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002543 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002544 }
2545
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002546 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002547 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002548 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002549 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002550 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002551 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002552 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002553 cp->SG[0].Addr = cpu_to_le64(addr64);
2554 cp->SG[0].Len = cpu_to_le32(buflen);
2555 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2556 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2557 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002558 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002559}
2560
Webb Scales25163bd2015-04-23 09:32:00 -05002561#define NO_TIMEOUT ((unsigned long) -1)
2562#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2563static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2564 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002565{
2566 DECLARE_COMPLETION_ONSTACK(wait);
2567
2568 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002569 __enqueue_cmd_and_start_io(h, c, reply_queue);
2570 if (timeout_msecs == NO_TIMEOUT) {
2571 /* TODO: get rid of this no-timeout thing */
2572 wait_for_completion_io(&wait);
2573 return IO_OK;
2574 }
2575 if (!wait_for_completion_io_timeout(&wait,
2576 msecs_to_jiffies(timeout_msecs))) {
2577 dev_warn(&h->pdev->dev, "Command timed out.\n");
2578 return -ETIMEDOUT;
2579 }
2580 return IO_OK;
2581}
2582
2583static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2584 int reply_queue, unsigned long timeout_msecs)
2585{
2586 if (unlikely(lockup_detected(h))) {
2587 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2588 return IO_OK;
2589 }
2590 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002591}
2592
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002593static u32 lockup_detected(struct ctlr_info *h)
2594{
2595 int cpu;
2596 u32 rc, *lockup_detected;
2597
2598 cpu = get_cpu();
2599 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2600 rc = *lockup_detected;
2601 put_cpu();
2602 return rc;
2603}
2604
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002605#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002606static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2607 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002608{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002609 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002610 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002611
2612 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002613 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002614 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2615 timeout_msecs);
2616 if (rc)
2617 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002618 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002619 if (retry_count > 3) {
2620 msleep(backoff_time);
2621 if (backoff_time < 1000)
2622 backoff_time *= 2;
2623 }
Matt Bondurant852af202012-05-01 11:42:35 -05002624 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002625 check_for_busy(h, c)) &&
2626 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002627 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002628 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2629 rc = -EIO;
2630 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002631}
2632
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002633static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2634 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002635{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002636 const u8 *cdb = c->Request.CDB;
2637 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002638
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002639 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2640 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2641 txt, lun[0], lun[1], lun[2], lun[3],
2642 lun[4], lun[5], lun[6], lun[7],
2643 cdb[0], cdb[1], cdb[2], cdb[3],
2644 cdb[4], cdb[5], cdb[6], cdb[7],
2645 cdb[8], cdb[9], cdb[10], cdb[11],
2646 cdb[12], cdb[13], cdb[14], cdb[15]);
2647}
2648
2649static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2650 struct CommandList *cp)
2651{
2652 const struct ErrorInfo *ei = cp->err_info;
2653 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002654 u8 sense_key, asc, ascq;
2655 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002656
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002657 switch (ei->CommandStatus) {
2658 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002659 if (ei->SenseLen > sizeof(ei->SenseInfo))
2660 sense_len = sizeof(ei->SenseInfo);
2661 else
2662 sense_len = ei->SenseLen;
2663 decode_sense_data(ei->SenseInfo, sense_len,
2664 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002665 hpsa_print_cmd(h, "SCSI status", cp);
2666 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002667 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2668 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002669 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002670 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002671 if (ei->ScsiStatus == 0)
2672 dev_warn(d, "SCSI status is abnormally zero. "
2673 "(probably indicates selection timeout "
2674 "reported incorrectly due to a known "
2675 "firmware bug, circa July, 2001.)\n");
2676 break;
2677 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002678 break;
2679 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002680 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002681 break;
2682 case CMD_INVALID: {
2683 /* controller unfortunately reports SCSI passthru's
2684 * to non-existent targets as invalid commands.
2685 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002686 hpsa_print_cmd(h, "invalid command", cp);
2687 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002688 }
2689 break;
2690 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002691 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002692 break;
2693 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002694 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002695 break;
2696 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002697 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002698 break;
2699 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002700 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002701 break;
2702 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002703 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002704 break;
2705 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002706 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002707 break;
2708 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002709 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002710 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002711 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002712 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002713 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002714 case CMD_CTLR_LOCKUP:
2715 hpsa_print_cmd(h, "controller lockup detected", cp);
2716 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002717 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002718 hpsa_print_cmd(h, "unknown status", cp);
2719 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002720 ei->CommandStatus);
2721 }
2722}
2723
2724static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002725 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002726 unsigned char bufsize)
2727{
2728 int rc = IO_OK;
2729 struct CommandList *c;
2730 struct ErrorInfo *ei;
2731
Stephen Cameron45fcb862015-01-23 16:43:04 -06002732 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002733
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002734 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2735 page, scsi3addr, TYPE_CMD)) {
2736 rc = -1;
2737 goto out;
2738 }
Webb Scales25163bd2015-04-23 09:32:00 -05002739 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2740 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2741 if (rc)
2742 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002743 ei = c->err_info;
2744 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002745 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002746 rc = -1;
2747 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002748out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002749 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002750 return rc;
2751}
2752
Scott Teelbf711ac2014-02-18 13:56:39 -06002753static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002754 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002755{
2756 int rc = IO_OK;
2757 struct CommandList *c;
2758 struct ErrorInfo *ei;
2759
Stephen Cameron45fcb862015-01-23 16:43:04 -06002760 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002761
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002762
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002763 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teel0b9b7b62015-11-04 15:51:02 -06002764 (void) fill_cmd(c, reset_type, h, NULL, 0, 0,
Scott Teelbf711ac2014-02-18 13:56:39 -06002765 scsi3addr, TYPE_MSG);
Webb Scales25163bd2015-04-23 09:32:00 -05002766 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
2767 if (rc) {
2768 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2769 goto out;
2770 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002771 /* no unmap needed here because no data xfer. */
2772
2773 ei = c->err_info;
2774 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002775 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002776 rc = -1;
2777 }
Webb Scales25163bd2015-04-23 09:32:00 -05002778out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002779 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002780 return rc;
2781}
2782
Webb Scalesd604f532015-04-23 09:35:22 -05002783static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
2784 struct hpsa_scsi_dev_t *dev,
2785 unsigned char *scsi3addr)
2786{
2787 int i;
2788 bool match = false;
2789 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2790 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
2791
2792 if (hpsa_is_cmd_idle(c))
2793 return false;
2794
2795 switch (c->cmd_type) {
2796 case CMD_SCSI:
2797 case CMD_IOCTL_PEND:
2798 match = !memcmp(scsi3addr, &c->Header.LUN.LunAddrBytes,
2799 sizeof(c->Header.LUN.LunAddrBytes));
2800 break;
2801
2802 case CMD_IOACCEL1:
2803 case CMD_IOACCEL2:
2804 if (c->phys_disk == dev) {
2805 /* HBA mode match */
2806 match = true;
2807 } else {
2808 /* Possible RAID mode -- check each phys dev. */
2809 /* FIXME: Do we need to take out a lock here? If
2810 * so, we could just call hpsa_get_pdisk_of_ioaccel2()
2811 * instead. */
2812 for (i = 0; i < dev->nphysical_disks && !match; i++) {
2813 /* FIXME: an alternate test might be
2814 *
2815 * match = dev->phys_disk[i]->ioaccel_handle
2816 * == c2->scsi_nexus; */
2817 match = dev->phys_disk[i] == c->phys_disk;
2818 }
2819 }
2820 break;
2821
2822 case IOACCEL2_TMF:
2823 for (i = 0; i < dev->nphysical_disks && !match; i++) {
2824 match = dev->phys_disk[i]->ioaccel_handle ==
2825 le32_to_cpu(ac->it_nexus);
2826 }
2827 break;
2828
2829 case 0: /* The command is in the middle of being initialized. */
2830 match = false;
2831 break;
2832
2833 default:
2834 dev_err(&h->pdev->dev, "unexpected cmd_type: %d\n",
2835 c->cmd_type);
2836 BUG();
2837 }
2838
2839 return match;
2840}
2841
2842static int hpsa_do_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
2843 unsigned char *scsi3addr, u8 reset_type, int reply_queue)
2844{
2845 int i;
2846 int rc = 0;
2847
2848 /* We can really only handle one reset at a time */
2849 if (mutex_lock_interruptible(&h->reset_mutex) == -EINTR) {
2850 dev_warn(&h->pdev->dev, "concurrent reset wait interrupted.\n");
2851 return -EINTR;
2852 }
2853
2854 BUG_ON(atomic_read(&dev->reset_cmds_out) != 0);
2855
2856 for (i = 0; i < h->nr_cmds; i++) {
2857 struct CommandList *c = h->cmd_pool + i;
2858 int refcount = atomic_inc_return(&c->refcount);
2859
2860 if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev, scsi3addr)) {
2861 unsigned long flags;
2862
2863 /*
2864 * Mark the target command as having a reset pending,
2865 * then lock a lock so that the command cannot complete
2866 * while we're considering it. If the command is not
2867 * idle then count it; otherwise revoke the event.
2868 */
2869 c->reset_pending = dev;
2870 spin_lock_irqsave(&h->lock, flags); /* Implied MB */
2871 if (!hpsa_is_cmd_idle(c))
2872 atomic_inc(&dev->reset_cmds_out);
2873 else
2874 c->reset_pending = NULL;
2875 spin_unlock_irqrestore(&h->lock, flags);
2876 }
2877
2878 cmd_free(h, c);
2879 }
2880
2881 rc = hpsa_send_reset(h, scsi3addr, reset_type, reply_queue);
2882 if (!rc)
2883 wait_event(h->event_sync_wait_queue,
2884 atomic_read(&dev->reset_cmds_out) == 0 ||
2885 lockup_detected(h));
2886
2887 if (unlikely(lockup_detected(h))) {
Don Brace77678d32015-07-18 11:12:22 -05002888 dev_warn(&h->pdev->dev,
2889 "Controller lockup detected during reset wait\n");
2890 rc = -ENODEV;
2891 }
Webb Scalesd604f532015-04-23 09:35:22 -05002892
2893 if (unlikely(rc))
2894 atomic_set(&dev->reset_cmds_out, 0);
2895
2896 mutex_unlock(&h->reset_mutex);
2897 return rc;
2898}
2899
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002900static void hpsa_get_raid_level(struct ctlr_info *h,
2901 unsigned char *scsi3addr, unsigned char *raid_level)
2902{
2903 int rc;
2904 unsigned char *buf;
2905
2906 *raid_level = RAID_UNKNOWN;
2907 buf = kzalloc(64, GFP_KERNEL);
2908 if (!buf)
2909 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002910 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002911 if (rc == 0)
2912 *raid_level = buf[8];
2913 if (*raid_level > RAID_UNKNOWN)
2914 *raid_level = RAID_UNKNOWN;
2915 kfree(buf);
2916 return;
2917}
2918
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002919#define HPSA_MAP_DEBUG
2920#ifdef HPSA_MAP_DEBUG
2921static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2922 struct raid_map_data *map_buff)
2923{
2924 struct raid_map_disk_data *dd = &map_buff->data[0];
2925 int map, row, col;
2926 u16 map_cnt, row_cnt, disks_per_row;
2927
2928 if (rc != 0)
2929 return;
2930
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002931 /* Show details only if debugging has been activated. */
2932 if (h->raid_offload_debug < 2)
2933 return;
2934
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002935 dev_info(&h->pdev->dev, "structure_size = %u\n",
2936 le32_to_cpu(map_buff->structure_size));
2937 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2938 le32_to_cpu(map_buff->volume_blk_size));
2939 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2940 le64_to_cpu(map_buff->volume_blk_cnt));
2941 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2942 map_buff->phys_blk_shift);
2943 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2944 map_buff->parity_rotation_shift);
2945 dev_info(&h->pdev->dev, "strip_size = %u\n",
2946 le16_to_cpu(map_buff->strip_size));
2947 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2948 le64_to_cpu(map_buff->disk_starting_blk));
2949 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2950 le64_to_cpu(map_buff->disk_blk_cnt));
2951 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2952 le16_to_cpu(map_buff->data_disks_per_row));
2953 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2954 le16_to_cpu(map_buff->metadata_disks_per_row));
2955 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2956 le16_to_cpu(map_buff->row_cnt));
2957 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2958 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002959 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002960 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002961 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2962 le16_to_cpu(map_buff->flags) &
2963 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002964 dev_info(&h->pdev->dev, "dekindex = %u\n",
2965 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002966 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2967 for (map = 0; map < map_cnt; map++) {
2968 dev_info(&h->pdev->dev, "Map%u:\n", map);
2969 row_cnt = le16_to_cpu(map_buff->row_cnt);
2970 for (row = 0; row < row_cnt; row++) {
2971 dev_info(&h->pdev->dev, " Row%u:\n", row);
2972 disks_per_row =
2973 le16_to_cpu(map_buff->data_disks_per_row);
2974 for (col = 0; col < disks_per_row; col++, dd++)
2975 dev_info(&h->pdev->dev,
2976 " D%02u: h=0x%04x xor=%u,%u\n",
2977 col, dd->ioaccel_handle,
2978 dd->xor_mult[0], dd->xor_mult[1]);
2979 disks_per_row =
2980 le16_to_cpu(map_buff->metadata_disks_per_row);
2981 for (col = 0; col < disks_per_row; col++, dd++)
2982 dev_info(&h->pdev->dev,
2983 " M%02u: h=0x%04x xor=%u,%u\n",
2984 col, dd->ioaccel_handle,
2985 dd->xor_mult[0], dd->xor_mult[1]);
2986 }
2987 }
2988}
2989#else
2990static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2991 __attribute__((unused)) int rc,
2992 __attribute__((unused)) struct raid_map_data *map_buff)
2993{
2994}
2995#endif
2996
2997static int hpsa_get_raid_map(struct ctlr_info *h,
2998 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2999{
3000 int rc = 0;
3001 struct CommandList *c;
3002 struct ErrorInfo *ei;
3003
Stephen Cameron45fcb862015-01-23 16:43:04 -06003004 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003005
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003006 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
3007 sizeof(this_device->raid_map), 0,
3008 scsi3addr, TYPE_CMD)) {
Robert Elliott2dd02d72015-04-23 09:33:43 -05003009 dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
3010 cmd_free(h, c);
3011 return -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003012 }
Webb Scales25163bd2015-04-23 09:32:00 -05003013 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
3014 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
3015 if (rc)
3016 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003017 ei = c->err_info;
3018 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003019 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05003020 rc = -1;
3021 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003022 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06003023 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003024
3025 /* @todo in the future, dynamically allocate RAID map memory */
3026 if (le32_to_cpu(this_device->raid_map.structure_size) >
3027 sizeof(this_device->raid_map)) {
3028 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
3029 rc = -1;
3030 }
3031 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
3032 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05003033out:
3034 cmd_free(h, c);
3035 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003036}
3037
Scott Teel66749d02015-11-04 15:51:57 -06003038static int hpsa_bmic_id_controller(struct ctlr_info *h,
3039 struct bmic_identify_controller *buf, size_t bufsize)
3040{
3041 int rc = IO_OK;
3042 struct CommandList *c;
3043 struct ErrorInfo *ei;
3044
3045 c = cmd_alloc(h);
3046
3047 rc = fill_cmd(c, BMIC_IDENTIFY_CONTROLLER, h, buf, bufsize,
3048 0, RAID_CTLR_LUNID, TYPE_CMD);
3049 if (rc)
3050 goto out;
3051
3052 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
3053 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
3054 if (rc)
3055 goto out;
3056 ei = c->err_info;
3057 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3058 hpsa_scsi_interpret_error(h, c);
3059 rc = -1;
3060 }
3061out:
3062 cmd_free(h, c);
3063 return rc;
3064}
3065
3066
Don Brace03383732015-01-23 16:43:30 -06003067static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
3068 unsigned char scsi3addr[], u16 bmic_device_index,
3069 struct bmic_identify_physical_device *buf, size_t bufsize)
3070{
3071 int rc = IO_OK;
3072 struct CommandList *c;
3073 struct ErrorInfo *ei;
3074
3075 c = cmd_alloc(h);
3076 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
3077 0, RAID_CTLR_LUNID, TYPE_CMD);
3078 if (rc)
3079 goto out;
3080
3081 c->Request.CDB[2] = bmic_device_index & 0xff;
3082 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3083
Webb Scales25163bd2015-04-23 09:32:00 -05003084 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
3085 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06003086 ei = c->err_info;
3087 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3088 hpsa_scsi_interpret_error(h, c);
3089 rc = -1;
3090 }
3091out:
3092 cmd_free(h, c);
3093 return rc;
3094}
3095
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003096static int hpsa_vpd_page_supported(struct ctlr_info *h,
3097 unsigned char scsi3addr[], u8 page)
3098{
3099 int rc;
3100 int i;
3101 int pages;
3102 unsigned char *buf, bufsize;
3103
3104 buf = kzalloc(256, GFP_KERNEL);
3105 if (!buf)
3106 return 0;
3107
3108 /* Get the size of the page list first */
3109 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3110 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3111 buf, HPSA_VPD_HEADER_SZ);
3112 if (rc != 0)
3113 goto exit_unsupported;
3114 pages = buf[3];
3115 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
3116 bufsize = pages + HPSA_VPD_HEADER_SZ;
3117 else
3118 bufsize = 255;
3119
3120 /* Get the whole VPD page list */
3121 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3122 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3123 buf, bufsize);
3124 if (rc != 0)
3125 goto exit_unsupported;
3126
3127 pages = buf[3];
3128 for (i = 1; i <= pages; i++)
3129 if (buf[3 + i] == page)
3130 goto exit_supported;
3131exit_unsupported:
3132 kfree(buf);
3133 return 0;
3134exit_supported:
3135 kfree(buf);
3136 return 1;
3137}
3138
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003139static void hpsa_get_ioaccel_status(struct ctlr_info *h,
3140 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3141{
3142 int rc;
3143 unsigned char *buf;
3144 u8 ioaccel_status;
3145
3146 this_device->offload_config = 0;
3147 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003148 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003149
3150 buf = kzalloc(64, GFP_KERNEL);
3151 if (!buf)
3152 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003153 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
3154 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003155 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003156 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003157 if (rc != 0)
3158 goto out;
3159
3160#define IOACCEL_STATUS_BYTE 4
3161#define OFFLOAD_CONFIGURED_BIT 0x01
3162#define OFFLOAD_ENABLED_BIT 0x02
3163 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
3164 this_device->offload_config =
3165 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
3166 if (this_device->offload_config) {
3167 this_device->offload_enabled =
3168 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
3169 if (hpsa_get_raid_map(h, scsi3addr, this_device))
3170 this_device->offload_enabled = 0;
3171 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003172 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003173out:
3174 kfree(buf);
3175 return;
3176}
3177
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003178/* Get the device id from inquiry page 0x83 */
3179static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
Don Brace75d23d82015-11-04 15:51:39 -06003180 unsigned char *device_id, int index, int buflen)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003181{
3182 int rc;
3183 unsigned char *buf;
3184
3185 if (buflen > 16)
3186 buflen = 16;
3187 buf = kzalloc(64, GFP_KERNEL);
3188 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05003189 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003190 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003191 if (rc == 0)
Don Brace75d23d82015-11-04 15:51:39 -06003192 memcpy(device_id, &buf[index], buflen);
3193
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003194 kfree(buf);
Don Brace75d23d82015-11-04 15:51:39 -06003195
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003196 return rc != 0;
3197}
3198
3199static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06003200 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003201 int extended_response)
3202{
3203 int rc = IO_OK;
3204 struct CommandList *c;
3205 unsigned char scsi3addr[8];
3206 struct ErrorInfo *ei;
3207
Stephen Cameron45fcb862015-01-23 16:43:04 -06003208 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003209
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06003210 /* address the controller */
3211 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003212 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
3213 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
3214 rc = -1;
3215 goto out;
3216 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003217 if (extended_response)
3218 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05003219 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
3220 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
3221 if (rc)
3222 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003223 ei = c->err_info;
3224 if (ei->CommandStatus != 0 &&
3225 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003226 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003227 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003228 } else {
Don Brace03383732015-01-23 16:43:30 -06003229 struct ReportLUNdata *rld = buf;
3230
3231 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003232 dev_err(&h->pdev->dev,
3233 "report luns requested format %u, got %u\n",
3234 extended_response,
Don Brace03383732015-01-23 16:43:30 -06003235 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003236 rc = -1;
3237 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003238 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003239out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06003240 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003241 return rc;
3242}
3243
3244static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003245 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003246{
Don Brace03383732015-01-23 16:43:30 -06003247 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
3248 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003249}
3250
3251static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
3252 struct ReportLUNdata *buf, int bufsize)
3253{
3254 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
3255}
3256
3257static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
3258 int bus, int target, int lun)
3259{
3260 device->bus = bus;
3261 device->target = target;
3262 device->lun = lun;
3263}
3264
Stephen M. Cameron98465902014-02-21 16:25:00 -06003265/* Use VPD inquiry to get details of volume status */
3266static int hpsa_get_volume_status(struct ctlr_info *h,
3267 unsigned char scsi3addr[])
3268{
3269 int rc;
3270 int status;
3271 int size;
3272 unsigned char *buf;
3273
3274 buf = kzalloc(64, GFP_KERNEL);
3275 if (!buf)
3276 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3277
3278 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003279 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06003280 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003281
3282 /* Get the size of the VPD return buffer */
3283 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3284 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003285 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003286 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003287 size = buf[3];
3288
3289 /* Now get the whole VPD buffer */
3290 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3291 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003292 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003293 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003294 status = buf[4]; /* status byte */
3295
3296 kfree(buf);
3297 return status;
3298exit_failed:
3299 kfree(buf);
3300 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3301}
3302
3303/* Determine offline status of a volume.
3304 * Return either:
3305 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003306 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003307 * # (integer code indicating one of several NOT READY states
3308 * describing why a volume is to be kept offline)
3309 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003310static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06003311 unsigned char scsi3addr[])
3312{
3313 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003314 unsigned char *sense;
3315 u8 sense_key, asc, ascq;
3316 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05003317 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003318 u16 cmd_status;
3319 u8 scsi_status;
3320#define ASC_LUN_NOT_READY 0x04
3321#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
3322#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
3323
3324 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003325
Stephen M. Cameron98465902014-02-21 16:25:00 -06003326 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05003327 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3328 if (rc) {
3329 cmd_free(h, c);
3330 return 0;
3331 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06003332 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003333 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
3334 sense_len = sizeof(c->err_info->SenseInfo);
3335 else
3336 sense_len = c->err_info->SenseLen;
3337 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003338 cmd_status = c->err_info->CommandStatus;
3339 scsi_status = c->err_info->ScsiStatus;
3340 cmd_free(h, c);
3341 /* Is the volume 'not ready'? */
3342 if (cmd_status != CMD_TARGET_STATUS ||
3343 scsi_status != SAM_STAT_CHECK_CONDITION ||
3344 sense_key != NOT_READY ||
3345 asc != ASC_LUN_NOT_READY) {
3346 return 0;
3347 }
3348
3349 /* Determine the reason for not ready state */
3350 ldstat = hpsa_get_volume_status(h, scsi3addr);
3351
3352 /* Keep volume offline in certain cases: */
3353 switch (ldstat) {
3354 case HPSA_LV_UNDERGOING_ERASE:
Scott Benesh5ca01202015-07-18 11:13:04 -05003355 case HPSA_LV_NOT_AVAILABLE:
Stephen M. Cameron98465902014-02-21 16:25:00 -06003356 case HPSA_LV_UNDERGOING_RPI:
3357 case HPSA_LV_PENDING_RPI:
3358 case HPSA_LV_ENCRYPTED_NO_KEY:
3359 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
3360 case HPSA_LV_UNDERGOING_ENCRYPTION:
3361 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
3362 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
3363 return ldstat;
3364 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
3365 /* If VPD status page isn't available,
3366 * use ASC/ASCQ to determine state
3367 */
3368 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
3369 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
3370 return ldstat;
3371 break;
3372 default:
3373 break;
3374 }
3375 return 0;
3376}
3377
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003378/*
3379 * Find out if a logical device supports aborts by simply trying one.
3380 * Smart Array may claim not to support aborts on logical drives, but
3381 * if a MSA2000 * is connected, the drives on that will be presented
3382 * by the Smart Array as logical drives, and aborts may be sent to
3383 * those devices successfully. So the simplest way to find out is
3384 * to simply try an abort and see how the device responds.
3385 */
3386static int hpsa_device_supports_aborts(struct ctlr_info *h,
3387 unsigned char *scsi3addr)
3388{
3389 struct CommandList *c;
3390 struct ErrorInfo *ei;
3391 int rc = 0;
3392
3393 u64 tag = (u64) -1; /* bogus tag */
3394
3395 /* Assume that physical devices support aborts */
3396 if (!is_logical_dev_addr_mode(scsi3addr))
3397 return 1;
3398
3399 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003400
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003401 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
3402 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3403 /* no unmap needed here because no data xfer. */
3404 ei = c->err_info;
3405 switch (ei->CommandStatus) {
3406 case CMD_INVALID:
3407 rc = 0;
3408 break;
3409 case CMD_UNABORTABLE:
3410 case CMD_ABORT_FAILED:
3411 rc = 1;
3412 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003413 case CMD_TMF_STATUS:
3414 rc = hpsa_evaluate_tmf_status(h, c);
3415 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003416 default:
3417 rc = 0;
3418 break;
3419 }
3420 cmd_free(h, c);
3421 return rc;
3422}
3423
Don Brace75d23d82015-11-04 15:51:39 -06003424static void sanitize_inquiry_string(unsigned char *s, int len)
3425{
3426 bool terminated = false;
3427
3428 for (; len > 0; (--len, ++s)) {
3429 if (*s == 0)
3430 terminated = true;
3431 if (terminated || *s < 0x20 || *s > 0x7e)
3432 *s = ' ';
3433 }
3434}
3435
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003436static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003437 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3438 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003439{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003440
3441#define OBDR_SIG_OFFSET 43
3442#define OBDR_TAPE_SIG "$DR-10"
3443#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3444#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3445
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003446 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003447 unsigned char *obdr_sig;
Don Brace683fc442015-11-04 15:50:44 -06003448 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003449
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003450 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Don Brace683fc442015-11-04 15:50:44 -06003451 if (!inq_buff) {
3452 rc = -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003453 goto bail_out;
Don Brace683fc442015-11-04 15:50:44 -06003454 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003455
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003456 /* Do an inquiry to the device to see what it is. */
3457 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3458 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
3459 /* Inquiry failed (msg printed already) */
3460 dev_err(&h->pdev->dev,
3461 "hpsa_update_device_info: inquiry failed\n");
Don Brace683fc442015-11-04 15:50:44 -06003462 rc = -EIO;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003463 goto bail_out;
3464 }
3465
Don Brace75d23d82015-11-04 15:51:39 -06003466 sanitize_inquiry_string(&inq_buff[8], 8);
3467 sanitize_inquiry_string(&inq_buff[16], 16);
3468
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003469 this_device->devtype = (inq_buff[0] & 0x1f);
3470 memcpy(this_device->scsi3addr, scsi3addr, 8);
3471 memcpy(this_device->vendor, &inq_buff[8],
3472 sizeof(this_device->vendor));
3473 memcpy(this_device->model, &inq_buff[16],
3474 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003475 memset(this_device->device_id, 0,
3476 sizeof(this_device->device_id));
Don Brace75d23d82015-11-04 15:51:39 -06003477 hpsa_get_device_id(h, scsi3addr, this_device->device_id, 8,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003478 sizeof(this_device->device_id));
3479
3480 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003481 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003482 int volume_offline;
3483
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003484 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003485 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3486 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003487 volume_offline = hpsa_volume_offline(h, scsi3addr);
3488 if (volume_offline < 0 || volume_offline > 0xff)
3489 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3490 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003491 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003492 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003493 this_device->offload_config = 0;
3494 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003495 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003496 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003497 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003498 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003499 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003500
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003501 if (is_OBDR_device) {
3502 /* See if this is a One-Button-Disaster-Recovery device
3503 * by looking for "$DR-10" at offset 43 in inquiry data.
3504 */
3505 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3506 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3507 strncmp(obdr_sig, OBDR_TAPE_SIG,
3508 OBDR_SIG_LEN) == 0);
3509 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003510 kfree(inq_buff);
3511 return 0;
3512
3513bail_out:
3514 kfree(inq_buff);
Don Brace683fc442015-11-04 15:50:44 -06003515 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003516}
3517
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003518static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3519 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3520{
3521 unsigned long flags;
3522 int rc, entry;
3523 /*
3524 * See if this device supports aborts. If we already know
3525 * the device, we already know if it supports aborts, otherwise
3526 * we have to find out if it supports aborts by trying one.
3527 */
3528 spin_lock_irqsave(&h->devlock, flags);
3529 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3530 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3531 entry >= 0 && entry < h->ndevices) {
3532 dev->supports_aborts = h->dev[entry]->supports_aborts;
3533 spin_unlock_irqrestore(&h->devlock, flags);
3534 } else {
3535 spin_unlock_irqrestore(&h->devlock, flags);
3536 dev->supports_aborts =
3537 hpsa_device_supports_aborts(h, scsi3addr);
3538 if (dev->supports_aborts < 0)
3539 dev->supports_aborts = 0;
3540 }
3541}
3542
Kevin Barnettc7955052015-11-04 15:51:45 -06003543/*
3544 * Helper function to assign bus, target, lun mapping of devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003545 * Logical drive target and lun are assigned at this time, but
3546 * physical device lun and target assignment are deferred (assigned
3547 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
Kevin Barnettc7955052015-11-04 15:51:45 -06003548*/
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003549static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003550 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003551{
Kevin Barnettc7955052015-11-04 15:51:45 -06003552 u32 lunid = get_unaligned_le32(lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003553
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003554 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3555 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003556 if (is_hba_lunid(lunaddrbytes))
Kevin Barnettc7955052015-11-04 15:51:45 -06003557 hpsa_set_bus_target_lun(device,
3558 HPSA_HBA_BUS, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003559 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003560 /* defer target, lun assignment for physical devices */
Kevin Barnettc7955052015-11-04 15:51:45 -06003561 hpsa_set_bus_target_lun(device,
3562 HPSA_PHYSICAL_DEVICE_BUS, -1, -1);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003563 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003564 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003565 /* It's a logical device */
Scott Teel66749d02015-11-04 15:51:57 -06003566 if (device->external) {
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003567 hpsa_set_bus_target_lun(device,
Kevin Barnettc7955052015-11-04 15:51:45 -06003568 HPSA_EXTERNAL_RAID_VOLUME_BUS, (lunid >> 16) & 0x3fff,
3569 lunid & 0x00ff);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003570 return;
3571 }
Kevin Barnettc7955052015-11-04 15:51:45 -06003572 hpsa_set_bus_target_lun(device, HPSA_RAID_VOLUME_BUS,
3573 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003574}
3575
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003576
3577/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003578 * Get address of physical disk used for an ioaccel2 mode command:
3579 * 1. Extract ioaccel2 handle from the command.
3580 * 2. Find a matching ioaccel2 handle from list of physical disks.
3581 * 3. Return:
3582 * 1 and set scsi3addr to address of matching physical
3583 * 0 if no matching physical disk was found.
3584 */
3585static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3586 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3587{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003588 struct io_accel2_cmd *c2 =
3589 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3590 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003591 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003592
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003593 spin_lock_irqsave(&h->devlock, flags);
3594 for (i = 0; i < h->ndevices; i++)
3595 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3596 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3597 sizeof(h->dev[i]->scsi3addr));
3598 spin_unlock_irqrestore(&h->devlock, flags);
3599 return 1;
3600 }
3601 spin_unlock_irqrestore(&h->devlock, flags);
3602 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003603}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003604
Scott Teel66749d02015-11-04 15:51:57 -06003605static int figure_external_status(struct ctlr_info *h, int raid_ctlr_position,
3606 int i, int nphysicals, int nlocal_logicals)
3607{
3608 /* In report logicals, local logicals are listed first,
3609 * then any externals.
3610 */
3611 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3612
3613 if (i == raid_ctlr_position)
3614 return 0;
3615
3616 if (i < logicals_start)
3617 return 0;
3618
3619 /* i is in logicals range, but still within local logicals */
3620 if ((i - nphysicals - (raid_ctlr_position == 0)) < nlocal_logicals)
3621 return 0;
3622
3623 return 1; /* it's an external lun */
3624}
3625
Scott Teel54b6e9e2014-02-18 13:56:45 -06003626/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003627 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
3628 * logdev. The number of luns in physdev and logdev are returned in
3629 * *nphysicals and *nlogicals, respectively.
3630 * Returns 0 on success, -1 otherwise.
3631 */
3632static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003633 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003634 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003635{
Don Brace03383732015-01-23 16:43:30 -06003636 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003637 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3638 return -1;
3639 }
Don Brace03383732015-01-23 16:43:30 -06003640 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003641 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06003642 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
3643 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003644 *nphysicals = HPSA_MAX_PHYS_LUN;
3645 }
Don Brace03383732015-01-23 16:43:30 -06003646 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003647 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3648 return -1;
3649 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06003650 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003651 /* Reject Logicals in excess of our max capability. */
3652 if (*nlogicals > HPSA_MAX_LUN) {
3653 dev_warn(&h->pdev->dev,
3654 "maximum logical LUNs (%d) exceeded. "
3655 "%d LUNs ignored.\n", HPSA_MAX_LUN,
3656 *nlogicals - HPSA_MAX_LUN);
3657 *nlogicals = HPSA_MAX_LUN;
3658 }
3659 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3660 dev_warn(&h->pdev->dev,
3661 "maximum logical + physical LUNs (%d) exceeded. "
3662 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3663 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3664 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3665 }
3666 return 0;
3667}
3668
Don Brace42a91642014-11-14 17:26:27 -06003669static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
3670 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003671 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003672 struct ReportLUNdata *logdev_list)
3673{
3674 /* Helper function, figure out where the LUN ID info is coming from
3675 * given index i, lists of physical and logical devices, where in
3676 * the list the raid controller is supposed to appear (first or last)
3677 */
3678
3679 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3680 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3681
3682 if (i == raid_ctlr_position)
3683 return RAID_CTLR_LUNID;
3684
3685 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05003686 return &physdev_list->LUN[i -
3687 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003688
3689 if (i < last_device)
3690 return &logdev_list->LUN[i - nphysicals -
3691 (raid_ctlr_position == 0)][0];
3692 BUG();
3693 return NULL;
3694}
3695
Don Brace03383732015-01-23 16:43:30 -06003696/* get physical drive ioaccel handle and queue depth */
3697static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3698 struct hpsa_scsi_dev_t *dev,
Don Bracef2039b02015-11-04 15:51:08 -06003699 struct ReportExtendedLUNdata *rlep, int rle_index,
Don Brace03383732015-01-23 16:43:30 -06003700 struct bmic_identify_physical_device *id_phys)
3701{
3702 int rc;
Don Bracef2039b02015-11-04 15:51:08 -06003703 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
Don Brace03383732015-01-23 16:43:30 -06003704
3705 dev->ioaccel_handle = rle->ioaccel_handle;
Don Bracef2039b02015-11-04 15:51:08 -06003706 if ((rle->device_flags & 0x08) && dev->ioaccel_handle)
Joe Handzika3144e02015-04-23 09:32:59 -05003707 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06003708 memset(id_phys, 0, sizeof(*id_phys));
Don Bracef2039b02015-11-04 15:51:08 -06003709 rc = hpsa_bmic_id_physical_device(h, &rle->lunid[0],
3710 GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]), id_phys,
Don Brace03383732015-01-23 16:43:30 -06003711 sizeof(*id_phys));
3712 if (!rc)
3713 /* Reserve space for FW operations */
3714#define DRIVE_CMDS_RESERVED_FOR_FW 2
3715#define DRIVE_QUEUE_DEPTH 7
3716 dev->queue_depth =
3717 le16_to_cpu(id_phys->current_queue_depth_limit) -
3718 DRIVE_CMDS_RESERVED_FOR_FW;
3719 else
3720 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
Don Brace03383732015-01-23 16:43:30 -06003721}
3722
Joe Handzik8270b862015-07-18 11:12:43 -05003723static void hpsa_get_path_info(struct hpsa_scsi_dev_t *this_device,
Don Bracef2039b02015-11-04 15:51:08 -06003724 struct ReportExtendedLUNdata *rlep, int rle_index,
Joe Handzik8270b862015-07-18 11:12:43 -05003725 struct bmic_identify_physical_device *id_phys)
3726{
Don Bracef2039b02015-11-04 15:51:08 -06003727 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
3728
3729 if ((rle->device_flags & 0x08) && this_device->ioaccel_handle)
Joe Handzik8270b862015-07-18 11:12:43 -05003730 this_device->hba_ioaccel_enabled = 1;
3731
3732 memcpy(&this_device->active_path_index,
3733 &id_phys->active_path_number,
3734 sizeof(this_device->active_path_index));
3735 memcpy(&this_device->path_map,
3736 &id_phys->redundant_path_present_map,
3737 sizeof(this_device->path_map));
3738 memcpy(&this_device->box,
3739 &id_phys->alternate_paths_phys_box_on_port,
3740 sizeof(this_device->box));
3741 memcpy(&this_device->phys_connector,
3742 &id_phys->alternate_paths_phys_connector,
3743 sizeof(this_device->phys_connector));
3744 memcpy(&this_device->bay,
3745 &id_phys->phys_bay_in_box,
3746 sizeof(this_device->bay));
3747}
3748
Scott Teel66749d02015-11-04 15:51:57 -06003749/* get number of local logical disks. */
3750static int hpsa_set_local_logical_count(struct ctlr_info *h,
3751 struct bmic_identify_controller *id_ctlr,
3752 u32 *nlocals)
3753{
3754 int rc;
3755
3756 if (!id_ctlr) {
3757 dev_warn(&h->pdev->dev, "%s: id_ctlr buffer is NULL.\n",
3758 __func__);
3759 return -ENOMEM;
3760 }
3761 memset(id_ctlr, 0, sizeof(*id_ctlr));
3762 rc = hpsa_bmic_id_controller(h, id_ctlr, sizeof(*id_ctlr));
3763 if (!rc)
3764 if (id_ctlr->configured_logical_drive_count < 256)
3765 *nlocals = id_ctlr->configured_logical_drive_count;
3766 else
3767 *nlocals = le16_to_cpu(
3768 id_ctlr->extended_logical_unit_count);
3769 else
3770 *nlocals = -1;
3771 return rc;
3772}
3773
3774
Don Brace8aa60682015-11-04 15:50:01 -06003775static void hpsa_update_scsi_devices(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003776{
3777 /* the idea here is we could get notified
3778 * that some devices have changed, so we do a report
3779 * physical luns and report logical luns cmd, and adjust
3780 * our list of devices accordingly.
3781 *
3782 * The scsi3addr's of devices won't change so long as the
3783 * adapter is not reset. That means we can rescan and
3784 * tell which devices we already know about, vs. new
3785 * devices, vs. disappearing devices.
3786 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003787 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003788 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003789 struct bmic_identify_physical_device *id_phys = NULL;
Scott Teel66749d02015-11-04 15:51:57 -06003790 struct bmic_identify_controller *id_ctlr = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003791 u32 nphysicals = 0;
3792 u32 nlogicals = 0;
Scott Teel66749d02015-11-04 15:51:57 -06003793 u32 nlocal_logicals = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003794 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003795 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3796 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003797 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003798 int raid_ctlr_position;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003799 bool physical_device;
Scott Teelaca4a522012-01-19 14:01:19 -06003800 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003801
Scott Teelcfe5bad2011-10-26 16:21:07 -05003802 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003803 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3804 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003805 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003806 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Scott Teel66749d02015-11-04 15:51:57 -06003807 id_ctlr = kzalloc(sizeof(*id_ctlr), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003808
Don Brace03383732015-01-23 16:43:30 -06003809 if (!currentsd || !physdev_list || !logdev_list ||
Scott Teel66749d02015-11-04 15:51:57 -06003810 !tmpdevice || !id_phys || !id_ctlr) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003811 dev_err(&h->pdev->dev, "out of memory\n");
3812 goto out;
3813 }
3814 memset(lunzerobits, 0, sizeof(lunzerobits));
3815
Don Brace853633e2015-11-04 15:50:37 -06003816 h->drv_req_rescan = 0; /* cancel scheduled rescan - we're doing it. */
3817
Don Brace03383732015-01-23 16:43:30 -06003818 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
Don Brace853633e2015-11-04 15:50:37 -06003819 logdev_list, &nlogicals)) {
3820 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003821 goto out;
Don Brace853633e2015-11-04 15:50:37 -06003822 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003823
Scott Teel66749d02015-11-04 15:51:57 -06003824 /* Set number of local logicals (non PTRAID) */
3825 if (hpsa_set_local_logical_count(h, id_ctlr, &nlocal_logicals)) {
3826 dev_warn(&h->pdev->dev,
3827 "%s: Can't determine number of local logical devices.\n",
3828 __func__);
3829 }
3830
Scott Teelaca4a522012-01-19 14:01:19 -06003831 /* We might see up to the maximum number of logical and physical disks
3832 * plus external target devices, and a device for the local RAID
3833 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003834 */
Scott Teelaca4a522012-01-19 14:01:19 -06003835 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003836
3837 /* Allocate the per device structures */
3838 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003839 if (i >= HPSA_MAX_DEVICES) {
3840 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3841 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3842 ndevs_to_allocate - HPSA_MAX_DEVICES);
3843 break;
3844 }
3845
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003846 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3847 if (!currentsd[i]) {
3848 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3849 __FILE__, __LINE__);
Don Brace853633e2015-11-04 15:50:37 -06003850 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003851 goto out;
3852 }
3853 ndev_allocated++;
3854 }
3855
Stephen M. Cameron86452912014-05-29 10:53:49 -05003856 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003857 raid_ctlr_position = 0;
3858 else
3859 raid_ctlr_position = nphysicals + nlogicals;
3860
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003861 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003862 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003863 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003864 u8 *lunaddrbytes, is_OBDR = 0;
Don Brace683fc442015-11-04 15:50:44 -06003865 int rc = 0;
Don Bracef2039b02015-11-04 15:51:08 -06003866 int phys_dev_index = i - (raid_ctlr_position == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003867
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003868 physical_device = i < nphysicals + (raid_ctlr_position == 0);
3869
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003870 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003871 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3872 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003873
3874 /* skip masked non-disk devices */
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003875 if (MASKED_DEVICE(lunaddrbytes) && physical_device &&
3876 (physdev_list->LUN[phys_dev_index].device_flags & 0x01))
3877 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003878
3879 /* Get device type, vendor, model, device id */
Don Brace683fc442015-11-04 15:50:44 -06003880 rc = hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3881 &is_OBDR);
3882 if (rc == -ENOMEM) {
3883 dev_warn(&h->pdev->dev,
3884 "Out of memory, rescan deferred.\n");
Don Brace853633e2015-11-04 15:50:37 -06003885 h->drv_req_rescan = 1;
Don Brace683fc442015-11-04 15:50:44 -06003886 goto out;
Don Brace853633e2015-11-04 15:50:37 -06003887 }
Don Brace683fc442015-11-04 15:50:44 -06003888 if (rc) {
3889 dev_warn(&h->pdev->dev,
3890 "Inquiry failed, skipping device.\n");
3891 continue;
3892 }
3893
Scott Teel66749d02015-11-04 15:51:57 -06003894 /* Determine if this is a lun from an external target array */
3895 tmpdevice->external =
3896 figure_external_status(h, raid_ctlr_position, i,
3897 nphysicals, nlocal_logicals);
3898
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003899 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003900 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003901 this_device = currentsd[ncurrent];
3902
Scott Teel34592252015-11-04 15:52:09 -06003903 /* Turn on discovery_polling if there are ext target devices.
3904 * Event-based change notification is unreliable for those.
3905 */
3906 if (!h->discovery_polling) {
3907 if (tmpdevice->external) {
3908 h->discovery_polling = 1;
3909 dev_info(&h->pdev->dev,
3910 "External target, activate discovery polling.\n");
3911 }
3912 }
3913
3914
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003915 *this_device = *tmpdevice;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003916 this_device->physical_device = physical_device;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003917
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003918 /*
3919 * Expose all devices except for physical devices that
3920 * are masked.
3921 */
3922 if (MASKED_DEVICE(lunaddrbytes) && this_device->physical_device)
Kevin Barnett2a168202015-11-04 15:51:21 -06003923 this_device->expose_device = 0;
3924 else
3925 this_device->expose_device = 1;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003926
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003927 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003928 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003929 /* We don't *really* support actual CD-ROM devices,
3930 * just "One Button Disaster Recovery" tape drive
3931 * which temporarily pretends to be a CD-ROM drive.
3932 * So we check that the device is really an OBDR tape
3933 * device by checking for "$DR-10" in bytes 43-48 of
3934 * the inquiry data.
3935 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003936 if (is_OBDR)
3937 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003938 break;
3939 case TYPE_DISK:
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003940 if (this_device->physical_device) {
Kevin Barnettb9092b72015-07-18 11:12:59 -05003941 /* The disk is in HBA mode. */
3942 /* Never use RAID mapper in HBA mode. */
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003943 this_device->offload_enabled = 0;
Kevin Barnettb9092b72015-07-18 11:12:59 -05003944 hpsa_get_ioaccel_drive_info(h, this_device,
Don Bracef2039b02015-11-04 15:51:08 -06003945 physdev_list, phys_dev_index, id_phys);
3946 hpsa_get_path_info(this_device,
3947 physdev_list, phys_dev_index, id_phys);
Kevin Barnettb9092b72015-07-18 11:12:59 -05003948 }
Joe Handzikecf418d12015-04-23 09:33:04 -05003949 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003950 break;
3951 case TYPE_TAPE:
3952 case TYPE_MEDIUM_CHANGER:
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003953 case TYPE_ENCLOSURE:
Kevin Barnettb9092b72015-07-18 11:12:59 -05003954 ncurrent++;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003955 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003956 case TYPE_RAID:
3957 /* Only present the Smartarray HBA as a RAID controller.
3958 * If it's a RAID controller other than the HBA itself
3959 * (an external RAID controller, MSA500 or similar)
3960 * don't present it.
3961 */
3962 if (!is_hba_lunid(lunaddrbytes))
3963 break;
3964 ncurrent++;
3965 break;
3966 default:
3967 break;
3968 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003969 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003970 break;
3971 }
Don Brace8aa60682015-11-04 15:50:01 -06003972 adjust_hpsa_scsi_table(h, currentsd, ncurrent);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003973out:
3974 kfree(tmpdevice);
3975 for (i = 0; i < ndev_allocated; i++)
3976 kfree(currentsd[i]);
3977 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003978 kfree(physdev_list);
3979 kfree(logdev_list);
Scott Teel66749d02015-11-04 15:51:57 -06003980 kfree(id_ctlr);
Don Brace03383732015-01-23 16:43:30 -06003981 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003982}
3983
Webb Scalesec5cbf02015-01-23 16:44:45 -06003984static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3985 struct scatterlist *sg)
3986{
3987 u64 addr64 = (u64) sg_dma_address(sg);
3988 unsigned int len = sg_dma_len(sg);
3989
3990 desc->Addr = cpu_to_le64(addr64);
3991 desc->Len = cpu_to_le32(len);
3992 desc->Ext = 0;
3993}
3994
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003995/*
3996 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003997 * dma mapping and fills in the scatter gather entries of the
3998 * hpsa command, cp.
3999 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004000static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004001 struct CommandList *cp,
4002 struct scsi_cmnd *cmd)
4003{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004004 struct scatterlist *sg;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004005 int use_sg, i, sg_limit, chained, last_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004006 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004007
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004008 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004009
4010 use_sg = scsi_dma_map(cmd);
4011 if (use_sg < 0)
4012 return use_sg;
4013
4014 if (!use_sg)
4015 goto sglist_finished;
4016
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004017 /*
4018 * If the number of entries is greater than the max for a single list,
4019 * then we have a chained list; we will set up all but one entry in the
4020 * first list (the last entry is saved for link information);
4021 * otherwise, we don't have a chained list and we'll set up at each of
4022 * the entries in the one list.
4023 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004024 curr_sg = cp->SG;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004025 chained = use_sg > h->max_cmd_sg_entries;
4026 sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg;
4027 last_sg = scsi_sg_count(cmd) - 1;
4028 scsi_for_each_sg(cmd, sg, sg_limit, i) {
Webb Scalesec5cbf02015-01-23 16:44:45 -06004029 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004030 curr_sg++;
4031 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06004032
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004033 if (chained) {
4034 /*
4035 * Continue with the chained list. Set curr_sg to the chained
4036 * list. Modify the limit to the total count less the entries
4037 * we've already set up. Resume the scan at the list entry
4038 * where the previous loop left off.
4039 */
4040 curr_sg = h->cmd_sg_list[cp->cmdindex];
4041 sg_limit = use_sg - sg_limit;
4042 for_each_sg(sg, sg, sg_limit, i) {
4043 hpsa_set_sg_descriptor(curr_sg, sg);
4044 curr_sg++;
4045 }
4046 }
4047
Webb Scalesec5cbf02015-01-23 16:44:45 -06004048 /* Back the pointer up to the last entry and mark it as "last". */
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004049 (curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004050
4051 if (use_sg + chained > h->maxSG)
4052 h->maxSG = use_sg + chained;
4053
4054 if (chained) {
4055 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004056 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06004057 if (hpsa_map_sg_chain_block(h, cp)) {
4058 scsi_dma_unmap(cmd);
4059 return -1;
4060 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004061 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004062 }
4063
4064sglist_finished:
4065
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004066 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004067 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004068 return 0;
4069}
4070
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004071#define IO_ACCEL_INELIGIBLE (1)
4072static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
4073{
4074 int is_write = 0;
4075 u32 block;
4076 u32 block_cnt;
4077
4078 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
4079 switch (cdb[0]) {
4080 case WRITE_6:
4081 case WRITE_12:
4082 is_write = 1;
4083 case READ_6:
4084 case READ_12:
4085 if (*cdb_len == 6) {
Don Bracec8a6c9a2015-11-04 15:50:50 -06004086 block = get_unaligned_be16(&cdb[2]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004087 block_cnt = cdb[4];
Don Bracec8a6c9a2015-11-04 15:50:50 -06004088 if (block_cnt == 0)
4089 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004090 } else {
4091 BUG_ON(*cdb_len != 12);
Don Bracec8a6c9a2015-11-04 15:50:50 -06004092 block = get_unaligned_be32(&cdb[2]);
4093 block_cnt = get_unaligned_be32(&cdb[6]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004094 }
4095 if (block_cnt > 0xffff)
4096 return IO_ACCEL_INELIGIBLE;
4097
4098 cdb[0] = is_write ? WRITE_10 : READ_10;
4099 cdb[1] = 0;
4100 cdb[2] = (u8) (block >> 24);
4101 cdb[3] = (u8) (block >> 16);
4102 cdb[4] = (u8) (block >> 8);
4103 cdb[5] = (u8) (block);
4104 cdb[6] = 0;
4105 cdb[7] = (u8) (block_cnt >> 8);
4106 cdb[8] = (u8) (block_cnt);
4107 cdb[9] = 0;
4108 *cdb_len = 10;
4109 break;
4110 }
4111 return 0;
4112}
4113
Scott Teelc3497752014-02-18 13:56:34 -06004114static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004115 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004116 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06004117{
4118 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06004119 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
4120 unsigned int len;
4121 unsigned int total_len = 0;
4122 struct scatterlist *sg;
4123 u64 addr64;
4124 int use_sg, i;
4125 struct SGDescriptor *curr_sg;
4126 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
4127
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004128 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06004129 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
4130 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004131 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004132 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004133
Matt Gatese1f7de02014-02-18 13:55:17 -06004134 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
4135
Don Brace03383732015-01-23 16:43:30 -06004136 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4137 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004138 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004139 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004140
Matt Gatese1f7de02014-02-18 13:55:17 -06004141 c->cmd_type = CMD_IOACCEL1;
4142
4143 /* Adjust the DMA address to point to the accelerated command buffer */
4144 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
4145 (c->cmdindex * sizeof(*cp));
4146 BUG_ON(c->busaddr & 0x0000007F);
4147
4148 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004149 if (use_sg < 0) {
4150 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06004151 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004152 }
Matt Gatese1f7de02014-02-18 13:55:17 -06004153
4154 if (use_sg) {
4155 curr_sg = cp->SG;
4156 scsi_for_each_sg(cmd, sg, use_sg, i) {
4157 addr64 = (u64) sg_dma_address(sg);
4158 len = sg_dma_len(sg);
4159 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004160 curr_sg->Addr = cpu_to_le64(addr64);
4161 curr_sg->Len = cpu_to_le32(len);
4162 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06004163 curr_sg++;
4164 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004165 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06004166
4167 switch (cmd->sc_data_direction) {
4168 case DMA_TO_DEVICE:
4169 control |= IOACCEL1_CONTROL_DATA_OUT;
4170 break;
4171 case DMA_FROM_DEVICE:
4172 control |= IOACCEL1_CONTROL_DATA_IN;
4173 break;
4174 case DMA_NONE:
4175 control |= IOACCEL1_CONTROL_NODATAXFER;
4176 break;
4177 default:
4178 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4179 cmd->sc_data_direction);
4180 BUG();
4181 break;
4182 }
4183 } else {
4184 control |= IOACCEL1_CONTROL_NODATAXFER;
4185 }
4186
Scott Teelc3497752014-02-18 13:56:34 -06004187 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06004188 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06004189 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
4190 cp->transfer_len = cpu_to_le32(total_len);
4191 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
4192 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
4193 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004194 memcpy(cp->CDB, cdb, cdb_len);
4195 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06004196 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004197 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06004198 return 0;
4199}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004200
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004201/*
4202 * Queue a command directly to a device behind the controller using the
4203 * I/O accelerator path.
4204 */
4205static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
4206 struct CommandList *c)
4207{
4208 struct scsi_cmnd *cmd = c->scsi_cmd;
4209 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4210
Don Brace03383732015-01-23 16:43:30 -06004211 c->phys_disk = dev;
4212
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004213 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004214 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004215}
4216
Scott Teeldd0e19f2014-02-18 13:57:31 -06004217/*
4218 * Set encryption parameters for the ioaccel2 request
4219 */
4220static void set_encrypt_ioaccel2(struct ctlr_info *h,
4221 struct CommandList *c, struct io_accel2_cmd *cp)
4222{
4223 struct scsi_cmnd *cmd = c->scsi_cmd;
4224 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4225 struct raid_map_data *map = &dev->raid_map;
4226 u64 first_block;
4227
Scott Teeldd0e19f2014-02-18 13:57:31 -06004228 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06004229 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06004230 return;
4231 /* Set the data encryption key index. */
4232 cp->dekindex = map->dekindex;
4233
4234 /* Set the encryption enable flag, encoded into direction field. */
4235 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
4236
4237 /* Set encryption tweak values based on logical block address
4238 * If block size is 512, tweak value is LBA.
4239 * For other block sizes, tweak is (LBA * block size)/ 512)
4240 */
4241 switch (cmd->cmnd[0]) {
4242 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
4243 case WRITE_6:
4244 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004245 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004246 break;
4247 case WRITE_10:
4248 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004249 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
4250 case WRITE_12:
4251 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06004252 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004253 break;
4254 case WRITE_16:
4255 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06004256 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004257 break;
4258 default:
4259 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06004260 "ERROR: %s: size (0x%x) not supported for encryption\n",
4261 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004262 BUG();
4263 break;
4264 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004265
4266 if (le32_to_cpu(map->volume_blk_size) != 512)
4267 first_block = first_block *
4268 le32_to_cpu(map->volume_blk_size)/512;
4269
4270 cp->tweak_lower = cpu_to_le32(first_block);
4271 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004272}
4273
Scott Teelc3497752014-02-18 13:56:34 -06004274static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
4275 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004276 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004277{
4278 struct scsi_cmnd *cmd = c->scsi_cmd;
4279 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
4280 struct ioaccel2_sg_element *curr_sg;
4281 int use_sg, i;
4282 struct scatterlist *sg;
4283 u64 addr64;
4284 u32 len;
4285 u32 total_len = 0;
4286
Webb Scalesd9a729f2015-04-23 09:33:27 -05004287 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06004288
Don Brace03383732015-01-23 16:43:30 -06004289 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4290 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004291 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004292 }
4293
Scott Teelc3497752014-02-18 13:56:34 -06004294 c->cmd_type = CMD_IOACCEL2;
4295 /* Adjust the DMA address to point to the accelerated command buffer */
4296 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
4297 (c->cmdindex * sizeof(*cp));
4298 BUG_ON(c->busaddr & 0x0000007F);
4299
4300 memset(cp, 0, sizeof(*cp));
4301 cp->IU_type = IOACCEL2_IU_TYPE;
4302
4303 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004304 if (use_sg < 0) {
4305 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004306 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004307 }
Scott Teelc3497752014-02-18 13:56:34 -06004308
4309 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06004310 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05004311 if (use_sg > h->ioaccel_maxsg) {
4312 addr64 = le64_to_cpu(
4313 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
4314 curr_sg->address = cpu_to_le64(addr64);
4315 curr_sg->length = 0;
4316 curr_sg->reserved[0] = 0;
4317 curr_sg->reserved[1] = 0;
4318 curr_sg->reserved[2] = 0;
4319 curr_sg->chain_indicator = 0x80;
4320
4321 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
4322 }
Scott Teelc3497752014-02-18 13:56:34 -06004323 scsi_for_each_sg(cmd, sg, use_sg, i) {
4324 addr64 = (u64) sg_dma_address(sg);
4325 len = sg_dma_len(sg);
4326 total_len += len;
4327 curr_sg->address = cpu_to_le64(addr64);
4328 curr_sg->length = cpu_to_le32(len);
4329 curr_sg->reserved[0] = 0;
4330 curr_sg->reserved[1] = 0;
4331 curr_sg->reserved[2] = 0;
4332 curr_sg->chain_indicator = 0;
4333 curr_sg++;
4334 }
4335
4336 switch (cmd->sc_data_direction) {
4337 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004338 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4339 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06004340 break;
4341 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004342 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4343 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06004344 break;
4345 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004346 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4347 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004348 break;
4349 default:
4350 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4351 cmd->sc_data_direction);
4352 BUG();
4353 break;
4354 }
4355 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06004356 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4357 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004358 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06004359
4360 /* Set encryption parameters, if necessary */
4361 set_encrypt_ioaccel2(h, c, cp);
4362
Don Brace2b08b3e2015-01-23 16:41:09 -06004363 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06004364 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06004365 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06004366
Scott Teelc3497752014-02-18 13:56:34 -06004367 cp->data_len = cpu_to_le32(total_len);
4368 cp->err_ptr = cpu_to_le64(c->busaddr +
4369 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004370 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06004371
Webb Scalesd9a729f2015-04-23 09:33:27 -05004372 /* fill in sg elements */
4373 if (use_sg > h->ioaccel_maxsg) {
4374 cp->sg_count = 1;
Don Bracea736e9b2015-11-04 15:51:14 -06004375 cp->sg[0].length = cpu_to_le32(use_sg * sizeof(cp->sg[0]));
Webb Scalesd9a729f2015-04-23 09:33:27 -05004376 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
4377 atomic_dec(&phys_disk->ioaccel_cmds_out);
4378 scsi_dma_unmap(cmd);
4379 return -1;
4380 }
4381 } else
4382 cp->sg_count = (u8) use_sg;
4383
Scott Teelc3497752014-02-18 13:56:34 -06004384 enqueue_cmd_and_start_io(h, c);
4385 return 0;
4386}
4387
4388/*
4389 * Queue a command to the correct I/O accelerator path.
4390 */
4391static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
4392 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004393 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004394{
Don Brace03383732015-01-23 16:43:30 -06004395 /* Try to honor the device's queue depth */
4396 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
4397 phys_disk->queue_depth) {
4398 atomic_dec(&phys_disk->ioaccel_cmds_out);
4399 return IO_ACCEL_INELIGIBLE;
4400 }
Scott Teelc3497752014-02-18 13:56:34 -06004401 if (h->transMethod & CFGTBL_Trans_io_accel1)
4402 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004403 cdb, cdb_len, scsi3addr,
4404 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004405 else
4406 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004407 cdb, cdb_len, scsi3addr,
4408 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004409}
4410
Scott Teel6b80b182014-02-18 13:56:55 -06004411static void raid_map_helper(struct raid_map_data *map,
4412 int offload_to_mirror, u32 *map_index, u32 *current_group)
4413{
4414 if (offload_to_mirror == 0) {
4415 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06004416 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004417 return;
4418 }
4419 do {
4420 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06004421 *current_group = *map_index /
4422 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004423 if (offload_to_mirror == *current_group)
4424 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06004425 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06004426 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004427 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004428 (*current_group)++;
4429 } else {
4430 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004431 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004432 *current_group = 0;
4433 }
4434 } while (offload_to_mirror != *current_group);
4435}
4436
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004437/*
4438 * Attempt to perform offload RAID mapping for a logical volume I/O.
4439 */
4440static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4441 struct CommandList *c)
4442{
4443 struct scsi_cmnd *cmd = c->scsi_cmd;
4444 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4445 struct raid_map_data *map = &dev->raid_map;
4446 struct raid_map_disk_data *dd = &map->data[0];
4447 int is_write = 0;
4448 u32 map_index;
4449 u64 first_block, last_block;
4450 u32 block_cnt;
4451 u32 blocks_per_row;
4452 u64 first_row, last_row;
4453 u32 first_row_offset, last_row_offset;
4454 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06004455 u64 r0_first_row, r0_last_row;
4456 u32 r5or6_blocks_per_row;
4457 u64 r5or6_first_row, r5or6_last_row;
4458 u32 r5or6_first_row_offset, r5or6_last_row_offset;
4459 u32 r5or6_first_column, r5or6_last_column;
4460 u32 total_disks_per_row;
4461 u32 stripesize;
4462 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004463 u32 map_row;
4464 u32 disk_handle;
4465 u64 disk_block;
4466 u32 disk_block_cnt;
4467 u8 cdb[16];
4468 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06004469 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004470#if BITS_PER_LONG == 32
4471 u64 tmpdiv;
4472#endif
Scott Teel6b80b182014-02-18 13:56:55 -06004473 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004474
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004475 /* check for valid opcode, get LBA and block count */
4476 switch (cmd->cmnd[0]) {
4477 case WRITE_6:
4478 is_write = 1;
4479 case READ_6:
Don Bracec8a6c9a2015-11-04 15:50:50 -06004480 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004481 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05004482 if (block_cnt == 0)
4483 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004484 break;
4485 case WRITE_10:
4486 is_write = 1;
4487 case READ_10:
4488 first_block =
4489 (((u64) cmd->cmnd[2]) << 24) |
4490 (((u64) cmd->cmnd[3]) << 16) |
4491 (((u64) cmd->cmnd[4]) << 8) |
4492 cmd->cmnd[5];
4493 block_cnt =
4494 (((u32) cmd->cmnd[7]) << 8) |
4495 cmd->cmnd[8];
4496 break;
4497 case WRITE_12:
4498 is_write = 1;
4499 case READ_12:
4500 first_block =
4501 (((u64) cmd->cmnd[2]) << 24) |
4502 (((u64) cmd->cmnd[3]) << 16) |
4503 (((u64) cmd->cmnd[4]) << 8) |
4504 cmd->cmnd[5];
4505 block_cnt =
4506 (((u32) cmd->cmnd[6]) << 24) |
4507 (((u32) cmd->cmnd[7]) << 16) |
4508 (((u32) cmd->cmnd[8]) << 8) |
4509 cmd->cmnd[9];
4510 break;
4511 case WRITE_16:
4512 is_write = 1;
4513 case READ_16:
4514 first_block =
4515 (((u64) cmd->cmnd[2]) << 56) |
4516 (((u64) cmd->cmnd[3]) << 48) |
4517 (((u64) cmd->cmnd[4]) << 40) |
4518 (((u64) cmd->cmnd[5]) << 32) |
4519 (((u64) cmd->cmnd[6]) << 24) |
4520 (((u64) cmd->cmnd[7]) << 16) |
4521 (((u64) cmd->cmnd[8]) << 8) |
4522 cmd->cmnd[9];
4523 block_cnt =
4524 (((u32) cmd->cmnd[10]) << 24) |
4525 (((u32) cmd->cmnd[11]) << 16) |
4526 (((u32) cmd->cmnd[12]) << 8) |
4527 cmd->cmnd[13];
4528 break;
4529 default:
4530 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4531 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004532 last_block = first_block + block_cnt - 1;
4533
4534 /* check for write to non-RAID-0 */
4535 if (is_write && dev->raid_level != 0)
4536 return IO_ACCEL_INELIGIBLE;
4537
4538 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06004539 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
4540 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004541 return IO_ACCEL_INELIGIBLE;
4542
4543 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06004544 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
4545 le16_to_cpu(map->strip_size);
4546 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004547#if BITS_PER_LONG == 32
4548 tmpdiv = first_block;
4549 (void) do_div(tmpdiv, blocks_per_row);
4550 first_row = tmpdiv;
4551 tmpdiv = last_block;
4552 (void) do_div(tmpdiv, blocks_per_row);
4553 last_row = tmpdiv;
4554 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4555 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4556 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004557 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004558 first_column = tmpdiv;
4559 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004560 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004561 last_column = tmpdiv;
4562#else
4563 first_row = first_block / blocks_per_row;
4564 last_row = last_block / blocks_per_row;
4565 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4566 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06004567 first_column = first_row_offset / strip_size;
4568 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004569#endif
4570
4571 /* if this isn't a single row/column then give to the controller */
4572 if ((first_row != last_row) || (first_column != last_column))
4573 return IO_ACCEL_INELIGIBLE;
4574
4575 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06004576 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
4577 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004578 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004579 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004580 map_index = (map_row * total_disks_per_row) + first_column;
4581
4582 switch (dev->raid_level) {
4583 case HPSA_RAID_0:
4584 break; /* nothing special to do */
4585 case HPSA_RAID_1:
4586 /* Handles load balance across RAID 1 members.
4587 * (2-drive R1 and R10 with even # of drives.)
4588 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004589 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004590 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004591 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06004592 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004593 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06004594 break;
4595 case HPSA_RAID_ADM:
4596 /* Handles N-way mirrors (R1-ADM)
4597 * and R10 with # of drives divisible by 3.)
4598 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004599 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06004600
4601 offload_to_mirror = dev->offload_to_mirror;
4602 raid_map_helper(map, offload_to_mirror,
4603 &map_index, &current_group);
4604 /* set mirror group to use next time */
4605 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06004606 (offload_to_mirror >=
4607 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004608 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06004609 dev->offload_to_mirror = offload_to_mirror;
4610 /* Avoid direct use of dev->offload_to_mirror within this
4611 * function since multiple threads might simultaneously
4612 * increment it beyond the range of dev->layout_map_count -1.
4613 */
4614 break;
4615 case HPSA_RAID_5:
4616 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004617 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004618 break;
4619
4620 /* Verify first and last block are in same RAID group */
4621 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06004622 le16_to_cpu(map->strip_size) *
4623 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004624 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06004625 stripesize = r5or6_blocks_per_row *
4626 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06004627#if BITS_PER_LONG == 32
4628 tmpdiv = first_block;
4629 first_group = do_div(tmpdiv, stripesize);
4630 tmpdiv = first_group;
4631 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4632 first_group = tmpdiv;
4633 tmpdiv = last_block;
4634 last_group = do_div(tmpdiv, stripesize);
4635 tmpdiv = last_group;
4636 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4637 last_group = tmpdiv;
4638#else
4639 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
4640 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06004641#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05004642 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06004643 return IO_ACCEL_INELIGIBLE;
4644
4645 /* Verify request is in a single row of RAID 5/6 */
4646#if BITS_PER_LONG == 32
4647 tmpdiv = first_block;
4648 (void) do_div(tmpdiv, stripesize);
4649 first_row = r5or6_first_row = r0_first_row = tmpdiv;
4650 tmpdiv = last_block;
4651 (void) do_div(tmpdiv, stripesize);
4652 r5or6_last_row = r0_last_row = tmpdiv;
4653#else
4654 first_row = r5or6_first_row = r0_first_row =
4655 first_block / stripesize;
4656 r5or6_last_row = r0_last_row = last_block / stripesize;
4657#endif
4658 if (r5or6_first_row != r5or6_last_row)
4659 return IO_ACCEL_INELIGIBLE;
4660
4661
4662 /* Verify request is in a single column */
4663#if BITS_PER_LONG == 32
4664 tmpdiv = first_block;
4665 first_row_offset = do_div(tmpdiv, stripesize);
4666 tmpdiv = first_row_offset;
4667 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
4668 r5or6_first_row_offset = first_row_offset;
4669 tmpdiv = last_block;
4670 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
4671 tmpdiv = r5or6_last_row_offset;
4672 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
4673 tmpdiv = r5or6_first_row_offset;
4674 (void) do_div(tmpdiv, map->strip_size);
4675 first_column = r5or6_first_column = tmpdiv;
4676 tmpdiv = r5or6_last_row_offset;
4677 (void) do_div(tmpdiv, map->strip_size);
4678 r5or6_last_column = tmpdiv;
4679#else
4680 first_row_offset = r5or6_first_row_offset =
4681 (u32)((first_block % stripesize) %
4682 r5or6_blocks_per_row);
4683
4684 r5or6_last_row_offset =
4685 (u32)((last_block % stripesize) %
4686 r5or6_blocks_per_row);
4687
4688 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004689 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004690 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004691 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004692#endif
4693 if (r5or6_first_column != r5or6_last_column)
4694 return IO_ACCEL_INELIGIBLE;
4695
4696 /* Request is eligible */
4697 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004698 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004699
4700 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06004701 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06004702 (map_row * total_disks_per_row) + first_column;
4703 break;
4704 default:
4705 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004706 }
Scott Teel6b80b182014-02-18 13:56:55 -06004707
Stephen Cameron07543e02015-01-23 16:44:14 -06004708 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
4709 return IO_ACCEL_INELIGIBLE;
4710
Don Brace03383732015-01-23 16:43:30 -06004711 c->phys_disk = dev->phys_disk[map_index];
4712
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004713 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06004714 disk_block = le64_to_cpu(map->disk_starting_blk) +
4715 first_row * le16_to_cpu(map->strip_size) +
4716 (first_row_offset - first_column *
4717 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004718 disk_block_cnt = block_cnt;
4719
4720 /* handle differing logical/physical block sizes */
4721 if (map->phys_blk_shift) {
4722 disk_block <<= map->phys_blk_shift;
4723 disk_block_cnt <<= map->phys_blk_shift;
4724 }
4725 BUG_ON(disk_block_cnt > 0xffff);
4726
4727 /* build the new CDB for the physical disk I/O */
4728 if (disk_block > 0xffffffff) {
4729 cdb[0] = is_write ? WRITE_16 : READ_16;
4730 cdb[1] = 0;
4731 cdb[2] = (u8) (disk_block >> 56);
4732 cdb[3] = (u8) (disk_block >> 48);
4733 cdb[4] = (u8) (disk_block >> 40);
4734 cdb[5] = (u8) (disk_block >> 32);
4735 cdb[6] = (u8) (disk_block >> 24);
4736 cdb[7] = (u8) (disk_block >> 16);
4737 cdb[8] = (u8) (disk_block >> 8);
4738 cdb[9] = (u8) (disk_block);
4739 cdb[10] = (u8) (disk_block_cnt >> 24);
4740 cdb[11] = (u8) (disk_block_cnt >> 16);
4741 cdb[12] = (u8) (disk_block_cnt >> 8);
4742 cdb[13] = (u8) (disk_block_cnt);
4743 cdb[14] = 0;
4744 cdb[15] = 0;
4745 cdb_len = 16;
4746 } else {
4747 cdb[0] = is_write ? WRITE_10 : READ_10;
4748 cdb[1] = 0;
4749 cdb[2] = (u8) (disk_block >> 24);
4750 cdb[3] = (u8) (disk_block >> 16);
4751 cdb[4] = (u8) (disk_block >> 8);
4752 cdb[5] = (u8) (disk_block);
4753 cdb[6] = 0;
4754 cdb[7] = (u8) (disk_block_cnt >> 8);
4755 cdb[8] = (u8) (disk_block_cnt);
4756 cdb[9] = 0;
4757 cdb_len = 10;
4758 }
4759 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004760 dev->scsi3addr,
4761 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004762}
4763
Webb Scales25163bd2015-04-23 09:32:00 -05004764/*
4765 * Submit commands down the "normal" RAID stack path
4766 * All callers to hpsa_ciss_submit must check lockup_detected
4767 * beforehand, before (opt.) and after calling cmd_alloc
4768 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06004769static int hpsa_ciss_submit(struct ctlr_info *h,
4770 struct CommandList *c, struct scsi_cmnd *cmd,
4771 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004772{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004773 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004774 c->cmd_type = CMD_SCSI;
4775 c->scsi_cmd = cmd;
4776 c->Header.ReplyQueue = 0; /* unused in simple mode */
4777 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004778 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004779
4780 /* Fill in the request block... */
4781
4782 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004783 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4784 c->Request.CDBLen = cmd->cmd_len;
4785 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004786 switch (cmd->sc_data_direction) {
4787 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004788 c->Request.type_attr_dir =
4789 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004790 break;
4791 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004792 c->Request.type_attr_dir =
4793 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004794 break;
4795 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004796 c->Request.type_attr_dir =
4797 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004798 break;
4799 case DMA_BIDIRECTIONAL:
4800 /* This can happen if a buggy application does a scsi passthru
4801 * and sets both inlen and outlen to non-zero. ( see
4802 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4803 */
4804
Stephen M. Camerona505b862014-11-14 17:27:04 -06004805 c->Request.type_attr_dir =
4806 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004807 /* This is technically wrong, and hpsa controllers should
4808 * reject it with CMD_INVALID, which is the most correct
4809 * response, but non-fibre backends appear to let it
4810 * slide by, and give the same results as if this field
4811 * were set correctly. Either way is acceptable for
4812 * our purposes here.
4813 */
4814
4815 break;
4816
4817 default:
4818 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4819 cmd->sc_data_direction);
4820 BUG();
4821 break;
4822 }
4823
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004824 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Webb Scales73153fe2015-04-23 09:35:04 -05004825 hpsa_cmd_resolve_and_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004826 return SCSI_MLQUEUE_HOST_BUSY;
4827 }
4828 enqueue_cmd_and_start_io(h, c);
4829 /* the cmd'll come back via intr handler in complete_scsi_command() */
4830 return 0;
4831}
4832
Stephen Cameron360c73b2015-04-23 09:32:32 -05004833static void hpsa_cmd_init(struct ctlr_info *h, int index,
4834 struct CommandList *c)
4835{
4836 dma_addr_t cmd_dma_handle, err_dma_handle;
4837
4838 /* Zero out all of commandlist except the last field, refcount */
4839 memset(c, 0, offsetof(struct CommandList, refcount));
4840 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
4841 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4842 c->err_info = h->errinfo_pool + index;
4843 memset(c->err_info, 0, sizeof(*c->err_info));
4844 err_dma_handle = h->errinfo_pool_dhandle
4845 + index * sizeof(*c->err_info);
4846 c->cmdindex = index;
4847 c->busaddr = (u32) cmd_dma_handle;
4848 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4849 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
4850 c->h = h;
Webb Scalesa58e7e52015-04-23 09:34:16 -05004851 c->scsi_cmd = SCSI_CMD_IDLE;
Stephen Cameron360c73b2015-04-23 09:32:32 -05004852}
4853
4854static void hpsa_preinitialize_commands(struct ctlr_info *h)
4855{
4856 int i;
4857
4858 for (i = 0; i < h->nr_cmds; i++) {
4859 struct CommandList *c = h->cmd_pool + i;
4860
4861 hpsa_cmd_init(h, i, c);
4862 atomic_set(&c->refcount, 0);
4863 }
4864}
4865
4866static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
4867 struct CommandList *c)
4868{
4869 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4870
Webb Scales73153fe2015-04-23 09:35:04 -05004871 BUG_ON(c->cmdindex != index);
4872
Stephen Cameron360c73b2015-04-23 09:32:32 -05004873 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4874 memset(c->err_info, 0, sizeof(*c->err_info));
4875 c->busaddr = (u32) cmd_dma_handle;
4876}
4877
Webb Scales592a0ad2015-04-23 09:32:48 -05004878static int hpsa_ioaccel_submit(struct ctlr_info *h,
4879 struct CommandList *c, struct scsi_cmnd *cmd,
4880 unsigned char *scsi3addr)
4881{
4882 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4883 int rc = IO_ACCEL_INELIGIBLE;
4884
4885 cmd->host_scribble = (unsigned char *) c;
4886
4887 if (dev->offload_enabled) {
4888 hpsa_cmd_init(h, c->cmdindex, c);
4889 c->cmd_type = CMD_SCSI;
4890 c->scsi_cmd = cmd;
4891 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4892 if (rc < 0) /* scsi_dma_map failed. */
4893 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05004894 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004895 hpsa_cmd_init(h, c->cmdindex, c);
4896 c->cmd_type = CMD_SCSI;
4897 c->scsi_cmd = cmd;
4898 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4899 if (rc < 0) /* scsi_dma_map failed. */
4900 rc = SCSI_MLQUEUE_HOST_BUSY;
4901 }
4902 return rc;
4903}
4904
Don Brace080ef1c2015-01-23 16:43:25 -06004905static void hpsa_command_resubmit_worker(struct work_struct *work)
4906{
4907 struct scsi_cmnd *cmd;
4908 struct hpsa_scsi_dev_t *dev;
Webb Scales8a0ff922015-04-23 09:34:11 -05004909 struct CommandList *c = container_of(work, struct CommandList, work);
Don Brace080ef1c2015-01-23 16:43:25 -06004910
4911 cmd = c->scsi_cmd;
4912 dev = cmd->device->hostdata;
4913 if (!dev) {
4914 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05004915 return hpsa_cmd_free_and_done(c->h, c, cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06004916 }
Webb Scalesd604f532015-04-23 09:35:22 -05004917 if (c->reset_pending)
4918 return hpsa_cmd_resolve_and_free(c->h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05004919 if (c->abort_pending)
4920 return hpsa_cmd_abort_and_free(c->h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05004921 if (c->cmd_type == CMD_IOACCEL2) {
4922 struct ctlr_info *h = c->h;
4923 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4924 int rc;
4925
4926 if (c2->error_data.serv_response ==
4927 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
4928 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
4929 if (rc == 0)
4930 return;
4931 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4932 /*
4933 * If we get here, it means dma mapping failed.
4934 * Try again via scsi mid layer, which will
4935 * then get SCSI_MLQUEUE_HOST_BUSY.
4936 */
4937 cmd->result = DID_IMM_RETRY << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05004938 return hpsa_cmd_free_and_done(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05004939 }
4940 /* else, fall thru and resubmit down CISS path */
4941 }
4942 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05004943 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004944 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4945 /*
4946 * If we get here, it means dma mapping failed. Try
4947 * again via scsi mid layer, which will then get
4948 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05004949 *
4950 * hpsa_ciss_submit will have already freed c
4951 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06004952 */
4953 cmd->result = DID_IMM_RETRY << 16;
4954 cmd->scsi_done(cmd);
4955 }
4956}
4957
Stephen Cameron574f05d2015-01-23 16:43:20 -06004958/* Running in struct Scsi_Host->host_lock less mode */
4959static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4960{
4961 struct ctlr_info *h;
4962 struct hpsa_scsi_dev_t *dev;
4963 unsigned char scsi3addr[8];
4964 struct CommandList *c;
4965 int rc = 0;
4966
4967 /* Get the ptr to our adapter structure out of cmd->host. */
4968 h = sdev_to_hba(cmd->device);
Webb Scales73153fe2015-04-23 09:35:04 -05004969
4970 BUG_ON(cmd->request->tag < 0);
4971
Stephen Cameron574f05d2015-01-23 16:43:20 -06004972 dev = cmd->device->hostdata;
4973 if (!dev) {
4974 cmd->result = DID_NO_CONNECT << 16;
4975 cmd->scsi_done(cmd);
4976 return 0;
4977 }
Webb Scales73153fe2015-04-23 09:35:04 -05004978
Stephen Cameron574f05d2015-01-23 16:43:20 -06004979 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4980
4981 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004982 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004983 cmd->scsi_done(cmd);
4984 return 0;
4985 }
Webb Scales73153fe2015-04-23 09:35:04 -05004986 c = cmd_tagged_alloc(h, cmd);
Stephen Cameron574f05d2015-01-23 16:43:20 -06004987
Stephen Cameron407863c2015-01-23 16:44:19 -06004988 /*
4989 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004990 * Retries always go down the normal I/O path.
4991 */
4992 if (likely(cmd->retries == 0 &&
4993 cmd->request->cmd_type == REQ_TYPE_FS &&
4994 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004995 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
4996 if (rc == 0)
4997 return 0;
4998 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
Webb Scales73153fe2015-04-23 09:35:04 -05004999 hpsa_cmd_resolve_and_free(h, c);
Webb Scales592a0ad2015-04-23 09:32:48 -05005000 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06005001 }
5002 }
5003 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
5004}
5005
Webb Scales8ebc9242015-01-23 16:44:50 -06005006static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005007{
5008 unsigned long flags;
5009
Webb Scales8ebc9242015-01-23 16:44:50 -06005010 spin_lock_irqsave(&h->scan_lock, flags);
5011 h->scan_finished = 1;
5012 wake_up_all(&h->scan_wait_queue);
5013 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005014}
5015
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005016static void hpsa_scan_start(struct Scsi_Host *sh)
5017{
5018 struct ctlr_info *h = shost_to_hba(sh);
5019 unsigned long flags;
5020
Webb Scales8ebc9242015-01-23 16:44:50 -06005021 /*
5022 * Don't let rescans be initiated on a controller known to be locked
5023 * up. If the controller locks up *during* a rescan, that thread is
5024 * probably hosed, but at least we can prevent new rescan threads from
5025 * piling up on a locked up controller.
5026 */
5027 if (unlikely(lockup_detected(h)))
5028 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005029
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005030 /* wait until any scan already in progress is finished. */
5031 while (1) {
5032 spin_lock_irqsave(&h->scan_lock, flags);
5033 if (h->scan_finished)
5034 break;
5035 spin_unlock_irqrestore(&h->scan_lock, flags);
5036 wait_event(h->scan_wait_queue, h->scan_finished);
5037 /* Note: We don't need to worry about a race between this
5038 * thread and driver unload because the midlayer will
5039 * have incremented the reference count, so unload won't
5040 * happen if we're in here.
5041 */
5042 }
5043 h->scan_finished = 0; /* mark scan as in progress */
5044 spin_unlock_irqrestore(&h->scan_lock, flags);
5045
Webb Scales8ebc9242015-01-23 16:44:50 -06005046 if (unlikely(lockup_detected(h)))
5047 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005048
Don Brace8aa60682015-11-04 15:50:01 -06005049 hpsa_update_scsi_devices(h);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005050
Webb Scales8ebc9242015-01-23 16:44:50 -06005051 hpsa_scan_complete(h);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005052}
5053
Don Brace7c0a0222015-01-23 16:41:30 -06005054static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
5055{
Don Brace03383732015-01-23 16:43:30 -06005056 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
5057
5058 if (!logical_drive)
5059 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06005060
5061 if (qdepth < 1)
5062 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06005063 else if (qdepth > logical_drive->queue_depth)
5064 qdepth = logical_drive->queue_depth;
5065
5066 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06005067}
5068
Stephen M. Camerona08a84712010-02-04 08:43:16 -06005069static int hpsa_scan_finished(struct Scsi_Host *sh,
5070 unsigned long elapsed_time)
5071{
5072 struct ctlr_info *h = shost_to_hba(sh);
5073 unsigned long flags;
5074 int finished;
5075
5076 spin_lock_irqsave(&h->scan_lock, flags);
5077 finished = h->scan_finished;
5078 spin_unlock_irqrestore(&h->scan_lock, flags);
5079 return finished;
5080}
5081
Robert Elliott2946e822015-04-23 09:35:09 -05005082static int hpsa_scsi_host_alloc(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005083{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005084 struct Scsi_Host *sh;
5085 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005086
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005087 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
Robert Elliott2946e822015-04-23 09:35:09 -05005088 if (sh == NULL) {
5089 dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
5090 return -ENOMEM;
5091 }
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005092
5093 sh->io_port = 0;
5094 sh->n_io_port = 0;
5095 sh->this_id = -1;
5096 sh->max_channel = 3;
5097 sh->max_cmd_len = MAX_COMMAND_SIZE;
5098 sh->max_lun = HPSA_MAX_LUN;
5099 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05005100 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06005101 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005102 sh->sg_tablesize = h->maxsgentries;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005103 sh->hostdata[0] = (unsigned long) h;
5104 sh->irq = h->intr[h->intr_mode];
5105 sh->unique_id = sh->irq;
Webb Scales73153fe2015-04-23 09:35:04 -05005106 error = scsi_init_shared_tag_map(sh, sh->can_queue);
5107 if (error) {
5108 dev_err(&h->pdev->dev,
5109 "%s: scsi_init_shared_tag_map failed for controller %d\n",
5110 __func__, h->ctlr);
Robert Elliott2946e822015-04-23 09:35:09 -05005111 scsi_host_put(sh);
5112 return error;
Webb Scales73153fe2015-04-23 09:35:04 -05005113 }
Robert Elliott2946e822015-04-23 09:35:09 -05005114 h->scsi_host = sh;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005115 return 0;
Robert Elliott2946e822015-04-23 09:35:09 -05005116}
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005117
Robert Elliott2946e822015-04-23 09:35:09 -05005118static int hpsa_scsi_add_host(struct ctlr_info *h)
5119{
5120 int rv;
5121
5122 rv = scsi_add_host(h->scsi_host, &h->pdev->dev);
5123 if (rv) {
5124 dev_err(&h->pdev->dev, "scsi_add_host failed\n");
5125 return rv;
5126 }
5127 scsi_scan_host(h->scsi_host);
5128 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005129}
5130
Webb Scalesb69324f2015-04-23 09:34:22 -05005131/*
Webb Scales73153fe2015-04-23 09:35:04 -05005132 * The block layer has already gone to the trouble of picking out a unique,
5133 * small-integer tag for this request. We use an offset from that value as
5134 * an index to select our command block. (The offset allows us to reserve the
5135 * low-numbered entries for our own uses.)
5136 */
5137static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
5138{
5139 int idx = scmd->request->tag;
5140
5141 if (idx < 0)
5142 return idx;
5143
5144 /* Offset to leave space for internal cmds. */
5145 return idx += HPSA_NRESERVED_CMDS;
5146}
5147
5148/*
Webb Scalesb69324f2015-04-23 09:34:22 -05005149 * Send a TEST_UNIT_READY command to the specified LUN using the specified
5150 * reply queue; returns zero if the unit is ready, and non-zero otherwise.
5151 */
5152static int hpsa_send_test_unit_ready(struct ctlr_info *h,
5153 struct CommandList *c, unsigned char lunaddr[],
5154 int reply_queue)
5155{
5156 int rc;
5157
5158 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
5159 (void) fill_cmd(c, TEST_UNIT_READY, h,
5160 NULL, 0, 0, lunaddr, TYPE_CMD);
5161 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
5162 if (rc)
5163 return rc;
5164 /* no unmap needed here because no data xfer. */
5165
5166 /* Check if the unit is already ready. */
5167 if (c->err_info->CommandStatus == CMD_SUCCESS)
5168 return 0;
5169
5170 /*
5171 * The first command sent after reset will receive "unit attention" to
5172 * indicate that the LUN has been reset...this is actually what we're
5173 * looking for (but, success is good too).
5174 */
5175 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5176 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
5177 (c->err_info->SenseInfo[2] == NO_SENSE ||
5178 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
5179 return 0;
5180
5181 return 1;
5182}
5183
5184/*
5185 * Wait for a TEST_UNIT_READY command to complete, retrying as necessary;
5186 * returns zero when the unit is ready, and non-zero when giving up.
5187 */
5188static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h,
5189 struct CommandList *c,
5190 unsigned char lunaddr[], int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005191{
Tomas Henzl89193582014-02-21 16:25:05 -06005192 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005193 int count = 0;
5194 int waittime = 1; /* seconds */
Webb Scalesb69324f2015-04-23 09:34:22 -05005195
5196 /* Send test unit ready until device ready, or give up. */
5197 for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) {
5198
5199 /*
5200 * Wait for a bit. do this first, because if we send
5201 * the TUR right away, the reset will just abort it.
5202 */
5203 msleep(1000 * waittime);
5204
5205 rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue);
5206 if (!rc)
5207 break;
5208
5209 /* Increase wait time with each try, up to a point. */
5210 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
5211 waittime *= 2;
5212
5213 dev_warn(&h->pdev->dev,
5214 "waiting %d secs for device to become ready.\n",
5215 waittime);
5216 }
5217
5218 return rc;
5219}
5220
5221static int wait_for_device_to_become_ready(struct ctlr_info *h,
5222 unsigned char lunaddr[],
5223 int reply_queue)
5224{
5225 int first_queue;
5226 int last_queue;
5227 int rq;
5228 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005229 struct CommandList *c;
5230
Stephen Cameron45fcb862015-01-23 16:43:04 -06005231 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005232
Webb Scalesb69324f2015-04-23 09:34:22 -05005233 /*
5234 * If no specific reply queue was requested, then send the TUR
5235 * repeatedly, requesting a reply on each reply queue; otherwise execute
5236 * the loop exactly once using only the specified queue.
5237 */
5238 if (reply_queue == DEFAULT_REPLY_QUEUE) {
5239 first_queue = 0;
5240 last_queue = h->nreply_queues - 1;
5241 } else {
5242 first_queue = reply_queue;
5243 last_queue = reply_queue;
5244 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005245
Webb Scalesb69324f2015-04-23 09:34:22 -05005246 for (rq = first_queue; rq <= last_queue; rq++) {
5247 rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq);
Webb Scales25163bd2015-04-23 09:32:00 -05005248 if (rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005249 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005250 }
5251
5252 if (rc)
5253 dev_warn(&h->pdev->dev, "giving up on device.\n");
5254 else
5255 dev_warn(&h->pdev->dev, "device is ready.\n");
5256
Stephen Cameron45fcb862015-01-23 16:43:04 -06005257 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005258 return rc;
5259}
5260
5261/* Need at least one of these error handlers to keep ../scsi/hosts.c from
5262 * complaining. Doing a host- or bus-reset can't do anything good here.
5263 */
5264static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
5265{
5266 int rc;
5267 struct ctlr_info *h;
5268 struct hpsa_scsi_dev_t *dev;
Scott Teel0b9b7b62015-11-04 15:51:02 -06005269 u8 reset_type;
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005270 char msg[48];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005271
5272 /* find the controller to which the command to be aborted was sent */
5273 h = sdev_to_hba(scsicmd->device);
5274 if (h == NULL) /* paranoia */
5275 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06005276
5277 if (lockup_detected(h))
5278 return FAILED;
5279
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005280 dev = scsicmd->device->hostdata;
5281 if (!dev) {
Webb Scalesd604f532015-04-23 09:35:22 -05005282 dev_err(&h->pdev->dev, "%s: device lookup failed\n", __func__);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005283 return FAILED;
5284 }
Webb Scales25163bd2015-04-23 09:32:00 -05005285
5286 /* if controller locked up, we can guarantee command won't complete */
5287 if (lockup_detected(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005288 snprintf(msg, sizeof(msg),
5289 "cmd %d RESET FAILED, lockup detected",
5290 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005291 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005292 return FAILED;
5293 }
5294
5295 /* this reset request might be the result of a lockup; check */
5296 if (detect_controller_lockup(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005297 snprintf(msg, sizeof(msg),
5298 "cmd %d RESET FAILED, new lockup detected",
5299 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005300 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005301 return FAILED;
5302 }
5303
Webb Scalesd604f532015-04-23 09:35:22 -05005304 /* Do not attempt on controller */
5305 if (is_hba_lunid(dev->scsi3addr))
5306 return SUCCESS;
5307
Scott Teel0b9b7b62015-11-04 15:51:02 -06005308 if (is_logical_dev_addr_mode(dev->scsi3addr))
5309 reset_type = HPSA_DEVICE_RESET_MSG;
5310 else
5311 reset_type = HPSA_PHYS_TARGET_RESET;
5312
5313 sprintf(msg, "resetting %s",
5314 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ");
5315 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005316
Don Braceda03ded2015-11-04 15:50:56 -06005317 h->reset_in_progress = 1;
5318
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005319 /* send a reset to the SCSI LUN which the command was sent to */
Scott Teel0b9b7b62015-11-04 15:51:02 -06005320 rc = hpsa_do_reset(h, dev, dev->scsi3addr, reset_type,
Webb Scalesd604f532015-04-23 09:35:22 -05005321 DEFAULT_REPLY_QUEUE);
Scott Teel0b9b7b62015-11-04 15:51:02 -06005322 sprintf(msg, "reset %s %s",
5323 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ",
5324 rc == 0 ? "completed successfully" : "failed");
Webb Scalesd604f532015-04-23 09:35:22 -05005325 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Don Braceda03ded2015-11-04 15:50:56 -06005326 h->reset_in_progress = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05005327 return rc == 0 ? SUCCESS : FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005328}
5329
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005330static void swizzle_abort_tag(u8 *tag)
5331{
5332 u8 original_tag[8];
5333
5334 memcpy(original_tag, tag, 8);
5335 tag[0] = original_tag[3];
5336 tag[1] = original_tag[2];
5337 tag[2] = original_tag[1];
5338 tag[3] = original_tag[0];
5339 tag[4] = original_tag[7];
5340 tag[5] = original_tag[6];
5341 tag[6] = original_tag[5];
5342 tag[7] = original_tag[4];
5343}
5344
Scott Teel17eb87d2014-02-18 13:55:28 -06005345static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06005346 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06005347{
Don Brace2b08b3e2015-01-23 16:41:09 -06005348 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06005349 if (c->cmd_type == CMD_IOACCEL1) {
5350 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
5351 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06005352 tag = le64_to_cpu(cm1->tag);
5353 *tagupper = cpu_to_le32(tag >> 32);
5354 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005355 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06005356 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06005357 if (c->cmd_type == CMD_IOACCEL2) {
5358 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
5359 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06005360 /* upper tag not used in ioaccel2 mode */
5361 memset(tagupper, 0, sizeof(*tagupper));
5362 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005363 return;
5364 }
Don Brace2b08b3e2015-01-23 16:41:09 -06005365 tag = le64_to_cpu(c->Header.tag);
5366 *tagupper = cpu_to_le32(tag >> 32);
5367 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06005368}
5369
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005370static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005371 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005372{
5373 int rc = IO_OK;
5374 struct CommandList *c;
5375 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06005376 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005377
Stephen Cameron45fcb862015-01-23 16:43:04 -06005378 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005379
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005380 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005381 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005382 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005383 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005384 swizzle_abort_tag(&c->Request.CDB[4]);
Webb Scales25163bd2015-04-23 09:32:00 -05005385 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06005386 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005387 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005388 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005389 /* no unmap needed here because no data xfer. */
5390
5391 ei = c->err_info;
5392 switch (ei->CommandStatus) {
5393 case CMD_SUCCESS:
5394 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05005395 case CMD_TMF_STATUS:
5396 rc = hpsa_evaluate_tmf_status(h, c);
5397 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005398 case CMD_UNABORTABLE: /* Very common, don't make noise. */
5399 rc = -1;
5400 break;
5401 default:
5402 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005403 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06005404 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005405 rc = -1;
5406 break;
5407 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005408 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06005409 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
5410 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005411 return rc;
5412}
5413
Stephen Cameron8be986c2015-04-23 09:34:06 -05005414static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h,
5415 struct CommandList *command_to_abort, int reply_queue)
5416{
5417 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5418 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
5419 struct io_accel2_cmd *c2a =
5420 &h->ioaccel2_cmd_pool[command_to_abort->cmdindex];
Webb Scalesa58e7e52015-04-23 09:34:16 -05005421 struct scsi_cmnd *scmd = command_to_abort->scsi_cmd;
Stephen Cameron8be986c2015-04-23 09:34:06 -05005422 struct hpsa_scsi_dev_t *dev = scmd->device->hostdata;
5423
5424 /*
5425 * We're overlaying struct hpsa_tmf_struct on top of something which
5426 * was allocated as a struct io_accel2_cmd, so we better be sure it
5427 * actually fits, and doesn't overrun the error info space.
5428 */
5429 BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) >
5430 sizeof(struct io_accel2_cmd));
5431 BUG_ON(offsetof(struct io_accel2_cmd, error_data) <
5432 offsetof(struct hpsa_tmf_struct, error_len) +
5433 sizeof(ac->error_len));
5434
5435 c->cmd_type = IOACCEL2_TMF;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005436 c->scsi_cmd = SCSI_CMD_BUSY;
5437
Stephen Cameron8be986c2015-04-23 09:34:06 -05005438 /* Adjust the DMA address to point to the accelerated command buffer */
5439 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
5440 (c->cmdindex * sizeof(struct io_accel2_cmd));
5441 BUG_ON(c->busaddr & 0x0000007F);
5442
5443 memset(ac, 0, sizeof(*c2)); /* yes this is correct */
5444 ac->iu_type = IOACCEL2_IU_TMF_TYPE;
5445 ac->reply_queue = reply_queue;
5446 ac->tmf = IOACCEL2_TMF_ABORT;
5447 ac->it_nexus = cpu_to_le32(dev->ioaccel_handle);
5448 memset(ac->lun_id, 0, sizeof(ac->lun_id));
5449 ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT);
5450 ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag));
5451 ac->error_ptr = cpu_to_le64(c->busaddr +
5452 offsetof(struct io_accel2_cmd, error_data));
5453 ac->error_len = cpu_to_le32(sizeof(c2->error_data));
5454}
5455
Scott Teel54b6e9e2014-02-18 13:56:45 -06005456/* ioaccel2 path firmware cannot handle abort task requests.
5457 * Change abort requests to physical target reset, and send to the
5458 * address of the physical disk used for the ioaccel 2 command.
5459 * Return 0 on success (IO_OK)
5460 * -1 on failure
5461 */
5462
5463static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005464 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06005465{
5466 int rc = IO_OK;
5467 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
5468 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
5469 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
5470 unsigned char *psa = &phys_scsi3addr[0];
5471
5472 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06005473 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005474 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
5475 if (dev == NULL) {
5476 dev_warn(&h->pdev->dev,
5477 "Cannot abort: no device pointer for command.\n");
5478 return -1; /* not abortable */
5479 }
5480
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005481 if (h->raid_offload_debug > 0)
5482 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05005483 "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 -06005484 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05005485 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005486 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
5487 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
5488
Scott Teel54b6e9e2014-02-18 13:56:45 -06005489 if (!dev->offload_enabled) {
5490 dev_warn(&h->pdev->dev,
5491 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
5492 return -1; /* not abortable */
5493 }
5494
5495 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
5496 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
5497 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
5498 return -1; /* not abortable */
5499 }
5500
5501 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005502 if (h->raid_offload_debug > 0)
5503 dev_info(&h->pdev->dev,
5504 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5505 psa[0], psa[1], psa[2], psa[3],
5506 psa[4], psa[5], psa[6], psa[7]);
Webb Scalesd604f532015-04-23 09:35:22 -05005507 rc = hpsa_do_reset(h, dev, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005508 if (rc != 0) {
5509 dev_warn(&h->pdev->dev,
5510 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5511 psa[0], psa[1], psa[2], psa[3],
5512 psa[4], psa[5], psa[6], psa[7]);
5513 return rc; /* failed to reset */
5514 }
5515
5516 /* wait for device to recover */
Webb Scalesb69324f2015-04-23 09:34:22 -05005517 if (wait_for_device_to_become_ready(h, psa, reply_queue) != 0) {
Scott Teel54b6e9e2014-02-18 13:56:45 -06005518 dev_warn(&h->pdev->dev,
5519 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5520 psa[0], psa[1], psa[2], psa[3],
5521 psa[4], psa[5], psa[6], psa[7]);
5522 return -1; /* failed to recover */
5523 }
5524
5525 /* device recovered */
5526 dev_info(&h->pdev->dev,
5527 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5528 psa[0], psa[1], psa[2], psa[3],
5529 psa[4], psa[5], psa[6], psa[7]);
5530
5531 return rc; /* success */
5532}
5533
Stephen Cameron8be986c2015-04-23 09:34:06 -05005534static int hpsa_send_abort_ioaccel2(struct ctlr_info *h,
5535 struct CommandList *abort, int reply_queue)
5536{
5537 int rc = IO_OK;
5538 struct CommandList *c;
5539 __le32 taglower, tagupper;
5540 struct hpsa_scsi_dev_t *dev;
5541 struct io_accel2_cmd *c2;
5542
5543 dev = abort->scsi_cmd->device->hostdata;
5544 if (!dev->offload_enabled && !dev->hba_ioaccel_enabled)
5545 return -1;
5546
5547 c = cmd_alloc(h);
5548 setup_ioaccel2_abort_cmd(c, h, abort, reply_queue);
5549 c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5550 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
5551 hpsa_get_tag(h, abort, &taglower, &tagupper);
5552 dev_dbg(&h->pdev->dev,
5553 "%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n",
5554 __func__, tagupper, taglower);
5555 /* no unmap needed here because no data xfer. */
5556
5557 dev_dbg(&h->pdev->dev,
5558 "%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n",
5559 __func__, tagupper, taglower, c2->error_data.serv_response);
5560 switch (c2->error_data.serv_response) {
5561 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
5562 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
5563 rc = 0;
5564 break;
5565 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
5566 case IOACCEL2_SERV_RESPONSE_FAILURE:
5567 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
5568 rc = -1;
5569 break;
5570 default:
5571 dev_warn(&h->pdev->dev,
5572 "%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n",
5573 __func__, tagupper, taglower,
5574 c2->error_data.serv_response);
5575 rc = -1;
5576 }
5577 cmd_free(h, c);
5578 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__,
5579 tagupper, taglower);
5580 return rc;
5581}
5582
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005583static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005584 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005585{
Stephen Cameron8be986c2015-04-23 09:34:06 -05005586 /*
5587 * ioccelerator mode 2 commands should be aborted via the
Scott Teel54b6e9e2014-02-18 13:56:45 -06005588 * accelerated path, since RAID path is unaware of these commands,
Stephen Cameron8be986c2015-04-23 09:34:06 -05005589 * but not all underlying firmware can handle abort TMF.
5590 * Change abort to physical device reset when abort TMF is unsupported.
Scott Teel54b6e9e2014-02-18 13:56:45 -06005591 */
Stephen Cameron8be986c2015-04-23 09:34:06 -05005592 if (abort->cmd_type == CMD_IOACCEL2) {
5593 if (HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags)
5594 return hpsa_send_abort_ioaccel2(h, abort,
5595 reply_queue);
5596 else
5597 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05005598 abort, reply_queue);
Stephen Cameron8be986c2015-04-23 09:34:06 -05005599 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005600 return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05005601}
5602
5603/* Find out which reply queue a command was meant to return on */
5604static int hpsa_extract_reply_queue(struct ctlr_info *h,
5605 struct CommandList *c)
5606{
5607 if (c->cmd_type == CMD_IOACCEL2)
5608 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
5609 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005610}
5611
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005612/*
5613 * Limit concurrency of abort commands to prevent
5614 * over-subscription of commands
5615 */
5616static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
5617{
5618#define ABORT_CMD_WAIT_MSECS 5000
5619 return !wait_event_timeout(h->abort_cmd_wait_queue,
5620 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
5621 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
5622}
5623
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005624/* Send an abort for the specified command.
5625 * If the device and controller support it,
5626 * send a task abort request.
5627 */
5628static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
5629{
5630
Webb Scalesa58e7e52015-04-23 09:34:16 -05005631 int rc;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005632 struct ctlr_info *h;
5633 struct hpsa_scsi_dev_t *dev;
5634 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005635 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
5636 char msg[256]; /* For debug messaging. */
5637 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06005638 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05005639 int refcount, reply_queue;
5640
5641 if (sc == NULL)
5642 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005643
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005644 if (sc->device == NULL)
5645 return FAILED;
5646
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005647 /* Find the controller of the command to be aborted */
5648 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005649 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005650 return FAILED;
5651
Webb Scales25163bd2015-04-23 09:32:00 -05005652 /* Find the device of the command to be aborted */
5653 dev = sc->device->hostdata;
5654 if (!dev) {
5655 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
5656 msg);
Don Bracee3458932015-01-23 16:44:24 -06005657 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05005658 }
5659
5660 /* If controller locked up, we can guarantee command won't complete */
5661 if (lockup_detected(h)) {
5662 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5663 "ABORT FAILED, lockup detected");
5664 return FAILED;
5665 }
5666
5667 /* This is a good time to check if controller lockup has occurred */
5668 if (detect_controller_lockup(h)) {
5669 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5670 "ABORT FAILED, new lockup detected");
5671 return FAILED;
5672 }
Don Bracee3458932015-01-23 16:44:24 -06005673
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005674 /* Check that controller supports some kind of task abort */
5675 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
5676 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
5677 return FAILED;
5678
5679 memset(msg, 0, sizeof(msg));
Robert Elliott4b761552015-04-23 09:33:54 -05005680 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005681 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05005682 sc->device->id, sc->device->lun,
Robert Elliott4b761552015-04-23 09:33:54 -05005683 "Aborting command", sc);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005684
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005685 /* Get SCSI command to be aborted */
5686 abort = (struct CommandList *) sc->host_scribble;
5687 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005688 /* This can happen if the command already completed. */
5689 return SUCCESS;
5690 }
5691 refcount = atomic_inc_return(&abort->refcount);
5692 if (refcount == 1) { /* Command is done already. */
5693 cmd_free(h, abort);
5694 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005695 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005696
5697 /* Don't bother trying the abort if we know it won't work. */
5698 if (abort->cmd_type != CMD_IOACCEL2 &&
5699 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
5700 cmd_free(h, abort);
5701 return FAILED;
5702 }
5703
Webb Scalesa58e7e52015-04-23 09:34:16 -05005704 /*
5705 * Check that we're aborting the right command.
5706 * It's possible the CommandList already completed and got re-used.
5707 */
5708 if (abort->scsi_cmd != sc) {
5709 cmd_free(h, abort);
5710 return SUCCESS;
5711 }
5712
5713 abort->abort_pending = true;
Scott Teel17eb87d2014-02-18 13:55:28 -06005714 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005715 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06005716 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06005717 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005718 if (as != NULL)
Robert Elliott4b761552015-04-23 09:33:54 -05005719 ml += sprintf(msg+ml,
5720 "CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ",
5721 as->cmd_len, as->cmnd[0], as->cmnd[1],
5722 as->serial_number);
5723 dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005724 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Robert Elliott4b761552015-04-23 09:33:54 -05005725
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005726 /*
5727 * Command is in flight, or possibly already completed
5728 * by the firmware (but not to the scsi mid layer) but we can't
5729 * distinguish which. Send the abort down.
5730 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005731 if (wait_for_available_abort_cmd(h)) {
5732 dev_warn(&h->pdev->dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005733 "%s FAILED, timeout waiting for an abort command to become available.\n",
5734 msg);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005735 cmd_free(h, abort);
5736 return FAILED;
5737 }
Webb Scales25163bd2015-04-23 09:32:00 -05005738 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005739 atomic_inc(&h->abort_cmds_available);
5740 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005741 if (rc != 0) {
Robert Elliott4b761552015-04-23 09:33:54 -05005742 dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005743 hpsa_show_dev_msg(KERN_WARNING, h, dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005744 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06005745 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005746 return FAILED;
5747 }
Robert Elliott4b761552015-04-23 09:33:54 -05005748 dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg);
Webb Scalesd604f532015-04-23 09:35:22 -05005749 wait_event(h->event_sync_wait_queue,
Webb Scalesa58e7e52015-04-23 09:34:16 -05005750 abort->scsi_cmd != sc || lockup_detected(h));
Webb Scales281a7fd2015-01-23 16:43:35 -06005751 cmd_free(h, abort);
Webb Scalesa58e7e52015-04-23 09:34:16 -05005752 return !lockup_detected(h) ? SUCCESS : FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005753}
5754
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005755/*
Webb Scales73153fe2015-04-23 09:35:04 -05005756 * For operations with an associated SCSI command, a command block is allocated
5757 * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the
5758 * block request tag as an index into a table of entries. cmd_tagged_free() is
5759 * the complement, although cmd_free() may be called instead.
5760 */
5761static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
5762 struct scsi_cmnd *scmd)
5763{
5764 int idx = hpsa_get_cmd_index(scmd);
5765 struct CommandList *c = h->cmd_pool + idx;
5766
5767 if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) {
5768 dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n",
5769 idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1);
5770 /* The index value comes from the block layer, so if it's out of
5771 * bounds, it's probably not our bug.
5772 */
5773 BUG();
5774 }
5775
5776 atomic_inc(&c->refcount);
5777 if (unlikely(!hpsa_is_cmd_idle(c))) {
5778 /*
5779 * We expect that the SCSI layer will hand us a unique tag
5780 * value. Thus, there should never be a collision here between
5781 * two requests...because if the selected command isn't idle
5782 * then someone is going to be very disappointed.
5783 */
5784 dev_err(&h->pdev->dev,
5785 "tag collision (tag=%d) in cmd_tagged_alloc().\n",
5786 idx);
5787 if (c->scsi_cmd != NULL)
5788 scsi_print_command(c->scsi_cmd);
5789 scsi_print_command(scmd);
5790 }
5791
5792 hpsa_cmd_partial_init(h, idx, c);
5793 return c;
5794}
5795
5796static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c)
5797{
5798 /*
5799 * Release our reference to the block. We don't need to do anything
5800 * else to free it, because it is accessed by index. (There's no point
5801 * in checking the result of the decrement, since we cannot guarantee
5802 * that there isn't a concurrent abort which is also accessing it.)
5803 */
5804 (void)atomic_dec(&c->refcount);
5805}
5806
5807/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005808 * For operations that cannot sleep, a command block is allocated at init,
5809 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5810 * which ones are free or in use. Lock must be held when calling this.
5811 * cmd_free() is the complement.
Robert Elliottbf43caf2015-04-23 09:33:38 -05005812 * This function never gives up and returns NULL. If it hangs,
5813 * another thread must call cmd_free() to free some tags.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005814 */
Webb Scales281a7fd2015-01-23 16:43:35 -06005815
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005816static struct CommandList *cmd_alloc(struct ctlr_info *h)
5817{
5818 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005819 int refcount, i;
Webb Scales73153fe2015-04-23 09:35:04 -05005820 int offset = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005821
Robert Elliott33811022015-01-23 16:43:41 -06005822 /*
5823 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005824 * multiple threads could get in here, and one thread could
5825 * be scanning through the list of bits looking for a free
5826 * one, but the free ones are always behind him, and other
5827 * threads sneak in behind him and eat them before he can
5828 * get to them, so that while there is always a free one, a
5829 * very unlucky thread might be starved anyway, never able to
5830 * beat the other threads. In reality, this happens so
5831 * infrequently as to be indistinguishable from never.
Webb Scales73153fe2015-04-23 09:35:04 -05005832 *
5833 * Note that we start allocating commands before the SCSI host structure
5834 * is initialized. Since the search starts at bit zero, this
5835 * all works, since we have at least one command structure available;
5836 * however, it means that the structures with the low indexes have to be
5837 * reserved for driver-initiated requests, while requests from the block
5838 * layer will use the higher indexes.
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005839 */
5840
Webb Scales281a7fd2015-01-23 16:43:35 -06005841 for (;;) {
Webb Scales73153fe2015-04-23 09:35:04 -05005842 i = find_next_zero_bit(h->cmd_pool_bits,
5843 HPSA_NRESERVED_CMDS,
5844 offset);
5845 if (unlikely(i >= HPSA_NRESERVED_CMDS)) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005846 offset = 0;
5847 continue;
5848 }
5849 c = h->cmd_pool + i;
5850 refcount = atomic_inc_return(&c->refcount);
5851 if (unlikely(refcount > 1)) {
5852 cmd_free(h, c); /* already in use */
Webb Scales73153fe2015-04-23 09:35:04 -05005853 offset = (i + 1) % HPSA_NRESERVED_CMDS;
Webb Scales281a7fd2015-01-23 16:43:35 -06005854 continue;
5855 }
5856 set_bit(i & (BITS_PER_LONG - 1),
5857 h->cmd_pool_bits + (i / BITS_PER_LONG));
5858 break; /* it's ours now. */
5859 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05005860 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005861 return c;
5862}
5863
Webb Scales73153fe2015-04-23 09:35:04 -05005864/*
5865 * This is the complementary operation to cmd_alloc(). Note, however, in some
5866 * corner cases it may also be used to free blocks allocated by
5867 * cmd_tagged_alloc() in which case the ref-count decrement does the trick and
5868 * the clear-bit is harmless.
5869 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005870static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5871{
Webb Scales281a7fd2015-01-23 16:43:35 -06005872 if (atomic_dec_and_test(&c->refcount)) {
5873 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005874
Webb Scales281a7fd2015-01-23 16:43:35 -06005875 i = c - h->cmd_pool;
5876 clear_bit(i & (BITS_PER_LONG - 1),
5877 h->cmd_pool_bits + (i / BITS_PER_LONG));
5878 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005879}
5880
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005881#ifdef CONFIG_COMPAT
5882
Don Brace42a91642014-11-14 17:26:27 -06005883static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
5884 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005885{
5886 IOCTL32_Command_struct __user *arg32 =
5887 (IOCTL32_Command_struct __user *) arg;
5888 IOCTL_Command_struct arg64;
5889 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5890 int err;
5891 u32 cp;
5892
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005893 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005894 err = 0;
5895 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5896 sizeof(arg64.LUN_info));
5897 err |= copy_from_user(&arg64.Request, &arg32->Request,
5898 sizeof(arg64.Request));
5899 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5900 sizeof(arg64.error_info));
5901 err |= get_user(arg64.buf_size, &arg32->buf_size);
5902 err |= get_user(cp, &arg32->buf);
5903 arg64.buf = compat_ptr(cp);
5904 err |= copy_to_user(p, &arg64, sizeof(arg64));
5905
5906 if (err)
5907 return -EFAULT;
5908
Don Brace42a91642014-11-14 17:26:27 -06005909 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005910 if (err)
5911 return err;
5912 err |= copy_in_user(&arg32->error_info, &p->error_info,
5913 sizeof(arg32->error_info));
5914 if (err)
5915 return -EFAULT;
5916 return err;
5917}
5918
5919static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06005920 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005921{
5922 BIG_IOCTL32_Command_struct __user *arg32 =
5923 (BIG_IOCTL32_Command_struct __user *) arg;
5924 BIG_IOCTL_Command_struct arg64;
5925 BIG_IOCTL_Command_struct __user *p =
5926 compat_alloc_user_space(sizeof(arg64));
5927 int err;
5928 u32 cp;
5929
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005930 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005931 err = 0;
5932 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5933 sizeof(arg64.LUN_info));
5934 err |= copy_from_user(&arg64.Request, &arg32->Request,
5935 sizeof(arg64.Request));
5936 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5937 sizeof(arg64.error_info));
5938 err |= get_user(arg64.buf_size, &arg32->buf_size);
5939 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5940 err |= get_user(cp, &arg32->buf);
5941 arg64.buf = compat_ptr(cp);
5942 err |= copy_to_user(p, &arg64, sizeof(arg64));
5943
5944 if (err)
5945 return -EFAULT;
5946
Don Brace42a91642014-11-14 17:26:27 -06005947 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005948 if (err)
5949 return err;
5950 err |= copy_in_user(&arg32->error_info, &p->error_info,
5951 sizeof(arg32->error_info));
5952 if (err)
5953 return -EFAULT;
5954 return err;
5955}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005956
Don Brace42a91642014-11-14 17:26:27 -06005957static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005958{
5959 switch (cmd) {
5960 case CCISS_GETPCIINFO:
5961 case CCISS_GETINTINFO:
5962 case CCISS_SETINTINFO:
5963 case CCISS_GETNODENAME:
5964 case CCISS_SETNODENAME:
5965 case CCISS_GETHEARTBEAT:
5966 case CCISS_GETBUSTYPES:
5967 case CCISS_GETFIRMVER:
5968 case CCISS_GETDRIVVER:
5969 case CCISS_REVALIDVOLS:
5970 case CCISS_DEREGDISK:
5971 case CCISS_REGNEWDISK:
5972 case CCISS_REGNEWD:
5973 case CCISS_RESCANDISK:
5974 case CCISS_GETLUNINFO:
5975 return hpsa_ioctl(dev, cmd, arg);
5976
5977 case CCISS_PASSTHRU32:
5978 return hpsa_ioctl32_passthru(dev, cmd, arg);
5979 case CCISS_BIG_PASSTHRU32:
5980 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
5981
5982 default:
5983 return -ENOIOCTLCMD;
5984 }
5985}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005986#endif
5987
5988static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5989{
5990 struct hpsa_pci_info pciinfo;
5991
5992 if (!argp)
5993 return -EINVAL;
5994 pciinfo.domain = pci_domain_nr(h->pdev->bus);
5995 pciinfo.bus = h->pdev->bus->number;
5996 pciinfo.dev_fn = h->pdev->devfn;
5997 pciinfo.board_id = h->board_id;
5998 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5999 return -EFAULT;
6000 return 0;
6001}
6002
6003static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
6004{
6005 DriverVer_type DriverVer;
6006 unsigned char vmaj, vmin, vsubmin;
6007 int rc;
6008
6009 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
6010 &vmaj, &vmin, &vsubmin);
6011 if (rc != 3) {
6012 dev_info(&h->pdev->dev, "driver version string '%s' "
6013 "unrecognized.", HPSA_DRIVER_VERSION);
6014 vmaj = 0;
6015 vmin = 0;
6016 vsubmin = 0;
6017 }
6018 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
6019 if (!argp)
6020 return -EINVAL;
6021 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
6022 return -EFAULT;
6023 return 0;
6024}
6025
6026static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6027{
6028 IOCTL_Command_struct iocommand;
6029 struct CommandList *c;
6030 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006031 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006032 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006033
6034 if (!argp)
6035 return -EINVAL;
6036 if (!capable(CAP_SYS_RAWIO))
6037 return -EPERM;
6038 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
6039 return -EFAULT;
6040 if ((iocommand.buf_size < 1) &&
6041 (iocommand.Request.Type.Direction != XFER_NONE)) {
6042 return -EINVAL;
6043 }
6044 if (iocommand.buf_size > 0) {
6045 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
6046 if (buff == NULL)
Robert Elliott2dd02d72015-04-23 09:33:43 -05006047 return -ENOMEM;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006048 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006049 /* Copy the data into the buffer we created */
6050 if (copy_from_user(buff, iocommand.buf,
6051 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006052 rc = -EFAULT;
6053 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006054 }
6055 } else {
6056 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006057 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006058 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006059 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006060
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006061 /* Fill in the command type */
6062 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006063 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006064 /* Fill in Command Header */
6065 c->Header.ReplyQueue = 0; /* unused in simple mode */
6066 if (iocommand.buf_size > 0) { /* buffer to fill */
6067 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006068 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006069 } else { /* no buffers to fill */
6070 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006071 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006072 }
6073 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006074
6075 /* Fill in Request block */
6076 memcpy(&c->Request, &iocommand.Request,
6077 sizeof(c->Request));
6078
6079 /* Fill in the scatter gather information */
6080 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006081 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006082 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006083 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
6084 c->SG[0].Addr = cpu_to_le64(0);
6085 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006086 rc = -ENOMEM;
6087 goto out;
6088 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006089 c->SG[0].Addr = cpu_to_le64(temp64);
6090 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
6091 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006092 }
Webb Scales25163bd2015-04-23 09:32:00 -05006093 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05006094 if (iocommand.buf_size > 0)
6095 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006096 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006097 if (rc) {
6098 rc = -EIO;
6099 goto out;
6100 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006101
6102 /* Copy the error information out */
6103 memcpy(&iocommand.error_info, c->err_info,
6104 sizeof(iocommand.error_info));
6105 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006106 rc = -EFAULT;
6107 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006108 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006109 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006110 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006111 /* Copy the data out of the buffer we created */
6112 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006113 rc = -EFAULT;
6114 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006115 }
6116 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006117out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006118 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006119out_kfree:
6120 kfree(buff);
6121 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006122}
6123
6124static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6125{
6126 BIG_IOCTL_Command_struct *ioc;
6127 struct CommandList *c;
6128 unsigned char **buff = NULL;
6129 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006130 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006131 BYTE sg_used = 0;
6132 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006133 u32 left;
6134 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006135 BYTE __user *data_ptr;
6136
6137 if (!argp)
6138 return -EINVAL;
6139 if (!capable(CAP_SYS_RAWIO))
6140 return -EPERM;
6141 ioc = (BIG_IOCTL_Command_struct *)
6142 kmalloc(sizeof(*ioc), GFP_KERNEL);
6143 if (!ioc) {
6144 status = -ENOMEM;
6145 goto cleanup1;
6146 }
6147 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
6148 status = -EFAULT;
6149 goto cleanup1;
6150 }
6151 if ((ioc->buf_size < 1) &&
6152 (ioc->Request.Type.Direction != XFER_NONE)) {
6153 status = -EINVAL;
6154 goto cleanup1;
6155 }
6156 /* Check kmalloc limits using all SGs */
6157 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
6158 status = -EINVAL;
6159 goto cleanup1;
6160 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006161 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006162 status = -EINVAL;
6163 goto cleanup1;
6164 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006165 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006166 if (!buff) {
6167 status = -ENOMEM;
6168 goto cleanup1;
6169 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006170 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006171 if (!buff_size) {
6172 status = -ENOMEM;
6173 goto cleanup1;
6174 }
6175 left = ioc->buf_size;
6176 data_ptr = ioc->buf;
6177 while (left) {
6178 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
6179 buff_size[sg_used] = sz;
6180 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
6181 if (buff[sg_used] == NULL) {
6182 status = -ENOMEM;
6183 goto cleanup1;
6184 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006185 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006186 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05006187 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006188 goto cleanup1;
6189 }
6190 } else
6191 memset(buff[sg_used], 0, sz);
6192 left -= sz;
6193 data_ptr += sz;
6194 sg_used++;
6195 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006196 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006197
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006198 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006199 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006200 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006201 c->Header.SGList = (u8) sg_used;
6202 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006203 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006204 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
6205 if (ioc->buf_size > 0) {
6206 int i;
6207 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006208 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006209 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006210 if (dma_mapping_error(&h->pdev->dev,
6211 (dma_addr_t) temp64)) {
6212 c->SG[i].Addr = cpu_to_le64(0);
6213 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006214 hpsa_pci_unmap(h->pdev, c, i,
6215 PCI_DMA_BIDIRECTIONAL);
6216 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006217 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006218 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006219 c->SG[i].Addr = cpu_to_le64(temp64);
6220 c->SG[i].Len = cpu_to_le32(buff_size[i]);
6221 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006222 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006223 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006224 }
Webb Scales25163bd2015-04-23 09:32:00 -05006225 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006226 if (sg_used)
6227 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006228 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006229 if (status) {
6230 status = -EIO;
6231 goto cleanup0;
6232 }
6233
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006234 /* Copy the error information out */
6235 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
6236 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006237 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006238 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006239 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006240 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006241 int i;
6242
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006243 /* Copy the data out of the buffer we created */
6244 BYTE __user *ptr = ioc->buf;
6245 for (i = 0; i < sg_used; i++) {
6246 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006247 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006248 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006249 }
6250 ptr += buff_size[i];
6251 }
6252 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006253 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006254cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006255 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006256cleanup1:
6257 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006258 int i;
6259
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006260 for (i = 0; i < sg_used; i++)
6261 kfree(buff[i]);
6262 kfree(buff);
6263 }
6264 kfree(buff_size);
6265 kfree(ioc);
6266 return status;
6267}
6268
6269static void check_ioctl_unit_attention(struct ctlr_info *h,
6270 struct CommandList *c)
6271{
6272 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
6273 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
6274 (void) check_for_unit_attention(h, c);
6275}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006276
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006277/*
6278 * ioctl
6279 */
Don Brace42a91642014-11-14 17:26:27 -06006280static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006281{
6282 struct ctlr_info *h;
6283 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006284 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006285
6286 h = sdev_to_hba(dev);
6287
6288 switch (cmd) {
6289 case CCISS_DEREGDISK:
6290 case CCISS_REGNEWDISK:
6291 case CCISS_REGNEWD:
Stephen M. Camerona08a84712010-02-04 08:43:16 -06006292 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006293 return 0;
6294 case CCISS_GETPCIINFO:
6295 return hpsa_getpciinfo_ioctl(h, argp);
6296 case CCISS_GETDRIVVER:
6297 return hpsa_getdrivver_ioctl(h, argp);
6298 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006299 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006300 return -EAGAIN;
6301 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006302 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006303 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006304 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006305 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006306 return -EAGAIN;
6307 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006308 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006309 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006310 default:
6311 return -ENOTTY;
6312 }
6313}
6314
Robert Elliottbf43caf2015-04-23 09:33:38 -05006315static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006316 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006317{
6318 struct CommandList *c;
6319
6320 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006321
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006322 /* fill_cmd can't fail here, no data buffer to map */
6323 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006324 RAID_CTLR_LUNID, TYPE_MSG);
6325 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
6326 c->waiting = NULL;
6327 enqueue_cmd_and_start_io(h, c);
6328 /* Don't wait for completion, the reset won't complete. Don't free
6329 * the command either. This is the last command we will send before
6330 * re-initializing everything, so it doesn't matter and won't leak.
6331 */
Robert Elliottbf43caf2015-04-23 09:33:38 -05006332 return;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006333}
6334
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006335static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006336 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006337 int cmd_type)
6338{
6339 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006340 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006341
6342 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006343 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006344 c->Header.ReplyQueue = 0;
6345 if (buff != NULL && size > 0) {
6346 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006347 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006348 } else {
6349 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006350 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006351 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006352 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
6353
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006354 if (cmd_type == TYPE_CMD) {
6355 switch (cmd) {
6356 case HPSA_INQUIRY:
6357 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006358 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006359 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006360 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006361 }
6362 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006363 c->Request.type_attr_dir =
6364 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006365 c->Request.Timeout = 0;
6366 c->Request.CDB[0] = HPSA_INQUIRY;
6367 c->Request.CDB[4] = size & 0xFF;
6368 break;
6369 case HPSA_REPORT_LOG:
6370 case HPSA_REPORT_PHYS:
6371 /* Talking to controller so It's a physical command
6372 mode = 00 target = 0. Nothing to write.
6373 */
6374 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006375 c->Request.type_attr_dir =
6376 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006377 c->Request.Timeout = 0;
6378 c->Request.CDB[0] = cmd;
6379 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6380 c->Request.CDB[7] = (size >> 16) & 0xFF;
6381 c->Request.CDB[8] = (size >> 8) & 0xFF;
6382 c->Request.CDB[9] = size & 0xFF;
6383 break;
Scott Teelc2adae42015-11-04 15:52:16 -06006384 case BMIC_SENSE_DIAG_OPTIONS:
6385 c->Request.CDBLen = 16;
6386 c->Request.type_attr_dir =
6387 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6388 c->Request.Timeout = 0;
6389 /* Spec says this should be BMIC_WRITE */
6390 c->Request.CDB[0] = BMIC_READ;
6391 c->Request.CDB[6] = BMIC_SENSE_DIAG_OPTIONS;
6392 break;
6393 case BMIC_SET_DIAG_OPTIONS:
6394 c->Request.CDBLen = 16;
6395 c->Request.type_attr_dir =
6396 TYPE_ATTR_DIR(cmd_type,
6397 ATTR_SIMPLE, XFER_WRITE);
6398 c->Request.Timeout = 0;
6399 c->Request.CDB[0] = BMIC_WRITE;
6400 c->Request.CDB[6] = BMIC_SET_DIAG_OPTIONS;
6401 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006402 case HPSA_CACHE_FLUSH:
6403 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006404 c->Request.type_attr_dir =
6405 TYPE_ATTR_DIR(cmd_type,
6406 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006407 c->Request.Timeout = 0;
6408 c->Request.CDB[0] = BMIC_WRITE;
6409 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05006410 c->Request.CDB[7] = (size >> 8) & 0xFF;
6411 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006412 break;
6413 case TEST_UNIT_READY:
6414 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006415 c->Request.type_attr_dir =
6416 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006417 c->Request.Timeout = 0;
6418 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006419 case HPSA_GET_RAID_MAP:
6420 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006421 c->Request.type_attr_dir =
6422 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006423 c->Request.Timeout = 0;
6424 c->Request.CDB[0] = HPSA_CISS_READ;
6425 c->Request.CDB[1] = cmd;
6426 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6427 c->Request.CDB[7] = (size >> 16) & 0xFF;
6428 c->Request.CDB[8] = (size >> 8) & 0xFF;
6429 c->Request.CDB[9] = size & 0xFF;
6430 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006431 case BMIC_SENSE_CONTROLLER_PARAMETERS:
6432 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006433 c->Request.type_attr_dir =
6434 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006435 c->Request.Timeout = 0;
6436 c->Request.CDB[0] = BMIC_READ;
6437 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
6438 c->Request.CDB[7] = (size >> 16) & 0xFF;
6439 c->Request.CDB[8] = (size >> 8) & 0xFF;
6440 break;
Don Brace03383732015-01-23 16:43:30 -06006441 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
6442 c->Request.CDBLen = 10;
6443 c->Request.type_attr_dir =
6444 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6445 c->Request.Timeout = 0;
6446 c->Request.CDB[0] = BMIC_READ;
6447 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
6448 c->Request.CDB[7] = (size >> 16) & 0xFF;
6449 c->Request.CDB[8] = (size >> 8) & 0XFF;
6450 break;
Scott Teel66749d02015-11-04 15:51:57 -06006451 case BMIC_IDENTIFY_CONTROLLER:
6452 c->Request.CDBLen = 10;
6453 c->Request.type_attr_dir =
6454 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6455 c->Request.Timeout = 0;
6456 c->Request.CDB[0] = BMIC_READ;
6457 c->Request.CDB[1] = 0;
6458 c->Request.CDB[2] = 0;
6459 c->Request.CDB[3] = 0;
6460 c->Request.CDB[4] = 0;
6461 c->Request.CDB[5] = 0;
6462 c->Request.CDB[6] = BMIC_IDENTIFY_CONTROLLER;
6463 c->Request.CDB[7] = (size >> 16) & 0xFF;
6464 c->Request.CDB[8] = (size >> 8) & 0XFF;
6465 c->Request.CDB[9] = 0;
6466 break;
6467
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006468 default:
6469 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
6470 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006471 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006472 }
6473 } else if (cmd_type == TYPE_MSG) {
6474 switch (cmd) {
6475
Scott Teel0b9b7b62015-11-04 15:51:02 -06006476 case HPSA_PHYS_TARGET_RESET:
6477 c->Request.CDBLen = 16;
6478 c->Request.type_attr_dir =
6479 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
6480 c->Request.Timeout = 0; /* Don't time out */
6481 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6482 c->Request.CDB[0] = HPSA_RESET;
6483 c->Request.CDB[1] = HPSA_TARGET_RESET_TYPE;
6484 /* Physical target reset needs no control bytes 4-7*/
6485 c->Request.CDB[4] = 0x00;
6486 c->Request.CDB[5] = 0x00;
6487 c->Request.CDB[6] = 0x00;
6488 c->Request.CDB[7] = 0x00;
6489 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006490 case HPSA_DEVICE_RESET_MSG:
6491 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006492 c->Request.type_attr_dir =
6493 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006494 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006495 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6496 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05006497 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006498 /* If bytes 4-7 are zero, it means reset the */
6499 /* LunID device */
6500 c->Request.CDB[4] = 0x00;
6501 c->Request.CDB[5] = 0x00;
6502 c->Request.CDB[6] = 0x00;
6503 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006504 break;
6505 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006506 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06006507 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006508 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
6509 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006510 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006511 c->Request.type_attr_dir =
6512 TYPE_ATTR_DIR(cmd_type,
6513 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006514 c->Request.Timeout = 0; /* Don't time out */
6515 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
6516 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
6517 c->Request.CDB[2] = 0x00; /* reserved */
6518 c->Request.CDB[3] = 0x00; /* reserved */
6519 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006520 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006521 c->Request.CDB[12] = 0x00; /* reserved */
6522 c->Request.CDB[13] = 0x00; /* reserved */
6523 c->Request.CDB[14] = 0x00; /* reserved */
6524 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006525 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006526 default:
6527 dev_warn(&h->pdev->dev, "unknown message type %d\n",
6528 cmd);
6529 BUG();
6530 }
6531 } else {
6532 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
6533 BUG();
6534 }
6535
Stephen M. Camerona505b862014-11-14 17:27:04 -06006536 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006537 case XFER_READ:
6538 pci_dir = PCI_DMA_FROMDEVICE;
6539 break;
6540 case XFER_WRITE:
6541 pci_dir = PCI_DMA_TODEVICE;
6542 break;
6543 case XFER_NONE:
6544 pci_dir = PCI_DMA_NONE;
6545 break;
6546 default:
6547 pci_dir = PCI_DMA_BIDIRECTIONAL;
6548 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006549 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
6550 return -1;
6551 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006552}
6553
6554/*
6555 * Map (physical) PCI mem into (virtual) kernel space
6556 */
6557static void __iomem *remap_pci_mem(ulong base, ulong size)
6558{
6559 ulong page_base = ((ulong) base) & PAGE_MASK;
6560 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba34c2012-07-26 11:34:23 -05006561 void __iomem *page_remapped = ioremap_nocache(page_base,
6562 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006563
6564 return page_remapped ? (page_remapped + page_offs) : NULL;
6565}
6566
Matt Gates254f7962012-05-01 11:43:06 -05006567static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006568{
Matt Gates254f7962012-05-01 11:43:06 -05006569 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006570}
6571
Stephen M. Cameron900c5442010-02-04 08:42:35 -06006572static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006573{
6574 return h->access.intr_pending(h);
6575}
6576
6577static inline long interrupt_not_for_us(struct ctlr_info *h)
6578{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006579 return (h->access.intr_pending(h) == 0) ||
6580 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006581}
6582
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006583static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
6584 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006585{
6586 if (unlikely(tag_index >= h->nr_cmds)) {
6587 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
6588 return 1;
6589 }
6590 return 0;
6591}
6592
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05006593static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006594{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006595 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06006596 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
6597 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05006598 complete_scsi_command(c);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006599 else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006600 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06006601}
6602
Don Brace303932f2010-02-04 08:42:40 -06006603/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006604static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06006605 u32 raw_tag)
6606{
6607 u32 tag_index;
6608 struct CommandList *c;
6609
Don Bracef2405db2015-01-23 16:43:09 -06006610 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006611 if (!bad_tag(h, tag_index, raw_tag)) {
6612 c = h->cmd_pool + tag_index;
6613 finish_cmd(c);
6614 }
Don Brace303932f2010-02-04 08:42:40 -06006615}
6616
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006617/* Some controllers, like p400, will give us one interrupt
6618 * after a soft reset, even if we turned interrupts off.
6619 * Only need to check for this in the hpsa_xxx_discard_completions
6620 * functions.
6621 */
6622static int ignore_bogus_interrupt(struct ctlr_info *h)
6623{
6624 if (likely(!reset_devices))
6625 return 0;
6626
6627 if (likely(h->interrupts_enabled))
6628 return 0;
6629
6630 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
6631 "(known firmware bug.) Ignoring.\n");
6632
6633 return 1;
6634}
6635
Matt Gates254f7962012-05-01 11:43:06 -05006636/*
6637 * Convert &h->q[x] (passed to interrupt handlers) back to h.
6638 * Relies on (h-q[x] == x) being true for x such that
6639 * 0 <= x < MAX_REPLY_QUEUES.
6640 */
6641static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006642{
Matt Gates254f7962012-05-01 11:43:06 -05006643 return container_of((queue - *queue), struct ctlr_info, q[0]);
6644}
6645
6646static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
6647{
6648 struct ctlr_info *h = queue_to_hba(queue);
6649 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006650 u32 raw_tag;
6651
6652 if (ignore_bogus_interrupt(h))
6653 return IRQ_NONE;
6654
6655 if (interrupt_not_for_us(h))
6656 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006657 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006658 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006659 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006660 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006661 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006662 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006663 return IRQ_HANDLED;
6664}
6665
Matt Gates254f7962012-05-01 11:43:06 -05006666static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006667{
Matt Gates254f7962012-05-01 11:43:06 -05006668 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006669 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006670 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006671
6672 if (ignore_bogus_interrupt(h))
6673 return IRQ_NONE;
6674
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006675 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006676 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006677 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006678 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006679 return IRQ_HANDLED;
6680}
6681
Matt Gates254f7962012-05-01 11:43:06 -05006682static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006683{
Matt Gates254f7962012-05-01 11:43:06 -05006684 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06006685 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006686 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006687
6688 if (interrupt_not_for_us(h))
6689 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006690 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006691 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006692 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006693 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006694 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006695 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006696 }
6697 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006698 return IRQ_HANDLED;
6699}
6700
Matt Gates254f7962012-05-01 11:43:06 -05006701static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006702{
Matt Gates254f7962012-05-01 11:43:06 -05006703 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006704 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006705 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006706
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006707 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006708 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06006709 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006710 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006711 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006712 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006713 return IRQ_HANDLED;
6714}
6715
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006716/* Send a message CDB to the firmware. Careful, this only works
6717 * in simple mode, not performant mode due to the tag lookup.
6718 * We only ever use this immediately after a controller reset.
6719 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006720static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
6721 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006722{
6723 struct Command {
6724 struct CommandListHeader CommandHeader;
6725 struct RequestBlock Request;
6726 struct ErrDescriptor ErrorDescriptor;
6727 };
6728 struct Command *cmd;
6729 static const size_t cmd_sz = sizeof(*cmd) +
6730 sizeof(cmd->ErrorDescriptor);
6731 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06006732 __le32 paddr32;
6733 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006734 void __iomem *vaddr;
6735 int i, err;
6736
6737 vaddr = pci_ioremap_bar(pdev, 0);
6738 if (vaddr == NULL)
6739 return -ENOMEM;
6740
6741 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
6742 * CCISS commands, so they must be allocated from the lower 4GiB of
6743 * memory.
6744 */
6745 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6746 if (err) {
6747 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06006748 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006749 }
6750
6751 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
6752 if (cmd == NULL) {
6753 iounmap(vaddr);
6754 return -ENOMEM;
6755 }
6756
6757 /* This must fit, because of the 32-bit consistent DMA mask. Also,
6758 * although there's no guarantee, we assume that the address is at
6759 * least 4-byte aligned (most likely, it's page-aligned).
6760 */
Don Brace2b08b3e2015-01-23 16:41:09 -06006761 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006762
6763 cmd->CommandHeader.ReplyQueue = 0;
6764 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006765 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06006766 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006767 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
6768
6769 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006770 cmd->Request.type_attr_dir =
6771 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006772 cmd->Request.Timeout = 0; /* Don't time out */
6773 cmd->Request.CDB[0] = opcode;
6774 cmd->Request.CDB[1] = type;
6775 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006776 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06006777 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006778 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006779
Don Brace2b08b3e2015-01-23 16:41:09 -06006780 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006781
6782 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
6783 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06006784 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006785 break;
6786 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
6787 }
6788
6789 iounmap(vaddr);
6790
6791 /* we leak the DMA buffer here ... no choice since the controller could
6792 * still complete the command.
6793 */
6794 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
6795 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
6796 opcode, type);
6797 return -ETIMEDOUT;
6798 }
6799
6800 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
6801
6802 if (tag & HPSA_ERROR_BIT) {
6803 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
6804 opcode, type);
6805 return -EIO;
6806 }
6807
6808 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
6809 opcode, type);
6810 return 0;
6811}
6812
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006813#define hpsa_noop(p) hpsa_message(p, 3, 0)
6814
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006815static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06006816 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006817{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006818
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006819 if (use_doorbell) {
6820 /* For everything after the P600, the PCI power state method
6821 * of resetting the controller doesn't work, so we have this
6822 * other way using the doorbell register.
6823 */
6824 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006825 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05006826
Justin Lindley00701a92014-05-29 10:52:47 -05006827 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05006828 * doorbell reset and before any attempt to talk to the board
6829 * at all to ensure that this actually works and doesn't fall
6830 * over in some weird corner cases.
6831 */
Justin Lindley00701a92014-05-29 10:52:47 -05006832 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006833 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006834
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006835 /* Quoting from the Open CISS Specification: "The Power
6836 * Management Control/Status Register (CSR) controls the power
6837 * state of the device. The normal operating state is D0,
6838 * CSR=00h. The software off state is D3, CSR=03h. To reset
6839 * the controller, place the interface device in D3 then to D0,
6840 * this causes a secondary PCI reset which will reset the
6841 * controller." */
6842
Don Brace2662cab2015-01-23 16:41:25 -06006843 int rc = 0;
6844
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006845 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06006846
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006847 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006848 rc = pci_set_power_state(pdev, PCI_D3hot);
6849 if (rc)
6850 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006851
6852 msleep(500);
6853
6854 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006855 rc = pci_set_power_state(pdev, PCI_D0);
6856 if (rc)
6857 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02006858
6859 /*
6860 * The P600 requires a small delay when changing states.
6861 * Otherwise we may think the board did not reset and we bail.
6862 * This for kdump only and is particular to the P600.
6863 */
6864 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006865 }
6866 return 0;
6867}
6868
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006869static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006870{
6871 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006872 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006873}
6874
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006875static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006876{
6877 char *driver_version;
6878 int i, size = sizeof(cfgtable->driver_version);
6879
6880 driver_version = kmalloc(size, GFP_KERNEL);
6881 if (!driver_version)
6882 return -ENOMEM;
6883
6884 init_driver_version(driver_version, size);
6885 for (i = 0; i < size; i++)
6886 writeb(driver_version[i], &cfgtable->driver_version[i]);
6887 kfree(driver_version);
6888 return 0;
6889}
6890
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006891static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
6892 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006893{
6894 int i;
6895
6896 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6897 driver_ver[i] = readb(&cfgtable->driver_version[i]);
6898}
6899
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006900static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006901{
6902
6903 char *driver_ver, *old_driver_ver;
6904 int rc, size = sizeof(cfgtable->driver_version);
6905
6906 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6907 if (!old_driver_ver)
6908 return -ENOMEM;
6909 driver_ver = old_driver_ver + size;
6910
6911 /* After a reset, the 32 bytes of "driver version" in the cfgtable
6912 * should have been changed, otherwise we know the reset failed.
6913 */
6914 init_driver_version(old_driver_ver, size);
6915 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6916 rc = !memcmp(driver_ver, old_driver_ver, size);
6917 kfree(old_driver_ver);
6918 return rc;
6919}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006920/* This does a hard reset of the controller using PCI power management
6921 * states or the using the doorbell register.
6922 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006923static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006924{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006925 u64 cfg_offset;
6926 u32 cfg_base_addr;
6927 u64 cfg_base_addr_index;
6928 void __iomem *vaddr;
6929 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006930 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006931 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006932 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006933 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006934 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006935
6936 /* For controllers as old as the P600, this is very nearly
6937 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006938 *
6939 * pci_save_state(pci_dev);
6940 * pci_set_power_state(pci_dev, PCI_D3hot);
6941 * pci_set_power_state(pci_dev, PCI_D0);
6942 * pci_restore_state(pci_dev);
6943 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006944 * For controllers newer than the P600, the pci power state
6945 * method of resetting doesn't work so we have another way
6946 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006947 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006948
Robert Elliott60f923b2015-01-23 16:42:06 -06006949 if (!ctlr_is_resettable(board_id)) {
6950 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06006951 return -ENODEV;
6952 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05006953
6954 /* if controller is soft- but not hard resettable... */
6955 if (!ctlr_is_hard_resettable(board_id))
6956 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006957
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006958 /* Save the PCI command register */
6959 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006960 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006961
6962 /* find the first memory BAR, so we can find the cfg table */
6963 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
6964 if (rc)
6965 return rc;
6966 vaddr = remap_pci_mem(paddr, 0x250);
6967 if (!vaddr)
6968 return -ENOMEM;
6969
6970 /* find cfgtable in order to check if reset via doorbell is supported */
6971 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
6972 &cfg_base_addr_index, &cfg_offset);
6973 if (rc)
6974 goto unmap_vaddr;
6975 cfgtable = remap_pci_mem(pci_resource_start(pdev,
6976 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
6977 if (!cfgtable) {
6978 rc = -ENOMEM;
6979 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006980 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006981 rc = write_driver_ver_to_cfgtable(cfgtable);
6982 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06006983 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006984
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006985 /* If reset via doorbell register is supported, use that.
6986 * There are two such methods. Favor the newest method.
6987 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006988 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006989 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6990 if (use_doorbell) {
6991 use_doorbell = DOORBELL_CTLR_RESET2;
6992 } else {
6993 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6994 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006995 dev_warn(&pdev->dev,
6996 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006997 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006998 goto unmap_cfgtable;
6999 }
7000 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007001
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007002 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
7003 if (rc)
7004 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007005
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007006 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06007007 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007008
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007009 /* Some devices (notably the HP Smart Array 5i Controller)
7010 need a little pause here */
7011 msleep(HPSA_POST_RESET_PAUSE_MSECS);
7012
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007013 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
7014 if (rc) {
7015 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06007016 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007017 goto unmap_cfgtable;
7018 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007019
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007020 rc = controller_reset_failed(vaddr);
7021 if (rc < 0)
7022 goto unmap_cfgtable;
7023 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007024 dev_warn(&pdev->dev, "Unable to successfully reset "
7025 "controller. Will try soft reset.\n");
7026 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007027 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007028 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007029 }
7030
7031unmap_cfgtable:
7032 iounmap(cfgtable);
7033
7034unmap_vaddr:
7035 iounmap(vaddr);
7036 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007037}
7038
7039/*
7040 * We cannot read the structure directly, for portability we must use
7041 * the io functions.
7042 * This is for debug only.
7043 */
Don Brace42a91642014-11-14 17:26:27 -06007044static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007045{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05007046#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007047 int i;
7048 char temp_name[17];
7049
7050 dev_info(dev, "Controller Configuration information\n");
7051 dev_info(dev, "------------------------------------\n");
7052 for (i = 0; i < 4; i++)
7053 temp_name[i] = readb(&(tb->Signature[i]));
7054 temp_name[4] = '\0';
7055 dev_info(dev, " Signature = %s\n", temp_name);
7056 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
7057 dev_info(dev, " Transport methods supported = 0x%x\n",
7058 readl(&(tb->TransportSupport)));
7059 dev_info(dev, " Transport methods active = 0x%x\n",
7060 readl(&(tb->TransportActive)));
7061 dev_info(dev, " Requested transport Method = 0x%x\n",
7062 readl(&(tb->HostWrite.TransportRequest)));
7063 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
7064 readl(&(tb->HostWrite.CoalIntDelay)));
7065 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
7066 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06007067 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007068 readl(&(tb->CmdsOutMax)));
7069 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
7070 for (i = 0; i < 16; i++)
7071 temp_name[i] = readb(&(tb->ServerName[i]));
7072 temp_name[16] = '\0';
7073 dev_info(dev, " Server Name = %s\n", temp_name);
7074 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
7075 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007076#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05007077}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007078
7079static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
7080{
7081 int i, offset, mem_type, bar_type;
7082
7083 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
7084 return 0;
7085 offset = 0;
7086 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
7087 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
7088 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
7089 offset += 4;
7090 else {
7091 mem_type = pci_resource_flags(pdev, i) &
7092 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
7093 switch (mem_type) {
7094 case PCI_BASE_ADDRESS_MEM_TYPE_32:
7095 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
7096 offset += 4; /* 32 bit */
7097 break;
7098 case PCI_BASE_ADDRESS_MEM_TYPE_64:
7099 offset += 8;
7100 break;
7101 default: /* reserved in PCI 2.2 */
7102 dev_warn(&pdev->dev,
7103 "base address is invalid\n");
7104 return -1;
7105 break;
7106 }
7107 }
7108 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
7109 return i + 1;
7110 }
7111 return -1;
7112}
7113
Robert Elliottcc64c812015-04-23 09:33:12 -05007114static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
7115{
7116 if (h->msix_vector) {
7117 if (h->pdev->msix_enabled)
7118 pci_disable_msix(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007119 h->msix_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007120 } else if (h->msi_vector) {
7121 if (h->pdev->msi_enabled)
7122 pci_disable_msi(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007123 h->msi_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007124 }
7125}
7126
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007127/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06007128 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007129 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007130static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007131{
7132#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05007133 int err, i;
7134 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
7135
7136 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
7137 hpsa_msix_entries[i].vector = 0;
7138 hpsa_msix_entries[i].entry = i;
7139 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007140
7141 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007142 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
7143 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007144 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007145 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007146 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007147 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05007148 if (h->msix_vector > num_online_cpus())
7149 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007150 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
7151 1, h->msix_vector);
7152 if (err < 0) {
7153 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
7154 h->msix_vector = 0;
7155 goto single_msi_mode;
7156 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007157 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007158 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007159 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007160 h->msix_vector = err;
7161 for (i = 0; i < h->msix_vector; i++)
7162 h->intr[i] = hpsa_msix_entries[i].vector;
7163 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007164 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007165single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007166 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007167 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007168 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007169 h->msi_vector = 1;
7170 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007171 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007172 }
7173default_int_mode:
7174#endif /* CONFIG_PCI_MSI */
7175 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007176 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007177}
7178
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007179static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007180{
7181 int i;
7182 u32 subsystem_vendor_id, subsystem_device_id;
7183
7184 subsystem_vendor_id = pdev->subsystem_vendor;
7185 subsystem_device_id = pdev->subsystem_device;
7186 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
7187 subsystem_vendor_id;
7188
7189 for (i = 0; i < ARRAY_SIZE(products); i++)
7190 if (*board_id == products[i].board_id)
7191 return i;
7192
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05007193 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
7194 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
7195 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007196 dev_warn(&pdev->dev, "unrecognized board ID: "
7197 "0x%08x, ignoring.\n", *board_id);
7198 return -ENODEV;
7199 }
7200 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
7201}
7202
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007203static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
7204 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007205{
7206 int i;
7207
7208 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007209 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007210 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007211 *memory_bar = pci_resource_start(pdev, i);
7212 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007213 *memory_bar);
7214 return 0;
7215 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007216 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007217 return -ENODEV;
7218}
7219
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007220static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
7221 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007222{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007223 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007224 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007225 if (wait_for_ready)
7226 iterations = HPSA_BOARD_READY_ITERATIONS;
7227 else
7228 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007229
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007230 for (i = 0; i < iterations; i++) {
7231 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
7232 if (wait_for_ready) {
7233 if (scratchpad == HPSA_FIRMWARE_READY)
7234 return 0;
7235 } else {
7236 if (scratchpad != HPSA_FIRMWARE_READY)
7237 return 0;
7238 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007239 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
7240 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007241 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007242 return -ENODEV;
7243}
7244
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007245static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
7246 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
7247 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007248{
7249 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
7250 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
7251 *cfg_base_addr &= (u32) 0x0000ffff;
7252 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
7253 if (*cfg_base_addr_index == -1) {
7254 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
7255 return -ENODEV;
7256 }
7257 return 0;
7258}
7259
Robert Elliott195f2c62015-04-23 09:33:17 -05007260static void hpsa_free_cfgtables(struct ctlr_info *h)
7261{
Robert Elliott105a3db2015-04-23 09:33:48 -05007262 if (h->transtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007263 iounmap(h->transtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007264 h->transtable = NULL;
7265 }
7266 if (h->cfgtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007267 iounmap(h->cfgtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007268 h->cfgtable = NULL;
7269 }
Robert Elliott195f2c62015-04-23 09:33:17 -05007270}
7271
7272/* Find and map CISS config table and transfer table
7273+ * several items must be unmapped (freed) later
7274+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007275static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007276{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06007277 u64 cfg_offset;
7278 u32 cfg_base_addr;
7279 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06007280 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007281 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007282
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007283 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7284 &cfg_base_addr_index, &cfg_offset);
7285 if (rc)
7286 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007287 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007288 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007289 if (!h->cfgtable) {
7290 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007291 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007292 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007293 rc = write_driver_ver_to_cfgtable(h->cfgtable);
7294 if (rc)
7295 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007296 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007297 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007298 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
7299 cfg_base_addr_index)+cfg_offset+trans_offset,
7300 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05007301 if (!h->transtable) {
7302 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
7303 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007304 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007305 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007306 return 0;
7307}
7308
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007309static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007310{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007311#define MIN_MAX_COMMANDS 16
7312 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
7313
7314 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06007315
7316 /* Limit commands in memory limited kdump scenario. */
7317 if (reset_devices && h->max_commands > 32)
7318 h->max_commands = 32;
7319
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007320 if (h->max_commands < MIN_MAX_COMMANDS) {
7321 dev_warn(&h->pdev->dev,
7322 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
7323 h->max_commands,
7324 MIN_MAX_COMMANDS);
7325 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007326 }
7327}
7328
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007329/* If the controller reports that the total max sg entries is greater than 512,
7330 * then we know that chained SG blocks work. (Original smart arrays did not
7331 * support chained SG blocks and would return zero for max sg entries.)
7332 */
7333static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
7334{
7335 return h->maxsgentries > 512;
7336}
7337
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007338/* Interrogate the hardware for some limits:
7339 * max commands, max SG elements without chaining, and with chaining,
7340 * SG chain block size, etc.
7341 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007342static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007343{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007344 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06007345 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007346 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007347 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007348 if (hpsa_supports_chained_sg_blocks(h)) {
7349 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007350 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06007351 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007352 h->maxsgentries--; /* save one for chain pointer */
7353 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007354 /*
7355 * Original smart arrays supported at most 31 s/g entries
7356 * embedded inline in the command (trying to use more
7357 * would lock up the controller)
7358 */
7359 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06007360 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007361 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007362 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007363
7364 /* Find out what task management functions are supported and cache */
7365 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06007366 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
7367 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
7368 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
7369 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen Cameron8be986c2015-04-23 09:34:06 -05007370 if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
7371 dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007372}
7373
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007374static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
7375{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09007376 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007377 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007378 return false;
7379 }
7380 return true;
7381}
7382
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007383static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007384{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007385 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007386
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007387 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02007388 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
7389#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007390 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007391#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06007392 driver_support |= ENABLE_UNIT_ATTN;
7393 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007394}
7395
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007396/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
7397 * in a prefetch beyond physical memory.
7398 */
7399static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
7400{
7401 u32 dma_prefetch;
7402
7403 if (h->board_id != 0x3225103C)
7404 return;
7405 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
7406 dma_prefetch |= 0x8000;
7407 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
7408}
7409
Robert Elliottc706a792015-01-23 16:45:01 -06007410static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007411{
7412 int i;
7413 u32 doorbell_value;
7414 unsigned long flags;
7415 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007416 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007417 spin_lock_irqsave(&h->lock, flags);
7418 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7419 spin_unlock_irqrestore(&h->lock, flags);
7420 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06007421 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007422 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007423 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007424 }
Robert Elliottc706a792015-01-23 16:45:01 -06007425 return -ENODEV;
7426done:
7427 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007428}
7429
Robert Elliottc706a792015-01-23 16:45:01 -06007430static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007431{
7432 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007433 u32 doorbell_value;
7434 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007435
7436 /* under certain very rare conditions, this can take awhile.
7437 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
7438 * as we enter this code.)
7439 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007440 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05007441 if (h->remove_in_progress)
7442 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007443 spin_lock_irqsave(&h->lock, flags);
7444 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7445 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06007446 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06007447 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007448 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007449 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007450 }
Robert Elliottc706a792015-01-23 16:45:01 -06007451 return -ENODEV;
7452done:
7453 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007454}
7455
Robert Elliottc706a792015-01-23 16:45:01 -06007456/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007457static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007458{
7459 u32 trans_support;
7460
7461 trans_support = readl(&(h->cfgtable->TransportSupport));
7462 if (!(trans_support & SIMPLE_MODE))
7463 return -ENOTSUPP;
7464
7465 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007466
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007467 /* Update the field, and then ring the doorbell */
7468 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007469 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007470 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007471 if (hpsa_wait_for_mode_change_ack(h))
7472 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007473 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007474 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
7475 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007476 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007477 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007478error:
Stephen Cameron050f7142015-01-23 16:42:22 -06007479 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007480 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007481}
7482
Robert Elliott195f2c62015-04-23 09:33:17 -05007483/* free items allocated or mapped by hpsa_pci_init */
7484static void hpsa_free_pci_init(struct ctlr_info *h)
7485{
7486 hpsa_free_cfgtables(h); /* pci_init 4 */
7487 iounmap(h->vaddr); /* pci_init 3 */
Robert Elliott105a3db2015-04-23 09:33:48 -05007488 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007489 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Robert Elliott943a7022015-04-23 09:34:32 -05007490 /*
7491 * call pci_disable_device before pci_release_regions per
7492 * Documentation/PCI/pci.txt
7493 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007494 pci_disable_device(h->pdev); /* pci_init 1 */
Robert Elliott943a7022015-04-23 09:34:32 -05007495 pci_release_regions(h->pdev); /* pci_init 2 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007496}
7497
7498/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007499static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007500{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007501 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007502
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007503 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
7504 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06007505 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007506 h->product_name = products[prod_index].product_name;
7507 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007508
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007509 h->needs_abort_tags_swizzled =
7510 ctlr_needs_abort_tags_swizzled(h->board_id);
7511
Matthew Garrette5a44df2011-11-11 11:14:23 -05007512 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
7513 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
7514
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007515 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007516 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007517 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007518 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007519 return err;
7520 }
7521
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007522 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007523 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007524 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05007525 "failed to obtain PCI resources\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007526 pci_disable_device(h->pdev);
7527 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007528 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007529
7530 pci_set_master(h->pdev);
7531
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007532 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007533 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007534 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007535 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007536 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007537 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007538 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007539 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007540 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007541 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007542 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007543 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007544 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007545 err = hpsa_find_cfgtables(h);
7546 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007547 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007548 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007549
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007550 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007551 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05007552 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007553 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007554 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007555 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007556 err = hpsa_enter_simple_mode(h);
7557 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007558 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007559 return 0;
7560
Robert Elliott195f2c62015-04-23 09:33:17 -05007561clean4: /* cfgtables, vaddr, intmode+region, pci */
7562 hpsa_free_cfgtables(h);
7563clean3: /* vaddr, intmode+region, pci */
7564 iounmap(h->vaddr);
Robert Elliott105a3db2015-04-23 09:33:48 -05007565 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007566clean2: /* intmode+region, pci */
7567 hpsa_disable_interrupt_mode(h);
Robert Elliott943a7022015-04-23 09:34:32 -05007568 /*
7569 * call pci_disable_device before pci_release_regions per
7570 * Documentation/PCI/pci.txt
7571 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007572 pci_disable_device(h->pdev);
Robert Elliott943a7022015-04-23 09:34:32 -05007573 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007574 return err;
7575}
7576
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007577static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007578{
7579 int rc;
7580
7581#define HBA_INQUIRY_BYTE_COUNT 64
7582 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
7583 if (!h->hba_inquiry_data)
7584 return;
7585 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
7586 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
7587 if (rc != 0) {
7588 kfree(h->hba_inquiry_data);
7589 h->hba_inquiry_data = NULL;
7590 }
7591}
7592
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007593static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007594{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007595 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06007596 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007597
7598 if (!reset_devices)
7599 return 0;
7600
Tomas Henzl132aa222014-08-14 16:12:39 +02007601 /* kdump kernel is loading, we don't know in which state is
7602 * the pci interface. The dev->enable_cnt is equal zero
7603 * so we call enable+disable, wait a while and switch it on.
7604 */
7605 rc = pci_enable_device(pdev);
7606 if (rc) {
7607 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
7608 return -ENODEV;
7609 }
7610 pci_disable_device(pdev);
7611 msleep(260); /* a randomly chosen number */
7612 rc = pci_enable_device(pdev);
7613 if (rc) {
7614 dev_warn(&pdev->dev, "failed to enable device.\n");
7615 return -ENODEV;
7616 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007617
Tomas Henzl859c75a2014-09-12 14:44:15 +02007618 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06007619
Tomas Henzl3b747292015-01-23 16:41:20 -06007620 vaddr = pci_ioremap_bar(pdev, 0);
7621 if (vaddr == NULL) {
7622 rc = -ENOMEM;
7623 goto out_disable;
7624 }
7625 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
7626 iounmap(vaddr);
7627
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007628 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007629 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007630
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007631 /* -ENOTSUPP here means we cannot reset the controller
7632 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05007633 * "performant mode". Or, it might be 640x, which can't reset
7634 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007635 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06007636 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02007637 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007638
7639 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06007640 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007641 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
7642 if (hpsa_noop(pdev) == 0)
7643 break;
7644 else
7645 dev_warn(&pdev->dev, "no-op failed%s\n",
7646 (i < 11 ? "; re-trying" : ""));
7647 }
Tomas Henzl132aa222014-08-14 16:12:39 +02007648
7649out_disable:
7650
7651 pci_disable_device(pdev);
7652 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007653}
7654
Robert Elliott1fb7c982015-04-23 09:33:22 -05007655static void hpsa_free_cmd_pool(struct ctlr_info *h)
7656{
7657 kfree(h->cmd_pool_bits);
Robert Elliott105a3db2015-04-23 09:33:48 -05007658 h->cmd_pool_bits = NULL;
7659 if (h->cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007660 pci_free_consistent(h->pdev,
7661 h->nr_cmds * sizeof(struct CommandList),
7662 h->cmd_pool,
7663 h->cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007664 h->cmd_pool = NULL;
7665 h->cmd_pool_dhandle = 0;
7666 }
7667 if (h->errinfo_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007668 pci_free_consistent(h->pdev,
7669 h->nr_cmds * sizeof(struct ErrorInfo),
7670 h->errinfo_pool,
7671 h->errinfo_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007672 h->errinfo_pool = NULL;
7673 h->errinfo_pool_dhandle = 0;
7674 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05007675}
7676
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007677static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007678{
7679 h->cmd_pool_bits = kzalloc(
7680 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
7681 sizeof(unsigned long), GFP_KERNEL);
7682 h->cmd_pool = pci_alloc_consistent(h->pdev,
7683 h->nr_cmds * sizeof(*h->cmd_pool),
7684 &(h->cmd_pool_dhandle));
7685 h->errinfo_pool = pci_alloc_consistent(h->pdev,
7686 h->nr_cmds * sizeof(*h->errinfo_pool),
7687 &(h->errinfo_pool_dhandle));
7688 if ((h->cmd_pool_bits == NULL)
7689 || (h->cmd_pool == NULL)
7690 || (h->errinfo_pool == NULL)) {
7691 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06007692 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007693 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05007694 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007695 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06007696clean_up:
7697 hpsa_free_cmd_pool(h);
7698 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007699}
7700
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007701static void hpsa_irq_affinity_hints(struct ctlr_info *h)
7702{
Fabian Frederickec429952015-01-23 16:41:46 -06007703 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007704
7705 cpu = cpumask_first(cpu_online_mask);
7706 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06007707 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007708 cpu = cpumask_next(cpu, cpu_online_mask);
7709 }
7710}
7711
Robert Elliottec501a12015-01-23 16:41:40 -06007712/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
7713static void hpsa_free_irqs(struct ctlr_info *h)
7714{
7715 int i;
7716
7717 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
7718 /* Single reply queue, only one irq to free */
7719 i = h->intr_mode;
7720 irq_set_affinity_hint(h->intr[i], NULL);
7721 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007722 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007723 return;
7724 }
7725
7726 for (i = 0; i < h->msix_vector; i++) {
7727 irq_set_affinity_hint(h->intr[i], NULL);
7728 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007729 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007730 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007731 for (; i < MAX_REPLY_QUEUES; i++)
7732 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007733}
7734
Robert Elliott9ee61792015-01-23 16:42:32 -06007735/* returns 0 on success; cleans up and returns -Enn on error */
7736static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007737 irqreturn_t (*msixhandler)(int, void *),
7738 irqreturn_t (*intxhandler)(int, void *))
7739{
Matt Gates254f7962012-05-01 11:43:06 -05007740 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007741
Matt Gates254f7962012-05-01 11:43:06 -05007742 /*
7743 * initialize h->q[x] = x so that interrupt handlers know which
7744 * queue to process.
7745 */
7746 for (i = 0; i < MAX_REPLY_QUEUES; i++)
7747 h->q[i] = (u8) i;
7748
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007749 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05007750 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007751 for (i = 0; i < h->msix_vector; i++) {
Robert Elliott8b470042015-04-23 09:34:58 -05007752 sprintf(h->intrname[i], "%s-msix%d", h->devname, i);
Matt Gates254f7962012-05-01 11:43:06 -05007753 rc = request_irq(h->intr[i], msixhandler,
Robert Elliott8b470042015-04-23 09:34:58 -05007754 0, h->intrname[i],
Matt Gates254f7962012-05-01 11:43:06 -05007755 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007756 if (rc) {
7757 int j;
7758
7759 dev_err(&h->pdev->dev,
7760 "failed to get irq %d for %s\n",
7761 h->intr[i], h->devname);
7762 for (j = 0; j < i; j++) {
7763 free_irq(h->intr[j], &h->q[j]);
7764 h->q[j] = 0;
7765 }
7766 for (; j < MAX_REPLY_QUEUES; j++)
7767 h->q[j] = 0;
7768 return rc;
7769 }
7770 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007771 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05007772 } else {
7773 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007774 if (h->msix_vector > 0 || h->msi_vector) {
Robert Elliott8b470042015-04-23 09:34:58 -05007775 if (h->msix_vector)
7776 sprintf(h->intrname[h->intr_mode],
7777 "%s-msix", h->devname);
7778 else
7779 sprintf(h->intrname[h->intr_mode],
7780 "%s-msi", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05007781 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05007782 msixhandler, 0,
7783 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05007784 &h->q[h->intr_mode]);
7785 } else {
Robert Elliott8b470042015-04-23 09:34:58 -05007786 sprintf(h->intrname[h->intr_mode],
7787 "%s-intx", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05007788 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05007789 intxhandler, IRQF_SHARED,
7790 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05007791 &h->q[h->intr_mode]);
7792 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007793 irq_set_affinity_hint(h->intr[h->intr_mode], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05007794 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007795 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007796 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007797 h->intr[h->intr_mode], h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05007798 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007799 return -ENODEV;
7800 }
7801 return 0;
7802}
7803
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007804static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007805{
Robert Elliott39c53f52015-04-23 09:35:14 -05007806 int rc;
Robert Elliottbf43caf2015-04-23 09:33:38 -05007807 hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007808
7809 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007810 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY);
7811 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007812 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007813 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007814 }
7815
7816 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007817 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
7818 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007819 dev_warn(&h->pdev->dev, "Board failed to become ready "
7820 "after soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007821 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007822 }
7823
7824 return 0;
7825}
7826
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007827static void hpsa_free_reply_queues(struct ctlr_info *h)
7828{
7829 int i;
7830
7831 for (i = 0; i < h->nreply_queues; i++) {
7832 if (!h->reply_queue[i].head)
7833 continue;
Robert Elliott1fb7c982015-04-23 09:33:22 -05007834 pci_free_consistent(h->pdev,
7835 h->reply_queue_size,
7836 h->reply_queue[i].head,
7837 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007838 h->reply_queue[i].head = NULL;
7839 h->reply_queue[i].busaddr = 0;
7840 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007841 h->reply_queue_size = 0;
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007842}
7843
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007844static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
7845{
Robert Elliott105a3db2015-04-23 09:33:48 -05007846 hpsa_free_performant_mode(h); /* init_one 7 */
7847 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
7848 hpsa_free_cmd_pool(h); /* init_one 5 */
7849 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliott2946e822015-04-23 09:35:09 -05007850 scsi_host_put(h->scsi_host); /* init_one 3 */
7851 h->scsi_host = NULL; /* init_one 3 */
7852 hpsa_free_pci_init(h); /* init_one 2_5 */
Robert Elliott9ecd9532015-04-23 09:34:43 -05007853 free_percpu(h->lockup_detected); /* init_one 2 */
7854 h->lockup_detected = NULL; /* init_one 2 */
7855 if (h->resubmit_wq) {
7856 destroy_workqueue(h->resubmit_wq); /* init_one 1 */
7857 h->resubmit_wq = NULL;
7858 }
7859 if (h->rescan_ctlr_wq) {
7860 destroy_workqueue(h->rescan_ctlr_wq);
7861 h->rescan_ctlr_wq = NULL;
7862 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007863 kfree(h); /* init_one 1 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007864}
7865
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007866/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06007867static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007868{
Webb Scales281a7fd2015-01-23 16:43:35 -06007869 int i, refcount;
7870 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007871 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007872
Don Brace080ef1c2015-01-23 16:43:25 -06007873 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06007874 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007875 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007876 refcount = atomic_inc_return(&c->refcount);
7877 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05007878 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06007879 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05007880 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05007881 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06007882 }
7883 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007884 }
Webb Scales25163bd2015-04-23 09:32:00 -05007885 dev_warn(&h->pdev->dev,
7886 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007887}
7888
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007889static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
7890{
Rusty Russellc8ed0012015-03-05 10:49:19 +10307891 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007892
Rusty Russellc8ed0012015-03-05 10:49:19 +10307893 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007894 u32 *lockup_detected;
7895 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7896 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007897 }
7898 wmb(); /* be sure the per-cpu variables are out to memory */
7899}
7900
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007901static void controller_lockup_detected(struct ctlr_info *h)
7902{
7903 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007904 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007905
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007906 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7907 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007908 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7909 if (!lockup_detected) {
7910 /* no heartbeat, but controller gave us a zero. */
7911 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05007912 "lockup detected after %d but scratchpad register is zero\n",
7913 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007914 lockup_detected = 0xffffffff;
7915 }
7916 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007917 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05007918 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
7919 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007920 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06007921 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007922}
7923
Webb Scales25163bd2015-04-23 09:32:00 -05007924static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007925{
7926 u64 now;
7927 u32 heartbeat;
7928 unsigned long flags;
7929
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007930 now = get_jiffies_64();
7931 /* If we've received an interrupt recently, we're ok. */
7932 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007933 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007934 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007935
7936 /*
7937 * If we've already checked the heartbeat recently, we're ok.
7938 * This could happen if someone sends us a signal. We
7939 * otherwise don't care about signals in this thread.
7940 */
7941 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007942 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007943 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007944
7945 /* If heartbeat has not changed since we last looked, we're not ok. */
7946 spin_lock_irqsave(&h->lock, flags);
7947 heartbeat = readl(&h->cfgtable->HeartBeat);
7948 spin_unlock_irqrestore(&h->lock, flags);
7949 if (h->last_heartbeat == heartbeat) {
7950 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05007951 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007952 }
7953
7954 /* We're ok. */
7955 h->last_heartbeat = heartbeat;
7956 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05007957 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007958}
7959
Stephen M. Cameron98465902014-02-21 16:25:00 -06007960static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007961{
7962 int i;
7963 char *event_type;
7964
Stephen Camerone4aa3e62015-01-23 16:44:07 -06007965 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7966 return;
7967
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007968 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06007969 if ((h->transMethod & (CFGTBL_Trans_io_accel1
7970 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007971 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
7972 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
7973
7974 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
7975 event_type = "state change";
7976 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
7977 event_type = "configuration change";
7978 /* Stop sending new RAID offload reqs via the IO accelerator */
7979 scsi_block_requests(h->scsi_host);
7980 for (i = 0; i < h->ndevices; i++)
7981 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007982 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007983 /* Set 'accelerator path config change' bit */
7984 dev_warn(&h->pdev->dev,
7985 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
7986 h->events, event_type);
7987 writel(h->events, &(h->cfgtable->clear_event_notify));
7988 /* Set the "clear event notify field update" bit 6 */
7989 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7990 /* Wait until ctlr clears 'clear event notify field', bit 6 */
7991 hpsa_wait_for_clear_event_notify_ack(h);
7992 scsi_unblock_requests(h->scsi_host);
7993 } else {
7994 /* Acknowledge controller notification events. */
7995 writel(h->events, &(h->cfgtable->clear_event_notify));
7996 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7997 hpsa_wait_for_clear_event_notify_ack(h);
7998#if 0
7999 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
8000 hpsa_wait_for_mode_change_ack(h);
8001#endif
8002 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008003 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008004}
8005
8006/* Check a register on the controller to see if there are configuration
8007 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06008008 * we should rescan the controller for devices.
8009 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008010 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06008011static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008012{
Don Brace853633e2015-11-04 15:50:37 -06008013 if (h->drv_req_rescan) {
8014 h->drv_req_rescan = 0;
8015 return 1;
8016 }
8017
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008018 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06008019 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008020
8021 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06008022 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008023}
8024
Stephen M. Cameron98465902014-02-21 16:25:00 -06008025/*
8026 * Check if any of the offline devices have become ready
8027 */
8028static int hpsa_offline_devices_ready(struct ctlr_info *h)
8029{
8030 unsigned long flags;
8031 struct offline_device_entry *d;
8032 struct list_head *this, *tmp;
8033
8034 spin_lock_irqsave(&h->offline_device_lock, flags);
8035 list_for_each_safe(this, tmp, &h->offline_device_list) {
8036 d = list_entry(this, struct offline_device_entry,
8037 offline_list);
8038 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05008039 if (!hpsa_volume_offline(h, d->scsi3addr)) {
8040 spin_lock_irqsave(&h->offline_device_lock, flags);
8041 list_del(&d->offline_list);
8042 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008043 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05008044 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008045 spin_lock_irqsave(&h->offline_device_lock, flags);
8046 }
8047 spin_unlock_irqrestore(&h->offline_device_lock, flags);
8048 return 0;
8049}
8050
Scott Teel34592252015-11-04 15:52:09 -06008051static int hpsa_luns_changed(struct ctlr_info *h)
8052{
8053 int rc = 1; /* assume there are changes */
8054 struct ReportLUNdata *logdev = NULL;
8055
8056 /* if we can't find out if lun data has changed,
8057 * assume that it has.
8058 */
8059
8060 if (!h->lastlogicals)
8061 goto out;
8062
8063 logdev = kzalloc(sizeof(*logdev), GFP_KERNEL);
8064 if (!logdev) {
8065 dev_warn(&h->pdev->dev,
8066 "Out of memory, can't track lun changes.\n");
8067 goto out;
8068 }
8069 if (hpsa_scsi_do_report_luns(h, 1, logdev, sizeof(*logdev), 0)) {
8070 dev_warn(&h->pdev->dev,
8071 "report luns failed, can't track lun changes.\n");
8072 goto out;
8073 }
8074 if (memcmp(logdev, h->lastlogicals, sizeof(*logdev))) {
8075 dev_info(&h->pdev->dev,
8076 "Lun changes detected.\n");
8077 memcpy(h->lastlogicals, logdev, sizeof(*logdev));
8078 goto out;
8079 } else
8080 rc = 0; /* no changes detected. */
8081out:
8082 kfree(logdev);
8083 return rc;
8084}
8085
Don Brace6636e7f2015-01-23 16:45:17 -06008086static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008087{
8088 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008089 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06008090 struct ctlr_info, rescan_ctlr_work);
8091
8092
8093 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008094 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008095
8096 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
8097 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008098 hpsa_ack_ctlr_events(h);
8099 hpsa_scan_start(h->scsi_host);
8100 scsi_host_put(h->scsi_host);
Scott Teel34592252015-11-04 15:52:09 -06008101 } else if (h->discovery_polling) {
Scott Teelc2adae42015-11-04 15:52:16 -06008102 hpsa_disable_rld_caching(h);
Scott Teel34592252015-11-04 15:52:09 -06008103 if (hpsa_luns_changed(h)) {
8104 struct Scsi_Host *sh = NULL;
8105
8106 dev_info(&h->pdev->dev,
8107 "driver discovery polling rescan.\n");
8108 sh = scsi_host_get(h->scsi_host);
8109 if (sh != NULL) {
8110 hpsa_scan_start(sh);
8111 scsi_host_put(sh);
8112 }
8113 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06008114 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008115 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06008116 if (!h->remove_in_progress)
8117 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008118 h->heartbeat_sample_interval);
8119 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008120}
8121
Don Brace6636e7f2015-01-23 16:45:17 -06008122static void hpsa_monitor_ctlr_worker(struct work_struct *work)
8123{
8124 unsigned long flags;
8125 struct ctlr_info *h = container_of(to_delayed_work(work),
8126 struct ctlr_info, monitor_ctlr_work);
8127
8128 detect_controller_lockup(h);
8129 if (lockup_detected(h))
8130 return;
8131
8132 spin_lock_irqsave(&h->lock, flags);
8133 if (!h->remove_in_progress)
8134 schedule_delayed_work(&h->monitor_ctlr_work,
8135 h->heartbeat_sample_interval);
8136 spin_unlock_irqrestore(&h->lock, flags);
8137}
8138
8139static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
8140 char *name)
8141{
8142 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06008143
Don Brace397ea9c2015-02-06 17:44:15 -06008144 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06008145 if (!wq)
8146 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
8147
8148 return wq;
8149}
8150
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008151static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008152{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008153 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008154 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008155 int try_soft_reset = 0;
8156 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008157 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008158
8159 if (number_of_controllers == 0)
8160 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008161
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008162 rc = hpsa_lookup_board_id(pdev, &board_id);
8163 if (rc < 0) {
8164 dev_warn(&pdev->dev, "Board ID not found\n");
8165 return rc;
8166 }
8167
8168 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008169 if (rc) {
8170 if (rc != -ENOTSUPP)
8171 return rc;
8172 /* If the reset fails in a particular way (it has no way to do
8173 * a proper hard reset, so returns -ENOTSUPP) we can try to do
8174 * a soft reset once we get the controller configured up to the
8175 * point that it can accept a command.
8176 */
8177 try_soft_reset = 1;
8178 rc = 0;
8179 }
8180
8181reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008182
Don Brace303932f2010-02-04 08:42:40 -06008183 /* Command structures must be aligned on a 32-byte boundary because
8184 * the 5 lower bits of the address are used by the hardware. and by
8185 * the driver. See comments in hpsa.h for more info.
8186 */
Don Brace303932f2010-02-04 08:42:40 -06008187 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008188 h = kzalloc(sizeof(*h), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008189 if (!h) {
8190 dev_err(&pdev->dev, "Failed to allocate controller head\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008191 return -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05008192 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008193
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008194 h->pdev = pdev;
Robert Elliott105a3db2015-04-23 09:33:48 -05008195
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06008196 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008197 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008198 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008199 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008200 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06008201 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008202 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008203
8204 /* Allocate and clear per-cpu variable lockup_detected */
8205 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008206 if (!h->lockup_detected) {
Robert Elliott105a3db2015-04-23 09:33:48 -05008207 dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008208 rc = -ENOMEM;
Robert Elliott2efa5922015-04-23 09:34:53 -05008209 goto clean1; /* aer/h */
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008210 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008211 set_lockup_detected_for_all_cpus(h, 0);
8212
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008213 rc = hpsa_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008214 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008215 goto clean2; /* lu, aer/h */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008216
Robert Elliott2946e822015-04-23 09:35:09 -05008217 /* relies on h-> settings made by hpsa_pci_init, including
8218 * interrupt_mode h->intr */
8219 rc = hpsa_scsi_host_alloc(h);
8220 if (rc)
8221 goto clean2_5; /* pci, lu, aer/h */
8222
8223 sprintf(h->devname, HPSA "%d", h->scsi_host->host_no);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008224 h->ctlr = number_of_controllers;
8225 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008226
8227 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008228 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
8229 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008230 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008231 } else {
8232 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8233 if (rc == 0) {
8234 dac = 0;
8235 } else {
8236 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott2946e822015-04-23 09:35:09 -05008237 goto clean3; /* shost, pci, lu, aer/h */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008238 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008239 }
8240
8241 /* make sure the board interrupts are off */
8242 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05008243
Robert Elliott105a3db2015-04-23 09:33:48 -05008244 rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
8245 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008246 goto clean3; /* shost, pci, lu, aer/h */
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008247 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06008248 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008249 goto clean4; /* irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008250 rc = hpsa_alloc_sg_chain_blocks(h);
8251 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008252 goto clean5; /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Camerona08a84712010-02-04 08:43:16 -06008253 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008254 init_waitqueue_head(&h->abort_cmd_wait_queue);
Webb Scalesd604f532015-04-23 09:35:22 -05008255 init_waitqueue_head(&h->event_sync_wait_queue);
8256 mutex_init(&h->reset_mutex);
Stephen M. Camerona08a84712010-02-04 08:43:16 -06008257 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008258
8259 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008260 h->ndevices = 0;
Robert Elliott2946e822015-04-23 09:35:09 -05008261
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008262 spin_lock_init(&h->devlock);
Robert Elliott105a3db2015-04-23 09:33:48 -05008263 rc = hpsa_put_ctlr_into_performant_mode(h);
8264 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008265 goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */
8266
8267 /* hook into SCSI subsystem */
8268 rc = hpsa_scsi_add_host(h);
8269 if (rc)
8270 goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott2efa5922015-04-23 09:34:53 -05008271
8272 /* create the resubmit workqueue */
8273 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
8274 if (!h->rescan_ctlr_wq) {
8275 rc = -ENOMEM;
8276 goto clean7;
8277 }
8278
8279 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
8280 if (!h->resubmit_wq) {
8281 rc = -ENOMEM;
8282 goto clean7; /* aer/h */
8283 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008284
Robert Elliott105a3db2015-04-23 09:33:48 -05008285 /*
8286 * At this point, the controller is ready to take commands.
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008287 * Now, if reset_devices and the hard reset didn't work, try
8288 * the soft reset and see if that works.
8289 */
8290 if (try_soft_reset) {
8291
8292 /* This is kind of gross. We may or may not get a completion
8293 * from the soft reset command, and if we do, then the value
8294 * from the fifo may or may not be valid. So, we wait 10 secs
8295 * after the reset throwing away any completions we get during
8296 * that time. Unregister the interrupt handler and register
8297 * fake ones to scoop up any residual completions.
8298 */
8299 spin_lock_irqsave(&h->lock, flags);
8300 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8301 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06008302 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06008303 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008304 hpsa_intx_discard_completions);
8305 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06008306 dev_warn(&h->pdev->dev,
8307 "Failed to request_irq after soft reset.\n");
Robert Elliottd4987572015-04-23 09:34:37 -05008308 /*
Robert Elliottb2ef4802015-04-23 09:34:48 -05008309 * cannot goto clean7 or free_irqs will be called
8310 * again. Instead, do its work
8311 */
8312 hpsa_free_performant_mode(h); /* clean7 */
8313 hpsa_free_sg_chain_blocks(h); /* clean6 */
8314 hpsa_free_cmd_pool(h); /* clean5 */
8315 /*
8316 * skip hpsa_free_irqs(h) clean4 since that
8317 * was just called before request_irqs failed
Robert Elliottd4987572015-04-23 09:34:37 -05008318 */
8319 goto clean3;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008320 }
8321
8322 rc = hpsa_kdump_soft_reset(h);
8323 if (rc)
8324 /* Neither hard nor soft reset worked, we're hosed. */
Don Brace7ef73232015-07-18 11:12:33 -05008325 goto clean7;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008326
8327 dev_info(&h->pdev->dev, "Board READY.\n");
8328 dev_info(&h->pdev->dev,
8329 "Waiting for stale completions to drain.\n");
8330 h->access.set_intr_mask(h, HPSA_INTR_ON);
8331 msleep(10000);
8332 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8333
8334 rc = controller_reset_failed(h->cfgtable);
8335 if (rc)
8336 dev_info(&h->pdev->dev,
8337 "Soft reset appears to have failed.\n");
8338
8339 /* since the controller's reset, we have to go back and re-init
8340 * everything. Easiest to just forget what we've done and do it
8341 * all over again.
8342 */
8343 hpsa_undo_allocations_after_kdump_soft_reset(h);
8344 try_soft_reset = 0;
8345 if (rc)
Robert Elliottb2ef4802015-04-23 09:34:48 -05008346 /* don't goto clean, we already unallocated */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008347 return -ENODEV;
8348
8349 goto reinit_after_soft_reset;
8350 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008351
Robert Elliott105a3db2015-04-23 09:33:48 -05008352 /* Enable Accelerated IO path at driver layer */
8353 h->acciopath_status = 1;
Scott Teel34592252015-11-04 15:52:09 -06008354 /* Disable discovery polling.*/
8355 h->discovery_polling = 0;
Scott Teelda0697b2014-02-18 13:57:00 -06008356
Scott Teele863d682014-02-18 13:57:05 -06008357
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008358 /* Turn the interrupts on so we can service requests */
8359 h->access.set_intr_mask(h, HPSA_INTR_ON);
8360
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06008361 hpsa_hba_inquiry(h);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008362
Scott Teel34592252015-11-04 15:52:09 -06008363 h->lastlogicals = kzalloc(sizeof(*(h->lastlogicals)), GFP_KERNEL);
8364 if (!h->lastlogicals)
8365 dev_info(&h->pdev->dev,
8366 "Can't track change to report lun data\n");
8367
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008368 /* Monitor the controller for firmware lockups */
8369 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
8370 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
8371 schedule_delayed_work(&h->monitor_ctlr_work,
8372 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06008373 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
8374 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
8375 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05008376 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008377
Robert Elliott2946e822015-04-23 09:35:09 -05008378clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008379 hpsa_free_performant_mode(h);
8380 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8381clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06008382 hpsa_free_sg_chain_blocks(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008383clean5: /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008384 hpsa_free_cmd_pool(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008385clean4: /* irq, shost, pci, lu, aer/h */
Robert Elliottec501a12015-01-23 16:41:40 -06008386 hpsa_free_irqs(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008387clean3: /* shost, pci, lu, aer/h */
8388 scsi_host_put(h->scsi_host);
8389 h->scsi_host = NULL;
8390clean2_5: /* pci, lu, aer/h */
Robert Elliott195f2c62015-04-23 09:33:17 -05008391 hpsa_free_pci_init(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008392clean2: /* lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008393 if (h->lockup_detected) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008394 free_percpu(h->lockup_detected);
Robert Elliott105a3db2015-04-23 09:33:48 -05008395 h->lockup_detected = NULL;
8396 }
8397clean1: /* wq/aer/h */
8398 if (h->resubmit_wq) {
8399 destroy_workqueue(h->resubmit_wq);
8400 h->resubmit_wq = NULL;
8401 }
8402 if (h->rescan_ctlr_wq) {
8403 destroy_workqueue(h->rescan_ctlr_wq);
8404 h->rescan_ctlr_wq = NULL;
8405 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008406 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008407 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008408}
8409
8410static void hpsa_flush_cache(struct ctlr_info *h)
8411{
8412 char *flush_buf;
8413 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008414 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008415
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008416 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008417 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008418 flush_buf = kzalloc(4, GFP_KERNEL);
8419 if (!flush_buf)
8420 return;
8421
Stephen Cameron45fcb862015-01-23 16:43:04 -06008422 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05008423
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008424 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
8425 RAID_CTLR_LUNID, TYPE_CMD)) {
8426 goto out;
8427 }
Webb Scales25163bd2015-04-23 09:32:00 -05008428 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
8429 PCI_DMA_TODEVICE, NO_TIMEOUT);
8430 if (rc)
8431 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008432 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008433out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008434 dev_warn(&h->pdev->dev,
8435 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06008436 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008437 kfree(flush_buf);
8438}
8439
Scott Teelc2adae42015-11-04 15:52:16 -06008440/* Make controller gather fresh report lun data each time we
8441 * send down a report luns request
8442 */
8443static void hpsa_disable_rld_caching(struct ctlr_info *h)
8444{
8445 u32 *options;
8446 struct CommandList *c;
8447 int rc;
8448
8449 /* Don't bother trying to set diag options if locked up */
8450 if (unlikely(h->lockup_detected))
8451 return;
8452
8453 options = kzalloc(sizeof(*options), GFP_KERNEL);
8454 if (!options) {
8455 dev_err(&h->pdev->dev,
8456 "Error: failed to disable rld caching, during alloc.\n");
8457 return;
8458 }
8459
8460 c = cmd_alloc(h);
8461
8462 /* first, get the current diag options settings */
8463 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8464 RAID_CTLR_LUNID, TYPE_CMD))
8465 goto errout;
8466
8467 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
8468 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
8469 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8470 goto errout;
8471
8472 /* Now, set the bit for disabling the RLD caching */
8473 *options |= HPSA_DIAG_OPTS_DISABLE_RLD_CACHING;
8474
8475 if (fill_cmd(c, BMIC_SET_DIAG_OPTIONS, h, options, 4, 0,
8476 RAID_CTLR_LUNID, TYPE_CMD))
8477 goto errout;
8478
8479 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
8480 PCI_DMA_TODEVICE, NO_TIMEOUT);
8481 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8482 goto errout;
8483
8484 /* Now verify that it got set: */
8485 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8486 RAID_CTLR_LUNID, TYPE_CMD))
8487 goto errout;
8488
8489 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
8490 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
8491 if ((rc != 0) || (c->err_info->CommandStatus != 0))
8492 goto errout;
8493
8494 if (*options && HPSA_DIAG_OPTS_DISABLE_RLD_CACHING)
8495 goto out;
8496
8497errout:
8498 dev_err(&h->pdev->dev,
8499 "Error: failed to disable report lun data caching.\n");
8500out:
8501 cmd_free(h, c);
8502 kfree(options);
8503}
8504
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008505static void hpsa_shutdown(struct pci_dev *pdev)
8506{
8507 struct ctlr_info *h;
8508
8509 h = pci_get_drvdata(pdev);
8510 /* Turn board interrupts off and send the flush cache command
8511 * sendcmd will turn off interrupt, and send the flush...
8512 * To write all data in the battery backed cache to disks
8513 */
8514 hpsa_flush_cache(h);
8515 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliott105a3db2015-04-23 09:33:48 -05008516 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliottcc64c812015-04-23 09:33:12 -05008517 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008518}
8519
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008520static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008521{
8522 int i;
8523
Robert Elliott105a3db2015-04-23 09:33:48 -05008524 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008525 kfree(h->dev[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008526 h->dev[i] = NULL;
8527 }
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008528}
8529
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008530static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008531{
8532 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008533 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008534
8535 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008536 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008537 return;
8538 }
8539 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008540
8541 /* Get rid of any controller monitoring work items */
8542 spin_lock_irqsave(&h->lock, flags);
8543 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008544 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06008545 cancel_delayed_work_sync(&h->monitor_ctlr_work);
8546 cancel_delayed_work_sync(&h->rescan_ctlr_work);
8547 destroy_workqueue(h->rescan_ctlr_wq);
8548 destroy_workqueue(h->resubmit_wq);
Robert Elliottcc64c812015-04-23 09:33:12 -05008549
Don Brace2d041302015-07-18 11:13:15 -05008550 /*
8551 * Call before disabling interrupts.
8552 * scsi_remove_host can trigger I/O operations especially
8553 * when multipath is enabled. There can be SYNCHRONIZE CACHE
8554 * operations which cannot complete and will hang the system.
8555 */
8556 if (h->scsi_host)
8557 scsi_remove_host(h->scsi_host); /* init_one 8 */
Robert Elliott105a3db2015-04-23 09:33:48 -05008558 /* includes hpsa_free_irqs - init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008559 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008560 hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05008561
Robert Elliott105a3db2015-04-23 09:33:48 -05008562 hpsa_free_device_info(h); /* scan */
8563
Robert Elliott2946e822015-04-23 09:35:09 -05008564 kfree(h->hba_inquiry_data); /* init_one 10 */
8565 h->hba_inquiry_data = NULL; /* init_one 10 */
Robert Elliott2946e822015-04-23 09:35:09 -05008566 hpsa_free_ioaccel2_sg_chain_blocks(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008567 hpsa_free_performant_mode(h); /* init_one 7 */
8568 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
8569 hpsa_free_cmd_pool(h); /* init_one 5 */
Scott Teel34592252015-11-04 15:52:09 -06008570 kfree(h->lastlogicals);
Robert Elliott105a3db2015-04-23 09:33:48 -05008571
8572 /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008573
Robert Elliott2946e822015-04-23 09:35:09 -05008574 scsi_host_put(h->scsi_host); /* init_one 3 */
8575 h->scsi_host = NULL; /* init_one 3 */
8576
Robert Elliott195f2c62015-04-23 09:33:17 -05008577 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Robert Elliott2946e822015-04-23 09:35:09 -05008578 hpsa_free_pci_init(h); /* init_one 2.5 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008579
Robert Elliott105a3db2015-04-23 09:33:48 -05008580 free_percpu(h->lockup_detected); /* init_one 2 */
8581 h->lockup_detected = NULL; /* init_one 2 */
8582 /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */
8583 kfree(h); /* init_one 1 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008584}
8585
8586static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
8587 __attribute__((unused)) pm_message_t state)
8588{
8589 return -ENOSYS;
8590}
8591
8592static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
8593{
8594 return -ENOSYS;
8595}
8596
8597static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06008598 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008599 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008600 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008601 .id_table = hpsa_pci_device_id, /* id_table */
8602 .shutdown = hpsa_shutdown,
8603 .suspend = hpsa_suspend,
8604 .resume = hpsa_resume,
8605};
8606
Don Brace303932f2010-02-04 08:42:40 -06008607/* Fill in bucket_map[], given nsgs (the max number of
8608 * scatter gather elements supported) and bucket[],
8609 * which is an array of 8 integers. The bucket[] array
8610 * contains 8 different DMA transfer sizes (in 16
8611 * byte increments) which the controller uses to fetch
8612 * commands. This function fills in bucket_map[], which
8613 * maps a given number of scatter gather elements to one of
8614 * the 8 DMA transfer sizes. The point of it is to allow the
8615 * controller to only do as much DMA as needed to fetch the
8616 * command, with the DMA transfer size encoded in the lower
8617 * bits of the command address.
8618 */
8619static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06008620 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06008621{
8622 int i, j, b, size;
8623
Don Brace303932f2010-02-04 08:42:40 -06008624 /* Note, bucket_map must have nsgs+1 entries. */
8625 for (i = 0; i <= nsgs; i++) {
8626 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06008627 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06008628 b = num_buckets; /* Assume the biggest bucket */
8629 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06008630 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06008631 if (bucket[j] >= size) {
8632 b = j;
8633 break;
8634 }
8635 }
8636 /* for a command with i SG entries, use bucket b. */
8637 bucket_map[i] = b;
8638 }
8639}
8640
Robert Elliott105a3db2015-04-23 09:33:48 -05008641/*
8642 * return -ENODEV on err, 0 on success (or no action)
8643 * allocates numerous items that must be freed later
8644 */
Robert Elliottc706a792015-01-23 16:45:01 -06008645static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06008646{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008647 int i;
8648 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06008649 unsigned long transMethod = CFGTBL_Trans_Performant |
8650 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008651 CFGTBL_Trans_enable_directed_msix |
8652 (trans_support & (CFGTBL_Trans_io_accel1 |
8653 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06008654 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05008655
8656 /* This is a bit complicated. There are 8 registers on
8657 * the controller which we write to to tell it 8 different
8658 * sizes of commands which there may be. It's a way of
8659 * reducing the DMA done to fetch each command. Encoded into
8660 * each command's tag are 3 bits which communicate to the controller
8661 * which of the eight sizes that command fits within. The size of
8662 * each command depends on how many scatter gather entries there are.
8663 * Each SG entry requires 16 bytes. The eight registers are programmed
8664 * with the number of 16-byte blocks a command of that size requires.
8665 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008666 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05008667 * blocks. Note, this only extends to the SG entries contained
8668 * within the command block, and does not extend to chained blocks
8669 * of SG elements. bft[] contains the eight values we write to
8670 * the registers. They are not evenly distributed, but have more
8671 * sizes for small commands, and fewer sizes for larger commands.
8672 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008673 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008674#define MIN_IOACCEL2_BFT_ENTRY 5
8675#define HPSA_IOACCEL2_HEADER_SZ 4
8676 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
8677 13, 14, 15, 16, 17, 18, 19,
8678 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
8679 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
8680 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
8681 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
8682 16 * MIN_IOACCEL2_BFT_ENTRY);
8683 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008684 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06008685 /* 5 = 1 s/g entry or 4k
8686 * 6 = 2 s/g entry or 8k
8687 * 8 = 4 s/g entry or 16k
8688 * 10 = 6 s/g entry or 24k
8689 */
Don Brace303932f2010-02-04 08:42:40 -06008690
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05008691 /* If the controller supports either ioaccel method then
8692 * we can also use the RAID stack submit path that does not
8693 * perform the superfluous readl() after each command submission.
8694 */
8695 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
8696 access = SA5_performant_access_no_read;
8697
Don Brace303932f2010-02-04 08:42:40 -06008698 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008699 for (i = 0; i < h->nreply_queues; i++)
8700 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06008701
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008702 bft[7] = SG_ENTRIES_IN_CMD + 4;
8703 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06008704 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06008705 for (i = 0; i < 8; i++)
8706 writel(bft[i], &h->transtable->BlockFetch[i]);
8707
8708 /* size of controller ring buffer */
8709 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05008710 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06008711 writel(0, &h->transtable->RepQCtrAddrLow32);
8712 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05008713
8714 for (i = 0; i < h->nreply_queues; i++) {
8715 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008716 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05008717 &h->transtable->RepQAddr[i].lower);
8718 }
8719
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008720 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06008721 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
8722 /*
8723 * enable outbound interrupt coalescing in accelerator mode;
8724 */
8725 if (trans_support & CFGTBL_Trans_io_accel1) {
8726 access = SA5_ioaccel_mode1_access;
8727 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8728 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06008729 } else {
8730 if (trans_support & CFGTBL_Trans_io_accel2) {
8731 access = SA5_ioaccel_mode2_access;
8732 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8733 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
8734 }
Matt Gatese1f7de02014-02-18 13:55:17 -06008735 }
Don Brace303932f2010-02-04 08:42:40 -06008736 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008737 if (hpsa_wait_for_mode_change_ack(h)) {
8738 dev_err(&h->pdev->dev,
8739 "performant mode problem - doorbell timeout\n");
8740 return -ENODEV;
8741 }
Don Brace303932f2010-02-04 08:42:40 -06008742 register_value = readl(&(h->cfgtable->TransportActive));
8743 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06008744 dev_err(&h->pdev->dev,
8745 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06008746 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06008747 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06008748 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06008749 h->access = access;
8750 h->transMethod = transMethod;
8751
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008752 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
8753 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06008754 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008755
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008756 if (trans_support & CFGTBL_Trans_io_accel1) {
8757 /* Set up I/O accelerator mode */
8758 for (i = 0; i < h->nreply_queues; i++) {
8759 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
8760 h->reply_queue[i].current_entry =
8761 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
8762 }
8763 bft[7] = h->ioaccel_maxsg + 8;
8764 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
8765 h->ioaccel1_blockFetchTable);
8766
8767 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008768 for (i = 0; i < h->nreply_queues; i++)
8769 memset(h->reply_queue[i].head,
8770 (u8) IOACCEL_MODE1_REPLY_UNUSED,
8771 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008772
8773 /* set all the constant fields in the accelerator command
8774 * frames once at init time to save CPU cycles later.
8775 */
8776 for (i = 0; i < h->nr_cmds; i++) {
8777 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
8778
8779 cp->function = IOACCEL1_FUNCTION_SCSIIO;
8780 cp->err_info = (u32) (h->errinfo_pool_dhandle +
8781 (i * sizeof(struct ErrorInfo)));
8782 cp->err_info_len = sizeof(struct ErrorInfo);
8783 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06008784 cp->host_context_flags =
8785 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008786 cp->timeout_sec = 0;
8787 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008788 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06008789 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008790 cp->host_addr =
8791 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008792 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008793 }
8794 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8795 u64 cfg_offset, cfg_base_addr_index;
8796 u32 bft2_offset, cfg_base_addr;
8797 int rc;
8798
8799 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
8800 &cfg_base_addr_index, &cfg_offset);
8801 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
8802 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
8803 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
8804 4, h->ioaccel2_blockFetchTable);
8805 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
8806 BUILD_BUG_ON(offsetof(struct CfgTable,
8807 io_accel_request_size_offset) != 0xb8);
8808 h->ioaccel2_bft2_regs =
8809 remap_pci_mem(pci_resource_start(h->pdev,
8810 cfg_base_addr_index) +
8811 cfg_offset + bft2_offset,
8812 ARRAY_SIZE(bft2) *
8813 sizeof(*h->ioaccel2_bft2_regs));
8814 for (i = 0; i < ARRAY_SIZE(bft2); i++)
8815 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06008816 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008817 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008818 if (hpsa_wait_for_mode_change_ack(h)) {
8819 dev_err(&h->pdev->dev,
8820 "performant mode problem - enabling ioaccel mode\n");
8821 return -ENODEV;
8822 }
8823 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008824}
8825
Robert Elliott1fb7c982015-04-23 09:33:22 -05008826/* Free ioaccel1 mode command blocks and block fetch table */
8827static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
8828{
Robert Elliott105a3db2015-04-23 09:33:48 -05008829 if (h->ioaccel_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008830 pci_free_consistent(h->pdev,
8831 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8832 h->ioaccel_cmd_pool,
8833 h->ioaccel_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008834 h->ioaccel_cmd_pool = NULL;
8835 h->ioaccel_cmd_pool_dhandle = 0;
8836 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008837 kfree(h->ioaccel1_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008838 h->ioaccel1_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008839}
8840
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008841/* Allocate ioaccel1 mode command blocks and block fetch table */
8842static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06008843{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008844 h->ioaccel_maxsg =
8845 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8846 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
8847 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
8848
Matt Gatese1f7de02014-02-18 13:55:17 -06008849 /* Command structures must be aligned on a 128-byte boundary
8850 * because the 7 lower bits of the address are used by the
8851 * hardware.
8852 */
Matt Gatese1f7de02014-02-18 13:55:17 -06008853 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
8854 IOACCEL1_COMMANDLIST_ALIGNMENT);
8855 h->ioaccel_cmd_pool =
8856 pci_alloc_consistent(h->pdev,
8857 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8858 &(h->ioaccel_cmd_pool_dhandle));
8859
8860 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008861 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06008862 sizeof(u32)), GFP_KERNEL);
8863
8864 if ((h->ioaccel_cmd_pool == NULL) ||
8865 (h->ioaccel1_blockFetchTable == NULL))
8866 goto clean_up;
8867
8868 memset(h->ioaccel_cmd_pool, 0,
8869 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
8870 return 0;
8871
8872clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008873 hpsa_free_ioaccel1_cmd_and_bft(h);
Robert Elliott2dd02d72015-04-23 09:33:43 -05008874 return -ENOMEM;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008875}
8876
Robert Elliott1fb7c982015-04-23 09:33:22 -05008877/* Free ioaccel2 mode command blocks and block fetch table */
8878static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
8879{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008880 hpsa_free_ioaccel2_sg_chain_blocks(h);
8881
Robert Elliott105a3db2015-04-23 09:33:48 -05008882 if (h->ioaccel2_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008883 pci_free_consistent(h->pdev,
8884 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8885 h->ioaccel2_cmd_pool,
8886 h->ioaccel2_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008887 h->ioaccel2_cmd_pool = NULL;
8888 h->ioaccel2_cmd_pool_dhandle = 0;
8889 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008890 kfree(h->ioaccel2_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008891 h->ioaccel2_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008892}
8893
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008894/* Allocate ioaccel2 mode command blocks and block fetch table */
8895static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008896{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008897 int rc;
8898
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008899 /* Allocate ioaccel2 mode command blocks and block fetch table */
8900
8901 h->ioaccel_maxsg =
8902 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8903 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
8904 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
8905
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008906 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
8907 IOACCEL2_COMMANDLIST_ALIGNMENT);
8908 h->ioaccel2_cmd_pool =
8909 pci_alloc_consistent(h->pdev,
8910 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8911 &(h->ioaccel2_cmd_pool_dhandle));
8912
8913 h->ioaccel2_blockFetchTable =
8914 kmalloc(((h->ioaccel_maxsg + 1) *
8915 sizeof(u32)), GFP_KERNEL);
8916
8917 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05008918 (h->ioaccel2_blockFetchTable == NULL)) {
8919 rc = -ENOMEM;
8920 goto clean_up;
8921 }
8922
8923 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
8924 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008925 goto clean_up;
8926
8927 memset(h->ioaccel2_cmd_pool, 0,
8928 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
8929 return 0;
8930
8931clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008932 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05008933 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008934}
8935
Robert Elliott105a3db2015-04-23 09:33:48 -05008936/* Free items allocated by hpsa_put_ctlr_into_performant_mode */
8937static void hpsa_free_performant_mode(struct ctlr_info *h)
8938{
8939 kfree(h->blockFetchTable);
8940 h->blockFetchTable = NULL;
8941 hpsa_free_reply_queues(h);
8942 hpsa_free_ioaccel1_cmd_and_bft(h);
8943 hpsa_free_ioaccel2_cmd_and_bft(h);
8944}
8945
8946/* return -ENODEV on error, 0 on success (or no action)
8947 * allocates numerous items that must be freed later
8948 */
8949static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008950{
8951 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06008952 unsigned long transMethod = CFGTBL_Trans_Performant |
8953 CFGTBL_Trans_use_short_tags;
Robert Elliott105a3db2015-04-23 09:33:48 -05008954 int i, rc;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008955
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008956 if (hpsa_simple_mode)
Robert Elliott105a3db2015-04-23 09:33:48 -05008957 return 0;
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008958
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008959 trans_support = readl(&(h->cfgtable->TransportSupport));
8960 if (!(trans_support & PERFORMANT_MODE))
Robert Elliott105a3db2015-04-23 09:33:48 -05008961 return 0;
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008962
Matt Gatese1f7de02014-02-18 13:55:17 -06008963 /* Check for I/O accelerator mode support */
8964 if (trans_support & CFGTBL_Trans_io_accel1) {
8965 transMethod |= CFGTBL_Trans_io_accel1 |
8966 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008967 rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
8968 if (rc)
8969 return rc;
8970 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8971 transMethod |= CFGTBL_Trans_io_accel2 |
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008972 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008973 rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
8974 if (rc)
8975 return rc;
Matt Gatese1f7de02014-02-18 13:55:17 -06008976 }
8977
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008978 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05008979 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008980 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008981 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008982
Matt Gates254f7962012-05-01 11:43:06 -05008983 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008984 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
8985 h->reply_queue_size,
8986 &(h->reply_queue[i].busaddr));
Robert Elliott105a3db2015-04-23 09:33:48 -05008987 if (!h->reply_queue[i].head) {
8988 rc = -ENOMEM;
8989 goto clean1; /* rq, ioaccel */
8990 }
Matt Gates254f7962012-05-01 11:43:06 -05008991 h->reply_queue[i].size = h->max_commands;
8992 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
8993 h->reply_queue[i].current_entry = 0;
8994 }
8995
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008996 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008997 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008998 sizeof(u32)), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008999 if (!h->blockFetchTable) {
9000 rc = -ENOMEM;
9001 goto clean1; /* rq, ioaccel */
9002 }
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05009003
Robert Elliott105a3db2015-04-23 09:33:48 -05009004 rc = hpsa_enter_performant_mode(h, trans_support);
9005 if (rc)
9006 goto clean2; /* bft, rq, ioaccel */
9007 return 0;
Don Brace303932f2010-02-04 08:42:40 -06009008
Robert Elliott105a3db2015-04-23 09:33:48 -05009009clean2: /* bft, rq, ioaccel */
Don Brace303932f2010-02-04 08:42:40 -06009010 kfree(h->blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05009011 h->blockFetchTable = NULL;
9012clean1: /* rq, ioaccel */
9013 hpsa_free_reply_queues(h);
9014 hpsa_free_ioaccel1_cmd_and_bft(h);
9015 hpsa_free_ioaccel2_cmd_and_bft(h);
9016 return rc;
Don Brace303932f2010-02-04 08:42:40 -06009017}
9018
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009019static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009020{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009021 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
9022}
9023
9024static void hpsa_drain_accel_commands(struct ctlr_info *h)
9025{
9026 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06009027 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06009028 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009029
Don Bracef2405db2015-01-23 16:43:09 -06009030 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009031 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06009032 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06009033 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06009034 refcount = atomic_inc_return(&c->refcount);
9035 if (refcount > 1) /* Command is allocated */
9036 accel_cmds_out += is_accelerated_cmd(c);
9037 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06009038 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06009039 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06009040 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06009041 msleep(100);
9042 } while (1);
9043}
9044
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009045/*
9046 * This is it. Register the PCI driver information for the cards we control
9047 * the OS will call our registered routines when it finds one of our cards.
9048 */
9049static int __init hpsa_init(void)
9050{
Mike Miller31468402010-02-25 14:03:12 -06009051 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009052}
9053
9054static void __exit hpsa_cleanup(void)
9055{
9056 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009057}
9058
Matt Gatese1f7de02014-02-18 13:55:17 -06009059static void __attribute__((unused)) verify_offsets(void)
9060{
9061#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06009062 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
9063
9064 VERIFY_OFFSET(structure_size, 0);
9065 VERIFY_OFFSET(volume_blk_size, 4);
9066 VERIFY_OFFSET(volume_blk_cnt, 8);
9067 VERIFY_OFFSET(phys_blk_shift, 16);
9068 VERIFY_OFFSET(parity_rotation_shift, 17);
9069 VERIFY_OFFSET(strip_size, 18);
9070 VERIFY_OFFSET(disk_starting_blk, 20);
9071 VERIFY_OFFSET(disk_blk_cnt, 28);
9072 VERIFY_OFFSET(data_disks_per_row, 36);
9073 VERIFY_OFFSET(metadata_disks_per_row, 38);
9074 VERIFY_OFFSET(row_cnt, 40);
9075 VERIFY_OFFSET(layout_map_count, 42);
9076 VERIFY_OFFSET(flags, 44);
9077 VERIFY_OFFSET(dekindex, 46);
9078 /* VERIFY_OFFSET(reserved, 48 */
9079 VERIFY_OFFSET(data, 64);
9080
9081#undef VERIFY_OFFSET
9082
9083#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06009084 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
9085
9086 VERIFY_OFFSET(IU_type, 0);
9087 VERIFY_OFFSET(direction, 1);
9088 VERIFY_OFFSET(reply_queue, 2);
9089 /* VERIFY_OFFSET(reserved1, 3); */
9090 VERIFY_OFFSET(scsi_nexus, 4);
9091 VERIFY_OFFSET(Tag, 8);
9092 VERIFY_OFFSET(cdb, 16);
9093 VERIFY_OFFSET(cciss_lun, 32);
9094 VERIFY_OFFSET(data_len, 40);
9095 VERIFY_OFFSET(cmd_priority_task_attr, 44);
9096 VERIFY_OFFSET(sg_count, 45);
9097 /* VERIFY_OFFSET(reserved3 */
9098 VERIFY_OFFSET(err_ptr, 48);
9099 VERIFY_OFFSET(err_len, 56);
9100 /* VERIFY_OFFSET(reserved4 */
9101 VERIFY_OFFSET(sg, 64);
9102
9103#undef VERIFY_OFFSET
9104
9105#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06009106 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
9107
9108 VERIFY_OFFSET(dev_handle, 0x00);
9109 VERIFY_OFFSET(reserved1, 0x02);
9110 VERIFY_OFFSET(function, 0x03);
9111 VERIFY_OFFSET(reserved2, 0x04);
9112 VERIFY_OFFSET(err_info, 0x0C);
9113 VERIFY_OFFSET(reserved3, 0x10);
9114 VERIFY_OFFSET(err_info_len, 0x12);
9115 VERIFY_OFFSET(reserved4, 0x13);
9116 VERIFY_OFFSET(sgl_offset, 0x14);
9117 VERIFY_OFFSET(reserved5, 0x15);
9118 VERIFY_OFFSET(transfer_len, 0x1C);
9119 VERIFY_OFFSET(reserved6, 0x20);
9120 VERIFY_OFFSET(io_flags, 0x24);
9121 VERIFY_OFFSET(reserved7, 0x26);
9122 VERIFY_OFFSET(LUN, 0x34);
9123 VERIFY_OFFSET(control, 0x3C);
9124 VERIFY_OFFSET(CDB, 0x40);
9125 VERIFY_OFFSET(reserved8, 0x50);
9126 VERIFY_OFFSET(host_context_flags, 0x60);
9127 VERIFY_OFFSET(timeout_sec, 0x62);
9128 VERIFY_OFFSET(ReplyQueue, 0x64);
9129 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06009130 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06009131 VERIFY_OFFSET(host_addr, 0x70);
9132 VERIFY_OFFSET(CISS_LUN, 0x78);
9133 VERIFY_OFFSET(SG, 0x78 + 8);
9134#undef VERIFY_OFFSET
9135}
9136
Stephen M. Cameronedd16362009-12-08 14:09:11 -08009137module_init(hpsa_init);
9138module_exit(hpsa_cleanup);