blob: 62df4808119cdfd2bba59492eb6cac3e10873c9c [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. Camerona08a8472010-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);
Joe Handzik8270b862015-07-18 11:12:43 -0500278static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800279
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800280static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
281{
282 unsigned long *priv = shost_priv(sdev->host);
283 return (struct ctlr_info *) *priv;
284}
285
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600286static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
287{
288 unsigned long *priv = shost_priv(sh);
289 return (struct ctlr_info *) *priv;
290}
291
Webb Scalesa58e7e52015-04-23 09:34:16 -0500292static inline bool hpsa_is_cmd_idle(struct CommandList *c)
293{
294 return c->scsi_cmd == SCSI_CMD_IDLE;
295}
296
Webb Scalesd604f532015-04-23 09:35:22 -0500297static inline bool hpsa_is_pending_event(struct CommandList *c)
298{
299 return c->abort_pending || c->reset_pending;
300}
301
Stephen Cameron9437ac42015-04-23 09:32:16 -0500302/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
303static void decode_sense_data(const u8 *sense_data, int sense_data_len,
304 u8 *sense_key, u8 *asc, u8 *ascq)
305{
306 struct scsi_sense_hdr sshdr;
307 bool rc;
308
309 *sense_key = -1;
310 *asc = -1;
311 *ascq = -1;
312
313 if (sense_data_len < 1)
314 return;
315
316 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
317 if (rc) {
318 *sense_key = sshdr.sense_key;
319 *asc = sshdr.asc;
320 *ascq = sshdr.ascq;
321 }
322}
323
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800324static int check_for_unit_attention(struct ctlr_info *h,
325 struct CommandList *c)
326{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500327 u8 sense_key, asc, ascq;
328 int sense_len;
329
330 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
331 sense_len = sizeof(c->err_info->SenseInfo);
332 else
333 sense_len = c->err_info->SenseLen;
334
335 decode_sense_data(c->err_info->SenseInfo, sense_len,
336 &sense_key, &asc, &ascq);
Don Brace81c27552015-07-18 11:12:28 -0500337 if (sense_key != UNIT_ATTENTION || asc == 0xff)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800338 return 0;
339
Stephen Cameron9437ac42015-04-23 09:32:16 -0500340 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800341 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500342 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500343 "%s: a state change detected, command retried\n",
344 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800345 break;
346 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600347 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500348 "%s: LUN failure detected\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800349 break;
350 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600351 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500352 "%s: report LUN data changed\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800353 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600354 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
355 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800356 */
357 break;
358 case POWER_OR_RESET:
Robert Elliott2946e822015-04-23 09:35:09 -0500359 dev_warn(&h->pdev->dev,
360 "%s: a power on or device reset detected\n",
361 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800362 break;
363 case UNIT_ATTENTION_CLEARED:
Robert Elliott2946e822015-04-23 09:35:09 -0500364 dev_warn(&h->pdev->dev,
365 "%s: unit attention cleared by another initiator\n",
366 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800367 break;
368 default:
Robert Elliott2946e822015-04-23 09:35:09 -0500369 dev_warn(&h->pdev->dev,
370 "%s: unknown unit attention detected\n",
371 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800372 break;
373 }
374 return 1;
375}
376
Matt Bondurant852af202012-05-01 11:42:35 -0500377static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
378{
379 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
380 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
381 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
382 return 0;
383 dev_warn(&h->pdev->dev, HPSA "device busy");
384 return 1;
385}
386
Stephen Camerone985c582015-04-23 09:32:22 -0500387static u32 lockup_detected(struct ctlr_info *h);
388static ssize_t host_show_lockup_detected(struct device *dev,
389 struct device_attribute *attr, char *buf)
390{
391 int ld;
392 struct ctlr_info *h;
393 struct Scsi_Host *shost = class_to_shost(dev);
394
395 h = shost_to_hba(shost);
396 ld = lockup_detected(h);
397
398 return sprintf(buf, "ld=%d\n", ld);
399}
400
Scott Teelda0697b2014-02-18 13:57:00 -0600401static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
402 struct device_attribute *attr,
403 const char *buf, size_t count)
404{
405 int status, len;
406 struct ctlr_info *h;
407 struct Scsi_Host *shost = class_to_shost(dev);
408 char tmpbuf[10];
409
410 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
411 return -EACCES;
412 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
413 strncpy(tmpbuf, buf, len);
414 tmpbuf[len] = '\0';
415 if (sscanf(tmpbuf, "%d", &status) != 1)
416 return -EINVAL;
417 h = shost_to_hba(shost);
418 h->acciopath_status = !!status;
419 dev_warn(&h->pdev->dev,
420 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
421 h->acciopath_status ? "enabled" : "disabled");
422 return count;
423}
424
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600425static ssize_t host_store_raid_offload_debug(struct device *dev,
426 struct device_attribute *attr,
427 const char *buf, size_t count)
428{
429 int debug_level, len;
430 struct ctlr_info *h;
431 struct Scsi_Host *shost = class_to_shost(dev);
432 char tmpbuf[10];
433
434 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
435 return -EACCES;
436 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
437 strncpy(tmpbuf, buf, len);
438 tmpbuf[len] = '\0';
439 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
440 return -EINVAL;
441 if (debug_level < 0)
442 debug_level = 0;
443 h = shost_to_hba(shost);
444 h->raid_offload_debug = debug_level;
445 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
446 h->raid_offload_debug);
447 return count;
448}
449
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800450static ssize_t host_store_rescan(struct device *dev,
451 struct device_attribute *attr,
452 const char *buf, size_t count)
453{
454 struct ctlr_info *h;
455 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600456 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600457 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800458 return count;
459}
460
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500461static ssize_t host_show_firmware_revision(struct device *dev,
462 struct device_attribute *attr, char *buf)
463{
464 struct ctlr_info *h;
465 struct Scsi_Host *shost = class_to_shost(dev);
466 unsigned char *fwrev;
467
468 h = shost_to_hba(shost);
469 if (!h->hba_inquiry_data)
470 return 0;
471 fwrev = &h->hba_inquiry_data[32];
472 return snprintf(buf, 20, "%c%c%c%c\n",
473 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
474}
475
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600476static ssize_t host_show_commands_outstanding(struct device *dev,
477 struct device_attribute *attr, char *buf)
478{
479 struct Scsi_Host *shost = class_to_shost(dev);
480 struct ctlr_info *h = shost_to_hba(shost);
481
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600482 return snprintf(buf, 20, "%d\n",
483 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600484}
485
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600486static ssize_t host_show_transport_mode(struct device *dev,
487 struct device_attribute *attr, char *buf)
488{
489 struct ctlr_info *h;
490 struct Scsi_Host *shost = class_to_shost(dev);
491
492 h = shost_to_hba(shost);
493 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600494 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600495 "performant" : "simple");
496}
497
Scott Teelda0697b2014-02-18 13:57:00 -0600498static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
499 struct device_attribute *attr, char *buf)
500{
501 struct ctlr_info *h;
502 struct Scsi_Host *shost = class_to_shost(dev);
503
504 h = shost_to_hba(shost);
505 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
506 (h->acciopath_status == 1) ? "enabled" : "disabled");
507}
508
Stephen M. Cameron46380782011-05-03 15:00:01 -0500509/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600510static u32 unresettable_controller[] = {
511 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500512 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600513 0x3223103C, /* Smart Array P800 */
514 0x3234103C, /* Smart Array P400 */
515 0x3235103C, /* Smart Array P400i */
516 0x3211103C, /* Smart Array E200i */
517 0x3212103C, /* Smart Array E200 */
518 0x3213103C, /* Smart Array E200i */
519 0x3214103C, /* Smart Array E200i */
520 0x3215103C, /* Smart Array E200i */
521 0x3237103C, /* Smart Array E500 */
522 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100523 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600524 0x409C0E11, /* Smart Array 6400 */
525 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100526 0x40700E11, /* Smart Array 5300 */
527 0x40820E11, /* Smart Array 532 */
528 0x40830E11, /* Smart Array 5312 */
529 0x409A0E11, /* Smart Array 641 */
530 0x409B0E11, /* Smart Array 642 */
531 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600532};
533
Stephen M. Cameron46380782011-05-03 15:00:01 -0500534/* List of controllers which cannot even be soft reset */
535static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100536 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100537 0x40700E11, /* Smart Array 5300 */
538 0x40820E11, /* Smart Array 532 */
539 0x40830E11, /* Smart Array 5312 */
540 0x409A0E11, /* Smart Array 641 */
541 0x409B0E11, /* Smart Array 642 */
542 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500543 /* Exclude 640x boards. These are two pci devices in one slot
544 * which share a battery backed cache module. One controls the
545 * cache, the other accesses the cache through the one that controls
546 * it. If we reset the one controlling the cache, the other will
547 * likely not be happy. Just forbid resetting this conjoined mess.
548 * The 640x isn't really supported by hpsa anyway.
549 */
550 0x409C0E11, /* Smart Array 6400 */
551 0x409D0E11, /* Smart Array 6400 EM */
552};
553
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500554static u32 needs_abort_tags_swizzled[] = {
555 0x323D103C, /* Smart Array P700m */
556 0x324a103C, /* Smart Array P712m */
557 0x324b103C, /* SmartArray P711m */
558};
559
560static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600561{
562 int i;
563
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500564 for (i = 0; i < nelems; i++)
565 if (a[i] == board_id)
566 return 1;
567 return 0;
568}
569
570static int ctlr_is_hard_resettable(u32 board_id)
571{
572 return !board_id_in_array(unresettable_controller,
573 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600574}
575
Stephen M. Cameron46380782011-05-03 15:00:01 -0500576static int ctlr_is_soft_resettable(u32 board_id)
577{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500578 return !board_id_in_array(soft_unresettable_controller,
579 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500580}
581
582static int ctlr_is_resettable(u32 board_id)
583{
584 return ctlr_is_hard_resettable(board_id) ||
585 ctlr_is_soft_resettable(board_id);
586}
587
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500588static int ctlr_needs_abort_tags_swizzled(u32 board_id)
589{
590 return board_id_in_array(needs_abort_tags_swizzled,
591 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
592}
593
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600594static ssize_t host_show_resettable(struct device *dev,
595 struct device_attribute *attr, char *buf)
596{
597 struct ctlr_info *h;
598 struct Scsi_Host *shost = class_to_shost(dev);
599
600 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500601 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600602}
603
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800604static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
605{
606 return (scsi3addr[3] & 0xC0) == 0x40;
607}
608
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600609static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
610 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800611};
Scott Teel6b80b182014-02-18 13:56:55 -0600612#define HPSA_RAID_0 0
613#define HPSA_RAID_4 1
614#define HPSA_RAID_1 2 /* also used for RAID 10 */
615#define HPSA_RAID_5 3 /* also used for RAID 50 */
616#define HPSA_RAID_51 4
617#define HPSA_RAID_6 5 /* also used for RAID 60 */
618#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800619#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
620
621static ssize_t raid_level_show(struct device *dev,
622 struct device_attribute *attr, char *buf)
623{
624 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600625 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800626 struct ctlr_info *h;
627 struct scsi_device *sdev;
628 struct hpsa_scsi_dev_t *hdev;
629 unsigned long flags;
630
631 sdev = to_scsi_device(dev);
632 h = sdev_to_hba(sdev);
633 spin_lock_irqsave(&h->lock, flags);
634 hdev = sdev->hostdata;
635 if (!hdev) {
636 spin_unlock_irqrestore(&h->lock, flags);
637 return -ENODEV;
638 }
639
640 /* Is this even a logical drive? */
641 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
642 spin_unlock_irqrestore(&h->lock, flags);
643 l = snprintf(buf, PAGE_SIZE, "N/A\n");
644 return l;
645 }
646
647 rlevel = hdev->raid_level;
648 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600649 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800650 rlevel = RAID_UNKNOWN;
651 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
652 return l;
653}
654
655static ssize_t lunid_show(struct device *dev,
656 struct device_attribute *attr, char *buf)
657{
658 struct ctlr_info *h;
659 struct scsi_device *sdev;
660 struct hpsa_scsi_dev_t *hdev;
661 unsigned long flags;
662 unsigned char lunid[8];
663
664 sdev = to_scsi_device(dev);
665 h = sdev_to_hba(sdev);
666 spin_lock_irqsave(&h->lock, flags);
667 hdev = sdev->hostdata;
668 if (!hdev) {
669 spin_unlock_irqrestore(&h->lock, flags);
670 return -ENODEV;
671 }
672 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
673 spin_unlock_irqrestore(&h->lock, flags);
674 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
675 lunid[0], lunid[1], lunid[2], lunid[3],
676 lunid[4], lunid[5], lunid[6], lunid[7]);
677}
678
679static ssize_t unique_id_show(struct device *dev,
680 struct device_attribute *attr, char *buf)
681{
682 struct ctlr_info *h;
683 struct scsi_device *sdev;
684 struct hpsa_scsi_dev_t *hdev;
685 unsigned long flags;
686 unsigned char sn[16];
687
688 sdev = to_scsi_device(dev);
689 h = sdev_to_hba(sdev);
690 spin_lock_irqsave(&h->lock, flags);
691 hdev = sdev->hostdata;
692 if (!hdev) {
693 spin_unlock_irqrestore(&h->lock, flags);
694 return -ENODEV;
695 }
696 memcpy(sn, hdev->device_id, sizeof(sn));
697 spin_unlock_irqrestore(&h->lock, flags);
698 return snprintf(buf, 16 * 2 + 2,
699 "%02X%02X%02X%02X%02X%02X%02X%02X"
700 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
701 sn[0], sn[1], sn[2], sn[3],
702 sn[4], sn[5], sn[6], sn[7],
703 sn[8], sn[9], sn[10], sn[11],
704 sn[12], sn[13], sn[14], sn[15]);
705}
706
Scott Teelc1988682014-02-18 13:55:54 -0600707static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
708 struct device_attribute *attr, char *buf)
709{
710 struct ctlr_info *h;
711 struct scsi_device *sdev;
712 struct hpsa_scsi_dev_t *hdev;
713 unsigned long flags;
714 int offload_enabled;
715
716 sdev = to_scsi_device(dev);
717 h = sdev_to_hba(sdev);
718 spin_lock_irqsave(&h->lock, flags);
719 hdev = sdev->hostdata;
720 if (!hdev) {
721 spin_unlock_irqrestore(&h->lock, flags);
722 return -ENODEV;
723 }
724 offload_enabled = hdev->offload_enabled;
725 spin_unlock_irqrestore(&h->lock, flags);
726 return snprintf(buf, 20, "%d\n", offload_enabled);
727}
728
Joe Handzik8270b862015-07-18 11:12:43 -0500729#define MAX_PATHS 8
730#define PATH_STRING_LEN 50
731
732static ssize_t path_info_show(struct device *dev,
733 struct device_attribute *attr, char *buf)
734{
735 struct ctlr_info *h;
736 struct scsi_device *sdev;
737 struct hpsa_scsi_dev_t *hdev;
738 unsigned long flags;
739 int i;
740 int output_len = 0;
741 u8 box;
742 u8 bay;
743 u8 path_map_index = 0;
744 char *active;
745 unsigned char phys_connector[2];
746 unsigned char path[MAX_PATHS][PATH_STRING_LEN];
747
748 memset(path, 0, MAX_PATHS * PATH_STRING_LEN);
749 sdev = to_scsi_device(dev);
750 h = sdev_to_hba(sdev);
751 spin_lock_irqsave(&h->devlock, flags);
752 hdev = sdev->hostdata;
753 if (!hdev) {
754 spin_unlock_irqrestore(&h->devlock, flags);
755 return -ENODEV;
756 }
757
758 bay = hdev->bay;
759 for (i = 0; i < MAX_PATHS; i++) {
760 path_map_index = 1<<i;
761 if (i == hdev->active_path_index)
762 active = "Active";
763 else if (hdev->path_map & path_map_index)
764 active = "Inactive";
765 else
766 continue;
767
768 output_len = snprintf(path[i],
769 PATH_STRING_LEN, "[%d:%d:%d:%d] %20.20s ",
770 h->scsi_host->host_no,
771 hdev->bus, hdev->target, hdev->lun,
772 scsi_device_type(hdev->devtype));
773
774 if (is_ext_target(h, hdev) ||
775 (hdev->devtype == TYPE_RAID) ||
776 is_logical_dev_addr_mode(hdev->scsi3addr)) {
777 output_len += snprintf(path[i] + output_len,
778 PATH_STRING_LEN, "%s\n",
779 active);
780 continue;
781 }
782
783 box = hdev->box[i];
784 memcpy(&phys_connector, &hdev->phys_connector[i],
785 sizeof(phys_connector));
786 if (phys_connector[0] < '0')
787 phys_connector[0] = '0';
788 if (phys_connector[1] < '0')
789 phys_connector[1] = '0';
790 if (hdev->phys_connector[i] > 0)
791 output_len += snprintf(path[i] + output_len,
792 PATH_STRING_LEN,
793 "PORT: %.2s ",
794 phys_connector);
Kevin Barnett2a168202015-11-04 15:51:21 -0600795 if (hdev->devtype == TYPE_DISK && hdev->expose_device) {
Joe Handzik8270b862015-07-18 11:12:43 -0500796 if (box == 0 || box == 0xFF) {
797 output_len += snprintf(path[i] + output_len,
798 PATH_STRING_LEN,
799 "BAY: %hhu %s\n",
800 bay, active);
801 } else {
802 output_len += snprintf(path[i] + output_len,
803 PATH_STRING_LEN,
804 "BOX: %hhu BAY: %hhu %s\n",
805 box, bay, active);
806 }
807 } else if (box != 0 && box != 0xFF) {
808 output_len += snprintf(path[i] + output_len,
809 PATH_STRING_LEN, "BOX: %hhu %s\n",
810 box, active);
811 } else
812 output_len += snprintf(path[i] + output_len,
813 PATH_STRING_LEN, "%s\n", active);
814 }
815
816 spin_unlock_irqrestore(&h->devlock, flags);
817 return snprintf(buf, output_len+1, "%s%s%s%s%s%s%s%s",
818 path[0], path[1], path[2], path[3],
819 path[4], path[5], path[6], path[7]);
820}
821
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600822static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
823static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
824static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
825static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600826static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
827 host_show_hp_ssd_smart_path_enabled, NULL);
Joe Handzik8270b862015-07-18 11:12:43 -0500828static DEVICE_ATTR(path_info, S_IRUGO, path_info_show, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600829static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
830 host_show_hp_ssd_smart_path_status,
831 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600832static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
833 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600834static DEVICE_ATTR(firmware_revision, S_IRUGO,
835 host_show_firmware_revision, NULL);
836static DEVICE_ATTR(commands_outstanding, S_IRUGO,
837 host_show_commands_outstanding, NULL);
838static DEVICE_ATTR(transport_mode, S_IRUGO,
839 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600840static DEVICE_ATTR(resettable, S_IRUGO,
841 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500842static DEVICE_ATTR(lockup_detected, S_IRUGO,
843 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600844
845static struct device_attribute *hpsa_sdev_attrs[] = {
846 &dev_attr_raid_level,
847 &dev_attr_lunid,
848 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600849 &dev_attr_hp_ssd_smart_path_enabled,
Joe Handzik8270b862015-07-18 11:12:43 -0500850 &dev_attr_path_info,
Stephen Camerone985c582015-04-23 09:32:22 -0500851 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600852 NULL,
853};
854
855static struct device_attribute *hpsa_shost_attrs[] = {
856 &dev_attr_rescan,
857 &dev_attr_firmware_revision,
858 &dev_attr_commands_outstanding,
859 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600860 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600861 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600862 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600863 NULL,
864};
865
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500866#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
867 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
868
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600869static struct scsi_host_template hpsa_driver_template = {
870 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600871 .name = HPSA,
872 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600873 .queuecommand = hpsa_scsi_queue_command,
874 .scan_start = hpsa_scan_start,
875 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600876 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600877 .this_id = -1,
878 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500879 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600880 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
881 .ioctl = hpsa_ioctl,
882 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500883 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600884 .slave_destroy = hpsa_slave_destroy,
885#ifdef CONFIG_COMPAT
886 .compat_ioctl = hpsa_compat_ioctl,
887#endif
888 .sdev_attrs = hpsa_sdev_attrs,
889 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500890 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400891 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600892};
893
Matt Gates254f7962012-05-01 11:43:06 -0500894static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600895{
896 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500897 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600898
Matt Gatese1f7de02014-02-18 13:55:17 -0600899 if (h->transMethod & CFGTBL_Trans_io_accel1)
900 return h->access.command_completed(h, q);
901
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600902 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500903 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600904
Matt Gates254f7962012-05-01 11:43:06 -0500905 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
906 a = rq->head[rq->current_entry];
907 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600908 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600909 } else {
910 a = FIFO_EMPTY;
911 }
912 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500913 if (rq->current_entry == h->max_commands) {
914 rq->current_entry = 0;
915 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600916 }
917 return a;
918}
919
Scott Teelc3497752014-02-18 13:56:34 -0600920/*
921 * There are some special bits in the bus address of the
922 * command that we have to set for the controller to know
923 * how to process the command:
924 *
925 * Normal performant mode:
926 * bit 0: 1 means performant mode, 0 means simple mode.
927 * bits 1-3 = block fetch table entry
928 * bits 4-6 = command type (== 0)
929 *
930 * ioaccel1 mode:
931 * bit 0 = "performant mode" bit.
932 * bits 1-3 = block fetch table entry
933 * bits 4-6 = command type (== 110)
934 * (command type is needed because ioaccel1 mode
935 * commands are submitted through the same register as normal
936 * mode commands, so this is how the controller knows whether
937 * the command is normal mode or ioaccel1 mode.)
938 *
939 * ioaccel2 mode:
940 * bit 0 = "performant mode" bit.
941 * bits 1-4 = block fetch table entry (note extra bit)
942 * bits 4-6 = not needed, because ioaccel2 mode has
943 * a separate special register for submitting commands.
944 */
945
Webb Scales25163bd2015-04-23 09:32:00 -0500946/*
947 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600948 * set bit 0 for pull model, bits 3-1 for block fetch
949 * register number
950 */
Webb Scales25163bd2015-04-23 09:32:00 -0500951#define DEFAULT_REPLY_QUEUE (-1)
952static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
953 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600954{
Matt Gates254f7962012-05-01 11:43:06 -0500955 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600956 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -0500957 if (unlikely(!h->msix_vector))
958 return;
959 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -0500960 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200961 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -0500962 else
963 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500964 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600965}
966
Scott Teelc3497752014-02-18 13:56:34 -0600967static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500968 struct CommandList *c,
969 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600970{
971 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
972
Webb Scales25163bd2015-04-23 09:32:00 -0500973 /*
974 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600975 * processor. This seems to give the best I/O throughput.
976 */
Webb Scales25163bd2015-04-23 09:32:00 -0500977 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
978 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
979 else
980 cp->ReplyQueue = reply_queue % h->nreply_queues;
981 /*
982 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600983 * - performant mode bit (bit 0)
984 * - pull count (bits 1-3)
985 * - command type (bits 4-6)
986 */
987 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
988 IOACCEL1_BUSADDR_CMDTYPE;
989}
990
Stephen Cameron8be986c2015-04-23 09:34:06 -0500991static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
992 struct CommandList *c,
993 int reply_queue)
994{
995 struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
996 &h->ioaccel2_cmd_pool[c->cmdindex];
997
998 /* Tell the controller to post the reply to the queue for this
999 * processor. This seems to give the best I/O throughput.
1000 */
1001 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1002 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1003 else
1004 cp->reply_queue = reply_queue % h->nreply_queues;
1005 /* Set the bits in the address sent down to include:
1006 * - performant mode bit not used in ioaccel mode 2
1007 * - pull count (bits 0-3)
1008 * - command type isn't needed for ioaccel2
1009 */
1010 c->busaddr |= h->ioaccel2_blockFetchTable[0];
1011}
1012
Scott Teelc3497752014-02-18 13:56:34 -06001013static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001014 struct CommandList *c,
1015 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001016{
1017 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
1018
Webb Scales25163bd2015-04-23 09:32:00 -05001019 /*
1020 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001021 * processor. This seems to give the best I/O throughput.
1022 */
Webb Scales25163bd2015-04-23 09:32:00 -05001023 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1024 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1025 else
1026 cp->reply_queue = reply_queue % h->nreply_queues;
1027 /*
1028 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001029 * - performant mode bit not used in ioaccel mode 2
1030 * - pull count (bits 0-3)
1031 * - command type isn't needed for ioaccel2
1032 */
1033 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
1034}
1035
Stephen M. Camerone85c5972012-05-01 11:43:42 -05001036static int is_firmware_flash_cmd(u8 *cdb)
1037{
1038 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
1039}
1040
1041/*
1042 * During firmware flash, the heartbeat register may not update as frequently
1043 * as it should. So we dial down lockup detection during firmware flash. and
1044 * dial it back up when firmware flash completes.
1045 */
1046#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
1047#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
1048static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
1049 struct CommandList *c)
1050{
1051 if (!is_firmware_flash_cmd(c->Request.CDB))
1052 return;
1053 atomic_inc(&h->firmware_flash_in_progress);
1054 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
1055}
1056
1057static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
1058 struct CommandList *c)
1059{
1060 if (is_firmware_flash_cmd(c->Request.CDB) &&
1061 atomic_dec_and_test(&h->firmware_flash_in_progress))
1062 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
1063}
1064
Webb Scales25163bd2015-04-23 09:32:00 -05001065static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
1066 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001067{
Stephen Cameronc05e8862015-01-23 16:44:40 -06001068 dial_down_lockup_detection_during_fw_flash(h, c);
1069 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -06001070 switch (c->cmd_type) {
1071 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -05001072 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001073 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -06001074 break;
1075 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -05001076 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001077 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -06001078 break;
Stephen Cameron8be986c2015-04-23 09:34:06 -05001079 case IOACCEL2_TMF:
1080 set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
1081 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
1082 break;
Scott Teelc3497752014-02-18 13:56:34 -06001083 default:
Webb Scales25163bd2015-04-23 09:32:00 -05001084 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001085 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06001086 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001087}
1088
Webb Scalesa58e7e52015-04-23 09:34:16 -05001089static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c)
Webb Scales25163bd2015-04-23 09:32:00 -05001090{
Webb Scalesd604f532015-04-23 09:35:22 -05001091 if (unlikely(hpsa_is_pending_event(c)))
Webb Scalesa58e7e52015-04-23 09:34:16 -05001092 return finish_cmd(c);
1093
Webb Scales25163bd2015-04-23 09:32:00 -05001094 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
1095}
1096
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001097static inline int is_hba_lunid(unsigned char scsi3addr[])
1098{
1099 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
1100}
1101
1102static inline int is_scsi_rev_5(struct ctlr_info *h)
1103{
1104 if (!h->hba_inquiry_data)
1105 return 0;
1106 if ((h->hba_inquiry_data[2] & 0x07) == 5)
1107 return 1;
1108 return 0;
1109}
1110
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001111static int hpsa_find_target_lun(struct ctlr_info *h,
1112 unsigned char scsi3addr[], int bus, int *target, int *lun)
1113{
1114 /* finds an unused bus, target, lun for a new physical device
1115 * assumes h->devlock is held
1116 */
1117 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -05001118 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001119
Akinobu Mita263d9402012-01-21 00:15:27 +09001120 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001121
1122 for (i = 0; i < h->ndevices; i++) {
1123 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +09001124 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001125 }
1126
Akinobu Mita263d9402012-01-21 00:15:27 +09001127 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
1128 if (i < HPSA_MAX_DEVICES) {
1129 /* *bus = 1; */
1130 *target = i;
1131 *lun = 0;
1132 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001133 }
1134 return !found;
1135}
1136
Don Brace1d33d852015-11-04 15:50:31 -06001137static void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
Webb Scales0d96ef52015-04-23 09:31:55 -05001138 struct hpsa_scsi_dev_t *dev, char *description)
1139{
Don Brace9975ec92015-11-04 15:50:25 -06001140 if (h == NULL || h->pdev == NULL || h->scsi_host == NULL)
1141 return;
1142
Webb Scales0d96ef52015-04-23 09:31:55 -05001143 dev_printk(level, &h->pdev->dev,
1144 "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
1145 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
1146 description,
1147 scsi_device_type(dev->devtype),
1148 dev->vendor,
1149 dev->model,
1150 dev->raid_level > RAID_UNKNOWN ?
1151 "RAID-?" : raid_label[dev->raid_level],
1152 dev->offload_config ? '+' : '-',
1153 dev->offload_enabled ? '+' : '-',
Kevin Barnett2a168202015-11-04 15:51:21 -06001154 dev->expose_device);
Webb Scales0d96ef52015-04-23 09:31:55 -05001155}
1156
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001157/* Add an entry into h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001158static int hpsa_scsi_add_entry(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001159 struct hpsa_scsi_dev_t *device,
1160 struct hpsa_scsi_dev_t *added[], int *nadded)
1161{
1162 /* assumes h->devlock is held */
1163 int n = h->ndevices;
1164 int i;
1165 unsigned char addr1[8], addr2[8];
1166 struct hpsa_scsi_dev_t *sd;
1167
Scott Teelcfe5bad2011-10-26 16:21:07 -05001168 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001169 dev_err(&h->pdev->dev, "too many devices, some will be "
1170 "inaccessible.\n");
1171 return -1;
1172 }
1173
1174 /* physical devices do not have lun or target assigned until now. */
1175 if (device->lun != -1)
1176 /* Logical device, lun is already assigned. */
1177 goto lun_assigned;
1178
1179 /* If this device a non-zero lun of a multi-lun device
1180 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001181 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001182 */
1183 if (device->scsi3addr[4] == 0) {
1184 /* This is not a non-zero lun of a multi-lun device */
1185 if (hpsa_find_target_lun(h, device->scsi3addr,
1186 device->bus, &device->target, &device->lun) != 0)
1187 return -1;
1188 goto lun_assigned;
1189 }
1190
1191 /* This is a non-zero lun of a multi-lun device.
1192 * Search through our list and find the device which
shane.seymour9a4178b2015-07-18 11:13:09 -05001193 * has the same 8 byte LUN address, excepting byte 4 and 5.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001194 * Assign the same bus and target for this new LUN.
1195 * Use the logical unit number from the firmware.
1196 */
1197 memcpy(addr1, device->scsi3addr, 8);
1198 addr1[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001199 addr1[5] = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001200 for (i = 0; i < n; i++) {
1201 sd = h->dev[i];
1202 memcpy(addr2, sd->scsi3addr, 8);
1203 addr2[4] = 0;
shane.seymour9a4178b2015-07-18 11:13:09 -05001204 addr2[5] = 0;
1205 /* differ only in byte 4 and 5? */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001206 if (memcmp(addr1, addr2, 8) == 0) {
1207 device->bus = sd->bus;
1208 device->target = sd->target;
1209 device->lun = device->scsi3addr[4];
1210 break;
1211 }
1212 }
1213 if (device->lun == -1) {
1214 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1215 " suspect firmware bug or unsupported hardware "
1216 "configuration.\n");
1217 return -1;
1218 }
1219
1220lun_assigned:
1221
1222 h->dev[n] = device;
1223 h->ndevices++;
1224 added[*nadded] = device;
1225 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001226 hpsa_show_dev_msg(KERN_INFO, h, device,
Kevin Barnett2a168202015-11-04 15:51:21 -06001227 device->expose_device ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001228 device->offload_to_be_enabled = device->offload_enabled;
1229 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001230 return 0;
1231}
1232
Scott Teelbd9244f2012-01-19 14:01:30 -06001233/* Update an entry in h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001234static void hpsa_scsi_update_entry(struct ctlr_info *h,
Scott Teelbd9244f2012-01-19 14:01:30 -06001235 int entry, struct hpsa_scsi_dev_t *new_entry)
1236{
Robert Elliotta473d862015-04-23 09:32:54 -05001237 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001238 /* assumes h->devlock is held */
1239 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1240
1241 /* Raid level changed. */
1242 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001243
Don Brace03383732015-01-23 16:43:30 -06001244 /* Raid offload parameters changed. Careful about the ordering. */
1245 if (new_entry->offload_config && new_entry->offload_enabled) {
1246 /*
1247 * if drive is newly offload_enabled, we want to copy the
1248 * raid map data first. If previously offload_enabled and
1249 * offload_config were set, raid map data had better be
1250 * the same as it was before. if raid map data is changed
1251 * then it had better be the case that
1252 * h->dev[entry]->offload_enabled is currently 0.
1253 */
1254 h->dev[entry]->raid_map = new_entry->raid_map;
1255 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001256 }
Joe Handzika3144e02015-04-23 09:32:59 -05001257 if (new_entry->hba_ioaccel_enabled) {
1258 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1259 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1260 }
1261 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001262 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001263 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001264 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001265
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001266 /*
1267 * We can turn off ioaccel offload now, but need to delay turning
1268 * it on until we can update h->dev[entry]->phys_disk[], but we
1269 * can't do that until all the devices are updated.
1270 */
1271 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1272 if (!new_entry->offload_enabled)
1273 h->dev[entry]->offload_enabled = 0;
1274
Robert Elliotta473d862015-04-23 09:32:54 -05001275 offload_enabled = h->dev[entry]->offload_enabled;
1276 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001277 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001278 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001279}
1280
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001281/* Replace an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001282static void hpsa_scsi_replace_entry(struct ctlr_info *h,
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001283 int entry, struct hpsa_scsi_dev_t *new_entry,
1284 struct hpsa_scsi_dev_t *added[], int *nadded,
1285 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1286{
1287 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001288 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001289 removed[*nremoved] = h->dev[entry];
1290 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001291
1292 /*
1293 * New physical devices won't have target/lun assigned yet
1294 * so we need to preserve the values in the slot we are replacing.
1295 */
1296 if (new_entry->target == -1) {
1297 new_entry->target = h->dev[entry]->target;
1298 new_entry->lun = h->dev[entry]->lun;
1299 }
1300
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001301 h->dev[entry] = new_entry;
1302 added[*nadded] = new_entry;
1303 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001304 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001305 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1306 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001307}
1308
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001309/* Remove an entry from h->dev[] array. */
Don Brace8aa60682015-11-04 15:50:01 -06001310static void hpsa_scsi_remove_entry(struct ctlr_info *h, int entry,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001311 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1312{
1313 /* assumes h->devlock is held */
1314 int i;
1315 struct hpsa_scsi_dev_t *sd;
1316
Scott Teelcfe5bad2011-10-26 16:21:07 -05001317 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001318
1319 sd = h->dev[entry];
1320 removed[*nremoved] = h->dev[entry];
1321 (*nremoved)++;
1322
1323 for (i = entry; i < h->ndevices-1; i++)
1324 h->dev[i] = h->dev[i+1];
1325 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001326 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001327}
1328
1329#define SCSI3ADDR_EQ(a, b) ( \
1330 (a)[7] == (b)[7] && \
1331 (a)[6] == (b)[6] && \
1332 (a)[5] == (b)[5] && \
1333 (a)[4] == (b)[4] && \
1334 (a)[3] == (b)[3] && \
1335 (a)[2] == (b)[2] && \
1336 (a)[1] == (b)[1] && \
1337 (a)[0] == (b)[0])
1338
1339static void fixup_botched_add(struct ctlr_info *h,
1340 struct hpsa_scsi_dev_t *added)
1341{
1342 /* called when scsi_add_device fails in order to re-adjust
1343 * h->dev[] to match the mid layer's view.
1344 */
1345 unsigned long flags;
1346 int i, j;
1347
1348 spin_lock_irqsave(&h->lock, flags);
1349 for (i = 0; i < h->ndevices; i++) {
1350 if (h->dev[i] == added) {
1351 for (j = i; j < h->ndevices-1; j++)
1352 h->dev[j] = h->dev[j+1];
1353 h->ndevices--;
1354 break;
1355 }
1356 }
1357 spin_unlock_irqrestore(&h->lock, flags);
1358 kfree(added);
1359}
1360
1361static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1362 struct hpsa_scsi_dev_t *dev2)
1363{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001364 /* we compare everything except lun and target as these
1365 * are not yet assigned. Compare parts likely
1366 * to differ first
1367 */
1368 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1369 sizeof(dev1->scsi3addr)) != 0)
1370 return 0;
1371 if (memcmp(dev1->device_id, dev2->device_id,
1372 sizeof(dev1->device_id)) != 0)
1373 return 0;
1374 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1375 return 0;
1376 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1377 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001378 if (dev1->devtype != dev2->devtype)
1379 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001380 if (dev1->bus != dev2->bus)
1381 return 0;
1382 return 1;
1383}
1384
Scott Teelbd9244f2012-01-19 14:01:30 -06001385static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1386 struct hpsa_scsi_dev_t *dev2)
1387{
1388 /* Device attributes that can change, but don't mean
1389 * that the device is a different device, nor that the OS
1390 * needs to be told anything about the change.
1391 */
1392 if (dev1->raid_level != dev2->raid_level)
1393 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001394 if (dev1->offload_config != dev2->offload_config)
1395 return 1;
1396 if (dev1->offload_enabled != dev2->offload_enabled)
1397 return 1;
Don Brace93849502015-07-18 11:12:49 -05001398 if (!is_logical_dev_addr_mode(dev1->scsi3addr))
1399 if (dev1->queue_depth != dev2->queue_depth)
1400 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001401 return 0;
1402}
1403
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001404/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1405 * and return needle location in *index. If scsi3addr matches, but not
1406 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001407 * location in *index.
1408 * In the case of a minor device attribute change, such as RAID level, just
1409 * return DEVICE_UPDATED, along with the updated device's location in index.
1410 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001411 */
1412static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1413 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1414 int *index)
1415{
1416 int i;
1417#define DEVICE_NOT_FOUND 0
1418#define DEVICE_CHANGED 1
1419#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001420#define DEVICE_UPDATED 3
Don Brace1d33d852015-11-04 15:50:31 -06001421 if (needle == NULL)
1422 return DEVICE_NOT_FOUND;
1423
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001424 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001425 if (haystack[i] == NULL) /* previously removed. */
1426 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001427 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1428 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001429 if (device_is_the_same(needle, haystack[i])) {
1430 if (device_updated(needle, haystack[i]))
1431 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001432 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001433 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001434 /* Keep offline devices offline */
1435 if (needle->volume_offline)
1436 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001437 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001438 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001439 }
1440 }
1441 *index = -1;
1442 return DEVICE_NOT_FOUND;
1443}
1444
Stephen M. Cameron98465902014-02-21 16:25:00 -06001445static void hpsa_monitor_offline_device(struct ctlr_info *h,
1446 unsigned char scsi3addr[])
1447{
1448 struct offline_device_entry *device;
1449 unsigned long flags;
1450
1451 /* Check to see if device is already on the list */
1452 spin_lock_irqsave(&h->offline_device_lock, flags);
1453 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1454 if (memcmp(device->scsi3addr, scsi3addr,
1455 sizeof(device->scsi3addr)) == 0) {
1456 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1457 return;
1458 }
1459 }
1460 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1461
1462 /* Device is not on the list, add it. */
1463 device = kmalloc(sizeof(*device), GFP_KERNEL);
1464 if (!device) {
1465 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1466 return;
1467 }
1468 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1469 spin_lock_irqsave(&h->offline_device_lock, flags);
1470 list_add_tail(&device->offline_list, &h->offline_device_list);
1471 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1472}
1473
1474/* Print a message explaining various offline volume states */
1475static void hpsa_show_volume_status(struct ctlr_info *h,
1476 struct hpsa_scsi_dev_t *sd)
1477{
1478 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1479 dev_info(&h->pdev->dev,
1480 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1481 h->scsi_host->host_no,
1482 sd->bus, sd->target, sd->lun);
1483 switch (sd->volume_offline) {
1484 case HPSA_LV_OK:
1485 break;
1486 case HPSA_LV_UNDERGOING_ERASE:
1487 dev_info(&h->pdev->dev,
1488 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1489 h->scsi_host->host_no,
1490 sd->bus, sd->target, sd->lun);
1491 break;
Scott Benesh5ca01202015-07-18 11:13:04 -05001492 case HPSA_LV_NOT_AVAILABLE:
1493 dev_info(&h->pdev->dev,
1494 "C%d:B%d:T%d:L%d Volume is waiting for transforming volume.\n",
1495 h->scsi_host->host_no,
1496 sd->bus, sd->target, sd->lun);
1497 break;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001498 case HPSA_LV_UNDERGOING_RPI:
1499 dev_info(&h->pdev->dev,
Scott Benesh5ca01202015-07-18 11:13:04 -05001500 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity init.\n",
Stephen M. Cameron98465902014-02-21 16:25:00 -06001501 h->scsi_host->host_no,
1502 sd->bus, sd->target, sd->lun);
1503 break;
1504 case HPSA_LV_PENDING_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 queued for rapid parity initialization process.\n",
1507 h->scsi_host->host_no,
1508 sd->bus, sd->target, sd->lun);
Stephen M. Cameron98465902014-02-21 16:25:00 -06001509 break;
1510 case HPSA_LV_ENCRYPTED_NO_KEY:
1511 dev_info(&h->pdev->dev,
1512 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1513 h->scsi_host->host_no,
1514 sd->bus, sd->target, sd->lun);
1515 break;
1516 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1517 dev_info(&h->pdev->dev,
1518 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1519 h->scsi_host->host_no,
1520 sd->bus, sd->target, sd->lun);
1521 break;
1522 case HPSA_LV_UNDERGOING_ENCRYPTION:
1523 dev_info(&h->pdev->dev,
1524 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1525 h->scsi_host->host_no,
1526 sd->bus, sd->target, sd->lun);
1527 break;
1528 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1529 dev_info(&h->pdev->dev,
1530 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1531 h->scsi_host->host_no,
1532 sd->bus, sd->target, sd->lun);
1533 break;
1534 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1535 dev_info(&h->pdev->dev,
1536 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1537 h->scsi_host->host_no,
1538 sd->bus, sd->target, sd->lun);
1539 break;
1540 case HPSA_LV_PENDING_ENCRYPTION:
1541 dev_info(&h->pdev->dev,
1542 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1543 h->scsi_host->host_no,
1544 sd->bus, sd->target, sd->lun);
1545 break;
1546 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1547 dev_info(&h->pdev->dev,
1548 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1549 h->scsi_host->host_no,
1550 sd->bus, sd->target, sd->lun);
1551 break;
1552 }
1553}
1554
Don Brace03383732015-01-23 16:43:30 -06001555/*
1556 * Figure the list of physical drive pointers for a logical drive with
1557 * raid offload configured.
1558 */
1559static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1560 struct hpsa_scsi_dev_t *dev[], int ndevices,
1561 struct hpsa_scsi_dev_t *logical_drive)
1562{
1563 struct raid_map_data *map = &logical_drive->raid_map;
1564 struct raid_map_disk_data *dd = &map->data[0];
1565 int i, j;
1566 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1567 le16_to_cpu(map->metadata_disks_per_row);
1568 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1569 le16_to_cpu(map->layout_map_count) *
1570 total_disks_per_row;
1571 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1572 total_disks_per_row;
1573 int qdepth;
1574
1575 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1576 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1577
Webb Scalesd604f532015-04-23 09:35:22 -05001578 logical_drive->nphysical_disks = nraid_map_entries;
1579
Don Brace03383732015-01-23 16:43:30 -06001580 qdepth = 0;
1581 for (i = 0; i < nraid_map_entries; i++) {
1582 logical_drive->phys_disk[i] = NULL;
1583 if (!logical_drive->offload_config)
1584 continue;
1585 for (j = 0; j < ndevices; j++) {
Don Brace1d33d852015-11-04 15:50:31 -06001586 if (dev[j] == NULL)
1587 continue;
Don Brace03383732015-01-23 16:43:30 -06001588 if (dev[j]->devtype != TYPE_DISK)
1589 continue;
1590 if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
1591 continue;
1592 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1593 continue;
1594
1595 logical_drive->phys_disk[i] = dev[j];
1596 if (i < nphys_disk)
1597 qdepth = min(h->nr_cmds, qdepth +
1598 logical_drive->phys_disk[i]->queue_depth);
1599 break;
1600 }
1601
1602 /*
1603 * This can happen if a physical drive is removed and
1604 * the logical drive is degraded. In that case, the RAID
1605 * map data will refer to a physical disk which isn't actually
1606 * present. And in that case offload_enabled should already
1607 * be 0, but we'll turn it off here just in case
1608 */
1609 if (!logical_drive->phys_disk[i]) {
1610 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001611 logical_drive->offload_to_be_enabled = 0;
1612 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001613 }
1614 }
1615 if (nraid_map_entries)
1616 /*
1617 * This is correct for reads, too high for full stripe writes,
1618 * way too high for partial stripe writes
1619 */
1620 logical_drive->queue_depth = qdepth;
1621 else
1622 logical_drive->queue_depth = h->nr_cmds;
1623}
1624
1625static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1626 struct hpsa_scsi_dev_t *dev[], int ndevices)
1627{
1628 int i;
1629
1630 for (i = 0; i < ndevices; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001631 if (dev[i] == NULL)
1632 continue;
Don Brace03383732015-01-23 16:43:30 -06001633 if (dev[i]->devtype != TYPE_DISK)
1634 continue;
1635 if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
1636 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001637
1638 /*
1639 * If offload is currently enabled, the RAID map and
1640 * phys_disk[] assignment *better* not be changing
1641 * and since it isn't changing, we do not need to
1642 * update it.
1643 */
1644 if (dev[i]->offload_enabled)
1645 continue;
1646
Don Brace03383732015-01-23 16:43:30 -06001647 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1648 }
1649}
1650
Don Brace8aa60682015-11-04 15:50:01 -06001651static void adjust_hpsa_scsi_table(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001652 struct hpsa_scsi_dev_t *sd[], int nsds)
1653{
1654 /* sd contains scsi3 addresses and devtypes, and inquiry
1655 * data. This function takes what's in sd to be the current
1656 * reality and updates h->dev[] to reflect that reality.
1657 */
1658 int i, entry, device_change, changes = 0;
1659 struct hpsa_scsi_dev_t *csd;
1660 unsigned long flags;
1661 struct hpsa_scsi_dev_t **added, **removed;
1662 int nadded, nremoved;
1663 struct Scsi_Host *sh = NULL;
1664
Don Braceda03ded2015-11-04 15:50:56 -06001665 /*
1666 * A reset can cause a device status to change
1667 * re-schedule the scan to see what happened.
1668 */
1669 if (h->reset_in_progress) {
1670 h->drv_req_rescan = 1;
1671 return;
1672 }
1673
Scott Teelcfe5bad2011-10-26 16:21:07 -05001674 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1675 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001676
1677 if (!added || !removed) {
1678 dev_warn(&h->pdev->dev, "out of memory in "
1679 "adjust_hpsa_scsi_table\n");
1680 goto free_and_out;
1681 }
1682
1683 spin_lock_irqsave(&h->devlock, flags);
1684
1685 /* find any devices in h->dev[] that are not in
1686 * sd[] and remove them from h->dev[], and for any
1687 * devices which have changed, remove the old device
1688 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001689 * If minor device attributes change, just update
1690 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001691 */
1692 i = 0;
1693 nremoved = 0;
1694 nadded = 0;
1695 while (i < h->ndevices) {
1696 csd = h->dev[i];
1697 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1698 if (device_change == DEVICE_NOT_FOUND) {
1699 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001700 hpsa_scsi_remove_entry(h, i, removed, &nremoved);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001701 continue; /* remove ^^^, hence i not incremented */
1702 } else if (device_change == DEVICE_CHANGED) {
1703 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001704 hpsa_scsi_replace_entry(h, i, sd[entry],
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001705 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001706 /* Set it to NULL to prevent it from being freed
1707 * at the bottom of hpsa_update_scsi_devices()
1708 */
1709 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001710 } else if (device_change == DEVICE_UPDATED) {
Don Brace8aa60682015-11-04 15:50:01 -06001711 hpsa_scsi_update_entry(h, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001712 }
1713 i++;
1714 }
1715
1716 /* Now, make sure every device listed in sd[] is also
1717 * listed in h->dev[], adding them if they aren't found
1718 */
1719
1720 for (i = 0; i < nsds; i++) {
1721 if (!sd[i]) /* if already added above. */
1722 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001723
1724 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1725 * as the SCSI mid-layer does not handle such devices well.
1726 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1727 * at 160Hz, and prevents the system from coming up.
1728 */
1729 if (sd[i]->volume_offline) {
1730 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001731 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001732 continue;
1733 }
1734
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001735 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1736 h->ndevices, &entry);
1737 if (device_change == DEVICE_NOT_FOUND) {
1738 changes++;
Don Brace8aa60682015-11-04 15:50:01 -06001739 if (hpsa_scsi_add_entry(h, sd[i], added, &nadded) != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001740 break;
1741 sd[i] = NULL; /* prevent from being freed later. */
1742 } else if (device_change == DEVICE_CHANGED) {
1743 /* should never happen... */
1744 changes++;
1745 dev_warn(&h->pdev->dev,
1746 "device unexpectedly changed.\n");
1747 /* but if it does happen, we just ignore that device */
1748 }
1749 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001750 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1751
1752 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1753 * any logical drives that need it enabled.
1754 */
Don Brace1d33d852015-11-04 15:50:31 -06001755 for (i = 0; i < h->ndevices; i++) {
1756 if (h->dev[i] == NULL)
1757 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001758 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
Don Brace1d33d852015-11-04 15:50:31 -06001759 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001760
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001761 spin_unlock_irqrestore(&h->devlock, flags);
1762
Stephen M. Cameron98465902014-02-21 16:25:00 -06001763 /* Monitor devices which are in one of several NOT READY states to be
1764 * brought online later. This must be done without holding h->devlock,
1765 * so don't touch h->dev[]
1766 */
1767 for (i = 0; i < nsds; i++) {
1768 if (!sd[i]) /* if already added above. */
1769 continue;
1770 if (sd[i]->volume_offline)
1771 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1772 }
1773
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001774 /* Don't notify scsi mid layer of any changes the first time through
1775 * (or if there are no changes) scsi_scan_host will do it later the
1776 * first time through.
1777 */
Don Brace8aa60682015-11-04 15:50:01 -06001778 if (!changes)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001779 goto free_and_out;
1780
1781 sh = h->scsi_host;
Don Braceda03ded2015-11-04 15:50:56 -06001782 if (sh == NULL) {
1783 dev_warn(&h->pdev->dev, "%s: scsi_host is null\n", __func__);
1784 goto free_and_out;
1785 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001786 /* Notify scsi mid layer of any removed devices */
1787 for (i = 0; i < nremoved; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001788 if (removed[i] == NULL)
1789 continue;
Kevin Barnett2a168202015-11-04 15:51:21 -06001790 if (removed[i]->expose_device) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001791 struct scsi_device *sdev =
1792 scsi_device_lookup(sh, removed[i]->bus,
1793 removed[i]->target, removed[i]->lun);
1794 if (sdev != NULL) {
1795 scsi_remove_device(sdev);
1796 scsi_device_put(sdev);
1797 } else {
1798 /*
1799 * We don't expect to get here.
1800 * future cmds to this device will get selection
1801 * timeout as if the device was gone.
1802 */
Webb Scales0d96ef52015-04-23 09:31:55 -05001803 hpsa_show_dev_msg(KERN_WARNING, h, removed[i],
1804 "didn't find device for removal.");
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001805 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001806 }
1807 kfree(removed[i]);
1808 removed[i] = NULL;
1809 }
1810
1811 /* Notify scsi mid layer of any added devices */
1812 for (i = 0; i < nadded; i++) {
Don Brace1d33d852015-11-04 15:50:31 -06001813 if (added[i] == NULL)
1814 continue;
Kevin Barnett2a168202015-11-04 15:51:21 -06001815 if (!(added[i]->expose_device))
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001816 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001817 if (scsi_add_device(sh, added[i]->bus,
1818 added[i]->target, added[i]->lun) == 0)
1819 continue;
Don Brace1d33d852015-11-04 15:50:31 -06001820 dev_warn(&h->pdev->dev, "addition failed, device not added.");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001821 /* now we have to remove it from h->dev,
1822 * since it didn't get added to scsi mid layer
1823 */
1824 fixup_botched_add(h, added[i]);
Don Brace853633e2015-11-04 15:50:37 -06001825 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001826 }
1827
1828free_and_out:
1829 kfree(added);
1830 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001831}
1832
1833/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001834 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001835 * Assume's h->devlock is held.
1836 */
1837static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1838 int bus, int target, int lun)
1839{
1840 int i;
1841 struct hpsa_scsi_dev_t *sd;
1842
1843 for (i = 0; i < h->ndevices; i++) {
1844 sd = h->dev[i];
1845 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1846 return sd;
1847 }
1848 return NULL;
1849}
1850
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001851static int hpsa_slave_alloc(struct scsi_device *sdev)
1852{
1853 struct hpsa_scsi_dev_t *sd;
1854 unsigned long flags;
1855 struct ctlr_info *h;
1856
1857 h = sdev_to_hba(sdev);
1858 spin_lock_irqsave(&h->devlock, flags);
1859 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1860 sdev_id(sdev), sdev->lun);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001861 if (likely(sd)) {
Don Brace03383732015-01-23 16:43:30 -06001862 atomic_set(&sd->ioaccel_cmds_out, 0);
Kevin Barnett2a168202015-11-04 15:51:21 -06001863 sdev->hostdata = sd->expose_device ? sd : NULL;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001864 } else
1865 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001866 spin_unlock_irqrestore(&h->devlock, flags);
1867 return 0;
1868}
1869
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001870/* configure scsi device based on internal per-device structure */
1871static int hpsa_slave_configure(struct scsi_device *sdev)
1872{
1873 struct hpsa_scsi_dev_t *sd;
1874 int queue_depth;
1875
1876 sd = sdev->hostdata;
Kevin Barnett2a168202015-11-04 15:51:21 -06001877 sdev->no_uld_attach = !sd || !sd->expose_device;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001878
1879 if (sd)
1880 queue_depth = sd->queue_depth != 0 ?
1881 sd->queue_depth : sdev->host->can_queue;
1882 else
1883 queue_depth = sdev->host->can_queue;
1884
1885 scsi_change_queue_depth(sdev, queue_depth);
1886
1887 return 0;
1888}
1889
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001890static void hpsa_slave_destroy(struct scsi_device *sdev)
1891{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001892 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001893}
1894
Webb Scalesd9a729f2015-04-23 09:33:27 -05001895static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1896{
1897 int i;
1898
1899 if (!h->ioaccel2_cmd_sg_list)
1900 return;
1901 for (i = 0; i < h->nr_cmds; i++) {
1902 kfree(h->ioaccel2_cmd_sg_list[i]);
1903 h->ioaccel2_cmd_sg_list[i] = NULL;
1904 }
1905 kfree(h->ioaccel2_cmd_sg_list);
1906 h->ioaccel2_cmd_sg_list = NULL;
1907}
1908
1909static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1910{
1911 int i;
1912
1913 if (h->chainsize <= 0)
1914 return 0;
1915
1916 h->ioaccel2_cmd_sg_list =
1917 kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
1918 GFP_KERNEL);
1919 if (!h->ioaccel2_cmd_sg_list)
1920 return -ENOMEM;
1921 for (i = 0; i < h->nr_cmds; i++) {
1922 h->ioaccel2_cmd_sg_list[i] =
1923 kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
1924 h->maxsgentries, GFP_KERNEL);
1925 if (!h->ioaccel2_cmd_sg_list[i])
1926 goto clean;
1927 }
1928 return 0;
1929
1930clean:
1931 hpsa_free_ioaccel2_sg_chain_blocks(h);
1932 return -ENOMEM;
1933}
1934
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001935static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1936{
1937 int i;
1938
1939 if (!h->cmd_sg_list)
1940 return;
1941 for (i = 0; i < h->nr_cmds; i++) {
1942 kfree(h->cmd_sg_list[i]);
1943 h->cmd_sg_list[i] = NULL;
1944 }
1945 kfree(h->cmd_sg_list);
1946 h->cmd_sg_list = NULL;
1947}
1948
Robert Elliott105a3db2015-04-23 09:33:48 -05001949static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001950{
1951 int i;
1952
1953 if (h->chainsize <= 0)
1954 return 0;
1955
1956 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1957 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001958 if (!h->cmd_sg_list) {
1959 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001960 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001961 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001962 for (i = 0; i < h->nr_cmds; i++) {
1963 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1964 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001965 if (!h->cmd_sg_list[i]) {
1966 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001967 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001968 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001969 }
1970 return 0;
1971
1972clean:
1973 hpsa_free_sg_chain_blocks(h);
1974 return -ENOMEM;
1975}
1976
Webb Scalesd9a729f2015-04-23 09:33:27 -05001977static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
1978 struct io_accel2_cmd *cp, struct CommandList *c)
1979{
1980 struct ioaccel2_sg_element *chain_block;
1981 u64 temp64;
1982 u32 chain_size;
1983
1984 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
Don Bracea736e9b2015-11-04 15:51:14 -06001985 chain_size = le32_to_cpu(cp->sg[0].length);
Webb Scalesd9a729f2015-04-23 09:33:27 -05001986 temp64 = pci_map_single(h->pdev, chain_block, chain_size,
1987 PCI_DMA_TODEVICE);
1988 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1989 /* prevent subsequent unmapping */
1990 cp->sg->address = 0;
1991 return -1;
1992 }
1993 cp->sg->address = cpu_to_le64(temp64);
1994 return 0;
1995}
1996
1997static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
1998 struct io_accel2_cmd *cp)
1999{
2000 struct ioaccel2_sg_element *chain_sg;
2001 u64 temp64;
2002 u32 chain_size;
2003
2004 chain_sg = cp->sg;
2005 temp64 = le64_to_cpu(chain_sg->address);
Don Bracea736e9b2015-11-04 15:51:14 -06002006 chain_size = le32_to_cpu(cp->sg[0].length);
Webb Scalesd9a729f2015-04-23 09:33:27 -05002007 pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
2008}
2009
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002010static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002011 struct CommandList *c)
2012{
2013 struct SGDescriptor *chain_sg, *chain_block;
2014 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002015 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002016
2017 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
2018 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002019 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
2020 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06002021 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002022 chain_sg->Len = cpu_to_le32(chain_len);
2023 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002024 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002025 if (dma_mapping_error(&h->pdev->dev, temp64)) {
2026 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002027 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002028 return -1;
2029 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002030 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06002031 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002032}
2033
2034static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
2035 struct CommandList *c)
2036{
2037 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002038
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002039 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002040 return;
2041
2042 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002043 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
2044 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002045}
2046
Scott Teela09c1442014-02-18 13:57:21 -06002047
2048/* Decode the various types of errors on ioaccel2 path.
2049 * Return 1 for any error that should generate a RAID path retry.
2050 * Return 0 for errors that don't require a RAID path retry.
2051 */
2052static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06002053 struct CommandList *c,
2054 struct scsi_cmnd *cmd,
2055 struct io_accel2_cmd *c2)
2056{
2057 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06002058 int retry = 0;
Joe Handzikc40820d2015-04-23 09:33:32 -05002059 u32 ioaccel2_resid = 0;
Scott Teelc3497752014-02-18 13:56:34 -06002060
2061 switch (c2->error_data.serv_response) {
2062 case IOACCEL2_SERV_RESPONSE_COMPLETE:
2063 switch (c2->error_data.status) {
2064 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
2065 break;
2066 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002067 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06002068 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002069 IOACCEL2_SENSE_DATA_PRESENT) {
2070 memset(cmd->sense_buffer, 0,
2071 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06002072 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002073 }
Scott Teelc3497752014-02-18 13:56:34 -06002074 /* copy the sense data */
2075 data_len = c2->error_data.sense_data_len;
2076 if (data_len > SCSI_SENSE_BUFFERSIZE)
2077 data_len = SCSI_SENSE_BUFFERSIZE;
2078 if (data_len > sizeof(c2->error_data.sense_data_buff))
2079 data_len =
2080 sizeof(c2->error_data.sense_data_buff);
2081 memcpy(cmd->sense_buffer,
2082 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06002083 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002084 break;
2085 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
Scott Teela09c1442014-02-18 13:57:21 -06002086 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002087 break;
2088 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
Scott Teela09c1442014-02-18 13:57:21 -06002089 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002090 break;
2091 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05002092 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002093 break;
2094 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
Scott Teela09c1442014-02-18 13:57:21 -06002095 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002096 break;
2097 default:
Scott Teela09c1442014-02-18 13:57:21 -06002098 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002099 break;
2100 }
2101 break;
2102 case IOACCEL2_SERV_RESPONSE_FAILURE:
Joe Handzikc40820d2015-04-23 09:33:32 -05002103 switch (c2->error_data.status) {
2104 case IOACCEL2_STATUS_SR_IO_ERROR:
2105 case IOACCEL2_STATUS_SR_IO_ABORTED:
2106 case IOACCEL2_STATUS_SR_OVERRUN:
2107 retry = 1;
2108 break;
2109 case IOACCEL2_STATUS_SR_UNDERRUN:
2110 cmd->result = (DID_OK << 16); /* host byte */
2111 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
2112 ioaccel2_resid = get_unaligned_le32(
2113 &c2->error_data.resid_cnt[0]);
2114 scsi_set_resid(cmd, ioaccel2_resid);
2115 break;
2116 case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
2117 case IOACCEL2_STATUS_SR_INVALID_DEVICE:
2118 case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
2119 /* We will get an event from ctlr to trigger rescan */
2120 retry = 1;
2121 break;
2122 default:
2123 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002124 }
Scott Teelc3497752014-02-18 13:56:34 -06002125 break;
2126 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
2127 break;
2128 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
2129 break;
2130 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
Scott Teela09c1442014-02-18 13:57:21 -06002131 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002132 break;
2133 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
Scott Teelc3497752014-02-18 13:56:34 -06002134 break;
2135 default:
Scott Teela09c1442014-02-18 13:57:21 -06002136 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002137 break;
2138 }
Scott Teela09c1442014-02-18 13:57:21 -06002139
2140 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06002141}
2142
Webb Scalesa58e7e52015-04-23 09:34:16 -05002143static void hpsa_cmd_resolve_events(struct ctlr_info *h,
2144 struct CommandList *c)
2145{
Webb Scalesd604f532015-04-23 09:35:22 -05002146 bool do_wake = false;
2147
Webb Scalesa58e7e52015-04-23 09:34:16 -05002148 /*
2149 * Prevent the following race in the abort handler:
2150 *
2151 * 1. LLD is requested to abort a SCSI command
2152 * 2. The SCSI command completes
2153 * 3. The struct CommandList associated with step 2 is made available
2154 * 4. New I/O request to LLD to another LUN re-uses struct CommandList
2155 * 5. Abort handler follows scsi_cmnd->host_scribble and
2156 * finds struct CommandList and tries to aborts it
2157 * Now we have aborted the wrong command.
2158 *
Webb Scalesd604f532015-04-23 09:35:22 -05002159 * Reset c->scsi_cmd here so that the abort or reset handler will know
2160 * this command has completed. Then, check to see if the handler is
Webb Scalesa58e7e52015-04-23 09:34:16 -05002161 * waiting for this command, and, if so, wake it.
2162 */
2163 c->scsi_cmd = SCSI_CMD_IDLE;
Webb Scalesd604f532015-04-23 09:35:22 -05002164 mb(); /* Declare command idle before checking for pending events. */
Webb Scalesa58e7e52015-04-23 09:34:16 -05002165 if (c->abort_pending) {
Webb Scalesd604f532015-04-23 09:35:22 -05002166 do_wake = true;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002167 c->abort_pending = false;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002168 }
Webb Scalesd604f532015-04-23 09:35:22 -05002169 if (c->reset_pending) {
2170 unsigned long flags;
2171 struct hpsa_scsi_dev_t *dev;
2172
2173 /*
2174 * There appears to be a reset pending; lock the lock and
2175 * reconfirm. If so, then decrement the count of outstanding
2176 * commands and wake the reset command if this is the last one.
2177 */
2178 spin_lock_irqsave(&h->lock, flags);
2179 dev = c->reset_pending; /* Re-fetch under the lock. */
2180 if (dev && atomic_dec_and_test(&dev->reset_cmds_out))
2181 do_wake = true;
2182 c->reset_pending = NULL;
2183 spin_unlock_irqrestore(&h->lock, flags);
2184 }
2185
2186 if (do_wake)
2187 wake_up_all(&h->event_sync_wait_queue);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002188}
2189
Webb Scales73153fe2015-04-23 09:35:04 -05002190static void hpsa_cmd_resolve_and_free(struct ctlr_info *h,
2191 struct CommandList *c)
2192{
2193 hpsa_cmd_resolve_events(h, c);
2194 cmd_tagged_free(h, c);
2195}
2196
Webb Scales8a0ff922015-04-23 09:34:11 -05002197static void hpsa_cmd_free_and_done(struct ctlr_info *h,
2198 struct CommandList *c, struct scsi_cmnd *cmd)
2199{
Webb Scales73153fe2015-04-23 09:35:04 -05002200 hpsa_cmd_resolve_and_free(h, c);
Webb Scales8a0ff922015-04-23 09:34:11 -05002201 cmd->scsi_done(cmd);
2202}
2203
2204static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c)
2205{
2206 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
2207 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
2208}
2209
Webb Scalesa58e7e52015-04-23 09:34:16 -05002210static void hpsa_set_scsi_cmd_aborted(struct scsi_cmnd *cmd)
2211{
2212 cmd->result = DID_ABORT << 16;
2213}
2214
2215static void hpsa_cmd_abort_and_free(struct ctlr_info *h, struct CommandList *c,
2216 struct scsi_cmnd *cmd)
2217{
2218 hpsa_set_scsi_cmd_aborted(cmd);
2219 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2220 c->Request.CDB, c->err_info->ScsiStatus);
Webb Scales73153fe2015-04-23 09:35:04 -05002221 hpsa_cmd_resolve_and_free(h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002222}
2223
Scott Teelc3497752014-02-18 13:56:34 -06002224static void process_ioaccel2_completion(struct ctlr_info *h,
2225 struct CommandList *c, struct scsi_cmnd *cmd,
2226 struct hpsa_scsi_dev_t *dev)
2227{
2228 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2229
2230 /* check for good status */
2231 if (likely(c2->error_data.serv_response == 0 &&
Webb Scales8a0ff922015-04-23 09:34:11 -05002232 c2->error_data.status == 0))
2233 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002234
Webb Scales8a0ff922015-04-23 09:34:11 -05002235 /*
2236 * Any RAID offload error results in retry which will use
Scott Teelc3497752014-02-18 13:56:34 -06002237 * the normal I/O path so the controller can handle whatever's
2238 * wrong.
2239 */
2240 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
2241 c2->error_data.serv_response ==
2242 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06002243 if (c2->error_data.status ==
2244 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
2245 dev->offload_enabled = 0;
Webb Scales8a0ff922015-04-23 09:34:11 -05002246
2247 return hpsa_retry_cmd(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06002248 }
Don Brace080ef1c2015-01-23 16:43:25 -06002249
2250 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
Webb Scales8a0ff922015-04-23 09:34:11 -05002251 return hpsa_retry_cmd(h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06002252
Webb Scales8a0ff922015-04-23 09:34:11 -05002253 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002254}
2255
Stephen Cameron9437ac42015-04-23 09:32:16 -05002256/* Returns 0 on success, < 0 otherwise. */
2257static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
2258 struct CommandList *cp)
2259{
2260 u8 tmf_status = cp->err_info->ScsiStatus;
2261
2262 switch (tmf_status) {
2263 case CISS_TMF_COMPLETE:
2264 /*
2265 * CISS_TMF_COMPLETE never happens, instead,
2266 * ei->CommandStatus == 0 for this case.
2267 */
2268 case CISS_TMF_SUCCESS:
2269 return 0;
2270 case CISS_TMF_INVALID_FRAME:
2271 case CISS_TMF_NOT_SUPPORTED:
2272 case CISS_TMF_FAILED:
2273 case CISS_TMF_WRONG_LUN:
2274 case CISS_TMF_OVERLAPPED_TAG:
2275 break;
2276 default:
2277 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2278 tmf_status);
2279 break;
2280 }
2281 return -tmf_status;
2282}
2283
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002284static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002285{
2286 struct scsi_cmnd *cmd;
2287 struct ctlr_info *h;
2288 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002289 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002290 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002291
Stephen Cameron9437ac42015-04-23 09:32:16 -05002292 u8 sense_key;
2293 u8 asc; /* additional sense code */
2294 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002295 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002296
2297 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002298 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002299 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002300 dev = cmd->device->hostdata;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002301 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002302
2303 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002304 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002305 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002306 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002307
Webb Scalesd9a729f2015-04-23 09:33:27 -05002308 if ((cp->cmd_type == CMD_IOACCEL2) &&
2309 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2310 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2311
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002312 cmd->result = (DID_OK << 16); /* host byte */
2313 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002314
Don Brace03383732015-01-23 16:43:30 -06002315 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
2316 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2317
Webb Scales25163bd2015-04-23 09:32:00 -05002318 /*
2319 * We check for lockup status here as it may be set for
2320 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2321 * fail_all_oustanding_cmds()
2322 */
2323 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2324 /* DID_NO_CONNECT will prevent a retry */
2325 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05002326 return hpsa_cmd_free_and_done(h, cp, cmd);
Webb Scales25163bd2015-04-23 09:32:00 -05002327 }
2328
Webb Scalesd604f532015-04-23 09:35:22 -05002329 if ((unlikely(hpsa_is_pending_event(cp)))) {
2330 if (cp->reset_pending)
2331 return hpsa_cmd_resolve_and_free(h, cp);
2332 if (cp->abort_pending)
2333 return hpsa_cmd_abort_and_free(h, cp, cmd);
2334 }
2335
Scott Teelc3497752014-02-18 13:56:34 -06002336 if (cp->cmd_type == CMD_IOACCEL2)
2337 return process_ioaccel2_completion(h, cp, cmd, dev);
2338
Robert Elliott6aa4c362014-07-03 10:18:19 -05002339 scsi_set_resid(cmd, ei->ResidualCnt);
Webb Scales8a0ff922015-04-23 09:34:11 -05002340 if (ei->CommandStatus == 0)
2341 return hpsa_cmd_free_and_done(h, cp, cmd);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002342
Matt Gatese1f7de02014-02-18 13:55:17 -06002343 /* For I/O accelerator commands, copy over some fields to the normal
2344 * CISS header used below for error handling.
2345 */
2346 if (cp->cmd_type == CMD_IOACCEL1) {
2347 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002348 cp->Header.SGList = scsi_sg_count(cmd);
2349 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2350 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2351 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002352 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002353 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2354 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002355
2356 /* Any RAID offload error results in retry which will use
2357 * the normal I/O path so the controller can handle whatever's
2358 * wrong.
2359 */
2360 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
2361 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2362 dev->offload_enabled = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05002363 return hpsa_retry_cmd(h, cp);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002364 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002365 }
2366
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002367 /* an error has occurred */
2368 switch (ei->CommandStatus) {
2369
2370 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002371 cmd->result |= ei->ScsiStatus;
2372 /* copy the sense data */
2373 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2374 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2375 else
2376 sense_data_size = sizeof(ei->SenseInfo);
2377 if (ei->SenseLen < sense_data_size)
2378 sense_data_size = ei->SenseLen;
2379 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2380 if (ei->ScsiStatus)
2381 decode_sense_data(ei->SenseInfo, sense_data_size,
2382 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002383 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002384 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002385 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002386 break;
2387 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002388 break;
2389 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002390 /* Problem was not a check condition
2391 * Pass it up to the upper layers...
2392 */
2393 if (ei->ScsiStatus) {
2394 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2395 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2396 "Returning result: 0x%x\n",
2397 cp, ei->ScsiStatus,
2398 sense_key, asc, ascq,
2399 cmd->result);
2400 } else { /* scsi status is zero??? How??? */
2401 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2402 "Returning no connection.\n", cp),
2403
2404 /* Ordinarily, this case should never happen,
2405 * but there is a bug in some released firmware
2406 * revisions that allows it to happen if, for
2407 * example, a 4100 backplane loses power and
2408 * the tape drive is in it. We assume that
2409 * it's a fatal error of some kind because we
2410 * can't show that it wasn't. We will make it
2411 * look like selection timeout since that is
2412 * the most common reason for this to occur,
2413 * and it's severe enough.
2414 */
2415
2416 cmd->result = DID_NO_CONNECT << 16;
2417 }
2418 break;
2419
2420 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2421 break;
2422 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002423 dev_warn(&h->pdev->dev,
2424 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002425 break;
2426 case CMD_INVALID: {
2427 /* print_bytes(cp, sizeof(*cp), 1, 0);
2428 print_cmd(cp); */
2429 /* We get CMD_INVALID if you address a non-existent device
2430 * instead of a selection timeout (no response). You will
2431 * see this if you yank out a drive, then try to access it.
2432 * This is kind of a shame because it means that any other
2433 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2434 * missing target. */
2435 cmd->result = DID_NO_CONNECT << 16;
2436 }
2437 break;
2438 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002439 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002440 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2441 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002442 break;
2443 case CMD_HARDWARE_ERR:
2444 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002445 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2446 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002447 break;
2448 case CMD_CONNECTION_LOST:
2449 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002450 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2451 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002452 break;
2453 case CMD_ABORTED:
Webb Scalesa58e7e52015-04-23 09:34:16 -05002454 /* Return now to avoid calling scsi_done(). */
2455 return hpsa_cmd_abort_and_free(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002456 case CMD_ABORT_FAILED:
2457 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002458 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2459 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002460 break;
2461 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002462 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002463 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2464 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002465 break;
2466 case CMD_TIMEOUT:
2467 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002468 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2469 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002470 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002471 case CMD_UNABORTABLE:
2472 cmd->result = DID_ERROR << 16;
2473 dev_warn(&h->pdev->dev, "Command unabortable\n");
2474 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002475 case CMD_TMF_STATUS:
2476 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2477 cmd->result = DID_ERROR << 16;
2478 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002479 case CMD_IOACCEL_DISABLED:
2480 /* This only handles the direct pass-through case since RAID
2481 * offload is handled above. Just attempt a retry.
2482 */
2483 cmd->result = DID_SOFT_ERROR << 16;
2484 dev_warn(&h->pdev->dev,
2485 "cp %p had HP SSD Smart Path error\n", cp);
2486 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002487 default:
2488 cmd->result = DID_ERROR << 16;
2489 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2490 cp, ei->CommandStatus);
2491 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002492
2493 return hpsa_cmd_free_and_done(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002494}
2495
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002496static void hpsa_pci_unmap(struct pci_dev *pdev,
2497 struct CommandList *c, int sg_used, int data_direction)
2498{
2499 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002500
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002501 for (i = 0; i < sg_used; i++)
2502 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2503 le32_to_cpu(c->SG[i].Len),
2504 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002505}
2506
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002507static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002508 struct CommandList *cp,
2509 unsigned char *buf,
2510 size_t buflen,
2511 int data_direction)
2512{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002513 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002514
2515 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2516 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002517 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002518 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002519 }
2520
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002521 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002522 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002523 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002524 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002525 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002526 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002527 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002528 cp->SG[0].Addr = cpu_to_le64(addr64);
2529 cp->SG[0].Len = cpu_to_le32(buflen);
2530 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2531 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2532 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002533 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002534}
2535
Webb Scales25163bd2015-04-23 09:32:00 -05002536#define NO_TIMEOUT ((unsigned long) -1)
2537#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2538static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2539 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002540{
2541 DECLARE_COMPLETION_ONSTACK(wait);
2542
2543 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002544 __enqueue_cmd_and_start_io(h, c, reply_queue);
2545 if (timeout_msecs == NO_TIMEOUT) {
2546 /* TODO: get rid of this no-timeout thing */
2547 wait_for_completion_io(&wait);
2548 return IO_OK;
2549 }
2550 if (!wait_for_completion_io_timeout(&wait,
2551 msecs_to_jiffies(timeout_msecs))) {
2552 dev_warn(&h->pdev->dev, "Command timed out.\n");
2553 return -ETIMEDOUT;
2554 }
2555 return IO_OK;
2556}
2557
2558static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2559 int reply_queue, unsigned long timeout_msecs)
2560{
2561 if (unlikely(lockup_detected(h))) {
2562 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2563 return IO_OK;
2564 }
2565 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002566}
2567
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002568static u32 lockup_detected(struct ctlr_info *h)
2569{
2570 int cpu;
2571 u32 rc, *lockup_detected;
2572
2573 cpu = get_cpu();
2574 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2575 rc = *lockup_detected;
2576 put_cpu();
2577 return rc;
2578}
2579
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002580#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002581static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2582 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002583{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002584 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002585 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002586
2587 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002588 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002589 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2590 timeout_msecs);
2591 if (rc)
2592 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002593 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002594 if (retry_count > 3) {
2595 msleep(backoff_time);
2596 if (backoff_time < 1000)
2597 backoff_time *= 2;
2598 }
Matt Bondurant852af202012-05-01 11:42:35 -05002599 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002600 check_for_busy(h, c)) &&
2601 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002602 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002603 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2604 rc = -EIO;
2605 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002606}
2607
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002608static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2609 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002610{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002611 const u8 *cdb = c->Request.CDB;
2612 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002613
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002614 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2615 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2616 txt, lun[0], lun[1], lun[2], lun[3],
2617 lun[4], lun[5], lun[6], lun[7],
2618 cdb[0], cdb[1], cdb[2], cdb[3],
2619 cdb[4], cdb[5], cdb[6], cdb[7],
2620 cdb[8], cdb[9], cdb[10], cdb[11],
2621 cdb[12], cdb[13], cdb[14], cdb[15]);
2622}
2623
2624static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2625 struct CommandList *cp)
2626{
2627 const struct ErrorInfo *ei = cp->err_info;
2628 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002629 u8 sense_key, asc, ascq;
2630 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002631
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002632 switch (ei->CommandStatus) {
2633 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002634 if (ei->SenseLen > sizeof(ei->SenseInfo))
2635 sense_len = sizeof(ei->SenseInfo);
2636 else
2637 sense_len = ei->SenseLen;
2638 decode_sense_data(ei->SenseInfo, sense_len,
2639 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002640 hpsa_print_cmd(h, "SCSI status", cp);
2641 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002642 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2643 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002644 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002645 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002646 if (ei->ScsiStatus == 0)
2647 dev_warn(d, "SCSI status is abnormally zero. "
2648 "(probably indicates selection timeout "
2649 "reported incorrectly due to a known "
2650 "firmware bug, circa July, 2001.)\n");
2651 break;
2652 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002653 break;
2654 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002655 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002656 break;
2657 case CMD_INVALID: {
2658 /* controller unfortunately reports SCSI passthru's
2659 * to non-existent targets as invalid commands.
2660 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002661 hpsa_print_cmd(h, "invalid command", cp);
2662 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002663 }
2664 break;
2665 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002666 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002667 break;
2668 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002669 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002670 break;
2671 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002672 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002673 break;
2674 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002675 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002676 break;
2677 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002678 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002679 break;
2680 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002681 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002682 break;
2683 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002684 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002685 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002686 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002687 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002688 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002689 case CMD_CTLR_LOCKUP:
2690 hpsa_print_cmd(h, "controller lockup detected", cp);
2691 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002692 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002693 hpsa_print_cmd(h, "unknown status", cp);
2694 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002695 ei->CommandStatus);
2696 }
2697}
2698
2699static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002700 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002701 unsigned char bufsize)
2702{
2703 int rc = IO_OK;
2704 struct CommandList *c;
2705 struct ErrorInfo *ei;
2706
Stephen Cameron45fcb862015-01-23 16:43:04 -06002707 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002708
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002709 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2710 page, scsi3addr, TYPE_CMD)) {
2711 rc = -1;
2712 goto out;
2713 }
Webb Scales25163bd2015-04-23 09:32:00 -05002714 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2715 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2716 if (rc)
2717 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002718 ei = c->err_info;
2719 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002720 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002721 rc = -1;
2722 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002723out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002724 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002725 return rc;
2726}
2727
Scott Teelbf711ac2014-02-18 13:56:39 -06002728static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002729 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002730{
2731 int rc = IO_OK;
2732 struct CommandList *c;
2733 struct ErrorInfo *ei;
2734
Stephen Cameron45fcb862015-01-23 16:43:04 -06002735 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002736
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002737
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002738 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teel0b9b7b62015-11-04 15:51:02 -06002739 (void) fill_cmd(c, reset_type, h, NULL, 0, 0,
Scott Teelbf711ac2014-02-18 13:56:39 -06002740 scsi3addr, TYPE_MSG);
Webb Scales25163bd2015-04-23 09:32:00 -05002741 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
2742 if (rc) {
2743 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2744 goto out;
2745 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002746 /* no unmap needed here because no data xfer. */
2747
2748 ei = c->err_info;
2749 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002750 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002751 rc = -1;
2752 }
Webb Scales25163bd2015-04-23 09:32:00 -05002753out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002754 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002755 return rc;
2756}
2757
Webb Scalesd604f532015-04-23 09:35:22 -05002758static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
2759 struct hpsa_scsi_dev_t *dev,
2760 unsigned char *scsi3addr)
2761{
2762 int i;
2763 bool match = false;
2764 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2765 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
2766
2767 if (hpsa_is_cmd_idle(c))
2768 return false;
2769
2770 switch (c->cmd_type) {
2771 case CMD_SCSI:
2772 case CMD_IOCTL_PEND:
2773 match = !memcmp(scsi3addr, &c->Header.LUN.LunAddrBytes,
2774 sizeof(c->Header.LUN.LunAddrBytes));
2775 break;
2776
2777 case CMD_IOACCEL1:
2778 case CMD_IOACCEL2:
2779 if (c->phys_disk == dev) {
2780 /* HBA mode match */
2781 match = true;
2782 } else {
2783 /* Possible RAID mode -- check each phys dev. */
2784 /* FIXME: Do we need to take out a lock here? If
2785 * so, we could just call hpsa_get_pdisk_of_ioaccel2()
2786 * instead. */
2787 for (i = 0; i < dev->nphysical_disks && !match; i++) {
2788 /* FIXME: an alternate test might be
2789 *
2790 * match = dev->phys_disk[i]->ioaccel_handle
2791 * == c2->scsi_nexus; */
2792 match = dev->phys_disk[i] == c->phys_disk;
2793 }
2794 }
2795 break;
2796
2797 case IOACCEL2_TMF:
2798 for (i = 0; i < dev->nphysical_disks && !match; i++) {
2799 match = dev->phys_disk[i]->ioaccel_handle ==
2800 le32_to_cpu(ac->it_nexus);
2801 }
2802 break;
2803
2804 case 0: /* The command is in the middle of being initialized. */
2805 match = false;
2806 break;
2807
2808 default:
2809 dev_err(&h->pdev->dev, "unexpected cmd_type: %d\n",
2810 c->cmd_type);
2811 BUG();
2812 }
2813
2814 return match;
2815}
2816
2817static int hpsa_do_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
2818 unsigned char *scsi3addr, u8 reset_type, int reply_queue)
2819{
2820 int i;
2821 int rc = 0;
2822
2823 /* We can really only handle one reset at a time */
2824 if (mutex_lock_interruptible(&h->reset_mutex) == -EINTR) {
2825 dev_warn(&h->pdev->dev, "concurrent reset wait interrupted.\n");
2826 return -EINTR;
2827 }
2828
2829 BUG_ON(atomic_read(&dev->reset_cmds_out) != 0);
2830
2831 for (i = 0; i < h->nr_cmds; i++) {
2832 struct CommandList *c = h->cmd_pool + i;
2833 int refcount = atomic_inc_return(&c->refcount);
2834
2835 if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev, scsi3addr)) {
2836 unsigned long flags;
2837
2838 /*
2839 * Mark the target command as having a reset pending,
2840 * then lock a lock so that the command cannot complete
2841 * while we're considering it. If the command is not
2842 * idle then count it; otherwise revoke the event.
2843 */
2844 c->reset_pending = dev;
2845 spin_lock_irqsave(&h->lock, flags); /* Implied MB */
2846 if (!hpsa_is_cmd_idle(c))
2847 atomic_inc(&dev->reset_cmds_out);
2848 else
2849 c->reset_pending = NULL;
2850 spin_unlock_irqrestore(&h->lock, flags);
2851 }
2852
2853 cmd_free(h, c);
2854 }
2855
2856 rc = hpsa_send_reset(h, scsi3addr, reset_type, reply_queue);
2857 if (!rc)
2858 wait_event(h->event_sync_wait_queue,
2859 atomic_read(&dev->reset_cmds_out) == 0 ||
2860 lockup_detected(h));
2861
2862 if (unlikely(lockup_detected(h))) {
Don Brace77678d32015-07-18 11:12:22 -05002863 dev_warn(&h->pdev->dev,
2864 "Controller lockup detected during reset wait\n");
2865 rc = -ENODEV;
2866 }
Webb Scalesd604f532015-04-23 09:35:22 -05002867
2868 if (unlikely(rc))
2869 atomic_set(&dev->reset_cmds_out, 0);
2870
2871 mutex_unlock(&h->reset_mutex);
2872 return rc;
2873}
2874
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002875static void hpsa_get_raid_level(struct ctlr_info *h,
2876 unsigned char *scsi3addr, unsigned char *raid_level)
2877{
2878 int rc;
2879 unsigned char *buf;
2880
2881 *raid_level = RAID_UNKNOWN;
2882 buf = kzalloc(64, GFP_KERNEL);
2883 if (!buf)
2884 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002885 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002886 if (rc == 0)
2887 *raid_level = buf[8];
2888 if (*raid_level > RAID_UNKNOWN)
2889 *raid_level = RAID_UNKNOWN;
2890 kfree(buf);
2891 return;
2892}
2893
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002894#define HPSA_MAP_DEBUG
2895#ifdef HPSA_MAP_DEBUG
2896static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2897 struct raid_map_data *map_buff)
2898{
2899 struct raid_map_disk_data *dd = &map_buff->data[0];
2900 int map, row, col;
2901 u16 map_cnt, row_cnt, disks_per_row;
2902
2903 if (rc != 0)
2904 return;
2905
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002906 /* Show details only if debugging has been activated. */
2907 if (h->raid_offload_debug < 2)
2908 return;
2909
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002910 dev_info(&h->pdev->dev, "structure_size = %u\n",
2911 le32_to_cpu(map_buff->structure_size));
2912 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2913 le32_to_cpu(map_buff->volume_blk_size));
2914 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2915 le64_to_cpu(map_buff->volume_blk_cnt));
2916 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2917 map_buff->phys_blk_shift);
2918 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2919 map_buff->parity_rotation_shift);
2920 dev_info(&h->pdev->dev, "strip_size = %u\n",
2921 le16_to_cpu(map_buff->strip_size));
2922 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2923 le64_to_cpu(map_buff->disk_starting_blk));
2924 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2925 le64_to_cpu(map_buff->disk_blk_cnt));
2926 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2927 le16_to_cpu(map_buff->data_disks_per_row));
2928 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2929 le16_to_cpu(map_buff->metadata_disks_per_row));
2930 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2931 le16_to_cpu(map_buff->row_cnt));
2932 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2933 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002934 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002935 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002936 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2937 le16_to_cpu(map_buff->flags) &
2938 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002939 dev_info(&h->pdev->dev, "dekindex = %u\n",
2940 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002941 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2942 for (map = 0; map < map_cnt; map++) {
2943 dev_info(&h->pdev->dev, "Map%u:\n", map);
2944 row_cnt = le16_to_cpu(map_buff->row_cnt);
2945 for (row = 0; row < row_cnt; row++) {
2946 dev_info(&h->pdev->dev, " Row%u:\n", row);
2947 disks_per_row =
2948 le16_to_cpu(map_buff->data_disks_per_row);
2949 for (col = 0; col < disks_per_row; col++, dd++)
2950 dev_info(&h->pdev->dev,
2951 " D%02u: h=0x%04x xor=%u,%u\n",
2952 col, dd->ioaccel_handle,
2953 dd->xor_mult[0], dd->xor_mult[1]);
2954 disks_per_row =
2955 le16_to_cpu(map_buff->metadata_disks_per_row);
2956 for (col = 0; col < disks_per_row; col++, dd++)
2957 dev_info(&h->pdev->dev,
2958 " M%02u: h=0x%04x xor=%u,%u\n",
2959 col, dd->ioaccel_handle,
2960 dd->xor_mult[0], dd->xor_mult[1]);
2961 }
2962 }
2963}
2964#else
2965static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2966 __attribute__((unused)) int rc,
2967 __attribute__((unused)) struct raid_map_data *map_buff)
2968{
2969}
2970#endif
2971
2972static int hpsa_get_raid_map(struct ctlr_info *h,
2973 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2974{
2975 int rc = 0;
2976 struct CommandList *c;
2977 struct ErrorInfo *ei;
2978
Stephen Cameron45fcb862015-01-23 16:43:04 -06002979 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05002980
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002981 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2982 sizeof(this_device->raid_map), 0,
2983 scsi3addr, TYPE_CMD)) {
Robert Elliott2dd02d72015-04-23 09:33:43 -05002984 dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
2985 cmd_free(h, c);
2986 return -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002987 }
Webb Scales25163bd2015-04-23 09:32:00 -05002988 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2989 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2990 if (rc)
2991 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002992 ei = c->err_info;
2993 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002994 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05002995 rc = -1;
2996 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002997 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002998 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002999
3000 /* @todo in the future, dynamically allocate RAID map memory */
3001 if (le32_to_cpu(this_device->raid_map.structure_size) >
3002 sizeof(this_device->raid_map)) {
3003 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
3004 rc = -1;
3005 }
3006 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
3007 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05003008out:
3009 cmd_free(h, c);
3010 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003011}
3012
Don Brace03383732015-01-23 16:43:30 -06003013static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
3014 unsigned char scsi3addr[], u16 bmic_device_index,
3015 struct bmic_identify_physical_device *buf, size_t bufsize)
3016{
3017 int rc = IO_OK;
3018 struct CommandList *c;
3019 struct ErrorInfo *ei;
3020
3021 c = cmd_alloc(h);
3022 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
3023 0, RAID_CTLR_LUNID, TYPE_CMD);
3024 if (rc)
3025 goto out;
3026
3027 c->Request.CDB[2] = bmic_device_index & 0xff;
3028 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3029
Webb Scales25163bd2015-04-23 09:32:00 -05003030 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
3031 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06003032 ei = c->err_info;
3033 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3034 hpsa_scsi_interpret_error(h, c);
3035 rc = -1;
3036 }
3037out:
3038 cmd_free(h, c);
3039 return rc;
3040}
3041
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003042static int hpsa_vpd_page_supported(struct ctlr_info *h,
3043 unsigned char scsi3addr[], u8 page)
3044{
3045 int rc;
3046 int i;
3047 int pages;
3048 unsigned char *buf, bufsize;
3049
3050 buf = kzalloc(256, GFP_KERNEL);
3051 if (!buf)
3052 return 0;
3053
3054 /* Get the size of the page list first */
3055 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3056 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3057 buf, HPSA_VPD_HEADER_SZ);
3058 if (rc != 0)
3059 goto exit_unsupported;
3060 pages = buf[3];
3061 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
3062 bufsize = pages + HPSA_VPD_HEADER_SZ;
3063 else
3064 bufsize = 255;
3065
3066 /* Get the whole VPD page list */
3067 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3068 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3069 buf, bufsize);
3070 if (rc != 0)
3071 goto exit_unsupported;
3072
3073 pages = buf[3];
3074 for (i = 1; i <= pages; i++)
3075 if (buf[3 + i] == page)
3076 goto exit_supported;
3077exit_unsupported:
3078 kfree(buf);
3079 return 0;
3080exit_supported:
3081 kfree(buf);
3082 return 1;
3083}
3084
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003085static void hpsa_get_ioaccel_status(struct ctlr_info *h,
3086 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3087{
3088 int rc;
3089 unsigned char *buf;
3090 u8 ioaccel_status;
3091
3092 this_device->offload_config = 0;
3093 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003094 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003095
3096 buf = kzalloc(64, GFP_KERNEL);
3097 if (!buf)
3098 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003099 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
3100 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003101 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003102 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003103 if (rc != 0)
3104 goto out;
3105
3106#define IOACCEL_STATUS_BYTE 4
3107#define OFFLOAD_CONFIGURED_BIT 0x01
3108#define OFFLOAD_ENABLED_BIT 0x02
3109 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
3110 this_device->offload_config =
3111 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
3112 if (this_device->offload_config) {
3113 this_device->offload_enabled =
3114 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
3115 if (hpsa_get_raid_map(h, scsi3addr, this_device))
3116 this_device->offload_enabled = 0;
3117 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003118 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003119out:
3120 kfree(buf);
3121 return;
3122}
3123
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003124/* Get the device id from inquiry page 0x83 */
3125static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
3126 unsigned char *device_id, int buflen)
3127{
3128 int rc;
3129 unsigned char *buf;
3130
3131 if (buflen > 16)
3132 buflen = 16;
3133 buf = kzalloc(64, GFP_KERNEL);
3134 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05003135 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003136 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003137 if (rc == 0)
3138 memcpy(device_id, &buf[8], buflen);
3139 kfree(buf);
3140 return rc != 0;
3141}
3142
3143static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06003144 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003145 int extended_response)
3146{
3147 int rc = IO_OK;
3148 struct CommandList *c;
3149 unsigned char scsi3addr[8];
3150 struct ErrorInfo *ei;
3151
Stephen Cameron45fcb862015-01-23 16:43:04 -06003152 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003153
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06003154 /* address the controller */
3155 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003156 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
3157 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
3158 rc = -1;
3159 goto out;
3160 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003161 if (extended_response)
3162 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05003163 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
3164 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
3165 if (rc)
3166 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003167 ei = c->err_info;
3168 if (ei->CommandStatus != 0 &&
3169 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003170 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003171 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003172 } else {
Don Brace03383732015-01-23 16:43:30 -06003173 struct ReportLUNdata *rld = buf;
3174
3175 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003176 dev_err(&h->pdev->dev,
3177 "report luns requested format %u, got %u\n",
3178 extended_response,
Don Brace03383732015-01-23 16:43:30 -06003179 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003180 rc = -1;
3181 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003182 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003183out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06003184 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003185 return rc;
3186}
3187
3188static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003189 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003190{
Don Brace03383732015-01-23 16:43:30 -06003191 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
3192 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003193}
3194
3195static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
3196 struct ReportLUNdata *buf, int bufsize)
3197{
3198 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
3199}
3200
3201static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
3202 int bus, int target, int lun)
3203{
3204 device->bus = bus;
3205 device->target = target;
3206 device->lun = lun;
3207}
3208
Stephen M. Cameron98465902014-02-21 16:25:00 -06003209/* Use VPD inquiry to get details of volume status */
3210static int hpsa_get_volume_status(struct ctlr_info *h,
3211 unsigned char scsi3addr[])
3212{
3213 int rc;
3214 int status;
3215 int size;
3216 unsigned char *buf;
3217
3218 buf = kzalloc(64, GFP_KERNEL);
3219 if (!buf)
3220 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3221
3222 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003223 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06003224 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003225
3226 /* Get the size of the VPD return buffer */
3227 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3228 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003229 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003230 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003231 size = buf[3];
3232
3233 /* Now get the whole VPD buffer */
3234 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3235 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003236 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003237 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003238 status = buf[4]; /* status byte */
3239
3240 kfree(buf);
3241 return status;
3242exit_failed:
3243 kfree(buf);
3244 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3245}
3246
3247/* Determine offline status of a volume.
3248 * Return either:
3249 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003250 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003251 * # (integer code indicating one of several NOT READY states
3252 * describing why a volume is to be kept offline)
3253 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003254static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06003255 unsigned char scsi3addr[])
3256{
3257 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003258 unsigned char *sense;
3259 u8 sense_key, asc, ascq;
3260 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05003261 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003262 u16 cmd_status;
3263 u8 scsi_status;
3264#define ASC_LUN_NOT_READY 0x04
3265#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
3266#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
3267
3268 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003269
Stephen M. Cameron98465902014-02-21 16:25:00 -06003270 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05003271 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3272 if (rc) {
3273 cmd_free(h, c);
3274 return 0;
3275 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06003276 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003277 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
3278 sense_len = sizeof(c->err_info->SenseInfo);
3279 else
3280 sense_len = c->err_info->SenseLen;
3281 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003282 cmd_status = c->err_info->CommandStatus;
3283 scsi_status = c->err_info->ScsiStatus;
3284 cmd_free(h, c);
3285 /* Is the volume 'not ready'? */
3286 if (cmd_status != CMD_TARGET_STATUS ||
3287 scsi_status != SAM_STAT_CHECK_CONDITION ||
3288 sense_key != NOT_READY ||
3289 asc != ASC_LUN_NOT_READY) {
3290 return 0;
3291 }
3292
3293 /* Determine the reason for not ready state */
3294 ldstat = hpsa_get_volume_status(h, scsi3addr);
3295
3296 /* Keep volume offline in certain cases: */
3297 switch (ldstat) {
3298 case HPSA_LV_UNDERGOING_ERASE:
Scott Benesh5ca01202015-07-18 11:13:04 -05003299 case HPSA_LV_NOT_AVAILABLE:
Stephen M. Cameron98465902014-02-21 16:25:00 -06003300 case HPSA_LV_UNDERGOING_RPI:
3301 case HPSA_LV_PENDING_RPI:
3302 case HPSA_LV_ENCRYPTED_NO_KEY:
3303 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
3304 case HPSA_LV_UNDERGOING_ENCRYPTION:
3305 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
3306 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
3307 return ldstat;
3308 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
3309 /* If VPD status page isn't available,
3310 * use ASC/ASCQ to determine state
3311 */
3312 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
3313 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
3314 return ldstat;
3315 break;
3316 default:
3317 break;
3318 }
3319 return 0;
3320}
3321
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003322/*
3323 * Find out if a logical device supports aborts by simply trying one.
3324 * Smart Array may claim not to support aborts on logical drives, but
3325 * if a MSA2000 * is connected, the drives on that will be presented
3326 * by the Smart Array as logical drives, and aborts may be sent to
3327 * those devices successfully. So the simplest way to find out is
3328 * to simply try an abort and see how the device responds.
3329 */
3330static int hpsa_device_supports_aborts(struct ctlr_info *h,
3331 unsigned char *scsi3addr)
3332{
3333 struct CommandList *c;
3334 struct ErrorInfo *ei;
3335 int rc = 0;
3336
3337 u64 tag = (u64) -1; /* bogus tag */
3338
3339 /* Assume that physical devices support aborts */
3340 if (!is_logical_dev_addr_mode(scsi3addr))
3341 return 1;
3342
3343 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003344
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003345 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
3346 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3347 /* no unmap needed here because no data xfer. */
3348 ei = c->err_info;
3349 switch (ei->CommandStatus) {
3350 case CMD_INVALID:
3351 rc = 0;
3352 break;
3353 case CMD_UNABORTABLE:
3354 case CMD_ABORT_FAILED:
3355 rc = 1;
3356 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003357 case CMD_TMF_STATUS:
3358 rc = hpsa_evaluate_tmf_status(h, c);
3359 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003360 default:
3361 rc = 0;
3362 break;
3363 }
3364 cmd_free(h, c);
3365 return rc;
3366}
3367
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003368static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003369 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3370 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003371{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003372
3373#define OBDR_SIG_OFFSET 43
3374#define OBDR_TAPE_SIG "$DR-10"
3375#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3376#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3377
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003378 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003379 unsigned char *obdr_sig;
Don Brace683fc442015-11-04 15:50:44 -06003380 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003381
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003382 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Don Brace683fc442015-11-04 15:50:44 -06003383 if (!inq_buff) {
3384 rc = -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003385 goto bail_out;
Don Brace683fc442015-11-04 15:50:44 -06003386 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003387
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003388 /* Do an inquiry to the device to see what it is. */
3389 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3390 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
3391 /* Inquiry failed (msg printed already) */
3392 dev_err(&h->pdev->dev,
3393 "hpsa_update_device_info: inquiry failed\n");
Don Brace683fc442015-11-04 15:50:44 -06003394 rc = -EIO;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003395 goto bail_out;
3396 }
3397
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003398 this_device->devtype = (inq_buff[0] & 0x1f);
3399 memcpy(this_device->scsi3addr, scsi3addr, 8);
3400 memcpy(this_device->vendor, &inq_buff[8],
3401 sizeof(this_device->vendor));
3402 memcpy(this_device->model, &inq_buff[16],
3403 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003404 memset(this_device->device_id, 0,
3405 sizeof(this_device->device_id));
3406 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
3407 sizeof(this_device->device_id));
3408
3409 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003410 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003411 int volume_offline;
3412
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003413 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003414 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3415 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003416 volume_offline = hpsa_volume_offline(h, scsi3addr);
3417 if (volume_offline < 0 || volume_offline > 0xff)
3418 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3419 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003420 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003421 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003422 this_device->offload_config = 0;
3423 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003424 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003425 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003426 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003427 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003428 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003429
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003430 if (is_OBDR_device) {
3431 /* See if this is a One-Button-Disaster-Recovery device
3432 * by looking for "$DR-10" at offset 43 in inquiry data.
3433 */
3434 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3435 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3436 strncmp(obdr_sig, OBDR_TAPE_SIG,
3437 OBDR_SIG_LEN) == 0);
3438 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003439 kfree(inq_buff);
3440 return 0;
3441
3442bail_out:
3443 kfree(inq_buff);
Don Brace683fc442015-11-04 15:50:44 -06003444 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003445}
3446
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003447static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3448 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3449{
3450 unsigned long flags;
3451 int rc, entry;
3452 /*
3453 * See if this device supports aborts. If we already know
3454 * the device, we already know if it supports aborts, otherwise
3455 * we have to find out if it supports aborts by trying one.
3456 */
3457 spin_lock_irqsave(&h->devlock, flags);
3458 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3459 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3460 entry >= 0 && entry < h->ndevices) {
3461 dev->supports_aborts = h->dev[entry]->supports_aborts;
3462 spin_unlock_irqrestore(&h->devlock, flags);
3463 } else {
3464 spin_unlock_irqrestore(&h->devlock, flags);
3465 dev->supports_aborts =
3466 hpsa_device_supports_aborts(h, scsi3addr);
3467 if (dev->supports_aborts < 0)
3468 dev->supports_aborts = 0;
3469 }
3470}
3471
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003472static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003473 "MSA2012",
3474 "MSA2024",
3475 "MSA2312",
3476 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05003477 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05003478 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003479 NULL,
3480};
3481
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003482static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003483{
3484 int i;
3485
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003486 for (i = 0; ext_target_model[i]; i++)
3487 if (strncmp(device->model, ext_target_model[i],
3488 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003489 return 1;
3490 return 0;
3491}
3492
3493/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003494 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003495 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
3496 * Logical drive target and lun are assigned at this time, but
3497 * physical device lun and target assignment are deferred (assigned
3498 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
3499 */
3500static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003501 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003502{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003503 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003504
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003505 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3506 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003507 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003508 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003509 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003510 /* defer target, lun assignment for physical devices */
3511 hpsa_set_bus_target_lun(device, 2, -1, -1);
3512 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003513 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003514 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003515 if (is_ext_target(h, device)) {
3516 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003517 * and match target/lun numbers box
3518 * reports, other smart array, bus 0, target 0, match lunid
3519 */
3520 hpsa_set_bus_target_lun(device,
3521 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
3522 return;
3523 }
3524 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003525}
3526
3527/*
3528 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003529 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003530 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
3531 * it for some reason. *tmpdevice is the target we're adding,
3532 * this_device is a pointer into the current element of currentsd[]
3533 * that we're building up in update_scsi_devices(), below.
3534 * lunzerobits is a bitmap that tracks which targets already have a
3535 * lun 0 assigned.
3536 * Returns 1 if an enclosure was added, 0 if not.
3537 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003538static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003539 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003540 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003541 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003542{
3543 unsigned char scsi3addr[8];
3544
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003545 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003546 return 0; /* There is already a lun 0 on this target. */
3547
3548 if (!is_logical_dev_addr_mode(lunaddrbytes))
3549 return 0; /* It's the logical targets that may lack lun 0. */
3550
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003551 if (!is_ext_target(h, tmpdevice))
3552 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003553
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003554 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003555 return 0;
3556
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06003557 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003558 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003559 if (is_hba_lunid(scsi3addr))
3560 return 0; /* Don't add the RAID controller here. */
3561
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003562 if (is_scsi_rev_5(h))
3563 return 0; /* p1210m doesn't need to do this. */
3564
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003565 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06003566 dev_warn(&h->pdev->dev, "Maximum number of external "
3567 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003568 "configuration.");
3569 return 0;
3570 }
3571
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003572 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003573 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003574 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003575 hpsa_set_bus_target_lun(this_device,
3576 tmpdevice->bus, tmpdevice->target, 0);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003577 hpsa_update_device_supports_aborts(h, this_device, scsi3addr);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003578 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003579 return 1;
3580}
3581
3582/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003583 * Get address of physical disk used for an ioaccel2 mode command:
3584 * 1. Extract ioaccel2 handle from the command.
3585 * 2. Find a matching ioaccel2 handle from list of physical disks.
3586 * 3. Return:
3587 * 1 and set scsi3addr to address of matching physical
3588 * 0 if no matching physical disk was found.
3589 */
3590static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3591 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3592{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003593 struct io_accel2_cmd *c2 =
3594 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3595 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003596 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003597
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003598 spin_lock_irqsave(&h->devlock, flags);
3599 for (i = 0; i < h->ndevices; i++)
3600 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3601 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3602 sizeof(h->dev[i]->scsi3addr));
3603 spin_unlock_irqrestore(&h->devlock, flags);
3604 return 1;
3605 }
3606 spin_unlock_irqrestore(&h->devlock, flags);
3607 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003608}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003609
Scott Teel54b6e9e2014-02-18 13:56:45 -06003610/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003611 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
3612 * logdev. The number of luns in physdev and logdev are returned in
3613 * *nphysicals and *nlogicals, respectively.
3614 * Returns 0 on success, -1 otherwise.
3615 */
3616static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003617 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003618 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003619{
Don Brace03383732015-01-23 16:43:30 -06003620 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003621 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3622 return -1;
3623 }
Don Brace03383732015-01-23 16:43:30 -06003624 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003625 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06003626 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
3627 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003628 *nphysicals = HPSA_MAX_PHYS_LUN;
3629 }
Don Brace03383732015-01-23 16:43:30 -06003630 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003631 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3632 return -1;
3633 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06003634 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003635 /* Reject Logicals in excess of our max capability. */
3636 if (*nlogicals > HPSA_MAX_LUN) {
3637 dev_warn(&h->pdev->dev,
3638 "maximum logical LUNs (%d) exceeded. "
3639 "%d LUNs ignored.\n", HPSA_MAX_LUN,
3640 *nlogicals - HPSA_MAX_LUN);
3641 *nlogicals = HPSA_MAX_LUN;
3642 }
3643 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3644 dev_warn(&h->pdev->dev,
3645 "maximum logical + physical LUNs (%d) exceeded. "
3646 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3647 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3648 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3649 }
3650 return 0;
3651}
3652
Don Brace42a91642014-11-14 17:26:27 -06003653static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
3654 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003655 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003656 struct ReportLUNdata *logdev_list)
3657{
3658 /* Helper function, figure out where the LUN ID info is coming from
3659 * given index i, lists of physical and logical devices, where in
3660 * the list the raid controller is supposed to appear (first or last)
3661 */
3662
3663 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3664 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3665
3666 if (i == raid_ctlr_position)
3667 return RAID_CTLR_LUNID;
3668
3669 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05003670 return &physdev_list->LUN[i -
3671 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003672
3673 if (i < last_device)
3674 return &logdev_list->LUN[i - nphysicals -
3675 (raid_ctlr_position == 0)][0];
3676 BUG();
3677 return NULL;
3678}
3679
Don Brace03383732015-01-23 16:43:30 -06003680/* get physical drive ioaccel handle and queue depth */
3681static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3682 struct hpsa_scsi_dev_t *dev,
Don Bracef2039b02015-11-04 15:51:08 -06003683 struct ReportExtendedLUNdata *rlep, int rle_index,
Don Brace03383732015-01-23 16:43:30 -06003684 struct bmic_identify_physical_device *id_phys)
3685{
3686 int rc;
Don Bracef2039b02015-11-04 15:51:08 -06003687 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
Don Brace03383732015-01-23 16:43:30 -06003688
3689 dev->ioaccel_handle = rle->ioaccel_handle;
Don Bracef2039b02015-11-04 15:51:08 -06003690 if ((rle->device_flags & 0x08) && dev->ioaccel_handle)
Joe Handzika3144e02015-04-23 09:32:59 -05003691 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06003692 memset(id_phys, 0, sizeof(*id_phys));
Don Bracef2039b02015-11-04 15:51:08 -06003693 rc = hpsa_bmic_id_physical_device(h, &rle->lunid[0],
3694 GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]), id_phys,
Don Brace03383732015-01-23 16:43:30 -06003695 sizeof(*id_phys));
3696 if (!rc)
3697 /* Reserve space for FW operations */
3698#define DRIVE_CMDS_RESERVED_FOR_FW 2
3699#define DRIVE_QUEUE_DEPTH 7
3700 dev->queue_depth =
3701 le16_to_cpu(id_phys->current_queue_depth_limit) -
3702 DRIVE_CMDS_RESERVED_FOR_FW;
3703 else
3704 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
Don Brace03383732015-01-23 16:43:30 -06003705}
3706
Joe Handzik8270b862015-07-18 11:12:43 -05003707static void hpsa_get_path_info(struct hpsa_scsi_dev_t *this_device,
Don Bracef2039b02015-11-04 15:51:08 -06003708 struct ReportExtendedLUNdata *rlep, int rle_index,
Joe Handzik8270b862015-07-18 11:12:43 -05003709 struct bmic_identify_physical_device *id_phys)
3710{
Don Bracef2039b02015-11-04 15:51:08 -06003711 struct ext_report_lun_entry *rle = &rlep->LUN[rle_index];
3712
3713 if ((rle->device_flags & 0x08) && this_device->ioaccel_handle)
Joe Handzik8270b862015-07-18 11:12:43 -05003714 this_device->hba_ioaccel_enabled = 1;
3715
3716 memcpy(&this_device->active_path_index,
3717 &id_phys->active_path_number,
3718 sizeof(this_device->active_path_index));
3719 memcpy(&this_device->path_map,
3720 &id_phys->redundant_path_present_map,
3721 sizeof(this_device->path_map));
3722 memcpy(&this_device->box,
3723 &id_phys->alternate_paths_phys_box_on_port,
3724 sizeof(this_device->box));
3725 memcpy(&this_device->phys_connector,
3726 &id_phys->alternate_paths_phys_connector,
3727 sizeof(this_device->phys_connector));
3728 memcpy(&this_device->bay,
3729 &id_phys->phys_bay_in_box,
3730 sizeof(this_device->bay));
3731}
3732
Don Brace8aa60682015-11-04 15:50:01 -06003733static void hpsa_update_scsi_devices(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003734{
3735 /* the idea here is we could get notified
3736 * that some devices have changed, so we do a report
3737 * physical luns and report logical luns cmd, and adjust
3738 * our list of devices accordingly.
3739 *
3740 * The scsi3addr's of devices won't change so long as the
3741 * adapter is not reset. That means we can rescan and
3742 * tell which devices we already know about, vs. new
3743 * devices, vs. disappearing devices.
3744 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003745 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003746 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003747 struct bmic_identify_physical_device *id_phys = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003748 u32 nphysicals = 0;
3749 u32 nlogicals = 0;
3750 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003751 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3752 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003753 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003754 int raid_ctlr_position;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003755 bool physical_device;
Scott Teelaca4a522012-01-19 14:01:19 -06003756 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003757
Scott Teelcfe5bad2011-10-26 16:21:07 -05003758 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003759 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3760 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003761 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003762 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003763
Don Brace03383732015-01-23 16:43:30 -06003764 if (!currentsd || !physdev_list || !logdev_list ||
3765 !tmpdevice || !id_phys) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003766 dev_err(&h->pdev->dev, "out of memory\n");
3767 goto out;
3768 }
3769 memset(lunzerobits, 0, sizeof(lunzerobits));
3770
Don Brace853633e2015-11-04 15:50:37 -06003771 h->drv_req_rescan = 0; /* cancel scheduled rescan - we're doing it. */
3772
Don Brace03383732015-01-23 16:43:30 -06003773 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
Don Brace853633e2015-11-04 15:50:37 -06003774 logdev_list, &nlogicals)) {
3775 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003776 goto out;
Don Brace853633e2015-11-04 15:50:37 -06003777 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003778
Scott Teelaca4a522012-01-19 14:01:19 -06003779 /* We might see up to the maximum number of logical and physical disks
3780 * plus external target devices, and a device for the local RAID
3781 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003782 */
Scott Teelaca4a522012-01-19 14:01:19 -06003783 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003784
3785 /* Allocate the per device structures */
3786 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003787 if (i >= HPSA_MAX_DEVICES) {
3788 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3789 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3790 ndevs_to_allocate - HPSA_MAX_DEVICES);
3791 break;
3792 }
3793
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003794 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3795 if (!currentsd[i]) {
3796 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3797 __FILE__, __LINE__);
Don Brace853633e2015-11-04 15:50:37 -06003798 h->drv_req_rescan = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003799 goto out;
3800 }
3801 ndev_allocated++;
3802 }
3803
Stephen M. Cameron86452912014-05-29 10:53:49 -05003804 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003805 raid_ctlr_position = 0;
3806 else
3807 raid_ctlr_position = nphysicals + nlogicals;
3808
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003809 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003810 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003811 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003812 u8 *lunaddrbytes, is_OBDR = 0;
Don Brace683fc442015-11-04 15:50:44 -06003813 int rc = 0;
Don Bracef2039b02015-11-04 15:51:08 -06003814 int phys_dev_index = i - (raid_ctlr_position == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003815
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003816 physical_device = i < nphysicals + (raid_ctlr_position == 0);
3817
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003818 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003819 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3820 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003821
3822 /* skip masked non-disk devices */
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003823 if (MASKED_DEVICE(lunaddrbytes) && physical_device &&
3824 (physdev_list->LUN[phys_dev_index].device_flags & 0x01))
3825 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003826
3827 /* Get device type, vendor, model, device id */
Don Brace683fc442015-11-04 15:50:44 -06003828 rc = hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3829 &is_OBDR);
3830 if (rc == -ENOMEM) {
3831 dev_warn(&h->pdev->dev,
3832 "Out of memory, rescan deferred.\n");
Don Brace853633e2015-11-04 15:50:37 -06003833 h->drv_req_rescan = 1;
Don Brace683fc442015-11-04 15:50:44 -06003834 goto out;
Don Brace853633e2015-11-04 15:50:37 -06003835 }
Don Brace683fc442015-11-04 15:50:44 -06003836 if (rc) {
3837 dev_warn(&h->pdev->dev,
3838 "Inquiry failed, skipping device.\n");
3839 continue;
3840 }
3841
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003842 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003843 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003844 this_device = currentsd[ncurrent];
3845
3846 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003847 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003848 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3849 * is nonetheless an enclosure device there. We have to
3850 * present that otherwise linux won't find anything if
3851 * there is no lun 0.
3852 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003853 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003854 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003855 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003856 ncurrent++;
3857 this_device = currentsd[ncurrent];
3858 }
3859
3860 *this_device = *tmpdevice;
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003861 this_device->physical_device = physical_device;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003862
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003863 /*
3864 * Expose all devices except for physical devices that
3865 * are masked.
3866 */
3867 if (MASKED_DEVICE(lunaddrbytes) && this_device->physical_device)
Kevin Barnett2a168202015-11-04 15:51:21 -06003868 this_device->expose_device = 0;
3869 else
3870 this_device->expose_device = 1;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003871
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003872 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003873 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003874 /* We don't *really* support actual CD-ROM devices,
3875 * just "One Button Disaster Recovery" tape drive
3876 * which temporarily pretends to be a CD-ROM drive.
3877 * So we check that the device is really an OBDR tape
3878 * device by checking for "$DR-10" in bytes 43-48 of
3879 * the inquiry data.
3880 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003881 if (is_OBDR)
3882 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003883 break;
3884 case TYPE_DISK:
Kevin Barnett04fa2f42015-11-04 15:51:27 -06003885 if (this_device->physical_device) {
Kevin Barnettb9092b72015-07-18 11:12:59 -05003886 /* The disk is in HBA mode. */
3887 /* Never use RAID mapper in HBA mode. */
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003888 this_device->offload_enabled = 0;
Kevin Barnettb9092b72015-07-18 11:12:59 -05003889 hpsa_get_ioaccel_drive_info(h, this_device,
Don Bracef2039b02015-11-04 15:51:08 -06003890 physdev_list, phys_dev_index, id_phys);
3891 hpsa_get_path_info(this_device,
3892 physdev_list, phys_dev_index, id_phys);
Kevin Barnettb9092b72015-07-18 11:12:59 -05003893 }
Joe Handzikecf418d12015-04-23 09:33:04 -05003894 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003895 break;
3896 case TYPE_TAPE:
3897 case TYPE_MEDIUM_CHANGER:
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003898 case TYPE_ENCLOSURE:
Kevin Barnettb9092b72015-07-18 11:12:59 -05003899 ncurrent++;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003900 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003901 case TYPE_RAID:
3902 /* Only present the Smartarray HBA as a RAID controller.
3903 * If it's a RAID controller other than the HBA itself
3904 * (an external RAID controller, MSA500 or similar)
3905 * don't present it.
3906 */
3907 if (!is_hba_lunid(lunaddrbytes))
3908 break;
3909 ncurrent++;
3910 break;
3911 default:
3912 break;
3913 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003914 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003915 break;
3916 }
Don Brace8aa60682015-11-04 15:50:01 -06003917 adjust_hpsa_scsi_table(h, currentsd, ncurrent);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003918out:
3919 kfree(tmpdevice);
3920 for (i = 0; i < ndev_allocated; i++)
3921 kfree(currentsd[i]);
3922 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003923 kfree(physdev_list);
3924 kfree(logdev_list);
Don Brace03383732015-01-23 16:43:30 -06003925 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003926}
3927
Webb Scalesec5cbf02015-01-23 16:44:45 -06003928static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3929 struct scatterlist *sg)
3930{
3931 u64 addr64 = (u64) sg_dma_address(sg);
3932 unsigned int len = sg_dma_len(sg);
3933
3934 desc->Addr = cpu_to_le64(addr64);
3935 desc->Len = cpu_to_le32(len);
3936 desc->Ext = 0;
3937}
3938
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003939/*
3940 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003941 * dma mapping and fills in the scatter gather entries of the
3942 * hpsa command, cp.
3943 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003944static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003945 struct CommandList *cp,
3946 struct scsi_cmnd *cmd)
3947{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003948 struct scatterlist *sg;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003949 int use_sg, i, sg_limit, chained, last_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003950 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003951
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003952 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003953
3954 use_sg = scsi_dma_map(cmd);
3955 if (use_sg < 0)
3956 return use_sg;
3957
3958 if (!use_sg)
3959 goto sglist_finished;
3960
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003961 /*
3962 * If the number of entries is greater than the max for a single list,
3963 * then we have a chained list; we will set up all but one entry in the
3964 * first list (the last entry is saved for link information);
3965 * otherwise, we don't have a chained list and we'll set up at each of
3966 * the entries in the one list.
3967 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003968 curr_sg = cp->SG;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003969 chained = use_sg > h->max_cmd_sg_entries;
3970 sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg;
3971 last_sg = scsi_sg_count(cmd) - 1;
3972 scsi_for_each_sg(cmd, sg, sg_limit, i) {
Webb Scalesec5cbf02015-01-23 16:44:45 -06003973 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003974 curr_sg++;
3975 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003976
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003977 if (chained) {
3978 /*
3979 * Continue with the chained list. Set curr_sg to the chained
3980 * list. Modify the limit to the total count less the entries
3981 * we've already set up. Resume the scan at the list entry
3982 * where the previous loop left off.
3983 */
3984 curr_sg = h->cmd_sg_list[cp->cmdindex];
3985 sg_limit = use_sg - sg_limit;
3986 for_each_sg(sg, sg, sg_limit, i) {
3987 hpsa_set_sg_descriptor(curr_sg, sg);
3988 curr_sg++;
3989 }
3990 }
3991
Webb Scalesec5cbf02015-01-23 16:44:45 -06003992 /* Back the pointer up to the last entry and mark it as "last". */
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003993 (curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003994
3995 if (use_sg + chained > h->maxSG)
3996 h->maxSG = use_sg + chained;
3997
3998 if (chained) {
3999 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004000 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06004001 if (hpsa_map_sg_chain_block(h, cp)) {
4002 scsi_dma_unmap(cmd);
4003 return -1;
4004 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004005 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004006 }
4007
4008sglist_finished:
4009
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004010 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004011 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004012 return 0;
4013}
4014
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004015#define IO_ACCEL_INELIGIBLE (1)
4016static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
4017{
4018 int is_write = 0;
4019 u32 block;
4020 u32 block_cnt;
4021
4022 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
4023 switch (cdb[0]) {
4024 case WRITE_6:
4025 case WRITE_12:
4026 is_write = 1;
4027 case READ_6:
4028 case READ_12:
4029 if (*cdb_len == 6) {
Don Bracec8a6c9a2015-11-04 15:50:50 -06004030 block = get_unaligned_be16(&cdb[2]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004031 block_cnt = cdb[4];
Don Bracec8a6c9a2015-11-04 15:50:50 -06004032 if (block_cnt == 0)
4033 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004034 } else {
4035 BUG_ON(*cdb_len != 12);
Don Bracec8a6c9a2015-11-04 15:50:50 -06004036 block = get_unaligned_be32(&cdb[2]);
4037 block_cnt = get_unaligned_be32(&cdb[6]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004038 }
4039 if (block_cnt > 0xffff)
4040 return IO_ACCEL_INELIGIBLE;
4041
4042 cdb[0] = is_write ? WRITE_10 : READ_10;
4043 cdb[1] = 0;
4044 cdb[2] = (u8) (block >> 24);
4045 cdb[3] = (u8) (block >> 16);
4046 cdb[4] = (u8) (block >> 8);
4047 cdb[5] = (u8) (block);
4048 cdb[6] = 0;
4049 cdb[7] = (u8) (block_cnt >> 8);
4050 cdb[8] = (u8) (block_cnt);
4051 cdb[9] = 0;
4052 *cdb_len = 10;
4053 break;
4054 }
4055 return 0;
4056}
4057
Scott Teelc3497752014-02-18 13:56:34 -06004058static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004059 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004060 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06004061{
4062 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06004063 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
4064 unsigned int len;
4065 unsigned int total_len = 0;
4066 struct scatterlist *sg;
4067 u64 addr64;
4068 int use_sg, i;
4069 struct SGDescriptor *curr_sg;
4070 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
4071
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004072 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06004073 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
4074 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004075 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004076 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004077
Matt Gatese1f7de02014-02-18 13:55:17 -06004078 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
4079
Don Brace03383732015-01-23 16:43:30 -06004080 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4081 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004082 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004083 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004084
Matt Gatese1f7de02014-02-18 13:55:17 -06004085 c->cmd_type = CMD_IOACCEL1;
4086
4087 /* Adjust the DMA address to point to the accelerated command buffer */
4088 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
4089 (c->cmdindex * sizeof(*cp));
4090 BUG_ON(c->busaddr & 0x0000007F);
4091
4092 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004093 if (use_sg < 0) {
4094 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06004095 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004096 }
Matt Gatese1f7de02014-02-18 13:55:17 -06004097
4098 if (use_sg) {
4099 curr_sg = cp->SG;
4100 scsi_for_each_sg(cmd, sg, use_sg, i) {
4101 addr64 = (u64) sg_dma_address(sg);
4102 len = sg_dma_len(sg);
4103 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004104 curr_sg->Addr = cpu_to_le64(addr64);
4105 curr_sg->Len = cpu_to_le32(len);
4106 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06004107 curr_sg++;
4108 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004109 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06004110
4111 switch (cmd->sc_data_direction) {
4112 case DMA_TO_DEVICE:
4113 control |= IOACCEL1_CONTROL_DATA_OUT;
4114 break;
4115 case DMA_FROM_DEVICE:
4116 control |= IOACCEL1_CONTROL_DATA_IN;
4117 break;
4118 case DMA_NONE:
4119 control |= IOACCEL1_CONTROL_NODATAXFER;
4120 break;
4121 default:
4122 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4123 cmd->sc_data_direction);
4124 BUG();
4125 break;
4126 }
4127 } else {
4128 control |= IOACCEL1_CONTROL_NODATAXFER;
4129 }
4130
Scott Teelc3497752014-02-18 13:56:34 -06004131 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06004132 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06004133 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
4134 cp->transfer_len = cpu_to_le32(total_len);
4135 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
4136 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
4137 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004138 memcpy(cp->CDB, cdb, cdb_len);
4139 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06004140 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004141 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06004142 return 0;
4143}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004144
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004145/*
4146 * Queue a command directly to a device behind the controller using the
4147 * I/O accelerator path.
4148 */
4149static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
4150 struct CommandList *c)
4151{
4152 struct scsi_cmnd *cmd = c->scsi_cmd;
4153 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4154
Don Brace03383732015-01-23 16:43:30 -06004155 c->phys_disk = dev;
4156
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004157 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004158 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004159}
4160
Scott Teeldd0e19f2014-02-18 13:57:31 -06004161/*
4162 * Set encryption parameters for the ioaccel2 request
4163 */
4164static void set_encrypt_ioaccel2(struct ctlr_info *h,
4165 struct CommandList *c, struct io_accel2_cmd *cp)
4166{
4167 struct scsi_cmnd *cmd = c->scsi_cmd;
4168 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4169 struct raid_map_data *map = &dev->raid_map;
4170 u64 first_block;
4171
Scott Teeldd0e19f2014-02-18 13:57:31 -06004172 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06004173 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06004174 return;
4175 /* Set the data encryption key index. */
4176 cp->dekindex = map->dekindex;
4177
4178 /* Set the encryption enable flag, encoded into direction field. */
4179 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
4180
4181 /* Set encryption tweak values based on logical block address
4182 * If block size is 512, tweak value is LBA.
4183 * For other block sizes, tweak is (LBA * block size)/ 512)
4184 */
4185 switch (cmd->cmnd[0]) {
4186 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
4187 case WRITE_6:
4188 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004189 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004190 break;
4191 case WRITE_10:
4192 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004193 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
4194 case WRITE_12:
4195 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06004196 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004197 break;
4198 case WRITE_16:
4199 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06004200 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004201 break;
4202 default:
4203 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06004204 "ERROR: %s: size (0x%x) not supported for encryption\n",
4205 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004206 BUG();
4207 break;
4208 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004209
4210 if (le32_to_cpu(map->volume_blk_size) != 512)
4211 first_block = first_block *
4212 le32_to_cpu(map->volume_blk_size)/512;
4213
4214 cp->tweak_lower = cpu_to_le32(first_block);
4215 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004216}
4217
Scott Teelc3497752014-02-18 13:56:34 -06004218static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
4219 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004220 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004221{
4222 struct scsi_cmnd *cmd = c->scsi_cmd;
4223 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
4224 struct ioaccel2_sg_element *curr_sg;
4225 int use_sg, i;
4226 struct scatterlist *sg;
4227 u64 addr64;
4228 u32 len;
4229 u32 total_len = 0;
4230
Webb Scalesd9a729f2015-04-23 09:33:27 -05004231 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06004232
Don Brace03383732015-01-23 16:43:30 -06004233 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4234 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004235 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004236 }
4237
Scott Teelc3497752014-02-18 13:56:34 -06004238 c->cmd_type = CMD_IOACCEL2;
4239 /* Adjust the DMA address to point to the accelerated command buffer */
4240 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
4241 (c->cmdindex * sizeof(*cp));
4242 BUG_ON(c->busaddr & 0x0000007F);
4243
4244 memset(cp, 0, sizeof(*cp));
4245 cp->IU_type = IOACCEL2_IU_TYPE;
4246
4247 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004248 if (use_sg < 0) {
4249 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004250 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004251 }
Scott Teelc3497752014-02-18 13:56:34 -06004252
4253 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06004254 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05004255 if (use_sg > h->ioaccel_maxsg) {
4256 addr64 = le64_to_cpu(
4257 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
4258 curr_sg->address = cpu_to_le64(addr64);
4259 curr_sg->length = 0;
4260 curr_sg->reserved[0] = 0;
4261 curr_sg->reserved[1] = 0;
4262 curr_sg->reserved[2] = 0;
4263 curr_sg->chain_indicator = 0x80;
4264
4265 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
4266 }
Scott Teelc3497752014-02-18 13:56:34 -06004267 scsi_for_each_sg(cmd, sg, use_sg, i) {
4268 addr64 = (u64) sg_dma_address(sg);
4269 len = sg_dma_len(sg);
4270 total_len += len;
4271 curr_sg->address = cpu_to_le64(addr64);
4272 curr_sg->length = cpu_to_le32(len);
4273 curr_sg->reserved[0] = 0;
4274 curr_sg->reserved[1] = 0;
4275 curr_sg->reserved[2] = 0;
4276 curr_sg->chain_indicator = 0;
4277 curr_sg++;
4278 }
4279
4280 switch (cmd->sc_data_direction) {
4281 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004282 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4283 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06004284 break;
4285 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004286 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4287 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06004288 break;
4289 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004290 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4291 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004292 break;
4293 default:
4294 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4295 cmd->sc_data_direction);
4296 BUG();
4297 break;
4298 }
4299 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06004300 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4301 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004302 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06004303
4304 /* Set encryption parameters, if necessary */
4305 set_encrypt_ioaccel2(h, c, cp);
4306
Don Brace2b08b3e2015-01-23 16:41:09 -06004307 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06004308 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06004309 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06004310
Scott Teelc3497752014-02-18 13:56:34 -06004311 cp->data_len = cpu_to_le32(total_len);
4312 cp->err_ptr = cpu_to_le64(c->busaddr +
4313 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004314 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06004315
Webb Scalesd9a729f2015-04-23 09:33:27 -05004316 /* fill in sg elements */
4317 if (use_sg > h->ioaccel_maxsg) {
4318 cp->sg_count = 1;
Don Bracea736e9b2015-11-04 15:51:14 -06004319 cp->sg[0].length = cpu_to_le32(use_sg * sizeof(cp->sg[0]));
Webb Scalesd9a729f2015-04-23 09:33:27 -05004320 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
4321 atomic_dec(&phys_disk->ioaccel_cmds_out);
4322 scsi_dma_unmap(cmd);
4323 return -1;
4324 }
4325 } else
4326 cp->sg_count = (u8) use_sg;
4327
Scott Teelc3497752014-02-18 13:56:34 -06004328 enqueue_cmd_and_start_io(h, c);
4329 return 0;
4330}
4331
4332/*
4333 * Queue a command to the correct I/O accelerator path.
4334 */
4335static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
4336 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004337 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004338{
Don Brace03383732015-01-23 16:43:30 -06004339 /* Try to honor the device's queue depth */
4340 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
4341 phys_disk->queue_depth) {
4342 atomic_dec(&phys_disk->ioaccel_cmds_out);
4343 return IO_ACCEL_INELIGIBLE;
4344 }
Scott Teelc3497752014-02-18 13:56:34 -06004345 if (h->transMethod & CFGTBL_Trans_io_accel1)
4346 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004347 cdb, cdb_len, scsi3addr,
4348 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004349 else
4350 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004351 cdb, cdb_len, scsi3addr,
4352 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004353}
4354
Scott Teel6b80b182014-02-18 13:56:55 -06004355static void raid_map_helper(struct raid_map_data *map,
4356 int offload_to_mirror, u32 *map_index, u32 *current_group)
4357{
4358 if (offload_to_mirror == 0) {
4359 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06004360 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004361 return;
4362 }
4363 do {
4364 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06004365 *current_group = *map_index /
4366 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004367 if (offload_to_mirror == *current_group)
4368 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06004369 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06004370 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004371 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004372 (*current_group)++;
4373 } else {
4374 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004375 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004376 *current_group = 0;
4377 }
4378 } while (offload_to_mirror != *current_group);
4379}
4380
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004381/*
4382 * Attempt to perform offload RAID mapping for a logical volume I/O.
4383 */
4384static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4385 struct CommandList *c)
4386{
4387 struct scsi_cmnd *cmd = c->scsi_cmd;
4388 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4389 struct raid_map_data *map = &dev->raid_map;
4390 struct raid_map_disk_data *dd = &map->data[0];
4391 int is_write = 0;
4392 u32 map_index;
4393 u64 first_block, last_block;
4394 u32 block_cnt;
4395 u32 blocks_per_row;
4396 u64 first_row, last_row;
4397 u32 first_row_offset, last_row_offset;
4398 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06004399 u64 r0_first_row, r0_last_row;
4400 u32 r5or6_blocks_per_row;
4401 u64 r5or6_first_row, r5or6_last_row;
4402 u32 r5or6_first_row_offset, r5or6_last_row_offset;
4403 u32 r5or6_first_column, r5or6_last_column;
4404 u32 total_disks_per_row;
4405 u32 stripesize;
4406 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004407 u32 map_row;
4408 u32 disk_handle;
4409 u64 disk_block;
4410 u32 disk_block_cnt;
4411 u8 cdb[16];
4412 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06004413 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004414#if BITS_PER_LONG == 32
4415 u64 tmpdiv;
4416#endif
Scott Teel6b80b182014-02-18 13:56:55 -06004417 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004418
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004419 /* check for valid opcode, get LBA and block count */
4420 switch (cmd->cmnd[0]) {
4421 case WRITE_6:
4422 is_write = 1;
4423 case READ_6:
Don Bracec8a6c9a2015-11-04 15:50:50 -06004424 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004425 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05004426 if (block_cnt == 0)
4427 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004428 break;
4429 case WRITE_10:
4430 is_write = 1;
4431 case READ_10:
4432 first_block =
4433 (((u64) cmd->cmnd[2]) << 24) |
4434 (((u64) cmd->cmnd[3]) << 16) |
4435 (((u64) cmd->cmnd[4]) << 8) |
4436 cmd->cmnd[5];
4437 block_cnt =
4438 (((u32) cmd->cmnd[7]) << 8) |
4439 cmd->cmnd[8];
4440 break;
4441 case WRITE_12:
4442 is_write = 1;
4443 case READ_12:
4444 first_block =
4445 (((u64) cmd->cmnd[2]) << 24) |
4446 (((u64) cmd->cmnd[3]) << 16) |
4447 (((u64) cmd->cmnd[4]) << 8) |
4448 cmd->cmnd[5];
4449 block_cnt =
4450 (((u32) cmd->cmnd[6]) << 24) |
4451 (((u32) cmd->cmnd[7]) << 16) |
4452 (((u32) cmd->cmnd[8]) << 8) |
4453 cmd->cmnd[9];
4454 break;
4455 case WRITE_16:
4456 is_write = 1;
4457 case READ_16:
4458 first_block =
4459 (((u64) cmd->cmnd[2]) << 56) |
4460 (((u64) cmd->cmnd[3]) << 48) |
4461 (((u64) cmd->cmnd[4]) << 40) |
4462 (((u64) cmd->cmnd[5]) << 32) |
4463 (((u64) cmd->cmnd[6]) << 24) |
4464 (((u64) cmd->cmnd[7]) << 16) |
4465 (((u64) cmd->cmnd[8]) << 8) |
4466 cmd->cmnd[9];
4467 block_cnt =
4468 (((u32) cmd->cmnd[10]) << 24) |
4469 (((u32) cmd->cmnd[11]) << 16) |
4470 (((u32) cmd->cmnd[12]) << 8) |
4471 cmd->cmnd[13];
4472 break;
4473 default:
4474 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4475 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004476 last_block = first_block + block_cnt - 1;
4477
4478 /* check for write to non-RAID-0 */
4479 if (is_write && dev->raid_level != 0)
4480 return IO_ACCEL_INELIGIBLE;
4481
4482 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06004483 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
4484 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004485 return IO_ACCEL_INELIGIBLE;
4486
4487 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06004488 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
4489 le16_to_cpu(map->strip_size);
4490 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004491#if BITS_PER_LONG == 32
4492 tmpdiv = first_block;
4493 (void) do_div(tmpdiv, blocks_per_row);
4494 first_row = tmpdiv;
4495 tmpdiv = last_block;
4496 (void) do_div(tmpdiv, blocks_per_row);
4497 last_row = tmpdiv;
4498 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4499 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4500 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004501 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004502 first_column = tmpdiv;
4503 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004504 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004505 last_column = tmpdiv;
4506#else
4507 first_row = first_block / blocks_per_row;
4508 last_row = last_block / blocks_per_row;
4509 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4510 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06004511 first_column = first_row_offset / strip_size;
4512 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004513#endif
4514
4515 /* if this isn't a single row/column then give to the controller */
4516 if ((first_row != last_row) || (first_column != last_column))
4517 return IO_ACCEL_INELIGIBLE;
4518
4519 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06004520 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
4521 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004522 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004523 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004524 map_index = (map_row * total_disks_per_row) + first_column;
4525
4526 switch (dev->raid_level) {
4527 case HPSA_RAID_0:
4528 break; /* nothing special to do */
4529 case HPSA_RAID_1:
4530 /* Handles load balance across RAID 1 members.
4531 * (2-drive R1 and R10 with even # of drives.)
4532 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004533 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004534 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004535 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06004536 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004537 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06004538 break;
4539 case HPSA_RAID_ADM:
4540 /* Handles N-way mirrors (R1-ADM)
4541 * and R10 with # of drives divisible by 3.)
4542 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004543 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06004544
4545 offload_to_mirror = dev->offload_to_mirror;
4546 raid_map_helper(map, offload_to_mirror,
4547 &map_index, &current_group);
4548 /* set mirror group to use next time */
4549 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06004550 (offload_to_mirror >=
4551 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004552 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06004553 dev->offload_to_mirror = offload_to_mirror;
4554 /* Avoid direct use of dev->offload_to_mirror within this
4555 * function since multiple threads might simultaneously
4556 * increment it beyond the range of dev->layout_map_count -1.
4557 */
4558 break;
4559 case HPSA_RAID_5:
4560 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004561 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004562 break;
4563
4564 /* Verify first and last block are in same RAID group */
4565 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06004566 le16_to_cpu(map->strip_size) *
4567 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004568 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06004569 stripesize = r5or6_blocks_per_row *
4570 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06004571#if BITS_PER_LONG == 32
4572 tmpdiv = first_block;
4573 first_group = do_div(tmpdiv, stripesize);
4574 tmpdiv = first_group;
4575 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4576 first_group = tmpdiv;
4577 tmpdiv = last_block;
4578 last_group = do_div(tmpdiv, stripesize);
4579 tmpdiv = last_group;
4580 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4581 last_group = tmpdiv;
4582#else
4583 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
4584 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06004585#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05004586 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06004587 return IO_ACCEL_INELIGIBLE;
4588
4589 /* Verify request is in a single row of RAID 5/6 */
4590#if BITS_PER_LONG == 32
4591 tmpdiv = first_block;
4592 (void) do_div(tmpdiv, stripesize);
4593 first_row = r5or6_first_row = r0_first_row = tmpdiv;
4594 tmpdiv = last_block;
4595 (void) do_div(tmpdiv, stripesize);
4596 r5or6_last_row = r0_last_row = tmpdiv;
4597#else
4598 first_row = r5or6_first_row = r0_first_row =
4599 first_block / stripesize;
4600 r5or6_last_row = r0_last_row = last_block / stripesize;
4601#endif
4602 if (r5or6_first_row != r5or6_last_row)
4603 return IO_ACCEL_INELIGIBLE;
4604
4605
4606 /* Verify request is in a single column */
4607#if BITS_PER_LONG == 32
4608 tmpdiv = first_block;
4609 first_row_offset = do_div(tmpdiv, stripesize);
4610 tmpdiv = first_row_offset;
4611 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
4612 r5or6_first_row_offset = first_row_offset;
4613 tmpdiv = last_block;
4614 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
4615 tmpdiv = r5or6_last_row_offset;
4616 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
4617 tmpdiv = r5or6_first_row_offset;
4618 (void) do_div(tmpdiv, map->strip_size);
4619 first_column = r5or6_first_column = tmpdiv;
4620 tmpdiv = r5or6_last_row_offset;
4621 (void) do_div(tmpdiv, map->strip_size);
4622 r5or6_last_column = tmpdiv;
4623#else
4624 first_row_offset = r5or6_first_row_offset =
4625 (u32)((first_block % stripesize) %
4626 r5or6_blocks_per_row);
4627
4628 r5or6_last_row_offset =
4629 (u32)((last_block % stripesize) %
4630 r5or6_blocks_per_row);
4631
4632 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004633 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004634 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004635 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004636#endif
4637 if (r5or6_first_column != r5or6_last_column)
4638 return IO_ACCEL_INELIGIBLE;
4639
4640 /* Request is eligible */
4641 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004642 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004643
4644 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06004645 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06004646 (map_row * total_disks_per_row) + first_column;
4647 break;
4648 default:
4649 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004650 }
Scott Teel6b80b182014-02-18 13:56:55 -06004651
Stephen Cameron07543e02015-01-23 16:44:14 -06004652 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
4653 return IO_ACCEL_INELIGIBLE;
4654
Don Brace03383732015-01-23 16:43:30 -06004655 c->phys_disk = dev->phys_disk[map_index];
4656
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004657 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06004658 disk_block = le64_to_cpu(map->disk_starting_blk) +
4659 first_row * le16_to_cpu(map->strip_size) +
4660 (first_row_offset - first_column *
4661 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004662 disk_block_cnt = block_cnt;
4663
4664 /* handle differing logical/physical block sizes */
4665 if (map->phys_blk_shift) {
4666 disk_block <<= map->phys_blk_shift;
4667 disk_block_cnt <<= map->phys_blk_shift;
4668 }
4669 BUG_ON(disk_block_cnt > 0xffff);
4670
4671 /* build the new CDB for the physical disk I/O */
4672 if (disk_block > 0xffffffff) {
4673 cdb[0] = is_write ? WRITE_16 : READ_16;
4674 cdb[1] = 0;
4675 cdb[2] = (u8) (disk_block >> 56);
4676 cdb[3] = (u8) (disk_block >> 48);
4677 cdb[4] = (u8) (disk_block >> 40);
4678 cdb[5] = (u8) (disk_block >> 32);
4679 cdb[6] = (u8) (disk_block >> 24);
4680 cdb[7] = (u8) (disk_block >> 16);
4681 cdb[8] = (u8) (disk_block >> 8);
4682 cdb[9] = (u8) (disk_block);
4683 cdb[10] = (u8) (disk_block_cnt >> 24);
4684 cdb[11] = (u8) (disk_block_cnt >> 16);
4685 cdb[12] = (u8) (disk_block_cnt >> 8);
4686 cdb[13] = (u8) (disk_block_cnt);
4687 cdb[14] = 0;
4688 cdb[15] = 0;
4689 cdb_len = 16;
4690 } else {
4691 cdb[0] = is_write ? WRITE_10 : READ_10;
4692 cdb[1] = 0;
4693 cdb[2] = (u8) (disk_block >> 24);
4694 cdb[3] = (u8) (disk_block >> 16);
4695 cdb[4] = (u8) (disk_block >> 8);
4696 cdb[5] = (u8) (disk_block);
4697 cdb[6] = 0;
4698 cdb[7] = (u8) (disk_block_cnt >> 8);
4699 cdb[8] = (u8) (disk_block_cnt);
4700 cdb[9] = 0;
4701 cdb_len = 10;
4702 }
4703 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004704 dev->scsi3addr,
4705 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004706}
4707
Webb Scales25163bd2015-04-23 09:32:00 -05004708/*
4709 * Submit commands down the "normal" RAID stack path
4710 * All callers to hpsa_ciss_submit must check lockup_detected
4711 * beforehand, before (opt.) and after calling cmd_alloc
4712 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06004713static int hpsa_ciss_submit(struct ctlr_info *h,
4714 struct CommandList *c, struct scsi_cmnd *cmd,
4715 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004716{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004717 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004718 c->cmd_type = CMD_SCSI;
4719 c->scsi_cmd = cmd;
4720 c->Header.ReplyQueue = 0; /* unused in simple mode */
4721 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004722 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004723
4724 /* Fill in the request block... */
4725
4726 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004727 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4728 c->Request.CDBLen = cmd->cmd_len;
4729 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004730 switch (cmd->sc_data_direction) {
4731 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004732 c->Request.type_attr_dir =
4733 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004734 break;
4735 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004736 c->Request.type_attr_dir =
4737 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004738 break;
4739 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004740 c->Request.type_attr_dir =
4741 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004742 break;
4743 case DMA_BIDIRECTIONAL:
4744 /* This can happen if a buggy application does a scsi passthru
4745 * and sets both inlen and outlen to non-zero. ( see
4746 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4747 */
4748
Stephen M. Camerona505b862014-11-14 17:27:04 -06004749 c->Request.type_attr_dir =
4750 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004751 /* This is technically wrong, and hpsa controllers should
4752 * reject it with CMD_INVALID, which is the most correct
4753 * response, but non-fibre backends appear to let it
4754 * slide by, and give the same results as if this field
4755 * were set correctly. Either way is acceptable for
4756 * our purposes here.
4757 */
4758
4759 break;
4760
4761 default:
4762 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4763 cmd->sc_data_direction);
4764 BUG();
4765 break;
4766 }
4767
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004768 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Webb Scales73153fe2015-04-23 09:35:04 -05004769 hpsa_cmd_resolve_and_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004770 return SCSI_MLQUEUE_HOST_BUSY;
4771 }
4772 enqueue_cmd_and_start_io(h, c);
4773 /* the cmd'll come back via intr handler in complete_scsi_command() */
4774 return 0;
4775}
4776
Stephen Cameron360c73b2015-04-23 09:32:32 -05004777static void hpsa_cmd_init(struct ctlr_info *h, int index,
4778 struct CommandList *c)
4779{
4780 dma_addr_t cmd_dma_handle, err_dma_handle;
4781
4782 /* Zero out all of commandlist except the last field, refcount */
4783 memset(c, 0, offsetof(struct CommandList, refcount));
4784 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
4785 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4786 c->err_info = h->errinfo_pool + index;
4787 memset(c->err_info, 0, sizeof(*c->err_info));
4788 err_dma_handle = h->errinfo_pool_dhandle
4789 + index * sizeof(*c->err_info);
4790 c->cmdindex = index;
4791 c->busaddr = (u32) cmd_dma_handle;
4792 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4793 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
4794 c->h = h;
Webb Scalesa58e7e52015-04-23 09:34:16 -05004795 c->scsi_cmd = SCSI_CMD_IDLE;
Stephen Cameron360c73b2015-04-23 09:32:32 -05004796}
4797
4798static void hpsa_preinitialize_commands(struct ctlr_info *h)
4799{
4800 int i;
4801
4802 for (i = 0; i < h->nr_cmds; i++) {
4803 struct CommandList *c = h->cmd_pool + i;
4804
4805 hpsa_cmd_init(h, i, c);
4806 atomic_set(&c->refcount, 0);
4807 }
4808}
4809
4810static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
4811 struct CommandList *c)
4812{
4813 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4814
Webb Scales73153fe2015-04-23 09:35:04 -05004815 BUG_ON(c->cmdindex != index);
4816
Stephen Cameron360c73b2015-04-23 09:32:32 -05004817 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4818 memset(c->err_info, 0, sizeof(*c->err_info));
4819 c->busaddr = (u32) cmd_dma_handle;
4820}
4821
Webb Scales592a0ad2015-04-23 09:32:48 -05004822static int hpsa_ioaccel_submit(struct ctlr_info *h,
4823 struct CommandList *c, struct scsi_cmnd *cmd,
4824 unsigned char *scsi3addr)
4825{
4826 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4827 int rc = IO_ACCEL_INELIGIBLE;
4828
4829 cmd->host_scribble = (unsigned char *) c;
4830
4831 if (dev->offload_enabled) {
4832 hpsa_cmd_init(h, c->cmdindex, c);
4833 c->cmd_type = CMD_SCSI;
4834 c->scsi_cmd = cmd;
4835 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4836 if (rc < 0) /* scsi_dma_map failed. */
4837 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05004838 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004839 hpsa_cmd_init(h, c->cmdindex, c);
4840 c->cmd_type = CMD_SCSI;
4841 c->scsi_cmd = cmd;
4842 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4843 if (rc < 0) /* scsi_dma_map failed. */
4844 rc = SCSI_MLQUEUE_HOST_BUSY;
4845 }
4846 return rc;
4847}
4848
Don Brace080ef1c2015-01-23 16:43:25 -06004849static void hpsa_command_resubmit_worker(struct work_struct *work)
4850{
4851 struct scsi_cmnd *cmd;
4852 struct hpsa_scsi_dev_t *dev;
Webb Scales8a0ff922015-04-23 09:34:11 -05004853 struct CommandList *c = container_of(work, struct CommandList, work);
Don Brace080ef1c2015-01-23 16:43:25 -06004854
4855 cmd = c->scsi_cmd;
4856 dev = cmd->device->hostdata;
4857 if (!dev) {
4858 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05004859 return hpsa_cmd_free_and_done(c->h, c, cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06004860 }
Webb Scalesd604f532015-04-23 09:35:22 -05004861 if (c->reset_pending)
4862 return hpsa_cmd_resolve_and_free(c->h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05004863 if (c->abort_pending)
4864 return hpsa_cmd_abort_and_free(c->h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05004865 if (c->cmd_type == CMD_IOACCEL2) {
4866 struct ctlr_info *h = c->h;
4867 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4868 int rc;
4869
4870 if (c2->error_data.serv_response ==
4871 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
4872 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
4873 if (rc == 0)
4874 return;
4875 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4876 /*
4877 * If we get here, it means dma mapping failed.
4878 * Try again via scsi mid layer, which will
4879 * then get SCSI_MLQUEUE_HOST_BUSY.
4880 */
4881 cmd->result = DID_IMM_RETRY << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05004882 return hpsa_cmd_free_and_done(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05004883 }
4884 /* else, fall thru and resubmit down CISS path */
4885 }
4886 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05004887 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004888 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4889 /*
4890 * If we get here, it means dma mapping failed. Try
4891 * again via scsi mid layer, which will then get
4892 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05004893 *
4894 * hpsa_ciss_submit will have already freed c
4895 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06004896 */
4897 cmd->result = DID_IMM_RETRY << 16;
4898 cmd->scsi_done(cmd);
4899 }
4900}
4901
Stephen Cameron574f05d2015-01-23 16:43:20 -06004902/* Running in struct Scsi_Host->host_lock less mode */
4903static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4904{
4905 struct ctlr_info *h;
4906 struct hpsa_scsi_dev_t *dev;
4907 unsigned char scsi3addr[8];
4908 struct CommandList *c;
4909 int rc = 0;
4910
4911 /* Get the ptr to our adapter structure out of cmd->host. */
4912 h = sdev_to_hba(cmd->device);
Webb Scales73153fe2015-04-23 09:35:04 -05004913
4914 BUG_ON(cmd->request->tag < 0);
4915
Stephen Cameron574f05d2015-01-23 16:43:20 -06004916 dev = cmd->device->hostdata;
4917 if (!dev) {
4918 cmd->result = DID_NO_CONNECT << 16;
4919 cmd->scsi_done(cmd);
4920 return 0;
4921 }
Webb Scales73153fe2015-04-23 09:35:04 -05004922
Stephen Cameron574f05d2015-01-23 16:43:20 -06004923 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4924
4925 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004926 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004927 cmd->scsi_done(cmd);
4928 return 0;
4929 }
Webb Scales73153fe2015-04-23 09:35:04 -05004930 c = cmd_tagged_alloc(h, cmd);
Stephen Cameron574f05d2015-01-23 16:43:20 -06004931
Stephen Cameron407863c2015-01-23 16:44:19 -06004932 /*
4933 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004934 * Retries always go down the normal I/O path.
4935 */
4936 if (likely(cmd->retries == 0 &&
4937 cmd->request->cmd_type == REQ_TYPE_FS &&
4938 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004939 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
4940 if (rc == 0)
4941 return 0;
4942 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
Webb Scales73153fe2015-04-23 09:35:04 -05004943 hpsa_cmd_resolve_and_free(h, c);
Webb Scales592a0ad2015-04-23 09:32:48 -05004944 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004945 }
4946 }
4947 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4948}
4949
Webb Scales8ebc9242015-01-23 16:44:50 -06004950static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004951{
4952 unsigned long flags;
4953
Webb Scales8ebc9242015-01-23 16:44:50 -06004954 spin_lock_irqsave(&h->scan_lock, flags);
4955 h->scan_finished = 1;
4956 wake_up_all(&h->scan_wait_queue);
4957 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004958}
4959
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004960static void hpsa_scan_start(struct Scsi_Host *sh)
4961{
4962 struct ctlr_info *h = shost_to_hba(sh);
4963 unsigned long flags;
4964
Webb Scales8ebc9242015-01-23 16:44:50 -06004965 /*
4966 * Don't let rescans be initiated on a controller known to be locked
4967 * up. If the controller locks up *during* a rescan, that thread is
4968 * probably hosed, but at least we can prevent new rescan threads from
4969 * piling up on a locked up controller.
4970 */
4971 if (unlikely(lockup_detected(h)))
4972 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004973
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004974 /* wait until any scan already in progress is finished. */
4975 while (1) {
4976 spin_lock_irqsave(&h->scan_lock, flags);
4977 if (h->scan_finished)
4978 break;
4979 spin_unlock_irqrestore(&h->scan_lock, flags);
4980 wait_event(h->scan_wait_queue, h->scan_finished);
4981 /* Note: We don't need to worry about a race between this
4982 * thread and driver unload because the midlayer will
4983 * have incremented the reference count, so unload won't
4984 * happen if we're in here.
4985 */
4986 }
4987 h->scan_finished = 0; /* mark scan as in progress */
4988 spin_unlock_irqrestore(&h->scan_lock, flags);
4989
Webb Scales8ebc9242015-01-23 16:44:50 -06004990 if (unlikely(lockup_detected(h)))
4991 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004992
Don Brace8aa60682015-11-04 15:50:01 -06004993 hpsa_update_scsi_devices(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004994
Webb Scales8ebc9242015-01-23 16:44:50 -06004995 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004996}
4997
Don Brace7c0a0222015-01-23 16:41:30 -06004998static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
4999{
Don Brace03383732015-01-23 16:43:30 -06005000 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
5001
5002 if (!logical_drive)
5003 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06005004
5005 if (qdepth < 1)
5006 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06005007 else if (qdepth > logical_drive->queue_depth)
5008 qdepth = logical_drive->queue_depth;
5009
5010 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06005011}
5012
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005013static int hpsa_scan_finished(struct Scsi_Host *sh,
5014 unsigned long elapsed_time)
5015{
5016 struct ctlr_info *h = shost_to_hba(sh);
5017 unsigned long flags;
5018 int finished;
5019
5020 spin_lock_irqsave(&h->scan_lock, flags);
5021 finished = h->scan_finished;
5022 spin_unlock_irqrestore(&h->scan_lock, flags);
5023 return finished;
5024}
5025
Robert Elliott2946e822015-04-23 09:35:09 -05005026static int hpsa_scsi_host_alloc(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005027{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005028 struct Scsi_Host *sh;
5029 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005030
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005031 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
Robert Elliott2946e822015-04-23 09:35:09 -05005032 if (sh == NULL) {
5033 dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
5034 return -ENOMEM;
5035 }
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005036
5037 sh->io_port = 0;
5038 sh->n_io_port = 0;
5039 sh->this_id = -1;
5040 sh->max_channel = 3;
5041 sh->max_cmd_len = MAX_COMMAND_SIZE;
5042 sh->max_lun = HPSA_MAX_LUN;
5043 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05005044 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06005045 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005046 sh->sg_tablesize = h->maxsgentries;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005047 sh->hostdata[0] = (unsigned long) h;
5048 sh->irq = h->intr[h->intr_mode];
5049 sh->unique_id = sh->irq;
Webb Scales73153fe2015-04-23 09:35:04 -05005050 error = scsi_init_shared_tag_map(sh, sh->can_queue);
5051 if (error) {
5052 dev_err(&h->pdev->dev,
5053 "%s: scsi_init_shared_tag_map failed for controller %d\n",
5054 __func__, h->ctlr);
Robert Elliott2946e822015-04-23 09:35:09 -05005055 scsi_host_put(sh);
5056 return error;
Webb Scales73153fe2015-04-23 09:35:04 -05005057 }
Robert Elliott2946e822015-04-23 09:35:09 -05005058 h->scsi_host = sh;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005059 return 0;
Robert Elliott2946e822015-04-23 09:35:09 -05005060}
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005061
Robert Elliott2946e822015-04-23 09:35:09 -05005062static int hpsa_scsi_add_host(struct ctlr_info *h)
5063{
5064 int rv;
5065
5066 rv = scsi_add_host(h->scsi_host, &h->pdev->dev);
5067 if (rv) {
5068 dev_err(&h->pdev->dev, "scsi_add_host failed\n");
5069 return rv;
5070 }
5071 scsi_scan_host(h->scsi_host);
5072 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005073}
5074
Webb Scalesb69324f2015-04-23 09:34:22 -05005075/*
Webb Scales73153fe2015-04-23 09:35:04 -05005076 * The block layer has already gone to the trouble of picking out a unique,
5077 * small-integer tag for this request. We use an offset from that value as
5078 * an index to select our command block. (The offset allows us to reserve the
5079 * low-numbered entries for our own uses.)
5080 */
5081static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
5082{
5083 int idx = scmd->request->tag;
5084
5085 if (idx < 0)
5086 return idx;
5087
5088 /* Offset to leave space for internal cmds. */
5089 return idx += HPSA_NRESERVED_CMDS;
5090}
5091
5092/*
Webb Scalesb69324f2015-04-23 09:34:22 -05005093 * Send a TEST_UNIT_READY command to the specified LUN using the specified
5094 * reply queue; returns zero if the unit is ready, and non-zero otherwise.
5095 */
5096static int hpsa_send_test_unit_ready(struct ctlr_info *h,
5097 struct CommandList *c, unsigned char lunaddr[],
5098 int reply_queue)
5099{
5100 int rc;
5101
5102 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
5103 (void) fill_cmd(c, TEST_UNIT_READY, h,
5104 NULL, 0, 0, lunaddr, TYPE_CMD);
5105 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
5106 if (rc)
5107 return rc;
5108 /* no unmap needed here because no data xfer. */
5109
5110 /* Check if the unit is already ready. */
5111 if (c->err_info->CommandStatus == CMD_SUCCESS)
5112 return 0;
5113
5114 /*
5115 * The first command sent after reset will receive "unit attention" to
5116 * indicate that the LUN has been reset...this is actually what we're
5117 * looking for (but, success is good too).
5118 */
5119 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5120 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
5121 (c->err_info->SenseInfo[2] == NO_SENSE ||
5122 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
5123 return 0;
5124
5125 return 1;
5126}
5127
5128/*
5129 * Wait for a TEST_UNIT_READY command to complete, retrying as necessary;
5130 * returns zero when the unit is ready, and non-zero when giving up.
5131 */
5132static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h,
5133 struct CommandList *c,
5134 unsigned char lunaddr[], int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005135{
Tomas Henzl89193582014-02-21 16:25:05 -06005136 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005137 int count = 0;
5138 int waittime = 1; /* seconds */
Webb Scalesb69324f2015-04-23 09:34:22 -05005139
5140 /* Send test unit ready until device ready, or give up. */
5141 for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) {
5142
5143 /*
5144 * Wait for a bit. do this first, because if we send
5145 * the TUR right away, the reset will just abort it.
5146 */
5147 msleep(1000 * waittime);
5148
5149 rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue);
5150 if (!rc)
5151 break;
5152
5153 /* Increase wait time with each try, up to a point. */
5154 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
5155 waittime *= 2;
5156
5157 dev_warn(&h->pdev->dev,
5158 "waiting %d secs for device to become ready.\n",
5159 waittime);
5160 }
5161
5162 return rc;
5163}
5164
5165static int wait_for_device_to_become_ready(struct ctlr_info *h,
5166 unsigned char lunaddr[],
5167 int reply_queue)
5168{
5169 int first_queue;
5170 int last_queue;
5171 int rq;
5172 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005173 struct CommandList *c;
5174
Stephen Cameron45fcb862015-01-23 16:43:04 -06005175 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005176
Webb Scalesb69324f2015-04-23 09:34:22 -05005177 /*
5178 * If no specific reply queue was requested, then send the TUR
5179 * repeatedly, requesting a reply on each reply queue; otherwise execute
5180 * the loop exactly once using only the specified queue.
5181 */
5182 if (reply_queue == DEFAULT_REPLY_QUEUE) {
5183 first_queue = 0;
5184 last_queue = h->nreply_queues - 1;
5185 } else {
5186 first_queue = reply_queue;
5187 last_queue = reply_queue;
5188 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005189
Webb Scalesb69324f2015-04-23 09:34:22 -05005190 for (rq = first_queue; rq <= last_queue; rq++) {
5191 rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq);
Webb Scales25163bd2015-04-23 09:32:00 -05005192 if (rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005193 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005194 }
5195
5196 if (rc)
5197 dev_warn(&h->pdev->dev, "giving up on device.\n");
5198 else
5199 dev_warn(&h->pdev->dev, "device is ready.\n");
5200
Stephen Cameron45fcb862015-01-23 16:43:04 -06005201 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005202 return rc;
5203}
5204
5205/* Need at least one of these error handlers to keep ../scsi/hosts.c from
5206 * complaining. Doing a host- or bus-reset can't do anything good here.
5207 */
5208static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
5209{
5210 int rc;
5211 struct ctlr_info *h;
5212 struct hpsa_scsi_dev_t *dev;
Scott Teel0b9b7b62015-11-04 15:51:02 -06005213 u8 reset_type;
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005214 char msg[48];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005215
5216 /* find the controller to which the command to be aborted was sent */
5217 h = sdev_to_hba(scsicmd->device);
5218 if (h == NULL) /* paranoia */
5219 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06005220
5221 if (lockup_detected(h))
5222 return FAILED;
5223
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005224 dev = scsicmd->device->hostdata;
5225 if (!dev) {
Webb Scalesd604f532015-04-23 09:35:22 -05005226 dev_err(&h->pdev->dev, "%s: device lookup failed\n", __func__);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005227 return FAILED;
5228 }
Webb Scales25163bd2015-04-23 09:32:00 -05005229
5230 /* if controller locked up, we can guarantee command won't complete */
5231 if (lockup_detected(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005232 snprintf(msg, sizeof(msg),
5233 "cmd %d RESET FAILED, lockup detected",
5234 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005235 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005236 return FAILED;
5237 }
5238
5239 /* this reset request might be the result of a lockup; check */
5240 if (detect_controller_lockup(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005241 snprintf(msg, sizeof(msg),
5242 "cmd %d RESET FAILED, new lockup detected",
5243 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005244 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005245 return FAILED;
5246 }
5247
Webb Scalesd604f532015-04-23 09:35:22 -05005248 /* Do not attempt on controller */
5249 if (is_hba_lunid(dev->scsi3addr))
5250 return SUCCESS;
5251
Scott Teel0b9b7b62015-11-04 15:51:02 -06005252 if (is_logical_dev_addr_mode(dev->scsi3addr))
5253 reset_type = HPSA_DEVICE_RESET_MSG;
5254 else
5255 reset_type = HPSA_PHYS_TARGET_RESET;
5256
5257 sprintf(msg, "resetting %s",
5258 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ");
5259 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005260
Don Braceda03ded2015-11-04 15:50:56 -06005261 h->reset_in_progress = 1;
5262
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005263 /* send a reset to the SCSI LUN which the command was sent to */
Scott Teel0b9b7b62015-11-04 15:51:02 -06005264 rc = hpsa_do_reset(h, dev, dev->scsi3addr, reset_type,
Webb Scalesd604f532015-04-23 09:35:22 -05005265 DEFAULT_REPLY_QUEUE);
Scott Teel0b9b7b62015-11-04 15:51:02 -06005266 sprintf(msg, "reset %s %s",
5267 reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ",
5268 rc == 0 ? "completed successfully" : "failed");
Webb Scalesd604f532015-04-23 09:35:22 -05005269 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Don Braceda03ded2015-11-04 15:50:56 -06005270 h->reset_in_progress = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05005271 return rc == 0 ? SUCCESS : FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005272}
5273
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005274static void swizzle_abort_tag(u8 *tag)
5275{
5276 u8 original_tag[8];
5277
5278 memcpy(original_tag, tag, 8);
5279 tag[0] = original_tag[3];
5280 tag[1] = original_tag[2];
5281 tag[2] = original_tag[1];
5282 tag[3] = original_tag[0];
5283 tag[4] = original_tag[7];
5284 tag[5] = original_tag[6];
5285 tag[6] = original_tag[5];
5286 tag[7] = original_tag[4];
5287}
5288
Scott Teel17eb87d2014-02-18 13:55:28 -06005289static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06005290 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06005291{
Don Brace2b08b3e2015-01-23 16:41:09 -06005292 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06005293 if (c->cmd_type == CMD_IOACCEL1) {
5294 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
5295 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06005296 tag = le64_to_cpu(cm1->tag);
5297 *tagupper = cpu_to_le32(tag >> 32);
5298 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005299 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06005300 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06005301 if (c->cmd_type == CMD_IOACCEL2) {
5302 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
5303 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06005304 /* upper tag not used in ioaccel2 mode */
5305 memset(tagupper, 0, sizeof(*tagupper));
5306 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005307 return;
5308 }
Don Brace2b08b3e2015-01-23 16:41:09 -06005309 tag = le64_to_cpu(c->Header.tag);
5310 *tagupper = cpu_to_le32(tag >> 32);
5311 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06005312}
5313
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005314static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005315 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005316{
5317 int rc = IO_OK;
5318 struct CommandList *c;
5319 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06005320 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005321
Stephen Cameron45fcb862015-01-23 16:43:04 -06005322 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005323
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005324 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005325 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005326 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005327 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005328 swizzle_abort_tag(&c->Request.CDB[4]);
Webb Scales25163bd2015-04-23 09:32:00 -05005329 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06005330 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005331 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005332 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005333 /* no unmap needed here because no data xfer. */
5334
5335 ei = c->err_info;
5336 switch (ei->CommandStatus) {
5337 case CMD_SUCCESS:
5338 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05005339 case CMD_TMF_STATUS:
5340 rc = hpsa_evaluate_tmf_status(h, c);
5341 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005342 case CMD_UNABORTABLE: /* Very common, don't make noise. */
5343 rc = -1;
5344 break;
5345 default:
5346 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005347 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06005348 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005349 rc = -1;
5350 break;
5351 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005352 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06005353 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
5354 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005355 return rc;
5356}
5357
Stephen Cameron8be986c2015-04-23 09:34:06 -05005358static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h,
5359 struct CommandList *command_to_abort, int reply_queue)
5360{
5361 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5362 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
5363 struct io_accel2_cmd *c2a =
5364 &h->ioaccel2_cmd_pool[command_to_abort->cmdindex];
Webb Scalesa58e7e52015-04-23 09:34:16 -05005365 struct scsi_cmnd *scmd = command_to_abort->scsi_cmd;
Stephen Cameron8be986c2015-04-23 09:34:06 -05005366 struct hpsa_scsi_dev_t *dev = scmd->device->hostdata;
5367
5368 /*
5369 * We're overlaying struct hpsa_tmf_struct on top of something which
5370 * was allocated as a struct io_accel2_cmd, so we better be sure it
5371 * actually fits, and doesn't overrun the error info space.
5372 */
5373 BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) >
5374 sizeof(struct io_accel2_cmd));
5375 BUG_ON(offsetof(struct io_accel2_cmd, error_data) <
5376 offsetof(struct hpsa_tmf_struct, error_len) +
5377 sizeof(ac->error_len));
5378
5379 c->cmd_type = IOACCEL2_TMF;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005380 c->scsi_cmd = SCSI_CMD_BUSY;
5381
Stephen Cameron8be986c2015-04-23 09:34:06 -05005382 /* Adjust the DMA address to point to the accelerated command buffer */
5383 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
5384 (c->cmdindex * sizeof(struct io_accel2_cmd));
5385 BUG_ON(c->busaddr & 0x0000007F);
5386
5387 memset(ac, 0, sizeof(*c2)); /* yes this is correct */
5388 ac->iu_type = IOACCEL2_IU_TMF_TYPE;
5389 ac->reply_queue = reply_queue;
5390 ac->tmf = IOACCEL2_TMF_ABORT;
5391 ac->it_nexus = cpu_to_le32(dev->ioaccel_handle);
5392 memset(ac->lun_id, 0, sizeof(ac->lun_id));
5393 ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT);
5394 ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag));
5395 ac->error_ptr = cpu_to_le64(c->busaddr +
5396 offsetof(struct io_accel2_cmd, error_data));
5397 ac->error_len = cpu_to_le32(sizeof(c2->error_data));
5398}
5399
Scott Teel54b6e9e2014-02-18 13:56:45 -06005400/* ioaccel2 path firmware cannot handle abort task requests.
5401 * Change abort requests to physical target reset, and send to the
5402 * address of the physical disk used for the ioaccel 2 command.
5403 * Return 0 on success (IO_OK)
5404 * -1 on failure
5405 */
5406
5407static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005408 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06005409{
5410 int rc = IO_OK;
5411 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
5412 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
5413 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
5414 unsigned char *psa = &phys_scsi3addr[0];
5415
5416 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06005417 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005418 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
5419 if (dev == NULL) {
5420 dev_warn(&h->pdev->dev,
5421 "Cannot abort: no device pointer for command.\n");
5422 return -1; /* not abortable */
5423 }
5424
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005425 if (h->raid_offload_debug > 0)
5426 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05005427 "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 -06005428 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05005429 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005430 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
5431 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
5432
Scott Teel54b6e9e2014-02-18 13:56:45 -06005433 if (!dev->offload_enabled) {
5434 dev_warn(&h->pdev->dev,
5435 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
5436 return -1; /* not abortable */
5437 }
5438
5439 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
5440 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
5441 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
5442 return -1; /* not abortable */
5443 }
5444
5445 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005446 if (h->raid_offload_debug > 0)
5447 dev_info(&h->pdev->dev,
5448 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5449 psa[0], psa[1], psa[2], psa[3],
5450 psa[4], psa[5], psa[6], psa[7]);
Webb Scalesd604f532015-04-23 09:35:22 -05005451 rc = hpsa_do_reset(h, dev, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005452 if (rc != 0) {
5453 dev_warn(&h->pdev->dev,
5454 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5455 psa[0], psa[1], psa[2], psa[3],
5456 psa[4], psa[5], psa[6], psa[7]);
5457 return rc; /* failed to reset */
5458 }
5459
5460 /* wait for device to recover */
Webb Scalesb69324f2015-04-23 09:34:22 -05005461 if (wait_for_device_to_become_ready(h, psa, reply_queue) != 0) {
Scott Teel54b6e9e2014-02-18 13:56:45 -06005462 dev_warn(&h->pdev->dev,
5463 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5464 psa[0], psa[1], psa[2], psa[3],
5465 psa[4], psa[5], psa[6], psa[7]);
5466 return -1; /* failed to recover */
5467 }
5468
5469 /* device recovered */
5470 dev_info(&h->pdev->dev,
5471 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5472 psa[0], psa[1], psa[2], psa[3],
5473 psa[4], psa[5], psa[6], psa[7]);
5474
5475 return rc; /* success */
5476}
5477
Stephen Cameron8be986c2015-04-23 09:34:06 -05005478static int hpsa_send_abort_ioaccel2(struct ctlr_info *h,
5479 struct CommandList *abort, int reply_queue)
5480{
5481 int rc = IO_OK;
5482 struct CommandList *c;
5483 __le32 taglower, tagupper;
5484 struct hpsa_scsi_dev_t *dev;
5485 struct io_accel2_cmd *c2;
5486
5487 dev = abort->scsi_cmd->device->hostdata;
5488 if (!dev->offload_enabled && !dev->hba_ioaccel_enabled)
5489 return -1;
5490
5491 c = cmd_alloc(h);
5492 setup_ioaccel2_abort_cmd(c, h, abort, reply_queue);
5493 c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5494 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
5495 hpsa_get_tag(h, abort, &taglower, &tagupper);
5496 dev_dbg(&h->pdev->dev,
5497 "%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n",
5498 __func__, tagupper, taglower);
5499 /* no unmap needed here because no data xfer. */
5500
5501 dev_dbg(&h->pdev->dev,
5502 "%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n",
5503 __func__, tagupper, taglower, c2->error_data.serv_response);
5504 switch (c2->error_data.serv_response) {
5505 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
5506 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
5507 rc = 0;
5508 break;
5509 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
5510 case IOACCEL2_SERV_RESPONSE_FAILURE:
5511 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
5512 rc = -1;
5513 break;
5514 default:
5515 dev_warn(&h->pdev->dev,
5516 "%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n",
5517 __func__, tagupper, taglower,
5518 c2->error_data.serv_response);
5519 rc = -1;
5520 }
5521 cmd_free(h, c);
5522 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__,
5523 tagupper, taglower);
5524 return rc;
5525}
5526
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005527static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005528 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005529{
Stephen Cameron8be986c2015-04-23 09:34:06 -05005530 /*
5531 * ioccelerator mode 2 commands should be aborted via the
Scott Teel54b6e9e2014-02-18 13:56:45 -06005532 * accelerated path, since RAID path is unaware of these commands,
Stephen Cameron8be986c2015-04-23 09:34:06 -05005533 * but not all underlying firmware can handle abort TMF.
5534 * Change abort to physical device reset when abort TMF is unsupported.
Scott Teel54b6e9e2014-02-18 13:56:45 -06005535 */
Stephen Cameron8be986c2015-04-23 09:34:06 -05005536 if (abort->cmd_type == CMD_IOACCEL2) {
5537 if (HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags)
5538 return hpsa_send_abort_ioaccel2(h, abort,
5539 reply_queue);
5540 else
5541 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05005542 abort, reply_queue);
Stephen Cameron8be986c2015-04-23 09:34:06 -05005543 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005544 return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05005545}
5546
5547/* Find out which reply queue a command was meant to return on */
5548static int hpsa_extract_reply_queue(struct ctlr_info *h,
5549 struct CommandList *c)
5550{
5551 if (c->cmd_type == CMD_IOACCEL2)
5552 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
5553 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005554}
5555
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005556/*
5557 * Limit concurrency of abort commands to prevent
5558 * over-subscription of commands
5559 */
5560static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
5561{
5562#define ABORT_CMD_WAIT_MSECS 5000
5563 return !wait_event_timeout(h->abort_cmd_wait_queue,
5564 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
5565 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
5566}
5567
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005568/* Send an abort for the specified command.
5569 * If the device and controller support it,
5570 * send a task abort request.
5571 */
5572static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
5573{
5574
Webb Scalesa58e7e52015-04-23 09:34:16 -05005575 int rc;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005576 struct ctlr_info *h;
5577 struct hpsa_scsi_dev_t *dev;
5578 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005579 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
5580 char msg[256]; /* For debug messaging. */
5581 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06005582 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05005583 int refcount, reply_queue;
5584
5585 if (sc == NULL)
5586 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005587
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005588 if (sc->device == NULL)
5589 return FAILED;
5590
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005591 /* Find the controller of the command to be aborted */
5592 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005593 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005594 return FAILED;
5595
Webb Scales25163bd2015-04-23 09:32:00 -05005596 /* Find the device of the command to be aborted */
5597 dev = sc->device->hostdata;
5598 if (!dev) {
5599 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
5600 msg);
Don Bracee3458932015-01-23 16:44:24 -06005601 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05005602 }
5603
5604 /* If controller locked up, we can guarantee command won't complete */
5605 if (lockup_detected(h)) {
5606 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5607 "ABORT FAILED, lockup detected");
5608 return FAILED;
5609 }
5610
5611 /* This is a good time to check if controller lockup has occurred */
5612 if (detect_controller_lockup(h)) {
5613 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5614 "ABORT FAILED, new lockup detected");
5615 return FAILED;
5616 }
Don Bracee3458932015-01-23 16:44:24 -06005617
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005618 /* Check that controller supports some kind of task abort */
5619 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
5620 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
5621 return FAILED;
5622
5623 memset(msg, 0, sizeof(msg));
Robert Elliott4b761552015-04-23 09:33:54 -05005624 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005625 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05005626 sc->device->id, sc->device->lun,
Robert Elliott4b761552015-04-23 09:33:54 -05005627 "Aborting command", sc);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005628
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005629 /* Get SCSI command to be aborted */
5630 abort = (struct CommandList *) sc->host_scribble;
5631 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005632 /* This can happen if the command already completed. */
5633 return SUCCESS;
5634 }
5635 refcount = atomic_inc_return(&abort->refcount);
5636 if (refcount == 1) { /* Command is done already. */
5637 cmd_free(h, abort);
5638 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005639 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005640
5641 /* Don't bother trying the abort if we know it won't work. */
5642 if (abort->cmd_type != CMD_IOACCEL2 &&
5643 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
5644 cmd_free(h, abort);
5645 return FAILED;
5646 }
5647
Webb Scalesa58e7e52015-04-23 09:34:16 -05005648 /*
5649 * Check that we're aborting the right command.
5650 * It's possible the CommandList already completed and got re-used.
5651 */
5652 if (abort->scsi_cmd != sc) {
5653 cmd_free(h, abort);
5654 return SUCCESS;
5655 }
5656
5657 abort->abort_pending = true;
Scott Teel17eb87d2014-02-18 13:55:28 -06005658 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005659 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06005660 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06005661 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005662 if (as != NULL)
Robert Elliott4b761552015-04-23 09:33:54 -05005663 ml += sprintf(msg+ml,
5664 "CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ",
5665 as->cmd_len, as->cmnd[0], as->cmnd[1],
5666 as->serial_number);
5667 dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005668 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Robert Elliott4b761552015-04-23 09:33:54 -05005669
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005670 /*
5671 * Command is in flight, or possibly already completed
5672 * by the firmware (but not to the scsi mid layer) but we can't
5673 * distinguish which. Send the abort down.
5674 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005675 if (wait_for_available_abort_cmd(h)) {
5676 dev_warn(&h->pdev->dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005677 "%s FAILED, timeout waiting for an abort command to become available.\n",
5678 msg);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005679 cmd_free(h, abort);
5680 return FAILED;
5681 }
Webb Scales25163bd2015-04-23 09:32:00 -05005682 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005683 atomic_inc(&h->abort_cmds_available);
5684 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005685 if (rc != 0) {
Robert Elliott4b761552015-04-23 09:33:54 -05005686 dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005687 hpsa_show_dev_msg(KERN_WARNING, h, dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005688 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06005689 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005690 return FAILED;
5691 }
Robert Elliott4b761552015-04-23 09:33:54 -05005692 dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg);
Webb Scalesd604f532015-04-23 09:35:22 -05005693 wait_event(h->event_sync_wait_queue,
Webb Scalesa58e7e52015-04-23 09:34:16 -05005694 abort->scsi_cmd != sc || lockup_detected(h));
Webb Scales281a7fd2015-01-23 16:43:35 -06005695 cmd_free(h, abort);
Webb Scalesa58e7e52015-04-23 09:34:16 -05005696 return !lockup_detected(h) ? SUCCESS : FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005697}
5698
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005699/*
Webb Scales73153fe2015-04-23 09:35:04 -05005700 * For operations with an associated SCSI command, a command block is allocated
5701 * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the
5702 * block request tag as an index into a table of entries. cmd_tagged_free() is
5703 * the complement, although cmd_free() may be called instead.
5704 */
5705static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
5706 struct scsi_cmnd *scmd)
5707{
5708 int idx = hpsa_get_cmd_index(scmd);
5709 struct CommandList *c = h->cmd_pool + idx;
5710
5711 if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) {
5712 dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n",
5713 idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1);
5714 /* The index value comes from the block layer, so if it's out of
5715 * bounds, it's probably not our bug.
5716 */
5717 BUG();
5718 }
5719
5720 atomic_inc(&c->refcount);
5721 if (unlikely(!hpsa_is_cmd_idle(c))) {
5722 /*
5723 * We expect that the SCSI layer will hand us a unique tag
5724 * value. Thus, there should never be a collision here between
5725 * two requests...because if the selected command isn't idle
5726 * then someone is going to be very disappointed.
5727 */
5728 dev_err(&h->pdev->dev,
5729 "tag collision (tag=%d) in cmd_tagged_alloc().\n",
5730 idx);
5731 if (c->scsi_cmd != NULL)
5732 scsi_print_command(c->scsi_cmd);
5733 scsi_print_command(scmd);
5734 }
5735
5736 hpsa_cmd_partial_init(h, idx, c);
5737 return c;
5738}
5739
5740static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c)
5741{
5742 /*
5743 * Release our reference to the block. We don't need to do anything
5744 * else to free it, because it is accessed by index. (There's no point
5745 * in checking the result of the decrement, since we cannot guarantee
5746 * that there isn't a concurrent abort which is also accessing it.)
5747 */
5748 (void)atomic_dec(&c->refcount);
5749}
5750
5751/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005752 * For operations that cannot sleep, a command block is allocated at init,
5753 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5754 * which ones are free or in use. Lock must be held when calling this.
5755 * cmd_free() is the complement.
Robert Elliottbf43caf2015-04-23 09:33:38 -05005756 * This function never gives up and returns NULL. If it hangs,
5757 * another thread must call cmd_free() to free some tags.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005758 */
Webb Scales281a7fd2015-01-23 16:43:35 -06005759
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005760static struct CommandList *cmd_alloc(struct ctlr_info *h)
5761{
5762 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005763 int refcount, i;
Webb Scales73153fe2015-04-23 09:35:04 -05005764 int offset = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005765
Robert Elliott33811022015-01-23 16:43:41 -06005766 /*
5767 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005768 * multiple threads could get in here, and one thread could
5769 * be scanning through the list of bits looking for a free
5770 * one, but the free ones are always behind him, and other
5771 * threads sneak in behind him and eat them before he can
5772 * get to them, so that while there is always a free one, a
5773 * very unlucky thread might be starved anyway, never able to
5774 * beat the other threads. In reality, this happens so
5775 * infrequently as to be indistinguishable from never.
Webb Scales73153fe2015-04-23 09:35:04 -05005776 *
5777 * Note that we start allocating commands before the SCSI host structure
5778 * is initialized. Since the search starts at bit zero, this
5779 * all works, since we have at least one command structure available;
5780 * however, it means that the structures with the low indexes have to be
5781 * reserved for driver-initiated requests, while requests from the block
5782 * layer will use the higher indexes.
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005783 */
5784
Webb Scales281a7fd2015-01-23 16:43:35 -06005785 for (;;) {
Webb Scales73153fe2015-04-23 09:35:04 -05005786 i = find_next_zero_bit(h->cmd_pool_bits,
5787 HPSA_NRESERVED_CMDS,
5788 offset);
5789 if (unlikely(i >= HPSA_NRESERVED_CMDS)) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005790 offset = 0;
5791 continue;
5792 }
5793 c = h->cmd_pool + i;
5794 refcount = atomic_inc_return(&c->refcount);
5795 if (unlikely(refcount > 1)) {
5796 cmd_free(h, c); /* already in use */
Webb Scales73153fe2015-04-23 09:35:04 -05005797 offset = (i + 1) % HPSA_NRESERVED_CMDS;
Webb Scales281a7fd2015-01-23 16:43:35 -06005798 continue;
5799 }
5800 set_bit(i & (BITS_PER_LONG - 1),
5801 h->cmd_pool_bits + (i / BITS_PER_LONG));
5802 break; /* it's ours now. */
5803 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05005804 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005805 return c;
5806}
5807
Webb Scales73153fe2015-04-23 09:35:04 -05005808/*
5809 * This is the complementary operation to cmd_alloc(). Note, however, in some
5810 * corner cases it may also be used to free blocks allocated by
5811 * cmd_tagged_alloc() in which case the ref-count decrement does the trick and
5812 * the clear-bit is harmless.
5813 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005814static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5815{
Webb Scales281a7fd2015-01-23 16:43:35 -06005816 if (atomic_dec_and_test(&c->refcount)) {
5817 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005818
Webb Scales281a7fd2015-01-23 16:43:35 -06005819 i = c - h->cmd_pool;
5820 clear_bit(i & (BITS_PER_LONG - 1),
5821 h->cmd_pool_bits + (i / BITS_PER_LONG));
5822 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005823}
5824
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005825#ifdef CONFIG_COMPAT
5826
Don Brace42a91642014-11-14 17:26:27 -06005827static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
5828 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005829{
5830 IOCTL32_Command_struct __user *arg32 =
5831 (IOCTL32_Command_struct __user *) arg;
5832 IOCTL_Command_struct arg64;
5833 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5834 int err;
5835 u32 cp;
5836
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005837 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005838 err = 0;
5839 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5840 sizeof(arg64.LUN_info));
5841 err |= copy_from_user(&arg64.Request, &arg32->Request,
5842 sizeof(arg64.Request));
5843 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5844 sizeof(arg64.error_info));
5845 err |= get_user(arg64.buf_size, &arg32->buf_size);
5846 err |= get_user(cp, &arg32->buf);
5847 arg64.buf = compat_ptr(cp);
5848 err |= copy_to_user(p, &arg64, sizeof(arg64));
5849
5850 if (err)
5851 return -EFAULT;
5852
Don Brace42a91642014-11-14 17:26:27 -06005853 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005854 if (err)
5855 return err;
5856 err |= copy_in_user(&arg32->error_info, &p->error_info,
5857 sizeof(arg32->error_info));
5858 if (err)
5859 return -EFAULT;
5860 return err;
5861}
5862
5863static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06005864 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005865{
5866 BIG_IOCTL32_Command_struct __user *arg32 =
5867 (BIG_IOCTL32_Command_struct __user *) arg;
5868 BIG_IOCTL_Command_struct arg64;
5869 BIG_IOCTL_Command_struct __user *p =
5870 compat_alloc_user_space(sizeof(arg64));
5871 int err;
5872 u32 cp;
5873
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005874 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005875 err = 0;
5876 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5877 sizeof(arg64.LUN_info));
5878 err |= copy_from_user(&arg64.Request, &arg32->Request,
5879 sizeof(arg64.Request));
5880 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5881 sizeof(arg64.error_info));
5882 err |= get_user(arg64.buf_size, &arg32->buf_size);
5883 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5884 err |= get_user(cp, &arg32->buf);
5885 arg64.buf = compat_ptr(cp);
5886 err |= copy_to_user(p, &arg64, sizeof(arg64));
5887
5888 if (err)
5889 return -EFAULT;
5890
Don Brace42a91642014-11-14 17:26:27 -06005891 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005892 if (err)
5893 return err;
5894 err |= copy_in_user(&arg32->error_info, &p->error_info,
5895 sizeof(arg32->error_info));
5896 if (err)
5897 return -EFAULT;
5898 return err;
5899}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005900
Don Brace42a91642014-11-14 17:26:27 -06005901static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005902{
5903 switch (cmd) {
5904 case CCISS_GETPCIINFO:
5905 case CCISS_GETINTINFO:
5906 case CCISS_SETINTINFO:
5907 case CCISS_GETNODENAME:
5908 case CCISS_SETNODENAME:
5909 case CCISS_GETHEARTBEAT:
5910 case CCISS_GETBUSTYPES:
5911 case CCISS_GETFIRMVER:
5912 case CCISS_GETDRIVVER:
5913 case CCISS_REVALIDVOLS:
5914 case CCISS_DEREGDISK:
5915 case CCISS_REGNEWDISK:
5916 case CCISS_REGNEWD:
5917 case CCISS_RESCANDISK:
5918 case CCISS_GETLUNINFO:
5919 return hpsa_ioctl(dev, cmd, arg);
5920
5921 case CCISS_PASSTHRU32:
5922 return hpsa_ioctl32_passthru(dev, cmd, arg);
5923 case CCISS_BIG_PASSTHRU32:
5924 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
5925
5926 default:
5927 return -ENOIOCTLCMD;
5928 }
5929}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005930#endif
5931
5932static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5933{
5934 struct hpsa_pci_info pciinfo;
5935
5936 if (!argp)
5937 return -EINVAL;
5938 pciinfo.domain = pci_domain_nr(h->pdev->bus);
5939 pciinfo.bus = h->pdev->bus->number;
5940 pciinfo.dev_fn = h->pdev->devfn;
5941 pciinfo.board_id = h->board_id;
5942 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5943 return -EFAULT;
5944 return 0;
5945}
5946
5947static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
5948{
5949 DriverVer_type DriverVer;
5950 unsigned char vmaj, vmin, vsubmin;
5951 int rc;
5952
5953 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
5954 &vmaj, &vmin, &vsubmin);
5955 if (rc != 3) {
5956 dev_info(&h->pdev->dev, "driver version string '%s' "
5957 "unrecognized.", HPSA_DRIVER_VERSION);
5958 vmaj = 0;
5959 vmin = 0;
5960 vsubmin = 0;
5961 }
5962 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
5963 if (!argp)
5964 return -EINVAL;
5965 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
5966 return -EFAULT;
5967 return 0;
5968}
5969
5970static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5971{
5972 IOCTL_Command_struct iocommand;
5973 struct CommandList *c;
5974 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005975 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005976 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005977
5978 if (!argp)
5979 return -EINVAL;
5980 if (!capable(CAP_SYS_RAWIO))
5981 return -EPERM;
5982 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
5983 return -EFAULT;
5984 if ((iocommand.buf_size < 1) &&
5985 (iocommand.Request.Type.Direction != XFER_NONE)) {
5986 return -EINVAL;
5987 }
5988 if (iocommand.buf_size > 0) {
5989 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
5990 if (buff == NULL)
Robert Elliott2dd02d72015-04-23 09:33:43 -05005991 return -ENOMEM;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005992 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005993 /* Copy the data into the buffer we created */
5994 if (copy_from_user(buff, iocommand.buf,
5995 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005996 rc = -EFAULT;
5997 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005998 }
5999 } else {
6000 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006001 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006002 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006003 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006004
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006005 /* Fill in the command type */
6006 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006007 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006008 /* Fill in Command Header */
6009 c->Header.ReplyQueue = 0; /* unused in simple mode */
6010 if (iocommand.buf_size > 0) { /* buffer to fill */
6011 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006012 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006013 } else { /* no buffers to fill */
6014 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006015 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006016 }
6017 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006018
6019 /* Fill in Request block */
6020 memcpy(&c->Request, &iocommand.Request,
6021 sizeof(c->Request));
6022
6023 /* Fill in the scatter gather information */
6024 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006025 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006026 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006027 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
6028 c->SG[0].Addr = cpu_to_le64(0);
6029 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006030 rc = -ENOMEM;
6031 goto out;
6032 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006033 c->SG[0].Addr = cpu_to_le64(temp64);
6034 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
6035 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006036 }
Webb Scales25163bd2015-04-23 09:32:00 -05006037 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05006038 if (iocommand.buf_size > 0)
6039 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006040 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006041 if (rc) {
6042 rc = -EIO;
6043 goto out;
6044 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006045
6046 /* Copy the error information out */
6047 memcpy(&iocommand.error_info, c->err_info,
6048 sizeof(iocommand.error_info));
6049 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006050 rc = -EFAULT;
6051 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006052 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006053 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006054 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006055 /* Copy the data out of the buffer we created */
6056 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006057 rc = -EFAULT;
6058 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006059 }
6060 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006061out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006062 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006063out_kfree:
6064 kfree(buff);
6065 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006066}
6067
6068static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6069{
6070 BIG_IOCTL_Command_struct *ioc;
6071 struct CommandList *c;
6072 unsigned char **buff = NULL;
6073 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006074 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006075 BYTE sg_used = 0;
6076 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006077 u32 left;
6078 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006079 BYTE __user *data_ptr;
6080
6081 if (!argp)
6082 return -EINVAL;
6083 if (!capable(CAP_SYS_RAWIO))
6084 return -EPERM;
6085 ioc = (BIG_IOCTL_Command_struct *)
6086 kmalloc(sizeof(*ioc), GFP_KERNEL);
6087 if (!ioc) {
6088 status = -ENOMEM;
6089 goto cleanup1;
6090 }
6091 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
6092 status = -EFAULT;
6093 goto cleanup1;
6094 }
6095 if ((ioc->buf_size < 1) &&
6096 (ioc->Request.Type.Direction != XFER_NONE)) {
6097 status = -EINVAL;
6098 goto cleanup1;
6099 }
6100 /* Check kmalloc limits using all SGs */
6101 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
6102 status = -EINVAL;
6103 goto cleanup1;
6104 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006105 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006106 status = -EINVAL;
6107 goto cleanup1;
6108 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006109 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006110 if (!buff) {
6111 status = -ENOMEM;
6112 goto cleanup1;
6113 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006114 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006115 if (!buff_size) {
6116 status = -ENOMEM;
6117 goto cleanup1;
6118 }
6119 left = ioc->buf_size;
6120 data_ptr = ioc->buf;
6121 while (left) {
6122 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
6123 buff_size[sg_used] = sz;
6124 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
6125 if (buff[sg_used] == NULL) {
6126 status = -ENOMEM;
6127 goto cleanup1;
6128 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006129 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006130 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05006131 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006132 goto cleanup1;
6133 }
6134 } else
6135 memset(buff[sg_used], 0, sz);
6136 left -= sz;
6137 data_ptr += sz;
6138 sg_used++;
6139 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006140 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006141
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006142 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006143 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006144 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006145 c->Header.SGList = (u8) sg_used;
6146 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006147 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006148 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
6149 if (ioc->buf_size > 0) {
6150 int i;
6151 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006152 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006153 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006154 if (dma_mapping_error(&h->pdev->dev,
6155 (dma_addr_t) temp64)) {
6156 c->SG[i].Addr = cpu_to_le64(0);
6157 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006158 hpsa_pci_unmap(h->pdev, c, i,
6159 PCI_DMA_BIDIRECTIONAL);
6160 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006161 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006162 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006163 c->SG[i].Addr = cpu_to_le64(temp64);
6164 c->SG[i].Len = cpu_to_le32(buff_size[i]);
6165 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006166 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006167 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006168 }
Webb Scales25163bd2015-04-23 09:32:00 -05006169 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006170 if (sg_used)
6171 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006172 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006173 if (status) {
6174 status = -EIO;
6175 goto cleanup0;
6176 }
6177
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006178 /* Copy the error information out */
6179 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
6180 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006181 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006182 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006183 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006184 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006185 int i;
6186
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006187 /* Copy the data out of the buffer we created */
6188 BYTE __user *ptr = ioc->buf;
6189 for (i = 0; i < sg_used; i++) {
6190 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006191 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006192 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006193 }
6194 ptr += buff_size[i];
6195 }
6196 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006197 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006198cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006199 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006200cleanup1:
6201 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006202 int i;
6203
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006204 for (i = 0; i < sg_used; i++)
6205 kfree(buff[i]);
6206 kfree(buff);
6207 }
6208 kfree(buff_size);
6209 kfree(ioc);
6210 return status;
6211}
6212
6213static void check_ioctl_unit_attention(struct ctlr_info *h,
6214 struct CommandList *c)
6215{
6216 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
6217 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
6218 (void) check_for_unit_attention(h, c);
6219}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006220
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006221/*
6222 * ioctl
6223 */
Don Brace42a91642014-11-14 17:26:27 -06006224static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006225{
6226 struct ctlr_info *h;
6227 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006228 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006229
6230 h = sdev_to_hba(dev);
6231
6232 switch (cmd) {
6233 case CCISS_DEREGDISK:
6234 case CCISS_REGNEWDISK:
6235 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06006236 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006237 return 0;
6238 case CCISS_GETPCIINFO:
6239 return hpsa_getpciinfo_ioctl(h, argp);
6240 case CCISS_GETDRIVVER:
6241 return hpsa_getdrivver_ioctl(h, argp);
6242 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006243 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006244 return -EAGAIN;
6245 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006246 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006247 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006248 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006249 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006250 return -EAGAIN;
6251 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006252 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006253 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006254 default:
6255 return -ENOTTY;
6256 }
6257}
6258
Robert Elliottbf43caf2015-04-23 09:33:38 -05006259static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006260 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006261{
6262 struct CommandList *c;
6263
6264 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006265
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006266 /* fill_cmd can't fail here, no data buffer to map */
6267 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006268 RAID_CTLR_LUNID, TYPE_MSG);
6269 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
6270 c->waiting = NULL;
6271 enqueue_cmd_and_start_io(h, c);
6272 /* Don't wait for completion, the reset won't complete. Don't free
6273 * the command either. This is the last command we will send before
6274 * re-initializing everything, so it doesn't matter and won't leak.
6275 */
Robert Elliottbf43caf2015-04-23 09:33:38 -05006276 return;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006277}
6278
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006279static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006280 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006281 int cmd_type)
6282{
6283 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006284 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006285
6286 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006287 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006288 c->Header.ReplyQueue = 0;
6289 if (buff != NULL && size > 0) {
6290 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006291 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006292 } else {
6293 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006294 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006295 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006296 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
6297
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006298 if (cmd_type == TYPE_CMD) {
6299 switch (cmd) {
6300 case HPSA_INQUIRY:
6301 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006302 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006303 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006304 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006305 }
6306 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006307 c->Request.type_attr_dir =
6308 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006309 c->Request.Timeout = 0;
6310 c->Request.CDB[0] = HPSA_INQUIRY;
6311 c->Request.CDB[4] = size & 0xFF;
6312 break;
6313 case HPSA_REPORT_LOG:
6314 case HPSA_REPORT_PHYS:
6315 /* Talking to controller so It's a physical command
6316 mode = 00 target = 0. Nothing to write.
6317 */
6318 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006319 c->Request.type_attr_dir =
6320 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006321 c->Request.Timeout = 0;
6322 c->Request.CDB[0] = cmd;
6323 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6324 c->Request.CDB[7] = (size >> 16) & 0xFF;
6325 c->Request.CDB[8] = (size >> 8) & 0xFF;
6326 c->Request.CDB[9] = size & 0xFF;
6327 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006328 case HPSA_CACHE_FLUSH:
6329 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006330 c->Request.type_attr_dir =
6331 TYPE_ATTR_DIR(cmd_type,
6332 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006333 c->Request.Timeout = 0;
6334 c->Request.CDB[0] = BMIC_WRITE;
6335 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05006336 c->Request.CDB[7] = (size >> 8) & 0xFF;
6337 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006338 break;
6339 case TEST_UNIT_READY:
6340 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006341 c->Request.type_attr_dir =
6342 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006343 c->Request.Timeout = 0;
6344 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006345 case HPSA_GET_RAID_MAP:
6346 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006347 c->Request.type_attr_dir =
6348 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006349 c->Request.Timeout = 0;
6350 c->Request.CDB[0] = HPSA_CISS_READ;
6351 c->Request.CDB[1] = cmd;
6352 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6353 c->Request.CDB[7] = (size >> 16) & 0xFF;
6354 c->Request.CDB[8] = (size >> 8) & 0xFF;
6355 c->Request.CDB[9] = size & 0xFF;
6356 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006357 case BMIC_SENSE_CONTROLLER_PARAMETERS:
6358 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006359 c->Request.type_attr_dir =
6360 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006361 c->Request.Timeout = 0;
6362 c->Request.CDB[0] = BMIC_READ;
6363 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
6364 c->Request.CDB[7] = (size >> 16) & 0xFF;
6365 c->Request.CDB[8] = (size >> 8) & 0xFF;
6366 break;
Don Brace03383732015-01-23 16:43:30 -06006367 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
6368 c->Request.CDBLen = 10;
6369 c->Request.type_attr_dir =
6370 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6371 c->Request.Timeout = 0;
6372 c->Request.CDB[0] = BMIC_READ;
6373 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
6374 c->Request.CDB[7] = (size >> 16) & 0xFF;
6375 c->Request.CDB[8] = (size >> 8) & 0XFF;
6376 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006377 default:
6378 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
6379 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006380 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006381 }
6382 } else if (cmd_type == TYPE_MSG) {
6383 switch (cmd) {
6384
Scott Teel0b9b7b62015-11-04 15:51:02 -06006385 case HPSA_PHYS_TARGET_RESET:
6386 c->Request.CDBLen = 16;
6387 c->Request.type_attr_dir =
6388 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
6389 c->Request.Timeout = 0; /* Don't time out */
6390 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6391 c->Request.CDB[0] = HPSA_RESET;
6392 c->Request.CDB[1] = HPSA_TARGET_RESET_TYPE;
6393 /* Physical target reset needs no control bytes 4-7*/
6394 c->Request.CDB[4] = 0x00;
6395 c->Request.CDB[5] = 0x00;
6396 c->Request.CDB[6] = 0x00;
6397 c->Request.CDB[7] = 0x00;
6398 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006399 case HPSA_DEVICE_RESET_MSG:
6400 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006401 c->Request.type_attr_dir =
6402 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006403 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006404 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6405 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05006406 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006407 /* If bytes 4-7 are zero, it means reset the */
6408 /* LunID device */
6409 c->Request.CDB[4] = 0x00;
6410 c->Request.CDB[5] = 0x00;
6411 c->Request.CDB[6] = 0x00;
6412 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006413 break;
6414 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006415 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06006416 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006417 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
6418 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006419 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006420 c->Request.type_attr_dir =
6421 TYPE_ATTR_DIR(cmd_type,
6422 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006423 c->Request.Timeout = 0; /* Don't time out */
6424 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
6425 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
6426 c->Request.CDB[2] = 0x00; /* reserved */
6427 c->Request.CDB[3] = 0x00; /* reserved */
6428 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006429 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006430 c->Request.CDB[12] = 0x00; /* reserved */
6431 c->Request.CDB[13] = 0x00; /* reserved */
6432 c->Request.CDB[14] = 0x00; /* reserved */
6433 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006434 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006435 default:
6436 dev_warn(&h->pdev->dev, "unknown message type %d\n",
6437 cmd);
6438 BUG();
6439 }
6440 } else {
6441 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
6442 BUG();
6443 }
6444
Stephen M. Camerona505b862014-11-14 17:27:04 -06006445 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006446 case XFER_READ:
6447 pci_dir = PCI_DMA_FROMDEVICE;
6448 break;
6449 case XFER_WRITE:
6450 pci_dir = PCI_DMA_TODEVICE;
6451 break;
6452 case XFER_NONE:
6453 pci_dir = PCI_DMA_NONE;
6454 break;
6455 default:
6456 pci_dir = PCI_DMA_BIDIRECTIONAL;
6457 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006458 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
6459 return -1;
6460 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006461}
6462
6463/*
6464 * Map (physical) PCI mem into (virtual) kernel space
6465 */
6466static void __iomem *remap_pci_mem(ulong base, ulong size)
6467{
6468 ulong page_base = ((ulong) base) & PAGE_MASK;
6469 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05006470 void __iomem *page_remapped = ioremap_nocache(page_base,
6471 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006472
6473 return page_remapped ? (page_remapped + page_offs) : NULL;
6474}
6475
Matt Gates254f7962012-05-01 11:43:06 -05006476static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006477{
Matt Gates254f7962012-05-01 11:43:06 -05006478 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006479}
6480
Stephen M. Cameron900c5442010-02-04 08:42:35 -06006481static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006482{
6483 return h->access.intr_pending(h);
6484}
6485
6486static inline long interrupt_not_for_us(struct ctlr_info *h)
6487{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006488 return (h->access.intr_pending(h) == 0) ||
6489 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006490}
6491
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006492static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
6493 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006494{
6495 if (unlikely(tag_index >= h->nr_cmds)) {
6496 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
6497 return 1;
6498 }
6499 return 0;
6500}
6501
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05006502static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006503{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006504 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06006505 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
6506 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05006507 complete_scsi_command(c);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006508 else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006509 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06006510}
6511
Don Brace303932f2010-02-04 08:42:40 -06006512/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006513static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06006514 u32 raw_tag)
6515{
6516 u32 tag_index;
6517 struct CommandList *c;
6518
Don Bracef2405db2015-01-23 16:43:09 -06006519 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006520 if (!bad_tag(h, tag_index, raw_tag)) {
6521 c = h->cmd_pool + tag_index;
6522 finish_cmd(c);
6523 }
Don Brace303932f2010-02-04 08:42:40 -06006524}
6525
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006526/* Some controllers, like p400, will give us one interrupt
6527 * after a soft reset, even if we turned interrupts off.
6528 * Only need to check for this in the hpsa_xxx_discard_completions
6529 * functions.
6530 */
6531static int ignore_bogus_interrupt(struct ctlr_info *h)
6532{
6533 if (likely(!reset_devices))
6534 return 0;
6535
6536 if (likely(h->interrupts_enabled))
6537 return 0;
6538
6539 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
6540 "(known firmware bug.) Ignoring.\n");
6541
6542 return 1;
6543}
6544
Matt Gates254f7962012-05-01 11:43:06 -05006545/*
6546 * Convert &h->q[x] (passed to interrupt handlers) back to h.
6547 * Relies on (h-q[x] == x) being true for x such that
6548 * 0 <= x < MAX_REPLY_QUEUES.
6549 */
6550static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006551{
Matt Gates254f7962012-05-01 11:43:06 -05006552 return container_of((queue - *queue), struct ctlr_info, q[0]);
6553}
6554
6555static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
6556{
6557 struct ctlr_info *h = queue_to_hba(queue);
6558 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006559 u32 raw_tag;
6560
6561 if (ignore_bogus_interrupt(h))
6562 return IRQ_NONE;
6563
6564 if (interrupt_not_for_us(h))
6565 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006566 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006567 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006568 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006569 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006570 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006571 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006572 return IRQ_HANDLED;
6573}
6574
Matt Gates254f7962012-05-01 11:43:06 -05006575static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006576{
Matt Gates254f7962012-05-01 11:43:06 -05006577 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006578 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006579 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006580
6581 if (ignore_bogus_interrupt(h))
6582 return IRQ_NONE;
6583
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006584 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006585 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006586 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006587 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006588 return IRQ_HANDLED;
6589}
6590
Matt Gates254f7962012-05-01 11:43:06 -05006591static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006592{
Matt Gates254f7962012-05-01 11:43:06 -05006593 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06006594 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006595 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006596
6597 if (interrupt_not_for_us(h))
6598 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006599 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006600 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006601 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006602 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006603 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006604 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006605 }
6606 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006607 return IRQ_HANDLED;
6608}
6609
Matt Gates254f7962012-05-01 11:43:06 -05006610static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006611{
Matt Gates254f7962012-05-01 11:43:06 -05006612 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006613 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006614 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006615
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006616 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006617 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06006618 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006619 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006620 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006621 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006622 return IRQ_HANDLED;
6623}
6624
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006625/* Send a message CDB to the firmware. Careful, this only works
6626 * in simple mode, not performant mode due to the tag lookup.
6627 * We only ever use this immediately after a controller reset.
6628 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006629static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
6630 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006631{
6632 struct Command {
6633 struct CommandListHeader CommandHeader;
6634 struct RequestBlock Request;
6635 struct ErrDescriptor ErrorDescriptor;
6636 };
6637 struct Command *cmd;
6638 static const size_t cmd_sz = sizeof(*cmd) +
6639 sizeof(cmd->ErrorDescriptor);
6640 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06006641 __le32 paddr32;
6642 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006643 void __iomem *vaddr;
6644 int i, err;
6645
6646 vaddr = pci_ioremap_bar(pdev, 0);
6647 if (vaddr == NULL)
6648 return -ENOMEM;
6649
6650 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
6651 * CCISS commands, so they must be allocated from the lower 4GiB of
6652 * memory.
6653 */
6654 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6655 if (err) {
6656 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06006657 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006658 }
6659
6660 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
6661 if (cmd == NULL) {
6662 iounmap(vaddr);
6663 return -ENOMEM;
6664 }
6665
6666 /* This must fit, because of the 32-bit consistent DMA mask. Also,
6667 * although there's no guarantee, we assume that the address is at
6668 * least 4-byte aligned (most likely, it's page-aligned).
6669 */
Don Brace2b08b3e2015-01-23 16:41:09 -06006670 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006671
6672 cmd->CommandHeader.ReplyQueue = 0;
6673 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006674 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06006675 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006676 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
6677
6678 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006679 cmd->Request.type_attr_dir =
6680 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006681 cmd->Request.Timeout = 0; /* Don't time out */
6682 cmd->Request.CDB[0] = opcode;
6683 cmd->Request.CDB[1] = type;
6684 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006685 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06006686 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006687 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006688
Don Brace2b08b3e2015-01-23 16:41:09 -06006689 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006690
6691 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
6692 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06006693 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006694 break;
6695 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
6696 }
6697
6698 iounmap(vaddr);
6699
6700 /* we leak the DMA buffer here ... no choice since the controller could
6701 * still complete the command.
6702 */
6703 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
6704 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
6705 opcode, type);
6706 return -ETIMEDOUT;
6707 }
6708
6709 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
6710
6711 if (tag & HPSA_ERROR_BIT) {
6712 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
6713 opcode, type);
6714 return -EIO;
6715 }
6716
6717 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
6718 opcode, type);
6719 return 0;
6720}
6721
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006722#define hpsa_noop(p) hpsa_message(p, 3, 0)
6723
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006724static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06006725 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006726{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006727
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006728 if (use_doorbell) {
6729 /* For everything after the P600, the PCI power state method
6730 * of resetting the controller doesn't work, so we have this
6731 * other way using the doorbell register.
6732 */
6733 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006734 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05006735
Justin Lindley00701a92014-05-29 10:52:47 -05006736 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05006737 * doorbell reset and before any attempt to talk to the board
6738 * at all to ensure that this actually works and doesn't fall
6739 * over in some weird corner cases.
6740 */
Justin Lindley00701a92014-05-29 10:52:47 -05006741 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006742 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006743
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006744 /* Quoting from the Open CISS Specification: "The Power
6745 * Management Control/Status Register (CSR) controls the power
6746 * state of the device. The normal operating state is D0,
6747 * CSR=00h. The software off state is D3, CSR=03h. To reset
6748 * the controller, place the interface device in D3 then to D0,
6749 * this causes a secondary PCI reset which will reset the
6750 * controller." */
6751
Don Brace2662cab2015-01-23 16:41:25 -06006752 int rc = 0;
6753
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006754 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06006755
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006756 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006757 rc = pci_set_power_state(pdev, PCI_D3hot);
6758 if (rc)
6759 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006760
6761 msleep(500);
6762
6763 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006764 rc = pci_set_power_state(pdev, PCI_D0);
6765 if (rc)
6766 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02006767
6768 /*
6769 * The P600 requires a small delay when changing states.
6770 * Otherwise we may think the board did not reset and we bail.
6771 * This for kdump only and is particular to the P600.
6772 */
6773 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006774 }
6775 return 0;
6776}
6777
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006778static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006779{
6780 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006781 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006782}
6783
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006784static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006785{
6786 char *driver_version;
6787 int i, size = sizeof(cfgtable->driver_version);
6788
6789 driver_version = kmalloc(size, GFP_KERNEL);
6790 if (!driver_version)
6791 return -ENOMEM;
6792
6793 init_driver_version(driver_version, size);
6794 for (i = 0; i < size; i++)
6795 writeb(driver_version[i], &cfgtable->driver_version[i]);
6796 kfree(driver_version);
6797 return 0;
6798}
6799
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006800static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
6801 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006802{
6803 int i;
6804
6805 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6806 driver_ver[i] = readb(&cfgtable->driver_version[i]);
6807}
6808
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006809static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006810{
6811
6812 char *driver_ver, *old_driver_ver;
6813 int rc, size = sizeof(cfgtable->driver_version);
6814
6815 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6816 if (!old_driver_ver)
6817 return -ENOMEM;
6818 driver_ver = old_driver_ver + size;
6819
6820 /* After a reset, the 32 bytes of "driver version" in the cfgtable
6821 * should have been changed, otherwise we know the reset failed.
6822 */
6823 init_driver_version(old_driver_ver, size);
6824 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6825 rc = !memcmp(driver_ver, old_driver_ver, size);
6826 kfree(old_driver_ver);
6827 return rc;
6828}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006829/* This does a hard reset of the controller using PCI power management
6830 * states or the using the doorbell register.
6831 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006832static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006833{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006834 u64 cfg_offset;
6835 u32 cfg_base_addr;
6836 u64 cfg_base_addr_index;
6837 void __iomem *vaddr;
6838 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006839 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006840 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006841 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006842 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006843 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006844
6845 /* For controllers as old as the P600, this is very nearly
6846 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006847 *
6848 * pci_save_state(pci_dev);
6849 * pci_set_power_state(pci_dev, PCI_D3hot);
6850 * pci_set_power_state(pci_dev, PCI_D0);
6851 * pci_restore_state(pci_dev);
6852 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006853 * For controllers newer than the P600, the pci power state
6854 * method of resetting doesn't work so we have another way
6855 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006856 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006857
Robert Elliott60f923b2015-01-23 16:42:06 -06006858 if (!ctlr_is_resettable(board_id)) {
6859 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06006860 return -ENODEV;
6861 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05006862
6863 /* if controller is soft- but not hard resettable... */
6864 if (!ctlr_is_hard_resettable(board_id))
6865 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006866
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006867 /* Save the PCI command register */
6868 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006869 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006870
6871 /* find the first memory BAR, so we can find the cfg table */
6872 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
6873 if (rc)
6874 return rc;
6875 vaddr = remap_pci_mem(paddr, 0x250);
6876 if (!vaddr)
6877 return -ENOMEM;
6878
6879 /* find cfgtable in order to check if reset via doorbell is supported */
6880 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
6881 &cfg_base_addr_index, &cfg_offset);
6882 if (rc)
6883 goto unmap_vaddr;
6884 cfgtable = remap_pci_mem(pci_resource_start(pdev,
6885 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
6886 if (!cfgtable) {
6887 rc = -ENOMEM;
6888 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006889 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006890 rc = write_driver_ver_to_cfgtable(cfgtable);
6891 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06006892 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006893
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006894 /* If reset via doorbell register is supported, use that.
6895 * There are two such methods. Favor the newest method.
6896 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006897 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006898 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6899 if (use_doorbell) {
6900 use_doorbell = DOORBELL_CTLR_RESET2;
6901 } else {
6902 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6903 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006904 dev_warn(&pdev->dev,
6905 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006906 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006907 goto unmap_cfgtable;
6908 }
6909 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006910
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006911 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
6912 if (rc)
6913 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006914
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006915 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006916 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006917
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006918 /* Some devices (notably the HP Smart Array 5i Controller)
6919 need a little pause here */
6920 msleep(HPSA_POST_RESET_PAUSE_MSECS);
6921
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006922 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
6923 if (rc) {
6924 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06006925 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006926 goto unmap_cfgtable;
6927 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006928
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006929 rc = controller_reset_failed(vaddr);
6930 if (rc < 0)
6931 goto unmap_cfgtable;
6932 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006933 dev_warn(&pdev->dev, "Unable to successfully reset "
6934 "controller. Will try soft reset.\n");
6935 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006936 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006937 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006938 }
6939
6940unmap_cfgtable:
6941 iounmap(cfgtable);
6942
6943unmap_vaddr:
6944 iounmap(vaddr);
6945 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006946}
6947
6948/*
6949 * We cannot read the structure directly, for portability we must use
6950 * the io functions.
6951 * This is for debug only.
6952 */
Don Brace42a91642014-11-14 17:26:27 -06006953static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006954{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006955#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006956 int i;
6957 char temp_name[17];
6958
6959 dev_info(dev, "Controller Configuration information\n");
6960 dev_info(dev, "------------------------------------\n");
6961 for (i = 0; i < 4; i++)
6962 temp_name[i] = readb(&(tb->Signature[i]));
6963 temp_name[4] = '\0';
6964 dev_info(dev, " Signature = %s\n", temp_name);
6965 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
6966 dev_info(dev, " Transport methods supported = 0x%x\n",
6967 readl(&(tb->TransportSupport)));
6968 dev_info(dev, " Transport methods active = 0x%x\n",
6969 readl(&(tb->TransportActive)));
6970 dev_info(dev, " Requested transport Method = 0x%x\n",
6971 readl(&(tb->HostWrite.TransportRequest)));
6972 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
6973 readl(&(tb->HostWrite.CoalIntDelay)));
6974 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
6975 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06006976 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006977 readl(&(tb->CmdsOutMax)));
6978 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
6979 for (i = 0; i < 16; i++)
6980 temp_name[i] = readb(&(tb->ServerName[i]));
6981 temp_name[16] = '\0';
6982 dev_info(dev, " Server Name = %s\n", temp_name);
6983 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
6984 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006985#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006986}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006987
6988static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
6989{
6990 int i, offset, mem_type, bar_type;
6991
6992 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
6993 return 0;
6994 offset = 0;
6995 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
6996 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
6997 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
6998 offset += 4;
6999 else {
7000 mem_type = pci_resource_flags(pdev, i) &
7001 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
7002 switch (mem_type) {
7003 case PCI_BASE_ADDRESS_MEM_TYPE_32:
7004 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
7005 offset += 4; /* 32 bit */
7006 break;
7007 case PCI_BASE_ADDRESS_MEM_TYPE_64:
7008 offset += 8;
7009 break;
7010 default: /* reserved in PCI 2.2 */
7011 dev_warn(&pdev->dev,
7012 "base address is invalid\n");
7013 return -1;
7014 break;
7015 }
7016 }
7017 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
7018 return i + 1;
7019 }
7020 return -1;
7021}
7022
Robert Elliottcc64c812015-04-23 09:33:12 -05007023static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
7024{
7025 if (h->msix_vector) {
7026 if (h->pdev->msix_enabled)
7027 pci_disable_msix(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007028 h->msix_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007029 } else if (h->msi_vector) {
7030 if (h->pdev->msi_enabled)
7031 pci_disable_msi(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007032 h->msi_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007033 }
7034}
7035
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007036/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06007037 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007038 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007039static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007040{
7041#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05007042 int err, i;
7043 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
7044
7045 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
7046 hpsa_msix_entries[i].vector = 0;
7047 hpsa_msix_entries[i].entry = i;
7048 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007049
7050 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007051 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
7052 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007053 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007054 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007055 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007056 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05007057 if (h->msix_vector > num_online_cpus())
7058 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007059 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
7060 1, h->msix_vector);
7061 if (err < 0) {
7062 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
7063 h->msix_vector = 0;
7064 goto single_msi_mode;
7065 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007066 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007067 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007068 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007069 h->msix_vector = err;
7070 for (i = 0; i < h->msix_vector; i++)
7071 h->intr[i] = hpsa_msix_entries[i].vector;
7072 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007073 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007074single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007075 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007076 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007077 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007078 h->msi_vector = 1;
7079 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007080 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007081 }
7082default_int_mode:
7083#endif /* CONFIG_PCI_MSI */
7084 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007085 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007086}
7087
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007088static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007089{
7090 int i;
7091 u32 subsystem_vendor_id, subsystem_device_id;
7092
7093 subsystem_vendor_id = pdev->subsystem_vendor;
7094 subsystem_device_id = pdev->subsystem_device;
7095 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
7096 subsystem_vendor_id;
7097
7098 for (i = 0; i < ARRAY_SIZE(products); i++)
7099 if (*board_id == products[i].board_id)
7100 return i;
7101
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05007102 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
7103 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
7104 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007105 dev_warn(&pdev->dev, "unrecognized board ID: "
7106 "0x%08x, ignoring.\n", *board_id);
7107 return -ENODEV;
7108 }
7109 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
7110}
7111
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007112static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
7113 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007114{
7115 int i;
7116
7117 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007118 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007119 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007120 *memory_bar = pci_resource_start(pdev, i);
7121 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007122 *memory_bar);
7123 return 0;
7124 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007125 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007126 return -ENODEV;
7127}
7128
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007129static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
7130 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007131{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007132 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007133 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007134 if (wait_for_ready)
7135 iterations = HPSA_BOARD_READY_ITERATIONS;
7136 else
7137 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007138
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007139 for (i = 0; i < iterations; i++) {
7140 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
7141 if (wait_for_ready) {
7142 if (scratchpad == HPSA_FIRMWARE_READY)
7143 return 0;
7144 } else {
7145 if (scratchpad != HPSA_FIRMWARE_READY)
7146 return 0;
7147 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007148 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
7149 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007150 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007151 return -ENODEV;
7152}
7153
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007154static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
7155 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
7156 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007157{
7158 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
7159 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
7160 *cfg_base_addr &= (u32) 0x0000ffff;
7161 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
7162 if (*cfg_base_addr_index == -1) {
7163 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
7164 return -ENODEV;
7165 }
7166 return 0;
7167}
7168
Robert Elliott195f2c62015-04-23 09:33:17 -05007169static void hpsa_free_cfgtables(struct ctlr_info *h)
7170{
Robert Elliott105a3db2015-04-23 09:33:48 -05007171 if (h->transtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007172 iounmap(h->transtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007173 h->transtable = NULL;
7174 }
7175 if (h->cfgtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007176 iounmap(h->cfgtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007177 h->cfgtable = NULL;
7178 }
Robert Elliott195f2c62015-04-23 09:33:17 -05007179}
7180
7181/* Find and map CISS config table and transfer table
7182+ * several items must be unmapped (freed) later
7183+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007184static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007185{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06007186 u64 cfg_offset;
7187 u32 cfg_base_addr;
7188 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06007189 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007190 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007191
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007192 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7193 &cfg_base_addr_index, &cfg_offset);
7194 if (rc)
7195 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007196 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007197 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007198 if (!h->cfgtable) {
7199 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007200 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007201 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007202 rc = write_driver_ver_to_cfgtable(h->cfgtable);
7203 if (rc)
7204 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007205 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007206 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007207 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
7208 cfg_base_addr_index)+cfg_offset+trans_offset,
7209 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05007210 if (!h->transtable) {
7211 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
7212 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007213 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007214 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007215 return 0;
7216}
7217
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007218static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007219{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007220#define MIN_MAX_COMMANDS 16
7221 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
7222
7223 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06007224
7225 /* Limit commands in memory limited kdump scenario. */
7226 if (reset_devices && h->max_commands > 32)
7227 h->max_commands = 32;
7228
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007229 if (h->max_commands < MIN_MAX_COMMANDS) {
7230 dev_warn(&h->pdev->dev,
7231 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
7232 h->max_commands,
7233 MIN_MAX_COMMANDS);
7234 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007235 }
7236}
7237
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007238/* If the controller reports that the total max sg entries is greater than 512,
7239 * then we know that chained SG blocks work. (Original smart arrays did not
7240 * support chained SG blocks and would return zero for max sg entries.)
7241 */
7242static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
7243{
7244 return h->maxsgentries > 512;
7245}
7246
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007247/* Interrogate the hardware for some limits:
7248 * max commands, max SG elements without chaining, and with chaining,
7249 * SG chain block size, etc.
7250 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007251static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007252{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007253 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06007254 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007255 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007256 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007257 if (hpsa_supports_chained_sg_blocks(h)) {
7258 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007259 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06007260 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007261 h->maxsgentries--; /* save one for chain pointer */
7262 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007263 /*
7264 * Original smart arrays supported at most 31 s/g entries
7265 * embedded inline in the command (trying to use more
7266 * would lock up the controller)
7267 */
7268 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06007269 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007270 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007271 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007272
7273 /* Find out what task management functions are supported and cache */
7274 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06007275 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
7276 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
7277 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
7278 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen Cameron8be986c2015-04-23 09:34:06 -05007279 if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
7280 dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007281}
7282
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007283static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
7284{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09007285 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007286 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007287 return false;
7288 }
7289 return true;
7290}
7291
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007292static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007293{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007294 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007295
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007296 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02007297 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
7298#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007299 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007300#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06007301 driver_support |= ENABLE_UNIT_ATTN;
7302 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007303}
7304
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007305/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
7306 * in a prefetch beyond physical memory.
7307 */
7308static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
7309{
7310 u32 dma_prefetch;
7311
7312 if (h->board_id != 0x3225103C)
7313 return;
7314 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
7315 dma_prefetch |= 0x8000;
7316 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
7317}
7318
Robert Elliottc706a792015-01-23 16:45:01 -06007319static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007320{
7321 int i;
7322 u32 doorbell_value;
7323 unsigned long flags;
7324 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007325 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007326 spin_lock_irqsave(&h->lock, flags);
7327 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7328 spin_unlock_irqrestore(&h->lock, flags);
7329 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06007330 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007331 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007332 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007333 }
Robert Elliottc706a792015-01-23 16:45:01 -06007334 return -ENODEV;
7335done:
7336 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007337}
7338
Robert Elliottc706a792015-01-23 16:45:01 -06007339static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007340{
7341 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007342 u32 doorbell_value;
7343 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007344
7345 /* under certain very rare conditions, this can take awhile.
7346 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
7347 * as we enter this code.)
7348 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007349 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05007350 if (h->remove_in_progress)
7351 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007352 spin_lock_irqsave(&h->lock, flags);
7353 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7354 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06007355 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06007356 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007357 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007358 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007359 }
Robert Elliottc706a792015-01-23 16:45:01 -06007360 return -ENODEV;
7361done:
7362 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007363}
7364
Robert Elliottc706a792015-01-23 16:45:01 -06007365/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007366static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007367{
7368 u32 trans_support;
7369
7370 trans_support = readl(&(h->cfgtable->TransportSupport));
7371 if (!(trans_support & SIMPLE_MODE))
7372 return -ENOTSUPP;
7373
7374 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007375
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007376 /* Update the field, and then ring the doorbell */
7377 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007378 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007379 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007380 if (hpsa_wait_for_mode_change_ack(h))
7381 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007382 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007383 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
7384 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007385 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007386 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007387error:
Stephen Cameron050f7142015-01-23 16:42:22 -06007388 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007389 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007390}
7391
Robert Elliott195f2c62015-04-23 09:33:17 -05007392/* free items allocated or mapped by hpsa_pci_init */
7393static void hpsa_free_pci_init(struct ctlr_info *h)
7394{
7395 hpsa_free_cfgtables(h); /* pci_init 4 */
7396 iounmap(h->vaddr); /* pci_init 3 */
Robert Elliott105a3db2015-04-23 09:33:48 -05007397 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007398 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Robert Elliott943a7022015-04-23 09:34:32 -05007399 /*
7400 * call pci_disable_device before pci_release_regions per
7401 * Documentation/PCI/pci.txt
7402 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007403 pci_disable_device(h->pdev); /* pci_init 1 */
Robert Elliott943a7022015-04-23 09:34:32 -05007404 pci_release_regions(h->pdev); /* pci_init 2 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007405}
7406
7407/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007408static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007409{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007410 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007411
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007412 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
7413 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06007414 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007415 h->product_name = products[prod_index].product_name;
7416 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007417
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007418 h->needs_abort_tags_swizzled =
7419 ctlr_needs_abort_tags_swizzled(h->board_id);
7420
Matthew Garrette5a44df2011-11-11 11:14:23 -05007421 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
7422 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
7423
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007424 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007425 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007426 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007427 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007428 return err;
7429 }
7430
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007431 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007432 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007433 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05007434 "failed to obtain PCI resources\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007435 pci_disable_device(h->pdev);
7436 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007437 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007438
7439 pci_set_master(h->pdev);
7440
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007441 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007442 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007443 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007444 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007445 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007446 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007447 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007448 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007449 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007450 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007451 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007452 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007453 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007454 err = hpsa_find_cfgtables(h);
7455 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007456 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007457 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007458
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007459 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007460 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05007461 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007462 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007463 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007464 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007465 err = hpsa_enter_simple_mode(h);
7466 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007467 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007468 return 0;
7469
Robert Elliott195f2c62015-04-23 09:33:17 -05007470clean4: /* cfgtables, vaddr, intmode+region, pci */
7471 hpsa_free_cfgtables(h);
7472clean3: /* vaddr, intmode+region, pci */
7473 iounmap(h->vaddr);
Robert Elliott105a3db2015-04-23 09:33:48 -05007474 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007475clean2: /* intmode+region, pci */
7476 hpsa_disable_interrupt_mode(h);
Robert Elliott943a7022015-04-23 09:34:32 -05007477 /*
7478 * call pci_disable_device before pci_release_regions per
7479 * Documentation/PCI/pci.txt
7480 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007481 pci_disable_device(h->pdev);
Robert Elliott943a7022015-04-23 09:34:32 -05007482 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007483 return err;
7484}
7485
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007486static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007487{
7488 int rc;
7489
7490#define HBA_INQUIRY_BYTE_COUNT 64
7491 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
7492 if (!h->hba_inquiry_data)
7493 return;
7494 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
7495 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
7496 if (rc != 0) {
7497 kfree(h->hba_inquiry_data);
7498 h->hba_inquiry_data = NULL;
7499 }
7500}
7501
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007502static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007503{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007504 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06007505 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007506
7507 if (!reset_devices)
7508 return 0;
7509
Tomas Henzl132aa222014-08-14 16:12:39 +02007510 /* kdump kernel is loading, we don't know in which state is
7511 * the pci interface. The dev->enable_cnt is equal zero
7512 * so we call enable+disable, wait a while and switch it on.
7513 */
7514 rc = pci_enable_device(pdev);
7515 if (rc) {
7516 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
7517 return -ENODEV;
7518 }
7519 pci_disable_device(pdev);
7520 msleep(260); /* a randomly chosen number */
7521 rc = pci_enable_device(pdev);
7522 if (rc) {
7523 dev_warn(&pdev->dev, "failed to enable device.\n");
7524 return -ENODEV;
7525 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007526
Tomas Henzl859c75a2014-09-12 14:44:15 +02007527 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06007528
Tomas Henzl3b747292015-01-23 16:41:20 -06007529 vaddr = pci_ioremap_bar(pdev, 0);
7530 if (vaddr == NULL) {
7531 rc = -ENOMEM;
7532 goto out_disable;
7533 }
7534 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
7535 iounmap(vaddr);
7536
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007537 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007538 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007539
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007540 /* -ENOTSUPP here means we cannot reset the controller
7541 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05007542 * "performant mode". Or, it might be 640x, which can't reset
7543 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007544 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06007545 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02007546 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007547
7548 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06007549 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007550 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
7551 if (hpsa_noop(pdev) == 0)
7552 break;
7553 else
7554 dev_warn(&pdev->dev, "no-op failed%s\n",
7555 (i < 11 ? "; re-trying" : ""));
7556 }
Tomas Henzl132aa222014-08-14 16:12:39 +02007557
7558out_disable:
7559
7560 pci_disable_device(pdev);
7561 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007562}
7563
Robert Elliott1fb7c982015-04-23 09:33:22 -05007564static void hpsa_free_cmd_pool(struct ctlr_info *h)
7565{
7566 kfree(h->cmd_pool_bits);
Robert Elliott105a3db2015-04-23 09:33:48 -05007567 h->cmd_pool_bits = NULL;
7568 if (h->cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007569 pci_free_consistent(h->pdev,
7570 h->nr_cmds * sizeof(struct CommandList),
7571 h->cmd_pool,
7572 h->cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007573 h->cmd_pool = NULL;
7574 h->cmd_pool_dhandle = 0;
7575 }
7576 if (h->errinfo_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007577 pci_free_consistent(h->pdev,
7578 h->nr_cmds * sizeof(struct ErrorInfo),
7579 h->errinfo_pool,
7580 h->errinfo_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007581 h->errinfo_pool = NULL;
7582 h->errinfo_pool_dhandle = 0;
7583 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05007584}
7585
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007586static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007587{
7588 h->cmd_pool_bits = kzalloc(
7589 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
7590 sizeof(unsigned long), GFP_KERNEL);
7591 h->cmd_pool = pci_alloc_consistent(h->pdev,
7592 h->nr_cmds * sizeof(*h->cmd_pool),
7593 &(h->cmd_pool_dhandle));
7594 h->errinfo_pool = pci_alloc_consistent(h->pdev,
7595 h->nr_cmds * sizeof(*h->errinfo_pool),
7596 &(h->errinfo_pool_dhandle));
7597 if ((h->cmd_pool_bits == NULL)
7598 || (h->cmd_pool == NULL)
7599 || (h->errinfo_pool == NULL)) {
7600 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06007601 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007602 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05007603 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007604 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06007605clean_up:
7606 hpsa_free_cmd_pool(h);
7607 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007608}
7609
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007610static void hpsa_irq_affinity_hints(struct ctlr_info *h)
7611{
Fabian Frederickec429952015-01-23 16:41:46 -06007612 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007613
7614 cpu = cpumask_first(cpu_online_mask);
7615 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06007616 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007617 cpu = cpumask_next(cpu, cpu_online_mask);
7618 }
7619}
7620
Robert Elliottec501a12015-01-23 16:41:40 -06007621/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
7622static void hpsa_free_irqs(struct ctlr_info *h)
7623{
7624 int i;
7625
7626 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
7627 /* Single reply queue, only one irq to free */
7628 i = h->intr_mode;
7629 irq_set_affinity_hint(h->intr[i], NULL);
7630 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007631 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007632 return;
7633 }
7634
7635 for (i = 0; i < h->msix_vector; i++) {
7636 irq_set_affinity_hint(h->intr[i], NULL);
7637 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007638 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007639 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007640 for (; i < MAX_REPLY_QUEUES; i++)
7641 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007642}
7643
Robert Elliott9ee61792015-01-23 16:42:32 -06007644/* returns 0 on success; cleans up and returns -Enn on error */
7645static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007646 irqreturn_t (*msixhandler)(int, void *),
7647 irqreturn_t (*intxhandler)(int, void *))
7648{
Matt Gates254f7962012-05-01 11:43:06 -05007649 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007650
Matt Gates254f7962012-05-01 11:43:06 -05007651 /*
7652 * initialize h->q[x] = x so that interrupt handlers know which
7653 * queue to process.
7654 */
7655 for (i = 0; i < MAX_REPLY_QUEUES; i++)
7656 h->q[i] = (u8) i;
7657
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007658 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05007659 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007660 for (i = 0; i < h->msix_vector; i++) {
Robert Elliott8b470042015-04-23 09:34:58 -05007661 sprintf(h->intrname[i], "%s-msix%d", h->devname, i);
Matt Gates254f7962012-05-01 11:43:06 -05007662 rc = request_irq(h->intr[i], msixhandler,
Robert Elliott8b470042015-04-23 09:34:58 -05007663 0, h->intrname[i],
Matt Gates254f7962012-05-01 11:43:06 -05007664 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007665 if (rc) {
7666 int j;
7667
7668 dev_err(&h->pdev->dev,
7669 "failed to get irq %d for %s\n",
7670 h->intr[i], h->devname);
7671 for (j = 0; j < i; j++) {
7672 free_irq(h->intr[j], &h->q[j]);
7673 h->q[j] = 0;
7674 }
7675 for (; j < MAX_REPLY_QUEUES; j++)
7676 h->q[j] = 0;
7677 return rc;
7678 }
7679 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007680 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05007681 } else {
7682 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007683 if (h->msix_vector > 0 || h->msi_vector) {
Robert Elliott8b470042015-04-23 09:34:58 -05007684 if (h->msix_vector)
7685 sprintf(h->intrname[h->intr_mode],
7686 "%s-msix", h->devname);
7687 else
7688 sprintf(h->intrname[h->intr_mode],
7689 "%s-msi", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05007690 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05007691 msixhandler, 0,
7692 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05007693 &h->q[h->intr_mode]);
7694 } else {
Robert Elliott8b470042015-04-23 09:34:58 -05007695 sprintf(h->intrname[h->intr_mode],
7696 "%s-intx", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05007697 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05007698 intxhandler, IRQF_SHARED,
7699 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05007700 &h->q[h->intr_mode]);
7701 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007702 irq_set_affinity_hint(h->intr[h->intr_mode], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05007703 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007704 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007705 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007706 h->intr[h->intr_mode], h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05007707 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007708 return -ENODEV;
7709 }
7710 return 0;
7711}
7712
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007713static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007714{
Robert Elliott39c53f52015-04-23 09:35:14 -05007715 int rc;
Robert Elliottbf43caf2015-04-23 09:33:38 -05007716 hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007717
7718 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007719 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY);
7720 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007721 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007722 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007723 }
7724
7725 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007726 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
7727 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007728 dev_warn(&h->pdev->dev, "Board failed to become ready "
7729 "after soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007730 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007731 }
7732
7733 return 0;
7734}
7735
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007736static void hpsa_free_reply_queues(struct ctlr_info *h)
7737{
7738 int i;
7739
7740 for (i = 0; i < h->nreply_queues; i++) {
7741 if (!h->reply_queue[i].head)
7742 continue;
Robert Elliott1fb7c982015-04-23 09:33:22 -05007743 pci_free_consistent(h->pdev,
7744 h->reply_queue_size,
7745 h->reply_queue[i].head,
7746 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007747 h->reply_queue[i].head = NULL;
7748 h->reply_queue[i].busaddr = 0;
7749 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007750 h->reply_queue_size = 0;
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007751}
7752
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007753static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
7754{
Robert Elliott105a3db2015-04-23 09:33:48 -05007755 hpsa_free_performant_mode(h); /* init_one 7 */
7756 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
7757 hpsa_free_cmd_pool(h); /* init_one 5 */
7758 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliott2946e822015-04-23 09:35:09 -05007759 scsi_host_put(h->scsi_host); /* init_one 3 */
7760 h->scsi_host = NULL; /* init_one 3 */
7761 hpsa_free_pci_init(h); /* init_one 2_5 */
Robert Elliott9ecd9532015-04-23 09:34:43 -05007762 free_percpu(h->lockup_detected); /* init_one 2 */
7763 h->lockup_detected = NULL; /* init_one 2 */
7764 if (h->resubmit_wq) {
7765 destroy_workqueue(h->resubmit_wq); /* init_one 1 */
7766 h->resubmit_wq = NULL;
7767 }
7768 if (h->rescan_ctlr_wq) {
7769 destroy_workqueue(h->rescan_ctlr_wq);
7770 h->rescan_ctlr_wq = NULL;
7771 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007772 kfree(h); /* init_one 1 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007773}
7774
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007775/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06007776static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007777{
Webb Scales281a7fd2015-01-23 16:43:35 -06007778 int i, refcount;
7779 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007780 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007781
Don Brace080ef1c2015-01-23 16:43:25 -06007782 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06007783 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007784 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007785 refcount = atomic_inc_return(&c->refcount);
7786 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05007787 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06007788 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05007789 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05007790 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06007791 }
7792 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007793 }
Webb Scales25163bd2015-04-23 09:32:00 -05007794 dev_warn(&h->pdev->dev,
7795 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007796}
7797
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007798static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
7799{
Rusty Russellc8ed0012015-03-05 10:49:19 +10307800 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007801
Rusty Russellc8ed0012015-03-05 10:49:19 +10307802 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007803 u32 *lockup_detected;
7804 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7805 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007806 }
7807 wmb(); /* be sure the per-cpu variables are out to memory */
7808}
7809
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007810static void controller_lockup_detected(struct ctlr_info *h)
7811{
7812 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007813 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007814
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007815 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7816 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007817 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7818 if (!lockup_detected) {
7819 /* no heartbeat, but controller gave us a zero. */
7820 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05007821 "lockup detected after %d but scratchpad register is zero\n",
7822 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007823 lockup_detected = 0xffffffff;
7824 }
7825 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007826 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05007827 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
7828 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007829 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06007830 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007831}
7832
Webb Scales25163bd2015-04-23 09:32:00 -05007833static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007834{
7835 u64 now;
7836 u32 heartbeat;
7837 unsigned long flags;
7838
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007839 now = get_jiffies_64();
7840 /* If we've received an interrupt recently, we're ok. */
7841 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007842 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007843 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007844
7845 /*
7846 * If we've already checked the heartbeat recently, we're ok.
7847 * This could happen if someone sends us a signal. We
7848 * otherwise don't care about signals in this thread.
7849 */
7850 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007851 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007852 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007853
7854 /* If heartbeat has not changed since we last looked, we're not ok. */
7855 spin_lock_irqsave(&h->lock, flags);
7856 heartbeat = readl(&h->cfgtable->HeartBeat);
7857 spin_unlock_irqrestore(&h->lock, flags);
7858 if (h->last_heartbeat == heartbeat) {
7859 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05007860 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007861 }
7862
7863 /* We're ok. */
7864 h->last_heartbeat = heartbeat;
7865 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05007866 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007867}
7868
Stephen M. Cameron98465902014-02-21 16:25:00 -06007869static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007870{
7871 int i;
7872 char *event_type;
7873
Stephen Camerone4aa3e62015-01-23 16:44:07 -06007874 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7875 return;
7876
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007877 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06007878 if ((h->transMethod & (CFGTBL_Trans_io_accel1
7879 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007880 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
7881 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
7882
7883 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
7884 event_type = "state change";
7885 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
7886 event_type = "configuration change";
7887 /* Stop sending new RAID offload reqs via the IO accelerator */
7888 scsi_block_requests(h->scsi_host);
7889 for (i = 0; i < h->ndevices; i++)
7890 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007891 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007892 /* Set 'accelerator path config change' bit */
7893 dev_warn(&h->pdev->dev,
7894 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
7895 h->events, event_type);
7896 writel(h->events, &(h->cfgtable->clear_event_notify));
7897 /* Set the "clear event notify field update" bit 6 */
7898 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7899 /* Wait until ctlr clears 'clear event notify field', bit 6 */
7900 hpsa_wait_for_clear_event_notify_ack(h);
7901 scsi_unblock_requests(h->scsi_host);
7902 } else {
7903 /* Acknowledge controller notification events. */
7904 writel(h->events, &(h->cfgtable->clear_event_notify));
7905 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7906 hpsa_wait_for_clear_event_notify_ack(h);
7907#if 0
7908 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7909 hpsa_wait_for_mode_change_ack(h);
7910#endif
7911 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007912 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007913}
7914
7915/* Check a register on the controller to see if there are configuration
7916 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06007917 * we should rescan the controller for devices.
7918 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007919 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06007920static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007921{
Don Brace853633e2015-11-04 15:50:37 -06007922 if (h->drv_req_rescan) {
7923 h->drv_req_rescan = 0;
7924 return 1;
7925 }
7926
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007927 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06007928 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007929
7930 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06007931 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007932}
7933
Stephen M. Cameron98465902014-02-21 16:25:00 -06007934/*
7935 * Check if any of the offline devices have become ready
7936 */
7937static int hpsa_offline_devices_ready(struct ctlr_info *h)
7938{
7939 unsigned long flags;
7940 struct offline_device_entry *d;
7941 struct list_head *this, *tmp;
7942
7943 spin_lock_irqsave(&h->offline_device_lock, flags);
7944 list_for_each_safe(this, tmp, &h->offline_device_list) {
7945 d = list_entry(this, struct offline_device_entry,
7946 offline_list);
7947 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007948 if (!hpsa_volume_offline(h, d->scsi3addr)) {
7949 spin_lock_irqsave(&h->offline_device_lock, flags);
7950 list_del(&d->offline_list);
7951 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007952 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007953 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007954 spin_lock_irqsave(&h->offline_device_lock, flags);
7955 }
7956 spin_unlock_irqrestore(&h->offline_device_lock, flags);
7957 return 0;
7958}
7959
Don Brace6636e7f2015-01-23 16:45:17 -06007960static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007961{
7962 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007963 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06007964 struct ctlr_info, rescan_ctlr_work);
7965
7966
7967 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007968 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007969
7970 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
7971 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007972 hpsa_ack_ctlr_events(h);
7973 hpsa_scan_start(h->scsi_host);
7974 scsi_host_put(h->scsi_host);
7975 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007976 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007977 if (!h->remove_in_progress)
7978 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007979 h->heartbeat_sample_interval);
7980 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007981}
7982
Don Brace6636e7f2015-01-23 16:45:17 -06007983static void hpsa_monitor_ctlr_worker(struct work_struct *work)
7984{
7985 unsigned long flags;
7986 struct ctlr_info *h = container_of(to_delayed_work(work),
7987 struct ctlr_info, monitor_ctlr_work);
7988
7989 detect_controller_lockup(h);
7990 if (lockup_detected(h))
7991 return;
7992
7993 spin_lock_irqsave(&h->lock, flags);
7994 if (!h->remove_in_progress)
7995 schedule_delayed_work(&h->monitor_ctlr_work,
7996 h->heartbeat_sample_interval);
7997 spin_unlock_irqrestore(&h->lock, flags);
7998}
7999
8000static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
8001 char *name)
8002{
8003 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06008004
Don Brace397ea9c2015-02-06 17:44:15 -06008005 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06008006 if (!wq)
8007 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
8008
8009 return wq;
8010}
8011
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008012static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008013{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008014 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008015 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008016 int try_soft_reset = 0;
8017 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008018 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008019
8020 if (number_of_controllers == 0)
8021 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008022
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008023 rc = hpsa_lookup_board_id(pdev, &board_id);
8024 if (rc < 0) {
8025 dev_warn(&pdev->dev, "Board ID not found\n");
8026 return rc;
8027 }
8028
8029 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008030 if (rc) {
8031 if (rc != -ENOTSUPP)
8032 return rc;
8033 /* If the reset fails in a particular way (it has no way to do
8034 * a proper hard reset, so returns -ENOTSUPP) we can try to do
8035 * a soft reset once we get the controller configured up to the
8036 * point that it can accept a command.
8037 */
8038 try_soft_reset = 1;
8039 rc = 0;
8040 }
8041
8042reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008043
Don Brace303932f2010-02-04 08:42:40 -06008044 /* Command structures must be aligned on a 32-byte boundary because
8045 * the 5 lower bits of the address are used by the hardware. and by
8046 * the driver. See comments in hpsa.h for more info.
8047 */
Don Brace303932f2010-02-04 08:42:40 -06008048 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008049 h = kzalloc(sizeof(*h), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008050 if (!h) {
8051 dev_err(&pdev->dev, "Failed to allocate controller head\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008052 return -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05008053 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008054
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008055 h->pdev = pdev;
Robert Elliott105a3db2015-04-23 09:33:48 -05008056
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06008057 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008058 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008059 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008060 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008061 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06008062 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008063 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008064
8065 /* Allocate and clear per-cpu variable lockup_detected */
8066 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008067 if (!h->lockup_detected) {
Robert Elliott105a3db2015-04-23 09:33:48 -05008068 dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008069 rc = -ENOMEM;
Robert Elliott2efa5922015-04-23 09:34:53 -05008070 goto clean1; /* aer/h */
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008071 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008072 set_lockup_detected_for_all_cpus(h, 0);
8073
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008074 rc = hpsa_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008075 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008076 goto clean2; /* lu, aer/h */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008077
Robert Elliott2946e822015-04-23 09:35:09 -05008078 /* relies on h-> settings made by hpsa_pci_init, including
8079 * interrupt_mode h->intr */
8080 rc = hpsa_scsi_host_alloc(h);
8081 if (rc)
8082 goto clean2_5; /* pci, lu, aer/h */
8083
8084 sprintf(h->devname, HPSA "%d", h->scsi_host->host_no);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008085 h->ctlr = number_of_controllers;
8086 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008087
8088 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008089 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
8090 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008091 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008092 } else {
8093 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8094 if (rc == 0) {
8095 dac = 0;
8096 } else {
8097 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott2946e822015-04-23 09:35:09 -05008098 goto clean3; /* shost, pci, lu, aer/h */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008099 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008100 }
8101
8102 /* make sure the board interrupts are off */
8103 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05008104
Robert Elliott105a3db2015-04-23 09:33:48 -05008105 rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
8106 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008107 goto clean3; /* shost, pci, lu, aer/h */
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008108 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06008109 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008110 goto clean4; /* irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008111 rc = hpsa_alloc_sg_chain_blocks(h);
8112 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008113 goto clean5; /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Camerona08a8472010-02-04 08:43:16 -06008114 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008115 init_waitqueue_head(&h->abort_cmd_wait_queue);
Webb Scalesd604f532015-04-23 09:35:22 -05008116 init_waitqueue_head(&h->event_sync_wait_queue);
8117 mutex_init(&h->reset_mutex);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06008118 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008119
8120 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008121 h->ndevices = 0;
Robert Elliott2946e822015-04-23 09:35:09 -05008122
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008123 spin_lock_init(&h->devlock);
Robert Elliott105a3db2015-04-23 09:33:48 -05008124 rc = hpsa_put_ctlr_into_performant_mode(h);
8125 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008126 goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */
8127
8128 /* hook into SCSI subsystem */
8129 rc = hpsa_scsi_add_host(h);
8130 if (rc)
8131 goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott2efa5922015-04-23 09:34:53 -05008132
8133 /* create the resubmit workqueue */
8134 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
8135 if (!h->rescan_ctlr_wq) {
8136 rc = -ENOMEM;
8137 goto clean7;
8138 }
8139
8140 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
8141 if (!h->resubmit_wq) {
8142 rc = -ENOMEM;
8143 goto clean7; /* aer/h */
8144 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008145
Robert Elliott105a3db2015-04-23 09:33:48 -05008146 /*
8147 * At this point, the controller is ready to take commands.
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008148 * Now, if reset_devices and the hard reset didn't work, try
8149 * the soft reset and see if that works.
8150 */
8151 if (try_soft_reset) {
8152
8153 /* This is kind of gross. We may or may not get a completion
8154 * from the soft reset command, and if we do, then the value
8155 * from the fifo may or may not be valid. So, we wait 10 secs
8156 * after the reset throwing away any completions we get during
8157 * that time. Unregister the interrupt handler and register
8158 * fake ones to scoop up any residual completions.
8159 */
8160 spin_lock_irqsave(&h->lock, flags);
8161 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8162 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06008163 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06008164 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008165 hpsa_intx_discard_completions);
8166 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06008167 dev_warn(&h->pdev->dev,
8168 "Failed to request_irq after soft reset.\n");
Robert Elliottd4987572015-04-23 09:34:37 -05008169 /*
Robert Elliottb2ef4802015-04-23 09:34:48 -05008170 * cannot goto clean7 or free_irqs will be called
8171 * again. Instead, do its work
8172 */
8173 hpsa_free_performant_mode(h); /* clean7 */
8174 hpsa_free_sg_chain_blocks(h); /* clean6 */
8175 hpsa_free_cmd_pool(h); /* clean5 */
8176 /*
8177 * skip hpsa_free_irqs(h) clean4 since that
8178 * was just called before request_irqs failed
Robert Elliottd4987572015-04-23 09:34:37 -05008179 */
8180 goto clean3;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008181 }
8182
8183 rc = hpsa_kdump_soft_reset(h);
8184 if (rc)
8185 /* Neither hard nor soft reset worked, we're hosed. */
Don Brace7ef73232015-07-18 11:12:33 -05008186 goto clean7;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008187
8188 dev_info(&h->pdev->dev, "Board READY.\n");
8189 dev_info(&h->pdev->dev,
8190 "Waiting for stale completions to drain.\n");
8191 h->access.set_intr_mask(h, HPSA_INTR_ON);
8192 msleep(10000);
8193 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8194
8195 rc = controller_reset_failed(h->cfgtable);
8196 if (rc)
8197 dev_info(&h->pdev->dev,
8198 "Soft reset appears to have failed.\n");
8199
8200 /* since the controller's reset, we have to go back and re-init
8201 * everything. Easiest to just forget what we've done and do it
8202 * all over again.
8203 */
8204 hpsa_undo_allocations_after_kdump_soft_reset(h);
8205 try_soft_reset = 0;
8206 if (rc)
Robert Elliottb2ef4802015-04-23 09:34:48 -05008207 /* don't goto clean, we already unallocated */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008208 return -ENODEV;
8209
8210 goto reinit_after_soft_reset;
8211 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008212
Robert Elliott105a3db2015-04-23 09:33:48 -05008213 /* Enable Accelerated IO path at driver layer */
8214 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06008215
Scott Teele863d682014-02-18 13:57:05 -06008216
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008217 /* Turn the interrupts on so we can service requests */
8218 h->access.set_intr_mask(h, HPSA_INTR_ON);
8219
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06008220 hpsa_hba_inquiry(h);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008221
8222 /* Monitor the controller for firmware lockups */
8223 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
8224 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
8225 schedule_delayed_work(&h->monitor_ctlr_work,
8226 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06008227 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
8228 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
8229 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05008230 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008231
Robert Elliott2946e822015-04-23 09:35:09 -05008232clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008233 hpsa_free_performant_mode(h);
8234 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8235clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06008236 hpsa_free_sg_chain_blocks(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008237clean5: /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008238 hpsa_free_cmd_pool(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008239clean4: /* irq, shost, pci, lu, aer/h */
Robert Elliottec501a12015-01-23 16:41:40 -06008240 hpsa_free_irqs(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008241clean3: /* shost, pci, lu, aer/h */
8242 scsi_host_put(h->scsi_host);
8243 h->scsi_host = NULL;
8244clean2_5: /* pci, lu, aer/h */
Robert Elliott195f2c62015-04-23 09:33:17 -05008245 hpsa_free_pci_init(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008246clean2: /* lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008247 if (h->lockup_detected) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008248 free_percpu(h->lockup_detected);
Robert Elliott105a3db2015-04-23 09:33:48 -05008249 h->lockup_detected = NULL;
8250 }
8251clean1: /* wq/aer/h */
8252 if (h->resubmit_wq) {
8253 destroy_workqueue(h->resubmit_wq);
8254 h->resubmit_wq = NULL;
8255 }
8256 if (h->rescan_ctlr_wq) {
8257 destroy_workqueue(h->rescan_ctlr_wq);
8258 h->rescan_ctlr_wq = NULL;
8259 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008260 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008261 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008262}
8263
8264static void hpsa_flush_cache(struct ctlr_info *h)
8265{
8266 char *flush_buf;
8267 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008268 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008269
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008270 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008271 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008272 flush_buf = kzalloc(4, GFP_KERNEL);
8273 if (!flush_buf)
8274 return;
8275
Stephen Cameron45fcb862015-01-23 16:43:04 -06008276 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05008277
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008278 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
8279 RAID_CTLR_LUNID, TYPE_CMD)) {
8280 goto out;
8281 }
Webb Scales25163bd2015-04-23 09:32:00 -05008282 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
8283 PCI_DMA_TODEVICE, NO_TIMEOUT);
8284 if (rc)
8285 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008286 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008287out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008288 dev_warn(&h->pdev->dev,
8289 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06008290 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008291 kfree(flush_buf);
8292}
8293
8294static void hpsa_shutdown(struct pci_dev *pdev)
8295{
8296 struct ctlr_info *h;
8297
8298 h = pci_get_drvdata(pdev);
8299 /* Turn board interrupts off and send the flush cache command
8300 * sendcmd will turn off interrupt, and send the flush...
8301 * To write all data in the battery backed cache to disks
8302 */
8303 hpsa_flush_cache(h);
8304 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliott105a3db2015-04-23 09:33:48 -05008305 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliottcc64c812015-04-23 09:33:12 -05008306 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008307}
8308
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008309static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008310{
8311 int i;
8312
Robert Elliott105a3db2015-04-23 09:33:48 -05008313 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008314 kfree(h->dev[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008315 h->dev[i] = NULL;
8316 }
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008317}
8318
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008319static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008320{
8321 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008322 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008323
8324 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008325 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008326 return;
8327 }
8328 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008329
8330 /* Get rid of any controller monitoring work items */
8331 spin_lock_irqsave(&h->lock, flags);
8332 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008333 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06008334 cancel_delayed_work_sync(&h->monitor_ctlr_work);
8335 cancel_delayed_work_sync(&h->rescan_ctlr_work);
8336 destroy_workqueue(h->rescan_ctlr_wq);
8337 destroy_workqueue(h->resubmit_wq);
Robert Elliottcc64c812015-04-23 09:33:12 -05008338
Don Brace2d041302015-07-18 11:13:15 -05008339 /*
8340 * Call before disabling interrupts.
8341 * scsi_remove_host can trigger I/O operations especially
8342 * when multipath is enabled. There can be SYNCHRONIZE CACHE
8343 * operations which cannot complete and will hang the system.
8344 */
8345 if (h->scsi_host)
8346 scsi_remove_host(h->scsi_host); /* init_one 8 */
Robert Elliott105a3db2015-04-23 09:33:48 -05008347 /* includes hpsa_free_irqs - init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008348 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008349 hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05008350
Robert Elliott105a3db2015-04-23 09:33:48 -05008351 hpsa_free_device_info(h); /* scan */
8352
Robert Elliott2946e822015-04-23 09:35:09 -05008353 kfree(h->hba_inquiry_data); /* init_one 10 */
8354 h->hba_inquiry_data = NULL; /* init_one 10 */
Robert Elliott2946e822015-04-23 09:35:09 -05008355 hpsa_free_ioaccel2_sg_chain_blocks(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008356 hpsa_free_performant_mode(h); /* init_one 7 */
8357 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
8358 hpsa_free_cmd_pool(h); /* init_one 5 */
8359
8360 /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008361
Robert Elliott2946e822015-04-23 09:35:09 -05008362 scsi_host_put(h->scsi_host); /* init_one 3 */
8363 h->scsi_host = NULL; /* init_one 3 */
8364
Robert Elliott195f2c62015-04-23 09:33:17 -05008365 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Robert Elliott2946e822015-04-23 09:35:09 -05008366 hpsa_free_pci_init(h); /* init_one 2.5 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008367
Robert Elliott105a3db2015-04-23 09:33:48 -05008368 free_percpu(h->lockup_detected); /* init_one 2 */
8369 h->lockup_detected = NULL; /* init_one 2 */
8370 /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */
8371 kfree(h); /* init_one 1 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008372}
8373
8374static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
8375 __attribute__((unused)) pm_message_t state)
8376{
8377 return -ENOSYS;
8378}
8379
8380static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
8381{
8382 return -ENOSYS;
8383}
8384
8385static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06008386 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008387 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008388 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008389 .id_table = hpsa_pci_device_id, /* id_table */
8390 .shutdown = hpsa_shutdown,
8391 .suspend = hpsa_suspend,
8392 .resume = hpsa_resume,
8393};
8394
Don Brace303932f2010-02-04 08:42:40 -06008395/* Fill in bucket_map[], given nsgs (the max number of
8396 * scatter gather elements supported) and bucket[],
8397 * which is an array of 8 integers. The bucket[] array
8398 * contains 8 different DMA transfer sizes (in 16
8399 * byte increments) which the controller uses to fetch
8400 * commands. This function fills in bucket_map[], which
8401 * maps a given number of scatter gather elements to one of
8402 * the 8 DMA transfer sizes. The point of it is to allow the
8403 * controller to only do as much DMA as needed to fetch the
8404 * command, with the DMA transfer size encoded in the lower
8405 * bits of the command address.
8406 */
8407static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06008408 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06008409{
8410 int i, j, b, size;
8411
Don Brace303932f2010-02-04 08:42:40 -06008412 /* Note, bucket_map must have nsgs+1 entries. */
8413 for (i = 0; i <= nsgs; i++) {
8414 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06008415 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06008416 b = num_buckets; /* Assume the biggest bucket */
8417 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06008418 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06008419 if (bucket[j] >= size) {
8420 b = j;
8421 break;
8422 }
8423 }
8424 /* for a command with i SG entries, use bucket b. */
8425 bucket_map[i] = b;
8426 }
8427}
8428
Robert Elliott105a3db2015-04-23 09:33:48 -05008429/*
8430 * return -ENODEV on err, 0 on success (or no action)
8431 * allocates numerous items that must be freed later
8432 */
Robert Elliottc706a792015-01-23 16:45:01 -06008433static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06008434{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008435 int i;
8436 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06008437 unsigned long transMethod = CFGTBL_Trans_Performant |
8438 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008439 CFGTBL_Trans_enable_directed_msix |
8440 (trans_support & (CFGTBL_Trans_io_accel1 |
8441 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06008442 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05008443
8444 /* This is a bit complicated. There are 8 registers on
8445 * the controller which we write to to tell it 8 different
8446 * sizes of commands which there may be. It's a way of
8447 * reducing the DMA done to fetch each command. Encoded into
8448 * each command's tag are 3 bits which communicate to the controller
8449 * which of the eight sizes that command fits within. The size of
8450 * each command depends on how many scatter gather entries there are.
8451 * Each SG entry requires 16 bytes. The eight registers are programmed
8452 * with the number of 16-byte blocks a command of that size requires.
8453 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008454 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05008455 * blocks. Note, this only extends to the SG entries contained
8456 * within the command block, and does not extend to chained blocks
8457 * of SG elements. bft[] contains the eight values we write to
8458 * the registers. They are not evenly distributed, but have more
8459 * sizes for small commands, and fewer sizes for larger commands.
8460 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008461 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008462#define MIN_IOACCEL2_BFT_ENTRY 5
8463#define HPSA_IOACCEL2_HEADER_SZ 4
8464 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
8465 13, 14, 15, 16, 17, 18, 19,
8466 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
8467 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
8468 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
8469 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
8470 16 * MIN_IOACCEL2_BFT_ENTRY);
8471 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008472 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06008473 /* 5 = 1 s/g entry or 4k
8474 * 6 = 2 s/g entry or 8k
8475 * 8 = 4 s/g entry or 16k
8476 * 10 = 6 s/g entry or 24k
8477 */
Don Brace303932f2010-02-04 08:42:40 -06008478
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05008479 /* If the controller supports either ioaccel method then
8480 * we can also use the RAID stack submit path that does not
8481 * perform the superfluous readl() after each command submission.
8482 */
8483 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
8484 access = SA5_performant_access_no_read;
8485
Don Brace303932f2010-02-04 08:42:40 -06008486 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008487 for (i = 0; i < h->nreply_queues; i++)
8488 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06008489
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008490 bft[7] = SG_ENTRIES_IN_CMD + 4;
8491 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06008492 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06008493 for (i = 0; i < 8; i++)
8494 writel(bft[i], &h->transtable->BlockFetch[i]);
8495
8496 /* size of controller ring buffer */
8497 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05008498 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06008499 writel(0, &h->transtable->RepQCtrAddrLow32);
8500 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05008501
8502 for (i = 0; i < h->nreply_queues; i++) {
8503 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008504 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05008505 &h->transtable->RepQAddr[i].lower);
8506 }
8507
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008508 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06008509 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
8510 /*
8511 * enable outbound interrupt coalescing in accelerator mode;
8512 */
8513 if (trans_support & CFGTBL_Trans_io_accel1) {
8514 access = SA5_ioaccel_mode1_access;
8515 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8516 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06008517 } else {
8518 if (trans_support & CFGTBL_Trans_io_accel2) {
8519 access = SA5_ioaccel_mode2_access;
8520 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8521 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
8522 }
Matt Gatese1f7de02014-02-18 13:55:17 -06008523 }
Don Brace303932f2010-02-04 08:42:40 -06008524 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008525 if (hpsa_wait_for_mode_change_ack(h)) {
8526 dev_err(&h->pdev->dev,
8527 "performant mode problem - doorbell timeout\n");
8528 return -ENODEV;
8529 }
Don Brace303932f2010-02-04 08:42:40 -06008530 register_value = readl(&(h->cfgtable->TransportActive));
8531 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06008532 dev_err(&h->pdev->dev,
8533 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06008534 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06008535 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06008536 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06008537 h->access = access;
8538 h->transMethod = transMethod;
8539
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008540 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
8541 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06008542 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008543
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008544 if (trans_support & CFGTBL_Trans_io_accel1) {
8545 /* Set up I/O accelerator mode */
8546 for (i = 0; i < h->nreply_queues; i++) {
8547 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
8548 h->reply_queue[i].current_entry =
8549 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
8550 }
8551 bft[7] = h->ioaccel_maxsg + 8;
8552 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
8553 h->ioaccel1_blockFetchTable);
8554
8555 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008556 for (i = 0; i < h->nreply_queues; i++)
8557 memset(h->reply_queue[i].head,
8558 (u8) IOACCEL_MODE1_REPLY_UNUSED,
8559 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008560
8561 /* set all the constant fields in the accelerator command
8562 * frames once at init time to save CPU cycles later.
8563 */
8564 for (i = 0; i < h->nr_cmds; i++) {
8565 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
8566
8567 cp->function = IOACCEL1_FUNCTION_SCSIIO;
8568 cp->err_info = (u32) (h->errinfo_pool_dhandle +
8569 (i * sizeof(struct ErrorInfo)));
8570 cp->err_info_len = sizeof(struct ErrorInfo);
8571 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06008572 cp->host_context_flags =
8573 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008574 cp->timeout_sec = 0;
8575 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008576 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06008577 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008578 cp->host_addr =
8579 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008580 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008581 }
8582 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8583 u64 cfg_offset, cfg_base_addr_index;
8584 u32 bft2_offset, cfg_base_addr;
8585 int rc;
8586
8587 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
8588 &cfg_base_addr_index, &cfg_offset);
8589 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
8590 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
8591 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
8592 4, h->ioaccel2_blockFetchTable);
8593 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
8594 BUILD_BUG_ON(offsetof(struct CfgTable,
8595 io_accel_request_size_offset) != 0xb8);
8596 h->ioaccel2_bft2_regs =
8597 remap_pci_mem(pci_resource_start(h->pdev,
8598 cfg_base_addr_index) +
8599 cfg_offset + bft2_offset,
8600 ARRAY_SIZE(bft2) *
8601 sizeof(*h->ioaccel2_bft2_regs));
8602 for (i = 0; i < ARRAY_SIZE(bft2); i++)
8603 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06008604 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008605 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008606 if (hpsa_wait_for_mode_change_ack(h)) {
8607 dev_err(&h->pdev->dev,
8608 "performant mode problem - enabling ioaccel mode\n");
8609 return -ENODEV;
8610 }
8611 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008612}
8613
Robert Elliott1fb7c982015-04-23 09:33:22 -05008614/* Free ioaccel1 mode command blocks and block fetch table */
8615static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
8616{
Robert Elliott105a3db2015-04-23 09:33:48 -05008617 if (h->ioaccel_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008618 pci_free_consistent(h->pdev,
8619 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8620 h->ioaccel_cmd_pool,
8621 h->ioaccel_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008622 h->ioaccel_cmd_pool = NULL;
8623 h->ioaccel_cmd_pool_dhandle = 0;
8624 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008625 kfree(h->ioaccel1_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008626 h->ioaccel1_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008627}
8628
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008629/* Allocate ioaccel1 mode command blocks and block fetch table */
8630static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06008631{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008632 h->ioaccel_maxsg =
8633 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8634 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
8635 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
8636
Matt Gatese1f7de02014-02-18 13:55:17 -06008637 /* Command structures must be aligned on a 128-byte boundary
8638 * because the 7 lower bits of the address are used by the
8639 * hardware.
8640 */
Matt Gatese1f7de02014-02-18 13:55:17 -06008641 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
8642 IOACCEL1_COMMANDLIST_ALIGNMENT);
8643 h->ioaccel_cmd_pool =
8644 pci_alloc_consistent(h->pdev,
8645 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8646 &(h->ioaccel_cmd_pool_dhandle));
8647
8648 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008649 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06008650 sizeof(u32)), GFP_KERNEL);
8651
8652 if ((h->ioaccel_cmd_pool == NULL) ||
8653 (h->ioaccel1_blockFetchTable == NULL))
8654 goto clean_up;
8655
8656 memset(h->ioaccel_cmd_pool, 0,
8657 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
8658 return 0;
8659
8660clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008661 hpsa_free_ioaccel1_cmd_and_bft(h);
Robert Elliott2dd02d72015-04-23 09:33:43 -05008662 return -ENOMEM;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008663}
8664
Robert Elliott1fb7c982015-04-23 09:33:22 -05008665/* Free ioaccel2 mode command blocks and block fetch table */
8666static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
8667{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008668 hpsa_free_ioaccel2_sg_chain_blocks(h);
8669
Robert Elliott105a3db2015-04-23 09:33:48 -05008670 if (h->ioaccel2_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008671 pci_free_consistent(h->pdev,
8672 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8673 h->ioaccel2_cmd_pool,
8674 h->ioaccel2_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008675 h->ioaccel2_cmd_pool = NULL;
8676 h->ioaccel2_cmd_pool_dhandle = 0;
8677 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008678 kfree(h->ioaccel2_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008679 h->ioaccel2_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008680}
8681
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008682/* Allocate ioaccel2 mode command blocks and block fetch table */
8683static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008684{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008685 int rc;
8686
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008687 /* Allocate ioaccel2 mode command blocks and block fetch table */
8688
8689 h->ioaccel_maxsg =
8690 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8691 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
8692 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
8693
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008694 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
8695 IOACCEL2_COMMANDLIST_ALIGNMENT);
8696 h->ioaccel2_cmd_pool =
8697 pci_alloc_consistent(h->pdev,
8698 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8699 &(h->ioaccel2_cmd_pool_dhandle));
8700
8701 h->ioaccel2_blockFetchTable =
8702 kmalloc(((h->ioaccel_maxsg + 1) *
8703 sizeof(u32)), GFP_KERNEL);
8704
8705 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05008706 (h->ioaccel2_blockFetchTable == NULL)) {
8707 rc = -ENOMEM;
8708 goto clean_up;
8709 }
8710
8711 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
8712 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008713 goto clean_up;
8714
8715 memset(h->ioaccel2_cmd_pool, 0,
8716 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
8717 return 0;
8718
8719clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008720 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05008721 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008722}
8723
Robert Elliott105a3db2015-04-23 09:33:48 -05008724/* Free items allocated by hpsa_put_ctlr_into_performant_mode */
8725static void hpsa_free_performant_mode(struct ctlr_info *h)
8726{
8727 kfree(h->blockFetchTable);
8728 h->blockFetchTable = NULL;
8729 hpsa_free_reply_queues(h);
8730 hpsa_free_ioaccel1_cmd_and_bft(h);
8731 hpsa_free_ioaccel2_cmd_and_bft(h);
8732}
8733
8734/* return -ENODEV on error, 0 on success (or no action)
8735 * allocates numerous items that must be freed later
8736 */
8737static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008738{
8739 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06008740 unsigned long transMethod = CFGTBL_Trans_Performant |
8741 CFGTBL_Trans_use_short_tags;
Robert Elliott105a3db2015-04-23 09:33:48 -05008742 int i, rc;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008743
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008744 if (hpsa_simple_mode)
Robert Elliott105a3db2015-04-23 09:33:48 -05008745 return 0;
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008746
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008747 trans_support = readl(&(h->cfgtable->TransportSupport));
8748 if (!(trans_support & PERFORMANT_MODE))
Robert Elliott105a3db2015-04-23 09:33:48 -05008749 return 0;
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008750
Matt Gatese1f7de02014-02-18 13:55:17 -06008751 /* Check for I/O accelerator mode support */
8752 if (trans_support & CFGTBL_Trans_io_accel1) {
8753 transMethod |= CFGTBL_Trans_io_accel1 |
8754 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008755 rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
8756 if (rc)
8757 return rc;
8758 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8759 transMethod |= CFGTBL_Trans_io_accel2 |
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008760 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008761 rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
8762 if (rc)
8763 return rc;
Matt Gatese1f7de02014-02-18 13:55:17 -06008764 }
8765
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008766 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05008767 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008768 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008769 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008770
Matt Gates254f7962012-05-01 11:43:06 -05008771 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008772 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
8773 h->reply_queue_size,
8774 &(h->reply_queue[i].busaddr));
Robert Elliott105a3db2015-04-23 09:33:48 -05008775 if (!h->reply_queue[i].head) {
8776 rc = -ENOMEM;
8777 goto clean1; /* rq, ioaccel */
8778 }
Matt Gates254f7962012-05-01 11:43:06 -05008779 h->reply_queue[i].size = h->max_commands;
8780 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
8781 h->reply_queue[i].current_entry = 0;
8782 }
8783
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008784 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008785 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008786 sizeof(u32)), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008787 if (!h->blockFetchTable) {
8788 rc = -ENOMEM;
8789 goto clean1; /* rq, ioaccel */
8790 }
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008791
Robert Elliott105a3db2015-04-23 09:33:48 -05008792 rc = hpsa_enter_performant_mode(h, trans_support);
8793 if (rc)
8794 goto clean2; /* bft, rq, ioaccel */
8795 return 0;
Don Brace303932f2010-02-04 08:42:40 -06008796
Robert Elliott105a3db2015-04-23 09:33:48 -05008797clean2: /* bft, rq, ioaccel */
Don Brace303932f2010-02-04 08:42:40 -06008798 kfree(h->blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008799 h->blockFetchTable = NULL;
8800clean1: /* rq, ioaccel */
8801 hpsa_free_reply_queues(h);
8802 hpsa_free_ioaccel1_cmd_and_bft(h);
8803 hpsa_free_ioaccel2_cmd_and_bft(h);
8804 return rc;
Don Brace303932f2010-02-04 08:42:40 -06008805}
8806
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008807static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008808{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008809 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
8810}
8811
8812static void hpsa_drain_accel_commands(struct ctlr_info *h)
8813{
8814 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06008815 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06008816 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008817
Don Bracef2405db2015-01-23 16:43:09 -06008818 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008819 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06008820 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06008821 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06008822 refcount = atomic_inc_return(&c->refcount);
8823 if (refcount > 1) /* Command is allocated */
8824 accel_cmds_out += is_accelerated_cmd(c);
8825 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06008826 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008827 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06008828 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008829 msleep(100);
8830 } while (1);
8831}
8832
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008833/*
8834 * This is it. Register the PCI driver information for the cards we control
8835 * the OS will call our registered routines when it finds one of our cards.
8836 */
8837static int __init hpsa_init(void)
8838{
Mike Miller31468402010-02-25 14:03:12 -06008839 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008840}
8841
8842static void __exit hpsa_cleanup(void)
8843{
8844 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008845}
8846
Matt Gatese1f7de02014-02-18 13:55:17 -06008847static void __attribute__((unused)) verify_offsets(void)
8848{
8849#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06008850 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
8851
8852 VERIFY_OFFSET(structure_size, 0);
8853 VERIFY_OFFSET(volume_blk_size, 4);
8854 VERIFY_OFFSET(volume_blk_cnt, 8);
8855 VERIFY_OFFSET(phys_blk_shift, 16);
8856 VERIFY_OFFSET(parity_rotation_shift, 17);
8857 VERIFY_OFFSET(strip_size, 18);
8858 VERIFY_OFFSET(disk_starting_blk, 20);
8859 VERIFY_OFFSET(disk_blk_cnt, 28);
8860 VERIFY_OFFSET(data_disks_per_row, 36);
8861 VERIFY_OFFSET(metadata_disks_per_row, 38);
8862 VERIFY_OFFSET(row_cnt, 40);
8863 VERIFY_OFFSET(layout_map_count, 42);
8864 VERIFY_OFFSET(flags, 44);
8865 VERIFY_OFFSET(dekindex, 46);
8866 /* VERIFY_OFFSET(reserved, 48 */
8867 VERIFY_OFFSET(data, 64);
8868
8869#undef VERIFY_OFFSET
8870
8871#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06008872 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
8873
8874 VERIFY_OFFSET(IU_type, 0);
8875 VERIFY_OFFSET(direction, 1);
8876 VERIFY_OFFSET(reply_queue, 2);
8877 /* VERIFY_OFFSET(reserved1, 3); */
8878 VERIFY_OFFSET(scsi_nexus, 4);
8879 VERIFY_OFFSET(Tag, 8);
8880 VERIFY_OFFSET(cdb, 16);
8881 VERIFY_OFFSET(cciss_lun, 32);
8882 VERIFY_OFFSET(data_len, 40);
8883 VERIFY_OFFSET(cmd_priority_task_attr, 44);
8884 VERIFY_OFFSET(sg_count, 45);
8885 /* VERIFY_OFFSET(reserved3 */
8886 VERIFY_OFFSET(err_ptr, 48);
8887 VERIFY_OFFSET(err_len, 56);
8888 /* VERIFY_OFFSET(reserved4 */
8889 VERIFY_OFFSET(sg, 64);
8890
8891#undef VERIFY_OFFSET
8892
8893#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06008894 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
8895
8896 VERIFY_OFFSET(dev_handle, 0x00);
8897 VERIFY_OFFSET(reserved1, 0x02);
8898 VERIFY_OFFSET(function, 0x03);
8899 VERIFY_OFFSET(reserved2, 0x04);
8900 VERIFY_OFFSET(err_info, 0x0C);
8901 VERIFY_OFFSET(reserved3, 0x10);
8902 VERIFY_OFFSET(err_info_len, 0x12);
8903 VERIFY_OFFSET(reserved4, 0x13);
8904 VERIFY_OFFSET(sgl_offset, 0x14);
8905 VERIFY_OFFSET(reserved5, 0x15);
8906 VERIFY_OFFSET(transfer_len, 0x1C);
8907 VERIFY_OFFSET(reserved6, 0x20);
8908 VERIFY_OFFSET(io_flags, 0x24);
8909 VERIFY_OFFSET(reserved7, 0x26);
8910 VERIFY_OFFSET(LUN, 0x34);
8911 VERIFY_OFFSET(control, 0x3C);
8912 VERIFY_OFFSET(CDB, 0x40);
8913 VERIFY_OFFSET(reserved8, 0x50);
8914 VERIFY_OFFSET(host_context_flags, 0x60);
8915 VERIFY_OFFSET(timeout_sec, 0x62);
8916 VERIFY_OFFSET(ReplyQueue, 0x64);
8917 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008918 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06008919 VERIFY_OFFSET(host_addr, 0x70);
8920 VERIFY_OFFSET(CISS_LUN, 0x78);
8921 VERIFY_OFFSET(SG, 0x78 + 8);
8922#undef VERIFY_OFFSET
8923}
8924
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008925module_init(hpsa_init);
8926module_exit(hpsa_cleanup);