blob: 212e82663707e5e5faf9aeac344d12537055f093 [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)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800233
Jeff Garzikf2812332010-11-16 02:10:29 -0500234static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600235static void hpsa_scan_start(struct Scsi_Host *);
236static int hpsa_scan_finished(struct Scsi_Host *sh,
237 unsigned long elapsed_time);
Don Brace7c0a0222015-01-23 16:41:30 -0600238static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800239
240static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500241static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800242static int hpsa_slave_alloc(struct scsi_device *sdev);
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500243static int hpsa_slave_configure(struct scsi_device *sdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800244static void hpsa_slave_destroy(struct scsi_device *sdev);
245
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800246static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800247static int check_for_unit_attention(struct ctlr_info *h,
248 struct CommandList *c);
249static void check_ioctl_unit_attention(struct ctlr_info *h,
250 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600251/* performant mode helper functions */
252static void calc_bucket_map(int *bucket, int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -0600253 int nsgs, int min_blocks, u32 *bucket_map);
Robert Elliott105a3db2015-04-23 09:33:48 -0500254static void hpsa_free_performant_mode(struct ctlr_info *h);
255static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500256static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800257static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
258 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
259 u64 *cfg_offset);
260static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
261 unsigned long *memory_bar);
262static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
263static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
264 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500265static inline void finish_cmd(struct CommandList *c);
Robert Elliottc706a792015-01-23 16:45:01 -0600266static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600267#define BOARD_NOT_READY 0
268#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600269static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600270static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600271static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
272 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -0600273 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
Don Brace080ef1c2015-01-23 16:43:25 -0600274static void hpsa_command_resubmit_worker(struct work_struct *work);
Webb Scales25163bd2015-04-23 09:32:00 -0500275static u32 lockup_detected(struct ctlr_info *h);
276static int detect_controller_lockup(struct ctlr_info *h);
Joe Handzik8270b862015-07-18 11:12:43 -0500277static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800278
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800279static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
280{
281 unsigned long *priv = shost_priv(sdev->host);
282 return (struct ctlr_info *) *priv;
283}
284
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600285static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
286{
287 unsigned long *priv = shost_priv(sh);
288 return (struct ctlr_info *) *priv;
289}
290
Webb Scalesa58e7e52015-04-23 09:34:16 -0500291static inline bool hpsa_is_cmd_idle(struct CommandList *c)
292{
293 return c->scsi_cmd == SCSI_CMD_IDLE;
294}
295
Webb Scalesd604f532015-04-23 09:35:22 -0500296static inline bool hpsa_is_pending_event(struct CommandList *c)
297{
298 return c->abort_pending || c->reset_pending;
299}
300
Stephen Cameron9437ac42015-04-23 09:32:16 -0500301/* extract sense key, asc, and ascq from sense data. -1 means invalid. */
302static void decode_sense_data(const u8 *sense_data, int sense_data_len,
303 u8 *sense_key, u8 *asc, u8 *ascq)
304{
305 struct scsi_sense_hdr sshdr;
306 bool rc;
307
308 *sense_key = -1;
309 *asc = -1;
310 *ascq = -1;
311
312 if (sense_data_len < 1)
313 return;
314
315 rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
316 if (rc) {
317 *sense_key = sshdr.sense_key;
318 *asc = sshdr.asc;
319 *ascq = sshdr.ascq;
320 }
321}
322
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800323static int check_for_unit_attention(struct ctlr_info *h,
324 struct CommandList *c)
325{
Stephen Cameron9437ac42015-04-23 09:32:16 -0500326 u8 sense_key, asc, ascq;
327 int sense_len;
328
329 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
330 sense_len = sizeof(c->err_info->SenseInfo);
331 else
332 sense_len = c->err_info->SenseLen;
333
334 decode_sense_data(c->err_info->SenseInfo, sense_len,
335 &sense_key, &asc, &ascq);
Don Brace81c27552015-07-18 11:12:28 -0500336 if (sense_key != UNIT_ATTENTION || asc == 0xff)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800337 return 0;
338
Stephen Cameron9437ac42015-04-23 09:32:16 -0500339 switch (asc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800340 case STATE_CHANGED:
Stephen Cameron9437ac42015-04-23 09:32:16 -0500341 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500342 "%s: a state change detected, command retried\n",
343 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800344 break;
345 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600346 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500347 "%s: LUN failure detected\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800348 break;
349 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600350 dev_warn(&h->pdev->dev,
Robert Elliott2946e822015-04-23 09:35:09 -0500351 "%s: report LUN data changed\n", h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800352 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600353 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
354 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800355 */
356 break;
357 case POWER_OR_RESET:
Robert Elliott2946e822015-04-23 09:35:09 -0500358 dev_warn(&h->pdev->dev,
359 "%s: a power on or device reset detected\n",
360 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800361 break;
362 case UNIT_ATTENTION_CLEARED:
Robert Elliott2946e822015-04-23 09:35:09 -0500363 dev_warn(&h->pdev->dev,
364 "%s: unit attention cleared by another initiator\n",
365 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800366 break;
367 default:
Robert Elliott2946e822015-04-23 09:35:09 -0500368 dev_warn(&h->pdev->dev,
369 "%s: unknown unit attention detected\n",
370 h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800371 break;
372 }
373 return 1;
374}
375
Matt Bondurant852af202012-05-01 11:42:35 -0500376static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
377{
378 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
379 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
380 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
381 return 0;
382 dev_warn(&h->pdev->dev, HPSA "device busy");
383 return 1;
384}
385
Stephen Camerone985c582015-04-23 09:32:22 -0500386static u32 lockup_detected(struct ctlr_info *h);
387static ssize_t host_show_lockup_detected(struct device *dev,
388 struct device_attribute *attr, char *buf)
389{
390 int ld;
391 struct ctlr_info *h;
392 struct Scsi_Host *shost = class_to_shost(dev);
393
394 h = shost_to_hba(shost);
395 ld = lockup_detected(h);
396
397 return sprintf(buf, "ld=%d\n", ld);
398}
399
Scott Teelda0697b2014-02-18 13:57:00 -0600400static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
401 struct device_attribute *attr,
402 const char *buf, size_t count)
403{
404 int status, len;
405 struct ctlr_info *h;
406 struct Scsi_Host *shost = class_to_shost(dev);
407 char tmpbuf[10];
408
409 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
410 return -EACCES;
411 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
412 strncpy(tmpbuf, buf, len);
413 tmpbuf[len] = '\0';
414 if (sscanf(tmpbuf, "%d", &status) != 1)
415 return -EINVAL;
416 h = shost_to_hba(shost);
417 h->acciopath_status = !!status;
418 dev_warn(&h->pdev->dev,
419 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
420 h->acciopath_status ? "enabled" : "disabled");
421 return count;
422}
423
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600424static ssize_t host_store_raid_offload_debug(struct device *dev,
425 struct device_attribute *attr,
426 const char *buf, size_t count)
427{
428 int debug_level, len;
429 struct ctlr_info *h;
430 struct Scsi_Host *shost = class_to_shost(dev);
431 char tmpbuf[10];
432
433 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
434 return -EACCES;
435 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
436 strncpy(tmpbuf, buf, len);
437 tmpbuf[len] = '\0';
438 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
439 return -EINVAL;
440 if (debug_level < 0)
441 debug_level = 0;
442 h = shost_to_hba(shost);
443 h->raid_offload_debug = debug_level;
444 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
445 h->raid_offload_debug);
446 return count;
447}
448
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800449static ssize_t host_store_rescan(struct device *dev,
450 struct device_attribute *attr,
451 const char *buf, size_t count)
452{
453 struct ctlr_info *h;
454 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600455 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600456 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800457 return count;
458}
459
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500460static ssize_t host_show_firmware_revision(struct device *dev,
461 struct device_attribute *attr, char *buf)
462{
463 struct ctlr_info *h;
464 struct Scsi_Host *shost = class_to_shost(dev);
465 unsigned char *fwrev;
466
467 h = shost_to_hba(shost);
468 if (!h->hba_inquiry_data)
469 return 0;
470 fwrev = &h->hba_inquiry_data[32];
471 return snprintf(buf, 20, "%c%c%c%c\n",
472 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
473}
474
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600475static ssize_t host_show_commands_outstanding(struct device *dev,
476 struct device_attribute *attr, char *buf)
477{
478 struct Scsi_Host *shost = class_to_shost(dev);
479 struct ctlr_info *h = shost_to_hba(shost);
480
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600481 return snprintf(buf, 20, "%d\n",
482 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600483}
484
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600485static ssize_t host_show_transport_mode(struct device *dev,
486 struct device_attribute *attr, char *buf)
487{
488 struct ctlr_info *h;
489 struct Scsi_Host *shost = class_to_shost(dev);
490
491 h = shost_to_hba(shost);
492 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600493 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600494 "performant" : "simple");
495}
496
Scott Teelda0697b2014-02-18 13:57:00 -0600497static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
498 struct device_attribute *attr, char *buf)
499{
500 struct ctlr_info *h;
501 struct Scsi_Host *shost = class_to_shost(dev);
502
503 h = shost_to_hba(shost);
504 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
505 (h->acciopath_status == 1) ? "enabled" : "disabled");
506}
507
Stephen M. Cameron46380782011-05-03 15:00:01 -0500508/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600509static u32 unresettable_controller[] = {
510 0x324a103C, /* Smart Array P712m */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500511 0x324b103C, /* Smart Array P711m */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600512 0x3223103C, /* Smart Array P800 */
513 0x3234103C, /* Smart Array P400 */
514 0x3235103C, /* Smart Array P400i */
515 0x3211103C, /* Smart Array E200i */
516 0x3212103C, /* Smart Array E200 */
517 0x3213103C, /* Smart Array E200i */
518 0x3214103C, /* Smart Array E200i */
519 0x3215103C, /* Smart Array E200i */
520 0x3237103C, /* Smart Array E500 */
521 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100522 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600523 0x409C0E11, /* Smart Array 6400 */
524 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100525 0x40700E11, /* Smart Array 5300 */
526 0x40820E11, /* Smart Array 532 */
527 0x40830E11, /* Smart Array 5312 */
528 0x409A0E11, /* Smart Array 641 */
529 0x409B0E11, /* Smart Array 642 */
530 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600531};
532
Stephen M. Cameron46380782011-05-03 15:00:01 -0500533/* List of controllers which cannot even be soft reset */
534static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100535 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100536 0x40700E11, /* Smart Array 5300 */
537 0x40820E11, /* Smart Array 532 */
538 0x40830E11, /* Smart Array 5312 */
539 0x409A0E11, /* Smart Array 641 */
540 0x409B0E11, /* Smart Array 642 */
541 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500542 /* Exclude 640x boards. These are two pci devices in one slot
543 * which share a battery backed cache module. One controls the
544 * cache, the other accesses the cache through the one that controls
545 * it. If we reset the one controlling the cache, the other will
546 * likely not be happy. Just forbid resetting this conjoined mess.
547 * The 640x isn't really supported by hpsa anyway.
548 */
549 0x409C0E11, /* Smart Array 6400 */
550 0x409D0E11, /* Smart Array 6400 EM */
551};
552
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500553static u32 needs_abort_tags_swizzled[] = {
554 0x323D103C, /* Smart Array P700m */
555 0x324a103C, /* Smart Array P712m */
556 0x324b103C, /* SmartArray P711m */
557};
558
559static int board_id_in_array(u32 a[], int nelems, u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600560{
561 int i;
562
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500563 for (i = 0; i < nelems; i++)
564 if (a[i] == board_id)
565 return 1;
566 return 0;
567}
568
569static int ctlr_is_hard_resettable(u32 board_id)
570{
571 return !board_id_in_array(unresettable_controller,
572 ARRAY_SIZE(unresettable_controller), board_id);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600573}
574
Stephen M. Cameron46380782011-05-03 15:00:01 -0500575static int ctlr_is_soft_resettable(u32 board_id)
576{
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500577 return !board_id_in_array(soft_unresettable_controller,
578 ARRAY_SIZE(soft_unresettable_controller), board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500579}
580
581static int ctlr_is_resettable(u32 board_id)
582{
583 return ctlr_is_hard_resettable(board_id) ||
584 ctlr_is_soft_resettable(board_id);
585}
586
Stephen Cameron9b5c48c2015-04-23 09:32:06 -0500587static int ctlr_needs_abort_tags_swizzled(u32 board_id)
588{
589 return board_id_in_array(needs_abort_tags_swizzled,
590 ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
591}
592
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600593static ssize_t host_show_resettable(struct device *dev,
594 struct device_attribute *attr, char *buf)
595{
596 struct ctlr_info *h;
597 struct Scsi_Host *shost = class_to_shost(dev);
598
599 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500600 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600601}
602
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800603static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
604{
605 return (scsi3addr[3] & 0xC0) == 0x40;
606}
607
Robert Elliottf2ef0ce2015-01-23 16:41:35 -0600608static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
609 "1(+0)ADM", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800610};
Scott Teel6b80b182014-02-18 13:56:55 -0600611#define HPSA_RAID_0 0
612#define HPSA_RAID_4 1
613#define HPSA_RAID_1 2 /* also used for RAID 10 */
614#define HPSA_RAID_5 3 /* also used for RAID 50 */
615#define HPSA_RAID_51 4
616#define HPSA_RAID_6 5 /* also used for RAID 60 */
617#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800618#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
619
620static ssize_t raid_level_show(struct device *dev,
621 struct device_attribute *attr, char *buf)
622{
623 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600624 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800625 struct ctlr_info *h;
626 struct scsi_device *sdev;
627 struct hpsa_scsi_dev_t *hdev;
628 unsigned long flags;
629
630 sdev = to_scsi_device(dev);
631 h = sdev_to_hba(sdev);
632 spin_lock_irqsave(&h->lock, flags);
633 hdev = sdev->hostdata;
634 if (!hdev) {
635 spin_unlock_irqrestore(&h->lock, flags);
636 return -ENODEV;
637 }
638
639 /* Is this even a logical drive? */
640 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
641 spin_unlock_irqrestore(&h->lock, flags);
642 l = snprintf(buf, PAGE_SIZE, "N/A\n");
643 return l;
644 }
645
646 rlevel = hdev->raid_level;
647 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600648 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800649 rlevel = RAID_UNKNOWN;
650 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
651 return l;
652}
653
654static ssize_t lunid_show(struct device *dev,
655 struct device_attribute *attr, char *buf)
656{
657 struct ctlr_info *h;
658 struct scsi_device *sdev;
659 struct hpsa_scsi_dev_t *hdev;
660 unsigned long flags;
661 unsigned char lunid[8];
662
663 sdev = to_scsi_device(dev);
664 h = sdev_to_hba(sdev);
665 spin_lock_irqsave(&h->lock, flags);
666 hdev = sdev->hostdata;
667 if (!hdev) {
668 spin_unlock_irqrestore(&h->lock, flags);
669 return -ENODEV;
670 }
671 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
672 spin_unlock_irqrestore(&h->lock, flags);
673 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
674 lunid[0], lunid[1], lunid[2], lunid[3],
675 lunid[4], lunid[5], lunid[6], lunid[7]);
676}
677
678static ssize_t unique_id_show(struct device *dev,
679 struct device_attribute *attr, char *buf)
680{
681 struct ctlr_info *h;
682 struct scsi_device *sdev;
683 struct hpsa_scsi_dev_t *hdev;
684 unsigned long flags;
685 unsigned char sn[16];
686
687 sdev = to_scsi_device(dev);
688 h = sdev_to_hba(sdev);
689 spin_lock_irqsave(&h->lock, flags);
690 hdev = sdev->hostdata;
691 if (!hdev) {
692 spin_unlock_irqrestore(&h->lock, flags);
693 return -ENODEV;
694 }
695 memcpy(sn, hdev->device_id, sizeof(sn));
696 spin_unlock_irqrestore(&h->lock, flags);
697 return snprintf(buf, 16 * 2 + 2,
698 "%02X%02X%02X%02X%02X%02X%02X%02X"
699 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
700 sn[0], sn[1], sn[2], sn[3],
701 sn[4], sn[5], sn[6], sn[7],
702 sn[8], sn[9], sn[10], sn[11],
703 sn[12], sn[13], sn[14], sn[15]);
704}
705
Scott Teelc1988682014-02-18 13:55:54 -0600706static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
707 struct device_attribute *attr, char *buf)
708{
709 struct ctlr_info *h;
710 struct scsi_device *sdev;
711 struct hpsa_scsi_dev_t *hdev;
712 unsigned long flags;
713 int offload_enabled;
714
715 sdev = to_scsi_device(dev);
716 h = sdev_to_hba(sdev);
717 spin_lock_irqsave(&h->lock, flags);
718 hdev = sdev->hostdata;
719 if (!hdev) {
720 spin_unlock_irqrestore(&h->lock, flags);
721 return -ENODEV;
722 }
723 offload_enabled = hdev->offload_enabled;
724 spin_unlock_irqrestore(&h->lock, flags);
725 return snprintf(buf, 20, "%d\n", offload_enabled);
726}
727
Joe Handzik8270b862015-07-18 11:12:43 -0500728#define MAX_PATHS 8
729#define PATH_STRING_LEN 50
730
731static ssize_t path_info_show(struct device *dev,
732 struct device_attribute *attr, char *buf)
733{
734 struct ctlr_info *h;
735 struct scsi_device *sdev;
736 struct hpsa_scsi_dev_t *hdev;
737 unsigned long flags;
738 int i;
739 int output_len = 0;
740 u8 box;
741 u8 bay;
742 u8 path_map_index = 0;
743 char *active;
744 unsigned char phys_connector[2];
745 unsigned char path[MAX_PATHS][PATH_STRING_LEN];
746
747 memset(path, 0, MAX_PATHS * PATH_STRING_LEN);
748 sdev = to_scsi_device(dev);
749 h = sdev_to_hba(sdev);
750 spin_lock_irqsave(&h->devlock, flags);
751 hdev = sdev->hostdata;
752 if (!hdev) {
753 spin_unlock_irqrestore(&h->devlock, flags);
754 return -ENODEV;
755 }
756
757 bay = hdev->bay;
758 for (i = 0; i < MAX_PATHS; i++) {
759 path_map_index = 1<<i;
760 if (i == hdev->active_path_index)
761 active = "Active";
762 else if (hdev->path_map & path_map_index)
763 active = "Inactive";
764 else
765 continue;
766
767 output_len = snprintf(path[i],
768 PATH_STRING_LEN, "[%d:%d:%d:%d] %20.20s ",
769 h->scsi_host->host_no,
770 hdev->bus, hdev->target, hdev->lun,
771 scsi_device_type(hdev->devtype));
772
773 if (is_ext_target(h, hdev) ||
774 (hdev->devtype == TYPE_RAID) ||
775 is_logical_dev_addr_mode(hdev->scsi3addr)) {
776 output_len += snprintf(path[i] + output_len,
777 PATH_STRING_LEN, "%s\n",
778 active);
779 continue;
780 }
781
782 box = hdev->box[i];
783 memcpy(&phys_connector, &hdev->phys_connector[i],
784 sizeof(phys_connector));
785 if (phys_connector[0] < '0')
786 phys_connector[0] = '0';
787 if (phys_connector[1] < '0')
788 phys_connector[1] = '0';
789 if (hdev->phys_connector[i] > 0)
790 output_len += snprintf(path[i] + output_len,
791 PATH_STRING_LEN,
792 "PORT: %.2s ",
793 phys_connector);
794 if (hdev->devtype == TYPE_DISK && h->hba_mode_enabled) {
795 if (box == 0 || box == 0xFF) {
796 output_len += snprintf(path[i] + output_len,
797 PATH_STRING_LEN,
798 "BAY: %hhu %s\n",
799 bay, active);
800 } else {
801 output_len += snprintf(path[i] + output_len,
802 PATH_STRING_LEN,
803 "BOX: %hhu BAY: %hhu %s\n",
804 box, bay, active);
805 }
806 } else if (box != 0 && box != 0xFF) {
807 output_len += snprintf(path[i] + output_len,
808 PATH_STRING_LEN, "BOX: %hhu %s\n",
809 box, active);
810 } else
811 output_len += snprintf(path[i] + output_len,
812 PATH_STRING_LEN, "%s\n", active);
813 }
814
815 spin_unlock_irqrestore(&h->devlock, flags);
816 return snprintf(buf, output_len+1, "%s%s%s%s%s%s%s%s",
817 path[0], path[1], path[2], path[3],
818 path[4], path[5], path[6], path[7]);
819}
820
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600821static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
822static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
823static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
824static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600825static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
826 host_show_hp_ssd_smart_path_enabled, NULL);
Joe Handzik8270b862015-07-18 11:12:43 -0500827static DEVICE_ATTR(path_info, S_IRUGO, path_info_show, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600828static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
829 host_show_hp_ssd_smart_path_status,
830 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600831static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
832 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600833static DEVICE_ATTR(firmware_revision, S_IRUGO,
834 host_show_firmware_revision, NULL);
835static DEVICE_ATTR(commands_outstanding, S_IRUGO,
836 host_show_commands_outstanding, NULL);
837static DEVICE_ATTR(transport_mode, S_IRUGO,
838 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600839static DEVICE_ATTR(resettable, S_IRUGO,
840 host_show_resettable, NULL);
Stephen Camerone985c582015-04-23 09:32:22 -0500841static DEVICE_ATTR(lockup_detected, S_IRUGO,
842 host_show_lockup_detected, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600843
844static struct device_attribute *hpsa_sdev_attrs[] = {
845 &dev_attr_raid_level,
846 &dev_attr_lunid,
847 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600848 &dev_attr_hp_ssd_smart_path_enabled,
Joe Handzik8270b862015-07-18 11:12:43 -0500849 &dev_attr_path_info,
Stephen Camerone985c582015-04-23 09:32:22 -0500850 &dev_attr_lockup_detected,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600851 NULL,
852};
853
854static struct device_attribute *hpsa_shost_attrs[] = {
855 &dev_attr_rescan,
856 &dev_attr_firmware_revision,
857 &dev_attr_commands_outstanding,
858 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600859 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600860 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600861 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600862 NULL,
863};
864
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500865#define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \
866 HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
867
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600868static struct scsi_host_template hpsa_driver_template = {
869 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600870 .name = HPSA,
871 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600872 .queuecommand = hpsa_scsi_queue_command,
873 .scan_start = hpsa_scan_start,
874 .scan_finished = hpsa_scan_finished,
Don Brace7c0a0222015-01-23 16:41:30 -0600875 .change_queue_depth = hpsa_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600876 .this_id = -1,
877 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500878 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600879 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
880 .ioctl = hpsa_ioctl,
881 .slave_alloc = hpsa_slave_alloc,
Stephen Cameron41ce4c32015-04-23 09:31:47 -0500882 .slave_configure = hpsa_slave_configure,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600883 .slave_destroy = hpsa_slave_destroy,
884#ifdef CONFIG_COMPAT
885 .compat_ioctl = hpsa_compat_ioctl,
886#endif
887 .sdev_attrs = hpsa_sdev_attrs,
888 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500889 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400890 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600891};
892
Matt Gates254f7962012-05-01 11:43:06 -0500893static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600894{
895 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500896 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600897
Matt Gatese1f7de02014-02-18 13:55:17 -0600898 if (h->transMethod & CFGTBL_Trans_io_accel1)
899 return h->access.command_completed(h, q);
900
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600901 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500902 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600903
Matt Gates254f7962012-05-01 11:43:06 -0500904 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
905 a = rq->head[rq->current_entry];
906 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600907 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600908 } else {
909 a = FIFO_EMPTY;
910 }
911 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500912 if (rq->current_entry == h->max_commands) {
913 rq->current_entry = 0;
914 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600915 }
916 return a;
917}
918
Scott Teelc3497752014-02-18 13:56:34 -0600919/*
920 * There are some special bits in the bus address of the
921 * command that we have to set for the controller to know
922 * how to process the command:
923 *
924 * Normal performant mode:
925 * bit 0: 1 means performant mode, 0 means simple mode.
926 * bits 1-3 = block fetch table entry
927 * bits 4-6 = command type (== 0)
928 *
929 * ioaccel1 mode:
930 * bit 0 = "performant mode" bit.
931 * bits 1-3 = block fetch table entry
932 * bits 4-6 = command type (== 110)
933 * (command type is needed because ioaccel1 mode
934 * commands are submitted through the same register as normal
935 * mode commands, so this is how the controller knows whether
936 * the command is normal mode or ioaccel1 mode.)
937 *
938 * ioaccel2 mode:
939 * bit 0 = "performant mode" bit.
940 * bits 1-4 = block fetch table entry (note extra bit)
941 * bits 4-6 = not needed, because ioaccel2 mode has
942 * a separate special register for submitting commands.
943 */
944
Webb Scales25163bd2015-04-23 09:32:00 -0500945/*
946 * set_performant_mode: Modify the tag for cciss performant
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600947 * set bit 0 for pull model, bits 3-1 for block fetch
948 * register number
949 */
Webb Scales25163bd2015-04-23 09:32:00 -0500950#define DEFAULT_REPLY_QUEUE (-1)
951static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
952 int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600953{
Matt Gates254f7962012-05-01 11:43:06 -0500954 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600955 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Webb Scales25163bd2015-04-23 09:32:00 -0500956 if (unlikely(!h->msix_vector))
957 return;
958 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
Matt Gates254f7962012-05-01 11:43:06 -0500959 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200960 raw_smp_processor_id() % h->nreply_queues;
Webb Scales25163bd2015-04-23 09:32:00 -0500961 else
962 c->Header.ReplyQueue = reply_queue % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500963 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600964}
965
Scott Teelc3497752014-02-18 13:56:34 -0600966static void set_ioaccel1_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -0500967 struct CommandList *c,
968 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -0600969{
970 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
971
Webb Scales25163bd2015-04-23 09:32:00 -0500972 /*
973 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -0600974 * processor. This seems to give the best I/O throughput.
975 */
Webb Scales25163bd2015-04-23 09:32:00 -0500976 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
977 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
978 else
979 cp->ReplyQueue = reply_queue % h->nreply_queues;
980 /*
981 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -0600982 * - performant mode bit (bit 0)
983 * - pull count (bits 1-3)
984 * - command type (bits 4-6)
985 */
986 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
987 IOACCEL1_BUSADDR_CMDTYPE;
988}
989
Stephen Cameron8be986c2015-04-23 09:34:06 -0500990static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
991 struct CommandList *c,
992 int reply_queue)
993{
994 struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
995 &h->ioaccel2_cmd_pool[c->cmdindex];
996
997 /* Tell the controller to post the reply to the queue for this
998 * processor. This seems to give the best I/O throughput.
999 */
1000 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1001 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1002 else
1003 cp->reply_queue = reply_queue % h->nreply_queues;
1004 /* Set the bits in the address sent down to include:
1005 * - performant mode bit not used in ioaccel mode 2
1006 * - pull count (bits 0-3)
1007 * - command type isn't needed for ioaccel2
1008 */
1009 c->busaddr |= h->ioaccel2_blockFetchTable[0];
1010}
1011
Scott Teelc3497752014-02-18 13:56:34 -06001012static void set_ioaccel2_performant_mode(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05001013 struct CommandList *c,
1014 int reply_queue)
Scott Teelc3497752014-02-18 13:56:34 -06001015{
1016 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
1017
Webb Scales25163bd2015-04-23 09:32:00 -05001018 /*
1019 * Tell the controller to post the reply to the queue for this
Scott Teelc3497752014-02-18 13:56:34 -06001020 * processor. This seems to give the best I/O throughput.
1021 */
Webb Scales25163bd2015-04-23 09:32:00 -05001022 if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1023 cp->reply_queue = smp_processor_id() % h->nreply_queues;
1024 else
1025 cp->reply_queue = reply_queue % h->nreply_queues;
1026 /*
1027 * Set the bits in the address sent down to include:
Scott Teelc3497752014-02-18 13:56:34 -06001028 * - performant mode bit not used in ioaccel mode 2
1029 * - pull count (bits 0-3)
1030 * - command type isn't needed for ioaccel2
1031 */
1032 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
1033}
1034
Stephen M. Camerone85c5972012-05-01 11:43:42 -05001035static int is_firmware_flash_cmd(u8 *cdb)
1036{
1037 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
1038}
1039
1040/*
1041 * During firmware flash, the heartbeat register may not update as frequently
1042 * as it should. So we dial down lockup detection during firmware flash. and
1043 * dial it back up when firmware flash completes.
1044 */
1045#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
1046#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
1047static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
1048 struct CommandList *c)
1049{
1050 if (!is_firmware_flash_cmd(c->Request.CDB))
1051 return;
1052 atomic_inc(&h->firmware_flash_in_progress);
1053 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
1054}
1055
1056static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
1057 struct CommandList *c)
1058{
1059 if (is_firmware_flash_cmd(c->Request.CDB) &&
1060 atomic_dec_and_test(&h->firmware_flash_in_progress))
1061 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
1062}
1063
Webb Scales25163bd2015-04-23 09:32:00 -05001064static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
1065 struct CommandList *c, int reply_queue)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001066{
Stephen Cameronc05e8862015-01-23 16:44:40 -06001067 dial_down_lockup_detection_during_fw_flash(h, c);
1068 atomic_inc(&h->commands_outstanding);
Scott Teelc3497752014-02-18 13:56:34 -06001069 switch (c->cmd_type) {
1070 case CMD_IOACCEL1:
Webb Scales25163bd2015-04-23 09:32:00 -05001071 set_ioaccel1_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001072 writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
Scott Teelc3497752014-02-18 13:56:34 -06001073 break;
1074 case CMD_IOACCEL2:
Webb Scales25163bd2015-04-23 09:32:00 -05001075 set_ioaccel2_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001076 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
Scott Teelc3497752014-02-18 13:56:34 -06001077 break;
Stephen Cameron8be986c2015-04-23 09:34:06 -05001078 case IOACCEL2_TMF:
1079 set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
1080 writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
1081 break;
Scott Teelc3497752014-02-18 13:56:34 -06001082 default:
Webb Scales25163bd2015-04-23 09:32:00 -05001083 set_performant_mode(h, c, reply_queue);
Stephen Cameronc05e8862015-01-23 16:44:40 -06001084 h->access.submit_command(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06001085 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001086}
1087
Webb Scalesa58e7e52015-04-23 09:34:16 -05001088static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c)
Webb Scales25163bd2015-04-23 09:32:00 -05001089{
Webb Scalesd604f532015-04-23 09:35:22 -05001090 if (unlikely(hpsa_is_pending_event(c)))
Webb Scalesa58e7e52015-04-23 09:34:16 -05001091 return finish_cmd(c);
1092
Webb Scales25163bd2015-04-23 09:32:00 -05001093 __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
1094}
1095
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -06001096static inline int is_hba_lunid(unsigned char scsi3addr[])
1097{
1098 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
1099}
1100
1101static inline int is_scsi_rev_5(struct ctlr_info *h)
1102{
1103 if (!h->hba_inquiry_data)
1104 return 0;
1105 if ((h->hba_inquiry_data[2] & 0x07) == 5)
1106 return 1;
1107 return 0;
1108}
1109
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001110static int hpsa_find_target_lun(struct ctlr_info *h,
1111 unsigned char scsi3addr[], int bus, int *target, int *lun)
1112{
1113 /* finds an unused bus, target, lun for a new physical device
1114 * assumes h->devlock is held
1115 */
1116 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -05001117 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001118
Akinobu Mita263d9402012-01-21 00:15:27 +09001119 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001120
1121 for (i = 0; i < h->ndevices; i++) {
1122 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +09001123 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001124 }
1125
Akinobu Mita263d9402012-01-21 00:15:27 +09001126 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
1127 if (i < HPSA_MAX_DEVICES) {
1128 /* *bus = 1; */
1129 *target = i;
1130 *lun = 0;
1131 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001132 }
1133 return !found;
1134}
1135
Webb Scales0d96ef52015-04-23 09:31:55 -05001136static inline void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
1137 struct hpsa_scsi_dev_t *dev, char *description)
1138{
1139 dev_printk(level, &h->pdev->dev,
1140 "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
1141 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
1142 description,
1143 scsi_device_type(dev->devtype),
1144 dev->vendor,
1145 dev->model,
1146 dev->raid_level > RAID_UNKNOWN ?
1147 "RAID-?" : raid_label[dev->raid_level],
1148 dev->offload_config ? '+' : '-',
1149 dev->offload_enabled ? '+' : '-',
1150 dev->expose_state);
1151}
1152
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001153/* Add an entry into h->dev[] array. */
1154static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
1155 struct hpsa_scsi_dev_t *device,
1156 struct hpsa_scsi_dev_t *added[], int *nadded)
1157{
1158 /* assumes h->devlock is held */
1159 int n = h->ndevices;
1160 int i;
1161 unsigned char addr1[8], addr2[8];
1162 struct hpsa_scsi_dev_t *sd;
1163
Scott Teelcfe5bad2011-10-26 16:21:07 -05001164 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001165 dev_err(&h->pdev->dev, "too many devices, some will be "
1166 "inaccessible.\n");
1167 return -1;
1168 }
1169
1170 /* physical devices do not have lun or target assigned until now. */
1171 if (device->lun != -1)
1172 /* Logical device, lun is already assigned. */
1173 goto lun_assigned;
1174
1175 /* If this device a non-zero lun of a multi-lun device
1176 * byte 4 of the 8-byte LUN addr will contain the logical
Don Brace2b08b3e2015-01-23 16:41:09 -06001177 * unit no, zero otherwise.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001178 */
1179 if (device->scsi3addr[4] == 0) {
1180 /* This is not a non-zero lun of a multi-lun device */
1181 if (hpsa_find_target_lun(h, device->scsi3addr,
1182 device->bus, &device->target, &device->lun) != 0)
1183 return -1;
1184 goto lun_assigned;
1185 }
1186
1187 /* This is a non-zero lun of a multi-lun device.
1188 * Search through our list and find the device which
1189 * has the same 8 byte LUN address, excepting byte 4.
1190 * Assign the same bus and target for this new LUN.
1191 * Use the logical unit number from the firmware.
1192 */
1193 memcpy(addr1, device->scsi3addr, 8);
1194 addr1[4] = 0;
1195 for (i = 0; i < n; i++) {
1196 sd = h->dev[i];
1197 memcpy(addr2, sd->scsi3addr, 8);
1198 addr2[4] = 0;
1199 /* differ only in byte 4? */
1200 if (memcmp(addr1, addr2, 8) == 0) {
1201 device->bus = sd->bus;
1202 device->target = sd->target;
1203 device->lun = device->scsi3addr[4];
1204 break;
1205 }
1206 }
1207 if (device->lun == -1) {
1208 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1209 " suspect firmware bug or unsupported hardware "
1210 "configuration.\n");
1211 return -1;
1212 }
1213
1214lun_assigned:
1215
1216 h->dev[n] = device;
1217 h->ndevices++;
1218 added[*nadded] = device;
1219 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001220 hpsa_show_dev_msg(KERN_INFO, h, device,
1221 device->expose_state & HPSA_SCSI_ADD ? "added" : "masked");
Robert Elliotta473d862015-04-23 09:32:54 -05001222 device->offload_to_be_enabled = device->offload_enabled;
1223 device->offload_enabled = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001224 return 0;
1225}
1226
Scott Teelbd9244f2012-01-19 14:01:30 -06001227/* Update an entry in h->dev[] array. */
1228static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
1229 int entry, struct hpsa_scsi_dev_t *new_entry)
1230{
Robert Elliotta473d862015-04-23 09:32:54 -05001231 int offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001232 /* assumes h->devlock is held */
1233 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1234
1235 /* Raid level changed. */
1236 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001237
Don Brace03383732015-01-23 16:43:30 -06001238 /* Raid offload parameters changed. Careful about the ordering. */
1239 if (new_entry->offload_config && new_entry->offload_enabled) {
1240 /*
1241 * if drive is newly offload_enabled, we want to copy the
1242 * raid map data first. If previously offload_enabled and
1243 * offload_config were set, raid map data had better be
1244 * the same as it was before. if raid map data is changed
1245 * then it had better be the case that
1246 * h->dev[entry]->offload_enabled is currently 0.
1247 */
1248 h->dev[entry]->raid_map = new_entry->raid_map;
1249 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
Don Brace03383732015-01-23 16:43:30 -06001250 }
Joe Handzika3144e02015-04-23 09:32:59 -05001251 if (new_entry->hba_ioaccel_enabled) {
1252 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1253 wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1254 }
1255 h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001256 h->dev[entry]->offload_config = new_entry->offload_config;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -06001257 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
Don Brace03383732015-01-23 16:43:30 -06001258 h->dev[entry]->queue_depth = new_entry->queue_depth;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001259
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001260 /*
1261 * We can turn off ioaccel offload now, but need to delay turning
1262 * it on until we can update h->dev[entry]->phys_disk[], but we
1263 * can't do that until all the devices are updated.
1264 */
1265 h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
1266 if (!new_entry->offload_enabled)
1267 h->dev[entry]->offload_enabled = 0;
1268
Robert Elliotta473d862015-04-23 09:32:54 -05001269 offload_enabled = h->dev[entry]->offload_enabled;
1270 h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
Webb Scales0d96ef52015-04-23 09:31:55 -05001271 hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
Robert Elliotta473d862015-04-23 09:32:54 -05001272 h->dev[entry]->offload_enabled = offload_enabled;
Scott Teelbd9244f2012-01-19 14:01:30 -06001273}
1274
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001275/* Replace an entry from h->dev[] array. */
1276static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
1277 int entry, struct hpsa_scsi_dev_t *new_entry,
1278 struct hpsa_scsi_dev_t *added[], int *nadded,
1279 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1280{
1281 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001282 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001283 removed[*nremoved] = h->dev[entry];
1284 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001285
1286 /*
1287 * New physical devices won't have target/lun assigned yet
1288 * so we need to preserve the values in the slot we are replacing.
1289 */
1290 if (new_entry->target == -1) {
1291 new_entry->target = h->dev[entry]->target;
1292 new_entry->lun = h->dev[entry]->lun;
1293 }
1294
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001295 h->dev[entry] = new_entry;
1296 added[*nadded] = new_entry;
1297 (*nadded)++;
Webb Scales0d96ef52015-04-23 09:31:55 -05001298 hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
Robert Elliotta473d862015-04-23 09:32:54 -05001299 new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1300 new_entry->offload_enabled = 0;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001301}
1302
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001303/* Remove an entry from h->dev[] array. */
1304static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1305 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1306{
1307 /* assumes h->devlock is held */
1308 int i;
1309 struct hpsa_scsi_dev_t *sd;
1310
Scott Teelcfe5bad2011-10-26 16:21:07 -05001311 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001312
1313 sd = h->dev[entry];
1314 removed[*nremoved] = h->dev[entry];
1315 (*nremoved)++;
1316
1317 for (i = entry; i < h->ndevices-1; i++)
1318 h->dev[i] = h->dev[i+1];
1319 h->ndevices--;
Webb Scales0d96ef52015-04-23 09:31:55 -05001320 hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001321}
1322
1323#define SCSI3ADDR_EQ(a, b) ( \
1324 (a)[7] == (b)[7] && \
1325 (a)[6] == (b)[6] && \
1326 (a)[5] == (b)[5] && \
1327 (a)[4] == (b)[4] && \
1328 (a)[3] == (b)[3] && \
1329 (a)[2] == (b)[2] && \
1330 (a)[1] == (b)[1] && \
1331 (a)[0] == (b)[0])
1332
1333static void fixup_botched_add(struct ctlr_info *h,
1334 struct hpsa_scsi_dev_t *added)
1335{
1336 /* called when scsi_add_device fails in order to re-adjust
1337 * h->dev[] to match the mid layer's view.
1338 */
1339 unsigned long flags;
1340 int i, j;
1341
1342 spin_lock_irqsave(&h->lock, flags);
1343 for (i = 0; i < h->ndevices; i++) {
1344 if (h->dev[i] == added) {
1345 for (j = i; j < h->ndevices-1; j++)
1346 h->dev[j] = h->dev[j+1];
1347 h->ndevices--;
1348 break;
1349 }
1350 }
1351 spin_unlock_irqrestore(&h->lock, flags);
1352 kfree(added);
1353}
1354
1355static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1356 struct hpsa_scsi_dev_t *dev2)
1357{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001358 /* we compare everything except lun and target as these
1359 * are not yet assigned. Compare parts likely
1360 * to differ first
1361 */
1362 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1363 sizeof(dev1->scsi3addr)) != 0)
1364 return 0;
1365 if (memcmp(dev1->device_id, dev2->device_id,
1366 sizeof(dev1->device_id)) != 0)
1367 return 0;
1368 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1369 return 0;
1370 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1371 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001372 if (dev1->devtype != dev2->devtype)
1373 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001374 if (dev1->bus != dev2->bus)
1375 return 0;
1376 return 1;
1377}
1378
Scott Teelbd9244f2012-01-19 14:01:30 -06001379static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1380 struct hpsa_scsi_dev_t *dev2)
1381{
1382 /* Device attributes that can change, but don't mean
1383 * that the device is a different device, nor that the OS
1384 * needs to be told anything about the change.
1385 */
1386 if (dev1->raid_level != dev2->raid_level)
1387 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001388 if (dev1->offload_config != dev2->offload_config)
1389 return 1;
1390 if (dev1->offload_enabled != dev2->offload_enabled)
1391 return 1;
Don Brace93849502015-07-18 11:12:49 -05001392 if (!is_logical_dev_addr_mode(dev1->scsi3addr))
1393 if (dev1->queue_depth != dev2->queue_depth)
1394 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001395 return 0;
1396}
1397
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001398/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1399 * and return needle location in *index. If scsi3addr matches, but not
1400 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001401 * location in *index.
1402 * In the case of a minor device attribute change, such as RAID level, just
1403 * return DEVICE_UPDATED, along with the updated device's location in index.
1404 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001405 */
1406static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1407 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1408 int *index)
1409{
1410 int i;
1411#define DEVICE_NOT_FOUND 0
1412#define DEVICE_CHANGED 1
1413#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001414#define DEVICE_UPDATED 3
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001415 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001416 if (haystack[i] == NULL) /* previously removed. */
1417 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001418 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1419 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001420 if (device_is_the_same(needle, haystack[i])) {
1421 if (device_updated(needle, haystack[i]))
1422 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001423 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001424 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001425 /* Keep offline devices offline */
1426 if (needle->volume_offline)
1427 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001428 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001429 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001430 }
1431 }
1432 *index = -1;
1433 return DEVICE_NOT_FOUND;
1434}
1435
Stephen M. Cameron98465902014-02-21 16:25:00 -06001436static void hpsa_monitor_offline_device(struct ctlr_info *h,
1437 unsigned char scsi3addr[])
1438{
1439 struct offline_device_entry *device;
1440 unsigned long flags;
1441
1442 /* Check to see if device is already on the list */
1443 spin_lock_irqsave(&h->offline_device_lock, flags);
1444 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1445 if (memcmp(device->scsi3addr, scsi3addr,
1446 sizeof(device->scsi3addr)) == 0) {
1447 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1448 return;
1449 }
1450 }
1451 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1452
1453 /* Device is not on the list, add it. */
1454 device = kmalloc(sizeof(*device), GFP_KERNEL);
1455 if (!device) {
1456 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1457 return;
1458 }
1459 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1460 spin_lock_irqsave(&h->offline_device_lock, flags);
1461 list_add_tail(&device->offline_list, &h->offline_device_list);
1462 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1463}
1464
1465/* Print a message explaining various offline volume states */
1466static void hpsa_show_volume_status(struct ctlr_info *h,
1467 struct hpsa_scsi_dev_t *sd)
1468{
1469 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1470 dev_info(&h->pdev->dev,
1471 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1472 h->scsi_host->host_no,
1473 sd->bus, sd->target, sd->lun);
1474 switch (sd->volume_offline) {
1475 case HPSA_LV_OK:
1476 break;
1477 case HPSA_LV_UNDERGOING_ERASE:
1478 dev_info(&h->pdev->dev,
1479 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1480 h->scsi_host->host_no,
1481 sd->bus, sd->target, sd->lun);
1482 break;
1483 case HPSA_LV_UNDERGOING_RPI:
1484 dev_info(&h->pdev->dev,
1485 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
1486 h->scsi_host->host_no,
1487 sd->bus, sd->target, sd->lun);
1488 break;
1489 case HPSA_LV_PENDING_RPI:
1490 dev_info(&h->pdev->dev,
1491 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1492 h->scsi_host->host_no,
1493 sd->bus, sd->target, sd->lun);
1494 break;
1495 case HPSA_LV_ENCRYPTED_NO_KEY:
1496 dev_info(&h->pdev->dev,
1497 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1498 h->scsi_host->host_no,
1499 sd->bus, sd->target, sd->lun);
1500 break;
1501 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1502 dev_info(&h->pdev->dev,
1503 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1504 h->scsi_host->host_no,
1505 sd->bus, sd->target, sd->lun);
1506 break;
1507 case HPSA_LV_UNDERGOING_ENCRYPTION:
1508 dev_info(&h->pdev->dev,
1509 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1510 h->scsi_host->host_no,
1511 sd->bus, sd->target, sd->lun);
1512 break;
1513 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1514 dev_info(&h->pdev->dev,
1515 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1516 h->scsi_host->host_no,
1517 sd->bus, sd->target, sd->lun);
1518 break;
1519 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1520 dev_info(&h->pdev->dev,
1521 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1522 h->scsi_host->host_no,
1523 sd->bus, sd->target, sd->lun);
1524 break;
1525 case HPSA_LV_PENDING_ENCRYPTION:
1526 dev_info(&h->pdev->dev,
1527 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1528 h->scsi_host->host_no,
1529 sd->bus, sd->target, sd->lun);
1530 break;
1531 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1532 dev_info(&h->pdev->dev,
1533 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1534 h->scsi_host->host_no,
1535 sd->bus, sd->target, sd->lun);
1536 break;
1537 }
1538}
1539
Don Brace03383732015-01-23 16:43:30 -06001540/*
1541 * Figure the list of physical drive pointers for a logical drive with
1542 * raid offload configured.
1543 */
1544static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
1545 struct hpsa_scsi_dev_t *dev[], int ndevices,
1546 struct hpsa_scsi_dev_t *logical_drive)
1547{
1548 struct raid_map_data *map = &logical_drive->raid_map;
1549 struct raid_map_disk_data *dd = &map->data[0];
1550 int i, j;
1551 int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
1552 le16_to_cpu(map->metadata_disks_per_row);
1553 int nraid_map_entries = le16_to_cpu(map->row_cnt) *
1554 le16_to_cpu(map->layout_map_count) *
1555 total_disks_per_row;
1556 int nphys_disk = le16_to_cpu(map->layout_map_count) *
1557 total_disks_per_row;
1558 int qdepth;
1559
1560 if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
1561 nraid_map_entries = RAID_MAP_MAX_ENTRIES;
1562
Webb Scalesd604f532015-04-23 09:35:22 -05001563 logical_drive->nphysical_disks = nraid_map_entries;
1564
Don Brace03383732015-01-23 16:43:30 -06001565 qdepth = 0;
1566 for (i = 0; i < nraid_map_entries; i++) {
1567 logical_drive->phys_disk[i] = NULL;
1568 if (!logical_drive->offload_config)
1569 continue;
1570 for (j = 0; j < ndevices; j++) {
1571 if (dev[j]->devtype != TYPE_DISK)
1572 continue;
1573 if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
1574 continue;
1575 if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
1576 continue;
1577
1578 logical_drive->phys_disk[i] = dev[j];
1579 if (i < nphys_disk)
1580 qdepth = min(h->nr_cmds, qdepth +
1581 logical_drive->phys_disk[i]->queue_depth);
1582 break;
1583 }
1584
1585 /*
1586 * This can happen if a physical drive is removed and
1587 * the logical drive is degraded. In that case, the RAID
1588 * map data will refer to a physical disk which isn't actually
1589 * present. And in that case offload_enabled should already
1590 * be 0, but we'll turn it off here just in case
1591 */
1592 if (!logical_drive->phys_disk[i]) {
1593 logical_drive->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001594 logical_drive->offload_to_be_enabled = 0;
1595 logical_drive->queue_depth = 8;
Don Brace03383732015-01-23 16:43:30 -06001596 }
1597 }
1598 if (nraid_map_entries)
1599 /*
1600 * This is correct for reads, too high for full stripe writes,
1601 * way too high for partial stripe writes
1602 */
1603 logical_drive->queue_depth = qdepth;
1604 else
1605 logical_drive->queue_depth = h->nr_cmds;
1606}
1607
1608static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
1609 struct hpsa_scsi_dev_t *dev[], int ndevices)
1610{
1611 int i;
1612
1613 for (i = 0; i < ndevices; i++) {
1614 if (dev[i]->devtype != TYPE_DISK)
1615 continue;
1616 if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
1617 continue;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001618
1619 /*
1620 * If offload is currently enabled, the RAID map and
1621 * phys_disk[] assignment *better* not be changing
1622 * and since it isn't changing, we do not need to
1623 * update it.
1624 */
1625 if (dev[i]->offload_enabled)
1626 continue;
1627
Don Brace03383732015-01-23 16:43:30 -06001628 hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
1629 }
1630}
1631
Stephen M. Cameron4967bd32010-02-04 08:41:49 -06001632static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001633 struct hpsa_scsi_dev_t *sd[], int nsds)
1634{
1635 /* sd contains scsi3 addresses and devtypes, and inquiry
1636 * data. This function takes what's in sd to be the current
1637 * reality and updates h->dev[] to reflect that reality.
1638 */
1639 int i, entry, device_change, changes = 0;
1640 struct hpsa_scsi_dev_t *csd;
1641 unsigned long flags;
1642 struct hpsa_scsi_dev_t **added, **removed;
1643 int nadded, nremoved;
1644 struct Scsi_Host *sh = NULL;
1645
Scott Teelcfe5bad2011-10-26 16:21:07 -05001646 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1647 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001648
1649 if (!added || !removed) {
1650 dev_warn(&h->pdev->dev, "out of memory in "
1651 "adjust_hpsa_scsi_table\n");
1652 goto free_and_out;
1653 }
1654
1655 spin_lock_irqsave(&h->devlock, flags);
1656
1657 /* find any devices in h->dev[] that are not in
1658 * sd[] and remove them from h->dev[], and for any
1659 * devices which have changed, remove the old device
1660 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001661 * If minor device attributes change, just update
1662 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001663 */
1664 i = 0;
1665 nremoved = 0;
1666 nadded = 0;
1667 while (i < h->ndevices) {
1668 csd = h->dev[i];
1669 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1670 if (device_change == DEVICE_NOT_FOUND) {
1671 changes++;
1672 hpsa_scsi_remove_entry(h, hostno, i,
1673 removed, &nremoved);
1674 continue; /* remove ^^^, hence i not incremented */
1675 } else if (device_change == DEVICE_CHANGED) {
1676 changes++;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001677 hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
1678 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001679 /* Set it to NULL to prevent it from being freed
1680 * at the bottom of hpsa_update_scsi_devices()
1681 */
1682 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001683 } else if (device_change == DEVICE_UPDATED) {
1684 hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001685 }
1686 i++;
1687 }
1688
1689 /* Now, make sure every device listed in sd[] is also
1690 * listed in h->dev[], adding them if they aren't found
1691 */
1692
1693 for (i = 0; i < nsds; i++) {
1694 if (!sd[i]) /* if already added above. */
1695 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001696
1697 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1698 * as the SCSI mid-layer does not handle such devices well.
1699 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1700 * at 160Hz, and prevents the system from coming up.
1701 */
1702 if (sd[i]->volume_offline) {
1703 hpsa_show_volume_status(h, sd[i]);
Webb Scales0d96ef52015-04-23 09:31:55 -05001704 hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
Stephen M. Cameron98465902014-02-21 16:25:00 -06001705 continue;
1706 }
1707
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001708 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1709 h->ndevices, &entry);
1710 if (device_change == DEVICE_NOT_FOUND) {
1711 changes++;
1712 if (hpsa_scsi_add_entry(h, hostno, sd[i],
1713 added, &nadded) != 0)
1714 break;
1715 sd[i] = NULL; /* prevent from being freed later. */
1716 } else if (device_change == DEVICE_CHANGED) {
1717 /* should never happen... */
1718 changes++;
1719 dev_warn(&h->pdev->dev,
1720 "device unexpectedly changed.\n");
1721 /* but if it does happen, we just ignore that device */
1722 }
1723 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001724 hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
1725
1726 /* Now that h->dev[]->phys_disk[] is coherent, we can enable
1727 * any logical drives that need it enabled.
1728 */
1729 for (i = 0; i < h->ndevices; i++)
1730 h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
1731
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001732 spin_unlock_irqrestore(&h->devlock, flags);
1733
Stephen M. Cameron98465902014-02-21 16:25:00 -06001734 /* Monitor devices which are in one of several NOT READY states to be
1735 * brought online later. This must be done without holding h->devlock,
1736 * so don't touch h->dev[]
1737 */
1738 for (i = 0; i < nsds; i++) {
1739 if (!sd[i]) /* if already added above. */
1740 continue;
1741 if (sd[i]->volume_offline)
1742 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1743 }
1744
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001745 /* Don't notify scsi mid layer of any changes the first time through
1746 * (or if there are no changes) scsi_scan_host will do it later the
1747 * first time through.
1748 */
1749 if (hostno == -1 || !changes)
1750 goto free_and_out;
1751
1752 sh = h->scsi_host;
1753 /* Notify scsi mid layer of any removed devices */
1754 for (i = 0; i < nremoved; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001755 if (removed[i]->expose_state & HPSA_SCSI_ADD) {
1756 struct scsi_device *sdev =
1757 scsi_device_lookup(sh, removed[i]->bus,
1758 removed[i]->target, removed[i]->lun);
1759 if (sdev != NULL) {
1760 scsi_remove_device(sdev);
1761 scsi_device_put(sdev);
1762 } else {
1763 /*
1764 * We don't expect to get here.
1765 * future cmds to this device will get selection
1766 * timeout as if the device was gone.
1767 */
Webb Scales0d96ef52015-04-23 09:31:55 -05001768 hpsa_show_dev_msg(KERN_WARNING, h, removed[i],
1769 "didn't find device for removal.");
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001770 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001771 }
1772 kfree(removed[i]);
1773 removed[i] = NULL;
1774 }
1775
1776 /* Notify scsi mid layer of any added devices */
1777 for (i = 0; i < nadded; i++) {
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001778 if (!(added[i]->expose_state & HPSA_SCSI_ADD))
1779 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001780 if (scsi_add_device(sh, added[i]->bus,
1781 added[i]->target, added[i]->lun) == 0)
1782 continue;
Webb Scales0d96ef52015-04-23 09:31:55 -05001783 hpsa_show_dev_msg(KERN_WARNING, h, added[i],
1784 "addition failed, device not added.");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001785 /* now we have to remove it from h->dev,
1786 * since it didn't get added to scsi mid layer
1787 */
1788 fixup_botched_add(h, added[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05001789 added[i] = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001790 }
1791
1792free_and_out:
1793 kfree(added);
1794 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001795}
1796
1797/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001798 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001799 * Assume's h->devlock is held.
1800 */
1801static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1802 int bus, int target, int lun)
1803{
1804 int i;
1805 struct hpsa_scsi_dev_t *sd;
1806
1807 for (i = 0; i < h->ndevices; i++) {
1808 sd = h->dev[i];
1809 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1810 return sd;
1811 }
1812 return NULL;
1813}
1814
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001815static int hpsa_slave_alloc(struct scsi_device *sdev)
1816{
1817 struct hpsa_scsi_dev_t *sd;
1818 unsigned long flags;
1819 struct ctlr_info *h;
1820
1821 h = sdev_to_hba(sdev);
1822 spin_lock_irqsave(&h->devlock, flags);
1823 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1824 sdev_id(sdev), sdev->lun);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001825 if (likely(sd)) {
Don Brace03383732015-01-23 16:43:30 -06001826 atomic_set(&sd->ioaccel_cmds_out, 0);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001827 sdev->hostdata = (sd->expose_state & HPSA_SCSI_ADD) ? sd : NULL;
1828 } else
1829 sdev->hostdata = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001830 spin_unlock_irqrestore(&h->devlock, flags);
1831 return 0;
1832}
1833
Stephen Cameron41ce4c32015-04-23 09:31:47 -05001834/* configure scsi device based on internal per-device structure */
1835static int hpsa_slave_configure(struct scsi_device *sdev)
1836{
1837 struct hpsa_scsi_dev_t *sd;
1838 int queue_depth;
1839
1840 sd = sdev->hostdata;
1841 sdev->no_uld_attach = !sd || !(sd->expose_state & HPSA_ULD_ATTACH);
1842
1843 if (sd)
1844 queue_depth = sd->queue_depth != 0 ?
1845 sd->queue_depth : sdev->host->can_queue;
1846 else
1847 queue_depth = sdev->host->can_queue;
1848
1849 scsi_change_queue_depth(sdev, queue_depth);
1850
1851 return 0;
1852}
1853
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001854static void hpsa_slave_destroy(struct scsi_device *sdev)
1855{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001856 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001857}
1858
Webb Scalesd9a729f2015-04-23 09:33:27 -05001859static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1860{
1861 int i;
1862
1863 if (!h->ioaccel2_cmd_sg_list)
1864 return;
1865 for (i = 0; i < h->nr_cmds; i++) {
1866 kfree(h->ioaccel2_cmd_sg_list[i]);
1867 h->ioaccel2_cmd_sg_list[i] = NULL;
1868 }
1869 kfree(h->ioaccel2_cmd_sg_list);
1870 h->ioaccel2_cmd_sg_list = NULL;
1871}
1872
1873static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1874{
1875 int i;
1876
1877 if (h->chainsize <= 0)
1878 return 0;
1879
1880 h->ioaccel2_cmd_sg_list =
1881 kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
1882 GFP_KERNEL);
1883 if (!h->ioaccel2_cmd_sg_list)
1884 return -ENOMEM;
1885 for (i = 0; i < h->nr_cmds; i++) {
1886 h->ioaccel2_cmd_sg_list[i] =
1887 kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
1888 h->maxsgentries, GFP_KERNEL);
1889 if (!h->ioaccel2_cmd_sg_list[i])
1890 goto clean;
1891 }
1892 return 0;
1893
1894clean:
1895 hpsa_free_ioaccel2_sg_chain_blocks(h);
1896 return -ENOMEM;
1897}
1898
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001899static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1900{
1901 int i;
1902
1903 if (!h->cmd_sg_list)
1904 return;
1905 for (i = 0; i < h->nr_cmds; i++) {
1906 kfree(h->cmd_sg_list[i]);
1907 h->cmd_sg_list[i] = NULL;
1908 }
1909 kfree(h->cmd_sg_list);
1910 h->cmd_sg_list = NULL;
1911}
1912
Robert Elliott105a3db2015-04-23 09:33:48 -05001913static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001914{
1915 int i;
1916
1917 if (h->chainsize <= 0)
1918 return 0;
1919
1920 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1921 GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001922 if (!h->cmd_sg_list) {
1923 dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001924 return -ENOMEM;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001925 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001926 for (i = 0; i < h->nr_cmds; i++) {
1927 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1928 h->chainsize, GFP_KERNEL);
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001929 if (!h->cmd_sg_list[i]) {
1930 dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001931 goto clean;
Robert Elliott3d4e6af2015-01-23 16:42:42 -06001932 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001933 }
1934 return 0;
1935
1936clean:
1937 hpsa_free_sg_chain_blocks(h);
1938 return -ENOMEM;
1939}
1940
Webb Scalesd9a729f2015-04-23 09:33:27 -05001941static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
1942 struct io_accel2_cmd *cp, struct CommandList *c)
1943{
1944 struct ioaccel2_sg_element *chain_block;
1945 u64 temp64;
1946 u32 chain_size;
1947
1948 chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
1949 chain_size = le32_to_cpu(cp->data_len);
1950 temp64 = pci_map_single(h->pdev, chain_block, chain_size,
1951 PCI_DMA_TODEVICE);
1952 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1953 /* prevent subsequent unmapping */
1954 cp->sg->address = 0;
1955 return -1;
1956 }
1957 cp->sg->address = cpu_to_le64(temp64);
1958 return 0;
1959}
1960
1961static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
1962 struct io_accel2_cmd *cp)
1963{
1964 struct ioaccel2_sg_element *chain_sg;
1965 u64 temp64;
1966 u32 chain_size;
1967
1968 chain_sg = cp->sg;
1969 temp64 = le64_to_cpu(chain_sg->address);
1970 chain_size = le32_to_cpu(cp->data_len);
1971 pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
1972}
1973
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001974static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001975 struct CommandList *c)
1976{
1977 struct SGDescriptor *chain_sg, *chain_block;
1978 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001979 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001980
1981 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
1982 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001983 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
1984 chain_len = sizeof(*chain_sg) *
Don Brace2b08b3e2015-01-23 16:41:09 -06001985 (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001986 chain_sg->Len = cpu_to_le32(chain_len);
1987 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001988 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001989 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1990 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001991 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001992 return -1;
1993 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001994 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001995 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001996}
1997
1998static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
1999 struct CommandList *c)
2000{
2001 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002002
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002003 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002004 return;
2005
2006 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002007 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
2008 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002009}
2010
Scott Teela09c1442014-02-18 13:57:21 -06002011
2012/* Decode the various types of errors on ioaccel2 path.
2013 * Return 1 for any error that should generate a RAID path retry.
2014 * Return 0 for errors that don't require a RAID path retry.
2015 */
2016static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06002017 struct CommandList *c,
2018 struct scsi_cmnd *cmd,
2019 struct io_accel2_cmd *c2)
2020{
2021 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06002022 int retry = 0;
Joe Handzikc40820d2015-04-23 09:33:32 -05002023 u32 ioaccel2_resid = 0;
Scott Teelc3497752014-02-18 13:56:34 -06002024
2025 switch (c2->error_data.serv_response) {
2026 case IOACCEL2_SERV_RESPONSE_COMPLETE:
2027 switch (c2->error_data.status) {
2028 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
2029 break;
2030 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002031 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06002032 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002033 IOACCEL2_SENSE_DATA_PRESENT) {
2034 memset(cmd->sense_buffer, 0,
2035 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06002036 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05002037 }
Scott Teelc3497752014-02-18 13:56:34 -06002038 /* copy the sense data */
2039 data_len = c2->error_data.sense_data_len;
2040 if (data_len > SCSI_SENSE_BUFFERSIZE)
2041 data_len = SCSI_SENSE_BUFFERSIZE;
2042 if (data_len > sizeof(c2->error_data.sense_data_buff))
2043 data_len =
2044 sizeof(c2->error_data.sense_data_buff);
2045 memcpy(cmd->sense_buffer,
2046 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06002047 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002048 break;
2049 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
Scott Teela09c1442014-02-18 13:57:21 -06002050 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002051 break;
2052 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
Scott Teela09c1442014-02-18 13:57:21 -06002053 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002054 break;
2055 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
Stephen Cameron4a8da222015-04-23 09:32:43 -05002056 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002057 break;
2058 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
Scott Teela09c1442014-02-18 13:57:21 -06002059 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002060 break;
2061 default:
Scott Teela09c1442014-02-18 13:57:21 -06002062 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002063 break;
2064 }
2065 break;
2066 case IOACCEL2_SERV_RESPONSE_FAILURE:
Joe Handzikc40820d2015-04-23 09:33:32 -05002067 switch (c2->error_data.status) {
2068 case IOACCEL2_STATUS_SR_IO_ERROR:
2069 case IOACCEL2_STATUS_SR_IO_ABORTED:
2070 case IOACCEL2_STATUS_SR_OVERRUN:
2071 retry = 1;
2072 break;
2073 case IOACCEL2_STATUS_SR_UNDERRUN:
2074 cmd->result = (DID_OK << 16); /* host byte */
2075 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
2076 ioaccel2_resid = get_unaligned_le32(
2077 &c2->error_data.resid_cnt[0]);
2078 scsi_set_resid(cmd, ioaccel2_resid);
2079 break;
2080 case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
2081 case IOACCEL2_STATUS_SR_INVALID_DEVICE:
2082 case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
2083 /* We will get an event from ctlr to trigger rescan */
2084 retry = 1;
2085 break;
2086 default:
2087 retry = 1;
Joe Handzikc40820d2015-04-23 09:33:32 -05002088 }
Scott Teelc3497752014-02-18 13:56:34 -06002089 break;
2090 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
2091 break;
2092 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
2093 break;
2094 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
Scott Teela09c1442014-02-18 13:57:21 -06002095 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002096 break;
2097 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
Scott Teelc3497752014-02-18 13:56:34 -06002098 break;
2099 default:
Scott Teela09c1442014-02-18 13:57:21 -06002100 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06002101 break;
2102 }
Scott Teela09c1442014-02-18 13:57:21 -06002103
2104 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06002105}
2106
Webb Scalesa58e7e52015-04-23 09:34:16 -05002107static void hpsa_cmd_resolve_events(struct ctlr_info *h,
2108 struct CommandList *c)
2109{
Webb Scalesd604f532015-04-23 09:35:22 -05002110 bool do_wake = false;
2111
Webb Scalesa58e7e52015-04-23 09:34:16 -05002112 /*
2113 * Prevent the following race in the abort handler:
2114 *
2115 * 1. LLD is requested to abort a SCSI command
2116 * 2. The SCSI command completes
2117 * 3. The struct CommandList associated with step 2 is made available
2118 * 4. New I/O request to LLD to another LUN re-uses struct CommandList
2119 * 5. Abort handler follows scsi_cmnd->host_scribble and
2120 * finds struct CommandList and tries to aborts it
2121 * Now we have aborted the wrong command.
2122 *
Webb Scalesd604f532015-04-23 09:35:22 -05002123 * Reset c->scsi_cmd here so that the abort or reset handler will know
2124 * this command has completed. Then, check to see if the handler is
Webb Scalesa58e7e52015-04-23 09:34:16 -05002125 * waiting for this command, and, if so, wake it.
2126 */
2127 c->scsi_cmd = SCSI_CMD_IDLE;
Webb Scalesd604f532015-04-23 09:35:22 -05002128 mb(); /* Declare command idle before checking for pending events. */
Webb Scalesa58e7e52015-04-23 09:34:16 -05002129 if (c->abort_pending) {
Webb Scalesd604f532015-04-23 09:35:22 -05002130 do_wake = true;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002131 c->abort_pending = false;
Webb Scalesa58e7e52015-04-23 09:34:16 -05002132 }
Webb Scalesd604f532015-04-23 09:35:22 -05002133 if (c->reset_pending) {
2134 unsigned long flags;
2135 struct hpsa_scsi_dev_t *dev;
2136
2137 /*
2138 * There appears to be a reset pending; lock the lock and
2139 * reconfirm. If so, then decrement the count of outstanding
2140 * commands and wake the reset command if this is the last one.
2141 */
2142 spin_lock_irqsave(&h->lock, flags);
2143 dev = c->reset_pending; /* Re-fetch under the lock. */
2144 if (dev && atomic_dec_and_test(&dev->reset_cmds_out))
2145 do_wake = true;
2146 c->reset_pending = NULL;
2147 spin_unlock_irqrestore(&h->lock, flags);
2148 }
2149
2150 if (do_wake)
2151 wake_up_all(&h->event_sync_wait_queue);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002152}
2153
Webb Scales73153fe2015-04-23 09:35:04 -05002154static void hpsa_cmd_resolve_and_free(struct ctlr_info *h,
2155 struct CommandList *c)
2156{
2157 hpsa_cmd_resolve_events(h, c);
2158 cmd_tagged_free(h, c);
2159}
2160
Webb Scales8a0ff922015-04-23 09:34:11 -05002161static void hpsa_cmd_free_and_done(struct ctlr_info *h,
2162 struct CommandList *c, struct scsi_cmnd *cmd)
2163{
Webb Scales73153fe2015-04-23 09:35:04 -05002164 hpsa_cmd_resolve_and_free(h, c);
Webb Scales8a0ff922015-04-23 09:34:11 -05002165 cmd->scsi_done(cmd);
2166}
2167
2168static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c)
2169{
2170 INIT_WORK(&c->work, hpsa_command_resubmit_worker);
2171 queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
2172}
2173
Webb Scalesa58e7e52015-04-23 09:34:16 -05002174static void hpsa_set_scsi_cmd_aborted(struct scsi_cmnd *cmd)
2175{
2176 cmd->result = DID_ABORT << 16;
2177}
2178
2179static void hpsa_cmd_abort_and_free(struct ctlr_info *h, struct CommandList *c,
2180 struct scsi_cmnd *cmd)
2181{
2182 hpsa_set_scsi_cmd_aborted(cmd);
2183 dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2184 c->Request.CDB, c->err_info->ScsiStatus);
Webb Scales73153fe2015-04-23 09:35:04 -05002185 hpsa_cmd_resolve_and_free(h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05002186}
2187
Scott Teelc3497752014-02-18 13:56:34 -06002188static void process_ioaccel2_completion(struct ctlr_info *h,
2189 struct CommandList *c, struct scsi_cmnd *cmd,
2190 struct hpsa_scsi_dev_t *dev)
2191{
2192 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2193
2194 /* check for good status */
2195 if (likely(c2->error_data.serv_response == 0 &&
Webb Scales8a0ff922015-04-23 09:34:11 -05002196 c2->error_data.status == 0))
2197 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002198
Webb Scales8a0ff922015-04-23 09:34:11 -05002199 /*
2200 * Any RAID offload error results in retry which will use
Scott Teelc3497752014-02-18 13:56:34 -06002201 * the normal I/O path so the controller can handle whatever's
2202 * wrong.
2203 */
2204 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
2205 c2->error_data.serv_response ==
2206 IOACCEL2_SERV_RESPONSE_FAILURE) {
Don Brace080ef1c2015-01-23 16:43:25 -06002207 if (c2->error_data.status ==
2208 IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
2209 dev->offload_enabled = 0;
Webb Scales8a0ff922015-04-23 09:34:11 -05002210
2211 return hpsa_retry_cmd(h, c);
Scott Teelc3497752014-02-18 13:56:34 -06002212 }
Don Brace080ef1c2015-01-23 16:43:25 -06002213
2214 if (handle_ioaccel_mode2_error(h, c, cmd, c2))
Webb Scales8a0ff922015-04-23 09:34:11 -05002215 return hpsa_retry_cmd(h, c);
Don Brace080ef1c2015-01-23 16:43:25 -06002216
Webb Scales8a0ff922015-04-23 09:34:11 -05002217 return hpsa_cmd_free_and_done(h, c, cmd);
Scott Teelc3497752014-02-18 13:56:34 -06002218}
2219
Stephen Cameron9437ac42015-04-23 09:32:16 -05002220/* Returns 0 on success, < 0 otherwise. */
2221static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
2222 struct CommandList *cp)
2223{
2224 u8 tmf_status = cp->err_info->ScsiStatus;
2225
2226 switch (tmf_status) {
2227 case CISS_TMF_COMPLETE:
2228 /*
2229 * CISS_TMF_COMPLETE never happens, instead,
2230 * ei->CommandStatus == 0 for this case.
2231 */
2232 case CISS_TMF_SUCCESS:
2233 return 0;
2234 case CISS_TMF_INVALID_FRAME:
2235 case CISS_TMF_NOT_SUPPORTED:
2236 case CISS_TMF_FAILED:
2237 case CISS_TMF_WRONG_LUN:
2238 case CISS_TMF_OVERLAPPED_TAG:
2239 break;
2240 default:
2241 dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
2242 tmf_status);
2243 break;
2244 }
2245 return -tmf_status;
2246}
2247
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05002248static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002249{
2250 struct scsi_cmnd *cmd;
2251 struct ctlr_info *h;
2252 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002253 struct hpsa_scsi_dev_t *dev;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002254 struct io_accel2_cmd *c2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002255
Stephen Cameron9437ac42015-04-23 09:32:16 -05002256 u8 sense_key;
2257 u8 asc; /* additional sense code */
2258 u8 ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05002259 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002260
2261 ei = cp->err_info;
Stephen Cameron7fa30302015-01-23 16:44:30 -06002262 cmd = cp->scsi_cmd;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002263 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002264 dev = cmd->device->hostdata;
Webb Scalesd9a729f2015-04-23 09:33:27 -05002265 c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002266
2267 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06002268 if ((cp->cmd_type == CMD_SCSI) &&
Don Brace2b08b3e2015-01-23 16:41:09 -06002269 (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06002270 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002271
Webb Scalesd9a729f2015-04-23 09:33:27 -05002272 if ((cp->cmd_type == CMD_IOACCEL2) &&
2273 (c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2274 hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2275
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002276 cmd->result = (DID_OK << 16); /* host byte */
2277 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06002278
Don Brace03383732015-01-23 16:43:30 -06002279 if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
2280 atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
2281
Webb Scales25163bd2015-04-23 09:32:00 -05002282 /*
2283 * We check for lockup status here as it may be set for
2284 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
2285 * fail_all_oustanding_cmds()
2286 */
2287 if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
2288 /* DID_NO_CONNECT will prevent a retry */
2289 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05002290 return hpsa_cmd_free_and_done(h, cp, cmd);
Webb Scales25163bd2015-04-23 09:32:00 -05002291 }
2292
Webb Scalesd604f532015-04-23 09:35:22 -05002293 if ((unlikely(hpsa_is_pending_event(cp)))) {
2294 if (cp->reset_pending)
2295 return hpsa_cmd_resolve_and_free(h, cp);
2296 if (cp->abort_pending)
2297 return hpsa_cmd_abort_and_free(h, cp, cmd);
2298 }
2299
Scott Teelc3497752014-02-18 13:56:34 -06002300 if (cp->cmd_type == CMD_IOACCEL2)
2301 return process_ioaccel2_completion(h, cp, cmd, dev);
2302
Robert Elliott6aa4c362014-07-03 10:18:19 -05002303 scsi_set_resid(cmd, ei->ResidualCnt);
Webb Scales8a0ff922015-04-23 09:34:11 -05002304 if (ei->CommandStatus == 0)
2305 return hpsa_cmd_free_and_done(h, cp, cmd);
Robert Elliott6aa4c362014-07-03 10:18:19 -05002306
Matt Gatese1f7de02014-02-18 13:55:17 -06002307 /* For I/O accelerator commands, copy over some fields to the normal
2308 * CISS header used below for error handling.
2309 */
2310 if (cp->cmd_type == CMD_IOACCEL1) {
2311 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06002312 cp->Header.SGList = scsi_sg_count(cmd);
2313 cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
2314 cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
2315 IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002316 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06002317 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2318 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002319
2320 /* Any RAID offload error results in retry which will use
2321 * the normal I/O path so the controller can handle whatever's
2322 * wrong.
2323 */
2324 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
2325 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2326 dev->offload_enabled = 0;
Webb Scalesd604f532015-04-23 09:35:22 -05002327 return hpsa_retry_cmd(h, cp);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002328 }
Matt Gatese1f7de02014-02-18 13:55:17 -06002329 }
2330
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002331 /* an error has occurred */
2332 switch (ei->CommandStatus) {
2333
2334 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002335 cmd->result |= ei->ScsiStatus;
2336 /* copy the sense data */
2337 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
2338 sense_data_size = SCSI_SENSE_BUFFERSIZE;
2339 else
2340 sense_data_size = sizeof(ei->SenseInfo);
2341 if (ei->SenseLen < sense_data_size)
2342 sense_data_size = ei->SenseLen;
2343 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
2344 if (ei->ScsiStatus)
2345 decode_sense_data(ei->SenseInfo, sense_data_size,
2346 &sense_key, &asc, &ascq);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002347 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06002348 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05002349 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06002350 break;
2351 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002352 break;
2353 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002354 /* Problem was not a check condition
2355 * Pass it up to the upper layers...
2356 */
2357 if (ei->ScsiStatus) {
2358 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2359 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2360 "Returning result: 0x%x\n",
2361 cp, ei->ScsiStatus,
2362 sense_key, asc, ascq,
2363 cmd->result);
2364 } else { /* scsi status is zero??? How??? */
2365 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2366 "Returning no connection.\n", cp),
2367
2368 /* Ordinarily, this case should never happen,
2369 * but there is a bug in some released firmware
2370 * revisions that allows it to happen if, for
2371 * example, a 4100 backplane loses power and
2372 * the tape drive is in it. We assume that
2373 * it's a fatal error of some kind because we
2374 * can't show that it wasn't. We will make it
2375 * look like selection timeout since that is
2376 * the most common reason for this to occur,
2377 * and it's severe enough.
2378 */
2379
2380 cmd->result = DID_NO_CONNECT << 16;
2381 }
2382 break;
2383
2384 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2385 break;
2386 case CMD_DATA_OVERRUN:
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002387 dev_warn(&h->pdev->dev,
2388 "CDB %16phN data overrun\n", cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002389 break;
2390 case CMD_INVALID: {
2391 /* print_bytes(cp, sizeof(*cp), 1, 0);
2392 print_cmd(cp); */
2393 /* We get CMD_INVALID if you address a non-existent device
2394 * instead of a selection timeout (no response). You will
2395 * see this if you yank out a drive, then try to access it.
2396 * This is kind of a shame because it means that any other
2397 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2398 * missing target. */
2399 cmd->result = DID_NO_CONNECT << 16;
2400 }
2401 break;
2402 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05002403 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002404 dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2405 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002406 break;
2407 case CMD_HARDWARE_ERR:
2408 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002409 dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2410 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002411 break;
2412 case CMD_CONNECTION_LOST:
2413 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002414 dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2415 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002416 break;
2417 case CMD_ABORTED:
Webb Scalesa58e7e52015-04-23 09:34:16 -05002418 /* Return now to avoid calling scsi_done(). */
2419 return hpsa_cmd_abort_and_free(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002420 case CMD_ABORT_FAILED:
2421 cmd->result = DID_ERROR << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002422 dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2423 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002424 break;
2425 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05002426 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002427 dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2428 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002429 break;
2430 case CMD_TIMEOUT:
2431 cmd->result = DID_TIME_OUT << 16;
Stephen Cameronf42e81e2015-01-23 16:44:35 -06002432 dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2433 cp->Request.CDB);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002434 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002435 case CMD_UNABORTABLE:
2436 cmd->result = DID_ERROR << 16;
2437 dev_warn(&h->pdev->dev, "Command unabortable\n");
2438 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002439 case CMD_TMF_STATUS:
2440 if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
2441 cmd->result = DID_ERROR << 16;
2442 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002443 case CMD_IOACCEL_DISABLED:
2444 /* This only handles the direct pass-through case since RAID
2445 * offload is handled above. Just attempt a retry.
2446 */
2447 cmd->result = DID_SOFT_ERROR << 16;
2448 dev_warn(&h->pdev->dev,
2449 "cp %p had HP SSD Smart Path error\n", cp);
2450 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002451 default:
2452 cmd->result = DID_ERROR << 16;
2453 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2454 cp, ei->CommandStatus);
2455 }
Webb Scales8a0ff922015-04-23 09:34:11 -05002456
2457 return hpsa_cmd_free_and_done(h, cp, cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002458}
2459
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002460static void hpsa_pci_unmap(struct pci_dev *pdev,
2461 struct CommandList *c, int sg_used, int data_direction)
2462{
2463 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002464
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002465 for (i = 0; i < sg_used; i++)
2466 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
2467 le32_to_cpu(c->SG[i].Len),
2468 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002469}
2470
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002471static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002472 struct CommandList *cp,
2473 unsigned char *buf,
2474 size_t buflen,
2475 int data_direction)
2476{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002477 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002478
2479 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2480 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002481 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002482 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002483 }
2484
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002485 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06002486 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002487 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06002488 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002489 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002490 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06002491 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002492 cp->SG[0].Addr = cpu_to_le64(addr64);
2493 cp->SG[0].Len = cpu_to_le32(buflen);
2494 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
2495 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
2496 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002497 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002498}
2499
Webb Scales25163bd2015-04-23 09:32:00 -05002500#define NO_TIMEOUT ((unsigned long) -1)
2501#define DEFAULT_TIMEOUT 30000 /* milliseconds */
2502static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
2503 struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002504{
2505 DECLARE_COMPLETION_ONSTACK(wait);
2506
2507 c->waiting = &wait;
Webb Scales25163bd2015-04-23 09:32:00 -05002508 __enqueue_cmd_and_start_io(h, c, reply_queue);
2509 if (timeout_msecs == NO_TIMEOUT) {
2510 /* TODO: get rid of this no-timeout thing */
2511 wait_for_completion_io(&wait);
2512 return IO_OK;
2513 }
2514 if (!wait_for_completion_io_timeout(&wait,
2515 msecs_to_jiffies(timeout_msecs))) {
2516 dev_warn(&h->pdev->dev, "Command timed out.\n");
2517 return -ETIMEDOUT;
2518 }
2519 return IO_OK;
2520}
2521
2522static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
2523 int reply_queue, unsigned long timeout_msecs)
2524{
2525 if (unlikely(lockup_detected(h))) {
2526 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
2527 return IO_OK;
2528 }
2529 return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002530}
2531
Stephen M. Cameron094963d2014-05-29 10:53:18 -05002532static u32 lockup_detected(struct ctlr_info *h)
2533{
2534 int cpu;
2535 u32 rc, *lockup_detected;
2536
2537 cpu = get_cpu();
2538 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2539 rc = *lockup_detected;
2540 put_cpu();
2541 return rc;
2542}
2543
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002544#define MAX_DRIVER_CMD_RETRIES 25
Webb Scales25163bd2015-04-23 09:32:00 -05002545static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
2546 struct CommandList *c, int data_direction, unsigned long timeout_msecs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002547{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002548 int backoff_time = 10, retry_count = 0;
Webb Scales25163bd2015-04-23 09:32:00 -05002549 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002550
2551 do {
Joe Perches7630abd2011-05-08 23:32:40 -07002552 memset(c->err_info, 0, sizeof(*c->err_info));
Webb Scales25163bd2015-04-23 09:32:00 -05002553 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
2554 timeout_msecs);
2555 if (rc)
2556 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002557 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002558 if (retry_count > 3) {
2559 msleep(backoff_time);
2560 if (backoff_time < 1000)
2561 backoff_time *= 2;
2562 }
Matt Bondurant852af202012-05-01 11:42:35 -05002563 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05002564 check_for_busy(h, c)) &&
2565 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002566 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
Webb Scales25163bd2015-04-23 09:32:00 -05002567 if (retry_count > MAX_DRIVER_CMD_RETRIES)
2568 rc = -EIO;
2569 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002570}
2571
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002572static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2573 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002574{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002575 const u8 *cdb = c->Request.CDB;
2576 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002577
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002578 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2579 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2580 txt, lun[0], lun[1], lun[2], lun[3],
2581 lun[4], lun[5], lun[6], lun[7],
2582 cdb[0], cdb[1], cdb[2], cdb[3],
2583 cdb[4], cdb[5], cdb[6], cdb[7],
2584 cdb[8], cdb[9], cdb[10], cdb[11],
2585 cdb[12], cdb[13], cdb[14], cdb[15]);
2586}
2587
2588static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2589 struct CommandList *cp)
2590{
2591 const struct ErrorInfo *ei = cp->err_info;
2592 struct device *d = &cp->h->pdev->dev;
Stephen Cameron9437ac42015-04-23 09:32:16 -05002593 u8 sense_key, asc, ascq;
2594 int sense_len;
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002595
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002596 switch (ei->CommandStatus) {
2597 case CMD_TARGET_STATUS:
Stephen Cameron9437ac42015-04-23 09:32:16 -05002598 if (ei->SenseLen > sizeof(ei->SenseInfo))
2599 sense_len = sizeof(ei->SenseInfo);
2600 else
2601 sense_len = ei->SenseLen;
2602 decode_sense_data(ei->SenseInfo, sense_len,
2603 &sense_key, &asc, &ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002604 hpsa_print_cmd(h, "SCSI status", cp);
2605 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
Stephen Cameron9437ac42015-04-23 09:32:16 -05002606 dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
2607 sense_key, asc, ascq);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002608 else
Stephen Cameron9437ac42015-04-23 09:32:16 -05002609 dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002610 if (ei->ScsiStatus == 0)
2611 dev_warn(d, "SCSI status is abnormally zero. "
2612 "(probably indicates selection timeout "
2613 "reported incorrectly due to a known "
2614 "firmware bug, circa July, 2001.)\n");
2615 break;
2616 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002617 break;
2618 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002619 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002620 break;
2621 case CMD_INVALID: {
2622 /* controller unfortunately reports SCSI passthru's
2623 * to non-existent targets as invalid commands.
2624 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002625 hpsa_print_cmd(h, "invalid command", cp);
2626 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002627 }
2628 break;
2629 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002630 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002631 break;
2632 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002633 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002634 break;
2635 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002636 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002637 break;
2638 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002639 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002640 break;
2641 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002642 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002643 break;
2644 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002645 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002646 break;
2647 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002648 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002649 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002650 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002651 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002652 break;
Webb Scales25163bd2015-04-23 09:32:00 -05002653 case CMD_CTLR_LOCKUP:
2654 hpsa_print_cmd(h, "controller lockup detected", cp);
2655 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002656 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002657 hpsa_print_cmd(h, "unknown status", cp);
2658 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002659 ei->CommandStatus);
2660 }
2661}
2662
2663static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002664 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002665 unsigned char bufsize)
2666{
2667 int rc = IO_OK;
2668 struct CommandList *c;
2669 struct ErrorInfo *ei;
2670
Stephen Cameron45fcb862015-01-23 16:43:04 -06002671 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002672
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002673 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2674 page, scsi3addr, TYPE_CMD)) {
2675 rc = -1;
2676 goto out;
2677 }
Webb Scales25163bd2015-04-23 09:32:00 -05002678 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2679 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2680 if (rc)
2681 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002682 ei = c->err_info;
2683 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002684 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002685 rc = -1;
2686 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002687out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002688 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002689 return rc;
2690}
2691
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002692static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
2693 unsigned char *scsi3addr, unsigned char page,
2694 struct bmic_controller_parameters *buf, size_t bufsize)
2695{
2696 int rc = IO_OK;
2697 struct CommandList *c;
2698 struct ErrorInfo *ei;
2699
Stephen Cameron45fcb862015-01-23 16:43:04 -06002700 c = cmd_alloc(h);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002701 if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize,
2702 page, scsi3addr, TYPE_CMD)) {
2703 rc = -1;
2704 goto out;
2705 }
Webb Scales25163bd2015-04-23 09:32:00 -05002706 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2707 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2708 if (rc)
2709 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002710 ei = c->err_info;
2711 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2712 hpsa_scsi_interpret_error(h, c);
2713 rc = -1;
2714 }
2715out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002716 cmd_free(h, c);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002717 return rc;
Robert Elliottbf43caf2015-04-23 09:33:38 -05002718}
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002719
Scott Teelbf711ac2014-02-18 13:56:39 -06002720static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05002721 u8 reset_type, int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002722{
2723 int rc = IO_OK;
2724 struct CommandList *c;
2725 struct ErrorInfo *ei;
2726
Stephen Cameron45fcb862015-01-23 16:43:04 -06002727 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002728
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002729
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002730 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teelbf711ac2014-02-18 13:56:39 -06002731 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2732 scsi3addr, TYPE_MSG);
2733 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
Webb Scales25163bd2015-04-23 09:32:00 -05002734 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
2735 if (rc) {
2736 dev_warn(&h->pdev->dev, "Failed to send reset command\n");
2737 goto out;
2738 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002739 /* no unmap needed here because no data xfer. */
2740
2741 ei = c->err_info;
2742 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002743 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002744 rc = -1;
2745 }
Webb Scales25163bd2015-04-23 09:32:00 -05002746out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06002747 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002748 return rc;
2749}
2750
Webb Scalesd604f532015-04-23 09:35:22 -05002751static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
2752 struct hpsa_scsi_dev_t *dev,
2753 unsigned char *scsi3addr)
2754{
2755 int i;
2756 bool match = false;
2757 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2758 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
2759
2760 if (hpsa_is_cmd_idle(c))
2761 return false;
2762
2763 switch (c->cmd_type) {
2764 case CMD_SCSI:
2765 case CMD_IOCTL_PEND:
2766 match = !memcmp(scsi3addr, &c->Header.LUN.LunAddrBytes,
2767 sizeof(c->Header.LUN.LunAddrBytes));
2768 break;
2769
2770 case CMD_IOACCEL1:
2771 case CMD_IOACCEL2:
2772 if (c->phys_disk == dev) {
2773 /* HBA mode match */
2774 match = true;
2775 } else {
2776 /* Possible RAID mode -- check each phys dev. */
2777 /* FIXME: Do we need to take out a lock here? If
2778 * so, we could just call hpsa_get_pdisk_of_ioaccel2()
2779 * instead. */
2780 for (i = 0; i < dev->nphysical_disks && !match; i++) {
2781 /* FIXME: an alternate test might be
2782 *
2783 * match = dev->phys_disk[i]->ioaccel_handle
2784 * == c2->scsi_nexus; */
2785 match = dev->phys_disk[i] == c->phys_disk;
2786 }
2787 }
2788 break;
2789
2790 case IOACCEL2_TMF:
2791 for (i = 0; i < dev->nphysical_disks && !match; i++) {
2792 match = dev->phys_disk[i]->ioaccel_handle ==
2793 le32_to_cpu(ac->it_nexus);
2794 }
2795 break;
2796
2797 case 0: /* The command is in the middle of being initialized. */
2798 match = false;
2799 break;
2800
2801 default:
2802 dev_err(&h->pdev->dev, "unexpected cmd_type: %d\n",
2803 c->cmd_type);
2804 BUG();
2805 }
2806
2807 return match;
2808}
2809
2810static int hpsa_do_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
2811 unsigned char *scsi3addr, u8 reset_type, int reply_queue)
2812{
2813 int i;
2814 int rc = 0;
2815
2816 /* We can really only handle one reset at a time */
2817 if (mutex_lock_interruptible(&h->reset_mutex) == -EINTR) {
2818 dev_warn(&h->pdev->dev, "concurrent reset wait interrupted.\n");
2819 return -EINTR;
2820 }
2821
2822 BUG_ON(atomic_read(&dev->reset_cmds_out) != 0);
2823
2824 for (i = 0; i < h->nr_cmds; i++) {
2825 struct CommandList *c = h->cmd_pool + i;
2826 int refcount = atomic_inc_return(&c->refcount);
2827
2828 if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev, scsi3addr)) {
2829 unsigned long flags;
2830
2831 /*
2832 * Mark the target command as having a reset pending,
2833 * then lock a lock so that the command cannot complete
2834 * while we're considering it. If the command is not
2835 * idle then count it; otherwise revoke the event.
2836 */
2837 c->reset_pending = dev;
2838 spin_lock_irqsave(&h->lock, flags); /* Implied MB */
2839 if (!hpsa_is_cmd_idle(c))
2840 atomic_inc(&dev->reset_cmds_out);
2841 else
2842 c->reset_pending = NULL;
2843 spin_unlock_irqrestore(&h->lock, flags);
2844 }
2845
2846 cmd_free(h, c);
2847 }
2848
2849 rc = hpsa_send_reset(h, scsi3addr, reset_type, reply_queue);
2850 if (!rc)
2851 wait_event(h->event_sync_wait_queue,
2852 atomic_read(&dev->reset_cmds_out) == 0 ||
2853 lockup_detected(h));
2854
2855 if (unlikely(lockup_detected(h))) {
Don Brace77678d32015-07-18 11:12:22 -05002856 dev_warn(&h->pdev->dev,
2857 "Controller lockup detected during reset wait\n");
2858 rc = -ENODEV;
2859 }
Webb Scalesd604f532015-04-23 09:35:22 -05002860
2861 if (unlikely(rc))
2862 atomic_set(&dev->reset_cmds_out, 0);
2863
2864 mutex_unlock(&h->reset_mutex);
2865 return rc;
2866}
2867
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002868static void hpsa_get_raid_level(struct ctlr_info *h,
2869 unsigned char *scsi3addr, unsigned char *raid_level)
2870{
2871 int rc;
2872 unsigned char *buf;
2873
2874 *raid_level = RAID_UNKNOWN;
2875 buf = kzalloc(64, GFP_KERNEL);
2876 if (!buf)
2877 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002878 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002879 if (rc == 0)
2880 *raid_level = buf[8];
2881 if (*raid_level > RAID_UNKNOWN)
2882 *raid_level = RAID_UNKNOWN;
2883 kfree(buf);
2884 return;
2885}
2886
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002887#define HPSA_MAP_DEBUG
2888#ifdef HPSA_MAP_DEBUG
2889static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2890 struct raid_map_data *map_buff)
2891{
2892 struct raid_map_disk_data *dd = &map_buff->data[0];
2893 int map, row, col;
2894 u16 map_cnt, row_cnt, disks_per_row;
2895
2896 if (rc != 0)
2897 return;
2898
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002899 /* Show details only if debugging has been activated. */
2900 if (h->raid_offload_debug < 2)
2901 return;
2902
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002903 dev_info(&h->pdev->dev, "structure_size = %u\n",
2904 le32_to_cpu(map_buff->structure_size));
2905 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2906 le32_to_cpu(map_buff->volume_blk_size));
2907 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2908 le64_to_cpu(map_buff->volume_blk_cnt));
2909 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2910 map_buff->phys_blk_shift);
2911 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2912 map_buff->parity_rotation_shift);
2913 dev_info(&h->pdev->dev, "strip_size = %u\n",
2914 le16_to_cpu(map_buff->strip_size));
2915 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2916 le64_to_cpu(map_buff->disk_starting_blk));
2917 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2918 le64_to_cpu(map_buff->disk_blk_cnt));
2919 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2920 le16_to_cpu(map_buff->data_disks_per_row));
2921 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2922 le16_to_cpu(map_buff->metadata_disks_per_row));
2923 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2924 le16_to_cpu(map_buff->row_cnt));
2925 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2926 le16_to_cpu(map_buff->layout_map_count));
Don Brace2b08b3e2015-01-23 16:41:09 -06002927 dev_info(&h->pdev->dev, "flags = 0x%x\n",
Scott Teeldd0e19f2014-02-18 13:57:31 -06002928 le16_to_cpu(map_buff->flags));
Don Brace2b08b3e2015-01-23 16:41:09 -06002929 dev_info(&h->pdev->dev, "encrypytion = %s\n",
2930 le16_to_cpu(map_buff->flags) &
2931 RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF");
Scott Teeldd0e19f2014-02-18 13:57:31 -06002932 dev_info(&h->pdev->dev, "dekindex = %u\n",
2933 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002934 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2935 for (map = 0; map < map_cnt; map++) {
2936 dev_info(&h->pdev->dev, "Map%u:\n", map);
2937 row_cnt = le16_to_cpu(map_buff->row_cnt);
2938 for (row = 0; row < row_cnt; row++) {
2939 dev_info(&h->pdev->dev, " Row%u:\n", row);
2940 disks_per_row =
2941 le16_to_cpu(map_buff->data_disks_per_row);
2942 for (col = 0; col < disks_per_row; col++, dd++)
2943 dev_info(&h->pdev->dev,
2944 " D%02u: h=0x%04x xor=%u,%u\n",
2945 col, dd->ioaccel_handle,
2946 dd->xor_mult[0], dd->xor_mult[1]);
2947 disks_per_row =
2948 le16_to_cpu(map_buff->metadata_disks_per_row);
2949 for (col = 0; col < disks_per_row; col++, dd++)
2950 dev_info(&h->pdev->dev,
2951 " M%02u: h=0x%04x xor=%u,%u\n",
2952 col, dd->ioaccel_handle,
2953 dd->xor_mult[0], dd->xor_mult[1]);
2954 }
2955 }
2956}
2957#else
2958static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2959 __attribute__((unused)) int rc,
2960 __attribute__((unused)) struct raid_map_data *map_buff)
2961{
2962}
2963#endif
2964
2965static int hpsa_get_raid_map(struct ctlr_info *h,
2966 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2967{
2968 int rc = 0;
2969 struct CommandList *c;
2970 struct ErrorInfo *ei;
2971
Stephen Cameron45fcb862015-01-23 16:43:04 -06002972 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05002973
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002974 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2975 sizeof(this_device->raid_map), 0,
2976 scsi3addr, TYPE_CMD)) {
Robert Elliott2dd02d72015-04-23 09:33:43 -05002977 dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
2978 cmd_free(h, c);
2979 return -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002980 }
Webb Scales25163bd2015-04-23 09:32:00 -05002981 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
2982 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
2983 if (rc)
2984 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002985 ei = c->err_info;
2986 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002987 hpsa_scsi_interpret_error(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05002988 rc = -1;
2989 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002990 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06002991 cmd_free(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002992
2993 /* @todo in the future, dynamically allocate RAID map memory */
2994 if (le32_to_cpu(this_device->raid_map.structure_size) >
2995 sizeof(this_device->raid_map)) {
2996 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2997 rc = -1;
2998 }
2999 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
3000 return rc;
Webb Scales25163bd2015-04-23 09:32:00 -05003001out:
3002 cmd_free(h, c);
3003 return rc;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003004}
3005
Don Brace03383732015-01-23 16:43:30 -06003006static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
3007 unsigned char scsi3addr[], u16 bmic_device_index,
3008 struct bmic_identify_physical_device *buf, size_t bufsize)
3009{
3010 int rc = IO_OK;
3011 struct CommandList *c;
3012 struct ErrorInfo *ei;
3013
3014 c = cmd_alloc(h);
3015 rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
3016 0, RAID_CTLR_LUNID, TYPE_CMD);
3017 if (rc)
3018 goto out;
3019
3020 c->Request.CDB[2] = bmic_device_index & 0xff;
3021 c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
3022
Webb Scales25163bd2015-04-23 09:32:00 -05003023 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
3024 NO_TIMEOUT);
Don Brace03383732015-01-23 16:43:30 -06003025 ei = c->err_info;
3026 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
3027 hpsa_scsi_interpret_error(h, c);
3028 rc = -1;
3029 }
3030out:
3031 cmd_free(h, c);
3032 return rc;
3033}
3034
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003035static int hpsa_vpd_page_supported(struct ctlr_info *h,
3036 unsigned char scsi3addr[], u8 page)
3037{
3038 int rc;
3039 int i;
3040 int pages;
3041 unsigned char *buf, bufsize;
3042
3043 buf = kzalloc(256, GFP_KERNEL);
3044 if (!buf)
3045 return 0;
3046
3047 /* Get the size of the page list first */
3048 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3049 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3050 buf, HPSA_VPD_HEADER_SZ);
3051 if (rc != 0)
3052 goto exit_unsupported;
3053 pages = buf[3];
3054 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
3055 bufsize = pages + HPSA_VPD_HEADER_SZ;
3056 else
3057 bufsize = 255;
3058
3059 /* Get the whole VPD page list */
3060 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3061 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
3062 buf, bufsize);
3063 if (rc != 0)
3064 goto exit_unsupported;
3065
3066 pages = buf[3];
3067 for (i = 1; i <= pages; i++)
3068 if (buf[3 + i] == page)
3069 goto exit_supported;
3070exit_unsupported:
3071 kfree(buf);
3072 return 0;
3073exit_supported:
3074 kfree(buf);
3075 return 1;
3076}
3077
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003078static void hpsa_get_ioaccel_status(struct ctlr_info *h,
3079 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3080{
3081 int rc;
3082 unsigned char *buf;
3083 u8 ioaccel_status;
3084
3085 this_device->offload_config = 0;
3086 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003087 this_device->offload_to_be_enabled = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003088
3089 buf = kzalloc(64, GFP_KERNEL);
3090 if (!buf)
3091 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06003092 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
3093 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003094 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003095 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003096 if (rc != 0)
3097 goto out;
3098
3099#define IOACCEL_STATUS_BYTE 4
3100#define OFFLOAD_CONFIGURED_BIT 0x01
3101#define OFFLOAD_ENABLED_BIT 0x02
3102 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
3103 this_device->offload_config =
3104 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
3105 if (this_device->offload_config) {
3106 this_device->offload_enabled =
3107 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
3108 if (hpsa_get_raid_map(h, scsi3addr, this_device))
3109 this_device->offload_enabled = 0;
3110 }
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003111 this_device->offload_to_be_enabled = this_device->offload_enabled;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003112out:
3113 kfree(buf);
3114 return;
3115}
3116
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003117/* Get the device id from inquiry page 0x83 */
3118static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
3119 unsigned char *device_id, int buflen)
3120{
3121 int rc;
3122 unsigned char *buf;
3123
3124 if (buflen > 16)
3125 buflen = 16;
3126 buf = kzalloc(64, GFP_KERNEL);
3127 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05003128 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06003129 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003130 if (rc == 0)
3131 memcpy(device_id, &buf[8], buflen);
3132 kfree(buf);
3133 return rc != 0;
3134}
3135
3136static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
Don Brace03383732015-01-23 16:43:30 -06003137 void *buf, int bufsize,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003138 int extended_response)
3139{
3140 int rc = IO_OK;
3141 struct CommandList *c;
3142 unsigned char scsi3addr[8];
3143 struct ErrorInfo *ei;
3144
Stephen Cameron45fcb862015-01-23 16:43:04 -06003145 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003146
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06003147 /* address the controller */
3148 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003149 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
3150 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
3151 rc = -1;
3152 goto out;
3153 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003154 if (extended_response)
3155 c->Request.CDB[1] = extended_response;
Webb Scales25163bd2015-04-23 09:32:00 -05003156 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
3157 PCI_DMA_FROMDEVICE, NO_TIMEOUT);
3158 if (rc)
3159 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003160 ei = c->err_info;
3161 if (ei->CommandStatus != 0 &&
3162 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06003163 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003164 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003165 } else {
Don Brace03383732015-01-23 16:43:30 -06003166 struct ReportLUNdata *rld = buf;
3167
3168 if (rld->extended_response_flag != extended_response) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003169 dev_err(&h->pdev->dev,
3170 "report luns requested format %u, got %u\n",
3171 extended_response,
Don Brace03383732015-01-23 16:43:30 -06003172 rld->extended_response_flag);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003173 rc = -1;
3174 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003175 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06003176out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06003177 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003178 return rc;
3179}
3180
3181static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003182 struct ReportExtendedLUNdata *buf, int bufsize)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003183{
Don Brace03383732015-01-23 16:43:30 -06003184 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
3185 HPSA_REPORT_PHYS_EXTENDED);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003186}
3187
3188static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
3189 struct ReportLUNdata *buf, int bufsize)
3190{
3191 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
3192}
3193
3194static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
3195 int bus, int target, int lun)
3196{
3197 device->bus = bus;
3198 device->target = target;
3199 device->lun = lun;
3200}
3201
Stephen M. Cameron98465902014-02-21 16:25:00 -06003202/* Use VPD inquiry to get details of volume status */
3203static int hpsa_get_volume_status(struct ctlr_info *h,
3204 unsigned char scsi3addr[])
3205{
3206 int rc;
3207 int status;
3208 int size;
3209 unsigned char *buf;
3210
3211 buf = kzalloc(64, GFP_KERNEL);
3212 if (!buf)
3213 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3214
3215 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003216 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06003217 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003218
3219 /* Get the size of the VPD return buffer */
3220 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3221 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05003222 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003223 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003224 size = buf[3];
3225
3226 /* Now get the whole VPD buffer */
3227 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
3228 buf, size + 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 status = buf[4]; /* status byte */
3232
3233 kfree(buf);
3234 return status;
3235exit_failed:
3236 kfree(buf);
3237 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
3238}
3239
3240/* Determine offline status of a volume.
3241 * Return either:
3242 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003243 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06003244 * # (integer code indicating one of several NOT READY states
3245 * describing why a volume is to be kept offline)
3246 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003247static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06003248 unsigned char scsi3addr[])
3249{
3250 struct CommandList *c;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003251 unsigned char *sense;
3252 u8 sense_key, asc, ascq;
3253 int sense_len;
Webb Scales25163bd2015-04-23 09:32:00 -05003254 int rc, ldstat = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003255 u16 cmd_status;
3256 u8 scsi_status;
3257#define ASC_LUN_NOT_READY 0x04
3258#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
3259#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
3260
3261 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003262
Stephen M. Cameron98465902014-02-21 16:25:00 -06003263 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
Webb Scales25163bd2015-04-23 09:32:00 -05003264 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3265 if (rc) {
3266 cmd_free(h, c);
3267 return 0;
3268 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06003269 sense = c->err_info->SenseInfo;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003270 if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
3271 sense_len = sizeof(c->err_info->SenseInfo);
3272 else
3273 sense_len = c->err_info->SenseLen;
3274 decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
Stephen M. Cameron98465902014-02-21 16:25:00 -06003275 cmd_status = c->err_info->CommandStatus;
3276 scsi_status = c->err_info->ScsiStatus;
3277 cmd_free(h, c);
3278 /* Is the volume 'not ready'? */
3279 if (cmd_status != CMD_TARGET_STATUS ||
3280 scsi_status != SAM_STAT_CHECK_CONDITION ||
3281 sense_key != NOT_READY ||
3282 asc != ASC_LUN_NOT_READY) {
3283 return 0;
3284 }
3285
3286 /* Determine the reason for not ready state */
3287 ldstat = hpsa_get_volume_status(h, scsi3addr);
3288
3289 /* Keep volume offline in certain cases: */
3290 switch (ldstat) {
3291 case HPSA_LV_UNDERGOING_ERASE:
3292 case HPSA_LV_UNDERGOING_RPI:
3293 case HPSA_LV_PENDING_RPI:
3294 case HPSA_LV_ENCRYPTED_NO_KEY:
3295 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
3296 case HPSA_LV_UNDERGOING_ENCRYPTION:
3297 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
3298 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
3299 return ldstat;
3300 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
3301 /* If VPD status page isn't available,
3302 * use ASC/ASCQ to determine state
3303 */
3304 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
3305 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
3306 return ldstat;
3307 break;
3308 default:
3309 break;
3310 }
3311 return 0;
3312}
3313
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003314/*
3315 * Find out if a logical device supports aborts by simply trying one.
3316 * Smart Array may claim not to support aborts on logical drives, but
3317 * if a MSA2000 * is connected, the drives on that will be presented
3318 * by the Smart Array as logical drives, and aborts may be sent to
3319 * those devices successfully. So the simplest way to find out is
3320 * to simply try an abort and see how the device responds.
3321 */
3322static int hpsa_device_supports_aborts(struct ctlr_info *h,
3323 unsigned char *scsi3addr)
3324{
3325 struct CommandList *c;
3326 struct ErrorInfo *ei;
3327 int rc = 0;
3328
3329 u64 tag = (u64) -1; /* bogus tag */
3330
3331 /* Assume that physical devices support aborts */
3332 if (!is_logical_dev_addr_mode(scsi3addr))
3333 return 1;
3334
3335 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05003336
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003337 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
3338 (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
3339 /* no unmap needed here because no data xfer. */
3340 ei = c->err_info;
3341 switch (ei->CommandStatus) {
3342 case CMD_INVALID:
3343 rc = 0;
3344 break;
3345 case CMD_UNABORTABLE:
3346 case CMD_ABORT_FAILED:
3347 rc = 1;
3348 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05003349 case CMD_TMF_STATUS:
3350 rc = hpsa_evaluate_tmf_status(h, c);
3351 break;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003352 default:
3353 rc = 0;
3354 break;
3355 }
3356 cmd_free(h, c);
3357 return rc;
3358}
3359
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003360static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003361 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
3362 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003363{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003364
3365#define OBDR_SIG_OFFSET 43
3366#define OBDR_TAPE_SIG "$DR-10"
3367#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
3368#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
3369
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003370 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003371 unsigned char *obdr_sig;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003372
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06003373 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003374 if (!inq_buff)
3375 goto bail_out;
3376
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003377 /* Do an inquiry to the device to see what it is. */
3378 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3379 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
3380 /* Inquiry failed (msg printed already) */
3381 dev_err(&h->pdev->dev,
3382 "hpsa_update_device_info: inquiry failed\n");
3383 goto bail_out;
3384 }
3385
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003386 this_device->devtype = (inq_buff[0] & 0x1f);
3387 memcpy(this_device->scsi3addr, scsi3addr, 8);
3388 memcpy(this_device->vendor, &inq_buff[8],
3389 sizeof(this_device->vendor));
3390 memcpy(this_device->model, &inq_buff[16],
3391 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003392 memset(this_device->device_id, 0,
3393 sizeof(this_device->device_id));
3394 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
3395 sizeof(this_device->device_id));
3396
3397 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003398 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003399 int volume_offline;
3400
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003401 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003402 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3403 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05003404 volume_offline = hpsa_volume_offline(h, scsi3addr);
3405 if (volume_offline < 0 || volume_offline > 0xff)
3406 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
3407 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003408 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003409 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003410 this_device->offload_config = 0;
3411 this_device->offload_enabled = 0;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003412 this_device->offload_to_be_enabled = 0;
Joe Handzika3144e02015-04-23 09:32:59 -05003413 this_device->hba_ioaccel_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06003414 this_device->volume_offline = 0;
Don Brace03383732015-01-23 16:43:30 -06003415 this_device->queue_depth = h->nr_cmds;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003416 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003417
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003418 if (is_OBDR_device) {
3419 /* See if this is a One-Button-Disaster-Recovery device
3420 * by looking for "$DR-10" at offset 43 in inquiry data.
3421 */
3422 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
3423 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
3424 strncmp(obdr_sig, OBDR_TAPE_SIG,
3425 OBDR_SIG_LEN) == 0);
3426 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003427 kfree(inq_buff);
3428 return 0;
3429
3430bail_out:
3431 kfree(inq_buff);
3432 return 1;
3433}
3434
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003435static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
3436 struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
3437{
3438 unsigned long flags;
3439 int rc, entry;
3440 /*
3441 * See if this device supports aborts. If we already know
3442 * the device, we already know if it supports aborts, otherwise
3443 * we have to find out if it supports aborts by trying one.
3444 */
3445 spin_lock_irqsave(&h->devlock, flags);
3446 rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
3447 if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
3448 entry >= 0 && entry < h->ndevices) {
3449 dev->supports_aborts = h->dev[entry]->supports_aborts;
3450 spin_unlock_irqrestore(&h->devlock, flags);
3451 } else {
3452 spin_unlock_irqrestore(&h->devlock, flags);
3453 dev->supports_aborts =
3454 hpsa_device_supports_aborts(h, scsi3addr);
3455 if (dev->supports_aborts < 0)
3456 dev->supports_aborts = 0;
3457 }
3458}
3459
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003460static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003461 "MSA2012",
3462 "MSA2024",
3463 "MSA2312",
3464 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05003465 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05003466 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003467 NULL,
3468};
3469
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003470static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003471{
3472 int i;
3473
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003474 for (i = 0; ext_target_model[i]; i++)
3475 if (strncmp(device->model, ext_target_model[i],
3476 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003477 return 1;
3478 return 0;
3479}
3480
3481/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003482 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003483 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
3484 * Logical drive target and lun are assigned at this time, but
3485 * physical device lun and target assignment are deferred (assigned
3486 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
3487 */
3488static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003489 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003490{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003491 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003492
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003493 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
3494 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003495 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003496 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003497 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003498 /* defer target, lun assignment for physical devices */
3499 hpsa_set_bus_target_lun(device, 2, -1, -1);
3500 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003501 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003502 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003503 if (is_ext_target(h, device)) {
3504 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003505 * and match target/lun numbers box
3506 * reports, other smart array, bus 0, target 0, match lunid
3507 */
3508 hpsa_set_bus_target_lun(device,
3509 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
3510 return;
3511 }
3512 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003513}
3514
3515/*
3516 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003517 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003518 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
3519 * it for some reason. *tmpdevice is the target we're adding,
3520 * this_device is a pointer into the current element of currentsd[]
3521 * that we're building up in update_scsi_devices(), below.
3522 * lunzerobits is a bitmap that tracks which targets already have a
3523 * lun 0 assigned.
3524 * Returns 1 if an enclosure was added, 0 if not.
3525 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003526static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003527 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003528 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003529 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003530{
3531 unsigned char scsi3addr[8];
3532
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003533 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003534 return 0; /* There is already a lun 0 on this target. */
3535
3536 if (!is_logical_dev_addr_mode(lunaddrbytes))
3537 return 0; /* It's the logical targets that may lack lun 0. */
3538
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003539 if (!is_ext_target(h, tmpdevice))
3540 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003541
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003542 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003543 return 0;
3544
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06003545 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003546 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003547 if (is_hba_lunid(scsi3addr))
3548 return 0; /* Don't add the RAID controller here. */
3549
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003550 if (is_scsi_rev_5(h))
3551 return 0; /* p1210m doesn't need to do this. */
3552
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003553 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06003554 dev_warn(&h->pdev->dev, "Maximum number of external "
3555 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003556 "configuration.");
3557 return 0;
3558 }
3559
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003560 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003561 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003562 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003563 hpsa_set_bus_target_lun(this_device,
3564 tmpdevice->bus, tmpdevice->target, 0);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003565 hpsa_update_device_supports_aborts(h, this_device, scsi3addr);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003566 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003567 return 1;
3568}
3569
3570/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06003571 * Get address of physical disk used for an ioaccel2 mode command:
3572 * 1. Extract ioaccel2 handle from the command.
3573 * 2. Find a matching ioaccel2 handle from list of physical disks.
3574 * 3. Return:
3575 * 1 and set scsi3addr to address of matching physical
3576 * 0 if no matching physical disk was found.
3577 */
3578static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
3579 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
3580{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003581 struct io_accel2_cmd *c2 =
3582 &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
3583 unsigned long flags;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003584 int i;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003585
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003586 spin_lock_irqsave(&h->devlock, flags);
3587 for (i = 0; i < h->ndevices; i++)
3588 if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
3589 memcpy(scsi3addr, h->dev[i]->scsi3addr,
3590 sizeof(h->dev[i]->scsi3addr));
3591 spin_unlock_irqrestore(&h->devlock, flags);
3592 return 1;
3593 }
3594 spin_unlock_irqrestore(&h->devlock, flags);
3595 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06003596}
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003597
Scott Teel54b6e9e2014-02-18 13:56:45 -06003598/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003599 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
3600 * logdev. The number of luns in physdev and logdev are returned in
3601 * *nphysicals and *nlogicals, respectively.
3602 * Returns 0 on success, -1 otherwise.
3603 */
3604static int hpsa_gather_lun_info(struct ctlr_info *h,
Don Brace03383732015-01-23 16:43:30 -06003605 struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003606 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003607{
Don Brace03383732015-01-23 16:43:30 -06003608 if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003609 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3610 return -1;
3611 }
Don Brace03383732015-01-23 16:43:30 -06003612 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003613 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
Don Brace03383732015-01-23 16:43:30 -06003614 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
3615 HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003616 *nphysicals = HPSA_MAX_PHYS_LUN;
3617 }
Don Brace03383732015-01-23 16:43:30 -06003618 if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003619 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3620 return -1;
3621 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06003622 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003623 /* Reject Logicals in excess of our max capability. */
3624 if (*nlogicals > HPSA_MAX_LUN) {
3625 dev_warn(&h->pdev->dev,
3626 "maximum logical LUNs (%d) exceeded. "
3627 "%d LUNs ignored.\n", HPSA_MAX_LUN,
3628 *nlogicals - HPSA_MAX_LUN);
3629 *nlogicals = HPSA_MAX_LUN;
3630 }
3631 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3632 dev_warn(&h->pdev->dev,
3633 "maximum logical + physical LUNs (%d) exceeded. "
3634 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3635 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3636 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3637 }
3638 return 0;
3639}
3640
Don Brace42a91642014-11-14 17:26:27 -06003641static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
3642 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003643 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003644 struct ReportLUNdata *logdev_list)
3645{
3646 /* Helper function, figure out where the LUN ID info is coming from
3647 * given index i, lists of physical and logical devices, where in
3648 * the list the raid controller is supposed to appear (first or last)
3649 */
3650
3651 int logicals_start = nphysicals + (raid_ctlr_position == 0);
3652 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3653
3654 if (i == raid_ctlr_position)
3655 return RAID_CTLR_LUNID;
3656
3657 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05003658 return &physdev_list->LUN[i -
3659 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003660
3661 if (i < last_device)
3662 return &logdev_list->LUN[i - nphysicals -
3663 (raid_ctlr_position == 0)][0];
3664 BUG();
3665 return NULL;
3666}
3667
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003668static int hpsa_hba_mode_enabled(struct ctlr_info *h)
3669{
3670 int rc;
Joe Handzik6e8e8082014-05-15 15:44:42 -05003671 int hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003672 struct bmic_controller_parameters *ctlr_params;
3673 ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters),
3674 GFP_KERNEL);
3675
3676 if (!ctlr_params)
Joe Handzik96444fb2014-05-15 15:44:47 -05003677 return -ENOMEM;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003678 rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params,
3679 sizeof(struct bmic_controller_parameters));
Joe Handzik96444fb2014-05-15 15:44:47 -05003680 if (rc) {
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003681 kfree(ctlr_params);
Joe Handzik96444fb2014-05-15 15:44:47 -05003682 return rc;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003683 }
Joe Handzik6e8e8082014-05-15 15:44:42 -05003684
3685 hba_mode_enabled =
3686 ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0);
3687 kfree(ctlr_params);
3688 return hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003689}
3690
Don Brace03383732015-01-23 16:43:30 -06003691/* get physical drive ioaccel handle and queue depth */
3692static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
3693 struct hpsa_scsi_dev_t *dev,
3694 u8 *lunaddrbytes,
3695 struct bmic_identify_physical_device *id_phys)
3696{
3697 int rc;
3698 struct ext_report_lun_entry *rle =
3699 (struct ext_report_lun_entry *) lunaddrbytes;
3700
3701 dev->ioaccel_handle = rle->ioaccel_handle;
Joe Handzika3144e02015-04-23 09:32:59 -05003702 if (PHYS_IOACCEL(lunaddrbytes) && dev->ioaccel_handle)
3703 dev->hba_ioaccel_enabled = 1;
Don Brace03383732015-01-23 16:43:30 -06003704 memset(id_phys, 0, sizeof(*id_phys));
3705 rc = hpsa_bmic_id_physical_device(h, lunaddrbytes,
3706 GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys,
3707 sizeof(*id_phys));
3708 if (!rc)
3709 /* Reserve space for FW operations */
3710#define DRIVE_CMDS_RESERVED_FOR_FW 2
3711#define DRIVE_QUEUE_DEPTH 7
3712 dev->queue_depth =
3713 le16_to_cpu(id_phys->current_queue_depth_limit) -
3714 DRIVE_CMDS_RESERVED_FOR_FW;
3715 else
3716 dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
3717 atomic_set(&dev->ioaccel_cmds_out, 0);
Webb Scalesd604f532015-04-23 09:35:22 -05003718 atomic_set(&dev->reset_cmds_out, 0);
Don Brace03383732015-01-23 16:43:30 -06003719}
3720
Joe Handzik8270b862015-07-18 11:12:43 -05003721static void hpsa_get_path_info(struct hpsa_scsi_dev_t *this_device,
3722 u8 *lunaddrbytes,
3723 struct bmic_identify_physical_device *id_phys)
3724{
3725 if (PHYS_IOACCEL(lunaddrbytes)
3726 && this_device->ioaccel_handle)
3727 this_device->hba_ioaccel_enabled = 1;
3728
3729 memcpy(&this_device->active_path_index,
3730 &id_phys->active_path_number,
3731 sizeof(this_device->active_path_index));
3732 memcpy(&this_device->path_map,
3733 &id_phys->redundant_path_present_map,
3734 sizeof(this_device->path_map));
3735 memcpy(&this_device->box,
3736 &id_phys->alternate_paths_phys_box_on_port,
3737 sizeof(this_device->box));
3738 memcpy(&this_device->phys_connector,
3739 &id_phys->alternate_paths_phys_connector,
3740 sizeof(this_device->phys_connector));
3741 memcpy(&this_device->bay,
3742 &id_phys->phys_bay_in_box,
3743 sizeof(this_device->bay));
3744}
3745
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003746static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
3747{
3748 /* the idea here is we could get notified
3749 * that some devices have changed, so we do a report
3750 * physical luns and report logical luns cmd, and adjust
3751 * our list of devices accordingly.
3752 *
3753 * The scsi3addr's of devices won't change so long as the
3754 * adapter is not reset. That means we can rescan and
3755 * tell which devices we already know about, vs. new
3756 * devices, vs. disappearing devices.
3757 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06003758 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003759 struct ReportLUNdata *logdev_list = NULL;
Don Brace03383732015-01-23 16:43:30 -06003760 struct bmic_identify_physical_device *id_phys = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003761 u32 nphysicals = 0;
3762 u32 nlogicals = 0;
3763 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003764 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3765 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003766 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003767 int raid_ctlr_position;
Joe Handzik2bbf5c72014-05-21 11:16:01 -05003768 int rescan_hba_mode;
Scott Teelaca4a522012-01-19 14:01:19 -06003769 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003770
Scott Teelcfe5bad2011-10-26 16:21:07 -05003771 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06003772 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
3773 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003774 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
Don Brace03383732015-01-23 16:43:30 -06003775 id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003776
Don Brace03383732015-01-23 16:43:30 -06003777 if (!currentsd || !physdev_list || !logdev_list ||
3778 !tmpdevice || !id_phys) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003779 dev_err(&h->pdev->dev, "out of memory\n");
3780 goto out;
3781 }
3782 memset(lunzerobits, 0, sizeof(lunzerobits));
3783
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003784 rescan_hba_mode = hpsa_hba_mode_enabled(h);
Joe Handzik96444fb2014-05-15 15:44:47 -05003785 if (rescan_hba_mode < 0)
3786 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003787
3788 if (!h->hba_mode_enabled && rescan_hba_mode)
3789 dev_warn(&h->pdev->dev, "HBA mode enabled\n");
3790 else if (h->hba_mode_enabled && !rescan_hba_mode)
3791 dev_warn(&h->pdev->dev, "HBA mode disabled\n");
3792
3793 h->hba_mode_enabled = rescan_hba_mode;
3794
Don Brace03383732015-01-23 16:43:30 -06003795 if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
3796 logdev_list, &nlogicals))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003797 goto out;
3798
Scott Teelaca4a522012-01-19 14:01:19 -06003799 /* We might see up to the maximum number of logical and physical disks
3800 * plus external target devices, and a device for the local RAID
3801 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003802 */
Scott Teelaca4a522012-01-19 14:01:19 -06003803 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003804
3805 /* Allocate the per device structures */
3806 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05003807 if (i >= HPSA_MAX_DEVICES) {
3808 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3809 " %d devices ignored.\n", HPSA_MAX_DEVICES,
3810 ndevs_to_allocate - HPSA_MAX_DEVICES);
3811 break;
3812 }
3813
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003814 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3815 if (!currentsd[i]) {
3816 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3817 __FILE__, __LINE__);
3818 goto out;
3819 }
3820 ndev_allocated++;
3821 }
3822
Stephen M. Cameron86452912014-05-29 10:53:49 -05003823 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003824 raid_ctlr_position = 0;
3825 else
3826 raid_ctlr_position = nphysicals + nlogicals;
3827
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003828 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003829 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003830 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003831 u8 *lunaddrbytes, is_OBDR = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003832
3833 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003834 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3835 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003836
3837 /* skip masked non-disk devices */
3838 if (MASKED_DEVICE(lunaddrbytes))
3839 if (i < nphysicals + (raid_ctlr_position == 0) &&
3840 NON_DISK_PHYS_DEV(lunaddrbytes))
3841 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003842
3843 /* Get device type, vendor, model, device id */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003844 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3845 &is_OBDR))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003846 continue; /* skip it if we can't talk to it. */
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003847 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05003848 hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003849 this_device = currentsd[ncurrent];
3850
3851 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003852 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003853 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3854 * is nonetheless an enclosure device there. We have to
3855 * present that otherwise linux won't find anything if
3856 * there is no lun 0.
3857 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003858 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003859 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003860 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003861 ncurrent++;
3862 this_device = currentsd[ncurrent];
3863 }
3864
3865 *this_device = *tmpdevice;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003866
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003867 /* do not expose masked devices */
3868 if (MASKED_DEVICE(lunaddrbytes) &&
3869 i < nphysicals + (raid_ctlr_position == 0)) {
3870 if (h->hba_mode_enabled)
3871 dev_warn(&h->pdev->dev,
3872 "Masked physical device detected\n");
3873 this_device->expose_state = HPSA_DO_NOT_EXPOSE;
3874 } else {
3875 this_device->expose_state =
3876 HPSA_SG_ATTACH | HPSA_ULD_ATTACH;
3877 }
3878
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003879 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003880 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003881 /* We don't *really* support actual CD-ROM devices,
3882 * just "One Button Disaster Recovery" tape drive
3883 * which temporarily pretends to be a CD-ROM drive.
3884 * So we check that the device is really an OBDR tape
3885 * device by checking for "$DR-10" in bytes 43-48 of
3886 * the inquiry data.
3887 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003888 if (is_OBDR)
3889 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003890 break;
3891 case TYPE_DISK:
Joe Handzikecf418d12015-04-23 09:33:04 -05003892 if (i >= nphysicals) {
3893 ncurrent++;
3894 break;
3895 }
3896
3897 if (h->hba_mode_enabled)
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003898 /* never use raid mapper in HBA mode */
3899 this_device->offload_enabled = 0;
Joe Handzikecf418d12015-04-23 09:33:04 -05003900 else if (!(h->transMethod & CFGTBL_Trans_io_accel1 ||
3901 h->transMethod & CFGTBL_Trans_io_accel2))
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003902 break;
Joe Handzikecf418d12015-04-23 09:33:04 -05003903 hpsa_get_ioaccel_drive_info(h, this_device,
3904 lunaddrbytes, id_phys);
Joe Handzik8270b862015-07-18 11:12:43 -05003905 hpsa_get_path_info(this_device, lunaddrbytes, id_phys);
Joe Handzikecf418d12015-04-23 09:33:04 -05003906 atomic_set(&this_device->ioaccel_cmds_out, 0);
3907 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003908 break;
3909 case TYPE_TAPE:
3910 case TYPE_MEDIUM_CHANGER:
3911 ncurrent++;
3912 break;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05003913 case TYPE_ENCLOSURE:
3914 if (h->hba_mode_enabled)
3915 ncurrent++;
3916 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003917 case TYPE_RAID:
3918 /* Only present the Smartarray HBA as a RAID controller.
3919 * If it's a RAID controller other than the HBA itself
3920 * (an external RAID controller, MSA500 or similar)
3921 * don't present it.
3922 */
3923 if (!is_hba_lunid(lunaddrbytes))
3924 break;
3925 ncurrent++;
3926 break;
3927 default:
3928 break;
3929 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003930 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003931 break;
3932 }
3933 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3934out:
3935 kfree(tmpdevice);
3936 for (i = 0; i < ndev_allocated; i++)
3937 kfree(currentsd[i]);
3938 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003939 kfree(physdev_list);
3940 kfree(logdev_list);
Don Brace03383732015-01-23 16:43:30 -06003941 kfree(id_phys);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003942}
3943
Webb Scalesec5cbf02015-01-23 16:44:45 -06003944static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3945 struct scatterlist *sg)
3946{
3947 u64 addr64 = (u64) sg_dma_address(sg);
3948 unsigned int len = sg_dma_len(sg);
3949
3950 desc->Addr = cpu_to_le64(addr64);
3951 desc->Len = cpu_to_le32(len);
3952 desc->Ext = 0;
3953}
3954
Webb Scalesc7ee65b2015-01-23 16:42:17 -06003955/*
3956 * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003957 * dma mapping and fills in the scatter gather entries of the
3958 * hpsa command, cp.
3959 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003960static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003961 struct CommandList *cp,
3962 struct scsi_cmnd *cmd)
3963{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003964 struct scatterlist *sg;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003965 int use_sg, i, sg_limit, chained, last_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003966 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003967
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003968 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003969
3970 use_sg = scsi_dma_map(cmd);
3971 if (use_sg < 0)
3972 return use_sg;
3973
3974 if (!use_sg)
3975 goto sglist_finished;
3976
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003977 /*
3978 * If the number of entries is greater than the max for a single list,
3979 * then we have a chained list; we will set up all but one entry in the
3980 * first list (the last entry is saved for link information);
3981 * otherwise, we don't have a chained list and we'll set up at each of
3982 * the entries in the one list.
3983 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003984 curr_sg = cp->SG;
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003985 chained = use_sg > h->max_cmd_sg_entries;
3986 sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg;
3987 last_sg = scsi_sg_count(cmd) - 1;
3988 scsi_for_each_sg(cmd, sg, sg_limit, i) {
Webb Scalesec5cbf02015-01-23 16:44:45 -06003989 hpsa_set_sg_descriptor(curr_sg, sg);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003990 curr_sg++;
3991 }
Webb Scalesec5cbf02015-01-23 16:44:45 -06003992
Webb Scalesb3a7ba72015-04-23 09:34:27 -05003993 if (chained) {
3994 /*
3995 * Continue with the chained list. Set curr_sg to the chained
3996 * list. Modify the limit to the total count less the entries
3997 * we've already set up. Resume the scan at the list entry
3998 * where the previous loop left off.
3999 */
4000 curr_sg = h->cmd_sg_list[cp->cmdindex];
4001 sg_limit = use_sg - sg_limit;
4002 for_each_sg(sg, sg, sg_limit, i) {
4003 hpsa_set_sg_descriptor(curr_sg, sg);
4004 curr_sg++;
4005 }
4006 }
4007
Webb Scalesec5cbf02015-01-23 16:44:45 -06004008 /* Back the pointer up to the last entry and mark it as "last". */
Webb Scalesb3a7ba72015-04-23 09:34:27 -05004009 (curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004010
4011 if (use_sg + chained > h->maxSG)
4012 h->maxSG = use_sg + chained;
4013
4014 if (chained) {
4015 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004016 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06004017 if (hpsa_map_sg_chain_block(h, cp)) {
4018 scsi_dma_unmap(cmd);
4019 return -1;
4020 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004021 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004022 }
4023
4024sglist_finished:
4025
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004026 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06004027 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004028 return 0;
4029}
4030
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004031#define IO_ACCEL_INELIGIBLE (1)
4032static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
4033{
4034 int is_write = 0;
4035 u32 block;
4036 u32 block_cnt;
4037
4038 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
4039 switch (cdb[0]) {
4040 case WRITE_6:
4041 case WRITE_12:
4042 is_write = 1;
4043 case READ_6:
4044 case READ_12:
4045 if (*cdb_len == 6) {
4046 block = (((u32) cdb[2]) << 8) | cdb[3];
4047 block_cnt = cdb[4];
4048 } else {
4049 BUG_ON(*cdb_len != 12);
4050 block = (((u32) cdb[2]) << 24) |
4051 (((u32) cdb[3]) << 16) |
4052 (((u32) cdb[4]) << 8) |
4053 cdb[5];
4054 block_cnt =
4055 (((u32) cdb[6]) << 24) |
4056 (((u32) cdb[7]) << 16) |
4057 (((u32) cdb[8]) << 8) |
4058 cdb[9];
4059 }
4060 if (block_cnt > 0xffff)
4061 return IO_ACCEL_INELIGIBLE;
4062
4063 cdb[0] = is_write ? WRITE_10 : READ_10;
4064 cdb[1] = 0;
4065 cdb[2] = (u8) (block >> 24);
4066 cdb[3] = (u8) (block >> 16);
4067 cdb[4] = (u8) (block >> 8);
4068 cdb[5] = (u8) (block);
4069 cdb[6] = 0;
4070 cdb[7] = (u8) (block_cnt >> 8);
4071 cdb[8] = (u8) (block_cnt);
4072 cdb[9] = 0;
4073 *cdb_len = 10;
4074 break;
4075 }
4076 return 0;
4077}
4078
Scott Teelc3497752014-02-18 13:56:34 -06004079static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004080 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004081 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Matt Gatese1f7de02014-02-18 13:55:17 -06004082{
4083 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06004084 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
4085 unsigned int len;
4086 unsigned int total_len = 0;
4087 struct scatterlist *sg;
4088 u64 addr64;
4089 int use_sg, i;
4090 struct SGDescriptor *curr_sg;
4091 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
4092
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004093 /* TODO: implement chaining support */
Don Brace03383732015-01-23 16:43:30 -06004094 if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
4095 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004096 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004097 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004098
Matt Gatese1f7de02014-02-18 13:55:17 -06004099 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
4100
Don Brace03383732015-01-23 16:43:30 -06004101 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4102 atomic_dec(&phys_disk->ioaccel_cmds_out);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004103 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004104 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004105
Matt Gatese1f7de02014-02-18 13:55:17 -06004106 c->cmd_type = CMD_IOACCEL1;
4107
4108 /* Adjust the DMA address to point to the accelerated command buffer */
4109 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
4110 (c->cmdindex * sizeof(*cp));
4111 BUG_ON(c->busaddr & 0x0000007F);
4112
4113 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004114 if (use_sg < 0) {
4115 atomic_dec(&phys_disk->ioaccel_cmds_out);
Matt Gatese1f7de02014-02-18 13:55:17 -06004116 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004117 }
Matt Gatese1f7de02014-02-18 13:55:17 -06004118
4119 if (use_sg) {
4120 curr_sg = cp->SG;
4121 scsi_for_each_sg(cmd, sg, use_sg, i) {
4122 addr64 = (u64) sg_dma_address(sg);
4123 len = sg_dma_len(sg);
4124 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004125 curr_sg->Addr = cpu_to_le64(addr64);
4126 curr_sg->Len = cpu_to_le32(len);
4127 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06004128 curr_sg++;
4129 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004130 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06004131
4132 switch (cmd->sc_data_direction) {
4133 case DMA_TO_DEVICE:
4134 control |= IOACCEL1_CONTROL_DATA_OUT;
4135 break;
4136 case DMA_FROM_DEVICE:
4137 control |= IOACCEL1_CONTROL_DATA_IN;
4138 break;
4139 case DMA_NONE:
4140 control |= IOACCEL1_CONTROL_NODATAXFER;
4141 break;
4142 default:
4143 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4144 cmd->sc_data_direction);
4145 BUG();
4146 break;
4147 }
4148 } else {
4149 control |= IOACCEL1_CONTROL_NODATAXFER;
4150 }
4151
Scott Teelc3497752014-02-18 13:56:34 -06004152 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06004153 /* Fill out the command structure to submit */
Don Brace2b08b3e2015-01-23 16:41:09 -06004154 cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
4155 cp->transfer_len = cpu_to_le32(total_len);
4156 cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
4157 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
4158 cp->control = cpu_to_le32(control);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004159 memcpy(cp->CDB, cdb, cdb_len);
4160 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06004161 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004162 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06004163 return 0;
4164}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004165
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004166/*
4167 * Queue a command directly to a device behind the controller using the
4168 * I/O accelerator path.
4169 */
4170static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
4171 struct CommandList *c)
4172{
4173 struct scsi_cmnd *cmd = c->scsi_cmd;
4174 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4175
Don Brace03383732015-01-23 16:43:30 -06004176 c->phys_disk = dev;
4177
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004178 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004179 cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004180}
4181
Scott Teeldd0e19f2014-02-18 13:57:31 -06004182/*
4183 * Set encryption parameters for the ioaccel2 request
4184 */
4185static void set_encrypt_ioaccel2(struct ctlr_info *h,
4186 struct CommandList *c, struct io_accel2_cmd *cp)
4187{
4188 struct scsi_cmnd *cmd = c->scsi_cmd;
4189 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4190 struct raid_map_data *map = &dev->raid_map;
4191 u64 first_block;
4192
Scott Teeldd0e19f2014-02-18 13:57:31 -06004193 /* Are we doing encryption on this device */
Don Brace2b08b3e2015-01-23 16:41:09 -06004194 if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
Scott Teeldd0e19f2014-02-18 13:57:31 -06004195 return;
4196 /* Set the data encryption key index. */
4197 cp->dekindex = map->dekindex;
4198
4199 /* Set the encryption enable flag, encoded into direction field. */
4200 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
4201
4202 /* Set encryption tweak values based on logical block address
4203 * If block size is 512, tweak value is LBA.
4204 * For other block sizes, tweak is (LBA * block size)/ 512)
4205 */
4206 switch (cmd->cmnd[0]) {
4207 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
4208 case WRITE_6:
4209 case READ_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004210 first_block = get_unaligned_be16(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004211 break;
4212 case WRITE_10:
4213 case READ_10:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004214 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
4215 case WRITE_12:
4216 case READ_12:
Don Brace2b08b3e2015-01-23 16:41:09 -06004217 first_block = get_unaligned_be32(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004218 break;
4219 case WRITE_16:
4220 case READ_16:
Don Brace2b08b3e2015-01-23 16:41:09 -06004221 first_block = get_unaligned_be64(&cmd->cmnd[2]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004222 break;
4223 default:
4224 dev_err(&h->pdev->dev,
Don Brace2b08b3e2015-01-23 16:41:09 -06004225 "ERROR: %s: size (0x%x) not supported for encryption\n",
4226 __func__, cmd->cmnd[0]);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004227 BUG();
4228 break;
4229 }
Don Brace2b08b3e2015-01-23 16:41:09 -06004230
4231 if (le32_to_cpu(map->volume_blk_size) != 512)
4232 first_block = first_block *
4233 le32_to_cpu(map->volume_blk_size)/512;
4234
4235 cp->tweak_lower = cpu_to_le32(first_block);
4236 cp->tweak_upper = cpu_to_le32(first_block >> 32);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004237}
4238
Scott Teelc3497752014-02-18 13:56:34 -06004239static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
4240 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004241 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004242{
4243 struct scsi_cmnd *cmd = c->scsi_cmd;
4244 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
4245 struct ioaccel2_sg_element *curr_sg;
4246 int use_sg, i;
4247 struct scatterlist *sg;
4248 u64 addr64;
4249 u32 len;
4250 u32 total_len = 0;
4251
Webb Scalesd9a729f2015-04-23 09:33:27 -05004252 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Scott Teelc3497752014-02-18 13:56:34 -06004253
Don Brace03383732015-01-23 16:43:30 -06004254 if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
4255 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004256 return IO_ACCEL_INELIGIBLE;
Don Brace03383732015-01-23 16:43:30 -06004257 }
4258
Scott Teelc3497752014-02-18 13:56:34 -06004259 c->cmd_type = CMD_IOACCEL2;
4260 /* Adjust the DMA address to point to the accelerated command buffer */
4261 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
4262 (c->cmdindex * sizeof(*cp));
4263 BUG_ON(c->busaddr & 0x0000007F);
4264
4265 memset(cp, 0, sizeof(*cp));
4266 cp->IU_type = IOACCEL2_IU_TYPE;
4267
4268 use_sg = scsi_dma_map(cmd);
Don Brace03383732015-01-23 16:43:30 -06004269 if (use_sg < 0) {
4270 atomic_dec(&phys_disk->ioaccel_cmds_out);
Scott Teelc3497752014-02-18 13:56:34 -06004271 return use_sg;
Don Brace03383732015-01-23 16:43:30 -06004272 }
Scott Teelc3497752014-02-18 13:56:34 -06004273
4274 if (use_sg) {
Scott Teelc3497752014-02-18 13:56:34 -06004275 curr_sg = cp->sg;
Webb Scalesd9a729f2015-04-23 09:33:27 -05004276 if (use_sg > h->ioaccel_maxsg) {
4277 addr64 = le64_to_cpu(
4278 h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
4279 curr_sg->address = cpu_to_le64(addr64);
4280 curr_sg->length = 0;
4281 curr_sg->reserved[0] = 0;
4282 curr_sg->reserved[1] = 0;
4283 curr_sg->reserved[2] = 0;
4284 curr_sg->chain_indicator = 0x80;
4285
4286 curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
4287 }
Scott Teelc3497752014-02-18 13:56:34 -06004288 scsi_for_each_sg(cmd, sg, use_sg, i) {
4289 addr64 = (u64) sg_dma_address(sg);
4290 len = sg_dma_len(sg);
4291 total_len += len;
4292 curr_sg->address = cpu_to_le64(addr64);
4293 curr_sg->length = cpu_to_le32(len);
4294 curr_sg->reserved[0] = 0;
4295 curr_sg->reserved[1] = 0;
4296 curr_sg->reserved[2] = 0;
4297 curr_sg->chain_indicator = 0;
4298 curr_sg++;
4299 }
4300
4301 switch (cmd->sc_data_direction) {
4302 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004303 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4304 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06004305 break;
4306 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004307 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4308 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06004309 break;
4310 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06004311 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4312 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004313 break;
4314 default:
4315 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4316 cmd->sc_data_direction);
4317 BUG();
4318 break;
4319 }
4320 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06004321 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4322 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06004323 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06004324
4325 /* Set encryption parameters, if necessary */
4326 set_encrypt_ioaccel2(h, c, cp);
4327
Don Brace2b08b3e2015-01-23 16:41:09 -06004328 cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
Don Bracef2405db2015-01-23 16:43:09 -06004329 cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
Scott Teelc3497752014-02-18 13:56:34 -06004330 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06004331
Scott Teelc3497752014-02-18 13:56:34 -06004332 cp->data_len = cpu_to_le32(total_len);
4333 cp->err_ptr = cpu_to_le64(c->busaddr +
4334 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004335 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06004336
Webb Scalesd9a729f2015-04-23 09:33:27 -05004337 /* fill in sg elements */
4338 if (use_sg > h->ioaccel_maxsg) {
4339 cp->sg_count = 1;
4340 if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
4341 atomic_dec(&phys_disk->ioaccel_cmds_out);
4342 scsi_dma_unmap(cmd);
4343 return -1;
4344 }
4345 } else
4346 cp->sg_count = (u8) use_sg;
4347
Scott Teelc3497752014-02-18 13:56:34 -06004348 enqueue_cmd_and_start_io(h, c);
4349 return 0;
4350}
4351
4352/*
4353 * Queue a command to the correct I/O accelerator path.
4354 */
4355static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
4356 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004357 u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
Scott Teelc3497752014-02-18 13:56:34 -06004358{
Don Brace03383732015-01-23 16:43:30 -06004359 /* Try to honor the device's queue depth */
4360 if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
4361 phys_disk->queue_depth) {
4362 atomic_dec(&phys_disk->ioaccel_cmds_out);
4363 return IO_ACCEL_INELIGIBLE;
4364 }
Scott Teelc3497752014-02-18 13:56:34 -06004365 if (h->transMethod & CFGTBL_Trans_io_accel1)
4366 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004367 cdb, cdb_len, scsi3addr,
4368 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004369 else
4370 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
Don Brace03383732015-01-23 16:43:30 -06004371 cdb, cdb_len, scsi3addr,
4372 phys_disk);
Scott Teelc3497752014-02-18 13:56:34 -06004373}
4374
Scott Teel6b80b182014-02-18 13:56:55 -06004375static void raid_map_helper(struct raid_map_data *map,
4376 int offload_to_mirror, u32 *map_index, u32 *current_group)
4377{
4378 if (offload_to_mirror == 0) {
4379 /* use physical disk in the first mirrored group. */
Don Brace2b08b3e2015-01-23 16:41:09 -06004380 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004381 return;
4382 }
4383 do {
4384 /* determine mirror group that *map_index indicates */
Don Brace2b08b3e2015-01-23 16:41:09 -06004385 *current_group = *map_index /
4386 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004387 if (offload_to_mirror == *current_group)
4388 continue;
Don Brace2b08b3e2015-01-23 16:41:09 -06004389 if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
Scott Teel6b80b182014-02-18 13:56:55 -06004390 /* select map index from next group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004391 *map_index += le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004392 (*current_group)++;
4393 } else {
4394 /* select map index from first group */
Don Brace2b08b3e2015-01-23 16:41:09 -06004395 *map_index %= le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004396 *current_group = 0;
4397 }
4398 } while (offload_to_mirror != *current_group);
4399}
4400
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004401/*
4402 * Attempt to perform offload RAID mapping for a logical volume I/O.
4403 */
4404static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4405 struct CommandList *c)
4406{
4407 struct scsi_cmnd *cmd = c->scsi_cmd;
4408 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4409 struct raid_map_data *map = &dev->raid_map;
4410 struct raid_map_disk_data *dd = &map->data[0];
4411 int is_write = 0;
4412 u32 map_index;
4413 u64 first_block, last_block;
4414 u32 block_cnt;
4415 u32 blocks_per_row;
4416 u64 first_row, last_row;
4417 u32 first_row_offset, last_row_offset;
4418 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06004419 u64 r0_first_row, r0_last_row;
4420 u32 r5or6_blocks_per_row;
4421 u64 r5or6_first_row, r5or6_last_row;
4422 u32 r5or6_first_row_offset, r5or6_last_row_offset;
4423 u32 r5or6_first_column, r5or6_last_column;
4424 u32 total_disks_per_row;
4425 u32 stripesize;
4426 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004427 u32 map_row;
4428 u32 disk_handle;
4429 u64 disk_block;
4430 u32 disk_block_cnt;
4431 u8 cdb[16];
4432 u8 cdb_len;
Don Brace2b08b3e2015-01-23 16:41:09 -06004433 u16 strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004434#if BITS_PER_LONG == 32
4435 u64 tmpdiv;
4436#endif
Scott Teel6b80b182014-02-18 13:56:55 -06004437 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004438
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004439 /* check for valid opcode, get LBA and block count */
4440 switch (cmd->cmnd[0]) {
4441 case WRITE_6:
4442 is_write = 1;
4443 case READ_6:
4444 first_block =
4445 (((u64) cmd->cmnd[2]) << 8) |
4446 cmd->cmnd[3];
4447 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05004448 if (block_cnt == 0)
4449 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004450 break;
4451 case WRITE_10:
4452 is_write = 1;
4453 case READ_10:
4454 first_block =
4455 (((u64) cmd->cmnd[2]) << 24) |
4456 (((u64) cmd->cmnd[3]) << 16) |
4457 (((u64) cmd->cmnd[4]) << 8) |
4458 cmd->cmnd[5];
4459 block_cnt =
4460 (((u32) cmd->cmnd[7]) << 8) |
4461 cmd->cmnd[8];
4462 break;
4463 case WRITE_12:
4464 is_write = 1;
4465 case READ_12:
4466 first_block =
4467 (((u64) cmd->cmnd[2]) << 24) |
4468 (((u64) cmd->cmnd[3]) << 16) |
4469 (((u64) cmd->cmnd[4]) << 8) |
4470 cmd->cmnd[5];
4471 block_cnt =
4472 (((u32) cmd->cmnd[6]) << 24) |
4473 (((u32) cmd->cmnd[7]) << 16) |
4474 (((u32) cmd->cmnd[8]) << 8) |
4475 cmd->cmnd[9];
4476 break;
4477 case WRITE_16:
4478 is_write = 1;
4479 case READ_16:
4480 first_block =
4481 (((u64) cmd->cmnd[2]) << 56) |
4482 (((u64) cmd->cmnd[3]) << 48) |
4483 (((u64) cmd->cmnd[4]) << 40) |
4484 (((u64) cmd->cmnd[5]) << 32) |
4485 (((u64) cmd->cmnd[6]) << 24) |
4486 (((u64) cmd->cmnd[7]) << 16) |
4487 (((u64) cmd->cmnd[8]) << 8) |
4488 cmd->cmnd[9];
4489 block_cnt =
4490 (((u32) cmd->cmnd[10]) << 24) |
4491 (((u32) cmd->cmnd[11]) << 16) |
4492 (((u32) cmd->cmnd[12]) << 8) |
4493 cmd->cmnd[13];
4494 break;
4495 default:
4496 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4497 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004498 last_block = first_block + block_cnt - 1;
4499
4500 /* check for write to non-RAID-0 */
4501 if (is_write && dev->raid_level != 0)
4502 return IO_ACCEL_INELIGIBLE;
4503
4504 /* check for invalid block or wraparound */
Don Brace2b08b3e2015-01-23 16:41:09 -06004505 if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
4506 last_block < first_block)
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004507 return IO_ACCEL_INELIGIBLE;
4508
4509 /* calculate stripe information for the request */
Don Brace2b08b3e2015-01-23 16:41:09 -06004510 blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
4511 le16_to_cpu(map->strip_size);
4512 strip_size = le16_to_cpu(map->strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004513#if BITS_PER_LONG == 32
4514 tmpdiv = first_block;
4515 (void) do_div(tmpdiv, blocks_per_row);
4516 first_row = tmpdiv;
4517 tmpdiv = last_block;
4518 (void) do_div(tmpdiv, blocks_per_row);
4519 last_row = tmpdiv;
4520 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4521 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4522 tmpdiv = first_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004523 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004524 first_column = tmpdiv;
4525 tmpdiv = last_row_offset;
Don Brace2b08b3e2015-01-23 16:41:09 -06004526 (void) do_div(tmpdiv, strip_size);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004527 last_column = tmpdiv;
4528#else
4529 first_row = first_block / blocks_per_row;
4530 last_row = last_block / blocks_per_row;
4531 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4532 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
Don Brace2b08b3e2015-01-23 16:41:09 -06004533 first_column = first_row_offset / strip_size;
4534 last_column = last_row_offset / strip_size;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004535#endif
4536
4537 /* if this isn't a single row/column then give to the controller */
4538 if ((first_row != last_row) || (first_column != last_column))
4539 return IO_ACCEL_INELIGIBLE;
4540
4541 /* proceeding with driver mapping */
Don Brace2b08b3e2015-01-23 16:41:09 -06004542 total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
4543 le16_to_cpu(map->metadata_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004544 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004545 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004546 map_index = (map_row * total_disks_per_row) + first_column;
4547
4548 switch (dev->raid_level) {
4549 case HPSA_RAID_0:
4550 break; /* nothing special to do */
4551 case HPSA_RAID_1:
4552 /* Handles load balance across RAID 1 members.
4553 * (2-drive R1 and R10 with even # of drives.)
4554 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004555 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004556 BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004557 if (dev->offload_to_mirror)
Don Brace2b08b3e2015-01-23 16:41:09 -06004558 map_index += le16_to_cpu(map->data_disks_per_row);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004559 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06004560 break;
4561 case HPSA_RAID_ADM:
4562 /* Handles N-way mirrors (R1-ADM)
4563 * and R10 with # of drives divisible by 3.)
4564 */
Don Brace2b08b3e2015-01-23 16:41:09 -06004565 BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
Scott Teel6b80b182014-02-18 13:56:55 -06004566
4567 offload_to_mirror = dev->offload_to_mirror;
4568 raid_map_helper(map, offload_to_mirror,
4569 &map_index, &current_group);
4570 /* set mirror group to use next time */
4571 offload_to_mirror =
Don Brace2b08b3e2015-01-23 16:41:09 -06004572 (offload_to_mirror >=
4573 le16_to_cpu(map->layout_map_count) - 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004574 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06004575 dev->offload_to_mirror = offload_to_mirror;
4576 /* Avoid direct use of dev->offload_to_mirror within this
4577 * function since multiple threads might simultaneously
4578 * increment it beyond the range of dev->layout_map_count -1.
4579 */
4580 break;
4581 case HPSA_RAID_5:
4582 case HPSA_RAID_6:
Don Brace2b08b3e2015-01-23 16:41:09 -06004583 if (le16_to_cpu(map->layout_map_count) <= 1)
Scott Teel6b80b182014-02-18 13:56:55 -06004584 break;
4585
4586 /* Verify first and last block are in same RAID group */
4587 r5or6_blocks_per_row =
Don Brace2b08b3e2015-01-23 16:41:09 -06004588 le16_to_cpu(map->strip_size) *
4589 le16_to_cpu(map->data_disks_per_row);
Scott Teel6b80b182014-02-18 13:56:55 -06004590 BUG_ON(r5or6_blocks_per_row == 0);
Don Brace2b08b3e2015-01-23 16:41:09 -06004591 stripesize = r5or6_blocks_per_row *
4592 le16_to_cpu(map->layout_map_count);
Scott Teel6b80b182014-02-18 13:56:55 -06004593#if BITS_PER_LONG == 32
4594 tmpdiv = first_block;
4595 first_group = do_div(tmpdiv, stripesize);
4596 tmpdiv = first_group;
4597 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4598 first_group = tmpdiv;
4599 tmpdiv = last_block;
4600 last_group = do_div(tmpdiv, stripesize);
4601 tmpdiv = last_group;
4602 (void) do_div(tmpdiv, r5or6_blocks_per_row);
4603 last_group = tmpdiv;
4604#else
4605 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
4606 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06004607#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05004608 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06004609 return IO_ACCEL_INELIGIBLE;
4610
4611 /* Verify request is in a single row of RAID 5/6 */
4612#if BITS_PER_LONG == 32
4613 tmpdiv = first_block;
4614 (void) do_div(tmpdiv, stripesize);
4615 first_row = r5or6_first_row = r0_first_row = tmpdiv;
4616 tmpdiv = last_block;
4617 (void) do_div(tmpdiv, stripesize);
4618 r5or6_last_row = r0_last_row = tmpdiv;
4619#else
4620 first_row = r5or6_first_row = r0_first_row =
4621 first_block / stripesize;
4622 r5or6_last_row = r0_last_row = last_block / stripesize;
4623#endif
4624 if (r5or6_first_row != r5or6_last_row)
4625 return IO_ACCEL_INELIGIBLE;
4626
4627
4628 /* Verify request is in a single column */
4629#if BITS_PER_LONG == 32
4630 tmpdiv = first_block;
4631 first_row_offset = do_div(tmpdiv, stripesize);
4632 tmpdiv = first_row_offset;
4633 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
4634 r5or6_first_row_offset = first_row_offset;
4635 tmpdiv = last_block;
4636 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
4637 tmpdiv = r5or6_last_row_offset;
4638 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
4639 tmpdiv = r5or6_first_row_offset;
4640 (void) do_div(tmpdiv, map->strip_size);
4641 first_column = r5or6_first_column = tmpdiv;
4642 tmpdiv = r5or6_last_row_offset;
4643 (void) do_div(tmpdiv, map->strip_size);
4644 r5or6_last_column = tmpdiv;
4645#else
4646 first_row_offset = r5or6_first_row_offset =
4647 (u32)((first_block % stripesize) %
4648 r5or6_blocks_per_row);
4649
4650 r5or6_last_row_offset =
4651 (u32)((last_block % stripesize) %
4652 r5or6_blocks_per_row);
4653
4654 first_column = r5or6_first_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004655 r5or6_first_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004656 r5or6_last_column =
Don Brace2b08b3e2015-01-23 16:41:09 -06004657 r5or6_last_row_offset / le16_to_cpu(map->strip_size);
Scott Teel6b80b182014-02-18 13:56:55 -06004658#endif
4659 if (r5or6_first_column != r5or6_last_column)
4660 return IO_ACCEL_INELIGIBLE;
4661
4662 /* Request is eligible */
4663 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
Don Brace2b08b3e2015-01-23 16:41:09 -06004664 le16_to_cpu(map->row_cnt);
Scott Teel6b80b182014-02-18 13:56:55 -06004665
4666 map_index = (first_group *
Don Brace2b08b3e2015-01-23 16:41:09 -06004667 (le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
Scott Teel6b80b182014-02-18 13:56:55 -06004668 (map_row * total_disks_per_row) + first_column;
4669 break;
4670 default:
4671 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004672 }
Scott Teel6b80b182014-02-18 13:56:55 -06004673
Stephen Cameron07543e02015-01-23 16:44:14 -06004674 if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
4675 return IO_ACCEL_INELIGIBLE;
4676
Don Brace03383732015-01-23 16:43:30 -06004677 c->phys_disk = dev->phys_disk[map_index];
4678
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004679 disk_handle = dd[map_index].ioaccel_handle;
Don Brace2b08b3e2015-01-23 16:41:09 -06004680 disk_block = le64_to_cpu(map->disk_starting_blk) +
4681 first_row * le16_to_cpu(map->strip_size) +
4682 (first_row_offset - first_column *
4683 le16_to_cpu(map->strip_size));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004684 disk_block_cnt = block_cnt;
4685
4686 /* handle differing logical/physical block sizes */
4687 if (map->phys_blk_shift) {
4688 disk_block <<= map->phys_blk_shift;
4689 disk_block_cnt <<= map->phys_blk_shift;
4690 }
4691 BUG_ON(disk_block_cnt > 0xffff);
4692
4693 /* build the new CDB for the physical disk I/O */
4694 if (disk_block > 0xffffffff) {
4695 cdb[0] = is_write ? WRITE_16 : READ_16;
4696 cdb[1] = 0;
4697 cdb[2] = (u8) (disk_block >> 56);
4698 cdb[3] = (u8) (disk_block >> 48);
4699 cdb[4] = (u8) (disk_block >> 40);
4700 cdb[5] = (u8) (disk_block >> 32);
4701 cdb[6] = (u8) (disk_block >> 24);
4702 cdb[7] = (u8) (disk_block >> 16);
4703 cdb[8] = (u8) (disk_block >> 8);
4704 cdb[9] = (u8) (disk_block);
4705 cdb[10] = (u8) (disk_block_cnt >> 24);
4706 cdb[11] = (u8) (disk_block_cnt >> 16);
4707 cdb[12] = (u8) (disk_block_cnt >> 8);
4708 cdb[13] = (u8) (disk_block_cnt);
4709 cdb[14] = 0;
4710 cdb[15] = 0;
4711 cdb_len = 16;
4712 } else {
4713 cdb[0] = is_write ? WRITE_10 : READ_10;
4714 cdb[1] = 0;
4715 cdb[2] = (u8) (disk_block >> 24);
4716 cdb[3] = (u8) (disk_block >> 16);
4717 cdb[4] = (u8) (disk_block >> 8);
4718 cdb[5] = (u8) (disk_block);
4719 cdb[6] = 0;
4720 cdb[7] = (u8) (disk_block_cnt >> 8);
4721 cdb[8] = (u8) (disk_block_cnt);
4722 cdb[9] = 0;
4723 cdb_len = 10;
4724 }
4725 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
Don Brace03383732015-01-23 16:43:30 -06004726 dev->scsi3addr,
4727 dev->phys_disk[map_index]);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06004728}
4729
Webb Scales25163bd2015-04-23 09:32:00 -05004730/*
4731 * Submit commands down the "normal" RAID stack path
4732 * All callers to hpsa_ciss_submit must check lockup_detected
4733 * beforehand, before (opt.) and after calling cmd_alloc
4734 */
Stephen Cameron574f05d2015-01-23 16:43:20 -06004735static int hpsa_ciss_submit(struct ctlr_info *h,
4736 struct CommandList *c, struct scsi_cmnd *cmd,
4737 unsigned char scsi3addr[])
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004738{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004739 cmd->host_scribble = (unsigned char *) c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004740 c->cmd_type = CMD_SCSI;
4741 c->scsi_cmd = cmd;
4742 c->Header.ReplyQueue = 0; /* unused in simple mode */
4743 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Bracef2405db2015-01-23 16:43:09 -06004744 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004745
4746 /* Fill in the request block... */
4747
4748 c->Request.Timeout = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004749 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4750 c->Request.CDBLen = cmd->cmd_len;
4751 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004752 switch (cmd->sc_data_direction) {
4753 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004754 c->Request.type_attr_dir =
4755 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004756 break;
4757 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004758 c->Request.type_attr_dir =
4759 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004760 break;
4761 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06004762 c->Request.type_attr_dir =
4763 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004764 break;
4765 case DMA_BIDIRECTIONAL:
4766 /* This can happen if a buggy application does a scsi passthru
4767 * and sets both inlen and outlen to non-zero. ( see
4768 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4769 */
4770
Stephen M. Camerona505b862014-11-14 17:27:04 -06004771 c->Request.type_attr_dir =
4772 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004773 /* This is technically wrong, and hpsa controllers should
4774 * reject it with CMD_INVALID, which is the most correct
4775 * response, but non-fibre backends appear to let it
4776 * slide by, and give the same results as if this field
4777 * were set correctly. Either way is acceptable for
4778 * our purposes here.
4779 */
4780
4781 break;
4782
4783 default:
4784 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4785 cmd->sc_data_direction);
4786 BUG();
4787 break;
4788 }
4789
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06004790 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Webb Scales73153fe2015-04-23 09:35:04 -05004791 hpsa_cmd_resolve_and_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004792 return SCSI_MLQUEUE_HOST_BUSY;
4793 }
4794 enqueue_cmd_and_start_io(h, c);
4795 /* the cmd'll come back via intr handler in complete_scsi_command() */
4796 return 0;
4797}
4798
Stephen Cameron360c73b2015-04-23 09:32:32 -05004799static void hpsa_cmd_init(struct ctlr_info *h, int index,
4800 struct CommandList *c)
4801{
4802 dma_addr_t cmd_dma_handle, err_dma_handle;
4803
4804 /* Zero out all of commandlist except the last field, refcount */
4805 memset(c, 0, offsetof(struct CommandList, refcount));
4806 c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
4807 cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4808 c->err_info = h->errinfo_pool + index;
4809 memset(c->err_info, 0, sizeof(*c->err_info));
4810 err_dma_handle = h->errinfo_pool_dhandle
4811 + index * sizeof(*c->err_info);
4812 c->cmdindex = index;
4813 c->busaddr = (u32) cmd_dma_handle;
4814 c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4815 c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
4816 c->h = h;
Webb Scalesa58e7e52015-04-23 09:34:16 -05004817 c->scsi_cmd = SCSI_CMD_IDLE;
Stephen Cameron360c73b2015-04-23 09:32:32 -05004818}
4819
4820static void hpsa_preinitialize_commands(struct ctlr_info *h)
4821{
4822 int i;
4823
4824 for (i = 0; i < h->nr_cmds; i++) {
4825 struct CommandList *c = h->cmd_pool + i;
4826
4827 hpsa_cmd_init(h, i, c);
4828 atomic_set(&c->refcount, 0);
4829 }
4830}
4831
4832static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
4833 struct CommandList *c)
4834{
4835 dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4836
Webb Scales73153fe2015-04-23 09:35:04 -05004837 BUG_ON(c->cmdindex != index);
4838
Stephen Cameron360c73b2015-04-23 09:32:32 -05004839 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4840 memset(c->err_info, 0, sizeof(*c->err_info));
4841 c->busaddr = (u32) cmd_dma_handle;
4842}
4843
Webb Scales592a0ad2015-04-23 09:32:48 -05004844static int hpsa_ioaccel_submit(struct ctlr_info *h,
4845 struct CommandList *c, struct scsi_cmnd *cmd,
4846 unsigned char *scsi3addr)
4847{
4848 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4849 int rc = IO_ACCEL_INELIGIBLE;
4850
4851 cmd->host_scribble = (unsigned char *) c;
4852
4853 if (dev->offload_enabled) {
4854 hpsa_cmd_init(h, c->cmdindex, c);
4855 c->cmd_type = CMD_SCSI;
4856 c->scsi_cmd = cmd;
4857 rc = hpsa_scsi_ioaccel_raid_map(h, c);
4858 if (rc < 0) /* scsi_dma_map failed. */
4859 rc = SCSI_MLQUEUE_HOST_BUSY;
Joe Handzika3144e02015-04-23 09:32:59 -05004860 } else if (dev->hba_ioaccel_enabled) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004861 hpsa_cmd_init(h, c->cmdindex, c);
4862 c->cmd_type = CMD_SCSI;
4863 c->scsi_cmd = cmd;
4864 rc = hpsa_scsi_ioaccel_direct_map(h, c);
4865 if (rc < 0) /* scsi_dma_map failed. */
4866 rc = SCSI_MLQUEUE_HOST_BUSY;
4867 }
4868 return rc;
4869}
4870
Don Brace080ef1c2015-01-23 16:43:25 -06004871static void hpsa_command_resubmit_worker(struct work_struct *work)
4872{
4873 struct scsi_cmnd *cmd;
4874 struct hpsa_scsi_dev_t *dev;
Webb Scales8a0ff922015-04-23 09:34:11 -05004875 struct CommandList *c = container_of(work, struct CommandList, work);
Don Brace080ef1c2015-01-23 16:43:25 -06004876
4877 cmd = c->scsi_cmd;
4878 dev = cmd->device->hostdata;
4879 if (!dev) {
4880 cmd->result = DID_NO_CONNECT << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05004881 return hpsa_cmd_free_and_done(c->h, c, cmd);
Don Brace080ef1c2015-01-23 16:43:25 -06004882 }
Webb Scalesd604f532015-04-23 09:35:22 -05004883 if (c->reset_pending)
4884 return hpsa_cmd_resolve_and_free(c->h, c);
Webb Scalesa58e7e52015-04-23 09:34:16 -05004885 if (c->abort_pending)
4886 return hpsa_cmd_abort_and_free(c->h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05004887 if (c->cmd_type == CMD_IOACCEL2) {
4888 struct ctlr_info *h = c->h;
4889 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4890 int rc;
4891
4892 if (c2->error_data.serv_response ==
4893 IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
4894 rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
4895 if (rc == 0)
4896 return;
4897 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4898 /*
4899 * If we get here, it means dma mapping failed.
4900 * Try again via scsi mid layer, which will
4901 * then get SCSI_MLQUEUE_HOST_BUSY.
4902 */
4903 cmd->result = DID_IMM_RETRY << 16;
Webb Scales8a0ff922015-04-23 09:34:11 -05004904 return hpsa_cmd_free_and_done(h, c, cmd);
Webb Scales592a0ad2015-04-23 09:32:48 -05004905 }
4906 /* else, fall thru and resubmit down CISS path */
4907 }
4908 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05004909 hpsa_cmd_partial_init(c->h, c->cmdindex, c);
Don Brace080ef1c2015-01-23 16:43:25 -06004910 if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4911 /*
4912 * If we get here, it means dma mapping failed. Try
4913 * again via scsi mid layer, which will then get
4914 * SCSI_MLQUEUE_HOST_BUSY.
Webb Scales592a0ad2015-04-23 09:32:48 -05004915 *
4916 * hpsa_ciss_submit will have already freed c
4917 * if it encountered a dma mapping failure.
Don Brace080ef1c2015-01-23 16:43:25 -06004918 */
4919 cmd->result = DID_IMM_RETRY << 16;
4920 cmd->scsi_done(cmd);
4921 }
4922}
4923
Stephen Cameron574f05d2015-01-23 16:43:20 -06004924/* Running in struct Scsi_Host->host_lock less mode */
4925static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4926{
4927 struct ctlr_info *h;
4928 struct hpsa_scsi_dev_t *dev;
4929 unsigned char scsi3addr[8];
4930 struct CommandList *c;
4931 int rc = 0;
4932
4933 /* Get the ptr to our adapter structure out of cmd->host. */
4934 h = sdev_to_hba(cmd->device);
Webb Scales73153fe2015-04-23 09:35:04 -05004935
4936 BUG_ON(cmd->request->tag < 0);
4937
Stephen Cameron574f05d2015-01-23 16:43:20 -06004938 dev = cmd->device->hostdata;
4939 if (!dev) {
4940 cmd->result = DID_NO_CONNECT << 16;
4941 cmd->scsi_done(cmd);
4942 return 0;
4943 }
Webb Scales73153fe2015-04-23 09:35:04 -05004944
Stephen Cameron574f05d2015-01-23 16:43:20 -06004945 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4946
4947 if (unlikely(lockup_detected(h))) {
Webb Scales25163bd2015-04-23 09:32:00 -05004948 cmd->result = DID_NO_CONNECT << 16;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004949 cmd->scsi_done(cmd);
4950 return 0;
4951 }
Webb Scales73153fe2015-04-23 09:35:04 -05004952 c = cmd_tagged_alloc(h, cmd);
Stephen Cameron574f05d2015-01-23 16:43:20 -06004953
Stephen Cameron407863c2015-01-23 16:44:19 -06004954 /*
4955 * Call alternate submit routine for I/O accelerated commands.
Stephen Cameron574f05d2015-01-23 16:43:20 -06004956 * Retries always go down the normal I/O path.
4957 */
4958 if (likely(cmd->retries == 0 &&
4959 cmd->request->cmd_type == REQ_TYPE_FS &&
4960 h->acciopath_status)) {
Webb Scales592a0ad2015-04-23 09:32:48 -05004961 rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
4962 if (rc == 0)
4963 return 0;
4964 if (rc == SCSI_MLQUEUE_HOST_BUSY) {
Webb Scales73153fe2015-04-23 09:35:04 -05004965 hpsa_cmd_resolve_and_free(h, c);
Webb Scales592a0ad2015-04-23 09:32:48 -05004966 return SCSI_MLQUEUE_HOST_BUSY;
Stephen Cameron574f05d2015-01-23 16:43:20 -06004967 }
4968 }
4969 return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4970}
4971
Webb Scales8ebc9242015-01-23 16:44:50 -06004972static void hpsa_scan_complete(struct ctlr_info *h)
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004973{
4974 unsigned long flags;
4975
Webb Scales8ebc9242015-01-23 16:44:50 -06004976 spin_lock_irqsave(&h->scan_lock, flags);
4977 h->scan_finished = 1;
4978 wake_up_all(&h->scan_wait_queue);
4979 spin_unlock_irqrestore(&h->scan_lock, flags);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004980}
4981
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004982static void hpsa_scan_start(struct Scsi_Host *sh)
4983{
4984 struct ctlr_info *h = shost_to_hba(sh);
4985 unsigned long flags;
4986
Webb Scales8ebc9242015-01-23 16:44:50 -06004987 /*
4988 * Don't let rescans be initiated on a controller known to be locked
4989 * up. If the controller locks up *during* a rescan, that thread is
4990 * probably hosed, but at least we can prevent new rescan threads from
4991 * piling up on a locked up controller.
4992 */
4993 if (unlikely(lockup_detected(h)))
4994 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004995
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004996 /* wait until any scan already in progress is finished. */
4997 while (1) {
4998 spin_lock_irqsave(&h->scan_lock, flags);
4999 if (h->scan_finished)
5000 break;
5001 spin_unlock_irqrestore(&h->scan_lock, flags);
5002 wait_event(h->scan_wait_queue, h->scan_finished);
5003 /* Note: We don't need to worry about a race between this
5004 * thread and driver unload because the midlayer will
5005 * have incremented the reference count, so unload won't
5006 * happen if we're in here.
5007 */
5008 }
5009 h->scan_finished = 0; /* mark scan as in progress */
5010 spin_unlock_irqrestore(&h->scan_lock, flags);
5011
Webb Scales8ebc9242015-01-23 16:44:50 -06005012 if (unlikely(lockup_detected(h)))
5013 return hpsa_scan_complete(h);
Stephen M. Cameron5f389362014-02-18 13:55:48 -06005014
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005015 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
5016
Webb Scales8ebc9242015-01-23 16:44:50 -06005017 hpsa_scan_complete(h);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005018}
5019
Don Brace7c0a0222015-01-23 16:41:30 -06005020static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
5021{
Don Brace03383732015-01-23 16:43:30 -06005022 struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
5023
5024 if (!logical_drive)
5025 return -ENODEV;
Don Brace7c0a0222015-01-23 16:41:30 -06005026
5027 if (qdepth < 1)
5028 qdepth = 1;
Don Brace03383732015-01-23 16:43:30 -06005029 else if (qdepth > logical_drive->queue_depth)
5030 qdepth = logical_drive->queue_depth;
5031
5032 return scsi_change_queue_depth(sdev, qdepth);
Don Brace7c0a0222015-01-23 16:41:30 -06005033}
5034
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005035static int hpsa_scan_finished(struct Scsi_Host *sh,
5036 unsigned long elapsed_time)
5037{
5038 struct ctlr_info *h = shost_to_hba(sh);
5039 unsigned long flags;
5040 int finished;
5041
5042 spin_lock_irqsave(&h->scan_lock, flags);
5043 finished = h->scan_finished;
5044 spin_unlock_irqrestore(&h->scan_lock, flags);
5045 return finished;
5046}
5047
Robert Elliott2946e822015-04-23 09:35:09 -05005048static int hpsa_scsi_host_alloc(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005049{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005050 struct Scsi_Host *sh;
5051 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005052
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005053 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
Robert Elliott2946e822015-04-23 09:35:09 -05005054 if (sh == NULL) {
5055 dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
5056 return -ENOMEM;
5057 }
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005058
5059 sh->io_port = 0;
5060 sh->n_io_port = 0;
5061 sh->this_id = -1;
5062 sh->max_channel = 3;
5063 sh->max_cmd_len = MAX_COMMAND_SIZE;
5064 sh->max_lun = HPSA_MAX_LUN;
5065 sh->max_id = HPSA_MAX_LUN;
Stephen Cameron41ce4c32015-04-23 09:31:47 -05005066 sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
Don Brace03383732015-01-23 16:43:30 -06005067 sh->cmd_per_lun = sh->can_queue;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005068 sh->sg_tablesize = h->maxsgentries;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005069 sh->hostdata[0] = (unsigned long) h;
5070 sh->irq = h->intr[h->intr_mode];
5071 sh->unique_id = sh->irq;
Webb Scales73153fe2015-04-23 09:35:04 -05005072 error = scsi_init_shared_tag_map(sh, sh->can_queue);
5073 if (error) {
5074 dev_err(&h->pdev->dev,
5075 "%s: scsi_init_shared_tag_map failed for controller %d\n",
5076 __func__, h->ctlr);
Robert Elliott2946e822015-04-23 09:35:09 -05005077 scsi_host_put(sh);
5078 return error;
Webb Scales73153fe2015-04-23 09:35:04 -05005079 }
Robert Elliott2946e822015-04-23 09:35:09 -05005080 h->scsi_host = sh;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005081 return 0;
Robert Elliott2946e822015-04-23 09:35:09 -05005082}
Stephen M. Cameronb7056902012-01-19 14:00:53 -06005083
Robert Elliott2946e822015-04-23 09:35:09 -05005084static int hpsa_scsi_add_host(struct ctlr_info *h)
5085{
5086 int rv;
5087
5088 rv = scsi_add_host(h->scsi_host, &h->pdev->dev);
5089 if (rv) {
5090 dev_err(&h->pdev->dev, "scsi_add_host failed\n");
5091 return rv;
5092 }
5093 scsi_scan_host(h->scsi_host);
5094 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005095}
5096
Webb Scalesb69324f2015-04-23 09:34:22 -05005097/*
Webb Scales73153fe2015-04-23 09:35:04 -05005098 * The block layer has already gone to the trouble of picking out a unique,
5099 * small-integer tag for this request. We use an offset from that value as
5100 * an index to select our command block. (The offset allows us to reserve the
5101 * low-numbered entries for our own uses.)
5102 */
5103static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
5104{
5105 int idx = scmd->request->tag;
5106
5107 if (idx < 0)
5108 return idx;
5109
5110 /* Offset to leave space for internal cmds. */
5111 return idx += HPSA_NRESERVED_CMDS;
5112}
5113
5114/*
Webb Scalesb69324f2015-04-23 09:34:22 -05005115 * Send a TEST_UNIT_READY command to the specified LUN using the specified
5116 * reply queue; returns zero if the unit is ready, and non-zero otherwise.
5117 */
5118static int hpsa_send_test_unit_ready(struct ctlr_info *h,
5119 struct CommandList *c, unsigned char lunaddr[],
5120 int reply_queue)
5121{
5122 int rc;
5123
5124 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
5125 (void) fill_cmd(c, TEST_UNIT_READY, h,
5126 NULL, 0, 0, lunaddr, TYPE_CMD);
5127 rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
5128 if (rc)
5129 return rc;
5130 /* no unmap needed here because no data xfer. */
5131
5132 /* Check if the unit is already ready. */
5133 if (c->err_info->CommandStatus == CMD_SUCCESS)
5134 return 0;
5135
5136 /*
5137 * The first command sent after reset will receive "unit attention" to
5138 * indicate that the LUN has been reset...this is actually what we're
5139 * looking for (but, success is good too).
5140 */
5141 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5142 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
5143 (c->err_info->SenseInfo[2] == NO_SENSE ||
5144 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
5145 return 0;
5146
5147 return 1;
5148}
5149
5150/*
5151 * Wait for a TEST_UNIT_READY command to complete, retrying as necessary;
5152 * returns zero when the unit is ready, and non-zero when giving up.
5153 */
5154static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h,
5155 struct CommandList *c,
5156 unsigned char lunaddr[], int reply_queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005157{
Tomas Henzl89193582014-02-21 16:25:05 -06005158 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005159 int count = 0;
5160 int waittime = 1; /* seconds */
Webb Scalesb69324f2015-04-23 09:34:22 -05005161
5162 /* Send test unit ready until device ready, or give up. */
5163 for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) {
5164
5165 /*
5166 * Wait for a bit. do this first, because if we send
5167 * the TUR right away, the reset will just abort it.
5168 */
5169 msleep(1000 * waittime);
5170
5171 rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue);
5172 if (!rc)
5173 break;
5174
5175 /* Increase wait time with each try, up to a point. */
5176 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
5177 waittime *= 2;
5178
5179 dev_warn(&h->pdev->dev,
5180 "waiting %d secs for device to become ready.\n",
5181 waittime);
5182 }
5183
5184 return rc;
5185}
5186
5187static int wait_for_device_to_become_ready(struct ctlr_info *h,
5188 unsigned char lunaddr[],
5189 int reply_queue)
5190{
5191 int first_queue;
5192 int last_queue;
5193 int rq;
5194 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005195 struct CommandList *c;
5196
Stephen Cameron45fcb862015-01-23 16:43:04 -06005197 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005198
Webb Scalesb69324f2015-04-23 09:34:22 -05005199 /*
5200 * If no specific reply queue was requested, then send the TUR
5201 * repeatedly, requesting a reply on each reply queue; otherwise execute
5202 * the loop exactly once using only the specified queue.
5203 */
5204 if (reply_queue == DEFAULT_REPLY_QUEUE) {
5205 first_queue = 0;
5206 last_queue = h->nreply_queues - 1;
5207 } else {
5208 first_queue = reply_queue;
5209 last_queue = reply_queue;
5210 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005211
Webb Scalesb69324f2015-04-23 09:34:22 -05005212 for (rq = first_queue; rq <= last_queue; rq++) {
5213 rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq);
Webb Scales25163bd2015-04-23 09:32:00 -05005214 if (rc)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005215 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005216 }
5217
5218 if (rc)
5219 dev_warn(&h->pdev->dev, "giving up on device.\n");
5220 else
5221 dev_warn(&h->pdev->dev, "device is ready.\n");
5222
Stephen Cameron45fcb862015-01-23 16:43:04 -06005223 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005224 return rc;
5225}
5226
5227/* Need at least one of these error handlers to keep ../scsi/hosts.c from
5228 * complaining. Doing a host- or bus-reset can't do anything good here.
5229 */
5230static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
5231{
5232 int rc;
5233 struct ctlr_info *h;
5234 struct hpsa_scsi_dev_t *dev;
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005235 char msg[48];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005236
5237 /* find the controller to which the command to be aborted was sent */
5238 h = sdev_to_hba(scsicmd->device);
5239 if (h == NULL) /* paranoia */
5240 return FAILED;
Don Bracee3458932015-01-23 16:44:24 -06005241
5242 if (lockup_detected(h))
5243 return FAILED;
5244
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005245 dev = scsicmd->device->hostdata;
5246 if (!dev) {
Webb Scalesd604f532015-04-23 09:35:22 -05005247 dev_err(&h->pdev->dev, "%s: device lookup failed\n", __func__);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005248 return FAILED;
5249 }
Webb Scales25163bd2015-04-23 09:32:00 -05005250
5251 /* if controller locked up, we can guarantee command won't complete */
5252 if (lockup_detected(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005253 snprintf(msg, sizeof(msg),
5254 "cmd %d RESET FAILED, lockup detected",
5255 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005256 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005257 return FAILED;
5258 }
5259
5260 /* this reset request might be the result of a lockup; check */
5261 if (detect_controller_lockup(h)) {
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005262 snprintf(msg, sizeof(msg),
5263 "cmd %d RESET FAILED, new lockup detected",
5264 hpsa_get_cmd_index(scsicmd));
Webb Scales73153fe2015-04-23 09:35:04 -05005265 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
Webb Scales25163bd2015-04-23 09:32:00 -05005266 return FAILED;
5267 }
5268
Webb Scalesd604f532015-04-23 09:35:22 -05005269 /* Do not attempt on controller */
5270 if (is_hba_lunid(dev->scsi3addr))
5271 return SUCCESS;
5272
Webb Scales25163bd2015-04-23 09:32:00 -05005273 hpsa_show_dev_msg(KERN_WARNING, h, dev, "resetting");
5274
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005275 /* send a reset to the SCSI LUN which the command was sent to */
Webb Scalesd604f532015-04-23 09:35:22 -05005276 rc = hpsa_do_reset(h, dev, dev->scsi3addr, HPSA_RESET_TYPE_LUN,
5277 DEFAULT_REPLY_QUEUE);
Dan Carpenter2dc127b2015-06-04 17:47:56 +03005278 snprintf(msg, sizeof(msg), "reset %s",
5279 rc == 0 ? "completed successfully" : "failed");
Webb Scalesd604f532015-04-23 09:35:22 -05005280 hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
5281 return rc == 0 ? SUCCESS : FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005282}
5283
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005284static void swizzle_abort_tag(u8 *tag)
5285{
5286 u8 original_tag[8];
5287
5288 memcpy(original_tag, tag, 8);
5289 tag[0] = original_tag[3];
5290 tag[1] = original_tag[2];
5291 tag[2] = original_tag[1];
5292 tag[3] = original_tag[0];
5293 tag[4] = original_tag[7];
5294 tag[5] = original_tag[6];
5295 tag[6] = original_tag[5];
5296 tag[7] = original_tag[4];
5297}
5298
Scott Teel17eb87d2014-02-18 13:55:28 -06005299static void hpsa_get_tag(struct ctlr_info *h,
Don Brace2b08b3e2015-01-23 16:41:09 -06005300 struct CommandList *c, __le32 *taglower, __le32 *tagupper)
Scott Teel17eb87d2014-02-18 13:55:28 -06005301{
Don Brace2b08b3e2015-01-23 16:41:09 -06005302 u64 tag;
Scott Teel17eb87d2014-02-18 13:55:28 -06005303 if (c->cmd_type == CMD_IOACCEL1) {
5304 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
5305 &h->ioaccel_cmd_pool[c->cmdindex];
Don Brace2b08b3e2015-01-23 16:41:09 -06005306 tag = le64_to_cpu(cm1->tag);
5307 *tagupper = cpu_to_le32(tag >> 32);
5308 *taglower = cpu_to_le32(tag);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005309 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06005310 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06005311 if (c->cmd_type == CMD_IOACCEL2) {
5312 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
5313 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06005314 /* upper tag not used in ioaccel2 mode */
5315 memset(tagupper, 0, sizeof(*tagupper));
5316 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005317 return;
5318 }
Don Brace2b08b3e2015-01-23 16:41:09 -06005319 tag = le64_to_cpu(c->Header.tag);
5320 *tagupper = cpu_to_le32(tag >> 32);
5321 *taglower = cpu_to_le32(tag);
Scott Teel17eb87d2014-02-18 13:55:28 -06005322}
5323
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005324static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005325 struct CommandList *abort, int reply_queue)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005326{
5327 int rc = IO_OK;
5328 struct CommandList *c;
5329 struct ErrorInfo *ei;
Don Brace2b08b3e2015-01-23 16:41:09 -06005330 __le32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005331
Stephen Cameron45fcb862015-01-23 16:43:04 -06005332 c = cmd_alloc(h);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005333
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005334 /* fill_cmd can't fail here, no buffer to map */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005335 (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005336 0, 0, scsi3addr, TYPE_MSG);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005337 if (h->needs_abort_tags_swizzled)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005338 swizzle_abort_tag(&c->Request.CDB[4]);
Webb Scales25163bd2015-04-23 09:32:00 -05005339 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
Scott Teel17eb87d2014-02-18 13:55:28 -06005340 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005341 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005342 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005343 /* no unmap needed here because no data xfer. */
5344
5345 ei = c->err_info;
5346 switch (ei->CommandStatus) {
5347 case CMD_SUCCESS:
5348 break;
Stephen Cameron9437ac42015-04-23 09:32:16 -05005349 case CMD_TMF_STATUS:
5350 rc = hpsa_evaluate_tmf_status(h, c);
5351 break;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005352 case CMD_UNABORTABLE: /* Very common, don't make noise. */
5353 rc = -1;
5354 break;
5355 default:
5356 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06005357 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06005358 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005359 rc = -1;
5360 break;
5361 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06005362 cmd_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06005363 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
5364 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005365 return rc;
5366}
5367
Stephen Cameron8be986c2015-04-23 09:34:06 -05005368static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h,
5369 struct CommandList *command_to_abort, int reply_queue)
5370{
5371 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5372 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
5373 struct io_accel2_cmd *c2a =
5374 &h->ioaccel2_cmd_pool[command_to_abort->cmdindex];
Webb Scalesa58e7e52015-04-23 09:34:16 -05005375 struct scsi_cmnd *scmd = command_to_abort->scsi_cmd;
Stephen Cameron8be986c2015-04-23 09:34:06 -05005376 struct hpsa_scsi_dev_t *dev = scmd->device->hostdata;
5377
5378 /*
5379 * We're overlaying struct hpsa_tmf_struct on top of something which
5380 * was allocated as a struct io_accel2_cmd, so we better be sure it
5381 * actually fits, and doesn't overrun the error info space.
5382 */
5383 BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) >
5384 sizeof(struct io_accel2_cmd));
5385 BUG_ON(offsetof(struct io_accel2_cmd, error_data) <
5386 offsetof(struct hpsa_tmf_struct, error_len) +
5387 sizeof(ac->error_len));
5388
5389 c->cmd_type = IOACCEL2_TMF;
Webb Scalesa58e7e52015-04-23 09:34:16 -05005390 c->scsi_cmd = SCSI_CMD_BUSY;
5391
Stephen Cameron8be986c2015-04-23 09:34:06 -05005392 /* Adjust the DMA address to point to the accelerated command buffer */
5393 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
5394 (c->cmdindex * sizeof(struct io_accel2_cmd));
5395 BUG_ON(c->busaddr & 0x0000007F);
5396
5397 memset(ac, 0, sizeof(*c2)); /* yes this is correct */
5398 ac->iu_type = IOACCEL2_IU_TMF_TYPE;
5399 ac->reply_queue = reply_queue;
5400 ac->tmf = IOACCEL2_TMF_ABORT;
5401 ac->it_nexus = cpu_to_le32(dev->ioaccel_handle);
5402 memset(ac->lun_id, 0, sizeof(ac->lun_id));
5403 ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT);
5404 ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag));
5405 ac->error_ptr = cpu_to_le64(c->busaddr +
5406 offsetof(struct io_accel2_cmd, error_data));
5407 ac->error_len = cpu_to_le32(sizeof(c2->error_data));
5408}
5409
Scott Teel54b6e9e2014-02-18 13:56:45 -06005410/* ioaccel2 path firmware cannot handle abort task requests.
5411 * Change abort requests to physical target reset, and send to the
5412 * address of the physical disk used for the ioaccel 2 command.
5413 * Return 0 on success (IO_OK)
5414 * -1 on failure
5415 */
5416
5417static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005418 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Scott Teel54b6e9e2014-02-18 13:56:45 -06005419{
5420 int rc = IO_OK;
5421 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
5422 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
5423 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
5424 unsigned char *psa = &phys_scsi3addr[0];
5425
5426 /* Get a pointer to the hpsa logical device. */
Stephen Cameron7fa30302015-01-23 16:44:30 -06005427 scmd = abort->scsi_cmd;
Scott Teel54b6e9e2014-02-18 13:56:45 -06005428 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
5429 if (dev == NULL) {
5430 dev_warn(&h->pdev->dev,
5431 "Cannot abort: no device pointer for command.\n");
5432 return -1; /* not abortable */
5433 }
5434
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005435 if (h->raid_offload_debug > 0)
5436 dev_info(&h->pdev->dev,
Webb Scales0d96ef52015-04-23 09:31:55 -05005437 "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 -06005438 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
Webb Scales0d96ef52015-04-23 09:31:55 -05005439 "Reset as abort",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005440 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
5441 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
5442
Scott Teel54b6e9e2014-02-18 13:56:45 -06005443 if (!dev->offload_enabled) {
5444 dev_warn(&h->pdev->dev,
5445 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
5446 return -1; /* not abortable */
5447 }
5448
5449 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
5450 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
5451 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
5452 return -1; /* not abortable */
5453 }
5454
5455 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06005456 if (h->raid_offload_debug > 0)
5457 dev_info(&h->pdev->dev,
5458 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5459 psa[0], psa[1], psa[2], psa[3],
5460 psa[4], psa[5], psa[6], psa[7]);
Webb Scalesd604f532015-04-23 09:35:22 -05005461 rc = hpsa_do_reset(h, dev, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
Scott Teel54b6e9e2014-02-18 13:56:45 -06005462 if (rc != 0) {
5463 dev_warn(&h->pdev->dev,
5464 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5465 psa[0], psa[1], psa[2], psa[3],
5466 psa[4], psa[5], psa[6], psa[7]);
5467 return rc; /* failed to reset */
5468 }
5469
5470 /* wait for device to recover */
Webb Scalesb69324f2015-04-23 09:34:22 -05005471 if (wait_for_device_to_become_ready(h, psa, reply_queue) != 0) {
Scott Teel54b6e9e2014-02-18 13:56:45 -06005472 dev_warn(&h->pdev->dev,
5473 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5474 psa[0], psa[1], psa[2], psa[3],
5475 psa[4], psa[5], psa[6], psa[7]);
5476 return -1; /* failed to recover */
5477 }
5478
5479 /* device recovered */
5480 dev_info(&h->pdev->dev,
5481 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
5482 psa[0], psa[1], psa[2], psa[3],
5483 psa[4], psa[5], psa[6], psa[7]);
5484
5485 return rc; /* success */
5486}
5487
Stephen Cameron8be986c2015-04-23 09:34:06 -05005488static int hpsa_send_abort_ioaccel2(struct ctlr_info *h,
5489 struct CommandList *abort, int reply_queue)
5490{
5491 int rc = IO_OK;
5492 struct CommandList *c;
5493 __le32 taglower, tagupper;
5494 struct hpsa_scsi_dev_t *dev;
5495 struct io_accel2_cmd *c2;
5496
5497 dev = abort->scsi_cmd->device->hostdata;
5498 if (!dev->offload_enabled && !dev->hba_ioaccel_enabled)
5499 return -1;
5500
5501 c = cmd_alloc(h);
5502 setup_ioaccel2_abort_cmd(c, h, abort, reply_queue);
5503 c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
5504 (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
5505 hpsa_get_tag(h, abort, &taglower, &tagupper);
5506 dev_dbg(&h->pdev->dev,
5507 "%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n",
5508 __func__, tagupper, taglower);
5509 /* no unmap needed here because no data xfer. */
5510
5511 dev_dbg(&h->pdev->dev,
5512 "%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n",
5513 __func__, tagupper, taglower, c2->error_data.serv_response);
5514 switch (c2->error_data.serv_response) {
5515 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
5516 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
5517 rc = 0;
5518 break;
5519 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
5520 case IOACCEL2_SERV_RESPONSE_FAILURE:
5521 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
5522 rc = -1;
5523 break;
5524 default:
5525 dev_warn(&h->pdev->dev,
5526 "%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n",
5527 __func__, tagupper, taglower,
5528 c2->error_data.serv_response);
5529 rc = -1;
5530 }
5531 cmd_free(h, c);
5532 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__,
5533 tagupper, taglower);
5534 return rc;
5535}
5536
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005537static int hpsa_send_abort_both_ways(struct ctlr_info *h,
Webb Scales25163bd2015-04-23 09:32:00 -05005538 unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005539{
Stephen Cameron8be986c2015-04-23 09:34:06 -05005540 /*
5541 * ioccelerator mode 2 commands should be aborted via the
Scott Teel54b6e9e2014-02-18 13:56:45 -06005542 * accelerated path, since RAID path is unaware of these commands,
Stephen Cameron8be986c2015-04-23 09:34:06 -05005543 * but not all underlying firmware can handle abort TMF.
5544 * Change abort to physical device reset when abort TMF is unsupported.
Scott Teel54b6e9e2014-02-18 13:56:45 -06005545 */
Stephen Cameron8be986c2015-04-23 09:34:06 -05005546 if (abort->cmd_type == CMD_IOACCEL2) {
5547 if (HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags)
5548 return hpsa_send_abort_ioaccel2(h, abort,
5549 reply_queue);
5550 else
5551 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
Webb Scales25163bd2015-04-23 09:32:00 -05005552 abort, reply_queue);
Stephen Cameron8be986c2015-04-23 09:34:06 -05005553 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005554 return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
Webb Scales25163bd2015-04-23 09:32:00 -05005555}
5556
5557/* Find out which reply queue a command was meant to return on */
5558static int hpsa_extract_reply_queue(struct ctlr_info *h,
5559 struct CommandList *c)
5560{
5561 if (c->cmd_type == CMD_IOACCEL2)
5562 return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
5563 return c->Header.ReplyQueue;
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05005564}
5565
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005566/*
5567 * Limit concurrency of abort commands to prevent
5568 * over-subscription of commands
5569 */
5570static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
5571{
5572#define ABORT_CMD_WAIT_MSECS 5000
5573 return !wait_event_timeout(h->abort_cmd_wait_queue,
5574 atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
5575 msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
5576}
5577
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005578/* Send an abort for the specified command.
5579 * If the device and controller support it,
5580 * send a task abort request.
5581 */
5582static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
5583{
5584
Webb Scalesa58e7e52015-04-23 09:34:16 -05005585 int rc;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005586 struct ctlr_info *h;
5587 struct hpsa_scsi_dev_t *dev;
5588 struct CommandList *abort; /* pointer to command to be aborted */
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005589 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
5590 char msg[256]; /* For debug messaging. */
5591 int ml = 0;
Don Brace2b08b3e2015-01-23 16:41:09 -06005592 __le32 tagupper, taglower;
Webb Scales25163bd2015-04-23 09:32:00 -05005593 int refcount, reply_queue;
5594
5595 if (sc == NULL)
5596 return FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005597
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005598 if (sc->device == NULL)
5599 return FAILED;
5600
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005601 /* Find the controller of the command to be aborted */
5602 h = sdev_to_hba(sc->device);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005603 if (h == NULL)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005604 return FAILED;
5605
Webb Scales25163bd2015-04-23 09:32:00 -05005606 /* Find the device of the command to be aborted */
5607 dev = sc->device->hostdata;
5608 if (!dev) {
5609 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
5610 msg);
Don Bracee3458932015-01-23 16:44:24 -06005611 return FAILED;
Webb Scales25163bd2015-04-23 09:32:00 -05005612 }
5613
5614 /* If controller locked up, we can guarantee command won't complete */
5615 if (lockup_detected(h)) {
5616 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5617 "ABORT FAILED, lockup detected");
5618 return FAILED;
5619 }
5620
5621 /* This is a good time to check if controller lockup has occurred */
5622 if (detect_controller_lockup(h)) {
5623 hpsa_show_dev_msg(KERN_WARNING, h, dev,
5624 "ABORT FAILED, new lockup detected");
5625 return FAILED;
5626 }
Don Bracee3458932015-01-23 16:44:24 -06005627
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005628 /* Check that controller supports some kind of task abort */
5629 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
5630 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
5631 return FAILED;
5632
5633 memset(msg, 0, sizeof(msg));
Robert Elliott4b761552015-04-23 09:33:54 -05005634 ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005635 h->scsi_host->host_no, sc->device->channel,
Webb Scales0d96ef52015-04-23 09:31:55 -05005636 sc->device->id, sc->device->lun,
Robert Elliott4b761552015-04-23 09:33:54 -05005637 "Aborting command", sc);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005638
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005639 /* Get SCSI command to be aborted */
5640 abort = (struct CommandList *) sc->host_scribble;
5641 if (abort == NULL) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005642 /* This can happen if the command already completed. */
5643 return SUCCESS;
5644 }
5645 refcount = atomic_inc_return(&abort->refcount);
5646 if (refcount == 1) { /* Command is done already. */
5647 cmd_free(h, abort);
5648 return SUCCESS;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005649 }
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005650
5651 /* Don't bother trying the abort if we know it won't work. */
5652 if (abort->cmd_type != CMD_IOACCEL2 &&
5653 abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
5654 cmd_free(h, abort);
5655 return FAILED;
5656 }
5657
Webb Scalesa58e7e52015-04-23 09:34:16 -05005658 /*
5659 * Check that we're aborting the right command.
5660 * It's possible the CommandList already completed and got re-used.
5661 */
5662 if (abort->scsi_cmd != sc) {
5663 cmd_free(h, abort);
5664 return SUCCESS;
5665 }
5666
5667 abort->abort_pending = true;
Scott Teel17eb87d2014-02-18 13:55:28 -06005668 hpsa_get_tag(h, abort, &taglower, &tagupper);
Webb Scales25163bd2015-04-23 09:32:00 -05005669 reply_queue = hpsa_extract_reply_queue(h, abort);
Scott Teel17eb87d2014-02-18 13:55:28 -06005670 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen Cameron7fa30302015-01-23 16:44:30 -06005671 as = abort->scsi_cmd;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005672 if (as != NULL)
Robert Elliott4b761552015-04-23 09:33:54 -05005673 ml += sprintf(msg+ml,
5674 "CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ",
5675 as->cmd_len, as->cmnd[0], as->cmnd[1],
5676 as->serial_number);
5677 dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005678 hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
Robert Elliott4b761552015-04-23 09:33:54 -05005679
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005680 /*
5681 * Command is in flight, or possibly already completed
5682 * by the firmware (but not to the scsi mid layer) but we can't
5683 * distinguish which. Send the abort down.
5684 */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005685 if (wait_for_available_abort_cmd(h)) {
5686 dev_warn(&h->pdev->dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005687 "%s FAILED, timeout waiting for an abort command to become available.\n",
5688 msg);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005689 cmd_free(h, abort);
5690 return FAILED;
5691 }
Webb Scales25163bd2015-04-23 09:32:00 -05005692 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05005693 atomic_inc(&h->abort_cmds_available);
5694 wake_up_all(&h->abort_cmd_wait_queue);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005695 if (rc != 0) {
Robert Elliott4b761552015-04-23 09:33:54 -05005696 dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg);
Webb Scales0d96ef52015-04-23 09:31:55 -05005697 hpsa_show_dev_msg(KERN_WARNING, h, dev,
Robert Elliott4b761552015-04-23 09:33:54 -05005698 "FAILED to abort command");
Webb Scales281a7fd2015-01-23 16:43:35 -06005699 cmd_free(h, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005700 return FAILED;
5701 }
Robert Elliott4b761552015-04-23 09:33:54 -05005702 dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg);
Webb Scalesd604f532015-04-23 09:35:22 -05005703 wait_event(h->event_sync_wait_queue,
Webb Scalesa58e7e52015-04-23 09:34:16 -05005704 abort->scsi_cmd != sc || lockup_detected(h));
Webb Scales281a7fd2015-01-23 16:43:35 -06005705 cmd_free(h, abort);
Webb Scalesa58e7e52015-04-23 09:34:16 -05005706 return !lockup_detected(h) ? SUCCESS : FAILED;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005707}
5708
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005709/*
Webb Scales73153fe2015-04-23 09:35:04 -05005710 * For operations with an associated SCSI command, a command block is allocated
5711 * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the
5712 * block request tag as an index into a table of entries. cmd_tagged_free() is
5713 * the complement, although cmd_free() may be called instead.
5714 */
5715static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
5716 struct scsi_cmnd *scmd)
5717{
5718 int idx = hpsa_get_cmd_index(scmd);
5719 struct CommandList *c = h->cmd_pool + idx;
5720
5721 if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) {
5722 dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n",
5723 idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1);
5724 /* The index value comes from the block layer, so if it's out of
5725 * bounds, it's probably not our bug.
5726 */
5727 BUG();
5728 }
5729
5730 atomic_inc(&c->refcount);
5731 if (unlikely(!hpsa_is_cmd_idle(c))) {
5732 /*
5733 * We expect that the SCSI layer will hand us a unique tag
5734 * value. Thus, there should never be a collision here between
5735 * two requests...because if the selected command isn't idle
5736 * then someone is going to be very disappointed.
5737 */
5738 dev_err(&h->pdev->dev,
5739 "tag collision (tag=%d) in cmd_tagged_alloc().\n",
5740 idx);
5741 if (c->scsi_cmd != NULL)
5742 scsi_print_command(c->scsi_cmd);
5743 scsi_print_command(scmd);
5744 }
5745
5746 hpsa_cmd_partial_init(h, idx, c);
5747 return c;
5748}
5749
5750static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c)
5751{
5752 /*
5753 * Release our reference to the block. We don't need to do anything
5754 * else to free it, because it is accessed by index. (There's no point
5755 * in checking the result of the decrement, since we cannot guarantee
5756 * that there isn't a concurrent abort which is also accessing it.)
5757 */
5758 (void)atomic_dec(&c->refcount);
5759}
5760
5761/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005762 * For operations that cannot sleep, a command block is allocated at init,
5763 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5764 * which ones are free or in use. Lock must be held when calling this.
5765 * cmd_free() is the complement.
Robert Elliottbf43caf2015-04-23 09:33:38 -05005766 * This function never gives up and returns NULL. If it hangs,
5767 * another thread must call cmd_free() to free some tags.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005768 */
Webb Scales281a7fd2015-01-23 16:43:35 -06005769
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005770static struct CommandList *cmd_alloc(struct ctlr_info *h)
5771{
5772 struct CommandList *c;
Stephen Cameron360c73b2015-04-23 09:32:32 -05005773 int refcount, i;
Webb Scales73153fe2015-04-23 09:35:04 -05005774 int offset = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005775
Robert Elliott33811022015-01-23 16:43:41 -06005776 /*
5777 * There is some *extremely* small but non-zero chance that that
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005778 * multiple threads could get in here, and one thread could
5779 * be scanning through the list of bits looking for a free
5780 * one, but the free ones are always behind him, and other
5781 * threads sneak in behind him and eat them before he can
5782 * get to them, so that while there is always a free one, a
5783 * very unlucky thread might be starved anyway, never able to
5784 * beat the other threads. In reality, this happens so
5785 * infrequently as to be indistinguishable from never.
Webb Scales73153fe2015-04-23 09:35:04 -05005786 *
5787 * Note that we start allocating commands before the SCSI host structure
5788 * is initialized. Since the search starts at bit zero, this
5789 * all works, since we have at least one command structure available;
5790 * however, it means that the structures with the low indexes have to be
5791 * reserved for driver-initiated requests, while requests from the block
5792 * layer will use the higher indexes.
Stephen M. Cameron4c413122014-11-14 17:27:29 -06005793 */
5794
Webb Scales281a7fd2015-01-23 16:43:35 -06005795 for (;;) {
Webb Scales73153fe2015-04-23 09:35:04 -05005796 i = find_next_zero_bit(h->cmd_pool_bits,
5797 HPSA_NRESERVED_CMDS,
5798 offset);
5799 if (unlikely(i >= HPSA_NRESERVED_CMDS)) {
Webb Scales281a7fd2015-01-23 16:43:35 -06005800 offset = 0;
5801 continue;
5802 }
5803 c = h->cmd_pool + i;
5804 refcount = atomic_inc_return(&c->refcount);
5805 if (unlikely(refcount > 1)) {
5806 cmd_free(h, c); /* already in use */
Webb Scales73153fe2015-04-23 09:35:04 -05005807 offset = (i + 1) % HPSA_NRESERVED_CMDS;
Webb Scales281a7fd2015-01-23 16:43:35 -06005808 continue;
5809 }
5810 set_bit(i & (BITS_PER_LONG - 1),
5811 h->cmd_pool_bits + (i / BITS_PER_LONG));
5812 break; /* it's ours now. */
5813 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05005814 hpsa_cmd_partial_init(h, i, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005815 return c;
5816}
5817
Webb Scales73153fe2015-04-23 09:35:04 -05005818/*
5819 * This is the complementary operation to cmd_alloc(). Note, however, in some
5820 * corner cases it may also be used to free blocks allocated by
5821 * cmd_tagged_alloc() in which case the ref-count decrement does the trick and
5822 * the clear-bit is harmless.
5823 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005824static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5825{
Webb Scales281a7fd2015-01-23 16:43:35 -06005826 if (atomic_dec_and_test(&c->refcount)) {
5827 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005828
Webb Scales281a7fd2015-01-23 16:43:35 -06005829 i = c - h->cmd_pool;
5830 clear_bit(i & (BITS_PER_LONG - 1),
5831 h->cmd_pool_bits + (i / BITS_PER_LONG));
5832 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005833}
5834
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005835#ifdef CONFIG_COMPAT
5836
Don Brace42a91642014-11-14 17:26:27 -06005837static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
5838 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005839{
5840 IOCTL32_Command_struct __user *arg32 =
5841 (IOCTL32_Command_struct __user *) arg;
5842 IOCTL_Command_struct arg64;
5843 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5844 int err;
5845 u32 cp;
5846
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005847 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005848 err = 0;
5849 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5850 sizeof(arg64.LUN_info));
5851 err |= copy_from_user(&arg64.Request, &arg32->Request,
5852 sizeof(arg64.Request));
5853 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5854 sizeof(arg64.error_info));
5855 err |= get_user(arg64.buf_size, &arg32->buf_size);
5856 err |= get_user(cp, &arg32->buf);
5857 arg64.buf = compat_ptr(cp);
5858 err |= copy_to_user(p, &arg64, sizeof(arg64));
5859
5860 if (err)
5861 return -EFAULT;
5862
Don Brace42a91642014-11-14 17:26:27 -06005863 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005864 if (err)
5865 return err;
5866 err |= copy_in_user(&arg32->error_info, &p->error_info,
5867 sizeof(arg32->error_info));
5868 if (err)
5869 return -EFAULT;
5870 return err;
5871}
5872
5873static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06005874 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005875{
5876 BIG_IOCTL32_Command_struct __user *arg32 =
5877 (BIG_IOCTL32_Command_struct __user *) arg;
5878 BIG_IOCTL_Command_struct arg64;
5879 BIG_IOCTL_Command_struct __user *p =
5880 compat_alloc_user_space(sizeof(arg64));
5881 int err;
5882 u32 cp;
5883
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06005884 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005885 err = 0;
5886 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5887 sizeof(arg64.LUN_info));
5888 err |= copy_from_user(&arg64.Request, &arg32->Request,
5889 sizeof(arg64.Request));
5890 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5891 sizeof(arg64.error_info));
5892 err |= get_user(arg64.buf_size, &arg32->buf_size);
5893 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5894 err |= get_user(cp, &arg32->buf);
5895 arg64.buf = compat_ptr(cp);
5896 err |= copy_to_user(p, &arg64, sizeof(arg64));
5897
5898 if (err)
5899 return -EFAULT;
5900
Don Brace42a91642014-11-14 17:26:27 -06005901 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005902 if (err)
5903 return err;
5904 err |= copy_in_user(&arg32->error_info, &p->error_info,
5905 sizeof(arg32->error_info));
5906 if (err)
5907 return -EFAULT;
5908 return err;
5909}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005910
Don Brace42a91642014-11-14 17:26:27 -06005911static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06005912{
5913 switch (cmd) {
5914 case CCISS_GETPCIINFO:
5915 case CCISS_GETINTINFO:
5916 case CCISS_SETINTINFO:
5917 case CCISS_GETNODENAME:
5918 case CCISS_SETNODENAME:
5919 case CCISS_GETHEARTBEAT:
5920 case CCISS_GETBUSTYPES:
5921 case CCISS_GETFIRMVER:
5922 case CCISS_GETDRIVVER:
5923 case CCISS_REVALIDVOLS:
5924 case CCISS_DEREGDISK:
5925 case CCISS_REGNEWDISK:
5926 case CCISS_REGNEWD:
5927 case CCISS_RESCANDISK:
5928 case CCISS_GETLUNINFO:
5929 return hpsa_ioctl(dev, cmd, arg);
5930
5931 case CCISS_PASSTHRU32:
5932 return hpsa_ioctl32_passthru(dev, cmd, arg);
5933 case CCISS_BIG_PASSTHRU32:
5934 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
5935
5936 default:
5937 return -ENOIOCTLCMD;
5938 }
5939}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005940#endif
5941
5942static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5943{
5944 struct hpsa_pci_info pciinfo;
5945
5946 if (!argp)
5947 return -EINVAL;
5948 pciinfo.domain = pci_domain_nr(h->pdev->bus);
5949 pciinfo.bus = h->pdev->bus->number;
5950 pciinfo.dev_fn = h->pdev->devfn;
5951 pciinfo.board_id = h->board_id;
5952 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5953 return -EFAULT;
5954 return 0;
5955}
5956
5957static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
5958{
5959 DriverVer_type DriverVer;
5960 unsigned char vmaj, vmin, vsubmin;
5961 int rc;
5962
5963 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
5964 &vmaj, &vmin, &vsubmin);
5965 if (rc != 3) {
5966 dev_info(&h->pdev->dev, "driver version string '%s' "
5967 "unrecognized.", HPSA_DRIVER_VERSION);
5968 vmaj = 0;
5969 vmin = 0;
5970 vsubmin = 0;
5971 }
5972 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
5973 if (!argp)
5974 return -EINVAL;
5975 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
5976 return -EFAULT;
5977 return 0;
5978}
5979
5980static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5981{
5982 IOCTL_Command_struct iocommand;
5983 struct CommandList *c;
5984 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005985 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06005986 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005987
5988 if (!argp)
5989 return -EINVAL;
5990 if (!capable(CAP_SYS_RAWIO))
5991 return -EPERM;
5992 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
5993 return -EFAULT;
5994 if ((iocommand.buf_size < 1) &&
5995 (iocommand.Request.Type.Direction != XFER_NONE)) {
5996 return -EINVAL;
5997 }
5998 if (iocommand.buf_size > 0) {
5999 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
6000 if (buff == NULL)
Robert Elliott2dd02d72015-04-23 09:33:43 -05006001 return -ENOMEM;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006002 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006003 /* Copy the data into the buffer we created */
6004 if (copy_from_user(buff, iocommand.buf,
6005 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006006 rc = -EFAULT;
6007 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006008 }
6009 } else {
6010 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006011 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006012 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006013 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006014
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006015 /* Fill in the command type */
6016 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006017 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006018 /* Fill in Command Header */
6019 c->Header.ReplyQueue = 0; /* unused in simple mode */
6020 if (iocommand.buf_size > 0) { /* buffer to fill */
6021 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006022 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006023 } else { /* no buffers to fill */
6024 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006025 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006026 }
6027 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006028
6029 /* Fill in Request block */
6030 memcpy(&c->Request, &iocommand.Request,
6031 sizeof(c->Request));
6032
6033 /* Fill in the scatter gather information */
6034 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006035 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006036 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006037 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
6038 c->SG[0].Addr = cpu_to_le64(0);
6039 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006040 rc = -ENOMEM;
6041 goto out;
6042 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006043 c->SG[0].Addr = cpu_to_le64(temp64);
6044 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
6045 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006046 }
Webb Scales25163bd2015-04-23 09:32:00 -05006047 rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05006048 if (iocommand.buf_size > 0)
6049 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006050 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006051 if (rc) {
6052 rc = -EIO;
6053 goto out;
6054 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006055
6056 /* Copy the error information out */
6057 memcpy(&iocommand.error_info, c->err_info,
6058 sizeof(iocommand.error_info));
6059 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006060 rc = -EFAULT;
6061 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006062 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006063 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006064 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006065 /* Copy the data out of the buffer we created */
6066 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006067 rc = -EFAULT;
6068 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006069 }
6070 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006071out:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006072 cmd_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06006073out_kfree:
6074 kfree(buff);
6075 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006076}
6077
6078static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6079{
6080 BIG_IOCTL_Command_struct *ioc;
6081 struct CommandList *c;
6082 unsigned char **buff = NULL;
6083 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006084 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006085 BYTE sg_used = 0;
6086 int status = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006087 u32 left;
6088 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006089 BYTE __user *data_ptr;
6090
6091 if (!argp)
6092 return -EINVAL;
6093 if (!capable(CAP_SYS_RAWIO))
6094 return -EPERM;
6095 ioc = (BIG_IOCTL_Command_struct *)
6096 kmalloc(sizeof(*ioc), GFP_KERNEL);
6097 if (!ioc) {
6098 status = -ENOMEM;
6099 goto cleanup1;
6100 }
6101 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
6102 status = -EFAULT;
6103 goto cleanup1;
6104 }
6105 if ((ioc->buf_size < 1) &&
6106 (ioc->Request.Type.Direction != XFER_NONE)) {
6107 status = -EINVAL;
6108 goto cleanup1;
6109 }
6110 /* Check kmalloc limits using all SGs */
6111 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
6112 status = -EINVAL;
6113 goto cleanup1;
6114 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006115 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006116 status = -EINVAL;
6117 goto cleanup1;
6118 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006119 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006120 if (!buff) {
6121 status = -ENOMEM;
6122 goto cleanup1;
6123 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06006124 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006125 if (!buff_size) {
6126 status = -ENOMEM;
6127 goto cleanup1;
6128 }
6129 left = ioc->buf_size;
6130 data_ptr = ioc->buf;
6131 while (left) {
6132 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
6133 buff_size[sg_used] = sz;
6134 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
6135 if (buff[sg_used] == NULL) {
6136 status = -ENOMEM;
6137 goto cleanup1;
6138 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006139 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006140 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05006141 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006142 goto cleanup1;
6143 }
6144 } else
6145 memset(buff[sg_used], 0, sz);
6146 left -= sz;
6147 data_ptr += sz;
6148 sg_used++;
6149 }
Stephen Cameron45fcb862015-01-23 16:43:04 -06006150 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006151
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006152 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006153 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006154 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006155 c->Header.SGList = (u8) sg_used;
6156 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006157 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006158 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
6159 if (ioc->buf_size > 0) {
6160 int i;
6161 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006162 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006163 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006164 if (dma_mapping_error(&h->pdev->dev,
6165 (dma_addr_t) temp64)) {
6166 c->SG[i].Addr = cpu_to_le64(0);
6167 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006168 hpsa_pci_unmap(h->pdev, c, i,
6169 PCI_DMA_BIDIRECTIONAL);
6170 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006171 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06006172 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006173 c->SG[i].Addr = cpu_to_le64(temp64);
6174 c->SG[i].Len = cpu_to_le32(buff_size[i]);
6175 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006176 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006177 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006178 }
Webb Scales25163bd2015-04-23 09:32:00 -05006179 status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06006180 if (sg_used)
6181 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006182 check_ioctl_unit_attention(h, c);
Webb Scales25163bd2015-04-23 09:32:00 -05006183 if (status) {
6184 status = -EIO;
6185 goto cleanup0;
6186 }
6187
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006188 /* Copy the error information out */
6189 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
6190 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
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 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05006194 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006195 int i;
6196
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006197 /* Copy the data out of the buffer we created */
6198 BYTE __user *ptr = ioc->buf;
6199 for (i = 0; i < sg_used; i++) {
6200 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006201 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006202 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006203 }
6204 ptr += buff_size[i];
6205 }
6206 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006207 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05006208cleanup0:
Stephen Cameron45fcb862015-01-23 16:43:04 -06006209 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006210cleanup1:
6211 if (buff) {
Don Brace2b08b3e2015-01-23 16:41:09 -06006212 int i;
6213
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006214 for (i = 0; i < sg_used; i++)
6215 kfree(buff[i]);
6216 kfree(buff);
6217 }
6218 kfree(buff_size);
6219 kfree(ioc);
6220 return status;
6221}
6222
6223static void check_ioctl_unit_attention(struct ctlr_info *h,
6224 struct CommandList *c)
6225{
6226 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
6227 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
6228 (void) check_for_unit_attention(h, c);
6229}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006230
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006231/*
6232 * ioctl
6233 */
Don Brace42a91642014-11-14 17:26:27 -06006234static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006235{
6236 struct ctlr_info *h;
6237 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006238 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006239
6240 h = sdev_to_hba(dev);
6241
6242 switch (cmd) {
6243 case CCISS_DEREGDISK:
6244 case CCISS_REGNEWDISK:
6245 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06006246 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006247 return 0;
6248 case CCISS_GETPCIINFO:
6249 return hpsa_getpciinfo_ioctl(h, argp);
6250 case CCISS_GETDRIVVER:
6251 return hpsa_getdrivver_ioctl(h, argp);
6252 case CCISS_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006253 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006254 return -EAGAIN;
6255 rc = hpsa_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006256 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006257 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006258 case CCISS_BIG_PASSTHRU:
Don Brace34f0c622015-01-23 16:43:46 -06006259 if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006260 return -EAGAIN;
6261 rc = hpsa_big_passthru_ioctl(h, argp);
Don Brace34f0c622015-01-23 16:43:46 -06006262 atomic_inc(&h->passthru_cmds_avail);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006263 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006264 default:
6265 return -ENOTTY;
6266 }
6267}
6268
Robert Elliottbf43caf2015-04-23 09:33:38 -05006269static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006270 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006271{
6272 struct CommandList *c;
6273
6274 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05006275
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006276 /* fill_cmd can't fail here, no data buffer to map */
6277 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006278 RAID_CTLR_LUNID, TYPE_MSG);
6279 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
6280 c->waiting = NULL;
6281 enqueue_cmd_and_start_io(h, c);
6282 /* Don't wait for completion, the reset won't complete. Don't free
6283 * the command either. This is the last command we will send before
6284 * re-initializing everything, so it doesn't matter and won't leak.
6285 */
Robert Elliottbf43caf2015-04-23 09:33:38 -05006286 return;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006287}
6288
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006289static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006290 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006291 int cmd_type)
6292{
6293 int pci_dir = XFER_NONE;
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006294 u64 tag; /* for commands to be aborted */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006295
6296 c->cmd_type = CMD_IOCTL_PEND;
Webb Scalesa58e7e52015-04-23 09:34:16 -05006297 c->scsi_cmd = SCSI_CMD_BUSY;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006298 c->Header.ReplyQueue = 0;
6299 if (buff != NULL && size > 0) {
6300 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006301 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006302 } else {
6303 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006304 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006305 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006306 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
6307
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006308 if (cmd_type == TYPE_CMD) {
6309 switch (cmd) {
6310 case HPSA_INQUIRY:
6311 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006312 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006313 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06006314 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006315 }
6316 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006317 c->Request.type_attr_dir =
6318 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006319 c->Request.Timeout = 0;
6320 c->Request.CDB[0] = HPSA_INQUIRY;
6321 c->Request.CDB[4] = size & 0xFF;
6322 break;
6323 case HPSA_REPORT_LOG:
6324 case HPSA_REPORT_PHYS:
6325 /* Talking to controller so It's a physical command
6326 mode = 00 target = 0. Nothing to write.
6327 */
6328 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006329 c->Request.type_attr_dir =
6330 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006331 c->Request.Timeout = 0;
6332 c->Request.CDB[0] = cmd;
6333 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6334 c->Request.CDB[7] = (size >> 16) & 0xFF;
6335 c->Request.CDB[8] = (size >> 8) & 0xFF;
6336 c->Request.CDB[9] = size & 0xFF;
6337 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006338 case HPSA_CACHE_FLUSH:
6339 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006340 c->Request.type_attr_dir =
6341 TYPE_ATTR_DIR(cmd_type,
6342 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006343 c->Request.Timeout = 0;
6344 c->Request.CDB[0] = BMIC_WRITE;
6345 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05006346 c->Request.CDB[7] = (size >> 8) & 0xFF;
6347 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006348 break;
6349 case TEST_UNIT_READY:
6350 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006351 c->Request.type_attr_dir =
6352 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006353 c->Request.Timeout = 0;
6354 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006355 case HPSA_GET_RAID_MAP:
6356 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006357 c->Request.type_attr_dir =
6358 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006359 c->Request.Timeout = 0;
6360 c->Request.CDB[0] = HPSA_CISS_READ;
6361 c->Request.CDB[1] = cmd;
6362 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6363 c->Request.CDB[7] = (size >> 16) & 0xFF;
6364 c->Request.CDB[8] = (size >> 8) & 0xFF;
6365 c->Request.CDB[9] = size & 0xFF;
6366 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006367 case BMIC_SENSE_CONTROLLER_PARAMETERS:
6368 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006369 c->Request.type_attr_dir =
6370 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006371 c->Request.Timeout = 0;
6372 c->Request.CDB[0] = BMIC_READ;
6373 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
6374 c->Request.CDB[7] = (size >> 16) & 0xFF;
6375 c->Request.CDB[8] = (size >> 8) & 0xFF;
6376 break;
Don Brace03383732015-01-23 16:43:30 -06006377 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
6378 c->Request.CDBLen = 10;
6379 c->Request.type_attr_dir =
6380 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6381 c->Request.Timeout = 0;
6382 c->Request.CDB[0] = BMIC_READ;
6383 c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
6384 c->Request.CDB[7] = (size >> 16) & 0xFF;
6385 c->Request.CDB[8] = (size >> 8) & 0XFF;
6386 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006387 default:
6388 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
6389 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006390 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006391 }
6392 } else if (cmd_type == TYPE_MSG) {
6393 switch (cmd) {
6394
6395 case HPSA_DEVICE_RESET_MSG:
6396 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006397 c->Request.type_attr_dir =
6398 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006399 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006400 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
6401 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05006402 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006403 /* If bytes 4-7 are zero, it means reset the */
6404 /* LunID device */
6405 c->Request.CDB[4] = 0x00;
6406 c->Request.CDB[5] = 0x00;
6407 c->Request.CDB[6] = 0x00;
6408 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006409 break;
6410 case HPSA_ABORT_MSG:
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006411 memcpy(&tag, buff, sizeof(tag));
Don Brace2b08b3e2015-01-23 16:41:09 -06006412 dev_dbg(&h->pdev->dev,
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006413 "Abort Tag:0x%016llx using rqst Tag:0x%016llx",
6414 tag, c->Header.tag);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006415 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006416 c->Request.type_attr_dir =
6417 TYPE_ATTR_DIR(cmd_type,
6418 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006419 c->Request.Timeout = 0; /* Don't time out */
6420 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
6421 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
6422 c->Request.CDB[2] = 0x00; /* reserved */
6423 c->Request.CDB[3] = 0x00; /* reserved */
6424 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05006425 memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006426 c->Request.CDB[12] = 0x00; /* reserved */
6427 c->Request.CDB[13] = 0x00; /* reserved */
6428 c->Request.CDB[14] = 0x00; /* reserved */
6429 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006430 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006431 default:
6432 dev_warn(&h->pdev->dev, "unknown message type %d\n",
6433 cmd);
6434 BUG();
6435 }
6436 } else {
6437 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
6438 BUG();
6439 }
6440
Stephen M. Camerona505b862014-11-14 17:27:04 -06006441 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006442 case XFER_READ:
6443 pci_dir = PCI_DMA_FROMDEVICE;
6444 break;
6445 case XFER_WRITE:
6446 pci_dir = PCI_DMA_TODEVICE;
6447 break;
6448 case XFER_NONE:
6449 pci_dir = PCI_DMA_NONE;
6450 break;
6451 default:
6452 pci_dir = PCI_DMA_BIDIRECTIONAL;
6453 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06006454 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
6455 return -1;
6456 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006457}
6458
6459/*
6460 * Map (physical) PCI mem into (virtual) kernel space
6461 */
6462static void __iomem *remap_pci_mem(ulong base, ulong size)
6463{
6464 ulong page_base = ((ulong) base) & PAGE_MASK;
6465 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05006466 void __iomem *page_remapped = ioremap_nocache(page_base,
6467 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006468
6469 return page_remapped ? (page_remapped + page_offs) : NULL;
6470}
6471
Matt Gates254f7962012-05-01 11:43:06 -05006472static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006473{
Matt Gates254f7962012-05-01 11:43:06 -05006474 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006475}
6476
Stephen M. Cameron900c5442010-02-04 08:42:35 -06006477static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006478{
6479 return h->access.intr_pending(h);
6480}
6481
6482static inline long interrupt_not_for_us(struct ctlr_info *h)
6483{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006484 return (h->access.intr_pending(h) == 0) ||
6485 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006486}
6487
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006488static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
6489 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006490{
6491 if (unlikely(tag_index >= h->nr_cmds)) {
6492 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
6493 return 1;
6494 }
6495 return 0;
6496}
6497
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05006498static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006499{
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006500 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06006501 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
6502 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05006503 complete_scsi_command(c);
Stephen Cameron8be986c2015-04-23 09:34:06 -05006504 else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006505 complete(c->waiting);
Stephen M. Camerona104c992010-02-04 08:42:24 -06006506}
6507
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006508
6509static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06006510{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006511#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
6512#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006513 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006514 return tag & ~HPSA_SIMPLE_ERROR_BITS;
6515 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06006516}
6517
Don Brace303932f2010-02-04 08:42:40 -06006518/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006519static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06006520 u32 raw_tag)
6521{
6522 u32 tag_index;
6523 struct CommandList *c;
6524
Don Bracef2405db2015-01-23 16:43:09 -06006525 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05006526 if (!bad_tag(h, tag_index, raw_tag)) {
6527 c = h->cmd_pool + tag_index;
6528 finish_cmd(c);
6529 }
Don Brace303932f2010-02-04 08:42:40 -06006530}
6531
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006532/* Some controllers, like p400, will give us one interrupt
6533 * after a soft reset, even if we turned interrupts off.
6534 * Only need to check for this in the hpsa_xxx_discard_completions
6535 * functions.
6536 */
6537static int ignore_bogus_interrupt(struct ctlr_info *h)
6538{
6539 if (likely(!reset_devices))
6540 return 0;
6541
6542 if (likely(h->interrupts_enabled))
6543 return 0;
6544
6545 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
6546 "(known firmware bug.) Ignoring.\n");
6547
6548 return 1;
6549}
6550
Matt Gates254f7962012-05-01 11:43:06 -05006551/*
6552 * Convert &h->q[x] (passed to interrupt handlers) back to h.
6553 * Relies on (h-q[x] == x) being true for x such that
6554 * 0 <= x < MAX_REPLY_QUEUES.
6555 */
6556static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006557{
Matt Gates254f7962012-05-01 11:43:06 -05006558 return container_of((queue - *queue), struct ctlr_info, q[0]);
6559}
6560
6561static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
6562{
6563 struct ctlr_info *h = queue_to_hba(queue);
6564 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006565 u32 raw_tag;
6566
6567 if (ignore_bogus_interrupt(h))
6568 return IRQ_NONE;
6569
6570 if (interrupt_not_for_us(h))
6571 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006572 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006573 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006574 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006575 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006576 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006577 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006578 return IRQ_HANDLED;
6579}
6580
Matt Gates254f7962012-05-01 11:43:06 -05006581static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006582{
Matt Gates254f7962012-05-01 11:43:06 -05006583 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006584 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006585 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006586
6587 if (ignore_bogus_interrupt(h))
6588 return IRQ_NONE;
6589
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006590 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006591 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006592 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05006593 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006594 return IRQ_HANDLED;
6595}
6596
Matt Gates254f7962012-05-01 11:43:06 -05006597static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006598{
Matt Gates254f7962012-05-01 11:43:06 -05006599 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06006600 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006601 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006602
6603 if (interrupt_not_for_us(h))
6604 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006605 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006606 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05006607 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006608 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006609 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006610 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006611 }
6612 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006613 return IRQ_HANDLED;
6614}
6615
Matt Gates254f7962012-05-01 11:43:06 -05006616static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006617{
Matt Gates254f7962012-05-01 11:43:06 -05006618 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006619 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05006620 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006621
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006622 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05006623 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06006624 while (raw_tag != FIFO_EMPTY) {
Don Bracef2405db2015-01-23 16:43:09 -06006625 process_indexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05006626 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006627 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006628 return IRQ_HANDLED;
6629}
6630
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006631/* Send a message CDB to the firmware. Careful, this only works
6632 * in simple mode, not performant mode due to the tag lookup.
6633 * We only ever use this immediately after a controller reset.
6634 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006635static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
6636 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006637{
6638 struct Command {
6639 struct CommandListHeader CommandHeader;
6640 struct RequestBlock Request;
6641 struct ErrDescriptor ErrorDescriptor;
6642 };
6643 struct Command *cmd;
6644 static const size_t cmd_sz = sizeof(*cmd) +
6645 sizeof(cmd->ErrorDescriptor);
6646 dma_addr_t paddr64;
Don Brace2b08b3e2015-01-23 16:41:09 -06006647 __le32 paddr32;
6648 u32 tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006649 void __iomem *vaddr;
6650 int i, err;
6651
6652 vaddr = pci_ioremap_bar(pdev, 0);
6653 if (vaddr == NULL)
6654 return -ENOMEM;
6655
6656 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
6657 * CCISS commands, so they must be allocated from the lower 4GiB of
6658 * memory.
6659 */
6660 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6661 if (err) {
6662 iounmap(vaddr);
Robert Elliott1eaec8f2015-01-23 16:42:37 -06006663 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006664 }
6665
6666 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
6667 if (cmd == NULL) {
6668 iounmap(vaddr);
6669 return -ENOMEM;
6670 }
6671
6672 /* This must fit, because of the 32-bit consistent DMA mask. Also,
6673 * although there's no guarantee, we assume that the address is at
6674 * least 4-byte aligned (most likely, it's page-aligned).
6675 */
Don Brace2b08b3e2015-01-23 16:41:09 -06006676 paddr32 = cpu_to_le32(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006677
6678 cmd->CommandHeader.ReplyQueue = 0;
6679 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006680 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
Don Brace2b08b3e2015-01-23 16:41:09 -06006681 cmd->CommandHeader.tag = cpu_to_le64(paddr64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006682 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
6683
6684 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06006685 cmd->Request.type_attr_dir =
6686 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006687 cmd->Request.Timeout = 0; /* Don't time out */
6688 cmd->Request.CDB[0] = opcode;
6689 cmd->Request.CDB[1] = type;
6690 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006691 cmd->ErrorDescriptor.Addr =
Don Brace2b08b3e2015-01-23 16:41:09 -06006692 cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06006693 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006694
Don Brace2b08b3e2015-01-23 16:41:09 -06006695 writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006696
6697 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
6698 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Don Brace2b08b3e2015-01-23 16:41:09 -06006699 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006700 break;
6701 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
6702 }
6703
6704 iounmap(vaddr);
6705
6706 /* we leak the DMA buffer here ... no choice since the controller could
6707 * still complete the command.
6708 */
6709 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
6710 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
6711 opcode, type);
6712 return -ETIMEDOUT;
6713 }
6714
6715 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
6716
6717 if (tag & HPSA_ERROR_BIT) {
6718 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
6719 opcode, type);
6720 return -EIO;
6721 }
6722
6723 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
6724 opcode, type);
6725 return 0;
6726}
6727
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006728#define hpsa_noop(p) hpsa_message(p, 3, 0)
6729
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006730static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06006731 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006732{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006733
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006734 if (use_doorbell) {
6735 /* For everything after the P600, the PCI power state method
6736 * of resetting the controller doesn't work, so we have this
6737 * other way using the doorbell register.
6738 */
6739 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006740 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05006741
Justin Lindley00701a92014-05-29 10:52:47 -05006742 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05006743 * doorbell reset and before any attempt to talk to the board
6744 * at all to ensure that this actually works and doesn't fall
6745 * over in some weird corner cases.
6746 */
Justin Lindley00701a92014-05-29 10:52:47 -05006747 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006748 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006749
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006750 /* Quoting from the Open CISS Specification: "The Power
6751 * Management Control/Status Register (CSR) controls the power
6752 * state of the device. The normal operating state is D0,
6753 * CSR=00h. The software off state is D3, CSR=03h. To reset
6754 * the controller, place the interface device in D3 then to D0,
6755 * this causes a secondary PCI reset which will reset the
6756 * controller." */
6757
Don Brace2662cab2015-01-23 16:41:25 -06006758 int rc = 0;
6759
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006760 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
Don Brace2662cab2015-01-23 16:41:25 -06006761
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006762 /* enter the D3hot power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006763 rc = pci_set_power_state(pdev, PCI_D3hot);
6764 if (rc)
6765 return rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006766
6767 msleep(500);
6768
6769 /* enter the D0 power management state */
Don Brace2662cab2015-01-23 16:41:25 -06006770 rc = pci_set_power_state(pdev, PCI_D0);
6771 if (rc)
6772 return rc;
Mike Millerc4853ef2011-10-21 08:19:43 +02006773
6774 /*
6775 * The P600 requires a small delay when changing states.
6776 * Otherwise we may think the board did not reset and we bail.
6777 * This for kdump only and is particular to the P600.
6778 */
6779 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006780 }
6781 return 0;
6782}
6783
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006784static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006785{
6786 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006787 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006788}
6789
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006790static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006791{
6792 char *driver_version;
6793 int i, size = sizeof(cfgtable->driver_version);
6794
6795 driver_version = kmalloc(size, GFP_KERNEL);
6796 if (!driver_version)
6797 return -ENOMEM;
6798
6799 init_driver_version(driver_version, size);
6800 for (i = 0; i < size; i++)
6801 writeb(driver_version[i], &cfgtable->driver_version[i]);
6802 kfree(driver_version);
6803 return 0;
6804}
6805
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006806static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
6807 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006808{
6809 int i;
6810
6811 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6812 driver_ver[i] = readb(&cfgtable->driver_version[i]);
6813}
6814
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006815static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006816{
6817
6818 char *driver_ver, *old_driver_ver;
6819 int rc, size = sizeof(cfgtable->driver_version);
6820
6821 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6822 if (!old_driver_ver)
6823 return -ENOMEM;
6824 driver_ver = old_driver_ver + size;
6825
6826 /* After a reset, the 32 bytes of "driver version" in the cfgtable
6827 * should have been changed, otherwise we know the reset failed.
6828 */
6829 init_driver_version(old_driver_ver, size);
6830 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6831 rc = !memcmp(driver_ver, old_driver_ver, size);
6832 kfree(old_driver_ver);
6833 return rc;
6834}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006835/* This does a hard reset of the controller using PCI power management
6836 * states or the using the doorbell register.
6837 */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02006838static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006839{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006840 u64 cfg_offset;
6841 u32 cfg_base_addr;
6842 u64 cfg_base_addr_index;
6843 void __iomem *vaddr;
6844 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006845 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006846 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006847 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006848 u32 use_doorbell;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006849 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006850
6851 /* For controllers as old as the P600, this is very nearly
6852 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006853 *
6854 * pci_save_state(pci_dev);
6855 * pci_set_power_state(pci_dev, PCI_D3hot);
6856 * pci_set_power_state(pci_dev, PCI_D0);
6857 * pci_restore_state(pci_dev);
6858 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006859 * For controllers newer than the P600, the pci power state
6860 * method of resetting doesn't work so we have another way
6861 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006862 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006863
Robert Elliott60f923b2015-01-23 16:42:06 -06006864 if (!ctlr_is_resettable(board_id)) {
6865 dev_warn(&pdev->dev, "Controller not resettable\n");
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06006866 return -ENODEV;
6867 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05006868
6869 /* if controller is soft- but not hard resettable... */
6870 if (!ctlr_is_hard_resettable(board_id))
6871 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05006872
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006873 /* Save the PCI command register */
6874 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006875 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006876
6877 /* find the first memory BAR, so we can find the cfg table */
6878 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
6879 if (rc)
6880 return rc;
6881 vaddr = remap_pci_mem(paddr, 0x250);
6882 if (!vaddr)
6883 return -ENOMEM;
6884
6885 /* find cfgtable in order to check if reset via doorbell is supported */
6886 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
6887 &cfg_base_addr_index, &cfg_offset);
6888 if (rc)
6889 goto unmap_vaddr;
6890 cfgtable = remap_pci_mem(pci_resource_start(pdev,
6891 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
6892 if (!cfgtable) {
6893 rc = -ENOMEM;
6894 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006895 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006896 rc = write_driver_ver_to_cfgtable(cfgtable);
6897 if (rc)
Tomas Henzl03741d92015-01-23 16:41:14 -06006898 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006899
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006900 /* If reset via doorbell register is supported, use that.
6901 * There are two such methods. Favor the newest method.
6902 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006903 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006904 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6905 if (use_doorbell) {
6906 use_doorbell = DOORBELL_CTLR_RESET2;
6907 } else {
6908 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6909 if (use_doorbell) {
Stephen Cameron050f7142015-01-23 16:42:22 -06006910 dev_warn(&pdev->dev,
6911 "Soft reset not supported. Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006912 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05006913 goto unmap_cfgtable;
6914 }
6915 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006916
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006917 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
6918 if (rc)
6919 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006920
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006921 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06006922 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006923
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006924 /* Some devices (notably the HP Smart Array 5i Controller)
6925 need a little pause here */
6926 msleep(HPSA_POST_RESET_PAUSE_MSECS);
6927
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006928 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
6929 if (rc) {
6930 dev_warn(&pdev->dev,
Stephen Cameron050f7142015-01-23 16:42:22 -06006931 "Failed waiting for board to become ready after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006932 goto unmap_cfgtable;
6933 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006934
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006935 rc = controller_reset_failed(vaddr);
6936 if (rc < 0)
6937 goto unmap_cfgtable;
6938 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006939 dev_warn(&pdev->dev, "Unable to successfully reset "
6940 "controller. Will try soft reset.\n");
6941 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006942 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006943 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006944 }
6945
6946unmap_cfgtable:
6947 iounmap(cfgtable);
6948
6949unmap_vaddr:
6950 iounmap(vaddr);
6951 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006952}
6953
6954/*
6955 * We cannot read the structure directly, for portability we must use
6956 * the io functions.
6957 * This is for debug only.
6958 */
Don Brace42a91642014-11-14 17:26:27 -06006959static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006960{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006961#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006962 int i;
6963 char temp_name[17];
6964
6965 dev_info(dev, "Controller Configuration information\n");
6966 dev_info(dev, "------------------------------------\n");
6967 for (i = 0; i < 4; i++)
6968 temp_name[i] = readb(&(tb->Signature[i]));
6969 temp_name[4] = '\0';
6970 dev_info(dev, " Signature = %s\n", temp_name);
6971 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
6972 dev_info(dev, " Transport methods supported = 0x%x\n",
6973 readl(&(tb->TransportSupport)));
6974 dev_info(dev, " Transport methods active = 0x%x\n",
6975 readl(&(tb->TransportActive)));
6976 dev_info(dev, " Requested transport Method = 0x%x\n",
6977 readl(&(tb->HostWrite.TransportRequest)));
6978 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
6979 readl(&(tb->HostWrite.CoalIntDelay)));
6980 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
6981 readl(&(tb->HostWrite.CoalIntCount)));
Robert Elliott69d6e332015-01-23 16:41:56 -06006982 dev_info(dev, " Max outstanding commands = %d\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006983 readl(&(tb->CmdsOutMax)));
6984 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
6985 for (i = 0; i < 16; i++)
6986 temp_name[i] = readb(&(tb->ServerName[i]));
6987 temp_name[16] = '\0';
6988 dev_info(dev, " Server Name = %s\n", temp_name);
6989 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
6990 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006991#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05006992}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006993
6994static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
6995{
6996 int i, offset, mem_type, bar_type;
6997
6998 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
6999 return 0;
7000 offset = 0;
7001 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
7002 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
7003 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
7004 offset += 4;
7005 else {
7006 mem_type = pci_resource_flags(pdev, i) &
7007 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
7008 switch (mem_type) {
7009 case PCI_BASE_ADDRESS_MEM_TYPE_32:
7010 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
7011 offset += 4; /* 32 bit */
7012 break;
7013 case PCI_BASE_ADDRESS_MEM_TYPE_64:
7014 offset += 8;
7015 break;
7016 default: /* reserved in PCI 2.2 */
7017 dev_warn(&pdev->dev,
7018 "base address is invalid\n");
7019 return -1;
7020 break;
7021 }
7022 }
7023 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
7024 return i + 1;
7025 }
7026 return -1;
7027}
7028
Robert Elliottcc64c812015-04-23 09:33:12 -05007029static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
7030{
7031 if (h->msix_vector) {
7032 if (h->pdev->msix_enabled)
7033 pci_disable_msix(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007034 h->msix_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007035 } else if (h->msi_vector) {
7036 if (h->pdev->msi_enabled)
7037 pci_disable_msi(h->pdev);
Robert Elliott105a3db2015-04-23 09:33:48 -05007038 h->msi_vector = 0;
Robert Elliottcc64c812015-04-23 09:33:12 -05007039 }
7040}
7041
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007042/* If MSI/MSI-X is supported by the kernel we will try to enable it on
Stephen Cameron050f7142015-01-23 16:42:22 -06007043 * controllers that are capable. If not, we use legacy INTx mode.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007044 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007045static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007046{
7047#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05007048 int err, i;
7049 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
7050
7051 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
7052 hpsa_msix_entries[i].vector = 0;
7053 hpsa_msix_entries[i].entry = i;
7054 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007055
7056 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007057 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
7058 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007059 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007060 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007061 dev_info(&h->pdev->dev, "MSI-X capable controller\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007062 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05007063 if (h->msix_vector > num_online_cpus())
7064 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007065 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
7066 1, h->msix_vector);
7067 if (err < 0) {
7068 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
7069 h->msix_vector = 0;
7070 goto single_msi_mode;
7071 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007072 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007073 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007074 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007075 h->msix_vector = err;
7076 for (i = 0; i < h->msix_vector; i++)
7077 h->intr[i] = hpsa_msix_entries[i].vector;
7078 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007079 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02007080single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007081 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007082 dev_info(&h->pdev->dev, "MSI capable controller\n");
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007083 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007084 h->msi_vector = 1;
7085 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007086 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007087 }
7088default_int_mode:
7089#endif /* CONFIG_PCI_MSI */
7090 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06007091 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007092}
7093
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007094static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007095{
7096 int i;
7097 u32 subsystem_vendor_id, subsystem_device_id;
7098
7099 subsystem_vendor_id = pdev->subsystem_vendor;
7100 subsystem_device_id = pdev->subsystem_device;
7101 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
7102 subsystem_vendor_id;
7103
7104 for (i = 0; i < ARRAY_SIZE(products); i++)
7105 if (*board_id == products[i].board_id)
7106 return i;
7107
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05007108 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
7109 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
7110 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007111 dev_warn(&pdev->dev, "unrecognized board ID: "
7112 "0x%08x, ignoring.\n", *board_id);
7113 return -ENODEV;
7114 }
7115 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
7116}
7117
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007118static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
7119 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007120{
7121 int i;
7122
7123 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007124 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007125 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007126 *memory_bar = pci_resource_start(pdev, i);
7127 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007128 *memory_bar);
7129 return 0;
7130 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007131 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007132 return -ENODEV;
7133}
7134
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007135static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
7136 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007137{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007138 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007139 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007140 if (wait_for_ready)
7141 iterations = HPSA_BOARD_READY_ITERATIONS;
7142 else
7143 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007144
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007145 for (i = 0; i < iterations; i++) {
7146 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
7147 if (wait_for_ready) {
7148 if (scratchpad == HPSA_FIRMWARE_READY)
7149 return 0;
7150 } else {
7151 if (scratchpad != HPSA_FIRMWARE_READY)
7152 return 0;
7153 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007154 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
7155 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007156 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007157 return -ENODEV;
7158}
7159
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007160static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
7161 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
7162 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007163{
7164 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
7165 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
7166 *cfg_base_addr &= (u32) 0x0000ffff;
7167 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
7168 if (*cfg_base_addr_index == -1) {
7169 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
7170 return -ENODEV;
7171 }
7172 return 0;
7173}
7174
Robert Elliott195f2c62015-04-23 09:33:17 -05007175static void hpsa_free_cfgtables(struct ctlr_info *h)
7176{
Robert Elliott105a3db2015-04-23 09:33:48 -05007177 if (h->transtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007178 iounmap(h->transtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007179 h->transtable = NULL;
7180 }
7181 if (h->cfgtable) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007182 iounmap(h->cfgtable);
Robert Elliott105a3db2015-04-23 09:33:48 -05007183 h->cfgtable = NULL;
7184 }
Robert Elliott195f2c62015-04-23 09:33:17 -05007185}
7186
7187/* Find and map CISS config table and transfer table
7188+ * several items must be unmapped (freed) later
7189+ * */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007190static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007191{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06007192 u64 cfg_offset;
7193 u32 cfg_base_addr;
7194 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06007195 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007196 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007197
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007198 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7199 &cfg_base_addr_index, &cfg_offset);
7200 if (rc)
7201 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007202 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007203 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007204 if (!h->cfgtable) {
7205 dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007206 return -ENOMEM;
Robert Elliottcd3c81c2015-01-23 16:42:27 -06007207 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05007208 rc = write_driver_ver_to_cfgtable(h->cfgtable);
7209 if (rc)
7210 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007211 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05007212 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007213 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
7214 cfg_base_addr_index)+cfg_offset+trans_offset,
7215 sizeof(*h->transtable));
Robert Elliott195f2c62015-04-23 09:33:17 -05007216 if (!h->transtable) {
7217 dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
7218 hpsa_free_cfgtables(h);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007219 return -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007220 }
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007221 return 0;
7222}
7223
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007224static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007225{
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007226#define MIN_MAX_COMMANDS 16
7227 BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
7228
7229 h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06007230
7231 /* Limit commands in memory limited kdump scenario. */
7232 if (reset_devices && h->max_commands > 32)
7233 h->max_commands = 32;
7234
Stephen Cameron41ce4c32015-04-23 09:31:47 -05007235 if (h->max_commands < MIN_MAX_COMMANDS) {
7236 dev_warn(&h->pdev->dev,
7237 "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
7238 h->max_commands,
7239 MIN_MAX_COMMANDS);
7240 h->max_commands = MIN_MAX_COMMANDS;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007241 }
7242}
7243
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007244/* If the controller reports that the total max sg entries is greater than 512,
7245 * then we know that chained SG blocks work. (Original smart arrays did not
7246 * support chained SG blocks and would return zero for max sg entries.)
7247 */
7248static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
7249{
7250 return h->maxsgentries > 512;
7251}
7252
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007253/* Interrogate the hardware for some limits:
7254 * max commands, max SG elements without chaining, and with chaining,
7255 * SG chain block size, etc.
7256 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007257static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007258{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007259 hpsa_get_max_perf_mode_cmds(h);
Stephen Cameron45fcb862015-01-23 16:43:04 -06007260 h->nr_cmds = h->max_commands;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007261 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007262 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007263 if (hpsa_supports_chained_sg_blocks(h)) {
7264 /* Limit in-command s/g elements to 32 save dma'able memory. */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007265 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06007266 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007267 h->maxsgentries--; /* save one for chain pointer */
7268 } else {
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007269 /*
7270 * Original smart arrays supported at most 31 s/g entries
7271 * embedded inline in the command (trying to use more
7272 * would lock up the controller)
7273 */
7274 h->max_cmd_sg_entries = 31;
Webb Scales1a63ea62014-11-14 17:26:43 -06007275 h->maxsgentries = 31; /* default to traditional values */
Webb Scalesc7ee65b2015-01-23 16:42:17 -06007276 h->chainsize = 0;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007277 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05007278
7279 /* Find out what task management functions are supported and cache */
7280 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06007281 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
7282 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
7283 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
7284 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen Cameron8be986c2015-04-23 09:34:06 -05007285 if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
7286 dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007287}
7288
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007289static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
7290{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09007291 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06007292 dev_err(&h->pdev->dev, "not a valid CISS config table\n");
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007293 return false;
7294 }
7295 return true;
7296}
7297
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007298static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007299{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007300 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007301
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007302 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02007303 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
7304#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007305 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007306#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06007307 driver_support |= ENABLE_UNIT_ATTN;
7308 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05007309}
7310
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007311/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
7312 * in a prefetch beyond physical memory.
7313 */
7314static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
7315{
7316 u32 dma_prefetch;
7317
7318 if (h->board_id != 0x3225103C)
7319 return;
7320 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
7321 dma_prefetch |= 0x8000;
7322 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
7323}
7324
Robert Elliottc706a792015-01-23 16:45:01 -06007325static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007326{
7327 int i;
7328 u32 doorbell_value;
7329 unsigned long flags;
7330 /* wait until the clear_event_notify bit 6 is cleared by controller. */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007331 for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007332 spin_lock_irqsave(&h->lock, flags);
7333 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7334 spin_unlock_irqrestore(&h->lock, flags);
7335 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
Robert Elliottc706a792015-01-23 16:45:01 -06007336 goto done;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007337 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007338 msleep(CLEAR_EVENT_WAIT_INTERVAL);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007339 }
Robert Elliottc706a792015-01-23 16:45:01 -06007340 return -ENODEV;
7341done:
7342 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007343}
7344
Robert Elliottc706a792015-01-23 16:45:01 -06007345static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007346{
7347 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007348 u32 doorbell_value;
7349 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007350
7351 /* under certain very rare conditions, this can take awhile.
7352 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
7353 * as we enter this code.)
7354 */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007355 for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
Webb Scales25163bd2015-04-23 09:32:00 -05007356 if (h->remove_in_progress)
7357 goto done;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06007358 spin_lock_irqsave(&h->lock, flags);
7359 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
7360 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06007361 if (!(doorbell_value & CFGTBL_ChangeReq))
Robert Elliottc706a792015-01-23 16:45:01 -06007362 goto done;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007363 /* delay and try again */
Robert Elliott007e7aa2015-01-23 16:44:56 -06007364 msleep(MODE_CHANGE_WAIT_INTERVAL);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007365 }
Robert Elliottc706a792015-01-23 16:45:01 -06007366 return -ENODEV;
7367done:
7368 return 0;
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007369}
7370
Robert Elliottc706a792015-01-23 16:45:01 -06007371/* return -ENODEV or other reason on error, 0 on success */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007372static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007373{
7374 u32 trans_support;
7375
7376 trans_support = readl(&(h->cfgtable->TransportSupport));
7377 if (!(trans_support & SIMPLE_MODE))
7378 return -ENOTSUPP;
7379
7380 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007381
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007382 /* Update the field, and then ring the doorbell */
7383 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007384 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007385 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06007386 if (hpsa_wait_for_mode_change_ack(h))
7387 goto error;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007388 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007389 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
7390 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007391 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007392 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007393error:
Stephen Cameron050f7142015-01-23 16:42:22 -06007394 dev_err(&h->pdev->dev, "failed to enter simple mode\n");
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007395 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007396}
7397
Robert Elliott195f2c62015-04-23 09:33:17 -05007398/* free items allocated or mapped by hpsa_pci_init */
7399static void hpsa_free_pci_init(struct ctlr_info *h)
7400{
7401 hpsa_free_cfgtables(h); /* pci_init 4 */
7402 iounmap(h->vaddr); /* pci_init 3 */
Robert Elliott105a3db2015-04-23 09:33:48 -05007403 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007404 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Robert Elliott943a7022015-04-23 09:34:32 -05007405 /*
7406 * call pci_disable_device before pci_release_regions per
7407 * Documentation/PCI/pci.txt
7408 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007409 pci_disable_device(h->pdev); /* pci_init 1 */
Robert Elliott943a7022015-04-23 09:34:32 -05007410 pci_release_regions(h->pdev); /* pci_init 2 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007411}
7412
7413/* several items must be freed later */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007414static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007415{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007416 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007417
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007418 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
7419 if (prod_index < 0)
Robert Elliott60f923b2015-01-23 16:42:06 -06007420 return prod_index;
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05007421 h->product_name = products[prod_index].product_name;
7422 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007423
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05007424 h->needs_abort_tags_swizzled =
7425 ctlr_needs_abort_tags_swizzled(h->board_id);
7426
Matthew Garrette5a44df2011-11-11 11:14:23 -05007427 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
7428 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
7429
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007430 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007431 if (err) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007432 dev_err(&h->pdev->dev, "failed to enable PCI device\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007433 pci_disable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007434 return err;
7435 }
7436
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007437 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007438 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05007439 dev_err(&h->pdev->dev,
Robert Elliott195f2c62015-04-23 09:33:17 -05007440 "failed to obtain PCI resources\n");
Robert Elliott943a7022015-04-23 09:34:32 -05007441 pci_disable_device(h->pdev);
7442 return err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007443 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007444
7445 pci_set_master(h->pdev);
7446
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05007447 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05007448 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05007449 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007450 goto clean2; /* intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007451 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007452 if (!h->vaddr) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007453 dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007454 err = -ENOMEM;
Robert Elliott195f2c62015-04-23 09:33:17 -05007455 goto clean2; /* intmode+region, pci */
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007456 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06007457 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05007458 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007459 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameron77c44952010-05-27 15:13:17 -05007460 err = hpsa_find_cfgtables(h);
7461 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007462 goto clean3; /* vaddr, intmode+region, pci */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05007463 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007464
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05007465 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007466 err = -ENODEV;
Robert Elliott195f2c62015-04-23 09:33:17 -05007467 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007468 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06007469 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05007470 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05007471 err = hpsa_enter_simple_mode(h);
7472 if (err)
Robert Elliott195f2c62015-04-23 09:33:17 -05007473 goto clean4; /* cfgtables, vaddr, intmode+region, pci */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007474 return 0;
7475
Robert Elliott195f2c62015-04-23 09:33:17 -05007476clean4: /* cfgtables, vaddr, intmode+region, pci */
7477 hpsa_free_cfgtables(h);
7478clean3: /* vaddr, intmode+region, pci */
7479 iounmap(h->vaddr);
Robert Elliott105a3db2015-04-23 09:33:48 -05007480 h->vaddr = NULL;
Robert Elliott195f2c62015-04-23 09:33:17 -05007481clean2: /* intmode+region, pci */
7482 hpsa_disable_interrupt_mode(h);
Robert Elliott943a7022015-04-23 09:34:32 -05007483 /*
7484 * call pci_disable_device before pci_release_regions per
7485 * Documentation/PCI/pci.txt
7486 */
Robert Elliott195f2c62015-04-23 09:33:17 -05007487 pci_disable_device(h->pdev);
Robert Elliott943a7022015-04-23 09:34:32 -05007488 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007489 return err;
7490}
7491
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007492static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007493{
7494 int rc;
7495
7496#define HBA_INQUIRY_BYTE_COUNT 64
7497 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
7498 if (!h->hba_inquiry_data)
7499 return;
7500 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
7501 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
7502 if (rc != 0) {
7503 kfree(h->hba_inquiry_data);
7504 h->hba_inquiry_data = NULL;
7505 }
7506}
7507
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007508static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007509{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007510 int rc, i;
Tomas Henzl3b747292015-01-23 16:41:20 -06007511 void __iomem *vaddr;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007512
7513 if (!reset_devices)
7514 return 0;
7515
Tomas Henzl132aa222014-08-14 16:12:39 +02007516 /* kdump kernel is loading, we don't know in which state is
7517 * the pci interface. The dev->enable_cnt is equal zero
7518 * so we call enable+disable, wait a while and switch it on.
7519 */
7520 rc = pci_enable_device(pdev);
7521 if (rc) {
7522 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
7523 return -ENODEV;
7524 }
7525 pci_disable_device(pdev);
7526 msleep(260); /* a randomly chosen number */
7527 rc = pci_enable_device(pdev);
7528 if (rc) {
7529 dev_warn(&pdev->dev, "failed to enable device.\n");
7530 return -ENODEV;
7531 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06007532
Tomas Henzl859c75a2014-09-12 14:44:15 +02007533 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06007534
Tomas Henzl3b747292015-01-23 16:41:20 -06007535 vaddr = pci_ioremap_bar(pdev, 0);
7536 if (vaddr == NULL) {
7537 rc = -ENOMEM;
7538 goto out_disable;
7539 }
7540 writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
7541 iounmap(vaddr);
7542
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007543 /* Reset the controller with a PCI power-cycle or via doorbell */
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02007544 rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007545
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007546 /* -ENOTSUPP here means we cannot reset the controller
7547 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05007548 * "performant mode". Or, it might be 640x, which can't reset
7549 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05007550 */
Robert Elliottadf1b3a2015-01-23 16:42:01 -06007551 if (rc)
Tomas Henzl132aa222014-08-14 16:12:39 +02007552 goto out_disable;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007553
7554 /* Now try to get the controller to respond to a no-op */
Robert Elliott1ba66c92015-01-23 16:42:11 -06007555 dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007556 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
7557 if (hpsa_noop(pdev) == 0)
7558 break;
7559 else
7560 dev_warn(&pdev->dev, "no-op failed%s\n",
7561 (i < 11 ? "; re-trying" : ""));
7562 }
Tomas Henzl132aa222014-08-14 16:12:39 +02007563
7564out_disable:
7565
7566 pci_disable_device(pdev);
7567 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05007568}
7569
Robert Elliott1fb7c982015-04-23 09:33:22 -05007570static void hpsa_free_cmd_pool(struct ctlr_info *h)
7571{
7572 kfree(h->cmd_pool_bits);
Robert Elliott105a3db2015-04-23 09:33:48 -05007573 h->cmd_pool_bits = NULL;
7574 if (h->cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007575 pci_free_consistent(h->pdev,
7576 h->nr_cmds * sizeof(struct CommandList),
7577 h->cmd_pool,
7578 h->cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007579 h->cmd_pool = NULL;
7580 h->cmd_pool_dhandle = 0;
7581 }
7582 if (h->errinfo_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05007583 pci_free_consistent(h->pdev,
7584 h->nr_cmds * sizeof(struct ErrorInfo),
7585 h->errinfo_pool,
7586 h->errinfo_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05007587 h->errinfo_pool = NULL;
7588 h->errinfo_pool_dhandle = 0;
7589 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05007590}
7591
Robert Elliottd37ffbe2015-04-23 09:32:27 -05007592static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007593{
7594 h->cmd_pool_bits = kzalloc(
7595 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
7596 sizeof(unsigned long), GFP_KERNEL);
7597 h->cmd_pool = pci_alloc_consistent(h->pdev,
7598 h->nr_cmds * sizeof(*h->cmd_pool),
7599 &(h->cmd_pool_dhandle));
7600 h->errinfo_pool = pci_alloc_consistent(h->pdev,
7601 h->nr_cmds * sizeof(*h->errinfo_pool),
7602 &(h->errinfo_pool_dhandle));
7603 if ((h->cmd_pool_bits == NULL)
7604 || (h->cmd_pool == NULL)
7605 || (h->errinfo_pool == NULL)) {
7606 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
Robert Elliott2c143342015-01-23 16:42:48 -06007607 goto clean_up;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007608 }
Stephen Cameron360c73b2015-04-23 09:32:32 -05007609 hpsa_preinitialize_commands(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007610 return 0;
Robert Elliott2c143342015-01-23 16:42:48 -06007611clean_up:
7612 hpsa_free_cmd_pool(h);
7613 return -ENOMEM;
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007614}
7615
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007616static void hpsa_irq_affinity_hints(struct ctlr_info *h)
7617{
Fabian Frederickec429952015-01-23 16:41:46 -06007618 int i, cpu;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007619
7620 cpu = cpumask_first(cpu_online_mask);
7621 for (i = 0; i < h->msix_vector; i++) {
Fabian Frederickec429952015-01-23 16:41:46 -06007622 irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007623 cpu = cpumask_next(cpu, cpu_online_mask);
7624 }
7625}
7626
Robert Elliottec501a12015-01-23 16:41:40 -06007627/* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
7628static void hpsa_free_irqs(struct ctlr_info *h)
7629{
7630 int i;
7631
7632 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
7633 /* Single reply queue, only one irq to free */
7634 i = h->intr_mode;
7635 irq_set_affinity_hint(h->intr[i], NULL);
7636 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007637 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007638 return;
7639 }
7640
7641 for (i = 0; i < h->msix_vector; i++) {
7642 irq_set_affinity_hint(h->intr[i], NULL);
7643 free_irq(h->intr[i], &h->q[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05007644 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007645 }
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007646 for (; i < MAX_REPLY_QUEUES; i++)
7647 h->q[i] = 0;
Robert Elliottec501a12015-01-23 16:41:40 -06007648}
7649
Robert Elliott9ee61792015-01-23 16:42:32 -06007650/* returns 0 on success; cleans up and returns -Enn on error */
7651static int hpsa_request_irqs(struct ctlr_info *h,
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007652 irqreturn_t (*msixhandler)(int, void *),
7653 irqreturn_t (*intxhandler)(int, void *))
7654{
Matt Gates254f7962012-05-01 11:43:06 -05007655 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007656
Matt Gates254f7962012-05-01 11:43:06 -05007657 /*
7658 * initialize h->q[x] = x so that interrupt handlers know which
7659 * queue to process.
7660 */
7661 for (i = 0; i < MAX_REPLY_QUEUES; i++)
7662 h->q[i] = (u8) i;
7663
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007664 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05007665 /* If performant mode and MSI-X, use multiple reply queues */
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007666 for (i = 0; i < h->msix_vector; i++) {
Robert Elliott8b470042015-04-23 09:34:58 -05007667 sprintf(h->intrname[i], "%s-msix%d", h->devname, i);
Matt Gates254f7962012-05-01 11:43:06 -05007668 rc = request_irq(h->intr[i], msixhandler,
Robert Elliott8b470042015-04-23 09:34:58 -05007669 0, h->intrname[i],
Matt Gates254f7962012-05-01 11:43:06 -05007670 &h->q[i]);
Robert Elliotta4e17fc2015-01-23 16:41:51 -06007671 if (rc) {
7672 int j;
7673
7674 dev_err(&h->pdev->dev,
7675 "failed to get irq %d for %s\n",
7676 h->intr[i], h->devname);
7677 for (j = 0; j < i; j++) {
7678 free_irq(h->intr[j], &h->q[j]);
7679 h->q[j] = 0;
7680 }
7681 for (; j < MAX_REPLY_QUEUES; j++)
7682 h->q[j] = 0;
7683 return rc;
7684 }
7685 }
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05007686 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05007687 } else {
7688 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007689 if (h->msix_vector > 0 || h->msi_vector) {
Robert Elliott8b470042015-04-23 09:34:58 -05007690 if (h->msix_vector)
7691 sprintf(h->intrname[h->intr_mode],
7692 "%s-msix", h->devname);
7693 else
7694 sprintf(h->intrname[h->intr_mode],
7695 "%s-msi", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05007696 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05007697 msixhandler, 0,
7698 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05007699 &h->q[h->intr_mode]);
7700 } else {
Robert Elliott8b470042015-04-23 09:34:58 -05007701 sprintf(h->intrname[h->intr_mode],
7702 "%s-intx", h->devname);
Matt Gates254f7962012-05-01 11:43:06 -05007703 rc = request_irq(h->intr[h->intr_mode],
Robert Elliott8b470042015-04-23 09:34:58 -05007704 intxhandler, IRQF_SHARED,
7705 h->intrname[h->intr_mode],
Matt Gates254f7962012-05-01 11:43:06 -05007706 &h->q[h->intr_mode]);
7707 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007708 irq_set_affinity_hint(h->intr[h->intr_mode], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05007709 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007710 if (rc) {
Robert Elliott195f2c62015-04-23 09:33:17 -05007711 dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007712 h->intr[h->intr_mode], h->devname);
Robert Elliott195f2c62015-04-23 09:33:17 -05007713 hpsa_free_irqs(h);
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05007714 return -ENODEV;
7715 }
7716 return 0;
7717}
7718
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007719static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007720{
Robert Elliott39c53f52015-04-23 09:35:14 -05007721 int rc;
Robert Elliottbf43caf2015-04-23 09:33:38 -05007722 hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007723
7724 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007725 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY);
7726 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007727 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007728 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007729 }
7730
7731 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007732 rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
7733 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007734 dev_warn(&h->pdev->dev, "Board failed to become ready "
7735 "after soft reset.\n");
Robert Elliott39c53f52015-04-23 09:35:14 -05007736 return rc;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007737 }
7738
7739 return 0;
7740}
7741
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007742static void hpsa_free_reply_queues(struct ctlr_info *h)
7743{
7744 int i;
7745
7746 for (i = 0; i < h->nreply_queues; i++) {
7747 if (!h->reply_queue[i].head)
7748 continue;
Robert Elliott1fb7c982015-04-23 09:33:22 -05007749 pci_free_consistent(h->pdev,
7750 h->reply_queue_size,
7751 h->reply_queue[i].head,
7752 h->reply_queue[i].busaddr);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007753 h->reply_queue[i].head = NULL;
7754 h->reply_queue[i].busaddr = 0;
7755 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007756 h->reply_queue_size = 0;
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007757}
7758
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007759static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
7760{
Robert Elliott105a3db2015-04-23 09:33:48 -05007761 hpsa_free_performant_mode(h); /* init_one 7 */
7762 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
7763 hpsa_free_cmd_pool(h); /* init_one 5 */
7764 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliott2946e822015-04-23 09:35:09 -05007765 scsi_host_put(h->scsi_host); /* init_one 3 */
7766 h->scsi_host = NULL; /* init_one 3 */
7767 hpsa_free_pci_init(h); /* init_one 2_5 */
Robert Elliott9ecd9532015-04-23 09:34:43 -05007768 free_percpu(h->lockup_detected); /* init_one 2 */
7769 h->lockup_detected = NULL; /* init_one 2 */
7770 if (h->resubmit_wq) {
7771 destroy_workqueue(h->resubmit_wq); /* init_one 1 */
7772 h->resubmit_wq = NULL;
7773 }
7774 if (h->rescan_ctlr_wq) {
7775 destroy_workqueue(h->rescan_ctlr_wq);
7776 h->rescan_ctlr_wq = NULL;
7777 }
Robert Elliott105a3db2015-04-23 09:33:48 -05007778 kfree(h); /* init_one 1 */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05007779}
7780
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007781/* Called when controller lockup detected. */
Don Bracef2405db2015-01-23 16:43:09 -06007782static void fail_all_outstanding_cmds(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007783{
Webb Scales281a7fd2015-01-23 16:43:35 -06007784 int i, refcount;
7785 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05007786 int failcount = 0;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007787
Don Brace080ef1c2015-01-23 16:43:25 -06007788 flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
Don Bracef2405db2015-01-23 16:43:09 -06007789 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06007790 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06007791 refcount = atomic_inc_return(&c->refcount);
7792 if (refcount > 1) {
Webb Scales25163bd2015-04-23 09:32:00 -05007793 c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
Webb Scales281a7fd2015-01-23 16:43:35 -06007794 finish_cmd(c);
Stephen Cameron433b5f42015-04-23 09:32:11 -05007795 atomic_dec(&h->commands_outstanding);
Webb Scales25163bd2015-04-23 09:32:00 -05007796 failcount++;
Webb Scales281a7fd2015-01-23 16:43:35 -06007797 }
7798 cmd_free(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007799 }
Webb Scales25163bd2015-04-23 09:32:00 -05007800 dev_warn(&h->pdev->dev,
7801 "failed %d commands in fail_all\n", failcount);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007802}
7803
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007804static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
7805{
Rusty Russellc8ed0012015-03-05 10:49:19 +10307806 int cpu;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007807
Rusty Russellc8ed0012015-03-05 10:49:19 +10307808 for_each_online_cpu(cpu) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007809 u32 *lockup_detected;
7810 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7811 *lockup_detected = value;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007812 }
7813 wmb(); /* be sure the per-cpu variables are out to memory */
7814}
7815
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007816static void controller_lockup_detected(struct ctlr_info *h)
7817{
7818 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007819 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007820
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007821 h->access.set_intr_mask(h, HPSA_INTR_OFF);
7822 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007823 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7824 if (!lockup_detected) {
7825 /* no heartbeat, but controller gave us a zero. */
7826 dev_warn(&h->pdev->dev,
Webb Scales25163bd2015-04-23 09:32:00 -05007827 "lockup detected after %d but scratchpad register is zero\n",
7828 h->heartbeat_sample_interval / HZ);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007829 lockup_detected = 0xffffffff;
7830 }
7831 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007832 spin_unlock_irqrestore(&h->lock, flags);
Webb Scales25163bd2015-04-23 09:32:00 -05007833 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
7834 lockup_detected, h->heartbeat_sample_interval / HZ);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007835 pci_disable_device(h->pdev);
Don Bracef2405db2015-01-23 16:43:09 -06007836 fail_all_outstanding_cmds(h);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007837}
7838
Webb Scales25163bd2015-04-23 09:32:00 -05007839static int detect_controller_lockup(struct ctlr_info *h)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007840{
7841 u64 now;
7842 u32 heartbeat;
7843 unsigned long flags;
7844
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007845 now = get_jiffies_64();
7846 /* If we've received an interrupt recently, we're ok. */
7847 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007848 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007849 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007850
7851 /*
7852 * If we've already checked the heartbeat recently, we're ok.
7853 * This could happen if someone sends us a signal. We
7854 * otherwise don't care about signals in this thread.
7855 */
7856 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05007857 (h->heartbeat_sample_interval), now))
Webb Scales25163bd2015-04-23 09:32:00 -05007858 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007859
7860 /* If heartbeat has not changed since we last looked, we're not ok. */
7861 spin_lock_irqsave(&h->lock, flags);
7862 heartbeat = readl(&h->cfgtable->HeartBeat);
7863 spin_unlock_irqrestore(&h->lock, flags);
7864 if (h->last_heartbeat == heartbeat) {
7865 controller_lockup_detected(h);
Webb Scales25163bd2015-04-23 09:32:00 -05007866 return true;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007867 }
7868
7869 /* We're ok. */
7870 h->last_heartbeat = heartbeat;
7871 h->last_heartbeat_timestamp = now;
Webb Scales25163bd2015-04-23 09:32:00 -05007872 return false;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007873}
7874
Stephen M. Cameron98465902014-02-21 16:25:00 -06007875static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007876{
7877 int i;
7878 char *event_type;
7879
Stephen Camerone4aa3e62015-01-23 16:44:07 -06007880 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7881 return;
7882
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007883 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06007884 if ((h->transMethod & (CFGTBL_Trans_io_accel1
7885 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007886 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
7887 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
7888
7889 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
7890 event_type = "state change";
7891 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
7892 event_type = "configuration change";
7893 /* Stop sending new RAID offload reqs via the IO accelerator */
7894 scsi_block_requests(h->scsi_host);
7895 for (i = 0; i < h->ndevices; i++)
7896 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007897 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007898 /* Set 'accelerator path config change' bit */
7899 dev_warn(&h->pdev->dev,
7900 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
7901 h->events, event_type);
7902 writel(h->events, &(h->cfgtable->clear_event_notify));
7903 /* Set the "clear event notify field update" bit 6 */
7904 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7905 /* Wait until ctlr clears 'clear event notify field', bit 6 */
7906 hpsa_wait_for_clear_event_notify_ack(h);
7907 scsi_unblock_requests(h->scsi_host);
7908 } else {
7909 /* Acknowledge controller notification events. */
7910 writel(h->events, &(h->cfgtable->clear_event_notify));
7911 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
7912 hpsa_wait_for_clear_event_notify_ack(h);
7913#if 0
7914 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7915 hpsa_wait_for_mode_change_ack(h);
7916#endif
7917 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007918 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007919}
7920
7921/* Check a register on the controller to see if there are configuration
7922 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06007923 * we should rescan the controller for devices.
7924 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007925 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06007926static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007927{
7928 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06007929 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007930
7931 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06007932 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007933}
7934
Stephen M. Cameron98465902014-02-21 16:25:00 -06007935/*
7936 * Check if any of the offline devices have become ready
7937 */
7938static int hpsa_offline_devices_ready(struct ctlr_info *h)
7939{
7940 unsigned long flags;
7941 struct offline_device_entry *d;
7942 struct list_head *this, *tmp;
7943
7944 spin_lock_irqsave(&h->offline_device_lock, flags);
7945 list_for_each_safe(this, tmp, &h->offline_device_list) {
7946 d = list_entry(this, struct offline_device_entry,
7947 offline_list);
7948 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007949 if (!hpsa_volume_offline(h, d->scsi3addr)) {
7950 spin_lock_irqsave(&h->offline_device_lock, flags);
7951 list_del(&d->offline_list);
7952 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007953 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05007954 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06007955 spin_lock_irqsave(&h->offline_device_lock, flags);
7956 }
7957 spin_unlock_irqrestore(&h->offline_device_lock, flags);
7958 return 0;
7959}
7960
Don Brace6636e7f2015-01-23 16:45:17 -06007961static void hpsa_rescan_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007962{
7963 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007964 struct ctlr_info *h = container_of(to_delayed_work(work),
Don Brace6636e7f2015-01-23 16:45:17 -06007965 struct ctlr_info, rescan_ctlr_work);
7966
7967
7968 if (h->remove_in_progress)
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007969 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06007970
7971 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
7972 scsi_host_get(h->scsi_host);
Stephen M. Cameron98465902014-02-21 16:25:00 -06007973 hpsa_ack_ctlr_events(h);
7974 hpsa_scan_start(h->scsi_host);
7975 scsi_host_put(h->scsi_host);
7976 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007977 spin_lock_irqsave(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06007978 if (!h->remove_in_progress)
7979 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007980 h->heartbeat_sample_interval);
7981 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007982}
7983
Don Brace6636e7f2015-01-23 16:45:17 -06007984static void hpsa_monitor_ctlr_worker(struct work_struct *work)
7985{
7986 unsigned long flags;
7987 struct ctlr_info *h = container_of(to_delayed_work(work),
7988 struct ctlr_info, monitor_ctlr_work);
7989
7990 detect_controller_lockup(h);
7991 if (lockup_detected(h))
7992 return;
7993
7994 spin_lock_irqsave(&h->lock, flags);
7995 if (!h->remove_in_progress)
7996 schedule_delayed_work(&h->monitor_ctlr_work,
7997 h->heartbeat_sample_interval);
7998 spin_unlock_irqrestore(&h->lock, flags);
7999}
8000
8001static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
8002 char *name)
8003{
8004 struct workqueue_struct *wq = NULL;
Don Brace6636e7f2015-01-23 16:45:17 -06008005
Don Brace397ea9c2015-02-06 17:44:15 -06008006 wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
Don Brace6636e7f2015-01-23 16:45:17 -06008007 if (!wq)
8008 dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
8009
8010 return wq;
8011}
8012
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008013static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008014{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05008015 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008016 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008017 int try_soft_reset = 0;
8018 unsigned long flags;
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008019 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008020
8021 if (number_of_controllers == 0)
8022 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008023
Tomas Henzl6b6c1cd2015-04-02 15:25:54 +02008024 rc = hpsa_lookup_board_id(pdev, &board_id);
8025 if (rc < 0) {
8026 dev_warn(&pdev->dev, "Board ID not found\n");
8027 return rc;
8028 }
8029
8030 rc = hpsa_init_reset_devices(pdev, board_id);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008031 if (rc) {
8032 if (rc != -ENOTSUPP)
8033 return rc;
8034 /* If the reset fails in a particular way (it has no way to do
8035 * a proper hard reset, so returns -ENOTSUPP) we can try to do
8036 * a soft reset once we get the controller configured up to the
8037 * point that it can accept a command.
8038 */
8039 try_soft_reset = 1;
8040 rc = 0;
8041 }
8042
8043reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008044
Don Brace303932f2010-02-04 08:42:40 -06008045 /* Command structures must be aligned on a 32-byte boundary because
8046 * the 5 lower bits of the address are used by the hardware. and by
8047 * the driver. See comments in hpsa.h for more info.
8048 */
Don Brace303932f2010-02-04 08:42:40 -06008049 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008050 h = kzalloc(sizeof(*h), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008051 if (!h) {
8052 dev_err(&pdev->dev, "Failed to allocate controller head\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008053 return -ENOMEM;
Robert Elliott105a3db2015-04-23 09:33:48 -05008054 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008055
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008056 h->pdev = pdev;
Robert Elliott105a3db2015-04-23 09:33:48 -05008057
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06008058 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron98465902014-02-21 16:25:00 -06008059 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008060 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06008061 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06008062 spin_lock_init(&h->scan_lock);
Don Brace34f0c622015-01-23 16:43:46 -06008063 atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008064 atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008065
8066 /* Allocate and clear per-cpu variable lockup_detected */
8067 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008068 if (!h->lockup_detected) {
Robert Elliott105a3db2015-04-23 09:33:48 -05008069 dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008070 rc = -ENOMEM;
Robert Elliott2efa5922015-04-23 09:34:53 -05008071 goto clean1; /* aer/h */
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05008072 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008073 set_lockup_detected_for_all_cpus(h, 0);
8074
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05008075 rc = hpsa_pci_init(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008076 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008077 goto clean2; /* lu, aer/h */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008078
Robert Elliott2946e822015-04-23 09:35:09 -05008079 /* relies on h-> settings made by hpsa_pci_init, including
8080 * interrupt_mode h->intr */
8081 rc = hpsa_scsi_host_alloc(h);
8082 if (rc)
8083 goto clean2_5; /* pci, lu, aer/h */
8084
8085 sprintf(h->devname, HPSA "%d", h->scsi_host->host_no);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008086 h->ctlr = number_of_controllers;
8087 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008088
8089 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008090 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
8091 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008092 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008093 } else {
8094 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8095 if (rc == 0) {
8096 dac = 0;
8097 } else {
8098 dev_err(&pdev->dev, "no suitable DMA available\n");
Robert Elliott2946e822015-04-23 09:35:09 -05008099 goto clean3; /* shost, pci, lu, aer/h */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008100 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008101 }
8102
8103 /* make sure the board interrupts are off */
8104 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05008105
Robert Elliott105a3db2015-04-23 09:33:48 -05008106 rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
8107 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008108 goto clean3; /* shost, pci, lu, aer/h */
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008109 rc = hpsa_alloc_cmd_pool(h);
Robert Elliott8947fd12015-01-23 16:42:54 -06008110 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008111 goto clean4; /* irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008112 rc = hpsa_alloc_sg_chain_blocks(h);
8113 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008114 goto clean5; /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Camerona08a8472010-02-04 08:43:16 -06008115 init_waitqueue_head(&h->scan_wait_queue);
Stephen Cameron9b5c48c2015-04-23 09:32:06 -05008116 init_waitqueue_head(&h->abort_cmd_wait_queue);
Webb Scalesd604f532015-04-23 09:35:22 -05008117 init_waitqueue_head(&h->event_sync_wait_queue);
8118 mutex_init(&h->reset_mutex);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06008119 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008120
8121 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008122 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06008123 h->hba_mode_enabled = 0;
Robert Elliott2946e822015-04-23 09:35:09 -05008124
Stephen M. Cameron9a413382011-05-03 14:59:41 -05008125 spin_lock_init(&h->devlock);
Robert Elliott105a3db2015-04-23 09:33:48 -05008126 rc = hpsa_put_ctlr_into_performant_mode(h);
8127 if (rc)
Robert Elliott2946e822015-04-23 09:35:09 -05008128 goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */
8129
8130 /* hook into SCSI subsystem */
8131 rc = hpsa_scsi_add_host(h);
8132 if (rc)
8133 goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott2efa5922015-04-23 09:34:53 -05008134
8135 /* create the resubmit workqueue */
8136 h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
8137 if (!h->rescan_ctlr_wq) {
8138 rc = -ENOMEM;
8139 goto clean7;
8140 }
8141
8142 h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
8143 if (!h->resubmit_wq) {
8144 rc = -ENOMEM;
8145 goto clean7; /* aer/h */
8146 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008147
Robert Elliott105a3db2015-04-23 09:33:48 -05008148 /*
8149 * At this point, the controller is ready to take commands.
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008150 * Now, if reset_devices and the hard reset didn't work, try
8151 * the soft reset and see if that works.
8152 */
8153 if (try_soft_reset) {
8154
8155 /* This is kind of gross. We may or may not get a completion
8156 * from the soft reset command, and if we do, then the value
8157 * from the fifo may or may not be valid. So, we wait 10 secs
8158 * after the reset throwing away any completions we get during
8159 * that time. Unregister the interrupt handler and register
8160 * fake ones to scoop up any residual completions.
8161 */
8162 spin_lock_irqsave(&h->lock, flags);
8163 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8164 spin_unlock_irqrestore(&h->lock, flags);
Robert Elliottec501a12015-01-23 16:41:40 -06008165 hpsa_free_irqs(h);
Robert Elliott9ee61792015-01-23 16:42:32 -06008166 rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008167 hpsa_intx_discard_completions);
8168 if (rc) {
Robert Elliott9ee61792015-01-23 16:42:32 -06008169 dev_warn(&h->pdev->dev,
8170 "Failed to request_irq after soft reset.\n");
Robert Elliottd4987572015-04-23 09:34:37 -05008171 /*
Robert Elliottb2ef4802015-04-23 09:34:48 -05008172 * cannot goto clean7 or free_irqs will be called
8173 * again. Instead, do its work
8174 */
8175 hpsa_free_performant_mode(h); /* clean7 */
8176 hpsa_free_sg_chain_blocks(h); /* clean6 */
8177 hpsa_free_cmd_pool(h); /* clean5 */
8178 /*
8179 * skip hpsa_free_irqs(h) clean4 since that
8180 * was just called before request_irqs failed
Robert Elliottd4987572015-04-23 09:34:37 -05008181 */
8182 goto clean3;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008183 }
8184
8185 rc = hpsa_kdump_soft_reset(h);
8186 if (rc)
8187 /* Neither hard nor soft reset worked, we're hosed. */
Don Brace7ef73232015-07-18 11:12:33 -05008188 goto clean7;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008189
8190 dev_info(&h->pdev->dev, "Board READY.\n");
8191 dev_info(&h->pdev->dev,
8192 "Waiting for stale completions to drain.\n");
8193 h->access.set_intr_mask(h, HPSA_INTR_ON);
8194 msleep(10000);
8195 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8196
8197 rc = controller_reset_failed(h->cfgtable);
8198 if (rc)
8199 dev_info(&h->pdev->dev,
8200 "Soft reset appears to have failed.\n");
8201
8202 /* since the controller's reset, we have to go back and re-init
8203 * everything. Easiest to just forget what we've done and do it
8204 * all over again.
8205 */
8206 hpsa_undo_allocations_after_kdump_soft_reset(h);
8207 try_soft_reset = 0;
8208 if (rc)
Robert Elliottb2ef4802015-04-23 09:34:48 -05008209 /* don't goto clean, we already unallocated */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05008210 return -ENODEV;
8211
8212 goto reinit_after_soft_reset;
8213 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008214
Robert Elliott105a3db2015-04-23 09:33:48 -05008215 /* Enable Accelerated IO path at driver layer */
8216 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06008217
Scott Teele863d682014-02-18 13:57:05 -06008218
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008219 /* Turn the interrupts on so we can service requests */
8220 h->access.set_intr_mask(h, HPSA_INTR_ON);
8221
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06008222 hpsa_hba_inquiry(h);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008223
8224 /* Monitor the controller for firmware lockups */
8225 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
8226 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
8227 schedule_delayed_work(&h->monitor_ctlr_work,
8228 h->heartbeat_sample_interval);
Don Brace6636e7f2015-01-23 16:45:17 -06008229 INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
8230 queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
8231 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05008232 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008233
Robert Elliott2946e822015-04-23 09:35:09 -05008234clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008235 hpsa_free_performant_mode(h);
8236 h->access.set_intr_mask(h, HPSA_INTR_OFF);
8237clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06008238 hpsa_free_sg_chain_blocks(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008239clean5: /* cmd, irq, shost, pci, lu, aer/h */
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05008240 hpsa_free_cmd_pool(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008241clean4: /* irq, shost, pci, lu, aer/h */
Robert Elliottec501a12015-01-23 16:41:40 -06008242 hpsa_free_irqs(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008243clean3: /* shost, pci, lu, aer/h */
8244 scsi_host_put(h->scsi_host);
8245 h->scsi_host = NULL;
8246clean2_5: /* pci, lu, aer/h */
Robert Elliott195f2c62015-04-23 09:33:17 -05008247 hpsa_free_pci_init(h);
Robert Elliott2946e822015-04-23 09:35:09 -05008248clean2: /* lu, aer/h */
Robert Elliott105a3db2015-04-23 09:33:48 -05008249 if (h->lockup_detected) {
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008250 free_percpu(h->lockup_detected);
Robert Elliott105a3db2015-04-23 09:33:48 -05008251 h->lockup_detected = NULL;
8252 }
8253clean1: /* wq/aer/h */
8254 if (h->resubmit_wq) {
8255 destroy_workqueue(h->resubmit_wq);
8256 h->resubmit_wq = NULL;
8257 }
8258 if (h->rescan_ctlr_wq) {
8259 destroy_workqueue(h->rescan_ctlr_wq);
8260 h->rescan_ctlr_wq = NULL;
8261 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008262 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06008263 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008264}
8265
8266static void hpsa_flush_cache(struct ctlr_info *h)
8267{
8268 char *flush_buf;
8269 struct CommandList *c;
Webb Scales25163bd2015-04-23 09:32:00 -05008270 int rc;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008271
Stephen M. Cameron094963d2014-05-29 10:53:18 -05008272 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05008273 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008274 flush_buf = kzalloc(4, GFP_KERNEL);
8275 if (!flush_buf)
8276 return;
8277
Stephen Cameron45fcb862015-01-23 16:43:04 -06008278 c = cmd_alloc(h);
Robert Elliottbf43caf2015-04-23 09:33:38 -05008279
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008280 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
8281 RAID_CTLR_LUNID, TYPE_CMD)) {
8282 goto out;
8283 }
Webb Scales25163bd2015-04-23 09:32:00 -05008284 rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
8285 PCI_DMA_TODEVICE, NO_TIMEOUT);
8286 if (rc)
8287 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008288 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06008289out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008290 dev_warn(&h->pdev->dev,
8291 "error flushing cache on controller\n");
Stephen Cameron45fcb862015-01-23 16:43:04 -06008292 cmd_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008293 kfree(flush_buf);
8294}
8295
8296static void hpsa_shutdown(struct pci_dev *pdev)
8297{
8298 struct ctlr_info *h;
8299
8300 h = pci_get_drvdata(pdev);
8301 /* Turn board interrupts off and send the flush cache command
8302 * sendcmd will turn off interrupt, and send the flush...
8303 * To write all data in the battery backed cache to disks
8304 */
8305 hpsa_flush_cache(h);
8306 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Robert Elliott105a3db2015-04-23 09:33:48 -05008307 hpsa_free_irqs(h); /* init_one 4 */
Robert Elliottcc64c812015-04-23 09:33:12 -05008308 hpsa_disable_interrupt_mode(h); /* pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008309}
8310
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008311static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008312{
8313 int i;
8314
Robert Elliott105a3db2015-04-23 09:33:48 -05008315 for (i = 0; i < h->ndevices; i++) {
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008316 kfree(h->dev[i]);
Robert Elliott105a3db2015-04-23 09:33:48 -05008317 h->dev[i] = NULL;
8318 }
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06008319}
8320
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008321static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008322{
8323 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008324 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008325
8326 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05008327 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008328 return;
8329 }
8330 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008331
8332 /* Get rid of any controller monitoring work items */
8333 spin_lock_irqsave(&h->lock, flags);
8334 h->remove_in_progress = 1;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06008335 spin_unlock_irqrestore(&h->lock, flags);
Don Brace6636e7f2015-01-23 16:45:17 -06008336 cancel_delayed_work_sync(&h->monitor_ctlr_work);
8337 cancel_delayed_work_sync(&h->rescan_ctlr_work);
8338 destroy_workqueue(h->rescan_ctlr_wq);
8339 destroy_workqueue(h->resubmit_wq);
Robert Elliottcc64c812015-04-23 09:33:12 -05008340
Robert Elliott105a3db2015-04-23 09:33:48 -05008341 /* includes hpsa_free_irqs - init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008342 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008343 hpsa_shutdown(pdev);
Robert Elliottcc64c812015-04-23 09:33:12 -05008344
Robert Elliott105a3db2015-04-23 09:33:48 -05008345 hpsa_free_device_info(h); /* scan */
8346
Robert Elliott2946e822015-04-23 09:35:09 -05008347 kfree(h->hba_inquiry_data); /* init_one 10 */
8348 h->hba_inquiry_data = NULL; /* init_one 10 */
8349 if (h->scsi_host)
8350 scsi_remove_host(h->scsi_host); /* init_one 8 */
8351 hpsa_free_ioaccel2_sg_chain_blocks(h);
Robert Elliott105a3db2015-04-23 09:33:48 -05008352 hpsa_free_performant_mode(h); /* init_one 7 */
8353 hpsa_free_sg_chain_blocks(h); /* init_one 6 */
8354 hpsa_free_cmd_pool(h); /* init_one 5 */
8355
8356 /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008357
Robert Elliott2946e822015-04-23 09:35:09 -05008358 scsi_host_put(h->scsi_host); /* init_one 3 */
8359 h->scsi_host = NULL; /* init_one 3 */
8360
Robert Elliott195f2c62015-04-23 09:33:17 -05008361 /* includes hpsa_disable_interrupt_mode - pci_init 2 */
Robert Elliott2946e822015-04-23 09:35:09 -05008362 hpsa_free_pci_init(h); /* init_one 2.5 */
Robert Elliott195f2c62015-04-23 09:33:17 -05008363
Robert Elliott105a3db2015-04-23 09:33:48 -05008364 free_percpu(h->lockup_detected); /* init_one 2 */
8365 h->lockup_detected = NULL; /* init_one 2 */
8366 /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */
8367 kfree(h); /* init_one 1 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008368}
8369
8370static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
8371 __attribute__((unused)) pm_message_t state)
8372{
8373 return -ENOSYS;
8374}
8375
8376static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
8377{
8378 return -ENOSYS;
8379}
8380
8381static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06008382 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008383 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008384 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008385 .id_table = hpsa_pci_device_id, /* id_table */
8386 .shutdown = hpsa_shutdown,
8387 .suspend = hpsa_suspend,
8388 .resume = hpsa_resume,
8389};
8390
Don Brace303932f2010-02-04 08:42:40 -06008391/* Fill in bucket_map[], given nsgs (the max number of
8392 * scatter gather elements supported) and bucket[],
8393 * which is an array of 8 integers. The bucket[] array
8394 * contains 8 different DMA transfer sizes (in 16
8395 * byte increments) which the controller uses to fetch
8396 * commands. This function fills in bucket_map[], which
8397 * maps a given number of scatter gather elements to one of
8398 * the 8 DMA transfer sizes. The point of it is to allow the
8399 * controller to only do as much DMA as needed to fetch the
8400 * command, with the DMA transfer size encoded in the lower
8401 * bits of the command address.
8402 */
8403static void calc_bucket_map(int bucket[], int num_buckets,
Don Brace2b08b3e2015-01-23 16:41:09 -06008404 int nsgs, int min_blocks, u32 *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06008405{
8406 int i, j, b, size;
8407
Don Brace303932f2010-02-04 08:42:40 -06008408 /* Note, bucket_map must have nsgs+1 entries. */
8409 for (i = 0; i <= nsgs; i++) {
8410 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06008411 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06008412 b = num_buckets; /* Assume the biggest bucket */
8413 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06008414 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06008415 if (bucket[j] >= size) {
8416 b = j;
8417 break;
8418 }
8419 }
8420 /* for a command with i SG entries, use bucket b. */
8421 bucket_map[i] = b;
8422 }
8423}
8424
Robert Elliott105a3db2015-04-23 09:33:48 -05008425/*
8426 * return -ENODEV on err, 0 on success (or no action)
8427 * allocates numerous items that must be freed later
8428 */
Robert Elliottc706a792015-01-23 16:45:01 -06008429static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06008430{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008431 int i;
8432 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06008433 unsigned long transMethod = CFGTBL_Trans_Performant |
8434 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008435 CFGTBL_Trans_enable_directed_msix |
8436 (trans_support & (CFGTBL_Trans_io_accel1 |
8437 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06008438 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05008439
8440 /* This is a bit complicated. There are 8 registers on
8441 * the controller which we write to to tell it 8 different
8442 * sizes of commands which there may be. It's a way of
8443 * reducing the DMA done to fetch each command. Encoded into
8444 * each command's tag are 3 bits which communicate to the controller
8445 * which of the eight sizes that command fits within. The size of
8446 * each command depends on how many scatter gather entries there are.
8447 * Each SG entry requires 16 bytes. The eight registers are programmed
8448 * with the number of 16-byte blocks a command of that size requires.
8449 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008450 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05008451 * blocks. Note, this only extends to the SG entries contained
8452 * within the command block, and does not extend to chained blocks
8453 * of SG elements. bft[] contains the eight values we write to
8454 * the registers. They are not evenly distributed, but have more
8455 * sizes for small commands, and fewer sizes for larger commands.
8456 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008457 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008458#define MIN_IOACCEL2_BFT_ENTRY 5
8459#define HPSA_IOACCEL2_HEADER_SZ 4
8460 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
8461 13, 14, 15, 16, 17, 18, 19,
8462 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
8463 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
8464 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
8465 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
8466 16 * MIN_IOACCEL2_BFT_ENTRY);
8467 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008468 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06008469 /* 5 = 1 s/g entry or 4k
8470 * 6 = 2 s/g entry or 8k
8471 * 8 = 4 s/g entry or 16k
8472 * 10 = 6 s/g entry or 24k
8473 */
Don Brace303932f2010-02-04 08:42:40 -06008474
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05008475 /* If the controller supports either ioaccel method then
8476 * we can also use the RAID stack submit path that does not
8477 * perform the superfluous readl() after each command submission.
8478 */
8479 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
8480 access = SA5_performant_access_no_read;
8481
Don Brace303932f2010-02-04 08:42:40 -06008482 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008483 for (i = 0; i < h->nreply_queues; i++)
8484 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06008485
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008486 bft[7] = SG_ENTRIES_IN_CMD + 4;
8487 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06008488 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06008489 for (i = 0; i < 8; i++)
8490 writel(bft[i], &h->transtable->BlockFetch[i]);
8491
8492 /* size of controller ring buffer */
8493 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05008494 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06008495 writel(0, &h->transtable->RepQCtrAddrLow32);
8496 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05008497
8498 for (i = 0; i < h->nreply_queues; i++) {
8499 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008500 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05008501 &h->transtable->RepQAddr[i].lower);
8502 }
8503
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008504 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06008505 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
8506 /*
8507 * enable outbound interrupt coalescing in accelerator mode;
8508 */
8509 if (trans_support & CFGTBL_Trans_io_accel1) {
8510 access = SA5_ioaccel_mode1_access;
8511 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8512 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06008513 } else {
8514 if (trans_support & CFGTBL_Trans_io_accel2) {
8515 access = SA5_ioaccel_mode2_access;
8516 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8517 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
8518 }
Matt Gatese1f7de02014-02-18 13:55:17 -06008519 }
Don Brace303932f2010-02-04 08:42:40 -06008520 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008521 if (hpsa_wait_for_mode_change_ack(h)) {
8522 dev_err(&h->pdev->dev,
8523 "performant mode problem - doorbell timeout\n");
8524 return -ENODEV;
8525 }
Don Brace303932f2010-02-04 08:42:40 -06008526 register_value = readl(&(h->cfgtable->TransportActive));
8527 if (!(register_value & CFGTBL_Trans_Performant)) {
Stephen Cameron050f7142015-01-23 16:42:22 -06008528 dev_err(&h->pdev->dev,
8529 "performant mode problem - transport not active\n");
Robert Elliottc706a792015-01-23 16:45:01 -06008530 return -ENODEV;
Don Brace303932f2010-02-04 08:42:40 -06008531 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06008532 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06008533 h->access = access;
8534 h->transMethod = transMethod;
8535
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008536 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
8537 (trans_support & CFGTBL_Trans_io_accel2)))
Robert Elliottc706a792015-01-23 16:45:01 -06008538 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008539
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008540 if (trans_support & CFGTBL_Trans_io_accel1) {
8541 /* Set up I/O accelerator mode */
8542 for (i = 0; i < h->nreply_queues; i++) {
8543 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
8544 h->reply_queue[i].current_entry =
8545 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
8546 }
8547 bft[7] = h->ioaccel_maxsg + 8;
8548 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
8549 h->ioaccel1_blockFetchTable);
8550
8551 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008552 for (i = 0; i < h->nreply_queues; i++)
8553 memset(h->reply_queue[i].head,
8554 (u8) IOACCEL_MODE1_REPLY_UNUSED,
8555 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008556
8557 /* set all the constant fields in the accelerator command
8558 * frames once at init time to save CPU cycles later.
8559 */
8560 for (i = 0; i < h->nr_cmds; i++) {
8561 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
8562
8563 cp->function = IOACCEL1_FUNCTION_SCSIIO;
8564 cp->err_info = (u32) (h->errinfo_pool_dhandle +
8565 (i * sizeof(struct ErrorInfo)));
8566 cp->err_info_len = sizeof(struct ErrorInfo);
8567 cp->sgl_offset = IOACCEL1_SGLOFFSET;
Don Brace2b08b3e2015-01-23 16:41:09 -06008568 cp->host_context_flags =
8569 cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008570 cp->timeout_sec = 0;
8571 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008572 cp->tag =
Don Bracef2405db2015-01-23 16:43:09 -06008573 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008574 cp->host_addr =
8575 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008576 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008577 }
8578 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8579 u64 cfg_offset, cfg_base_addr_index;
8580 u32 bft2_offset, cfg_base_addr;
8581 int rc;
8582
8583 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
8584 &cfg_base_addr_index, &cfg_offset);
8585 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
8586 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
8587 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
8588 4, h->ioaccel2_blockFetchTable);
8589 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
8590 BUILD_BUG_ON(offsetof(struct CfgTable,
8591 io_accel_request_size_offset) != 0xb8);
8592 h->ioaccel2_bft2_regs =
8593 remap_pci_mem(pci_resource_start(h->pdev,
8594 cfg_base_addr_index) +
8595 cfg_offset + bft2_offset,
8596 ARRAY_SIZE(bft2) *
8597 sizeof(*h->ioaccel2_bft2_regs));
8598 for (i = 0; i < ARRAY_SIZE(bft2); i++)
8599 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06008600 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06008601 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Robert Elliottc706a792015-01-23 16:45:01 -06008602 if (hpsa_wait_for_mode_change_ack(h)) {
8603 dev_err(&h->pdev->dev,
8604 "performant mode problem - enabling ioaccel mode\n");
8605 return -ENODEV;
8606 }
8607 return 0;
Matt Gatese1f7de02014-02-18 13:55:17 -06008608}
8609
Robert Elliott1fb7c982015-04-23 09:33:22 -05008610/* Free ioaccel1 mode command blocks and block fetch table */
8611static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
8612{
Robert Elliott105a3db2015-04-23 09:33:48 -05008613 if (h->ioaccel_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008614 pci_free_consistent(h->pdev,
8615 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8616 h->ioaccel_cmd_pool,
8617 h->ioaccel_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008618 h->ioaccel_cmd_pool = NULL;
8619 h->ioaccel_cmd_pool_dhandle = 0;
8620 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008621 kfree(h->ioaccel1_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008622 h->ioaccel1_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008623}
8624
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008625/* Allocate ioaccel1 mode command blocks and block fetch table */
8626static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
Matt Gatese1f7de02014-02-18 13:55:17 -06008627{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008628 h->ioaccel_maxsg =
8629 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8630 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
8631 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
8632
Matt Gatese1f7de02014-02-18 13:55:17 -06008633 /* Command structures must be aligned on a 128-byte boundary
8634 * because the 7 lower bits of the address are used by the
8635 * hardware.
8636 */
Matt Gatese1f7de02014-02-18 13:55:17 -06008637 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
8638 IOACCEL1_COMMANDLIST_ALIGNMENT);
8639 h->ioaccel_cmd_pool =
8640 pci_alloc_consistent(h->pdev,
8641 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8642 &(h->ioaccel_cmd_pool_dhandle));
8643
8644 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06008645 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06008646 sizeof(u32)), GFP_KERNEL);
8647
8648 if ((h->ioaccel_cmd_pool == NULL) ||
8649 (h->ioaccel1_blockFetchTable == NULL))
8650 goto clean_up;
8651
8652 memset(h->ioaccel_cmd_pool, 0,
8653 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
8654 return 0;
8655
8656clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008657 hpsa_free_ioaccel1_cmd_and_bft(h);
Robert Elliott2dd02d72015-04-23 09:33:43 -05008658 return -ENOMEM;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008659}
8660
Robert Elliott1fb7c982015-04-23 09:33:22 -05008661/* Free ioaccel2 mode command blocks and block fetch table */
8662static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
8663{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008664 hpsa_free_ioaccel2_sg_chain_blocks(h);
8665
Robert Elliott105a3db2015-04-23 09:33:48 -05008666 if (h->ioaccel2_cmd_pool) {
Robert Elliott1fb7c982015-04-23 09:33:22 -05008667 pci_free_consistent(h->pdev,
8668 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8669 h->ioaccel2_cmd_pool,
8670 h->ioaccel2_cmd_pool_dhandle);
Robert Elliott105a3db2015-04-23 09:33:48 -05008671 h->ioaccel2_cmd_pool = NULL;
8672 h->ioaccel2_cmd_pool_dhandle = 0;
8673 }
Robert Elliott1fb7c982015-04-23 09:33:22 -05008674 kfree(h->ioaccel2_blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008675 h->ioaccel2_blockFetchTable = NULL;
Robert Elliott1fb7c982015-04-23 09:33:22 -05008676}
8677
Robert Elliottd37ffbe2015-04-23 09:32:27 -05008678/* Allocate ioaccel2 mode command blocks and block fetch table */
8679static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008680{
Webb Scalesd9a729f2015-04-23 09:33:27 -05008681 int rc;
8682
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008683 /* Allocate ioaccel2 mode command blocks and block fetch table */
8684
8685 h->ioaccel_maxsg =
8686 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8687 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
8688 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
8689
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008690 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
8691 IOACCEL2_COMMANDLIST_ALIGNMENT);
8692 h->ioaccel2_cmd_pool =
8693 pci_alloc_consistent(h->pdev,
8694 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8695 &(h->ioaccel2_cmd_pool_dhandle));
8696
8697 h->ioaccel2_blockFetchTable =
8698 kmalloc(((h->ioaccel_maxsg + 1) *
8699 sizeof(u32)), GFP_KERNEL);
8700
8701 if ((h->ioaccel2_cmd_pool == NULL) ||
Webb Scalesd9a729f2015-04-23 09:33:27 -05008702 (h->ioaccel2_blockFetchTable == NULL)) {
8703 rc = -ENOMEM;
8704 goto clean_up;
8705 }
8706
8707 rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
8708 if (rc)
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008709 goto clean_up;
8710
8711 memset(h->ioaccel2_cmd_pool, 0,
8712 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
8713 return 0;
8714
8715clean_up:
Robert Elliott1fb7c982015-04-23 09:33:22 -05008716 hpsa_free_ioaccel2_cmd_and_bft(h);
Webb Scalesd9a729f2015-04-23 09:33:27 -05008717 return rc;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008718}
8719
Robert Elliott105a3db2015-04-23 09:33:48 -05008720/* Free items allocated by hpsa_put_ctlr_into_performant_mode */
8721static void hpsa_free_performant_mode(struct ctlr_info *h)
8722{
8723 kfree(h->blockFetchTable);
8724 h->blockFetchTable = NULL;
8725 hpsa_free_reply_queues(h);
8726 hpsa_free_ioaccel1_cmd_and_bft(h);
8727 hpsa_free_ioaccel2_cmd_and_bft(h);
8728}
8729
8730/* return -ENODEV on error, 0 on success (or no action)
8731 * allocates numerous items that must be freed later
8732 */
8733static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008734{
8735 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06008736 unsigned long transMethod = CFGTBL_Trans_Performant |
8737 CFGTBL_Trans_use_short_tags;
Robert Elliott105a3db2015-04-23 09:33:48 -05008738 int i, rc;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008739
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008740 if (hpsa_simple_mode)
Robert Elliott105a3db2015-04-23 09:33:48 -05008741 return 0;
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06008742
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008743 trans_support = readl(&(h->cfgtable->TransportSupport));
8744 if (!(trans_support & PERFORMANT_MODE))
Robert Elliott105a3db2015-04-23 09:33:48 -05008745 return 0;
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05008746
Matt Gatese1f7de02014-02-18 13:55:17 -06008747 /* Check for I/O accelerator mode support */
8748 if (trans_support & CFGTBL_Trans_io_accel1) {
8749 transMethod |= CFGTBL_Trans_io_accel1 |
8750 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008751 rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
8752 if (rc)
8753 return rc;
8754 } else if (trans_support & CFGTBL_Trans_io_accel2) {
8755 transMethod |= CFGTBL_Trans_io_accel2 |
Stephen M. Cameronaca90122014-02-18 13:56:14 -06008756 CFGTBL_Trans_enable_directed_msix;
Robert Elliott105a3db2015-04-23 09:33:48 -05008757 rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
8758 if (rc)
8759 return rc;
Matt Gatese1f7de02014-02-18 13:55:17 -06008760 }
8761
Hannes Reineckeeee0f032014-01-15 13:30:53 +01008762 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05008763 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008764 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008765 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008766
Matt Gates254f7962012-05-01 11:43:06 -05008767 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05008768 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
8769 h->reply_queue_size,
8770 &(h->reply_queue[i].busaddr));
Robert Elliott105a3db2015-04-23 09:33:48 -05008771 if (!h->reply_queue[i].head) {
8772 rc = -ENOMEM;
8773 goto clean1; /* rq, ioaccel */
8774 }
Matt Gates254f7962012-05-01 11:43:06 -05008775 h->reply_queue[i].size = h->max_commands;
8776 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
8777 h->reply_queue[i].current_entry = 0;
8778 }
8779
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008780 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06008781 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008782 sizeof(u32)), GFP_KERNEL);
Robert Elliott105a3db2015-04-23 09:33:48 -05008783 if (!h->blockFetchTable) {
8784 rc = -ENOMEM;
8785 goto clean1; /* rq, ioaccel */
8786 }
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05008787
Robert Elliott105a3db2015-04-23 09:33:48 -05008788 rc = hpsa_enter_performant_mode(h, trans_support);
8789 if (rc)
8790 goto clean2; /* bft, rq, ioaccel */
8791 return 0;
Don Brace303932f2010-02-04 08:42:40 -06008792
Robert Elliott105a3db2015-04-23 09:33:48 -05008793clean2: /* bft, rq, ioaccel */
Don Brace303932f2010-02-04 08:42:40 -06008794 kfree(h->blockFetchTable);
Robert Elliott105a3db2015-04-23 09:33:48 -05008795 h->blockFetchTable = NULL;
8796clean1: /* rq, ioaccel */
8797 hpsa_free_reply_queues(h);
8798 hpsa_free_ioaccel1_cmd_and_bft(h);
8799 hpsa_free_ioaccel2_cmd_and_bft(h);
8800 return rc;
Don Brace303932f2010-02-04 08:42:40 -06008801}
8802
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008803static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008804{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008805 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
8806}
8807
8808static void hpsa_drain_accel_commands(struct ctlr_info *h)
8809{
8810 struct CommandList *c = NULL;
Don Bracef2405db2015-01-23 16:43:09 -06008811 int i, accel_cmds_out;
Webb Scales281a7fd2015-01-23 16:43:35 -06008812 int refcount;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008813
Don Bracef2405db2015-01-23 16:43:09 -06008814 do { /* wait for all outstanding ioaccel commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008815 accel_cmds_out = 0;
Don Bracef2405db2015-01-23 16:43:09 -06008816 for (i = 0; i < h->nr_cmds; i++) {
Don Bracef2405db2015-01-23 16:43:09 -06008817 c = h->cmd_pool + i;
Webb Scales281a7fd2015-01-23 16:43:35 -06008818 refcount = atomic_inc_return(&c->refcount);
8819 if (refcount > 1) /* Command is allocated */
8820 accel_cmds_out += is_accelerated_cmd(c);
8821 cmd_free(h, c);
Don Bracef2405db2015-01-23 16:43:09 -06008822 }
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06008823 if (accel_cmds_out <= 0)
Webb Scales281a7fd2015-01-23 16:43:35 -06008824 break;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06008825 msleep(100);
8826 } while (1);
8827}
8828
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008829/*
8830 * This is it. Register the PCI driver information for the cards we control
8831 * the OS will call our registered routines when it finds one of our cards.
8832 */
8833static int __init hpsa_init(void)
8834{
Mike Miller31468402010-02-25 14:03:12 -06008835 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008836}
8837
8838static void __exit hpsa_cleanup(void)
8839{
8840 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008841}
8842
Matt Gatese1f7de02014-02-18 13:55:17 -06008843static void __attribute__((unused)) verify_offsets(void)
8844{
8845#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06008846 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
8847
8848 VERIFY_OFFSET(structure_size, 0);
8849 VERIFY_OFFSET(volume_blk_size, 4);
8850 VERIFY_OFFSET(volume_blk_cnt, 8);
8851 VERIFY_OFFSET(phys_blk_shift, 16);
8852 VERIFY_OFFSET(parity_rotation_shift, 17);
8853 VERIFY_OFFSET(strip_size, 18);
8854 VERIFY_OFFSET(disk_starting_blk, 20);
8855 VERIFY_OFFSET(disk_blk_cnt, 28);
8856 VERIFY_OFFSET(data_disks_per_row, 36);
8857 VERIFY_OFFSET(metadata_disks_per_row, 38);
8858 VERIFY_OFFSET(row_cnt, 40);
8859 VERIFY_OFFSET(layout_map_count, 42);
8860 VERIFY_OFFSET(flags, 44);
8861 VERIFY_OFFSET(dekindex, 46);
8862 /* VERIFY_OFFSET(reserved, 48 */
8863 VERIFY_OFFSET(data, 64);
8864
8865#undef VERIFY_OFFSET
8866
8867#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06008868 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
8869
8870 VERIFY_OFFSET(IU_type, 0);
8871 VERIFY_OFFSET(direction, 1);
8872 VERIFY_OFFSET(reply_queue, 2);
8873 /* VERIFY_OFFSET(reserved1, 3); */
8874 VERIFY_OFFSET(scsi_nexus, 4);
8875 VERIFY_OFFSET(Tag, 8);
8876 VERIFY_OFFSET(cdb, 16);
8877 VERIFY_OFFSET(cciss_lun, 32);
8878 VERIFY_OFFSET(data_len, 40);
8879 VERIFY_OFFSET(cmd_priority_task_attr, 44);
8880 VERIFY_OFFSET(sg_count, 45);
8881 /* VERIFY_OFFSET(reserved3 */
8882 VERIFY_OFFSET(err_ptr, 48);
8883 VERIFY_OFFSET(err_len, 56);
8884 /* VERIFY_OFFSET(reserved4 */
8885 VERIFY_OFFSET(sg, 64);
8886
8887#undef VERIFY_OFFSET
8888
8889#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06008890 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
8891
8892 VERIFY_OFFSET(dev_handle, 0x00);
8893 VERIFY_OFFSET(reserved1, 0x02);
8894 VERIFY_OFFSET(function, 0x03);
8895 VERIFY_OFFSET(reserved2, 0x04);
8896 VERIFY_OFFSET(err_info, 0x0C);
8897 VERIFY_OFFSET(reserved3, 0x10);
8898 VERIFY_OFFSET(err_info_len, 0x12);
8899 VERIFY_OFFSET(reserved4, 0x13);
8900 VERIFY_OFFSET(sgl_offset, 0x14);
8901 VERIFY_OFFSET(reserved5, 0x15);
8902 VERIFY_OFFSET(transfer_len, 0x1C);
8903 VERIFY_OFFSET(reserved6, 0x20);
8904 VERIFY_OFFSET(io_flags, 0x24);
8905 VERIFY_OFFSET(reserved7, 0x26);
8906 VERIFY_OFFSET(LUN, 0x34);
8907 VERIFY_OFFSET(control, 0x3C);
8908 VERIFY_OFFSET(CDB, 0x40);
8909 VERIFY_OFFSET(reserved8, 0x50);
8910 VERIFY_OFFSET(host_context_flags, 0x60);
8911 VERIFY_OFFSET(timeout_sec, 0x62);
8912 VERIFY_OFFSET(ReplyQueue, 0x64);
8913 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06008914 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06008915 VERIFY_OFFSET(host_addr, 0x70);
8916 VERIFY_OFFSET(CISS_LUN, 0x78);
8917 VERIFY_OFFSET(SG, 0x78 + 8);
8918#undef VERIFY_OFFSET
8919}
8920
Stephen M. Cameronedd16362009-12-08 14:09:11 -08008921module_init(hpsa_init);
8922module_exit(hpsa_cleanup);