blob: 6bb4611b238a8421813ab761ac1ecaa53a20cd6d [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
Scott Teel51c35132014-02-18 13:57:26 -06003 * Copyright 2000, 2014 Hewlett-Packard Development Company, L.P.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
12 * NON INFRINGEMENT. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/interrupt.h>
24#include <linux/types.h>
25#include <linux/pci.h>
Matthew Garrette5a44df2011-11-11 11:14:23 -050026#include <linux/pci-aspm.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080027#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/delay.h>
30#include <linux/fs.h>
31#include <linux/timer.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080032#include <linux/init.h>
33#include <linux/spinlock.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080034#include <linux/compat.h>
35#include <linux/blktrace_api.h>
36#include <linux/uaccess.h>
37#include <linux/io.h>
38#include <linux/dma-mapping.h>
39#include <linux/completion.h>
40#include <linux/moduleparam.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_cmnd.h>
43#include <scsi/scsi_device.h>
44#include <scsi/scsi_host.h>
Stephen M. Cameron667e23d2010-02-25 14:02:51 -060045#include <scsi/scsi_tcq.h>
Stephen M. Cameronedd16362009-12-08 14:09:11 -080046#include <linux/cciss_ioctl.h>
47#include <linux/string.h>
48#include <linux/bitmap.h>
Arun Sharma600634972011-07-26 16:09:06 -070049#include <linux/atomic.h>
Stephen M. Camerona0c12412011-10-26 16:22:04 -050050#include <linux/jiffies.h>
Don Brace42a91642014-11-14 17:26:27 -060051#include <linux/percpu-defs.h>
Stephen M. Cameron094963d2014-05-29 10:53:18 -050052#include <linux/percpu.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 '.' */
Stephen M. Cameron9a993302014-03-13 17:13:06 -050058#define HPSA_DRIVER_VERSION "3.4.4-1"
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
62/* How long to wait (in milliseconds) for board to go into simple mode */
63#define MAX_CONFIG_WAIT 30000
64#define MAX_IOCTL_CONFIG_WAIT 1000
65
66/*define how many times we will try a command because of bus resets */
67#define MAX_CMD_RETRIES 3
68
69/* Embedded module documentation macros - see modules.h */
70MODULE_AUTHOR("Hewlett-Packard Company");
71MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
72 HPSA_DRIVER_VERSION);
73MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
74MODULE_VERSION(HPSA_DRIVER_VERSION);
75MODULE_LICENSE("GPL");
76
77static int hpsa_allow_any;
78module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
79MODULE_PARM_DESC(hpsa_allow_any,
80 "Allow hpsa driver to access unknown HP Smart Array hardware");
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -060081static int hpsa_simple_mode;
82module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
83MODULE_PARM_DESC(hpsa_simple_mode,
84 "Use 'simple mode' rather than 'performant mode'");
Stephen M. Cameronedd16362009-12-08 14:09:11 -080085
86/* define the PCI info for the cards we can control */
87static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080088 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
89 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
90 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
91 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
92 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
Mike Miller163dbcd2013-09-04 15:11:10 -050093 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
94 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
Mike Millerf8b01eb2010-02-04 08:42:45 -060095 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
scameron@beardog.cce.hp.com9143a962011-03-07 10:44:16 -060096 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
97 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
98 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
99 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
100 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
101 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
102 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356},
Mike Millerfe0c9612012-09-20 16:05:18 -0500103 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921},
104 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922},
105 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923},
106 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924},
Mike Millerfe0c9612012-09-20 16:05:18 -0500107 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926},
108 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928},
Mike Miller97b9f532013-09-04 15:05:55 -0500109 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929},
110 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD},
111 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE},
112 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF},
113 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0},
114 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1},
115 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2},
116 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3},
117 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4},
118 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500119 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6},
Mike Miller97b9f532013-09-04 15:05:55 -0500120 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7},
121 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8},
122 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500123 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA},
124 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB},
125 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC},
126 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD},
127 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600128 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
129 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
130 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
131 {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
132 {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
Mike Miller7c03b872010-12-01 11:16:07 -0600133 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
Stephen M. Cameron6798cc02010-06-16 13:51:20 -0500134 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800135 {0,}
136};
137
138MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
139
140/* board_id = Subsystem Device ID & Vendor ID
141 * product = Marketing Name for the board
142 * access = Address of the struct of function pointers
143 */
144static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800145 {0x3241103C, "Smart Array P212", &SA5_access},
146 {0x3243103C, "Smart Array P410", &SA5_access},
147 {0x3245103C, "Smart Array P410i", &SA5_access},
148 {0x3247103C, "Smart Array P411", &SA5_access},
149 {0x3249103C, "Smart Array P812", &SA5_access},
Mike Miller163dbcd2013-09-04 15:11:10 -0500150 {0x324A103C, "Smart Array P712m", &SA5_access},
151 {0x324B103C, "Smart Array P711m", &SA5_access},
Stephen M. Cameron7d2cce52014-11-14 17:26:38 -0600152 {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
Mike Millerfe0c9612012-09-20 16:05:18 -0500153 {0x3350103C, "Smart Array P222", &SA5_access},
154 {0x3351103C, "Smart Array P420", &SA5_access},
155 {0x3352103C, "Smart Array P421", &SA5_access},
156 {0x3353103C, "Smart Array P822", &SA5_access},
157 {0x3354103C, "Smart Array P420i", &SA5_access},
158 {0x3355103C, "Smart Array P220i", &SA5_access},
159 {0x3356103C, "Smart Array P721m", &SA5_access},
Mike Miller1fd6c8e2013-09-04 15:08:29 -0500160 {0x1921103C, "Smart Array P830i", &SA5_access},
161 {0x1922103C, "Smart Array P430", &SA5_access},
162 {0x1923103C, "Smart Array P431", &SA5_access},
163 {0x1924103C, "Smart Array P830", &SA5_access},
164 {0x1926103C, "Smart Array P731m", &SA5_access},
165 {0x1928103C, "Smart Array P230i", &SA5_access},
166 {0x1929103C, "Smart Array P530", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500167 {0x21BD103C, "Smart Array", &SA5_access},
168 {0x21BE103C, "Smart Array", &SA5_access},
169 {0x21BF103C, "Smart Array", &SA5_access},
170 {0x21C0103C, "Smart Array", &SA5_access},
171 {0x21C1103C, "Smart Array", &SA5_access},
172 {0x21C2103C, "Smart Array", &SA5_access},
173 {0x21C3103C, "Smart Array", &SA5_access},
174 {0x21C4103C, "Smart Array", &SA5_access},
175 {0x21C5103C, "Smart Array", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500176 {0x21C6103C, "Smart Array", &SA5_access},
Mike Miller97b9f532013-09-04 15:05:55 -0500177 {0x21C7103C, "Smart Array", &SA5_access},
178 {0x21C8103C, "Smart Array", &SA5_access},
179 {0x21C9103C, "Smart Array", &SA5_access},
Joe Handzik3b7a45e2014-05-08 14:27:24 -0500180 {0x21CA103C, "Smart Array", &SA5_access},
181 {0x21CB103C, "Smart Array", &SA5_access},
182 {0x21CC103C, "Smart Array", &SA5_access},
183 {0x21CD103C, "Smart Array", &SA5_access},
184 {0x21CE103C, "Smart Array", &SA5_access},
Stephen M. Cameron8e616a52014-02-18 13:58:02 -0600185 {0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
186 {0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
187 {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
188 {0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
189 {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800190 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
191};
192
193static int number_of_controllers;
194
Stephen M. Cameron10f66012010-06-16 13:51:50 -0500195static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
196static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
Don Brace42a91642014-11-14 17:26:27 -0600197static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
Stephen M. Cameron0b570752014-05-29 10:53:28 -0500198static void lock_and_start_io(struct ctlr_info *h);
199static void start_io(struct ctlr_info *h, unsigned long *flags);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800200
201#ifdef CONFIG_COMPAT
Don Brace42a91642014-11-14 17:26:27 -0600202static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
203 void __user *arg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800204#endif
205
206static void cmd_free(struct ctlr_info *h, struct CommandList *c);
207static void cmd_special_free(struct ctlr_info *h, struct CommandList *c);
208static struct CommandList *cmd_alloc(struct ctlr_info *h);
209static struct CommandList *cmd_special_alloc(struct ctlr_info *h);
Stephen M. Camerona2dac132013-02-20 11:24:41 -0600210static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600211 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800212 int cmd_type);
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -0600213#define VPD_PAGE (1 << 8)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800214
Jeff Garzikf2812332010-11-16 02:10:29 -0500215static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600216static void hpsa_scan_start(struct Scsi_Host *);
217static int hpsa_scan_finished(struct Scsi_Host *sh,
218 unsigned long elapsed_time);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800219
220static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500221static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800222static int hpsa_slave_alloc(struct scsi_device *sdev);
223static void hpsa_slave_destroy(struct scsi_device *sdev);
224
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800225static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800226static int check_for_unit_attention(struct ctlr_info *h,
227 struct CommandList *c);
228static void check_ioctl_unit_attention(struct ctlr_info *h,
229 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600230/* performant mode helper functions */
231static void calc_bucket_map(int *bucket, int num_buckets,
Matt Gatese1f7de02014-02-18 13:55:17 -0600232 int nsgs, int min_blocks, int *bucket_map);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800233static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
Matt Gates254f7962012-05-01 11:43:06 -0500234static inline u32 next_command(struct ctlr_info *h, u8 q);
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800235static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
236 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
237 u64 *cfg_offset);
238static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
239 unsigned long *memory_bar);
240static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
241static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
242 int wait_for_ready);
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500243static inline void finish_cmd(struct CommandList *c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -0600244static void hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -0600245#define BOARD_NOT_READY 0
246#define BOARD_READY 1
Stephen M. Cameron23100dd2014-02-18 13:57:37 -0600247static void hpsa_drain_accel_commands(struct ctlr_info *h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -0600248static void hpsa_flush_cache(struct ctlr_info *h);
Scott Teelc3497752014-02-18 13:56:34 -0600249static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
250 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
251 u8 *scsi3addr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800252
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800253static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
254{
255 unsigned long *priv = shost_priv(sdev->host);
256 return (struct ctlr_info *) *priv;
257}
258
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600259static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
260{
261 unsigned long *priv = shost_priv(sh);
262 return (struct ctlr_info *) *priv;
263}
264
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800265static int check_for_unit_attention(struct ctlr_info *h,
266 struct CommandList *c)
267{
268 if (c->err_info->SenseInfo[2] != UNIT_ATTENTION)
269 return 0;
270
271 switch (c->err_info->SenseInfo[12]) {
272 case STATE_CHANGED:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600273 dev_warn(&h->pdev->dev, HPSA "%d: a state change "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800274 "detected, command retried\n", h->ctlr);
275 break;
276 case LUN_FAILED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600277 dev_warn(&h->pdev->dev,
278 HPSA "%d: LUN failure detected\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800279 break;
280 case REPORT_LUNS_CHANGED:
Stephen M. Cameron7f736952014-11-14 17:26:48 -0600281 dev_warn(&h->pdev->dev,
282 HPSA "%d: report LUN data changed\n", h->ctlr);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800283 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -0600284 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
285 * target (array) devices.
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800286 */
287 break;
288 case POWER_OR_RESET:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600289 dev_warn(&h->pdev->dev, HPSA "%d: a power on "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800290 "or device reset detected\n", h->ctlr);
291 break;
292 case UNIT_ATTENTION_CLEARED:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600293 dev_warn(&h->pdev->dev, HPSA "%d: unit attention "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800294 "cleared by another initiator\n", h->ctlr);
295 break;
296 default:
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600297 dev_warn(&h->pdev->dev, HPSA "%d: unknown "
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800298 "unit attention detected\n", h->ctlr);
299 break;
300 }
301 return 1;
302}
303
Matt Bondurant852af202012-05-01 11:42:35 -0500304static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
305{
306 if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
307 (c->err_info->ScsiStatus != SAM_STAT_BUSY &&
308 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
309 return 0;
310 dev_warn(&h->pdev->dev, HPSA "device busy");
311 return 1;
312}
313
Scott Teelda0697b2014-02-18 13:57:00 -0600314static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
315 struct device_attribute *attr,
316 const char *buf, size_t count)
317{
318 int status, len;
319 struct ctlr_info *h;
320 struct Scsi_Host *shost = class_to_shost(dev);
321 char tmpbuf[10];
322
323 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
324 return -EACCES;
325 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
326 strncpy(tmpbuf, buf, len);
327 tmpbuf[len] = '\0';
328 if (sscanf(tmpbuf, "%d", &status) != 1)
329 return -EINVAL;
330 h = shost_to_hba(shost);
331 h->acciopath_status = !!status;
332 dev_warn(&h->pdev->dev,
333 "hpsa: HP SSD Smart Path %s via sysfs update.\n",
334 h->acciopath_status ? "enabled" : "disabled");
335 return count;
336}
337
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600338static ssize_t host_store_raid_offload_debug(struct device *dev,
339 struct device_attribute *attr,
340 const char *buf, size_t count)
341{
342 int debug_level, len;
343 struct ctlr_info *h;
344 struct Scsi_Host *shost = class_to_shost(dev);
345 char tmpbuf[10];
346
347 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
348 return -EACCES;
349 len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
350 strncpy(tmpbuf, buf, len);
351 tmpbuf[len] = '\0';
352 if (sscanf(tmpbuf, "%d", &debug_level) != 1)
353 return -EINVAL;
354 if (debug_level < 0)
355 debug_level = 0;
356 h = shost_to_hba(shost);
357 h->raid_offload_debug = debug_level;
358 dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
359 h->raid_offload_debug);
360 return count;
361}
362
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800363static ssize_t host_store_rescan(struct device *dev,
364 struct device_attribute *attr,
365 const char *buf, size_t count)
366{
367 struct ctlr_info *h;
368 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600369 h = shost_to_hba(shost);
Mike Miller31468402010-02-25 14:03:12 -0600370 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800371 return count;
372}
373
Stephen M. Camerond28ce022010-05-27 15:14:34 -0500374static ssize_t host_show_firmware_revision(struct device *dev,
375 struct device_attribute *attr, char *buf)
376{
377 struct ctlr_info *h;
378 struct Scsi_Host *shost = class_to_shost(dev);
379 unsigned char *fwrev;
380
381 h = shost_to_hba(shost);
382 if (!h->hba_inquiry_data)
383 return 0;
384 fwrev = &h->hba_inquiry_data[32];
385 return snprintf(buf, 20, "%c%c%c%c\n",
386 fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
387}
388
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600389static ssize_t host_show_commands_outstanding(struct device *dev,
390 struct device_attribute *attr, char *buf)
391{
392 struct Scsi_Host *shost = class_to_shost(dev);
393 struct ctlr_info *h = shost_to_hba(shost);
394
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600395 return snprintf(buf, 20, "%d\n",
396 atomic_read(&h->commands_outstanding));
Stephen M. Cameron94a13642011-01-06 14:48:39 -0600397}
398
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600399static ssize_t host_show_transport_mode(struct device *dev,
400 struct device_attribute *attr, char *buf)
401{
402 struct ctlr_info *h;
403 struct Scsi_Host *shost = class_to_shost(dev);
404
405 h = shost_to_hba(shost);
406 return snprintf(buf, 20, "%s\n",
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600407 h->transMethod & CFGTBL_Trans_Performant ?
Stephen M. Cameron745a7a22011-02-15 15:32:58 -0600408 "performant" : "simple");
409}
410
Scott Teelda0697b2014-02-18 13:57:00 -0600411static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
412 struct device_attribute *attr, char *buf)
413{
414 struct ctlr_info *h;
415 struct Scsi_Host *shost = class_to_shost(dev);
416
417 h = shost_to_hba(shost);
418 return snprintf(buf, 30, "HP SSD Smart Path %s\n",
419 (h->acciopath_status == 1) ? "enabled" : "disabled");
420}
421
Stephen M. Cameron46380782011-05-03 15:00:01 -0500422/* List of controllers which cannot be hard reset on kexec with reset_devices */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600423static u32 unresettable_controller[] = {
424 0x324a103C, /* Smart Array P712m */
425 0x324b103C, /* SmartArray P711m */
426 0x3223103C, /* Smart Array P800 */
427 0x3234103C, /* Smart Array P400 */
428 0x3235103C, /* Smart Array P400i */
429 0x3211103C, /* Smart Array E200i */
430 0x3212103C, /* Smart Array E200 */
431 0x3213103C, /* Smart Array E200i */
432 0x3214103C, /* Smart Array E200i */
433 0x3215103C, /* Smart Array E200i */
434 0x3237103C, /* Smart Array E500 */
435 0x323D103C, /* Smart Array P700m */
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100436 0x40800E11, /* Smart Array 5i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600437 0x409C0E11, /* Smart Array 6400 */
438 0x409D0E11, /* Smart Array 6400 EM */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100439 0x40700E11, /* Smart Array 5300 */
440 0x40820E11, /* Smart Array 532 */
441 0x40830E11, /* Smart Array 5312 */
442 0x409A0E11, /* Smart Array 641 */
443 0x409B0E11, /* Smart Array 642 */
444 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600445};
446
Stephen M. Cameron46380782011-05-03 15:00:01 -0500447/* List of controllers which cannot even be soft reset */
448static u32 soft_unresettable_controller[] = {
Tomas Henzl7af0abb2011-11-28 15:39:55 +0100449 0x40800E11, /* Smart Array 5i */
Tomas Henzl5a4f9342012-02-14 18:07:59 +0100450 0x40700E11, /* Smart Array 5300 */
451 0x40820E11, /* Smart Array 532 */
452 0x40830E11, /* Smart Array 5312 */
453 0x409A0E11, /* Smart Array 641 */
454 0x409B0E11, /* Smart Array 642 */
455 0x40910E11, /* Smart Array 6i */
Stephen M. Cameron46380782011-05-03 15:00:01 -0500456 /* Exclude 640x boards. These are two pci devices in one slot
457 * which share a battery backed cache module. One controls the
458 * cache, the other accesses the cache through the one that controls
459 * it. If we reset the one controlling the cache, the other will
460 * likely not be happy. Just forbid resetting this conjoined mess.
461 * The 640x isn't really supported by hpsa anyway.
462 */
463 0x409C0E11, /* Smart Array 6400 */
464 0x409D0E11, /* Smart Array 6400 EM */
465};
466
467static int ctlr_is_hard_resettable(u32 board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600468{
469 int i;
470
471 for (i = 0; i < ARRAY_SIZE(unresettable_controller); i++)
Stephen M. Cameron46380782011-05-03 15:00:01 -0500472 if (unresettable_controller[i] == board_id)
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600473 return 0;
474 return 1;
475}
476
Stephen M. Cameron46380782011-05-03 15:00:01 -0500477static int ctlr_is_soft_resettable(u32 board_id)
478{
479 int i;
480
481 for (i = 0; i < ARRAY_SIZE(soft_unresettable_controller); i++)
482 if (soft_unresettable_controller[i] == board_id)
483 return 0;
484 return 1;
485}
486
487static int ctlr_is_resettable(u32 board_id)
488{
489 return ctlr_is_hard_resettable(board_id) ||
490 ctlr_is_soft_resettable(board_id);
491}
492
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600493static ssize_t host_show_resettable(struct device *dev,
494 struct device_attribute *attr, char *buf)
495{
496 struct ctlr_info *h;
497 struct Scsi_Host *shost = class_to_shost(dev);
498
499 h = shost_to_hba(shost);
Stephen M. Cameron46380782011-05-03 15:00:01 -0500500 return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600501}
502
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800503static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
504{
505 return (scsi3addr[3] & 0xC0) == 0x40;
506}
507
508static const char *raid_label[] = { "0", "4", "1(1+0)", "5", "5+1", "ADG",
Mike Millerd82357e2012-05-01 11:43:32 -0500509 "1(ADM)", "UNKNOWN"
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800510};
Scott Teel6b80b182014-02-18 13:56:55 -0600511#define HPSA_RAID_0 0
512#define HPSA_RAID_4 1
513#define HPSA_RAID_1 2 /* also used for RAID 10 */
514#define HPSA_RAID_5 3 /* also used for RAID 50 */
515#define HPSA_RAID_51 4
516#define HPSA_RAID_6 5 /* also used for RAID 60 */
517#define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800518#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
519
520static ssize_t raid_level_show(struct device *dev,
521 struct device_attribute *attr, char *buf)
522{
523 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600524 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800525 struct ctlr_info *h;
526 struct scsi_device *sdev;
527 struct hpsa_scsi_dev_t *hdev;
528 unsigned long flags;
529
530 sdev = to_scsi_device(dev);
531 h = sdev_to_hba(sdev);
532 spin_lock_irqsave(&h->lock, flags);
533 hdev = sdev->hostdata;
534 if (!hdev) {
535 spin_unlock_irqrestore(&h->lock, flags);
536 return -ENODEV;
537 }
538
539 /* Is this even a logical drive? */
540 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
541 spin_unlock_irqrestore(&h->lock, flags);
542 l = snprintf(buf, PAGE_SIZE, "N/A\n");
543 return l;
544 }
545
546 rlevel = hdev->raid_level;
547 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600548 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800549 rlevel = RAID_UNKNOWN;
550 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
551 return l;
552}
553
554static ssize_t lunid_show(struct device *dev,
555 struct device_attribute *attr, char *buf)
556{
557 struct ctlr_info *h;
558 struct scsi_device *sdev;
559 struct hpsa_scsi_dev_t *hdev;
560 unsigned long flags;
561 unsigned char lunid[8];
562
563 sdev = to_scsi_device(dev);
564 h = sdev_to_hba(sdev);
565 spin_lock_irqsave(&h->lock, flags);
566 hdev = sdev->hostdata;
567 if (!hdev) {
568 spin_unlock_irqrestore(&h->lock, flags);
569 return -ENODEV;
570 }
571 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
572 spin_unlock_irqrestore(&h->lock, flags);
573 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
574 lunid[0], lunid[1], lunid[2], lunid[3],
575 lunid[4], lunid[5], lunid[6], lunid[7]);
576}
577
578static ssize_t unique_id_show(struct device *dev,
579 struct device_attribute *attr, char *buf)
580{
581 struct ctlr_info *h;
582 struct scsi_device *sdev;
583 struct hpsa_scsi_dev_t *hdev;
584 unsigned long flags;
585 unsigned char sn[16];
586
587 sdev = to_scsi_device(dev);
588 h = sdev_to_hba(sdev);
589 spin_lock_irqsave(&h->lock, flags);
590 hdev = sdev->hostdata;
591 if (!hdev) {
592 spin_unlock_irqrestore(&h->lock, flags);
593 return -ENODEV;
594 }
595 memcpy(sn, hdev->device_id, sizeof(sn));
596 spin_unlock_irqrestore(&h->lock, flags);
597 return snprintf(buf, 16 * 2 + 2,
598 "%02X%02X%02X%02X%02X%02X%02X%02X"
599 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
600 sn[0], sn[1], sn[2], sn[3],
601 sn[4], sn[5], sn[6], sn[7],
602 sn[8], sn[9], sn[10], sn[11],
603 sn[12], sn[13], sn[14], sn[15]);
604}
605
Scott Teelc1988682014-02-18 13:55:54 -0600606static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
607 struct device_attribute *attr, char *buf)
608{
609 struct ctlr_info *h;
610 struct scsi_device *sdev;
611 struct hpsa_scsi_dev_t *hdev;
612 unsigned long flags;
613 int offload_enabled;
614
615 sdev = to_scsi_device(dev);
616 h = sdev_to_hba(sdev);
617 spin_lock_irqsave(&h->lock, flags);
618 hdev = sdev->hostdata;
619 if (!hdev) {
620 spin_unlock_irqrestore(&h->lock, flags);
621 return -ENODEV;
622 }
623 offload_enabled = hdev->offload_enabled;
624 spin_unlock_irqrestore(&h->lock, flags);
625 return snprintf(buf, 20, "%d\n", offload_enabled);
626}
627
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600628static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
629static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
630static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
631static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
Scott Teelc1988682014-02-18 13:55:54 -0600632static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
633 host_show_hp_ssd_smart_path_enabled, NULL);
Scott Teelda0697b2014-02-18 13:57:00 -0600634static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
635 host_show_hp_ssd_smart_path_status,
636 host_store_hp_ssd_smart_path_status);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600637static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
638 host_store_raid_offload_debug);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600639static DEVICE_ATTR(firmware_revision, S_IRUGO,
640 host_show_firmware_revision, NULL);
641static DEVICE_ATTR(commands_outstanding, S_IRUGO,
642 host_show_commands_outstanding, NULL);
643static DEVICE_ATTR(transport_mode, S_IRUGO,
644 host_show_transport_mode, NULL);
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600645static DEVICE_ATTR(resettable, S_IRUGO,
646 host_show_resettable, NULL);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600647
648static struct device_attribute *hpsa_sdev_attrs[] = {
649 &dev_attr_raid_level,
650 &dev_attr_lunid,
651 &dev_attr_unique_id,
Scott Teelc1988682014-02-18 13:55:54 -0600652 &dev_attr_hp_ssd_smart_path_enabled,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600653 NULL,
654};
655
656static struct device_attribute *hpsa_shost_attrs[] = {
657 &dev_attr_rescan,
658 &dev_attr_firmware_revision,
659 &dev_attr_commands_outstanding,
660 &dev_attr_transport_mode,
Stephen M. Cameron941b1cd2011-03-09 17:00:06 -0600661 &dev_attr_resettable,
Scott Teelda0697b2014-02-18 13:57:00 -0600662 &dev_attr_hp_ssd_smart_path_status,
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -0600663 &dev_attr_raid_offload_debug,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600664 NULL,
665};
666
667static struct scsi_host_template hpsa_driver_template = {
668 .module = THIS_MODULE,
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -0600669 .name = HPSA,
670 .proc_name = HPSA,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600671 .queuecommand = hpsa_scsi_queue_command,
672 .scan_start = hpsa_scan_start,
673 .scan_finished = hpsa_scan_finished,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100674 .change_queue_depth = scsi_change_queue_depth,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600675 .this_id = -1,
676 .use_clustering = ENABLE_CLUSTERING,
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500677 .eh_abort_handler = hpsa_eh_abort_handler,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600678 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
679 .ioctl = hpsa_ioctl,
680 .slave_alloc = hpsa_slave_alloc,
681 .slave_destroy = hpsa_slave_destroy,
682#ifdef CONFIG_COMPAT
683 .compat_ioctl = hpsa_compat_ioctl,
684#endif
685 .sdev_attrs = hpsa_sdev_attrs,
686 .shost_attrs = hpsa_shost_attrs,
Stephen M. Cameronc0d6a4d2011-10-26 16:20:53 -0500687 .max_sectors = 8192,
Martin K. Petersen54b2b502013-10-23 06:25:40 -0400688 .no_write_same = 1,
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600689};
690
691
692/* Enqueuing and dequeuing functions for cmdlists. */
693static inline void addQ(struct list_head *list, struct CommandList *c)
694{
695 list_add_tail(&c->list, list);
696}
697
Matt Gates254f7962012-05-01 11:43:06 -0500698static inline u32 next_command(struct ctlr_info *h, u8 q)
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600699{
700 u32 a;
Stephen M. Cameron072b0512014-05-29 10:53:07 -0500701 struct reply_queue_buffer *rq = &h->reply_queue[q];
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600702
Matt Gatese1f7de02014-02-18 13:55:17 -0600703 if (h->transMethod & CFGTBL_Trans_io_accel1)
704 return h->access.command_completed(h, q);
705
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600706 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Matt Gates254f7962012-05-01 11:43:06 -0500707 return h->access.command_completed(h, q);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600708
Matt Gates254f7962012-05-01 11:43:06 -0500709 if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
710 a = rq->head[rq->current_entry];
711 rq->current_entry++;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -0600712 atomic_dec(&h->commands_outstanding);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600713 } else {
714 a = FIFO_EMPTY;
715 }
716 /* Check for wraparound */
Matt Gates254f7962012-05-01 11:43:06 -0500717 if (rq->current_entry == h->max_commands) {
718 rq->current_entry = 0;
719 rq->wraparound ^= 1;
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600720 }
721 return a;
722}
723
Scott Teelc3497752014-02-18 13:56:34 -0600724/*
725 * There are some special bits in the bus address of the
726 * command that we have to set for the controller to know
727 * how to process the command:
728 *
729 * Normal performant mode:
730 * bit 0: 1 means performant mode, 0 means simple mode.
731 * bits 1-3 = block fetch table entry
732 * bits 4-6 = command type (== 0)
733 *
734 * ioaccel1 mode:
735 * bit 0 = "performant mode" bit.
736 * bits 1-3 = block fetch table entry
737 * bits 4-6 = command type (== 110)
738 * (command type is needed because ioaccel1 mode
739 * commands are submitted through the same register as normal
740 * mode commands, so this is how the controller knows whether
741 * the command is normal mode or ioaccel1 mode.)
742 *
743 * ioaccel2 mode:
744 * bit 0 = "performant mode" bit.
745 * bits 1-4 = block fetch table entry (note extra bit)
746 * bits 4-6 = not needed, because ioaccel2 mode has
747 * a separate special register for submitting commands.
748 */
749
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600750/* set_performant_mode: Modify the tag for cciss performant
751 * set bit 0 for pull model, bits 3-1 for block fetch
752 * register number
753 */
754static void set_performant_mode(struct ctlr_info *h, struct CommandList *c)
755{
Matt Gates254f7962012-05-01 11:43:06 -0500756 if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600757 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
Hannes Reineckeeee0f032014-01-15 13:30:53 +0100758 if (likely(h->msix_vector > 0))
Matt Gates254f7962012-05-01 11:43:06 -0500759 c->Header.ReplyQueue =
John Kacur804a5cb2013-07-26 16:06:18 +0200760 raw_smp_processor_id() % h->nreply_queues;
Matt Gates254f7962012-05-01 11:43:06 -0500761 }
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600762}
763
Scott Teelc3497752014-02-18 13:56:34 -0600764static void set_ioaccel1_performant_mode(struct ctlr_info *h,
765 struct CommandList *c)
766{
767 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
768
769 /* Tell the controller to post the reply to the queue for this
770 * processor. This seems to give the best I/O throughput.
771 */
772 cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
773 /* Set the bits in the address sent down to include:
774 * - performant mode bit (bit 0)
775 * - pull count (bits 1-3)
776 * - command type (bits 4-6)
777 */
778 c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
779 IOACCEL1_BUSADDR_CMDTYPE;
780}
781
782static void set_ioaccel2_performant_mode(struct ctlr_info *h,
783 struct CommandList *c)
784{
785 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
786
787 /* Tell the controller to post the reply to the queue for this
788 * processor. This seems to give the best I/O throughput.
789 */
790 cp->reply_queue = smp_processor_id() % h->nreply_queues;
791 /* Set the bits in the address sent down to include:
792 * - performant mode bit not used in ioaccel mode 2
793 * - pull count (bits 0-3)
794 * - command type isn't needed for ioaccel2
795 */
796 c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
797}
798
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500799static int is_firmware_flash_cmd(u8 *cdb)
800{
801 return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
802}
803
804/*
805 * During firmware flash, the heartbeat register may not update as frequently
806 * as it should. So we dial down lockup detection during firmware flash. and
807 * dial it back up when firmware flash completes.
808 */
809#define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
810#define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
811static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
812 struct CommandList *c)
813{
814 if (!is_firmware_flash_cmd(c->Request.CDB))
815 return;
816 atomic_inc(&h->firmware_flash_in_progress);
817 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
818}
819
820static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
821 struct CommandList *c)
822{
823 if (is_firmware_flash_cmd(c->Request.CDB) &&
824 atomic_dec_and_test(&h->firmware_flash_in_progress))
825 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
826}
827
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600828static void enqueue_cmd_and_start_io(struct ctlr_info *h,
829 struct CommandList *c)
830{
831 unsigned long flags;
832
Scott Teelc3497752014-02-18 13:56:34 -0600833 switch (c->cmd_type) {
834 case CMD_IOACCEL1:
835 set_ioaccel1_performant_mode(h, c);
836 break;
837 case CMD_IOACCEL2:
838 set_ioaccel2_performant_mode(h, c);
839 break;
840 default:
841 set_performant_mode(h, c);
842 }
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500843 dial_down_lockup_detection_during_fw_flash(h, c);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600844 spin_lock_irqsave(&h->lock, flags);
845 addQ(&h->reqQ, c);
846 h->Qdepth++;
Stephen M. Cameron0b570752014-05-29 10:53:28 -0500847 start_io(h, &flags);
Stephen M. Cameron3f5eac32011-03-09 17:00:01 -0600848 spin_unlock_irqrestore(&h->lock, flags);
849}
850
851static inline void removeQ(struct CommandList *c)
852{
853 if (WARN_ON(list_empty(&c->list)))
854 return;
855 list_del_init(&c->list);
856}
857
858static inline int is_hba_lunid(unsigned char scsi3addr[])
859{
860 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
861}
862
863static inline int is_scsi_rev_5(struct ctlr_info *h)
864{
865 if (!h->hba_inquiry_data)
866 return 0;
867 if ((h->hba_inquiry_data[2] & 0x07) == 5)
868 return 1;
869 return 0;
870}
871
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800872static int hpsa_find_target_lun(struct ctlr_info *h,
873 unsigned char scsi3addr[], int bus, int *target, int *lun)
874{
875 /* finds an unused bus, target, lun for a new physical device
876 * assumes h->devlock is held
877 */
878 int i, found = 0;
Scott Teelcfe5bad2011-10-26 16:21:07 -0500879 DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800880
Akinobu Mita263d9402012-01-21 00:15:27 +0900881 bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800882
883 for (i = 0; i < h->ndevices; i++) {
884 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
Akinobu Mita263d9402012-01-21 00:15:27 +0900885 __set_bit(h->dev[i]->target, lun_taken);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800886 }
887
Akinobu Mita263d9402012-01-21 00:15:27 +0900888 i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
889 if (i < HPSA_MAX_DEVICES) {
890 /* *bus = 1; */
891 *target = i;
892 *lun = 0;
893 found = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800894 }
895 return !found;
896}
897
898/* Add an entry into h->dev[] array. */
899static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
900 struct hpsa_scsi_dev_t *device,
901 struct hpsa_scsi_dev_t *added[], int *nadded)
902{
903 /* assumes h->devlock is held */
904 int n = h->ndevices;
905 int i;
906 unsigned char addr1[8], addr2[8];
907 struct hpsa_scsi_dev_t *sd;
908
Scott Teelcfe5bad2011-10-26 16:21:07 -0500909 if (n >= HPSA_MAX_DEVICES) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800910 dev_err(&h->pdev->dev, "too many devices, some will be "
911 "inaccessible.\n");
912 return -1;
913 }
914
915 /* physical devices do not have lun or target assigned until now. */
916 if (device->lun != -1)
917 /* Logical device, lun is already assigned. */
918 goto lun_assigned;
919
920 /* If this device a non-zero lun of a multi-lun device
921 * byte 4 of the 8-byte LUN addr will contain the logical
922 * unit no, zero otherise.
923 */
924 if (device->scsi3addr[4] == 0) {
925 /* This is not a non-zero lun of a multi-lun device */
926 if (hpsa_find_target_lun(h, device->scsi3addr,
927 device->bus, &device->target, &device->lun) != 0)
928 return -1;
929 goto lun_assigned;
930 }
931
932 /* This is a non-zero lun of a multi-lun device.
933 * Search through our list and find the device which
934 * has the same 8 byte LUN address, excepting byte 4.
935 * Assign the same bus and target for this new LUN.
936 * Use the logical unit number from the firmware.
937 */
938 memcpy(addr1, device->scsi3addr, 8);
939 addr1[4] = 0;
940 for (i = 0; i < n; i++) {
941 sd = h->dev[i];
942 memcpy(addr2, sd->scsi3addr, 8);
943 addr2[4] = 0;
944 /* differ only in byte 4? */
945 if (memcmp(addr1, addr2, 8) == 0) {
946 device->bus = sd->bus;
947 device->target = sd->target;
948 device->lun = device->scsi3addr[4];
949 break;
950 }
951 }
952 if (device->lun == -1) {
953 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
954 " suspect firmware bug or unsupported hardware "
955 "configuration.\n");
956 return -1;
957 }
958
959lun_assigned:
960
961 h->dev[n] = device;
962 h->ndevices++;
963 added[*nadded] = device;
964 (*nadded)++;
965
966 /* initially, (before registering with scsi layer) we don't
967 * know our hostno and we don't want to print anything first
968 * time anyway (the scsi layer's inquiries will show that info)
969 */
970 /* if (hostno != -1) */
971 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d added.\n",
972 scsi_device_type(device->devtype), hostno,
973 device->bus, device->target, device->lun);
974 return 0;
975}
976
Scott Teelbd9244f2012-01-19 14:01:30 -0600977/* Update an entry in h->dev[] array. */
978static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
979 int entry, struct hpsa_scsi_dev_t *new_entry)
980{
981 /* assumes h->devlock is held */
982 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
983
984 /* Raid level changed. */
985 h->dev[entry]->raid_level = new_entry->raid_level;
Stephen M. Cameron250fb122014-02-18 13:55:38 -0600986
987 /* Raid offload parameters changed. */
988 h->dev[entry]->offload_config = new_entry->offload_config;
989 h->dev[entry]->offload_enabled = new_entry->offload_enabled;
Stephen M. Cameron9fb0de22014-02-18 13:56:50 -0600990 h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
991 h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
992 h->dev[entry]->raid_map = new_entry->raid_map;
Stephen M. Cameron250fb122014-02-18 13:55:38 -0600993
Scott Teelbd9244f2012-01-19 14:01:30 -0600994 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d updated.\n",
995 scsi_device_type(new_entry->devtype), hostno, new_entry->bus,
996 new_entry->target, new_entry->lun);
997}
998
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -0600999/* Replace an entry from h->dev[] array. */
1000static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
1001 int entry, struct hpsa_scsi_dev_t *new_entry,
1002 struct hpsa_scsi_dev_t *added[], int *nadded,
1003 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1004{
1005 /* assumes h->devlock is held */
Scott Teelcfe5bad2011-10-26 16:21:07 -05001006 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001007 removed[*nremoved] = h->dev[entry];
1008 (*nremoved)++;
Stephen M. Cameron01350d02011-08-09 08:18:01 -05001009
1010 /*
1011 * New physical devices won't have target/lun assigned yet
1012 * so we need to preserve the values in the slot we are replacing.
1013 */
1014 if (new_entry->target == -1) {
1015 new_entry->target = h->dev[entry]->target;
1016 new_entry->lun = h->dev[entry]->lun;
1017 }
1018
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001019 h->dev[entry] = new_entry;
1020 added[*nadded] = new_entry;
1021 (*nadded)++;
1022 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d changed.\n",
1023 scsi_device_type(new_entry->devtype), hostno, new_entry->bus,
1024 new_entry->target, new_entry->lun);
1025}
1026
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001027/* Remove an entry from h->dev[] array. */
1028static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1029 struct hpsa_scsi_dev_t *removed[], int *nremoved)
1030{
1031 /* assumes h->devlock is held */
1032 int i;
1033 struct hpsa_scsi_dev_t *sd;
1034
Scott Teelcfe5bad2011-10-26 16:21:07 -05001035 BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001036
1037 sd = h->dev[entry];
1038 removed[*nremoved] = h->dev[entry];
1039 (*nremoved)++;
1040
1041 for (i = entry; i < h->ndevices-1; i++)
1042 h->dev[i] = h->dev[i+1];
1043 h->ndevices--;
1044 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d removed.\n",
1045 scsi_device_type(sd->devtype), hostno, sd->bus, sd->target,
1046 sd->lun);
1047}
1048
1049#define SCSI3ADDR_EQ(a, b) ( \
1050 (a)[7] == (b)[7] && \
1051 (a)[6] == (b)[6] && \
1052 (a)[5] == (b)[5] && \
1053 (a)[4] == (b)[4] && \
1054 (a)[3] == (b)[3] && \
1055 (a)[2] == (b)[2] && \
1056 (a)[1] == (b)[1] && \
1057 (a)[0] == (b)[0])
1058
1059static void fixup_botched_add(struct ctlr_info *h,
1060 struct hpsa_scsi_dev_t *added)
1061{
1062 /* called when scsi_add_device fails in order to re-adjust
1063 * h->dev[] to match the mid layer's view.
1064 */
1065 unsigned long flags;
1066 int i, j;
1067
1068 spin_lock_irqsave(&h->lock, flags);
1069 for (i = 0; i < h->ndevices; i++) {
1070 if (h->dev[i] == added) {
1071 for (j = i; j < h->ndevices-1; j++)
1072 h->dev[j] = h->dev[j+1];
1073 h->ndevices--;
1074 break;
1075 }
1076 }
1077 spin_unlock_irqrestore(&h->lock, flags);
1078 kfree(added);
1079}
1080
1081static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1082 struct hpsa_scsi_dev_t *dev2)
1083{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001084 /* we compare everything except lun and target as these
1085 * are not yet assigned. Compare parts likely
1086 * to differ first
1087 */
1088 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1089 sizeof(dev1->scsi3addr)) != 0)
1090 return 0;
1091 if (memcmp(dev1->device_id, dev2->device_id,
1092 sizeof(dev1->device_id)) != 0)
1093 return 0;
1094 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1095 return 0;
1096 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1097 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001098 if (dev1->devtype != dev2->devtype)
1099 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001100 if (dev1->bus != dev2->bus)
1101 return 0;
1102 return 1;
1103}
1104
Scott Teelbd9244f2012-01-19 14:01:30 -06001105static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1106 struct hpsa_scsi_dev_t *dev2)
1107{
1108 /* Device attributes that can change, but don't mean
1109 * that the device is a different device, nor that the OS
1110 * needs to be told anything about the change.
1111 */
1112 if (dev1->raid_level != dev2->raid_level)
1113 return 1;
Stephen M. Cameron250fb122014-02-18 13:55:38 -06001114 if (dev1->offload_config != dev2->offload_config)
1115 return 1;
1116 if (dev1->offload_enabled != dev2->offload_enabled)
1117 return 1;
Scott Teelbd9244f2012-01-19 14:01:30 -06001118 return 0;
1119}
1120
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001121/* Find needle in haystack. If exact match found, return DEVICE_SAME,
1122 * and return needle location in *index. If scsi3addr matches, but not
1123 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
Scott Teelbd9244f2012-01-19 14:01:30 -06001124 * location in *index.
1125 * In the case of a minor device attribute change, such as RAID level, just
1126 * return DEVICE_UPDATED, along with the updated device's location in index.
1127 * If needle not found, return DEVICE_NOT_FOUND.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001128 */
1129static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1130 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1131 int *index)
1132{
1133 int i;
1134#define DEVICE_NOT_FOUND 0
1135#define DEVICE_CHANGED 1
1136#define DEVICE_SAME 2
Scott Teelbd9244f2012-01-19 14:01:30 -06001137#define DEVICE_UPDATED 3
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001138 for (i = 0; i < haystack_size; i++) {
Stephen M. Cameron23231042010-02-04 08:43:36 -06001139 if (haystack[i] == NULL) /* previously removed. */
1140 continue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001141 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1142 *index = i;
Scott Teelbd9244f2012-01-19 14:01:30 -06001143 if (device_is_the_same(needle, haystack[i])) {
1144 if (device_updated(needle, haystack[i]))
1145 return DEVICE_UPDATED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001146 return DEVICE_SAME;
Scott Teelbd9244f2012-01-19 14:01:30 -06001147 } else {
Stephen M. Cameron98465902014-02-21 16:25:00 -06001148 /* Keep offline devices offline */
1149 if (needle->volume_offline)
1150 return DEVICE_NOT_FOUND;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001151 return DEVICE_CHANGED;
Scott Teelbd9244f2012-01-19 14:01:30 -06001152 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001153 }
1154 }
1155 *index = -1;
1156 return DEVICE_NOT_FOUND;
1157}
1158
Stephen M. Cameron98465902014-02-21 16:25:00 -06001159static void hpsa_monitor_offline_device(struct ctlr_info *h,
1160 unsigned char scsi3addr[])
1161{
1162 struct offline_device_entry *device;
1163 unsigned long flags;
1164
1165 /* Check to see if device is already on the list */
1166 spin_lock_irqsave(&h->offline_device_lock, flags);
1167 list_for_each_entry(device, &h->offline_device_list, offline_list) {
1168 if (memcmp(device->scsi3addr, scsi3addr,
1169 sizeof(device->scsi3addr)) == 0) {
1170 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1171 return;
1172 }
1173 }
1174 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1175
1176 /* Device is not on the list, add it. */
1177 device = kmalloc(sizeof(*device), GFP_KERNEL);
1178 if (!device) {
1179 dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
1180 return;
1181 }
1182 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
1183 spin_lock_irqsave(&h->offline_device_lock, flags);
1184 list_add_tail(&device->offline_list, &h->offline_device_list);
1185 spin_unlock_irqrestore(&h->offline_device_lock, flags);
1186}
1187
1188/* Print a message explaining various offline volume states */
1189static void hpsa_show_volume_status(struct ctlr_info *h,
1190 struct hpsa_scsi_dev_t *sd)
1191{
1192 if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
1193 dev_info(&h->pdev->dev,
1194 "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
1195 h->scsi_host->host_no,
1196 sd->bus, sd->target, sd->lun);
1197 switch (sd->volume_offline) {
1198 case HPSA_LV_OK:
1199 break;
1200 case HPSA_LV_UNDERGOING_ERASE:
1201 dev_info(&h->pdev->dev,
1202 "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
1203 h->scsi_host->host_no,
1204 sd->bus, sd->target, sd->lun);
1205 break;
1206 case HPSA_LV_UNDERGOING_RPI:
1207 dev_info(&h->pdev->dev,
1208 "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
1209 h->scsi_host->host_no,
1210 sd->bus, sd->target, sd->lun);
1211 break;
1212 case HPSA_LV_PENDING_RPI:
1213 dev_info(&h->pdev->dev,
1214 "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
1215 h->scsi_host->host_no,
1216 sd->bus, sd->target, sd->lun);
1217 break;
1218 case HPSA_LV_ENCRYPTED_NO_KEY:
1219 dev_info(&h->pdev->dev,
1220 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
1221 h->scsi_host->host_no,
1222 sd->bus, sd->target, sd->lun);
1223 break;
1224 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
1225 dev_info(&h->pdev->dev,
1226 "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
1227 h->scsi_host->host_no,
1228 sd->bus, sd->target, sd->lun);
1229 break;
1230 case HPSA_LV_UNDERGOING_ENCRYPTION:
1231 dev_info(&h->pdev->dev,
1232 "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
1233 h->scsi_host->host_no,
1234 sd->bus, sd->target, sd->lun);
1235 break;
1236 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
1237 dev_info(&h->pdev->dev,
1238 "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
1239 h->scsi_host->host_no,
1240 sd->bus, sd->target, sd->lun);
1241 break;
1242 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1243 dev_info(&h->pdev->dev,
1244 "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
1245 h->scsi_host->host_no,
1246 sd->bus, sd->target, sd->lun);
1247 break;
1248 case HPSA_LV_PENDING_ENCRYPTION:
1249 dev_info(&h->pdev->dev,
1250 "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
1251 h->scsi_host->host_no,
1252 sd->bus, sd->target, sd->lun);
1253 break;
1254 case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
1255 dev_info(&h->pdev->dev,
1256 "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
1257 h->scsi_host->host_no,
1258 sd->bus, sd->target, sd->lun);
1259 break;
1260 }
1261}
1262
Stephen M. Cameron4967bd32010-02-04 08:41:49 -06001263static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001264 struct hpsa_scsi_dev_t *sd[], int nsds)
1265{
1266 /* sd contains scsi3 addresses and devtypes, and inquiry
1267 * data. This function takes what's in sd to be the current
1268 * reality and updates h->dev[] to reflect that reality.
1269 */
1270 int i, entry, device_change, changes = 0;
1271 struct hpsa_scsi_dev_t *csd;
1272 unsigned long flags;
1273 struct hpsa_scsi_dev_t **added, **removed;
1274 int nadded, nremoved;
1275 struct Scsi_Host *sh = NULL;
1276
Scott Teelcfe5bad2011-10-26 16:21:07 -05001277 added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1278 removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001279
1280 if (!added || !removed) {
1281 dev_warn(&h->pdev->dev, "out of memory in "
1282 "adjust_hpsa_scsi_table\n");
1283 goto free_and_out;
1284 }
1285
1286 spin_lock_irqsave(&h->devlock, flags);
1287
1288 /* find any devices in h->dev[] that are not in
1289 * sd[] and remove them from h->dev[], and for any
1290 * devices which have changed, remove the old device
1291 * info and add the new device info.
Scott Teelbd9244f2012-01-19 14:01:30 -06001292 * If minor device attributes change, just update
1293 * the existing device structure.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001294 */
1295 i = 0;
1296 nremoved = 0;
1297 nadded = 0;
1298 while (i < h->ndevices) {
1299 csd = h->dev[i];
1300 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1301 if (device_change == DEVICE_NOT_FOUND) {
1302 changes++;
1303 hpsa_scsi_remove_entry(h, hostno, i,
1304 removed, &nremoved);
1305 continue; /* remove ^^^, hence i not incremented */
1306 } else if (device_change == DEVICE_CHANGED) {
1307 changes++;
Stephen M. Cameron2a8ccf32010-02-04 08:43:41 -06001308 hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
1309 added, &nadded, removed, &nremoved);
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -06001310 /* Set it to NULL to prevent it from being freed
1311 * at the bottom of hpsa_update_scsi_devices()
1312 */
1313 sd[entry] = NULL;
Scott Teelbd9244f2012-01-19 14:01:30 -06001314 } else if (device_change == DEVICE_UPDATED) {
1315 hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001316 }
1317 i++;
1318 }
1319
1320 /* Now, make sure every device listed in sd[] is also
1321 * listed in h->dev[], adding them if they aren't found
1322 */
1323
1324 for (i = 0; i < nsds; i++) {
1325 if (!sd[i]) /* if already added above. */
1326 continue;
Stephen M. Cameron98465902014-02-21 16:25:00 -06001327
1328 /* Don't add devices which are NOT READY, FORMAT IN PROGRESS
1329 * as the SCSI mid-layer does not handle such devices well.
1330 * It relentlessly loops sending TUR at 3Hz, then READ(10)
1331 * at 160Hz, and prevents the system from coming up.
1332 */
1333 if (sd[i]->volume_offline) {
1334 hpsa_show_volume_status(h, sd[i]);
1335 dev_info(&h->pdev->dev, "c%db%dt%dl%d: temporarily offline\n",
1336 h->scsi_host->host_no,
1337 sd[i]->bus, sd[i]->target, sd[i]->lun);
1338 continue;
1339 }
1340
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001341 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1342 h->ndevices, &entry);
1343 if (device_change == DEVICE_NOT_FOUND) {
1344 changes++;
1345 if (hpsa_scsi_add_entry(h, hostno, sd[i],
1346 added, &nadded) != 0)
1347 break;
1348 sd[i] = NULL; /* prevent from being freed later. */
1349 } else if (device_change == DEVICE_CHANGED) {
1350 /* should never happen... */
1351 changes++;
1352 dev_warn(&h->pdev->dev,
1353 "device unexpectedly changed.\n");
1354 /* but if it does happen, we just ignore that device */
1355 }
1356 }
1357 spin_unlock_irqrestore(&h->devlock, flags);
1358
Stephen M. Cameron98465902014-02-21 16:25:00 -06001359 /* Monitor devices which are in one of several NOT READY states to be
1360 * brought online later. This must be done without holding h->devlock,
1361 * so don't touch h->dev[]
1362 */
1363 for (i = 0; i < nsds; i++) {
1364 if (!sd[i]) /* if already added above. */
1365 continue;
1366 if (sd[i]->volume_offline)
1367 hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
1368 }
1369
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001370 /* Don't notify scsi mid layer of any changes the first time through
1371 * (or if there are no changes) scsi_scan_host will do it later the
1372 * first time through.
1373 */
1374 if (hostno == -1 || !changes)
1375 goto free_and_out;
1376
1377 sh = h->scsi_host;
1378 /* Notify scsi mid layer of any removed devices */
1379 for (i = 0; i < nremoved; i++) {
1380 struct scsi_device *sdev =
1381 scsi_device_lookup(sh, removed[i]->bus,
1382 removed[i]->target, removed[i]->lun);
1383 if (sdev != NULL) {
1384 scsi_remove_device(sdev);
1385 scsi_device_put(sdev);
1386 } else {
1387 /* We don't expect to get here.
1388 * future cmds to this device will get selection
1389 * timeout as if the device was gone.
1390 */
1391 dev_warn(&h->pdev->dev, "didn't find c%db%dt%dl%d "
1392 " for removal.", hostno, removed[i]->bus,
1393 removed[i]->target, removed[i]->lun);
1394 }
1395 kfree(removed[i]);
1396 removed[i] = NULL;
1397 }
1398
1399 /* Notify scsi mid layer of any added devices */
1400 for (i = 0; i < nadded; i++) {
1401 if (scsi_add_device(sh, added[i]->bus,
1402 added[i]->target, added[i]->lun) == 0)
1403 continue;
1404 dev_warn(&h->pdev->dev, "scsi_add_device c%db%dt%dl%d failed, "
1405 "device not added.\n", hostno, added[i]->bus,
1406 added[i]->target, added[i]->lun);
1407 /* now we have to remove it from h->dev,
1408 * since it didn't get added to scsi mid layer
1409 */
1410 fixup_botched_add(h, added[i]);
1411 }
1412
1413free_and_out:
1414 kfree(added);
1415 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001416}
1417
1418/*
Joe Perches9e03aa22013-09-03 13:45:58 -07001419 * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001420 * Assume's h->devlock is held.
1421 */
1422static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1423 int bus, int target, int lun)
1424{
1425 int i;
1426 struct hpsa_scsi_dev_t *sd;
1427
1428 for (i = 0; i < h->ndevices; i++) {
1429 sd = h->dev[i];
1430 if (sd->bus == bus && sd->target == target && sd->lun == lun)
1431 return sd;
1432 }
1433 return NULL;
1434}
1435
1436/* link sdev->hostdata to our per-device structure. */
1437static int hpsa_slave_alloc(struct scsi_device *sdev)
1438{
1439 struct hpsa_scsi_dev_t *sd;
1440 unsigned long flags;
1441 struct ctlr_info *h;
1442
1443 h = sdev_to_hba(sdev);
1444 spin_lock_irqsave(&h->devlock, flags);
1445 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1446 sdev_id(sdev), sdev->lun);
1447 if (sd != NULL)
1448 sdev->hostdata = sd;
1449 spin_unlock_irqrestore(&h->devlock, flags);
1450 return 0;
1451}
1452
1453static void hpsa_slave_destroy(struct scsi_device *sdev)
1454{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -06001455 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001456}
1457
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001458static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
1459{
1460 int i;
1461
1462 if (!h->cmd_sg_list)
1463 return;
1464 for (i = 0; i < h->nr_cmds; i++) {
1465 kfree(h->cmd_sg_list[i]);
1466 h->cmd_sg_list[i] = NULL;
1467 }
1468 kfree(h->cmd_sg_list);
1469 h->cmd_sg_list = NULL;
1470}
1471
1472static int hpsa_allocate_sg_chain_blocks(struct ctlr_info *h)
1473{
1474 int i;
1475
1476 if (h->chainsize <= 0)
1477 return 0;
1478
1479 h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
1480 GFP_KERNEL);
1481 if (!h->cmd_sg_list)
1482 return -ENOMEM;
1483 for (i = 0; i < h->nr_cmds; i++) {
1484 h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
1485 h->chainsize, GFP_KERNEL);
1486 if (!h->cmd_sg_list[i])
1487 goto clean;
1488 }
1489 return 0;
1490
1491clean:
1492 hpsa_free_sg_chain_blocks(h);
1493 return -ENOMEM;
1494}
1495
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001496static int hpsa_map_sg_chain_block(struct ctlr_info *h,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001497 struct CommandList *c)
1498{
1499 struct SGDescriptor *chain_sg, *chain_block;
1500 u64 temp64;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001501 u32 chain_len;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001502
1503 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
1504 chain_block = h->cmd_sg_list[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001505 chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
1506 chain_len = sizeof(*chain_sg) *
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001507 (c->Header.SGTotal - h->max_cmd_sg_entries);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001508 chain_sg->Len = cpu_to_le32(chain_len);
1509 temp64 = pci_map_single(h->pdev, chain_block, chain_len,
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001510 PCI_DMA_TODEVICE);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001511 if (dma_mapping_error(&h->pdev->dev, temp64)) {
1512 /* prevent subsequent unmapping */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001513 chain_sg->Addr = cpu_to_le64(0);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001514 return -1;
1515 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001516 chain_sg->Addr = cpu_to_le64(temp64);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06001517 return 0;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001518}
1519
1520static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
1521 struct CommandList *c)
1522{
1523 struct SGDescriptor *chain_sg;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001524
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001525 if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001526 return;
1527
1528 chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001529 pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
1530 le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001531}
1532
Scott Teela09c1442014-02-18 13:57:21 -06001533
1534/* Decode the various types of errors on ioaccel2 path.
1535 * Return 1 for any error that should generate a RAID path retry.
1536 * Return 0 for errors that don't require a RAID path retry.
1537 */
1538static int handle_ioaccel_mode2_error(struct ctlr_info *h,
Scott Teelc3497752014-02-18 13:56:34 -06001539 struct CommandList *c,
1540 struct scsi_cmnd *cmd,
1541 struct io_accel2_cmd *c2)
1542{
1543 int data_len;
Scott Teela09c1442014-02-18 13:57:21 -06001544 int retry = 0;
Scott Teelc3497752014-02-18 13:56:34 -06001545
1546 switch (c2->error_data.serv_response) {
1547 case IOACCEL2_SERV_RESPONSE_COMPLETE:
1548 switch (c2->error_data.status) {
1549 case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
1550 break;
1551 case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
1552 dev_warn(&h->pdev->dev,
1553 "%s: task complete with check condition.\n",
1554 "HP SSD Smart Path");
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001555 cmd->result |= SAM_STAT_CHECK_CONDITION;
Scott Teelc3497752014-02-18 13:56:34 -06001556 if (c2->error_data.data_present !=
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001557 IOACCEL2_SENSE_DATA_PRESENT) {
1558 memset(cmd->sense_buffer, 0,
1559 SCSI_SENSE_BUFFERSIZE);
Scott Teelc3497752014-02-18 13:56:34 -06001560 break;
Stephen M. Cameronee6b1882014-05-29 10:53:54 -05001561 }
Scott Teelc3497752014-02-18 13:56:34 -06001562 /* copy the sense data */
1563 data_len = c2->error_data.sense_data_len;
1564 if (data_len > SCSI_SENSE_BUFFERSIZE)
1565 data_len = SCSI_SENSE_BUFFERSIZE;
1566 if (data_len > sizeof(c2->error_data.sense_data_buff))
1567 data_len =
1568 sizeof(c2->error_data.sense_data_buff);
1569 memcpy(cmd->sense_buffer,
1570 c2->error_data.sense_data_buff, data_len);
Scott Teela09c1442014-02-18 13:57:21 -06001571 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001572 break;
1573 case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
1574 dev_warn(&h->pdev->dev,
1575 "%s: task complete with BUSY status.\n",
1576 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001577 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001578 break;
1579 case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
1580 dev_warn(&h->pdev->dev,
1581 "%s: task complete with reservation conflict.\n",
1582 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001583 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001584 break;
1585 case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
1586 /* Make scsi midlayer do unlimited retries */
1587 cmd->result = DID_IMM_RETRY << 16;
1588 break;
1589 case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
1590 dev_warn(&h->pdev->dev,
1591 "%s: task complete with aborted status.\n",
1592 "HP SSD Smart Path");
Scott Teela09c1442014-02-18 13:57:21 -06001593 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001594 break;
1595 default:
1596 dev_warn(&h->pdev->dev,
1597 "%s: task complete with unrecognized status: 0x%02x\n",
1598 "HP SSD Smart Path", c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001599 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001600 break;
1601 }
1602 break;
1603 case IOACCEL2_SERV_RESPONSE_FAILURE:
1604 /* don't expect to get here. */
1605 dev_warn(&h->pdev->dev,
1606 "unexpected delivery or target failure, status = 0x%02x\n",
1607 c2->error_data.status);
Scott Teela09c1442014-02-18 13:57:21 -06001608 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001609 break;
1610 case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
1611 break;
1612 case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
1613 break;
1614 case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
1615 dev_warn(&h->pdev->dev, "task management function rejected.\n");
Scott Teela09c1442014-02-18 13:57:21 -06001616 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001617 break;
1618 case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
1619 dev_warn(&h->pdev->dev, "task management function invalid LUN\n");
1620 break;
1621 default:
1622 dev_warn(&h->pdev->dev,
1623 "%s: Unrecognized server response: 0x%02x\n",
Scott Teela09c1442014-02-18 13:57:21 -06001624 "HP SSD Smart Path",
1625 c2->error_data.serv_response);
1626 retry = 1;
Scott Teelc3497752014-02-18 13:56:34 -06001627 break;
1628 }
Scott Teela09c1442014-02-18 13:57:21 -06001629
1630 return retry; /* retry on raid path? */
Scott Teelc3497752014-02-18 13:56:34 -06001631}
1632
1633static void process_ioaccel2_completion(struct ctlr_info *h,
1634 struct CommandList *c, struct scsi_cmnd *cmd,
1635 struct hpsa_scsi_dev_t *dev)
1636{
1637 struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teela09c1442014-02-18 13:57:21 -06001638 int raid_retry = 0;
Scott Teelc3497752014-02-18 13:56:34 -06001639
1640 /* check for good status */
1641 if (likely(c2->error_data.serv_response == 0 &&
1642 c2->error_data.status == 0)) {
1643 cmd_free(h, c);
1644 cmd->scsi_done(cmd);
1645 return;
1646 }
1647
1648 /* Any RAID offload error results in retry which will use
1649 * the normal I/O path so the controller can handle whatever's
1650 * wrong.
1651 */
1652 if (is_logical_dev_addr_mode(dev->scsi3addr) &&
1653 c2->error_data.serv_response ==
1654 IOACCEL2_SERV_RESPONSE_FAILURE) {
Scott Teelc3497752014-02-18 13:56:34 -06001655 dev->offload_enabled = 0;
Scott Teele863d682014-02-18 13:57:05 -06001656 h->drv_req_rescan = 1; /* schedule controller for a rescan */
Scott Teelc3497752014-02-18 13:56:34 -06001657 cmd->result = DID_SOFT_ERROR << 16;
1658 cmd_free(h, c);
1659 cmd->scsi_done(cmd);
1660 return;
1661 }
Scott Teela09c1442014-02-18 13:57:21 -06001662 raid_retry = handle_ioaccel_mode2_error(h, c, cmd, c2);
1663 /* If error found, disable Smart Path, schedule a rescan,
1664 * and force a retry on the standard path.
1665 */
1666 if (raid_retry) {
1667 dev_warn(&h->pdev->dev, "%s: Retrying on standard path.\n",
1668 "HP SSD Smart Path");
1669 dev->offload_enabled = 0; /* Disable Smart Path */
1670 h->drv_req_rescan = 1; /* schedule controller rescan */
1671 cmd->result = DID_SOFT_ERROR << 16;
1672 }
Scott Teelc3497752014-02-18 13:56:34 -06001673 cmd_free(h, c);
1674 cmd->scsi_done(cmd);
1675}
1676
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05001677static void complete_scsi_command(struct CommandList *cp)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001678{
1679 struct scsi_cmnd *cmd;
1680 struct ctlr_info *h;
1681 struct ErrorInfo *ei;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001682 struct hpsa_scsi_dev_t *dev;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001683
1684 unsigned char sense_key;
1685 unsigned char asc; /* additional sense code */
1686 unsigned char ascq; /* additional sense code qualifier */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05001687 unsigned long sense_data_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001688
1689 ei = cp->err_info;
1690 cmd = (struct scsi_cmnd *) cp->scsi_cmd;
1691 h = cp->h;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001692 dev = cmd->device->hostdata;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001693
1694 scsi_dma_unmap(cmd); /* undo the DMA mappings */
Matt Gatese1f7de02014-02-18 13:55:17 -06001695 if ((cp->cmd_type == CMD_SCSI) &&
1696 (cp->Header.SGTotal > h->max_cmd_sg_entries))
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06001697 hpsa_unmap_sg_chain_block(h, cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001698
1699 cmd->result = (DID_OK << 16); /* host byte */
1700 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
Scott Teelc3497752014-02-18 13:56:34 -06001701
1702 if (cp->cmd_type == CMD_IOACCEL2)
1703 return process_ioaccel2_completion(h, cp, cmd, dev);
1704
Stephen M. Cameron55126722010-02-25 14:03:01 -06001705 cmd->result |= ei->ScsiStatus;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001706
Robert Elliott6aa4c362014-07-03 10:18:19 -05001707 scsi_set_resid(cmd, ei->ResidualCnt);
1708 if (ei->CommandStatus == 0) {
1709 cmd_free(h, cp);
1710 cmd->scsi_done(cmd);
1711 return;
1712 }
1713
1714 /* copy the sense data */
Stephen M. Camerondb111e12011-06-03 09:57:34 -05001715 if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
1716 sense_data_size = SCSI_SENSE_BUFFERSIZE;
1717 else
1718 sense_data_size = sizeof(ei->SenseInfo);
1719 if (ei->SenseLen < sense_data_size)
1720 sense_data_size = ei->SenseLen;
1721
1722 memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001723
Matt Gatese1f7de02014-02-18 13:55:17 -06001724 /* For I/O accelerator commands, copy over some fields to the normal
1725 * CISS header used below for error handling.
1726 */
1727 if (cp->cmd_type == CMD_IOACCEL1) {
1728 struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
1729 cp->Header.SGList = cp->Header.SGTotal = scsi_sg_count(cmd);
1730 cp->Request.CDBLen = c->io_flags & IOACCEL1_IOFLAGS_CDBLEN_MASK;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001731 cp->Header.tag = c->tag;
Matt Gatese1f7de02014-02-18 13:55:17 -06001732 memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
1733 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001734
1735 /* Any RAID offload error results in retry which will use
1736 * the normal I/O path so the controller can handle whatever's
1737 * wrong.
1738 */
1739 if (is_logical_dev_addr_mode(dev->scsi3addr)) {
1740 if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
1741 dev->offload_enabled = 0;
1742 cmd->result = DID_SOFT_ERROR << 16;
1743 cmd_free(h, cp);
1744 cmd->scsi_done(cmd);
1745 return;
1746 }
Matt Gatese1f7de02014-02-18 13:55:17 -06001747 }
1748
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001749 /* an error has occurred */
1750 switch (ei->CommandStatus) {
1751
1752 case CMD_TARGET_STATUS:
1753 if (ei->ScsiStatus) {
1754 /* Get sense key */
1755 sense_key = 0xf & ei->SenseInfo[2];
1756 /* Get additional sense code */
1757 asc = ei->SenseInfo[12];
1758 /* Get addition sense code qualifier */
1759 ascq = ei->SenseInfo[13];
1760 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001761 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
Matt Gates1d3b3602010-02-04 08:43:00 -06001762 if (sense_key == ABORTED_COMMAND) {
Stephen M. Cameron2e311fb2013-09-23 13:33:41 -05001763 cmd->result |= DID_SOFT_ERROR << 16;
Matt Gates1d3b3602010-02-04 08:43:00 -06001764 break;
1765 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001766 break;
1767 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001768 /* Problem was not a check condition
1769 * Pass it up to the upper layers...
1770 */
1771 if (ei->ScsiStatus) {
1772 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
1773 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
1774 "Returning result: 0x%x\n",
1775 cp, ei->ScsiStatus,
1776 sense_key, asc, ascq,
1777 cmd->result);
1778 } else { /* scsi status is zero??? How??? */
1779 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
1780 "Returning no connection.\n", cp),
1781
1782 /* Ordinarily, this case should never happen,
1783 * but there is a bug in some released firmware
1784 * revisions that allows it to happen if, for
1785 * example, a 4100 backplane loses power and
1786 * the tape drive is in it. We assume that
1787 * it's a fatal error of some kind because we
1788 * can't show that it wasn't. We will make it
1789 * look like selection timeout since that is
1790 * the most common reason for this to occur,
1791 * and it's severe enough.
1792 */
1793
1794 cmd->result = DID_NO_CONNECT << 16;
1795 }
1796 break;
1797
1798 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
1799 break;
1800 case CMD_DATA_OVERRUN:
1801 dev_warn(&h->pdev->dev, "cp %p has"
1802 " completed with data overrun "
1803 "reported\n", cp);
1804 break;
1805 case CMD_INVALID: {
1806 /* print_bytes(cp, sizeof(*cp), 1, 0);
1807 print_cmd(cp); */
1808 /* We get CMD_INVALID if you address a non-existent device
1809 * instead of a selection timeout (no response). You will
1810 * see this if you yank out a drive, then try to access it.
1811 * This is kind of a shame because it means that any other
1812 * CMD_INVALID (e.g. driver bug) will get interpreted as a
1813 * missing target. */
1814 cmd->result = DID_NO_CONNECT << 16;
1815 }
1816 break;
1817 case CMD_PROTOCOL_ERR:
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05001818 cmd->result = DID_ERROR << 16;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001819 dev_warn(&h->pdev->dev, "cp %p has "
Stephen M. Cameron256d0ea2012-09-14 16:34:25 -05001820 "protocol error\n", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001821 break;
1822 case CMD_HARDWARE_ERR:
1823 cmd->result = DID_ERROR << 16;
1824 dev_warn(&h->pdev->dev, "cp %p had hardware error\n", cp);
1825 break;
1826 case CMD_CONNECTION_LOST:
1827 cmd->result = DID_ERROR << 16;
1828 dev_warn(&h->pdev->dev, "cp %p had connection lost\n", cp);
1829 break;
1830 case CMD_ABORTED:
1831 cmd->result = DID_ABORT << 16;
1832 dev_warn(&h->pdev->dev, "cp %p was aborted with status 0x%x\n",
1833 cp, ei->ScsiStatus);
1834 break;
1835 case CMD_ABORT_FAILED:
1836 cmd->result = DID_ERROR << 16;
1837 dev_warn(&h->pdev->dev, "cp %p reports abort failed\n", cp);
1838 break;
1839 case CMD_UNSOLICITED_ABORT:
Stephen M. Cameronf6e76052011-07-26 11:08:52 -05001840 cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
1841 dev_warn(&h->pdev->dev, "cp %p aborted due to an unsolicited "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001842 "abort\n", cp);
1843 break;
1844 case CMD_TIMEOUT:
1845 cmd->result = DID_TIME_OUT << 16;
1846 dev_warn(&h->pdev->dev, "cp %p timedout\n", cp);
1847 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06001848 case CMD_UNABORTABLE:
1849 cmd->result = DID_ERROR << 16;
1850 dev_warn(&h->pdev->dev, "Command unabortable\n");
1851 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06001852 case CMD_IOACCEL_DISABLED:
1853 /* This only handles the direct pass-through case since RAID
1854 * offload is handled above. Just attempt a retry.
1855 */
1856 cmd->result = DID_SOFT_ERROR << 16;
1857 dev_warn(&h->pdev->dev,
1858 "cp %p had HP SSD Smart Path error\n", cp);
1859 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001860 default:
1861 cmd->result = DID_ERROR << 16;
1862 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
1863 cp, ei->CommandStatus);
1864 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001865 cmd_free(h, cp);
Tomas Henzl2cc5bfa2013-08-01 15:14:00 +02001866 cmd->scsi_done(cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001867}
1868
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001869static void hpsa_pci_unmap(struct pci_dev *pdev,
1870 struct CommandList *c, int sg_used, int data_direction)
1871{
1872 int i;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001873
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001874 for (i = 0; i < sg_used; i++)
1875 pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
1876 le32_to_cpu(c->SG[i].Len),
1877 data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001878}
1879
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001880static int hpsa_map_one(struct pci_dev *pdev,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001881 struct CommandList *cp,
1882 unsigned char *buf,
1883 size_t buflen,
1884 int data_direction)
1885{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001886 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001887
1888 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
1889 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001890 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001891 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001892 }
1893
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001894 addr64 = pci_map_single(pdev, buf, buflen, data_direction);
Shuah Khaneceaae12013-02-20 11:24:34 -06001895 if (dma_mapping_error(&pdev->dev, addr64)) {
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001896 /* Prevent subsequent unmap of something never mapped */
Shuah Khaneceaae12013-02-20 11:24:34 -06001897 cp->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001898 cp->Header.SGTotal = cpu_to_le16(0);
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001899 return -1;
Shuah Khaneceaae12013-02-20 11:24:34 -06001900 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06001901 cp->SG[0].Addr = cpu_to_le64(addr64);
1902 cp->SG[0].Len = cpu_to_le32(buflen);
1903 cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
1904 cp->Header.SGList = 1; /* no. SGs contig in this cmd */
1905 cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
Stephen M. Camerona2dac132013-02-20 11:24:41 -06001906 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001907}
1908
1909static inline void hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
1910 struct CommandList *c)
1911{
1912 DECLARE_COMPLETION_ONSTACK(wait);
1913
1914 c->waiting = &wait;
1915 enqueue_cmd_and_start_io(h, c);
1916 wait_for_completion(&wait);
1917}
1918
Stephen M. Cameron094963d2014-05-29 10:53:18 -05001919static u32 lockup_detected(struct ctlr_info *h)
1920{
1921 int cpu;
1922 u32 rc, *lockup_detected;
1923
1924 cpu = get_cpu();
1925 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
1926 rc = *lockup_detected;
1927 put_cpu();
1928 return rc;
1929}
1930
Stephen M. Camerona0c12412011-10-26 16:22:04 -05001931static void hpsa_scsi_do_simple_cmd_core_if_no_lockup(struct ctlr_info *h,
1932 struct CommandList *c)
1933{
Stephen M. Camerona0c12412011-10-26 16:22:04 -05001934 /* If controller lockup detected, fake a hardware error. */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05001935 if (unlikely(lockup_detected(h)))
Stephen M. Camerona0c12412011-10-26 16:22:04 -05001936 c->err_info->CommandStatus = CMD_HARDWARE_ERR;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05001937 else
Stephen M. Camerona0c12412011-10-26 16:22:04 -05001938 hpsa_scsi_do_simple_cmd_core(h, c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05001939}
1940
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05001941#define MAX_DRIVER_CMD_RETRIES 25
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001942static void hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
1943 struct CommandList *c, int data_direction)
1944{
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05001945 int backoff_time = 10, retry_count = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001946
1947 do {
Joe Perches7630abd2011-05-08 23:32:40 -07001948 memset(c->err_info, 0, sizeof(*c->err_info));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001949 hpsa_scsi_do_simple_cmd_core(h, c);
1950 retry_count++;
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05001951 if (retry_count > 3) {
1952 msleep(backoff_time);
1953 if (backoff_time < 1000)
1954 backoff_time *= 2;
1955 }
Matt Bondurant852af202012-05-01 11:42:35 -05001956 } while ((check_for_unit_attention(h, c) ||
Stephen M. Cameron9c2fc162012-05-01 11:42:40 -05001957 check_for_busy(h, c)) &&
1958 retry_count <= MAX_DRIVER_CMD_RETRIES);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001959 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
1960}
1961
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06001962static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
1963 struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001964{
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06001965 const u8 *cdb = c->Request.CDB;
1966 const u8 *lun = c->Header.LUN.LunAddrBytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001967
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06001968 dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
1969 " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
1970 txt, lun[0], lun[1], lun[2], lun[3],
1971 lun[4], lun[5], lun[6], lun[7],
1972 cdb[0], cdb[1], cdb[2], cdb[3],
1973 cdb[4], cdb[5], cdb[6], cdb[7],
1974 cdb[8], cdb[9], cdb[10], cdb[11],
1975 cdb[12], cdb[13], cdb[14], cdb[15]);
1976}
1977
1978static void hpsa_scsi_interpret_error(struct ctlr_info *h,
1979 struct CommandList *cp)
1980{
1981 const struct ErrorInfo *ei = cp->err_info;
1982 struct device *d = &cp->h->pdev->dev;
1983 const u8 *sd = ei->SenseInfo;
1984
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001985 switch (ei->CommandStatus) {
1986 case CMD_TARGET_STATUS:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06001987 hpsa_print_cmd(h, "SCSI status", cp);
1988 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
1989 dev_warn(d, "SCSI Status = 02, Sense key = %02x, ASC = %02x, ASCQ = %02x\n",
1990 sd[2] & 0x0f, sd[12], sd[13]);
1991 else
1992 dev_warn(d, "SCSI Status = %02x\n", ei->ScsiStatus);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001993 if (ei->ScsiStatus == 0)
1994 dev_warn(d, "SCSI status is abnormally zero. "
1995 "(probably indicates selection timeout "
1996 "reported incorrectly due to a known "
1997 "firmware bug, circa July, 2001.)\n");
1998 break;
1999 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002000 break;
2001 case CMD_DATA_OVERRUN:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002002 hpsa_print_cmd(h, "overrun condition", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002003 break;
2004 case CMD_INVALID: {
2005 /* controller unfortunately reports SCSI passthru's
2006 * to non-existent targets as invalid commands.
2007 */
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002008 hpsa_print_cmd(h, "invalid command", cp);
2009 dev_warn(d, "probably means device no longer present\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002010 }
2011 break;
2012 case CMD_PROTOCOL_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002013 hpsa_print_cmd(h, "protocol error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002014 break;
2015 case CMD_HARDWARE_ERR:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002016 hpsa_print_cmd(h, "hardware error", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002017 break;
2018 case CMD_CONNECTION_LOST:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002019 hpsa_print_cmd(h, "connection lost", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002020 break;
2021 case CMD_ABORTED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002022 hpsa_print_cmd(h, "aborted", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002023 break;
2024 case CMD_ABORT_FAILED:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002025 hpsa_print_cmd(h, "abort failed", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002026 break;
2027 case CMD_UNSOLICITED_ABORT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002028 hpsa_print_cmd(h, "unsolicited abort", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002029 break;
2030 case CMD_TIMEOUT:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002031 hpsa_print_cmd(h, "timed out", cp);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002032 break;
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002033 case CMD_UNABORTABLE:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002034 hpsa_print_cmd(h, "unabortable", cp);
Stephen M. Cameron1d5e2ed2011-01-07 10:55:48 -06002035 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002036 default:
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002037 hpsa_print_cmd(h, "unknown status", cp);
2038 dev_warn(d, "Unknown command status %x\n",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002039 ei->CommandStatus);
2040 }
2041}
2042
2043static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002044 u16 page, unsigned char *buf,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002045 unsigned char bufsize)
2046{
2047 int rc = IO_OK;
2048 struct CommandList *c;
2049 struct ErrorInfo *ei;
2050
2051 c = cmd_special_alloc(h);
2052
2053 if (c == NULL) { /* trouble... */
2054 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06002055 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002056 }
2057
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002058 if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2059 page, scsi3addr, TYPE_CMD)) {
2060 rc = -1;
2061 goto out;
2062 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002063 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2064 ei = c->err_info;
2065 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002066 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002067 rc = -1;
2068 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002069out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002070 cmd_special_free(h, c);
2071 return rc;
2072}
2073
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002074static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h,
2075 unsigned char *scsi3addr, unsigned char page,
2076 struct bmic_controller_parameters *buf, size_t bufsize)
2077{
2078 int rc = IO_OK;
2079 struct CommandList *c;
2080 struct ErrorInfo *ei;
2081
2082 c = cmd_special_alloc(h);
2083
2084 if (c == NULL) { /* trouble... */
2085 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
2086 return -ENOMEM;
2087 }
2088
2089 if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize,
2090 page, scsi3addr, TYPE_CMD)) {
2091 rc = -1;
2092 goto out;
2093 }
2094 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2095 ei = c->err_info;
2096 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2097 hpsa_scsi_interpret_error(h, c);
2098 rc = -1;
2099 }
2100out:
2101 cmd_special_free(h, c);
2102 return rc;
2103 }
2104
Scott Teelbf711ac2014-02-18 13:56:39 -06002105static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
2106 u8 reset_type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002107{
2108 int rc = IO_OK;
2109 struct CommandList *c;
2110 struct ErrorInfo *ei;
2111
2112 c = cmd_special_alloc(h);
2113
2114 if (c == NULL) { /* trouble... */
2115 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
Stephen M. Camerone9ea04a2010-02-25 14:03:06 -06002116 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002117 }
2118
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002119 /* fill_cmd can't fail here, no data buffer to map. */
Scott Teelbf711ac2014-02-18 13:56:39 -06002120 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2121 scsi3addr, TYPE_MSG);
2122 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002123 hpsa_scsi_do_simple_cmd_core(h, c);
2124 /* no unmap needed here because no data xfer. */
2125
2126 ei = c->err_info;
2127 if (ei->CommandStatus != 0) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002128 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002129 rc = -1;
2130 }
2131 cmd_special_free(h, c);
2132 return rc;
2133}
2134
2135static void hpsa_get_raid_level(struct ctlr_info *h,
2136 unsigned char *scsi3addr, unsigned char *raid_level)
2137{
2138 int rc;
2139 unsigned char *buf;
2140
2141 *raid_level = RAID_UNKNOWN;
2142 buf = kzalloc(64, GFP_KERNEL);
2143 if (!buf)
2144 return;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002145 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002146 if (rc == 0)
2147 *raid_level = buf[8];
2148 if (*raid_level > RAID_UNKNOWN)
2149 *raid_level = RAID_UNKNOWN;
2150 kfree(buf);
2151 return;
2152}
2153
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002154#define HPSA_MAP_DEBUG
2155#ifdef HPSA_MAP_DEBUG
2156static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2157 struct raid_map_data *map_buff)
2158{
2159 struct raid_map_disk_data *dd = &map_buff->data[0];
2160 int map, row, col;
2161 u16 map_cnt, row_cnt, disks_per_row;
2162
2163 if (rc != 0)
2164 return;
2165
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002166 /* Show details only if debugging has been activated. */
2167 if (h->raid_offload_debug < 2)
2168 return;
2169
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002170 dev_info(&h->pdev->dev, "structure_size = %u\n",
2171 le32_to_cpu(map_buff->structure_size));
2172 dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2173 le32_to_cpu(map_buff->volume_blk_size));
2174 dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2175 le64_to_cpu(map_buff->volume_blk_cnt));
2176 dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2177 map_buff->phys_blk_shift);
2178 dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2179 map_buff->parity_rotation_shift);
2180 dev_info(&h->pdev->dev, "strip_size = %u\n",
2181 le16_to_cpu(map_buff->strip_size));
2182 dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2183 le64_to_cpu(map_buff->disk_starting_blk));
2184 dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2185 le64_to_cpu(map_buff->disk_blk_cnt));
2186 dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2187 le16_to_cpu(map_buff->data_disks_per_row));
2188 dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2189 le16_to_cpu(map_buff->metadata_disks_per_row));
2190 dev_info(&h->pdev->dev, "row_cnt = %u\n",
2191 le16_to_cpu(map_buff->row_cnt));
2192 dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2193 le16_to_cpu(map_buff->layout_map_count));
Scott Teeldd0e19f2014-02-18 13:57:31 -06002194 dev_info(&h->pdev->dev, "flags = %u\n",
2195 le16_to_cpu(map_buff->flags));
2196 if (map_buff->flags & RAID_MAP_FLAG_ENCRYPT_ON)
2197 dev_info(&h->pdev->dev, "encrypytion = ON\n");
2198 else
2199 dev_info(&h->pdev->dev, "encrypytion = OFF\n");
2200 dev_info(&h->pdev->dev, "dekindex = %u\n",
2201 le16_to_cpu(map_buff->dekindex));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002202
2203 map_cnt = le16_to_cpu(map_buff->layout_map_count);
2204 for (map = 0; map < map_cnt; map++) {
2205 dev_info(&h->pdev->dev, "Map%u:\n", map);
2206 row_cnt = le16_to_cpu(map_buff->row_cnt);
2207 for (row = 0; row < row_cnt; row++) {
2208 dev_info(&h->pdev->dev, " Row%u:\n", row);
2209 disks_per_row =
2210 le16_to_cpu(map_buff->data_disks_per_row);
2211 for (col = 0; col < disks_per_row; col++, dd++)
2212 dev_info(&h->pdev->dev,
2213 " D%02u: h=0x%04x xor=%u,%u\n",
2214 col, dd->ioaccel_handle,
2215 dd->xor_mult[0], dd->xor_mult[1]);
2216 disks_per_row =
2217 le16_to_cpu(map_buff->metadata_disks_per_row);
2218 for (col = 0; col < disks_per_row; col++, dd++)
2219 dev_info(&h->pdev->dev,
2220 " M%02u: h=0x%04x xor=%u,%u\n",
2221 col, dd->ioaccel_handle,
2222 dd->xor_mult[0], dd->xor_mult[1]);
2223 }
2224 }
2225}
2226#else
2227static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2228 __attribute__((unused)) int rc,
2229 __attribute__((unused)) struct raid_map_data *map_buff)
2230{
2231}
2232#endif
2233
2234static int hpsa_get_raid_map(struct ctlr_info *h,
2235 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2236{
2237 int rc = 0;
2238 struct CommandList *c;
2239 struct ErrorInfo *ei;
2240
2241 c = cmd_special_alloc(h);
2242 if (c == NULL) {
2243 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
2244 return -ENOMEM;
2245 }
2246 if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2247 sizeof(this_device->raid_map), 0,
2248 scsi3addr, TYPE_CMD)) {
2249 dev_warn(&h->pdev->dev, "Out of memory in hpsa_get_raid_map()\n");
2250 cmd_special_free(h, c);
2251 return -ENOMEM;
2252 }
2253 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2254 ei = c->err_info;
2255 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002256 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002257 cmd_special_free(h, c);
2258 return -1;
2259 }
2260 cmd_special_free(h, c);
2261
2262 /* @todo in the future, dynamically allocate RAID map memory */
2263 if (le32_to_cpu(this_device->raid_map.structure_size) >
2264 sizeof(this_device->raid_map)) {
2265 dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2266 rc = -1;
2267 }
2268 hpsa_debug_map_buff(h, rc, &this_device->raid_map);
2269 return rc;
2270}
2271
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002272static int hpsa_vpd_page_supported(struct ctlr_info *h,
2273 unsigned char scsi3addr[], u8 page)
2274{
2275 int rc;
2276 int i;
2277 int pages;
2278 unsigned char *buf, bufsize;
2279
2280 buf = kzalloc(256, GFP_KERNEL);
2281 if (!buf)
2282 return 0;
2283
2284 /* Get the size of the page list first */
2285 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2286 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2287 buf, HPSA_VPD_HEADER_SZ);
2288 if (rc != 0)
2289 goto exit_unsupported;
2290 pages = buf[3];
2291 if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
2292 bufsize = pages + HPSA_VPD_HEADER_SZ;
2293 else
2294 bufsize = 255;
2295
2296 /* Get the whole VPD page list */
2297 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
2298 VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
2299 buf, bufsize);
2300 if (rc != 0)
2301 goto exit_unsupported;
2302
2303 pages = buf[3];
2304 for (i = 1; i <= pages; i++)
2305 if (buf[3 + i] == page)
2306 goto exit_supported;
2307exit_unsupported:
2308 kfree(buf);
2309 return 0;
2310exit_supported:
2311 kfree(buf);
2312 return 1;
2313}
2314
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002315static void hpsa_get_ioaccel_status(struct ctlr_info *h,
2316 unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2317{
2318 int rc;
2319 unsigned char *buf;
2320 u8 ioaccel_status;
2321
2322 this_device->offload_config = 0;
2323 this_device->offload_enabled = 0;
2324
2325 buf = kzalloc(64, GFP_KERNEL);
2326 if (!buf)
2327 return;
Stephen M. Cameron1b70150a2014-02-18 13:57:16 -06002328 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
2329 goto out;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002330 rc = hpsa_scsi_do_inquiry(h, scsi3addr,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002331 VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002332 if (rc != 0)
2333 goto out;
2334
2335#define IOACCEL_STATUS_BYTE 4
2336#define OFFLOAD_CONFIGURED_BIT 0x01
2337#define OFFLOAD_ENABLED_BIT 0x02
2338 ioaccel_status = buf[IOACCEL_STATUS_BYTE];
2339 this_device->offload_config =
2340 !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
2341 if (this_device->offload_config) {
2342 this_device->offload_enabled =
2343 !!(ioaccel_status & OFFLOAD_ENABLED_BIT);
2344 if (hpsa_get_raid_map(h, scsi3addr, this_device))
2345 this_device->offload_enabled = 0;
2346 }
2347out:
2348 kfree(buf);
2349 return;
2350}
2351
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002352/* Get the device id from inquiry page 0x83 */
2353static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
2354 unsigned char *device_id, int buflen)
2355{
2356 int rc;
2357 unsigned char *buf;
2358
2359 if (buflen > 16)
2360 buflen = 16;
2361 buf = kzalloc(64, GFP_KERNEL);
2362 if (!buf)
Stephen M. Camerona84d7942014-05-29 10:54:20 -05002363 return -ENOMEM;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06002364 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002365 if (rc == 0)
2366 memcpy(device_id, &buf[8], buflen);
2367 kfree(buf);
2368 return rc != 0;
2369}
2370
2371static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
2372 struct ReportLUNdata *buf, int bufsize,
2373 int extended_response)
2374{
2375 int rc = IO_OK;
2376 struct CommandList *c;
2377 unsigned char scsi3addr[8];
2378 struct ErrorInfo *ei;
2379
2380 c = cmd_special_alloc(h);
2381 if (c == NULL) { /* trouble... */
2382 dev_err(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
2383 return -1;
2384 }
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06002385 /* address the controller */
2386 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002387 if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
2388 buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
2389 rc = -1;
2390 goto out;
2391 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002392 if (extended_response)
2393 c->Request.CDB[1] = extended_response;
2394 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
2395 ei = c->err_info;
2396 if (ei->CommandStatus != 0 &&
2397 ei->CommandStatus != CMD_DATA_UNDERRUN) {
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06002398 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002399 rc = -1;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002400 } else {
2401 if (buf->extended_response_flag != extended_response) {
2402 dev_err(&h->pdev->dev,
2403 "report luns requested format %u, got %u\n",
2404 extended_response,
2405 buf->extended_response_flag);
2406 rc = -1;
2407 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002408 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06002409out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002410 cmd_special_free(h, c);
2411 return rc;
2412}
2413
2414static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
2415 struct ReportLUNdata *buf,
2416 int bufsize, int extended_response)
2417{
2418 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize, extended_response);
2419}
2420
2421static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
2422 struct ReportLUNdata *buf, int bufsize)
2423{
2424 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
2425}
2426
2427static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
2428 int bus, int target, int lun)
2429{
2430 device->bus = bus;
2431 device->target = target;
2432 device->lun = lun;
2433}
2434
Stephen M. Cameron98465902014-02-21 16:25:00 -06002435/* Use VPD inquiry to get details of volume status */
2436static int hpsa_get_volume_status(struct ctlr_info *h,
2437 unsigned char scsi3addr[])
2438{
2439 int rc;
2440 int status;
2441 int size;
2442 unsigned char *buf;
2443
2444 buf = kzalloc(64, GFP_KERNEL);
2445 if (!buf)
2446 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2447
2448 /* Does controller have VPD for logical volume status? */
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002449 if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
Stephen M. Cameron98465902014-02-21 16:25:00 -06002450 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002451
2452 /* Get the size of the VPD return buffer */
2453 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2454 buf, HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002455 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002456 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002457 size = buf[3];
2458
2459 /* Now get the whole VPD buffer */
2460 rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
2461 buf, size + HPSA_VPD_HEADER_SZ);
Stephen M. Cameron24a4b072014-05-29 10:54:10 -05002462 if (rc != 0)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002463 goto exit_failed;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002464 status = buf[4]; /* status byte */
2465
2466 kfree(buf);
2467 return status;
2468exit_failed:
2469 kfree(buf);
2470 return HPSA_VPD_LV_STATUS_UNSUPPORTED;
2471}
2472
2473/* Determine offline status of a volume.
2474 * Return either:
2475 * 0 (not offline)
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002476 * 0xff (offline for unknown reasons)
Stephen M. Cameron98465902014-02-21 16:25:00 -06002477 * # (integer code indicating one of several NOT READY states
2478 * describing why a volume is to be kept offline)
2479 */
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002480static int hpsa_volume_offline(struct ctlr_info *h,
Stephen M. Cameron98465902014-02-21 16:25:00 -06002481 unsigned char scsi3addr[])
2482{
2483 struct CommandList *c;
2484 unsigned char *sense, sense_key, asc, ascq;
2485 int ldstat = 0;
2486 u16 cmd_status;
2487 u8 scsi_status;
2488#define ASC_LUN_NOT_READY 0x04
2489#define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
2490#define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
2491
2492 c = cmd_alloc(h);
2493 if (!c)
2494 return 0;
2495 (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
2496 hpsa_scsi_do_simple_cmd_core(h, c);
2497 sense = c->err_info->SenseInfo;
2498 sense_key = sense[2];
2499 asc = sense[12];
2500 ascq = sense[13];
2501 cmd_status = c->err_info->CommandStatus;
2502 scsi_status = c->err_info->ScsiStatus;
2503 cmd_free(h, c);
2504 /* Is the volume 'not ready'? */
2505 if (cmd_status != CMD_TARGET_STATUS ||
2506 scsi_status != SAM_STAT_CHECK_CONDITION ||
2507 sense_key != NOT_READY ||
2508 asc != ASC_LUN_NOT_READY) {
2509 return 0;
2510 }
2511
2512 /* Determine the reason for not ready state */
2513 ldstat = hpsa_get_volume_status(h, scsi3addr);
2514
2515 /* Keep volume offline in certain cases: */
2516 switch (ldstat) {
2517 case HPSA_LV_UNDERGOING_ERASE:
2518 case HPSA_LV_UNDERGOING_RPI:
2519 case HPSA_LV_PENDING_RPI:
2520 case HPSA_LV_ENCRYPTED_NO_KEY:
2521 case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
2522 case HPSA_LV_UNDERGOING_ENCRYPTION:
2523 case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
2524 case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
2525 return ldstat;
2526 case HPSA_VPD_LV_STATUS_UNSUPPORTED:
2527 /* If VPD status page isn't available,
2528 * use ASC/ASCQ to determine state
2529 */
2530 if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
2531 (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
2532 return ldstat;
2533 break;
2534 default:
2535 break;
2536 }
2537 return 0;
2538}
2539
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002540static int hpsa_update_device_info(struct ctlr_info *h,
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002541 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
2542 unsigned char *is_OBDR_device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002543{
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002544
2545#define OBDR_SIG_OFFSET 43
2546#define OBDR_TAPE_SIG "$DR-10"
2547#define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
2548#define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
2549
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06002550 unsigned char *inq_buff;
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002551 unsigned char *obdr_sig;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002552
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06002553 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002554 if (!inq_buff)
2555 goto bail_out;
2556
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002557 /* Do an inquiry to the device to see what it is. */
2558 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
2559 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
2560 /* Inquiry failed (msg printed already) */
2561 dev_err(&h->pdev->dev,
2562 "hpsa_update_device_info: inquiry failed\n");
2563 goto bail_out;
2564 }
2565
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002566 this_device->devtype = (inq_buff[0] & 0x1f);
2567 memcpy(this_device->scsi3addr, scsi3addr, 8);
2568 memcpy(this_device->vendor, &inq_buff[8],
2569 sizeof(this_device->vendor));
2570 memcpy(this_device->model, &inq_buff[16],
2571 sizeof(this_device->model));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002572 memset(this_device->device_id, 0,
2573 sizeof(this_device->device_id));
2574 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
2575 sizeof(this_device->device_id));
2576
2577 if (this_device->devtype == TYPE_DISK &&
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002578 is_logical_dev_addr_mode(scsi3addr)) {
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002579 int volume_offline;
2580
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002581 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002582 if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
2583 hpsa_get_ioaccel_status(h, scsi3addr, this_device);
Stephen M. Cameron67955ba2014-05-29 10:54:25 -05002584 volume_offline = hpsa_volume_offline(h, scsi3addr);
2585 if (volume_offline < 0 || volume_offline > 0xff)
2586 volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
2587 this_device->volume_offline = volume_offline & 0xff;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002588 } else {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002589 this_device->raid_level = RAID_UNKNOWN;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002590 this_device->offload_config = 0;
2591 this_device->offload_enabled = 0;
Stephen M. Cameron98465902014-02-21 16:25:00 -06002592 this_device->volume_offline = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002593 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002594
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002595 if (is_OBDR_device) {
2596 /* See if this is a One-Button-Disaster-Recovery device
2597 * by looking for "$DR-10" at offset 43 in inquiry data.
2598 */
2599 obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
2600 *is_OBDR_device = (this_device->devtype == TYPE_ROM &&
2601 strncmp(obdr_sig, OBDR_TAPE_SIG,
2602 OBDR_SIG_LEN) == 0);
2603 }
2604
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002605 kfree(inq_buff);
2606 return 0;
2607
2608bail_out:
2609 kfree(inq_buff);
2610 return 1;
2611}
2612
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002613static unsigned char *ext_target_model[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002614 "MSA2012",
2615 "MSA2024",
2616 "MSA2312",
2617 "MSA2324",
Stephen M. Cameronfda38512011-05-03 15:00:07 -05002618 "P2000 G3 SAS",
Stephen M. Camerone06c8e52013-09-23 13:33:56 -05002619 "MSA 2040 SAS",
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002620 NULL,
2621};
2622
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002623static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002624{
2625 int i;
2626
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002627 for (i = 0; ext_target_model[i]; i++)
2628 if (strncmp(device->model, ext_target_model[i],
2629 strlen(ext_target_model[i])) == 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002630 return 1;
2631 return 0;
2632}
2633
2634/* Helper function to assign bus, target, lun mapping of devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002635 * Puts non-external target logical volumes on bus 0, external target logical
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002636 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
2637 * Logical drive target and lun are assigned at this time, but
2638 * physical device lun and target assignment are deferred (assigned
2639 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
2640 */
2641static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002642 u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002643{
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002644 u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002645
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002646 if (!is_logical_dev_addr_mode(lunaddrbytes)) {
2647 /* physical device, target and lun filled in later */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002648 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002649 hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002650 else
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002651 /* defer target, lun assignment for physical devices */
2652 hpsa_set_bus_target_lun(device, 2, -1, -1);
2653 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002654 }
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002655 /* It's a logical device */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002656 if (is_ext_target(h, device)) {
2657 /* external target way, put logicals on bus 1
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002658 * and match target/lun numbers box
2659 * reports, other smart array, bus 0, target 0, match lunid
2660 */
2661 hpsa_set_bus_target_lun(device,
2662 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
2663 return;
2664 }
2665 hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002666}
2667
2668/*
2669 * If there is no lun 0 on a target, linux won't find any devices.
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002670 * For the external targets (arrays), we have to manually detect the enclosure
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002671 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
2672 * it for some reason. *tmpdevice is the target we're adding,
2673 * this_device is a pointer into the current element of currentsd[]
2674 * that we're building up in update_scsi_devices(), below.
2675 * lunzerobits is a bitmap that tracks which targets already have a
2676 * lun 0 assigned.
2677 * Returns 1 if an enclosure was added, 0 if not.
2678 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002679static int add_ext_target_dev(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002680 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002681 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002682 unsigned long lunzerobits[], int *n_ext_target_devs)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002683{
2684 unsigned char scsi3addr[8];
2685
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002686 if (test_bit(tmpdevice->target, lunzerobits))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002687 return 0; /* There is already a lun 0 on this target. */
2688
2689 if (!is_logical_dev_addr_mode(lunaddrbytes))
2690 return 0; /* It's the logical targets that may lack lun 0. */
2691
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002692 if (!is_ext_target(h, tmpdevice))
2693 return 0; /* Only external target devices have this problem. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002694
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002695 if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002696 return 0;
2697
Stephen M. Cameronc4f8a292011-01-07 10:55:43 -06002698 memset(scsi3addr, 0, 8);
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002699 scsi3addr[3] = tmpdevice->target;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002700 if (is_hba_lunid(scsi3addr))
2701 return 0; /* Don't add the RAID controller here. */
2702
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06002703 if (is_scsi_rev_5(h))
2704 return 0; /* p1210m doesn't need to do this. */
2705
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002706 if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
Scott Teelaca4a522012-01-19 14:01:19 -06002707 dev_warn(&h->pdev->dev, "Maximum number of external "
2708 "target devices exceeded. Check your hardware "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002709 "configuration.");
2710 return 0;
2711 }
2712
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002713 if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002714 return 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002715 (*n_ext_target_devs)++;
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06002716 hpsa_set_bus_target_lun(this_device,
2717 tmpdevice->bus, tmpdevice->target, 0);
2718 set_bit(tmpdevice->target, lunzerobits);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002719 return 1;
2720}
2721
2722/*
Scott Teel54b6e9e2014-02-18 13:56:45 -06002723 * Get address of physical disk used for an ioaccel2 mode command:
2724 * 1. Extract ioaccel2 handle from the command.
2725 * 2. Find a matching ioaccel2 handle from list of physical disks.
2726 * 3. Return:
2727 * 1 and set scsi3addr to address of matching physical
2728 * 0 if no matching physical disk was found.
2729 */
2730static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
2731 struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
2732{
2733 struct ReportExtendedLUNdata *physicals = NULL;
2734 int responsesize = 24; /* size of physical extended response */
2735 int extended = 2; /* flag forces reporting 'other dev info'. */
2736 int reportsize = sizeof(*physicals) + HPSA_MAX_PHYS_LUN * responsesize;
2737 u32 nphysicals = 0; /* number of reported physical devs */
2738 int found = 0; /* found match (1) or not (0) */
2739 u32 find; /* handle we need to match */
2740 int i;
2741 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
2742 struct hpsa_scsi_dev_t *d; /* device of request being aborted */
2743 struct io_accel2_cmd *c2a; /* ioaccel2 command to abort */
2744 u32 it_nexus; /* 4 byte device handle for the ioaccel2 cmd */
2745 u32 scsi_nexus; /* 4 byte device handle for the ioaccel2 cmd */
2746
2747 if (ioaccel2_cmd_to_abort->cmd_type != CMD_IOACCEL2)
2748 return 0; /* no match */
2749
2750 /* point to the ioaccel2 device handle */
2751 c2a = &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
2752 if (c2a == NULL)
2753 return 0; /* no match */
2754
2755 scmd = (struct scsi_cmnd *) ioaccel2_cmd_to_abort->scsi_cmd;
2756 if (scmd == NULL)
2757 return 0; /* no match */
2758
2759 d = scmd->device->hostdata;
2760 if (d == NULL)
2761 return 0; /* no match */
2762
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06002763 it_nexus = cpu_to_le32(d->ioaccel_handle);
2764 scsi_nexus = cpu_to_le32(c2a->scsi_nexus);
Scott Teel54b6e9e2014-02-18 13:56:45 -06002765 find = c2a->scsi_nexus;
2766
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002767 if (h->raid_offload_debug > 0)
2768 dev_info(&h->pdev->dev,
2769 "%s: scsi_nexus:0x%08x device id: 0x%02x%02x%02x%02x %02x%02x%02x%02x %02x%02x%02x%02x %02x%02x%02x%02x\n",
2770 __func__, scsi_nexus,
2771 d->device_id[0], d->device_id[1], d->device_id[2],
2772 d->device_id[3], d->device_id[4], d->device_id[5],
2773 d->device_id[6], d->device_id[7], d->device_id[8],
2774 d->device_id[9], d->device_id[10], d->device_id[11],
2775 d->device_id[12], d->device_id[13], d->device_id[14],
2776 d->device_id[15]);
2777
Scott Teel54b6e9e2014-02-18 13:56:45 -06002778 /* Get the list of physical devices */
2779 physicals = kzalloc(reportsize, GFP_KERNEL);
Joe Handzik3b51a7a2014-03-26 17:48:11 -05002780 if (physicals == NULL)
2781 return 0;
Scott Teel54b6e9e2014-02-18 13:56:45 -06002782 if (hpsa_scsi_do_report_phys_luns(h, (struct ReportLUNdata *) physicals,
2783 reportsize, extended)) {
2784 dev_err(&h->pdev->dev,
2785 "Can't lookup %s device handle: report physical LUNs failed.\n",
2786 "HP SSD Smart Path");
2787 kfree(physicals);
2788 return 0;
2789 }
2790 nphysicals = be32_to_cpu(*((__be32 *)physicals->LUNListLength)) /
2791 responsesize;
2792
Scott Teel54b6e9e2014-02-18 13:56:45 -06002793 /* find ioaccel2 handle in list of physicals: */
2794 for (i = 0; i < nphysicals; i++) {
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002795 struct ext_report_lun_entry *entry = &physicals->LUN[i];
2796
Scott Teel54b6e9e2014-02-18 13:56:45 -06002797 /* handle is in bytes 28-31 of each lun */
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002798 if (entry->ioaccel_handle != find)
Scott Teel54b6e9e2014-02-18 13:56:45 -06002799 continue; /* didn't match */
Scott Teel54b6e9e2014-02-18 13:56:45 -06002800 found = 1;
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002801 memcpy(scsi3addr, entry->lunid, 8);
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002802 if (h->raid_offload_debug > 0)
2803 dev_info(&h->pdev->dev,
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002804 "%s: Searched h=0x%08x, Found h=0x%08x, scsiaddr 0x%8phN\n",
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06002805 __func__, find,
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002806 entry->ioaccel_handle, scsi3addr);
Scott Teel54b6e9e2014-02-18 13:56:45 -06002807 break; /* found it */
2808 }
2809
2810 kfree(physicals);
2811 if (found)
2812 return 1;
2813 else
2814 return 0;
2815
2816}
2817/*
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002818 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
2819 * logdev. The number of luns in physdev and logdev are returned in
2820 * *nphysicals and *nlogicals, respectively.
2821 * Returns 0 on success, -1 otherwise.
2822 */
2823static int hpsa_gather_lun_info(struct ctlr_info *h,
Stephen M. Cameron92084712014-11-14 17:26:54 -06002824 int reportphyslunsize, int reportloglunsize,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002825 struct ReportLUNdata *physdev, u32 *nphysicals, int *physical_mode,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002826 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002827{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002828 int physical_entry_size = 8;
2829
2830 *physical_mode = 0;
2831
2832 /* For I/O accelerator mode we need to read physical device handles */
Mike MIller317d4ad2014-02-18 13:56:20 -06002833 if (h->transMethod & CFGTBL_Trans_io_accel1 ||
2834 h->transMethod & CFGTBL_Trans_io_accel2) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002835 *physical_mode = HPSA_REPORT_PHYS_EXTENDED;
2836 physical_entry_size = 24;
2837 }
Stephen M. Cameron92084712014-11-14 17:26:54 -06002838 if (hpsa_scsi_do_report_phys_luns(h, physdev, reportphyslunsize,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002839 *physical_mode)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002840 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
2841 return -1;
2842 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002843 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) /
2844 physical_entry_size;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002845 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
2846 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded."
2847 " %d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
2848 *nphysicals - HPSA_MAX_PHYS_LUN);
2849 *nphysicals = HPSA_MAX_PHYS_LUN;
2850 }
Stephen M. Cameron92084712014-11-14 17:26:54 -06002851 if (hpsa_scsi_do_report_log_luns(h, logdev, reportloglunsize)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002852 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
2853 return -1;
2854 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06002855 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002856 /* Reject Logicals in excess of our max capability. */
2857 if (*nlogicals > HPSA_MAX_LUN) {
2858 dev_warn(&h->pdev->dev,
2859 "maximum logical LUNs (%d) exceeded. "
2860 "%d LUNs ignored.\n", HPSA_MAX_LUN,
2861 *nlogicals - HPSA_MAX_LUN);
2862 *nlogicals = HPSA_MAX_LUN;
2863 }
2864 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
2865 dev_warn(&h->pdev->dev,
2866 "maximum logical + physical LUNs (%d) exceeded. "
2867 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
2868 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
2869 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
2870 }
2871 return 0;
2872}
2873
Don Brace42a91642014-11-14 17:26:27 -06002874static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
2875 int i, int nphysicals, int nlogicals,
Matt Gatesa93aa1f2014-02-18 13:55:07 -06002876 struct ReportExtendedLUNdata *physdev_list,
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06002877 struct ReportLUNdata *logdev_list)
2878{
2879 /* Helper function, figure out where the LUN ID info is coming from
2880 * given index i, lists of physical and logical devices, where in
2881 * the list the raid controller is supposed to appear (first or last)
2882 */
2883
2884 int logicals_start = nphysicals + (raid_ctlr_position == 0);
2885 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
2886
2887 if (i == raid_ctlr_position)
2888 return RAID_CTLR_LUNID;
2889
2890 if (i < logicals_start)
Stephen M. Camerond5b5d962014-05-29 10:53:34 -05002891 return &physdev_list->LUN[i -
2892 (raid_ctlr_position == 0)].lunid[0];
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06002893
2894 if (i < last_device)
2895 return &logdev_list->LUN[i - nphysicals -
2896 (raid_ctlr_position == 0)][0];
2897 BUG();
2898 return NULL;
2899}
2900
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002901static int hpsa_hba_mode_enabled(struct ctlr_info *h)
2902{
2903 int rc;
Joe Handzik6e8e8082014-05-15 15:44:42 -05002904 int hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002905 struct bmic_controller_parameters *ctlr_params;
2906 ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters),
2907 GFP_KERNEL);
2908
2909 if (!ctlr_params)
Joe Handzik96444fb2014-05-15 15:44:47 -05002910 return -ENOMEM;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002911 rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params,
2912 sizeof(struct bmic_controller_parameters));
Joe Handzik96444fb2014-05-15 15:44:47 -05002913 if (rc) {
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002914 kfree(ctlr_params);
Joe Handzik96444fb2014-05-15 15:44:47 -05002915 return rc;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002916 }
Joe Handzik6e8e8082014-05-15 15:44:42 -05002917
2918 hba_mode_enabled =
2919 ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0);
2920 kfree(ctlr_params);
2921 return hba_mode_enabled;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002922}
2923
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002924static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
2925{
2926 /* the idea here is we could get notified
2927 * that some devices have changed, so we do a report
2928 * physical luns and report logical luns cmd, and adjust
2929 * our list of devices accordingly.
2930 *
2931 * The scsi3addr's of devices won't change so long as the
2932 * adapter is not reset. That means we can rescan and
2933 * tell which devices we already know about, vs. new
2934 * devices, vs. disappearing devices.
2935 */
Matt Gatesa93aa1f2014-02-18 13:55:07 -06002936 struct ReportExtendedLUNdata *physdev_list = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002937 struct ReportLUNdata *logdev_list = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002938 u32 nphysicals = 0;
2939 u32 nlogicals = 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002940 int physical_mode = 0;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002941 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002942 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
2943 int ncurrent = 0;
Scott Teel4f4eb9f2012-01-19 14:01:25 -06002944 int i, n_ext_target_devs, ndevs_to_allocate;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06002945 int raid_ctlr_position;
Joe Handzik2bbf5c72014-05-21 11:16:01 -05002946 int rescan_hba_mode;
Scott Teelaca4a522012-01-19 14:01:19 -06002947 DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002948
Scott Teelcfe5bad2011-10-26 16:21:07 -05002949 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
Stephen M. Cameron92084712014-11-14 17:26:54 -06002950 physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
2951 logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002952 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
2953
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05002954 if (!currentsd || !physdev_list || !logdev_list || !tmpdevice) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002955 dev_err(&h->pdev->dev, "out of memory\n");
2956 goto out;
2957 }
2958 memset(lunzerobits, 0, sizeof(lunzerobits));
2959
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002960 rescan_hba_mode = hpsa_hba_mode_enabled(h);
Joe Handzik96444fb2014-05-15 15:44:47 -05002961 if (rescan_hba_mode < 0)
2962 goto out;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06002963
2964 if (!h->hba_mode_enabled && rescan_hba_mode)
2965 dev_warn(&h->pdev->dev, "HBA mode enabled\n");
2966 else if (h->hba_mode_enabled && !rescan_hba_mode)
2967 dev_warn(&h->pdev->dev, "HBA mode disabled\n");
2968
2969 h->hba_mode_enabled = rescan_hba_mode;
2970
Stephen M. Cameron92084712014-11-14 17:26:54 -06002971 if (hpsa_gather_lun_info(h,
2972 sizeof(*physdev_list), sizeof(*logdev_list),
Matt Gatesa93aa1f2014-02-18 13:55:07 -06002973 (struct ReportLUNdata *) physdev_list, &nphysicals,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06002974 &physical_mode, logdev_list, &nlogicals))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002975 goto out;
2976
Scott Teelaca4a522012-01-19 14:01:19 -06002977 /* We might see up to the maximum number of logical and physical disks
2978 * plus external target devices, and a device for the local RAID
2979 * controller.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002980 */
Scott Teelaca4a522012-01-19 14:01:19 -06002981 ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002982
2983 /* Allocate the per device structures */
2984 for (i = 0; i < ndevs_to_allocate; i++) {
Scott Teelb7ec0212011-10-26 16:21:12 -05002985 if (i >= HPSA_MAX_DEVICES) {
2986 dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
2987 " %d devices ignored.\n", HPSA_MAX_DEVICES,
2988 ndevs_to_allocate - HPSA_MAX_DEVICES);
2989 break;
2990 }
2991
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002992 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
2993 if (!currentsd[i]) {
2994 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
2995 __FILE__, __LINE__);
2996 goto out;
2997 }
2998 ndev_allocated++;
2999 }
3000
Stephen M. Cameron86452912014-05-29 10:53:49 -05003001 if (is_scsi_rev_5(h))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003002 raid_ctlr_position = 0;
3003 else
3004 raid_ctlr_position = nphysicals + nlogicals;
3005
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003006 /* adjust our table of devices */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003007 n_ext_target_devs = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003008 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003009 u8 *lunaddrbytes, is_OBDR = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003010
3011 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003012 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3013 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003014 /* skip masked physical devices. */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003015 if (lunaddrbytes[3] & 0xC0 &&
3016 i < nphysicals + (raid_ctlr_position == 0))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003017 continue;
3018
3019 /* Get device type, vendor, model, device id */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003020 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
3021 &is_OBDR))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003022 continue; /* skip it if we can't talk to it. */
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003023 figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003024 this_device = currentsd[ncurrent];
3025
3026 /*
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003027 * For external target devices, we have to insert a LUN 0 which
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003028 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3029 * is nonetheless an enclosure device there. We have to
3030 * present that otherwise linux won't find anything if
3031 * there is no lun 0.
3032 */
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003033 if (add_ext_target_dev(h, tmpdevice, this_device,
Stephen M. Cameron1f310bd2012-01-19 14:01:14 -06003034 lunaddrbytes, lunzerobits,
Scott Teel4f4eb9f2012-01-19 14:01:25 -06003035 &n_ext_target_devs)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003036 ncurrent++;
3037 this_device = currentsd[ncurrent];
3038 }
3039
3040 *this_device = *tmpdevice;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003041
3042 switch (this_device->devtype) {
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003043 case TYPE_ROM:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003044 /* We don't *really* support actual CD-ROM devices,
3045 * just "One Button Disaster Recovery" tape drive
3046 * which temporarily pretends to be a CD-ROM drive.
3047 * So we check that the device is really an OBDR tape
3048 * device by checking for "$DR-10" in bytes 43-48 of
3049 * the inquiry data.
3050 */
Stephen M. Cameron0b0e1d62011-08-09 08:17:30 -05003051 if (is_OBDR)
3052 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003053 break;
3054 case TYPE_DISK:
Stephen M. Cameron316b2212014-02-21 16:25:15 -06003055 if (h->hba_mode_enabled) {
3056 /* never use raid mapper in HBA mode */
3057 this_device->offload_enabled = 0;
3058 ncurrent++;
3059 break;
3060 } else if (h->acciopath_status) {
3061 if (i >= nphysicals) {
3062 ncurrent++;
3063 break;
3064 }
3065 } else {
3066 if (i < nphysicals)
3067 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003068 ncurrent++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003069 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003070 }
3071 if (physical_mode == HPSA_REPORT_PHYS_EXTENDED) {
3072 memcpy(&this_device->ioaccel_handle,
3073 &lunaddrbytes[20],
3074 sizeof(this_device->ioaccel_handle));
3075 ncurrent++;
3076 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003077 break;
3078 case TYPE_TAPE:
3079 case TYPE_MEDIUM_CHANGER:
3080 ncurrent++;
3081 break;
3082 case TYPE_RAID:
3083 /* Only present the Smartarray HBA as a RAID controller.
3084 * If it's a RAID controller other than the HBA itself
3085 * (an external RAID controller, MSA500 or similar)
3086 * don't present it.
3087 */
3088 if (!is_hba_lunid(lunaddrbytes))
3089 break;
3090 ncurrent++;
3091 break;
3092 default:
3093 break;
3094 }
Scott Teelcfe5bad2011-10-26 16:21:07 -05003095 if (ncurrent >= HPSA_MAX_DEVICES)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003096 break;
3097 }
3098 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3099out:
3100 kfree(tmpdevice);
3101 for (i = 0; i < ndev_allocated; i++)
3102 kfree(currentsd[i]);
3103 kfree(currentsd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003104 kfree(physdev_list);
3105 kfree(logdev_list);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003106}
3107
3108/* hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
3109 * dma mapping and fills in the scatter gather entries of the
3110 * hpsa command, cp.
3111 */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003112static int hpsa_scatter_gather(struct ctlr_info *h,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003113 struct CommandList *cp,
3114 struct scsi_cmnd *cmd)
3115{
3116 unsigned int len;
3117 struct scatterlist *sg;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003118 u64 addr64;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003119 int use_sg, i, sg_index, chained;
3120 struct SGDescriptor *curr_sg;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003121
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003122 BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003123
3124 use_sg = scsi_dma_map(cmd);
3125 if (use_sg < 0)
3126 return use_sg;
3127
3128 if (!use_sg)
3129 goto sglist_finished;
3130
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003131 curr_sg = cp->SG;
3132 chained = 0;
3133 sg_index = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003134 scsi_for_each_sg(cmd, sg, use_sg, i) {
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003135 if (i == h->max_cmd_sg_entries - 1 &&
3136 use_sg > h->max_cmd_sg_entries) {
3137 chained = 1;
3138 curr_sg = h->cmd_sg_list[cp->cmdindex];
3139 sg_index = 0;
3140 }
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003141 addr64 = (u64) sg_dma_address(sg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003142 len = sg_dma_len(sg);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003143 curr_sg->Addr = cpu_to_le64(addr64);
3144 curr_sg->Len = cpu_to_le32(len);
3145 curr_sg->Ext = cpu_to_le32(0);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003146 curr_sg++;
3147 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003148 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003149
3150 if (use_sg + chained > h->maxSG)
3151 h->maxSG = use_sg + chained;
3152
3153 if (chained) {
3154 cp->Header.SGList = h->max_cmd_sg_entries;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003155 cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
Stephen M. Camerone2bea6d2013-02-20 11:24:46 -06003156 if (hpsa_map_sg_chain_block(h, cp)) {
3157 scsi_dma_unmap(cmd);
3158 return -1;
3159 }
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003160 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003161 }
3162
3163sglist_finished:
3164
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003165 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003166 cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in this cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003167 return 0;
3168}
3169
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003170#define IO_ACCEL_INELIGIBLE (1)
3171static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
3172{
3173 int is_write = 0;
3174 u32 block;
3175 u32 block_cnt;
3176
3177 /* Perform some CDB fixups if needed using 10 byte reads/writes only */
3178 switch (cdb[0]) {
3179 case WRITE_6:
3180 case WRITE_12:
3181 is_write = 1;
3182 case READ_6:
3183 case READ_12:
3184 if (*cdb_len == 6) {
3185 block = (((u32) cdb[2]) << 8) | cdb[3];
3186 block_cnt = cdb[4];
3187 } else {
3188 BUG_ON(*cdb_len != 12);
3189 block = (((u32) cdb[2]) << 24) |
3190 (((u32) cdb[3]) << 16) |
3191 (((u32) cdb[4]) << 8) |
3192 cdb[5];
3193 block_cnt =
3194 (((u32) cdb[6]) << 24) |
3195 (((u32) cdb[7]) << 16) |
3196 (((u32) cdb[8]) << 8) |
3197 cdb[9];
3198 }
3199 if (block_cnt > 0xffff)
3200 return IO_ACCEL_INELIGIBLE;
3201
3202 cdb[0] = is_write ? WRITE_10 : READ_10;
3203 cdb[1] = 0;
3204 cdb[2] = (u8) (block >> 24);
3205 cdb[3] = (u8) (block >> 16);
3206 cdb[4] = (u8) (block >> 8);
3207 cdb[5] = (u8) (block);
3208 cdb[6] = 0;
3209 cdb[7] = (u8) (block_cnt >> 8);
3210 cdb[8] = (u8) (block_cnt);
3211 cdb[9] = 0;
3212 *cdb_len = 10;
3213 break;
3214 }
3215 return 0;
3216}
3217
Scott Teelc3497752014-02-18 13:56:34 -06003218static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003219 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
3220 u8 *scsi3addr)
Matt Gatese1f7de02014-02-18 13:55:17 -06003221{
3222 struct scsi_cmnd *cmd = c->scsi_cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06003223 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
3224 unsigned int len;
3225 unsigned int total_len = 0;
3226 struct scatterlist *sg;
3227 u64 addr64;
3228 int use_sg, i;
3229 struct SGDescriptor *curr_sg;
3230 u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
3231
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003232 /* TODO: implement chaining support */
3233 if (scsi_sg_count(cmd) > h->ioaccel_maxsg)
3234 return IO_ACCEL_INELIGIBLE;
3235
Matt Gatese1f7de02014-02-18 13:55:17 -06003236 BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
3237
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003238 if (fixup_ioaccel_cdb(cdb, &cdb_len))
3239 return IO_ACCEL_INELIGIBLE;
3240
Matt Gatese1f7de02014-02-18 13:55:17 -06003241 c->cmd_type = CMD_IOACCEL1;
3242
3243 /* Adjust the DMA address to point to the accelerated command buffer */
3244 c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
3245 (c->cmdindex * sizeof(*cp));
3246 BUG_ON(c->busaddr & 0x0000007F);
3247
3248 use_sg = scsi_dma_map(cmd);
3249 if (use_sg < 0)
3250 return use_sg;
3251
3252 if (use_sg) {
3253 curr_sg = cp->SG;
3254 scsi_for_each_sg(cmd, sg, use_sg, i) {
3255 addr64 = (u64) sg_dma_address(sg);
3256 len = sg_dma_len(sg);
3257 total_len += len;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003258 curr_sg->Addr = cpu_to_le64(addr64);
3259 curr_sg->Len = cpu_to_le32(len);
3260 curr_sg->Ext = cpu_to_le32(0);
Matt Gatese1f7de02014-02-18 13:55:17 -06003261 curr_sg++;
3262 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003263 (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
Matt Gatese1f7de02014-02-18 13:55:17 -06003264
3265 switch (cmd->sc_data_direction) {
3266 case DMA_TO_DEVICE:
3267 control |= IOACCEL1_CONTROL_DATA_OUT;
3268 break;
3269 case DMA_FROM_DEVICE:
3270 control |= IOACCEL1_CONTROL_DATA_IN;
3271 break;
3272 case DMA_NONE:
3273 control |= IOACCEL1_CONTROL_NODATAXFER;
3274 break;
3275 default:
3276 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3277 cmd->sc_data_direction);
3278 BUG();
3279 break;
3280 }
3281 } else {
3282 control |= IOACCEL1_CONTROL_NODATAXFER;
3283 }
3284
Scott Teelc3497752014-02-18 13:56:34 -06003285 c->Header.SGList = use_sg;
Matt Gatese1f7de02014-02-18 13:55:17 -06003286 /* Fill out the command structure to submit */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003287 cp->dev_handle = ioaccel_handle & 0xFFFF;
Matt Gatese1f7de02014-02-18 13:55:17 -06003288 cp->transfer_len = total_len;
3289 cp->io_flags = IOACCEL1_IOFLAGS_IO_REQ |
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003290 (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK);
Matt Gatese1f7de02014-02-18 13:55:17 -06003291 cp->control = control;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003292 memcpy(cp->CDB, cdb, cdb_len);
3293 memcpy(cp->CISS_LUN, scsi3addr, 8);
Scott Teelc3497752014-02-18 13:56:34 -06003294 /* Tag was already set at init time. */
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003295 enqueue_cmd_and_start_io(h, c);
Matt Gatese1f7de02014-02-18 13:55:17 -06003296 return 0;
3297}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003298
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003299/*
3300 * Queue a command directly to a device behind the controller using the
3301 * I/O accelerator path.
3302 */
3303static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
3304 struct CommandList *c)
3305{
3306 struct scsi_cmnd *cmd = c->scsi_cmd;
3307 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3308
3309 return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
3310 cmd->cmnd, cmd->cmd_len, dev->scsi3addr);
3311}
3312
Scott Teeldd0e19f2014-02-18 13:57:31 -06003313/*
3314 * Set encryption parameters for the ioaccel2 request
3315 */
3316static void set_encrypt_ioaccel2(struct ctlr_info *h,
3317 struct CommandList *c, struct io_accel2_cmd *cp)
3318{
3319 struct scsi_cmnd *cmd = c->scsi_cmd;
3320 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3321 struct raid_map_data *map = &dev->raid_map;
3322 u64 first_block;
3323
3324 BUG_ON(!(dev->offload_config && dev->offload_enabled));
3325
3326 /* Are we doing encryption on this device */
3327 if (!(map->flags & RAID_MAP_FLAG_ENCRYPT_ON))
3328 return;
3329 /* Set the data encryption key index. */
3330 cp->dekindex = map->dekindex;
3331
3332 /* Set the encryption enable flag, encoded into direction field. */
3333 cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
3334
3335 /* Set encryption tweak values based on logical block address
3336 * If block size is 512, tweak value is LBA.
3337 * For other block sizes, tweak is (LBA * block size)/ 512)
3338 */
3339 switch (cmd->cmnd[0]) {
3340 /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
3341 case WRITE_6:
3342 case READ_6:
3343 if (map->volume_blk_size == 512) {
3344 cp->tweak_lower =
3345 (((u32) cmd->cmnd[2]) << 8) |
3346 cmd->cmnd[3];
3347 cp->tweak_upper = 0;
3348 } else {
3349 first_block =
3350 (((u64) cmd->cmnd[2]) << 8) |
3351 cmd->cmnd[3];
3352 first_block = (first_block * map->volume_blk_size)/512;
3353 cp->tweak_lower = (u32)first_block;
3354 cp->tweak_upper = (u32)(first_block >> 32);
3355 }
3356 break;
3357 case WRITE_10:
3358 case READ_10:
3359 if (map->volume_blk_size == 512) {
3360 cp->tweak_lower =
3361 (((u32) cmd->cmnd[2]) << 24) |
3362 (((u32) cmd->cmnd[3]) << 16) |
3363 (((u32) cmd->cmnd[4]) << 8) |
3364 cmd->cmnd[5];
3365 cp->tweak_upper = 0;
3366 } else {
3367 first_block =
3368 (((u64) cmd->cmnd[2]) << 24) |
3369 (((u64) cmd->cmnd[3]) << 16) |
3370 (((u64) cmd->cmnd[4]) << 8) |
3371 cmd->cmnd[5];
3372 first_block = (first_block * map->volume_blk_size)/512;
3373 cp->tweak_lower = (u32)first_block;
3374 cp->tweak_upper = (u32)(first_block >> 32);
3375 }
3376 break;
3377 /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
3378 case WRITE_12:
3379 case READ_12:
3380 if (map->volume_blk_size == 512) {
3381 cp->tweak_lower =
3382 (((u32) cmd->cmnd[2]) << 24) |
3383 (((u32) cmd->cmnd[3]) << 16) |
3384 (((u32) cmd->cmnd[4]) << 8) |
3385 cmd->cmnd[5];
3386 cp->tweak_upper = 0;
3387 } else {
3388 first_block =
3389 (((u64) cmd->cmnd[2]) << 24) |
3390 (((u64) cmd->cmnd[3]) << 16) |
3391 (((u64) cmd->cmnd[4]) << 8) |
3392 cmd->cmnd[5];
3393 first_block = (first_block * map->volume_blk_size)/512;
3394 cp->tweak_lower = (u32)first_block;
3395 cp->tweak_upper = (u32)(first_block >> 32);
3396 }
3397 break;
3398 case WRITE_16:
3399 case READ_16:
3400 if (map->volume_blk_size == 512) {
3401 cp->tweak_lower =
3402 (((u32) cmd->cmnd[6]) << 24) |
3403 (((u32) cmd->cmnd[7]) << 16) |
3404 (((u32) cmd->cmnd[8]) << 8) |
3405 cmd->cmnd[9];
3406 cp->tweak_upper =
3407 (((u32) cmd->cmnd[2]) << 24) |
3408 (((u32) cmd->cmnd[3]) << 16) |
3409 (((u32) cmd->cmnd[4]) << 8) |
3410 cmd->cmnd[5];
3411 } else {
3412 first_block =
3413 (((u64) cmd->cmnd[2]) << 56) |
3414 (((u64) cmd->cmnd[3]) << 48) |
3415 (((u64) cmd->cmnd[4]) << 40) |
3416 (((u64) cmd->cmnd[5]) << 32) |
3417 (((u64) cmd->cmnd[6]) << 24) |
3418 (((u64) cmd->cmnd[7]) << 16) |
3419 (((u64) cmd->cmnd[8]) << 8) |
3420 cmd->cmnd[9];
3421 first_block = (first_block * map->volume_blk_size)/512;
3422 cp->tweak_lower = (u32)first_block;
3423 cp->tweak_upper = (u32)(first_block >> 32);
3424 }
3425 break;
3426 default:
3427 dev_err(&h->pdev->dev,
3428 "ERROR: %s: IOACCEL request CDB size not supported for encryption\n",
3429 __func__);
3430 BUG();
3431 break;
3432 }
3433}
3434
Scott Teelc3497752014-02-18 13:56:34 -06003435static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
3436 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
3437 u8 *scsi3addr)
3438{
3439 struct scsi_cmnd *cmd = c->scsi_cmd;
3440 struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
3441 struct ioaccel2_sg_element *curr_sg;
3442 int use_sg, i;
3443 struct scatterlist *sg;
3444 u64 addr64;
3445 u32 len;
3446 u32 total_len = 0;
3447
3448 if (scsi_sg_count(cmd) > h->ioaccel_maxsg)
3449 return IO_ACCEL_INELIGIBLE;
3450
3451 if (fixup_ioaccel_cdb(cdb, &cdb_len))
3452 return IO_ACCEL_INELIGIBLE;
3453 c->cmd_type = CMD_IOACCEL2;
3454 /* Adjust the DMA address to point to the accelerated command buffer */
3455 c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
3456 (c->cmdindex * sizeof(*cp));
3457 BUG_ON(c->busaddr & 0x0000007F);
3458
3459 memset(cp, 0, sizeof(*cp));
3460 cp->IU_type = IOACCEL2_IU_TYPE;
3461
3462 use_sg = scsi_dma_map(cmd);
3463 if (use_sg < 0)
3464 return use_sg;
3465
3466 if (use_sg) {
3467 BUG_ON(use_sg > IOACCEL2_MAXSGENTRIES);
3468 curr_sg = cp->sg;
3469 scsi_for_each_sg(cmd, sg, use_sg, i) {
3470 addr64 = (u64) sg_dma_address(sg);
3471 len = sg_dma_len(sg);
3472 total_len += len;
3473 curr_sg->address = cpu_to_le64(addr64);
3474 curr_sg->length = cpu_to_le32(len);
3475 curr_sg->reserved[0] = 0;
3476 curr_sg->reserved[1] = 0;
3477 curr_sg->reserved[2] = 0;
3478 curr_sg->chain_indicator = 0;
3479 curr_sg++;
3480 }
3481
3482 switch (cmd->sc_data_direction) {
3483 case DMA_TO_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003484 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3485 cp->direction |= IOACCEL2_DIR_DATA_OUT;
Scott Teelc3497752014-02-18 13:56:34 -06003486 break;
3487 case DMA_FROM_DEVICE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003488 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3489 cp->direction |= IOACCEL2_DIR_DATA_IN;
Scott Teelc3497752014-02-18 13:56:34 -06003490 break;
3491 case DMA_NONE:
Scott Teeldd0e19f2014-02-18 13:57:31 -06003492 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3493 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003494 break;
3495 default:
3496 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3497 cmd->sc_data_direction);
3498 BUG();
3499 break;
3500 }
3501 } else {
Scott Teeldd0e19f2014-02-18 13:57:31 -06003502 cp->direction &= ~IOACCEL2_DIRECTION_MASK;
3503 cp->direction |= IOACCEL2_DIR_NO_DATA;
Scott Teelc3497752014-02-18 13:56:34 -06003504 }
Scott Teeldd0e19f2014-02-18 13:57:31 -06003505
3506 /* Set encryption parameters, if necessary */
3507 set_encrypt_ioaccel2(h, c, cp);
3508
Scott Teelc3497752014-02-18 13:56:34 -06003509 cp->scsi_nexus = ioaccel_handle;
Scott Teeldd0e19f2014-02-18 13:57:31 -06003510 cp->Tag = (c->cmdindex << DIRECT_LOOKUP_SHIFT) |
Scott Teelc3497752014-02-18 13:56:34 -06003511 DIRECT_LOOKUP_BIT;
3512 memcpy(cp->cdb, cdb, sizeof(cp->cdb));
Scott Teelc3497752014-02-18 13:56:34 -06003513
3514 /* fill in sg elements */
3515 cp->sg_count = (u8) use_sg;
3516
3517 cp->data_len = cpu_to_le32(total_len);
3518 cp->err_ptr = cpu_to_le64(c->busaddr +
3519 offsetof(struct io_accel2_cmd, error_data));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003520 cp->err_len = cpu_to_le32(sizeof(cp->error_data));
Scott Teelc3497752014-02-18 13:56:34 -06003521
3522 enqueue_cmd_and_start_io(h, c);
3523 return 0;
3524}
3525
3526/*
3527 * Queue a command to the correct I/O accelerator path.
3528 */
3529static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
3530 struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
3531 u8 *scsi3addr)
3532{
3533 if (h->transMethod & CFGTBL_Trans_io_accel1)
3534 return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
3535 cdb, cdb_len, scsi3addr);
3536 else
3537 return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
3538 cdb, cdb_len, scsi3addr);
3539}
3540
Scott Teel6b80b182014-02-18 13:56:55 -06003541static void raid_map_helper(struct raid_map_data *map,
3542 int offload_to_mirror, u32 *map_index, u32 *current_group)
3543{
3544 if (offload_to_mirror == 0) {
3545 /* use physical disk in the first mirrored group. */
3546 *map_index %= map->data_disks_per_row;
3547 return;
3548 }
3549 do {
3550 /* determine mirror group that *map_index indicates */
3551 *current_group = *map_index / map->data_disks_per_row;
3552 if (offload_to_mirror == *current_group)
3553 continue;
3554 if (*current_group < (map->layout_map_count - 1)) {
3555 /* select map index from next group */
3556 *map_index += map->data_disks_per_row;
3557 (*current_group)++;
3558 } else {
3559 /* select map index from first group */
3560 *map_index %= map->data_disks_per_row;
3561 *current_group = 0;
3562 }
3563 } while (offload_to_mirror != *current_group);
3564}
3565
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003566/*
3567 * Attempt to perform offload RAID mapping for a logical volume I/O.
3568 */
3569static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
3570 struct CommandList *c)
3571{
3572 struct scsi_cmnd *cmd = c->scsi_cmd;
3573 struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
3574 struct raid_map_data *map = &dev->raid_map;
3575 struct raid_map_disk_data *dd = &map->data[0];
3576 int is_write = 0;
3577 u32 map_index;
3578 u64 first_block, last_block;
3579 u32 block_cnt;
3580 u32 blocks_per_row;
3581 u64 first_row, last_row;
3582 u32 first_row_offset, last_row_offset;
3583 u32 first_column, last_column;
Scott Teel6b80b182014-02-18 13:56:55 -06003584 u64 r0_first_row, r0_last_row;
3585 u32 r5or6_blocks_per_row;
3586 u64 r5or6_first_row, r5or6_last_row;
3587 u32 r5or6_first_row_offset, r5or6_last_row_offset;
3588 u32 r5or6_first_column, r5or6_last_column;
3589 u32 total_disks_per_row;
3590 u32 stripesize;
3591 u32 first_group, last_group, current_group;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003592 u32 map_row;
3593 u32 disk_handle;
3594 u64 disk_block;
3595 u32 disk_block_cnt;
3596 u8 cdb[16];
3597 u8 cdb_len;
3598#if BITS_PER_LONG == 32
3599 u64 tmpdiv;
3600#endif
Scott Teel6b80b182014-02-18 13:56:55 -06003601 int offload_to_mirror;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003602
3603 BUG_ON(!(dev->offload_config && dev->offload_enabled));
3604
3605 /* check for valid opcode, get LBA and block count */
3606 switch (cmd->cmnd[0]) {
3607 case WRITE_6:
3608 is_write = 1;
3609 case READ_6:
3610 first_block =
3611 (((u64) cmd->cmnd[2]) << 8) |
3612 cmd->cmnd[3];
3613 block_cnt = cmd->cmnd[4];
Stephen M. Cameron3fa89a02014-07-03 10:18:14 -05003614 if (block_cnt == 0)
3615 block_cnt = 256;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003616 break;
3617 case WRITE_10:
3618 is_write = 1;
3619 case READ_10:
3620 first_block =
3621 (((u64) cmd->cmnd[2]) << 24) |
3622 (((u64) cmd->cmnd[3]) << 16) |
3623 (((u64) cmd->cmnd[4]) << 8) |
3624 cmd->cmnd[5];
3625 block_cnt =
3626 (((u32) cmd->cmnd[7]) << 8) |
3627 cmd->cmnd[8];
3628 break;
3629 case WRITE_12:
3630 is_write = 1;
3631 case READ_12:
3632 first_block =
3633 (((u64) cmd->cmnd[2]) << 24) |
3634 (((u64) cmd->cmnd[3]) << 16) |
3635 (((u64) cmd->cmnd[4]) << 8) |
3636 cmd->cmnd[5];
3637 block_cnt =
3638 (((u32) cmd->cmnd[6]) << 24) |
3639 (((u32) cmd->cmnd[7]) << 16) |
3640 (((u32) cmd->cmnd[8]) << 8) |
3641 cmd->cmnd[9];
3642 break;
3643 case WRITE_16:
3644 is_write = 1;
3645 case READ_16:
3646 first_block =
3647 (((u64) cmd->cmnd[2]) << 56) |
3648 (((u64) cmd->cmnd[3]) << 48) |
3649 (((u64) cmd->cmnd[4]) << 40) |
3650 (((u64) cmd->cmnd[5]) << 32) |
3651 (((u64) cmd->cmnd[6]) << 24) |
3652 (((u64) cmd->cmnd[7]) << 16) |
3653 (((u64) cmd->cmnd[8]) << 8) |
3654 cmd->cmnd[9];
3655 block_cnt =
3656 (((u32) cmd->cmnd[10]) << 24) |
3657 (((u32) cmd->cmnd[11]) << 16) |
3658 (((u32) cmd->cmnd[12]) << 8) |
3659 cmd->cmnd[13];
3660 break;
3661 default:
3662 return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
3663 }
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003664 last_block = first_block + block_cnt - 1;
3665
3666 /* check for write to non-RAID-0 */
3667 if (is_write && dev->raid_level != 0)
3668 return IO_ACCEL_INELIGIBLE;
3669
3670 /* check for invalid block or wraparound */
3671 if (last_block >= map->volume_blk_cnt || last_block < first_block)
3672 return IO_ACCEL_INELIGIBLE;
3673
3674 /* calculate stripe information for the request */
3675 blocks_per_row = map->data_disks_per_row * map->strip_size;
3676#if BITS_PER_LONG == 32
3677 tmpdiv = first_block;
3678 (void) do_div(tmpdiv, blocks_per_row);
3679 first_row = tmpdiv;
3680 tmpdiv = last_block;
3681 (void) do_div(tmpdiv, blocks_per_row);
3682 last_row = tmpdiv;
3683 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
3684 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
3685 tmpdiv = first_row_offset;
3686 (void) do_div(tmpdiv, map->strip_size);
3687 first_column = tmpdiv;
3688 tmpdiv = last_row_offset;
3689 (void) do_div(tmpdiv, map->strip_size);
3690 last_column = tmpdiv;
3691#else
3692 first_row = first_block / blocks_per_row;
3693 last_row = last_block / blocks_per_row;
3694 first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
3695 last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
3696 first_column = first_row_offset / map->strip_size;
3697 last_column = last_row_offset / map->strip_size;
3698#endif
3699
3700 /* if this isn't a single row/column then give to the controller */
3701 if ((first_row != last_row) || (first_column != last_column))
3702 return IO_ACCEL_INELIGIBLE;
3703
3704 /* proceeding with driver mapping */
Scott Teel6b80b182014-02-18 13:56:55 -06003705 total_disks_per_row = map->data_disks_per_row +
3706 map->metadata_disks_per_row;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003707 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
3708 map->row_cnt;
Scott Teel6b80b182014-02-18 13:56:55 -06003709 map_index = (map_row * total_disks_per_row) + first_column;
3710
3711 switch (dev->raid_level) {
3712 case HPSA_RAID_0:
3713 break; /* nothing special to do */
3714 case HPSA_RAID_1:
3715 /* Handles load balance across RAID 1 members.
3716 * (2-drive R1 and R10 with even # of drives.)
3717 * Appropriate for SSDs, not optimal for HDDs
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003718 */
Scott Teel6b80b182014-02-18 13:56:55 -06003719 BUG_ON(map->layout_map_count != 2);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003720 if (dev->offload_to_mirror)
3721 map_index += map->data_disks_per_row;
3722 dev->offload_to_mirror = !dev->offload_to_mirror;
Scott Teel6b80b182014-02-18 13:56:55 -06003723 break;
3724 case HPSA_RAID_ADM:
3725 /* Handles N-way mirrors (R1-ADM)
3726 * and R10 with # of drives divisible by 3.)
3727 */
3728 BUG_ON(map->layout_map_count != 3);
3729
3730 offload_to_mirror = dev->offload_to_mirror;
3731 raid_map_helper(map, offload_to_mirror,
3732 &map_index, &current_group);
3733 /* set mirror group to use next time */
3734 offload_to_mirror =
3735 (offload_to_mirror >= map->layout_map_count - 1)
3736 ? 0 : offload_to_mirror + 1;
Scott Teel6b80b182014-02-18 13:56:55 -06003737 dev->offload_to_mirror = offload_to_mirror;
3738 /* Avoid direct use of dev->offload_to_mirror within this
3739 * function since multiple threads might simultaneously
3740 * increment it beyond the range of dev->layout_map_count -1.
3741 */
3742 break;
3743 case HPSA_RAID_5:
3744 case HPSA_RAID_6:
3745 if (map->layout_map_count <= 1)
3746 break;
3747
3748 /* Verify first and last block are in same RAID group */
3749 r5or6_blocks_per_row =
3750 map->strip_size * map->data_disks_per_row;
3751 BUG_ON(r5or6_blocks_per_row == 0);
3752 stripesize = r5or6_blocks_per_row * map->layout_map_count;
3753#if BITS_PER_LONG == 32
3754 tmpdiv = first_block;
3755 first_group = do_div(tmpdiv, stripesize);
3756 tmpdiv = first_group;
3757 (void) do_div(tmpdiv, r5or6_blocks_per_row);
3758 first_group = tmpdiv;
3759 tmpdiv = last_block;
3760 last_group = do_div(tmpdiv, stripesize);
3761 tmpdiv = last_group;
3762 (void) do_div(tmpdiv, r5or6_blocks_per_row);
3763 last_group = tmpdiv;
3764#else
3765 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
3766 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
Scott Teel6b80b182014-02-18 13:56:55 -06003767#endif
Stephen M. Cameron000ff7c2014-03-13 17:12:50 -05003768 if (first_group != last_group)
Scott Teel6b80b182014-02-18 13:56:55 -06003769 return IO_ACCEL_INELIGIBLE;
3770
3771 /* Verify request is in a single row of RAID 5/6 */
3772#if BITS_PER_LONG == 32
3773 tmpdiv = first_block;
3774 (void) do_div(tmpdiv, stripesize);
3775 first_row = r5or6_first_row = r0_first_row = tmpdiv;
3776 tmpdiv = last_block;
3777 (void) do_div(tmpdiv, stripesize);
3778 r5or6_last_row = r0_last_row = tmpdiv;
3779#else
3780 first_row = r5or6_first_row = r0_first_row =
3781 first_block / stripesize;
3782 r5or6_last_row = r0_last_row = last_block / stripesize;
3783#endif
3784 if (r5or6_first_row != r5or6_last_row)
3785 return IO_ACCEL_INELIGIBLE;
3786
3787
3788 /* Verify request is in a single column */
3789#if BITS_PER_LONG == 32
3790 tmpdiv = first_block;
3791 first_row_offset = do_div(tmpdiv, stripesize);
3792 tmpdiv = first_row_offset;
3793 first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
3794 r5or6_first_row_offset = first_row_offset;
3795 tmpdiv = last_block;
3796 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
3797 tmpdiv = r5or6_last_row_offset;
3798 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
3799 tmpdiv = r5or6_first_row_offset;
3800 (void) do_div(tmpdiv, map->strip_size);
3801 first_column = r5or6_first_column = tmpdiv;
3802 tmpdiv = r5or6_last_row_offset;
3803 (void) do_div(tmpdiv, map->strip_size);
3804 r5or6_last_column = tmpdiv;
3805#else
3806 first_row_offset = r5or6_first_row_offset =
3807 (u32)((first_block % stripesize) %
3808 r5or6_blocks_per_row);
3809
3810 r5or6_last_row_offset =
3811 (u32)((last_block % stripesize) %
3812 r5or6_blocks_per_row);
3813
3814 first_column = r5or6_first_column =
3815 r5or6_first_row_offset / map->strip_size;
3816 r5or6_last_column =
3817 r5or6_last_row_offset / map->strip_size;
3818#endif
3819 if (r5or6_first_column != r5or6_last_column)
3820 return IO_ACCEL_INELIGIBLE;
3821
3822 /* Request is eligible */
3823 map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
3824 map->row_cnt;
3825
3826 map_index = (first_group *
3827 (map->row_cnt * total_disks_per_row)) +
3828 (map_row * total_disks_per_row) + first_column;
3829 break;
3830 default:
3831 return IO_ACCEL_INELIGIBLE;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003832 }
Scott Teel6b80b182014-02-18 13:56:55 -06003833
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003834 disk_handle = dd[map_index].ioaccel_handle;
3835 disk_block = map->disk_starting_blk + (first_row * map->strip_size) +
3836 (first_row_offset - (first_column * map->strip_size));
3837 disk_block_cnt = block_cnt;
3838
3839 /* handle differing logical/physical block sizes */
3840 if (map->phys_blk_shift) {
3841 disk_block <<= map->phys_blk_shift;
3842 disk_block_cnt <<= map->phys_blk_shift;
3843 }
3844 BUG_ON(disk_block_cnt > 0xffff);
3845
3846 /* build the new CDB for the physical disk I/O */
3847 if (disk_block > 0xffffffff) {
3848 cdb[0] = is_write ? WRITE_16 : READ_16;
3849 cdb[1] = 0;
3850 cdb[2] = (u8) (disk_block >> 56);
3851 cdb[3] = (u8) (disk_block >> 48);
3852 cdb[4] = (u8) (disk_block >> 40);
3853 cdb[5] = (u8) (disk_block >> 32);
3854 cdb[6] = (u8) (disk_block >> 24);
3855 cdb[7] = (u8) (disk_block >> 16);
3856 cdb[8] = (u8) (disk_block >> 8);
3857 cdb[9] = (u8) (disk_block);
3858 cdb[10] = (u8) (disk_block_cnt >> 24);
3859 cdb[11] = (u8) (disk_block_cnt >> 16);
3860 cdb[12] = (u8) (disk_block_cnt >> 8);
3861 cdb[13] = (u8) (disk_block_cnt);
3862 cdb[14] = 0;
3863 cdb[15] = 0;
3864 cdb_len = 16;
3865 } else {
3866 cdb[0] = is_write ? WRITE_10 : READ_10;
3867 cdb[1] = 0;
3868 cdb[2] = (u8) (disk_block >> 24);
3869 cdb[3] = (u8) (disk_block >> 16);
3870 cdb[4] = (u8) (disk_block >> 8);
3871 cdb[5] = (u8) (disk_block);
3872 cdb[6] = 0;
3873 cdb[7] = (u8) (disk_block_cnt >> 8);
3874 cdb[8] = (u8) (disk_block_cnt);
3875 cdb[9] = 0;
3876 cdb_len = 10;
3877 }
3878 return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
3879 dev->scsi3addr);
3880}
3881
Nicholas Bellinger763aadb2014-11-14 17:27:19 -06003882/*
3883 * Running in struct Scsi_Host->host_lock less mode using LLD internal
3884 * struct ctlr_info *h->lock w/ spin_lock_irqsave() protection.
3885 */
3886static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003887{
3888 struct ctlr_info *h;
3889 struct hpsa_scsi_dev_t *dev;
3890 unsigned char scsi3addr[8];
3891 struct CommandList *c;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003892 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003893
3894 /* Get the ptr to our adapter structure out of cmd->host. */
3895 h = sdev_to_hba(cmd->device);
3896 dev = cmd->device->hostdata;
3897 if (!dev) {
3898 cmd->result = DID_NO_CONNECT << 16;
Nicholas Bellinger763aadb2014-11-14 17:27:19 -06003899 cmd->scsi_done(cmd);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003900 return 0;
3901 }
3902 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
3903
Stephen M. Cameron094963d2014-05-29 10:53:18 -05003904 if (unlikely(lockup_detected(h))) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05003905 cmd->result = DID_ERROR << 16;
Nicholas Bellinger763aadb2014-11-14 17:27:19 -06003906 cmd->scsi_done(cmd);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05003907 return 0;
3908 }
Matt Gatese16a33a2012-05-01 11:43:11 -05003909 c = cmd_alloc(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003910 if (c == NULL) { /* trouble... */
3911 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
3912 return SCSI_MLQUEUE_HOST_BUSY;
3913 }
3914
3915 /* Fill in the command list header */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003916 /* save c in case we have to abort it */
3917 cmd->host_scribble = (unsigned char *) c;
3918
3919 c->cmd_type = CMD_SCSI;
3920 c->scsi_cmd = cmd;
Matt Gatese1f7de02014-02-18 13:55:17 -06003921
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003922 /* Call alternate submit routine for I/O accelerated commands.
3923 * Retries always go down the normal I/O path.
3924 */
3925 if (likely(cmd->retries == 0 &&
Scott Teelda0697b2014-02-18 13:57:00 -06003926 cmd->request->cmd_type == REQ_TYPE_FS &&
3927 h->acciopath_status)) {
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06003928 if (dev->offload_enabled) {
3929 rc = hpsa_scsi_ioaccel_raid_map(h, c);
3930 if (rc == 0)
3931 return 0; /* Sent on ioaccel path */
3932 if (rc < 0) { /* scsi_dma_map failed. */
3933 cmd_free(h, c);
3934 return SCSI_MLQUEUE_HOST_BUSY;
3935 }
3936 } else if (dev->ioaccel_handle) {
3937 rc = hpsa_scsi_ioaccel_direct_map(h, c);
3938 if (rc == 0)
3939 return 0; /* Sent on direct map path */
3940 if (rc < 0) { /* scsi_dma_map failed. */
3941 cmd_free(h, c);
3942 return SCSI_MLQUEUE_HOST_BUSY;
3943 }
3944 }
3945 }
Matt Gatese1f7de02014-02-18 13:55:17 -06003946
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003947 c->Header.ReplyQueue = 0; /* unused in simple mode */
3948 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06003949 c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT) |
3950 DIRECT_LOOKUP_BIT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003951
3952 /* Fill in the request block... */
3953
3954 c->Request.Timeout = 0;
3955 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
3956 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
3957 c->Request.CDBLen = cmd->cmd_len;
3958 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003959 switch (cmd->sc_data_direction) {
3960 case DMA_TO_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06003961 c->Request.type_attr_dir =
3962 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003963 break;
3964 case DMA_FROM_DEVICE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06003965 c->Request.type_attr_dir =
3966 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003967 break;
3968 case DMA_NONE:
Stephen M. Camerona505b862014-11-14 17:27:04 -06003969 c->Request.type_attr_dir =
3970 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003971 break;
3972 case DMA_BIDIRECTIONAL:
3973 /* This can happen if a buggy application does a scsi passthru
3974 * and sets both inlen and outlen to non-zero. ( see
3975 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
3976 */
3977
Stephen M. Camerona505b862014-11-14 17:27:04 -06003978 c->Request.type_attr_dir =
3979 TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003980 /* This is technically wrong, and hpsa controllers should
3981 * reject it with CMD_INVALID, which is the most correct
3982 * response, but non-fibre backends appear to let it
3983 * slide by, and give the same results as if this field
3984 * were set correctly. Either way is acceptable for
3985 * our purposes here.
3986 */
3987
3988 break;
3989
3990 default:
3991 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
3992 cmd->sc_data_direction);
3993 BUG();
3994 break;
3995 }
3996
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06003997 if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003998 cmd_free(h, c);
3999 return SCSI_MLQUEUE_HOST_BUSY;
4000 }
4001 enqueue_cmd_and_start_io(h, c);
4002 /* the cmd'll come back via intr handler in complete_scsi_command() */
4003 return 0;
4004}
4005
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004006static int do_not_scan_if_controller_locked_up(struct ctlr_info *h)
4007{
4008 unsigned long flags;
4009
4010 /*
4011 * Don't let rescans be initiated on a controller known
4012 * to be locked up. If the controller locks up *during*
4013 * a rescan, that thread is probably hosed, but at least
4014 * we can prevent new rescan threads from piling up on a
4015 * locked up controller.
4016 */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05004017 if (unlikely(lockup_detected(h))) {
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004018 spin_lock_irqsave(&h->scan_lock, flags);
4019 h->scan_finished = 1;
4020 wake_up_all(&h->scan_wait_queue);
4021 spin_unlock_irqrestore(&h->scan_lock, flags);
4022 return 1;
4023 }
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004024 return 0;
4025}
4026
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004027static void hpsa_scan_start(struct Scsi_Host *sh)
4028{
4029 struct ctlr_info *h = shost_to_hba(sh);
4030 unsigned long flags;
4031
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004032 if (do_not_scan_if_controller_locked_up(h))
4033 return;
4034
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004035 /* wait until any scan already in progress is finished. */
4036 while (1) {
4037 spin_lock_irqsave(&h->scan_lock, flags);
4038 if (h->scan_finished)
4039 break;
4040 spin_unlock_irqrestore(&h->scan_lock, flags);
4041 wait_event(h->scan_wait_queue, h->scan_finished);
4042 /* Note: We don't need to worry about a race between this
4043 * thread and driver unload because the midlayer will
4044 * have incremented the reference count, so unload won't
4045 * happen if we're in here.
4046 */
4047 }
4048 h->scan_finished = 0; /* mark scan as in progress */
4049 spin_unlock_irqrestore(&h->scan_lock, flags);
4050
Stephen M. Cameron5f389362014-02-18 13:55:48 -06004051 if (do_not_scan_if_controller_locked_up(h))
4052 return;
4053
Stephen M. Camerona08a8472010-02-04 08:43:16 -06004054 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4055
4056 spin_lock_irqsave(&h->scan_lock, flags);
4057 h->scan_finished = 1; /* mark scan as finished. */
4058 wake_up_all(&h->scan_wait_queue);
4059 spin_unlock_irqrestore(&h->scan_lock, flags);
4060}
4061
4062static int hpsa_scan_finished(struct Scsi_Host *sh,
4063 unsigned long elapsed_time)
4064{
4065 struct ctlr_info *h = shost_to_hba(sh);
4066 unsigned long flags;
4067 int finished;
4068
4069 spin_lock_irqsave(&h->scan_lock, flags);
4070 finished = h->scan_finished;
4071 spin_unlock_irqrestore(&h->scan_lock, flags);
4072 return finished;
4073}
4074
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004075static void hpsa_unregister_scsi(struct ctlr_info *h)
4076{
4077 /* we are being forcibly unloaded, and may not refuse. */
4078 scsi_remove_host(h->scsi_host);
4079 scsi_host_put(h->scsi_host);
4080 h->scsi_host = NULL;
4081}
4082
4083static int hpsa_register_scsi(struct ctlr_info *h)
4084{
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004085 struct Scsi_Host *sh;
4086 int error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004087
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004088 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
4089 if (sh == NULL)
4090 goto fail;
4091
4092 sh->io_port = 0;
4093 sh->n_io_port = 0;
4094 sh->this_id = -1;
4095 sh->max_channel = 3;
4096 sh->max_cmd_len = MAX_COMMAND_SIZE;
4097 sh->max_lun = HPSA_MAX_LUN;
4098 sh->max_id = HPSA_MAX_LUN;
4099 sh->can_queue = h->nr_cmds;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06004100 if (h->hba_mode_enabled)
4101 sh->cmd_per_lun = 7;
4102 else
4103 sh->cmd_per_lun = h->nr_cmds;
Stephen M. Cameronb7056902012-01-19 14:00:53 -06004104 sh->sg_tablesize = h->maxsgentries;
4105 h->scsi_host = sh;
4106 sh->hostdata[0] = (unsigned long) h;
4107 sh->irq = h->intr[h->intr_mode];
4108 sh->unique_id = sh->irq;
4109 error = scsi_add_host(sh, &h->pdev->dev);
4110 if (error)
4111 goto fail_host_put;
4112 scsi_scan_host(sh);
4113 return 0;
4114
4115 fail_host_put:
4116 dev_err(&h->pdev->dev, "%s: scsi_add_host"
4117 " failed for controller %d\n", __func__, h->ctlr);
4118 scsi_host_put(sh);
4119 return error;
4120 fail:
4121 dev_err(&h->pdev->dev, "%s: scsi_host_alloc"
4122 " failed for controller %d\n", __func__, h->ctlr);
4123 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004124}
4125
4126static int wait_for_device_to_become_ready(struct ctlr_info *h,
4127 unsigned char lunaddr[])
4128{
Tomas Henzl89193582014-02-21 16:25:05 -06004129 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004130 int count = 0;
4131 int waittime = 1; /* seconds */
4132 struct CommandList *c;
4133
4134 c = cmd_special_alloc(h);
4135 if (!c) {
4136 dev_warn(&h->pdev->dev, "out of memory in "
4137 "wait_for_device_to_become_ready.\n");
4138 return IO_ERROR;
4139 }
4140
4141 /* Send test unit ready until device ready, or give up. */
4142 while (count < HPSA_TUR_RETRY_LIMIT) {
4143
4144 /* Wait for a bit. do this first, because if we send
4145 * the TUR right away, the reset will just abort it.
4146 */
4147 msleep(1000 * waittime);
4148 count++;
Tomas Henzl89193582014-02-21 16:25:05 -06004149 rc = 0; /* Device ready. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004150
4151 /* Increase wait time with each try, up to a point. */
4152 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
4153 waittime = waittime * 2;
4154
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004155 /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
4156 (void) fill_cmd(c, TEST_UNIT_READY, h,
4157 NULL, 0, 0, lunaddr, TYPE_CMD);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004158 hpsa_scsi_do_simple_cmd_core(h, c);
4159 /* no unmap needed here because no data xfer. */
4160
4161 if (c->err_info->CommandStatus == CMD_SUCCESS)
4162 break;
4163
4164 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
4165 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
4166 (c->err_info->SenseInfo[2] == NO_SENSE ||
4167 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
4168 break;
4169
4170 dev_warn(&h->pdev->dev, "waiting %d secs "
4171 "for device to become ready.\n", waittime);
4172 rc = 1; /* device not ready. */
4173 }
4174
4175 if (rc)
4176 dev_warn(&h->pdev->dev, "giving up on device.\n");
4177 else
4178 dev_warn(&h->pdev->dev, "device is ready.\n");
4179
4180 cmd_special_free(h, c);
4181 return rc;
4182}
4183
4184/* Need at least one of these error handlers to keep ../scsi/hosts.c from
4185 * complaining. Doing a host- or bus-reset can't do anything good here.
4186 */
4187static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
4188{
4189 int rc;
4190 struct ctlr_info *h;
4191 struct hpsa_scsi_dev_t *dev;
4192
4193 /* find the controller to which the command to be aborted was sent */
4194 h = sdev_to_hba(scsicmd->device);
4195 if (h == NULL) /* paranoia */
4196 return FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004197 dev = scsicmd->device->hostdata;
4198 if (!dev) {
4199 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
4200 "device lookup failed.\n");
4201 return FAILED;
4202 }
Stephen M. Camerond416b0c2010-02-04 08:43:21 -06004203 dev_warn(&h->pdev->dev, "resetting device %d:%d:%d:%d\n",
4204 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004205 /* send a reset to the SCSI LUN which the command was sent to */
Scott Teelbf711ac2014-02-18 13:56:39 -06004206 rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004207 if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0)
4208 return SUCCESS;
4209
4210 dev_warn(&h->pdev->dev, "resetting device failed.\n");
4211 return FAILED;
4212}
4213
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004214static void swizzle_abort_tag(u8 *tag)
4215{
4216 u8 original_tag[8];
4217
4218 memcpy(original_tag, tag, 8);
4219 tag[0] = original_tag[3];
4220 tag[1] = original_tag[2];
4221 tag[2] = original_tag[1];
4222 tag[3] = original_tag[0];
4223 tag[4] = original_tag[7];
4224 tag[5] = original_tag[6];
4225 tag[6] = original_tag[5];
4226 tag[7] = original_tag[4];
4227}
4228
Scott Teel17eb87d2014-02-18 13:55:28 -06004229static void hpsa_get_tag(struct ctlr_info *h,
4230 struct CommandList *c, u32 *taglower, u32 *tagupper)
4231{
4232 if (c->cmd_type == CMD_IOACCEL1) {
4233 struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
4234 &h->ioaccel_cmd_pool[c->cmdindex];
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004235 *tagupper = (u32) (cm1->tag >> 32);
4236 *taglower = (u32) (cm1->tag & 0x0ffffffffULL);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004237 return;
Scott Teel17eb87d2014-02-18 13:55:28 -06004238 }
Scott Teel54b6e9e2014-02-18 13:56:45 -06004239 if (c->cmd_type == CMD_IOACCEL2) {
4240 struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
4241 &h->ioaccel2_cmd_pool[c->cmdindex];
Scott Teeldd0e19f2014-02-18 13:57:31 -06004242 /* upper tag not used in ioaccel2 mode */
4243 memset(tagupper, 0, sizeof(*tagupper));
4244 *taglower = cm2->Tag;
Scott Teel54b6e9e2014-02-18 13:56:45 -06004245 return;
4246 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004247 *tagupper = (u32) (c->Header.tag >> 32);
4248 *taglower = (u32) (c->Header.tag & 0x0ffffffffULL);
Scott Teel17eb87d2014-02-18 13:55:28 -06004249}
4250
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004251static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004252 struct CommandList *abort, int swizzle)
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004253{
4254 int rc = IO_OK;
4255 struct CommandList *c;
4256 struct ErrorInfo *ei;
Scott Teel17eb87d2014-02-18 13:55:28 -06004257 u32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004258
4259 c = cmd_special_alloc(h);
4260 if (c == NULL) { /* trouble... */
4261 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
4262 return -ENOMEM;
4263 }
4264
Stephen M. Camerona2dac132013-02-20 11:24:41 -06004265 /* fill_cmd can't fail here, no buffer to map */
4266 (void) fill_cmd(c, HPSA_ABORT_MSG, h, abort,
4267 0, 0, scsi3addr, TYPE_MSG);
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004268 if (swizzle)
4269 swizzle_abort_tag(&c->Request.CDB[4]);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004270 hpsa_scsi_do_simple_cmd_core(h, c);
Scott Teel17eb87d2014-02-18 13:55:28 -06004271 hpsa_get_tag(h, abort, &taglower, &tagupper);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004272 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd_core completed.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004273 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004274 /* no unmap needed here because no data xfer. */
4275
4276 ei = c->err_info;
4277 switch (ei->CommandStatus) {
4278 case CMD_SUCCESS:
4279 break;
4280 case CMD_UNABORTABLE: /* Very common, don't make noise. */
4281 rc = -1;
4282 break;
4283 default:
4284 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
Scott Teel17eb87d2014-02-18 13:55:28 -06004285 __func__, tagupper, taglower);
Stephen M. Camerond1e8bea2014-02-18 13:57:47 -06004286 hpsa_scsi_interpret_error(h, c);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004287 rc = -1;
4288 break;
4289 }
4290 cmd_special_free(h, c);
Scott Teeldd0e19f2014-02-18 13:57:31 -06004291 dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
4292 __func__, tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004293 return rc;
4294}
4295
4296/*
4297 * hpsa_find_cmd_in_queue
4298 *
4299 * Used to determine whether a command (find) is still present
4300 * in queue_head. Optionally excludes the last element of queue_head.
4301 *
4302 * This is used to avoid unnecessary aborts. Commands in h->reqQ have
4303 * not yet been submitted, and so can be aborted by the driver without
4304 * sending an abort to the hardware.
4305 *
4306 * Returns pointer to command if found in queue, NULL otherwise.
4307 */
4308static struct CommandList *hpsa_find_cmd_in_queue(struct ctlr_info *h,
4309 struct scsi_cmnd *find, struct list_head *queue_head)
4310{
4311 unsigned long flags;
4312 struct CommandList *c = NULL; /* ptr into cmpQ */
4313
4314 if (!find)
Don Brace42a91642014-11-14 17:26:27 -06004315 return NULL;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004316 spin_lock_irqsave(&h->lock, flags);
4317 list_for_each_entry(c, queue_head, list) {
4318 if (c->scsi_cmd == NULL) /* e.g.: passthru ioctl */
4319 continue;
4320 if (c->scsi_cmd == find) {
4321 spin_unlock_irqrestore(&h->lock, flags);
4322 return c;
4323 }
4324 }
4325 spin_unlock_irqrestore(&h->lock, flags);
4326 return NULL;
4327}
4328
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004329static struct CommandList *hpsa_find_cmd_in_queue_by_tag(struct ctlr_info *h,
4330 u8 *tag, struct list_head *queue_head)
4331{
4332 unsigned long flags;
4333 struct CommandList *c;
4334
4335 spin_lock_irqsave(&h->lock, flags);
4336 list_for_each_entry(c, queue_head, list) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004337 if (memcmp(&c->Header.tag, tag, 8) != 0)
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004338 continue;
4339 spin_unlock_irqrestore(&h->lock, flags);
4340 return c;
4341 }
4342 spin_unlock_irqrestore(&h->lock, flags);
4343 return NULL;
4344}
4345
Scott Teel54b6e9e2014-02-18 13:56:45 -06004346/* ioaccel2 path firmware cannot handle abort task requests.
4347 * Change abort requests to physical target reset, and send to the
4348 * address of the physical disk used for the ioaccel 2 command.
4349 * Return 0 on success (IO_OK)
4350 * -1 on failure
4351 */
4352
4353static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
4354 unsigned char *scsi3addr, struct CommandList *abort)
4355{
4356 int rc = IO_OK;
4357 struct scsi_cmnd *scmd; /* scsi command within request being aborted */
4358 struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
4359 unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
4360 unsigned char *psa = &phys_scsi3addr[0];
4361
4362 /* Get a pointer to the hpsa logical device. */
4363 scmd = (struct scsi_cmnd *) abort->scsi_cmd;
4364 dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
4365 if (dev == NULL) {
4366 dev_warn(&h->pdev->dev,
4367 "Cannot abort: no device pointer for command.\n");
4368 return -1; /* not abortable */
4369 }
4370
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004371 if (h->raid_offload_debug > 0)
4372 dev_info(&h->pdev->dev,
4373 "Reset as abort: Abort requested on C%d:B%d:T%d:L%d scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4374 h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
4375 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
4376 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
4377
Scott Teel54b6e9e2014-02-18 13:56:45 -06004378 if (!dev->offload_enabled) {
4379 dev_warn(&h->pdev->dev,
4380 "Can't abort: device is not operating in HP SSD Smart Path mode.\n");
4381 return -1; /* not abortable */
4382 }
4383
4384 /* Incoming scsi3addr is logical addr. We need physical disk addr. */
4385 if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
4386 dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
4387 return -1; /* not abortable */
4388 }
4389
4390 /* send the reset */
Stephen M. Cameron2ba8bfc2014-02-18 13:57:52 -06004391 if (h->raid_offload_debug > 0)
4392 dev_info(&h->pdev->dev,
4393 "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4394 psa[0], psa[1], psa[2], psa[3],
4395 psa[4], psa[5], psa[6], psa[7]);
Scott Teel54b6e9e2014-02-18 13:56:45 -06004396 rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET);
4397 if (rc != 0) {
4398 dev_warn(&h->pdev->dev,
4399 "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4400 psa[0], psa[1], psa[2], psa[3],
4401 psa[4], psa[5], psa[6], psa[7]);
4402 return rc; /* failed to reset */
4403 }
4404
4405 /* wait for device to recover */
4406 if (wait_for_device_to_become_ready(h, psa) != 0) {
4407 dev_warn(&h->pdev->dev,
4408 "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4409 psa[0], psa[1], psa[2], psa[3],
4410 psa[4], psa[5], psa[6], psa[7]);
4411 return -1; /* failed to recover */
4412 }
4413
4414 /* device recovered */
4415 dev_info(&h->pdev->dev,
4416 "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
4417 psa[0], psa[1], psa[2], psa[3],
4418 psa[4], psa[5], psa[6], psa[7]);
4419
4420 return rc; /* success */
4421}
4422
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004423/* Some Smart Arrays need the abort tag swizzled, and some don't. It's hard to
4424 * tell which kind we're dealing with, so we send the abort both ways. There
4425 * shouldn't be any collisions between swizzled and unswizzled tags due to the
4426 * way we construct our tags but we check anyway in case the assumptions which
4427 * make this true someday become false.
4428 */
4429static int hpsa_send_abort_both_ways(struct ctlr_info *h,
4430 unsigned char *scsi3addr, struct CommandList *abort)
4431{
4432 u8 swizzled_tag[8];
4433 struct CommandList *c;
4434 int rc = 0, rc2 = 0;
4435
Scott Teel54b6e9e2014-02-18 13:56:45 -06004436 /* ioccelerator mode 2 commands should be aborted via the
4437 * accelerated path, since RAID path is unaware of these commands,
4438 * but underlying firmware can't handle abort TMF.
4439 * Change abort to physical device reset.
4440 */
4441 if (abort->cmd_type == CMD_IOACCEL2)
4442 return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr, abort);
4443
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004444 /* we do not expect to find the swizzled tag in our queue, but
4445 * check anyway just to be sure the assumptions which make this
4446 * the case haven't become wrong.
4447 */
4448 memcpy(swizzled_tag, &abort->Request.CDB[4], 8);
4449 swizzle_abort_tag(swizzled_tag);
4450 c = hpsa_find_cmd_in_queue_by_tag(h, swizzled_tag, &h->cmpQ);
4451 if (c != NULL) {
4452 dev_warn(&h->pdev->dev, "Unexpectedly found byte-swapped tag in completion queue.\n");
4453 return hpsa_send_abort(h, scsi3addr, abort, 0);
4454 }
4455 rc = hpsa_send_abort(h, scsi3addr, abort, 0);
4456
4457 /* if the command is still in our queue, we can't conclude that it was
4458 * aborted (it might have just completed normally) but in any case
4459 * we don't need to try to abort it another way.
4460 */
4461 c = hpsa_find_cmd_in_queue(h, abort->scsi_cmd, &h->cmpQ);
4462 if (c)
4463 rc2 = hpsa_send_abort(h, scsi3addr, abort, 1);
4464 return rc && rc2;
4465}
4466
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004467/* Send an abort for the specified command.
4468 * If the device and controller support it,
4469 * send a task abort request.
4470 */
4471static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
4472{
4473
4474 int i, rc;
4475 struct ctlr_info *h;
4476 struct hpsa_scsi_dev_t *dev;
4477 struct CommandList *abort; /* pointer to command to be aborted */
4478 struct CommandList *found;
4479 struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */
4480 char msg[256]; /* For debug messaging. */
4481 int ml = 0;
Scott Teel17eb87d2014-02-18 13:55:28 -06004482 u32 tagupper, taglower;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004483
4484 /* Find the controller of the command to be aborted */
4485 h = sdev_to_hba(sc->device);
4486 if (WARN(h == NULL,
4487 "ABORT REQUEST FAILED, Controller lookup failed.\n"))
4488 return FAILED;
4489
4490 /* Check that controller supports some kind of task abort */
4491 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
4492 !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
4493 return FAILED;
4494
4495 memset(msg, 0, sizeof(msg));
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02004496 ml += sprintf(msg+ml, "ABORT REQUEST on C%d:B%d:T%d:L%llu ",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004497 h->scsi_host->host_no, sc->device->channel,
4498 sc->device->id, sc->device->lun);
4499
4500 /* Find the device of the command to be aborted */
4501 dev = sc->device->hostdata;
4502 if (!dev) {
4503 dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
4504 msg);
4505 return FAILED;
4506 }
4507
4508 /* Get SCSI command to be aborted */
4509 abort = (struct CommandList *) sc->host_scribble;
4510 if (abort == NULL) {
4511 dev_err(&h->pdev->dev, "%s FAILED, Command to abort is NULL.\n",
4512 msg);
4513 return FAILED;
4514 }
Scott Teel17eb87d2014-02-18 13:55:28 -06004515 hpsa_get_tag(h, abort, &taglower, &tagupper);
4516 ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004517 as = (struct scsi_cmnd *) abort->scsi_cmd;
4518 if (as != NULL)
4519 ml += sprintf(msg+ml, "Command:0x%x SN:0x%lx ",
4520 as->cmnd[0], as->serial_number);
4521 dev_dbg(&h->pdev->dev, "%s\n", msg);
4522 dev_warn(&h->pdev->dev, "Abort request on C%d:B%d:T%d:L%d\n",
4523 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
4524
4525 /* Search reqQ to See if command is queued but not submitted,
4526 * if so, complete the command with aborted status and remove
4527 * it from the reqQ.
4528 */
4529 found = hpsa_find_cmd_in_queue(h, sc, &h->reqQ);
4530 if (found) {
4531 found->err_info->CommandStatus = CMD_ABORTED;
4532 finish_cmd(found);
4533 dev_info(&h->pdev->dev, "%s Request SUCCEEDED (driver queue).\n",
4534 msg);
4535 return SUCCESS;
4536 }
4537
4538 /* not in reqQ, if also not in cmpQ, must have already completed */
4539 found = hpsa_find_cmd_in_queue(h, sc, &h->cmpQ);
4540 if (!found) {
Stephen M. Camerond6ebd0f2012-07-26 11:34:17 -05004541 dev_dbg(&h->pdev->dev, "%s Request SUCCEEDED (not known to driver).\n",
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004542 msg);
4543 return SUCCESS;
4544 }
4545
4546 /*
4547 * Command is in flight, or possibly already completed
4548 * by the firmware (but not to the scsi mid layer) but we can't
4549 * distinguish which. Send the abort down.
4550 */
Stephen M. Cameron6cba3f12012-05-01 11:42:56 -05004551 rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05004552 if (rc != 0) {
4553 dev_dbg(&h->pdev->dev, "%s Request FAILED.\n", msg);
4554 dev_warn(&h->pdev->dev, "FAILED abort on device C%d:B%d:T%d:L%d\n",
4555 h->scsi_host->host_no,
4556 dev->bus, dev->target, dev->lun);
4557 return FAILED;
4558 }
4559 dev_info(&h->pdev->dev, "%s REQUEST SUCCEEDED.\n", msg);
4560
4561 /* If the abort(s) above completed and actually aborted the
4562 * command, then the command to be aborted should already be
4563 * completed. If not, wait around a bit more to see if they
4564 * manage to complete normally.
4565 */
4566#define ABORT_COMPLETE_WAIT_SECS 30
4567 for (i = 0; i < ABORT_COMPLETE_WAIT_SECS * 10; i++) {
4568 found = hpsa_find_cmd_in_queue(h, sc, &h->cmpQ);
4569 if (!found)
4570 return SUCCESS;
4571 msleep(100);
4572 }
4573 dev_warn(&h->pdev->dev, "%s FAILED. Aborted command has not completed after %d seconds.\n",
4574 msg, ABORT_COMPLETE_WAIT_SECS);
4575 return FAILED;
4576}
4577
4578
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004579/*
4580 * For operations that cannot sleep, a command block is allocated at init,
4581 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
4582 * which ones are free or in use. Lock must be held when calling this.
4583 * cmd_free() is the complement.
4584 */
4585static struct CommandList *cmd_alloc(struct ctlr_info *h)
4586{
4587 struct CommandList *c;
4588 int i;
4589 union u64bit temp64;
4590 dma_addr_t cmd_dma_handle, err_dma_handle;
Stephen M. Cameron4c413122014-11-14 17:27:29 -06004591 int loopcount;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004592
Stephen M. Cameron4c413122014-11-14 17:27:29 -06004593 /* There is some *extremely* small but non-zero chance that that
4594 * multiple threads could get in here, and one thread could
4595 * be scanning through the list of bits looking for a free
4596 * one, but the free ones are always behind him, and other
4597 * threads sneak in behind him and eat them before he can
4598 * get to them, so that while there is always a free one, a
4599 * very unlucky thread might be starved anyway, never able to
4600 * beat the other threads. In reality, this happens so
4601 * infrequently as to be indistinguishable from never.
4602 */
4603
4604 loopcount = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004605 do {
4606 i = find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds);
Stephen M. Cameron4c413122014-11-14 17:27:29 -06004607 if (i == h->nr_cmds)
4608 i = 0;
4609 loopcount++;
4610 } while (test_and_set_bit(i & (BITS_PER_LONG - 1),
4611 h->cmd_pool_bits + (i / BITS_PER_LONG)) != 0 &&
4612 loopcount < 10);
4613
4614 /* Thread got starved? We do not expect this to ever happen. */
4615 if (loopcount >= 10)
4616 return NULL;
Matt Gatese16a33a2012-05-01 11:43:11 -05004617
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004618 c = h->cmd_pool + i;
4619 memset(c, 0, sizeof(*c));
4620 cmd_dma_handle = h->cmd_pool_dhandle
4621 + i * sizeof(*c);
4622 c->err_info = h->errinfo_pool + i;
4623 memset(c->err_info, 0, sizeof(*c->err_info));
4624 err_dma_handle = h->errinfo_pool_dhandle
4625 + i * sizeof(*c->err_info);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004626
4627 c->cmdindex = i;
4628
Stephen M. Cameron9e0fc762011-02-15 15:32:48 -06004629 INIT_LIST_HEAD(&c->list);
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004630 c->busaddr = (u32) cmd_dma_handle;
4631 temp64.val = (u64) err_dma_handle;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004632 c->ErrDesc.Addr = cpu_to_le64(err_dma_handle);
4633 c->ErrDesc.Len = cpu_to_le32(sizeof(*c->err_info));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004634
4635 c->h = h;
4636 return c;
4637}
4638
4639/* For operations that can wait for kmalloc to possibly sleep,
4640 * this routine can be called. Lock need not be held to call
4641 * cmd_special_alloc. cmd_special_free() is the complement.
4642 */
4643static struct CommandList *cmd_special_alloc(struct ctlr_info *h)
4644{
4645 struct CommandList *c;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004646 dma_addr_t cmd_dma_handle, err_dma_handle;
4647
Joe Perches7c845eb2014-08-08 14:24:46 -07004648 c = pci_zalloc_consistent(h->pdev, sizeof(*c), &cmd_dma_handle);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004649 if (c == NULL)
4650 return NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004651
Matt Gatese1f7de02014-02-18 13:55:17 -06004652 c->cmd_type = CMD_SCSI;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004653 c->cmdindex = -1;
4654
Joe Perches7c845eb2014-08-08 14:24:46 -07004655 c->err_info = pci_zalloc_consistent(h->pdev, sizeof(*c->err_info),
4656 &err_dma_handle);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004657
4658 if (c->err_info == NULL) {
4659 pci_free_consistent(h->pdev,
4660 sizeof(*c), c, cmd_dma_handle);
4661 return NULL;
4662 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004663
Stephen M. Cameron9e0fc762011-02-15 15:32:48 -06004664 INIT_LIST_HEAD(&c->list);
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004665 c->busaddr = (u32) cmd_dma_handle;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004666 c->ErrDesc.Addr = cpu_to_le64(err_dma_handle);
4667 c->ErrDesc.Len = cpu_to_le32(sizeof(*c->err_info));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004668
4669 c->h = h;
4670 return c;
4671}
4672
4673static void cmd_free(struct ctlr_info *h, struct CommandList *c)
4674{
4675 int i;
4676
4677 i = c - h->cmd_pool;
4678 clear_bit(i & (BITS_PER_LONG - 1),
4679 h->cmd_pool_bits + (i / BITS_PER_LONG));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004680}
4681
4682static void cmd_special_free(struct ctlr_info *h, struct CommandList *c)
4683{
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004684 pci_free_consistent(h->pdev, sizeof(*c->err_info),
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004685 c->err_info,
4686 (dma_addr_t) le64_to_cpu(c->ErrDesc.Addr));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004687 pci_free_consistent(h->pdev, sizeof(*c),
Stephen M. Camerond896f3f2011-01-06 14:47:53 -06004688 c, (dma_addr_t) (c->busaddr & DIRECT_LOOKUP_MASK));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004689}
4690
4691#ifdef CONFIG_COMPAT
4692
Don Brace42a91642014-11-14 17:26:27 -06004693static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
4694 void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004695{
4696 IOCTL32_Command_struct __user *arg32 =
4697 (IOCTL32_Command_struct __user *) arg;
4698 IOCTL_Command_struct arg64;
4699 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
4700 int err;
4701 u32 cp;
4702
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06004703 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004704 err = 0;
4705 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
4706 sizeof(arg64.LUN_info));
4707 err |= copy_from_user(&arg64.Request, &arg32->Request,
4708 sizeof(arg64.Request));
4709 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
4710 sizeof(arg64.error_info));
4711 err |= get_user(arg64.buf_size, &arg32->buf_size);
4712 err |= get_user(cp, &arg32->buf);
4713 arg64.buf = compat_ptr(cp);
4714 err |= copy_to_user(p, &arg64, sizeof(arg64));
4715
4716 if (err)
4717 return -EFAULT;
4718
Don Brace42a91642014-11-14 17:26:27 -06004719 err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004720 if (err)
4721 return err;
4722 err |= copy_in_user(&arg32->error_info, &p->error_info,
4723 sizeof(arg32->error_info));
4724 if (err)
4725 return -EFAULT;
4726 return err;
4727}
4728
4729static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
Don Brace42a91642014-11-14 17:26:27 -06004730 int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004731{
4732 BIG_IOCTL32_Command_struct __user *arg32 =
4733 (BIG_IOCTL32_Command_struct __user *) arg;
4734 BIG_IOCTL_Command_struct arg64;
4735 BIG_IOCTL_Command_struct __user *p =
4736 compat_alloc_user_space(sizeof(arg64));
4737 int err;
4738 u32 cp;
4739
Vasiliy Kulikov938abd82011-01-07 10:55:53 -06004740 memset(&arg64, 0, sizeof(arg64));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004741 err = 0;
4742 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
4743 sizeof(arg64.LUN_info));
4744 err |= copy_from_user(&arg64.Request, &arg32->Request,
4745 sizeof(arg64.Request));
4746 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
4747 sizeof(arg64.error_info));
4748 err |= get_user(arg64.buf_size, &arg32->buf_size);
4749 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
4750 err |= get_user(cp, &arg32->buf);
4751 arg64.buf = compat_ptr(cp);
4752 err |= copy_to_user(p, &arg64, sizeof(arg64));
4753
4754 if (err)
4755 return -EFAULT;
4756
Don Brace42a91642014-11-14 17:26:27 -06004757 err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004758 if (err)
4759 return err;
4760 err |= copy_in_user(&arg32->error_info, &p->error_info,
4761 sizeof(arg32->error_info));
4762 if (err)
4763 return -EFAULT;
4764 return err;
4765}
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06004766
Don Brace42a91642014-11-14 17:26:27 -06004767static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameron71fe75a2010-02-04 08:43:51 -06004768{
4769 switch (cmd) {
4770 case CCISS_GETPCIINFO:
4771 case CCISS_GETINTINFO:
4772 case CCISS_SETINTINFO:
4773 case CCISS_GETNODENAME:
4774 case CCISS_SETNODENAME:
4775 case CCISS_GETHEARTBEAT:
4776 case CCISS_GETBUSTYPES:
4777 case CCISS_GETFIRMVER:
4778 case CCISS_GETDRIVVER:
4779 case CCISS_REVALIDVOLS:
4780 case CCISS_DEREGDISK:
4781 case CCISS_REGNEWDISK:
4782 case CCISS_REGNEWD:
4783 case CCISS_RESCANDISK:
4784 case CCISS_GETLUNINFO:
4785 return hpsa_ioctl(dev, cmd, arg);
4786
4787 case CCISS_PASSTHRU32:
4788 return hpsa_ioctl32_passthru(dev, cmd, arg);
4789 case CCISS_BIG_PASSTHRU32:
4790 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
4791
4792 default:
4793 return -ENOIOCTLCMD;
4794 }
4795}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004796#endif
4797
4798static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
4799{
4800 struct hpsa_pci_info pciinfo;
4801
4802 if (!argp)
4803 return -EINVAL;
4804 pciinfo.domain = pci_domain_nr(h->pdev->bus);
4805 pciinfo.bus = h->pdev->bus->number;
4806 pciinfo.dev_fn = h->pdev->devfn;
4807 pciinfo.board_id = h->board_id;
4808 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
4809 return -EFAULT;
4810 return 0;
4811}
4812
4813static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
4814{
4815 DriverVer_type DriverVer;
4816 unsigned char vmaj, vmin, vsubmin;
4817 int rc;
4818
4819 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
4820 &vmaj, &vmin, &vsubmin);
4821 if (rc != 3) {
4822 dev_info(&h->pdev->dev, "driver version string '%s' "
4823 "unrecognized.", HPSA_DRIVER_VERSION);
4824 vmaj = 0;
4825 vmin = 0;
4826 vsubmin = 0;
4827 }
4828 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
4829 if (!argp)
4830 return -EINVAL;
4831 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
4832 return -EFAULT;
4833 return 0;
4834}
4835
4836static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
4837{
4838 IOCTL_Command_struct iocommand;
4839 struct CommandList *c;
4840 char *buff = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004841 u64 temp64;
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004842 int rc = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004843
4844 if (!argp)
4845 return -EINVAL;
4846 if (!capable(CAP_SYS_RAWIO))
4847 return -EPERM;
4848 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
4849 return -EFAULT;
4850 if ((iocommand.buf_size < 1) &&
4851 (iocommand.Request.Type.Direction != XFER_NONE)) {
4852 return -EINVAL;
4853 }
4854 if (iocommand.buf_size > 0) {
4855 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
4856 if (buff == NULL)
4857 return -EFAULT;
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05004858 if (iocommand.Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004859 /* Copy the data into the buffer we created */
4860 if (copy_from_user(buff, iocommand.buf,
4861 iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004862 rc = -EFAULT;
4863 goto out_kfree;
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004864 }
4865 } else {
4866 memset(buff, 0, iocommand.buf_size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004867 }
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004868 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004869 c = cmd_special_alloc(h);
4870 if (c == NULL) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004871 rc = -ENOMEM;
4872 goto out_kfree;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004873 }
4874 /* Fill in the command type */
4875 c->cmd_type = CMD_IOCTL_PEND;
4876 /* Fill in Command Header */
4877 c->Header.ReplyQueue = 0; /* unused in simple mode */
4878 if (iocommand.buf_size > 0) { /* buffer to fill */
4879 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004880 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004881 } else { /* no buffers to fill */
4882 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004883 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004884 }
4885 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
4886 /* use the kernel address the cmd block for tag */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004887 c->Header.tag = c->busaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004888
4889 /* Fill in Request block */
4890 memcpy(&c->Request, &iocommand.Request,
4891 sizeof(c->Request));
4892
4893 /* Fill in the scatter gather information */
4894 if (iocommand.buf_size > 0) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004895 temp64 = pci_map_single(h->pdev, buff,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004896 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004897 if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
4898 c->SG[0].Addr = cpu_to_le64(0);
4899 c->SG[0].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06004900 rc = -ENOMEM;
4901 goto out;
4902 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004903 c->SG[0].Addr = cpu_to_le64(temp64);
4904 c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
4905 c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004906 }
Stephen M. Camerona0c12412011-10-26 16:22:04 -05004907 hpsa_scsi_do_simple_cmd_core_if_no_lockup(h, c);
Stephen M. Cameronc2dd32e2011-06-03 09:57:29 -05004908 if (iocommand.buf_size > 0)
4909 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004910 check_ioctl_unit_attention(h, c);
4911
4912 /* Copy the error information out */
4913 memcpy(&iocommand.error_info, c->err_info,
4914 sizeof(iocommand.error_info));
4915 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004916 rc = -EFAULT;
4917 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004918 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05004919 if ((iocommand.Request.Type.Direction & XFER_READ) &&
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06004920 iocommand.buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004921 /* Copy the data out of the buffer we created */
4922 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004923 rc = -EFAULT;
4924 goto out;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004925 }
4926 }
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004927out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004928 cmd_special_free(h, c);
Stephen M. Cameronc1f63c82013-02-20 11:24:52 -06004929out_kfree:
4930 kfree(buff);
4931 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004932}
4933
4934static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
4935{
4936 BIG_IOCTL_Command_struct *ioc;
4937 struct CommandList *c;
4938 unsigned char **buff = NULL;
4939 int *buff_size = NULL;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06004940 u64 temp64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004941 BYTE sg_used = 0;
4942 int status = 0;
4943 int i;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06004944 u32 left;
4945 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004946 BYTE __user *data_ptr;
4947
4948 if (!argp)
4949 return -EINVAL;
4950 if (!capable(CAP_SYS_RAWIO))
4951 return -EPERM;
4952 ioc = (BIG_IOCTL_Command_struct *)
4953 kmalloc(sizeof(*ioc), GFP_KERNEL);
4954 if (!ioc) {
4955 status = -ENOMEM;
4956 goto cleanup1;
4957 }
4958 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
4959 status = -EFAULT;
4960 goto cleanup1;
4961 }
4962 if ((ioc->buf_size < 1) &&
4963 (ioc->Request.Type.Direction != XFER_NONE)) {
4964 status = -EINVAL;
4965 goto cleanup1;
4966 }
4967 /* Check kmalloc limits using all SGs */
4968 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
4969 status = -EINVAL;
4970 goto cleanup1;
4971 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06004972 if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004973 status = -EINVAL;
4974 goto cleanup1;
4975 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06004976 buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004977 if (!buff) {
4978 status = -ENOMEM;
4979 goto cleanup1;
4980 }
Stephen M. Camerond66ae082012-01-19 14:00:48 -06004981 buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004982 if (!buff_size) {
4983 status = -ENOMEM;
4984 goto cleanup1;
4985 }
4986 left = ioc->buf_size;
4987 data_ptr = ioc->buf;
4988 while (left) {
4989 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
4990 buff_size[sg_used] = sz;
4991 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
4992 if (buff[sg_used] == NULL) {
4993 status = -ENOMEM;
4994 goto cleanup1;
4995 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05004996 if (ioc->Request.Type.Direction & XFER_WRITE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004997 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
Stephen M. Cameron0758f4f2014-07-03 10:18:03 -05004998 status = -EFAULT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08004999 goto cleanup1;
5000 }
5001 } else
5002 memset(buff[sg_used], 0, sz);
5003 left -= sz;
5004 data_ptr += sz;
5005 sg_used++;
5006 }
5007 c = cmd_special_alloc(h);
5008 if (c == NULL) {
5009 status = -ENOMEM;
5010 goto cleanup1;
5011 }
5012 c->cmd_type = CMD_IOCTL_PEND;
5013 c->Header.ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005014 c->Header.SGList = (u8) sg_used;
5015 c->Header.SGTotal = cpu_to_le16(sg_used);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005016 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005017 c->Header.tag = c->busaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005018 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
5019 if (ioc->buf_size > 0) {
5020 int i;
5021 for (i = 0; i < sg_used; i++) {
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005022 temp64 = pci_map_single(h->pdev, buff[i],
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005023 buff_size[i], PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005024 if (dma_mapping_error(&h->pdev->dev,
5025 (dma_addr_t) temp64)) {
5026 c->SG[i].Addr = cpu_to_le64(0);
5027 c->SG[i].Len = cpu_to_le32(0);
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005028 hpsa_pci_unmap(h->pdev, c, i,
5029 PCI_DMA_BIDIRECTIONAL);
5030 status = -ENOMEM;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005031 goto cleanup0;
Stephen M. Cameronbcc48ff2013-02-20 11:24:57 -06005032 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005033 c->SG[i].Addr = cpu_to_le64(temp64);
5034 c->SG[i].Len = cpu_to_le32(buff_size[i]);
5035 c->SG[i].Ext = cpu_to_le32(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005036 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005037 c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005038 }
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005039 hpsa_scsi_do_simple_cmd_core_if_no_lockup(h, c);
Stephen M. Cameronb03a7772011-01-06 14:47:48 -06005040 if (sg_used)
5041 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005042 check_ioctl_unit_attention(h, c);
5043 /* Copy the error information out */
5044 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
5045 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005046 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005047 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005048 }
Stephen M. Cameron9233fb12014-05-29 10:52:41 -05005049 if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005050 /* Copy the data out of the buffer we created */
5051 BYTE __user *ptr = ioc->buf;
5052 for (i = 0; i < sg_used; i++) {
5053 if (copy_to_user(ptr, buff[i], buff_size[i])) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005054 status = -EFAULT;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005055 goto cleanup0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005056 }
5057 ptr += buff_size[i];
5058 }
5059 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005060 status = 0;
Stephen M. Camerone2d4a1f2013-09-23 13:33:51 -05005061cleanup0:
5062 cmd_special_free(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005063cleanup1:
5064 if (buff) {
5065 for (i = 0; i < sg_used; i++)
5066 kfree(buff[i]);
5067 kfree(buff);
5068 }
5069 kfree(buff_size);
5070 kfree(ioc);
5071 return status;
5072}
5073
5074static void check_ioctl_unit_attention(struct ctlr_info *h,
5075 struct CommandList *c)
5076{
5077 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5078 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
5079 (void) check_for_unit_attention(h, c);
5080}
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005081
5082static int increment_passthru_count(struct ctlr_info *h)
5083{
5084 unsigned long flags;
5085
5086 spin_lock_irqsave(&h->passthru_count_lock, flags);
5087 if (h->passthru_count >= HPSA_MAX_CONCURRENT_PASSTHRUS) {
5088 spin_unlock_irqrestore(&h->passthru_count_lock, flags);
5089 return -1;
5090 }
5091 h->passthru_count++;
5092 spin_unlock_irqrestore(&h->passthru_count_lock, flags);
5093 return 0;
5094}
5095
5096static void decrement_passthru_count(struct ctlr_info *h)
5097{
5098 unsigned long flags;
5099
5100 spin_lock_irqsave(&h->passthru_count_lock, flags);
5101 if (h->passthru_count <= 0) {
5102 spin_unlock_irqrestore(&h->passthru_count_lock, flags);
5103 /* not expecting to get here. */
5104 dev_warn(&h->pdev->dev, "Bug detected, passthru_count seems to be incorrect.\n");
5105 return;
5106 }
5107 h->passthru_count--;
5108 spin_unlock_irqrestore(&h->passthru_count_lock, flags);
5109}
5110
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005111/*
5112 * ioctl
5113 */
Don Brace42a91642014-11-14 17:26:27 -06005114static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005115{
5116 struct ctlr_info *h;
5117 void __user *argp = (void __user *)arg;
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005118 int rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005119
5120 h = sdev_to_hba(dev);
5121
5122 switch (cmd) {
5123 case CCISS_DEREGDISK:
5124 case CCISS_REGNEWDISK:
5125 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06005126 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005127 return 0;
5128 case CCISS_GETPCIINFO:
5129 return hpsa_getpciinfo_ioctl(h, argp);
5130 case CCISS_GETDRIVVER:
5131 return hpsa_getdrivver_ioctl(h, argp);
5132 case CCISS_PASSTHRU:
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005133 if (increment_passthru_count(h))
5134 return -EAGAIN;
5135 rc = hpsa_passthru_ioctl(h, argp);
5136 decrement_passthru_count(h);
5137 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005138 case CCISS_BIG_PASSTHRU:
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05005139 if (increment_passthru_count(h))
5140 return -EAGAIN;
5141 rc = hpsa_big_passthru_ioctl(h, argp);
5142 decrement_passthru_count(h);
5143 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005144 default:
5145 return -ENOTTY;
5146 }
5147}
5148
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005149static int hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
5150 u8 reset_type)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005151{
5152 struct CommandList *c;
5153
5154 c = cmd_alloc(h);
5155 if (!c)
5156 return -ENOMEM;
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005157 /* fill_cmd can't fail here, no data buffer to map */
5158 (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005159 RAID_CTLR_LUNID, TYPE_MSG);
5160 c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
5161 c->waiting = NULL;
5162 enqueue_cmd_and_start_io(h, c);
5163 /* Don't wait for completion, the reset won't complete. Don't free
5164 * the command either. This is the last command we will send before
5165 * re-initializing everything, so it doesn't matter and won't leak.
5166 */
5167 return 0;
5168}
5169
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005170static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005171 void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005172 int cmd_type)
5173{
5174 int pci_dir = XFER_NONE;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005175 struct CommandList *a; /* for commands to be aborted */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005176 u32 tupper, tlower;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005177
5178 c->cmd_type = CMD_IOCTL_PEND;
5179 c->Header.ReplyQueue = 0;
5180 if (buff != NULL && size > 0) {
5181 c->Header.SGList = 1;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005182 c->Header.SGTotal = cpu_to_le16(1);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005183 } else {
5184 c->Header.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005185 c->Header.SGTotal = cpu_to_le16(0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005186 }
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005187 c->Header.tag = c->busaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005188 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
5189
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005190 if (cmd_type == TYPE_CMD) {
5191 switch (cmd) {
5192 case HPSA_INQUIRY:
5193 /* are we trying to read a vital product page */
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005194 if (page_code & VPD_PAGE) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005195 c->Request.CDB[1] = 0x01;
Stephen M. Cameronb7bb24e2014-02-18 13:57:11 -06005196 c->Request.CDB[2] = (page_code & 0xff);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005197 }
5198 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005199 c->Request.type_attr_dir =
5200 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005201 c->Request.Timeout = 0;
5202 c->Request.CDB[0] = HPSA_INQUIRY;
5203 c->Request.CDB[4] = size & 0xFF;
5204 break;
5205 case HPSA_REPORT_LOG:
5206 case HPSA_REPORT_PHYS:
5207 /* Talking to controller so It's a physical command
5208 mode = 00 target = 0. Nothing to write.
5209 */
5210 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005211 c->Request.type_attr_dir =
5212 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005213 c->Request.Timeout = 0;
5214 c->Request.CDB[0] = cmd;
5215 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5216 c->Request.CDB[7] = (size >> 16) & 0xFF;
5217 c->Request.CDB[8] = (size >> 8) & 0xFF;
5218 c->Request.CDB[9] = size & 0xFF;
5219 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005220 case HPSA_CACHE_FLUSH:
5221 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005222 c->Request.type_attr_dir =
5223 TYPE_ATTR_DIR(cmd_type,
5224 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005225 c->Request.Timeout = 0;
5226 c->Request.CDB[0] = BMIC_WRITE;
5227 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Stephen M. Cameronbb158ea2011-10-26 16:21:17 -05005228 c->Request.CDB[7] = (size >> 8) & 0xFF;
5229 c->Request.CDB[8] = size & 0xFF;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005230 break;
5231 case TEST_UNIT_READY:
5232 c->Request.CDBLen = 6;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005233 c->Request.type_attr_dir =
5234 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005235 c->Request.Timeout = 0;
5236 break;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005237 case HPSA_GET_RAID_MAP:
5238 c->Request.CDBLen = 12;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005239 c->Request.type_attr_dir =
5240 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06005241 c->Request.Timeout = 0;
5242 c->Request.CDB[0] = HPSA_CISS_READ;
5243 c->Request.CDB[1] = cmd;
5244 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
5245 c->Request.CDB[7] = (size >> 16) & 0xFF;
5246 c->Request.CDB[8] = (size >> 8) & 0xFF;
5247 c->Request.CDB[9] = size & 0xFF;
5248 break;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005249 case BMIC_SENSE_CONTROLLER_PARAMETERS:
5250 c->Request.CDBLen = 10;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005251 c->Request.type_attr_dir =
5252 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
Stephen M. Cameron316b2212014-02-21 16:25:15 -06005253 c->Request.Timeout = 0;
5254 c->Request.CDB[0] = BMIC_READ;
5255 c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
5256 c->Request.CDB[7] = (size >> 16) & 0xFF;
5257 c->Request.CDB[8] = (size >> 8) & 0xFF;
5258 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005259 default:
5260 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
5261 BUG();
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005262 return -1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005263 }
5264 } else if (cmd_type == TYPE_MSG) {
5265 switch (cmd) {
5266
5267 case HPSA_DEVICE_RESET_MSG:
5268 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005269 c->Request.type_attr_dir =
5270 TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005271 c->Request.Timeout = 0; /* Don't time out */
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005272 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
5273 c->Request.CDB[0] = cmd;
Stephen M. Cameron21e89af2012-07-26 11:34:10 -05005274 c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005275 /* If bytes 4-7 are zero, it means reset the */
5276 /* LunID device */
5277 c->Request.CDB[4] = 0x00;
5278 c->Request.CDB[5] = 0x00;
5279 c->Request.CDB[6] = 0x00;
5280 c->Request.CDB[7] = 0x00;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005281 break;
5282 case HPSA_ABORT_MSG:
5283 a = buff; /* point to command to be aborted */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005284 dev_dbg(&h->pdev->dev, "Abort Tag:0x%016llx using request Tag:0x%016llx",
5285 a->Header.tag, c->Header.tag);
5286 tlower = (u32) (a->Header.tag >> 32);
5287 tupper = (u32) (a->Header.tag & 0x0ffffffffULL);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005288 c->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005289 c->Request.type_attr_dir =
5290 TYPE_ATTR_DIR(cmd_type,
5291 ATTR_SIMPLE, XFER_WRITE);
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005292 c->Request.Timeout = 0; /* Don't time out */
5293 c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
5294 c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
5295 c->Request.CDB[2] = 0x00; /* reserved */
5296 c->Request.CDB[3] = 0x00; /* reserved */
5297 /* Tag to abort goes in CDB[4]-CDB[11] */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005298 c->Request.CDB[4] = tlower & 0xFF;
5299 c->Request.CDB[5] = (tlower >> 8) & 0xFF;
5300 c->Request.CDB[6] = (tlower >> 16) & 0xFF;
5301 c->Request.CDB[7] = (tlower >> 24) & 0xFF;
5302 c->Request.CDB[8] = tupper & 0xFF;
5303 c->Request.CDB[9] = (tupper >> 8) & 0xFF;
5304 c->Request.CDB[10] = (tupper >> 16) & 0xFF;
5305 c->Request.CDB[11] = (tupper >> 24) & 0xFF;
Stephen M. Cameron75167d22012-05-01 11:42:51 -05005306 c->Request.CDB[12] = 0x00; /* reserved */
5307 c->Request.CDB[13] = 0x00; /* reserved */
5308 c->Request.CDB[14] = 0x00; /* reserved */
5309 c->Request.CDB[15] = 0x00; /* reserved */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005310 break;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005311 default:
5312 dev_warn(&h->pdev->dev, "unknown message type %d\n",
5313 cmd);
5314 BUG();
5315 }
5316 } else {
5317 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
5318 BUG();
5319 }
5320
Stephen M. Camerona505b862014-11-14 17:27:04 -06005321 switch (GET_DIR(c->Request.type_attr_dir)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005322 case XFER_READ:
5323 pci_dir = PCI_DMA_FROMDEVICE;
5324 break;
5325 case XFER_WRITE:
5326 pci_dir = PCI_DMA_TODEVICE;
5327 break;
5328 case XFER_NONE:
5329 pci_dir = PCI_DMA_NONE;
5330 break;
5331 default:
5332 pci_dir = PCI_DMA_BIDIRECTIONAL;
5333 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06005334 if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
5335 return -1;
5336 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005337}
5338
5339/*
5340 * Map (physical) PCI mem into (virtual) kernel space
5341 */
5342static void __iomem *remap_pci_mem(ulong base, ulong size)
5343{
5344 ulong page_base = ((ulong) base) & PAGE_MASK;
5345 ulong page_offs = ((ulong) base) - page_base;
Stephen M. Cameron088ba342012-07-26 11:34:23 -05005346 void __iomem *page_remapped = ioremap_nocache(page_base,
5347 page_offs + size);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005348
5349 return page_remapped ? (page_remapped + page_offs) : NULL;
5350}
5351
5352/* Takes cmds off the submission queue and sends them to the hardware,
5353 * then puts them on the queue of cmds waiting for completion.
Stephen M. Cameron0b570752014-05-29 10:53:28 -05005354 * Assumes h->lock is held
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005355 */
Stephen M. Cameron0b570752014-05-29 10:53:28 -05005356static void start_io(struct ctlr_info *h, unsigned long *flags)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005357{
5358 struct CommandList *c;
5359
Stephen M. Cameron9e0fc762011-02-15 15:32:48 -06005360 while (!list_empty(&h->reqQ)) {
5361 c = list_entry(h->reqQ.next, struct CommandList, list);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005362 /* can't do anything if fifo is full */
5363 if ((h->access.fifo_full(h))) {
Stephen M. Cameron396883e2013-09-23 13:34:17 -05005364 h->fifo_recently_full = 1;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005365 dev_warn(&h->pdev->dev, "fifo full\n");
5366 break;
5367 }
Stephen M. Cameron396883e2013-09-23 13:34:17 -05005368 h->fifo_recently_full = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005369
5370 /* Get the first entry from the Request Q */
5371 removeQ(c);
5372 h->Qdepth--;
5373
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005374 /* Put job onto the completed Q */
5375 addQ(&h->cmpQ, c);
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -06005376 atomic_inc(&h->commands_outstanding);
Stephen M. Cameron0b570752014-05-29 10:53:28 -05005377 spin_unlock_irqrestore(&h->lock, *flags);
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -06005378 /* Tell the controller execute command */
Matt Gatese16a33a2012-05-01 11:43:11 -05005379 h->access.submit_command(h, c);
Stephen M. Cameron0b570752014-05-29 10:53:28 -05005380 spin_lock_irqsave(&h->lock, *flags);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005381 }
Stephen M. Cameron0b570752014-05-29 10:53:28 -05005382}
5383
5384static void lock_and_start_io(struct ctlr_info *h)
5385{
5386 unsigned long flags;
5387
5388 spin_lock_irqsave(&h->lock, flags);
5389 start_io(h, &flags);
Matt Gatese16a33a2012-05-01 11:43:11 -05005390 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005391}
5392
Matt Gates254f7962012-05-01 11:43:06 -05005393static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005394{
Matt Gates254f7962012-05-01 11:43:06 -05005395 return h->access.command_completed(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005396}
5397
Stephen M. Cameron900c5442010-02-04 08:42:35 -06005398static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005399{
5400 return h->access.intr_pending(h);
5401}
5402
5403static inline long interrupt_not_for_us(struct ctlr_info *h)
5404{
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005405 return (h->access.intr_pending(h) == 0) ||
5406 (h->interrupts_enabled == 0);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005407}
5408
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06005409static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
5410 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005411{
5412 if (unlikely(tag_index >= h->nr_cmds)) {
5413 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
5414 return 1;
5415 }
5416 return 0;
5417}
5418
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05005419static inline void finish_cmd(struct CommandList *c)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005420{
Matt Gatese16a33a2012-05-01 11:43:11 -05005421 unsigned long flags;
Stephen M. Cameron396883e2013-09-23 13:34:17 -05005422 int io_may_be_stalled = 0;
5423 struct ctlr_info *h = c->h;
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -06005424 int count;
Matt Gatese16a33a2012-05-01 11:43:11 -05005425
Stephen M. Cameron396883e2013-09-23 13:34:17 -05005426 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005427 removeQ(c);
Stephen M. Cameron396883e2013-09-23 13:34:17 -05005428
5429 /*
5430 * Check for possibly stalled i/o.
5431 *
5432 * If a fifo_full condition is encountered, requests will back up
5433 * in h->reqQ. This queue is only emptied out by start_io which is
5434 * only called when a new i/o request comes in. If no i/o's are
5435 * forthcoming, the i/o's in h->reqQ can get stuck. So we call
5436 * start_io from here if we detect such a danger.
5437 *
5438 * Normally, we shouldn't hit this case, but pounding on the
5439 * CCISS_PASSTHRU ioctl can provoke it. Only call start_io if
5440 * commands_outstanding is low. We want to avoid calling
5441 * start_io from in here as much as possible, and esp. don't
5442 * want to get in a cycle where we call start_io every time
5443 * through here.
5444 */
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -06005445 count = atomic_read(&h->commands_outstanding);
Stephen M. Cameron396883e2013-09-23 13:34:17 -05005446 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron0cbf7682014-11-14 17:27:09 -06005447 if (unlikely(h->fifo_recently_full) && count < 5)
5448 io_may_be_stalled = 1;
Stephen M. Cameron396883e2013-09-23 13:34:17 -05005449
Stephen M. Camerone85c5972012-05-01 11:43:42 -05005450 dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
Scott Teelc3497752014-02-18 13:56:34 -06005451 if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
5452 || c->cmd_type == CMD_IOACCEL2))
Stephen M. Cameron1fb011f2011-05-03 14:59:00 -05005453 complete_scsi_command(c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005454 else if (c->cmd_type == CMD_IOCTL_PEND)
5455 complete(c->waiting);
Stephen M. Cameron396883e2013-09-23 13:34:17 -05005456 if (unlikely(io_may_be_stalled))
Stephen M. Cameron0b570752014-05-29 10:53:28 -05005457 lock_and_start_io(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005458}
5459
Stephen M. Camerona104c992010-02-04 08:42:24 -06005460static inline u32 hpsa_tag_contains_index(u32 tag)
5461{
Stephen M. Camerona104c992010-02-04 08:42:24 -06005462 return tag & DIRECT_LOOKUP_BIT;
5463}
5464
5465static inline u32 hpsa_tag_to_index(u32 tag)
5466{
Stephen M. Camerona104c992010-02-04 08:42:24 -06005467 return tag >> DIRECT_LOOKUP_SHIFT;
5468}
5469
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005470
5471static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
Stephen M. Camerona104c992010-02-04 08:42:24 -06005472{
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005473#define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
5474#define HPSA_SIMPLE_ERROR_BITS 0x03
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06005475 if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005476 return tag & ~HPSA_SIMPLE_ERROR_BITS;
5477 return tag & ~HPSA_PERF_ERROR_BITS;
Stephen M. Camerona104c992010-02-04 08:42:24 -06005478}
5479
Don Brace303932f2010-02-04 08:42:40 -06005480/* process completion of an indexed ("direct lookup") command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005481static inline void process_indexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06005482 u32 raw_tag)
5483{
5484 u32 tag_index;
5485 struct CommandList *c;
5486
5487 tag_index = hpsa_tag_to_index(raw_tag);
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005488 if (!bad_tag(h, tag_index, raw_tag)) {
5489 c = h->cmd_pool + tag_index;
5490 finish_cmd(c);
5491 }
Don Brace303932f2010-02-04 08:42:40 -06005492}
5493
5494/* process completion of a non-indexed command */
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005495static inline void process_nonindexed_cmd(struct ctlr_info *h,
Don Brace303932f2010-02-04 08:42:40 -06005496 u32 raw_tag)
5497{
5498 u32 tag;
5499 struct CommandList *c = NULL;
Matt Gatese16a33a2012-05-01 11:43:11 -05005500 unsigned long flags;
Don Brace303932f2010-02-04 08:42:40 -06005501
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005502 tag = hpsa_tag_discard_error_bits(h, raw_tag);
Matt Gatese16a33a2012-05-01 11:43:11 -05005503 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron9e0fc762011-02-15 15:32:48 -06005504 list_for_each_entry(c, &h->cmpQ, list) {
Don Brace303932f2010-02-04 08:42:40 -06005505 if ((c->busaddr & 0xFFFFFFE0) == (tag & 0xFFFFFFE0)) {
Matt Gatese16a33a2012-05-01 11:43:11 -05005506 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05005507 finish_cmd(c);
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005508 return;
Don Brace303932f2010-02-04 08:42:40 -06005509 }
5510 }
Matt Gatese16a33a2012-05-01 11:43:11 -05005511 spin_unlock_irqrestore(&h->lock, flags);
Don Brace303932f2010-02-04 08:42:40 -06005512 bad_tag(h, h->nr_cmds + 1, raw_tag);
Don Brace303932f2010-02-04 08:42:40 -06005513}
5514
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005515/* Some controllers, like p400, will give us one interrupt
5516 * after a soft reset, even if we turned interrupts off.
5517 * Only need to check for this in the hpsa_xxx_discard_completions
5518 * functions.
5519 */
5520static int ignore_bogus_interrupt(struct ctlr_info *h)
5521{
5522 if (likely(!reset_devices))
5523 return 0;
5524
5525 if (likely(h->interrupts_enabled))
5526 return 0;
5527
5528 dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
5529 "(known firmware bug.) Ignoring.\n");
5530
5531 return 1;
5532}
5533
Matt Gates254f7962012-05-01 11:43:06 -05005534/*
5535 * Convert &h->q[x] (passed to interrupt handlers) back to h.
5536 * Relies on (h-q[x] == x) being true for x such that
5537 * 0 <= x < MAX_REPLY_QUEUES.
5538 */
5539static struct ctlr_info *queue_to_hba(u8 *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005540{
Matt Gates254f7962012-05-01 11:43:06 -05005541 return container_of((queue - *queue), struct ctlr_info, q[0]);
5542}
5543
5544static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
5545{
5546 struct ctlr_info *h = queue_to_hba(queue);
5547 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005548 u32 raw_tag;
5549
5550 if (ignore_bogus_interrupt(h))
5551 return IRQ_NONE;
5552
5553 if (interrupt_not_for_us(h))
5554 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005555 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005556 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005557 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005558 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005559 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005560 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005561 return IRQ_HANDLED;
5562}
5563
Matt Gates254f7962012-05-01 11:43:06 -05005564static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005565{
Matt Gates254f7962012-05-01 11:43:06 -05005566 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005567 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005568 u8 q = *(u8 *) queue;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005569
5570 if (ignore_bogus_interrupt(h))
5571 return IRQ_NONE;
5572
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005573 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005574 raw_tag = get_next_completion(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005575 while (raw_tag != FIFO_EMPTY)
Matt Gates254f7962012-05-01 11:43:06 -05005576 raw_tag = next_command(h, q);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005577 return IRQ_HANDLED;
5578}
5579
Matt Gates254f7962012-05-01 11:43:06 -05005580static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005581{
Matt Gates254f7962012-05-01 11:43:06 -05005582 struct ctlr_info *h = queue_to_hba((u8 *) queue);
Don Brace303932f2010-02-04 08:42:40 -06005583 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005584 u8 q = *(u8 *) queue;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005585
5586 if (interrupt_not_for_us(h))
5587 return IRQ_NONE;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005588 h->last_intr_timestamp = get_jiffies_64();
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005589 while (interrupt_pending(h)) {
Matt Gates254f7962012-05-01 11:43:06 -05005590 raw_tag = get_next_completion(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005591 while (raw_tag != FIFO_EMPTY) {
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005592 if (likely(hpsa_tag_contains_index(raw_tag)))
5593 process_indexed_cmd(h, raw_tag);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005594 else
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005595 process_nonindexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005596 raw_tag = next_command(h, q);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005597 }
5598 }
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005599 return IRQ_HANDLED;
5600}
5601
Matt Gates254f7962012-05-01 11:43:06 -05005602static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005603{
Matt Gates254f7962012-05-01 11:43:06 -05005604 struct ctlr_info *h = queue_to_hba(queue);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005605 u32 raw_tag;
Matt Gates254f7962012-05-01 11:43:06 -05005606 u8 q = *(u8 *) queue;
Stephen M. Cameron10f66012010-06-16 13:51:50 -05005607
Stephen M. Camerona0c12412011-10-26 16:22:04 -05005608 h->last_intr_timestamp = get_jiffies_64();
Matt Gates254f7962012-05-01 11:43:06 -05005609 raw_tag = get_next_completion(h, q);
Don Brace303932f2010-02-04 08:42:40 -06005610 while (raw_tag != FIFO_EMPTY) {
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005611 if (likely(hpsa_tag_contains_index(raw_tag)))
5612 process_indexed_cmd(h, raw_tag);
Don Brace303932f2010-02-04 08:42:40 -06005613 else
Stephen M. Cameron1d94f942012-05-01 11:43:01 -05005614 process_nonindexed_cmd(h, raw_tag);
Matt Gates254f7962012-05-01 11:43:06 -05005615 raw_tag = next_command(h, q);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005616 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005617 return IRQ_HANDLED;
5618}
5619
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005620/* Send a message CDB to the firmware. Careful, this only works
5621 * in simple mode, not performant mode due to the tag lookup.
5622 * We only ever use this immediately after a controller reset.
5623 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005624static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
5625 unsigned char type)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005626{
5627 struct Command {
5628 struct CommandListHeader CommandHeader;
5629 struct RequestBlock Request;
5630 struct ErrDescriptor ErrorDescriptor;
5631 };
5632 struct Command *cmd;
5633 static const size_t cmd_sz = sizeof(*cmd) +
5634 sizeof(cmd->ErrorDescriptor);
5635 dma_addr_t paddr64;
5636 uint32_t paddr32, tag;
5637 void __iomem *vaddr;
5638 int i, err;
5639
5640 vaddr = pci_ioremap_bar(pdev, 0);
5641 if (vaddr == NULL)
5642 return -ENOMEM;
5643
5644 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
5645 * CCISS commands, so they must be allocated from the lower 4GiB of
5646 * memory.
5647 */
5648 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
5649 if (err) {
5650 iounmap(vaddr);
5651 return -ENOMEM;
5652 }
5653
5654 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
5655 if (cmd == NULL) {
5656 iounmap(vaddr);
5657 return -ENOMEM;
5658 }
5659
5660 /* This must fit, because of the 32-bit consistent DMA mask. Also,
5661 * although there's no guarantee, we assume that the address is at
5662 * least 4-byte aligned (most likely, it's page-aligned).
5663 */
5664 paddr32 = paddr64;
5665
5666 cmd->CommandHeader.ReplyQueue = 0;
5667 cmd->CommandHeader.SGList = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005668 cmd->CommandHeader.SGTotal = cpu_to_le16(0);
5669 cmd->CommandHeader.tag = paddr32;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005670 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
5671
5672 cmd->Request.CDBLen = 16;
Stephen M. Camerona505b862014-11-14 17:27:04 -06005673 cmd->Request.type_attr_dir =
5674 TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005675 cmd->Request.Timeout = 0; /* Don't time out */
5676 cmd->Request.CDB[0] = opcode;
5677 cmd->Request.CDB[1] = type;
5678 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06005679 cmd->ErrorDescriptor.Addr =
5680 cpu_to_le64((paddr32 + sizeof(*cmd)));
5681 cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005682
5683 writel(paddr32, vaddr + SA5_REQUEST_PORT_OFFSET);
5684
5685 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
5686 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06005687 if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr32)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005688 break;
5689 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
5690 }
5691
5692 iounmap(vaddr);
5693
5694 /* we leak the DMA buffer here ... no choice since the controller could
5695 * still complete the command.
5696 */
5697 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
5698 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
5699 opcode, type);
5700 return -ETIMEDOUT;
5701 }
5702
5703 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
5704
5705 if (tag & HPSA_ERROR_BIT) {
5706 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
5707 opcode, type);
5708 return -EIO;
5709 }
5710
5711 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
5712 opcode, type);
5713 return 0;
5714}
5715
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005716#define hpsa_noop(p) hpsa_message(p, 3, 0)
5717
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005718static int hpsa_controller_hard_reset(struct pci_dev *pdev,
Don Brace42a91642014-11-14 17:26:27 -06005719 void __iomem *vaddr, u32 use_doorbell)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005720{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005721 u16 pmcsr;
5722 int pos;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005723
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005724 if (use_doorbell) {
5725 /* For everything after the P600, the PCI power state method
5726 * of resetting the controller doesn't work, so we have this
5727 * other way using the doorbell register.
5728 */
5729 dev_info(&pdev->dev, "using doorbell to reset controller\n");
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005730 writel(use_doorbell, vaddr + SA5_DOORBELL);
Stephen M. Cameron85009232013-09-23 13:33:36 -05005731
Justin Lindley00701a92014-05-29 10:52:47 -05005732 /* PMC hardware guys tell us we need a 10 second delay after
Stephen M. Cameron85009232013-09-23 13:33:36 -05005733 * doorbell reset and before any attempt to talk to the board
5734 * at all to ensure that this actually works and doesn't fall
5735 * over in some weird corner cases.
5736 */
Justin Lindley00701a92014-05-29 10:52:47 -05005737 msleep(10000);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005738 } else { /* Try to do it the PCI power state way */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005739
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005740 /* Quoting from the Open CISS Specification: "The Power
5741 * Management Control/Status Register (CSR) controls the power
5742 * state of the device. The normal operating state is D0,
5743 * CSR=00h. The software off state is D3, CSR=03h. To reset
5744 * the controller, place the interface device in D3 then to D0,
5745 * this causes a secondary PCI reset which will reset the
5746 * controller." */
5747
5748 pos = pci_find_capability(pdev, PCI_CAP_ID_PM);
5749 if (pos == 0) {
5750 dev_err(&pdev->dev,
5751 "hpsa_reset_controller: "
5752 "PCI PM not supported\n");
5753 return -ENODEV;
5754 }
5755 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
5756 /* enter the D3hot power management state */
5757 pci_read_config_word(pdev, pos + PCI_PM_CTRL, &pmcsr);
5758 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
5759 pmcsr |= PCI_D3hot;
5760 pci_write_config_word(pdev, pos + PCI_PM_CTRL, pmcsr);
5761
5762 msleep(500);
5763
5764 /* enter the D0 power management state */
5765 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
5766 pmcsr |= PCI_D0;
5767 pci_write_config_word(pdev, pos + PCI_PM_CTRL, pmcsr);
Mike Millerc4853ef2011-10-21 08:19:43 +02005768
5769 /*
5770 * The P600 requires a small delay when changing states.
5771 * Otherwise we may think the board did not reset and we bail.
5772 * This for kdump only and is particular to the P600.
5773 */
5774 msleep(500);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005775 }
5776 return 0;
5777}
5778
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005779static void init_driver_version(char *driver_version, int len)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005780{
5781 memset(driver_version, 0, len);
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06005782 strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005783}
5784
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005785static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005786{
5787 char *driver_version;
5788 int i, size = sizeof(cfgtable->driver_version);
5789
5790 driver_version = kmalloc(size, GFP_KERNEL);
5791 if (!driver_version)
5792 return -ENOMEM;
5793
5794 init_driver_version(driver_version, size);
5795 for (i = 0; i < size; i++)
5796 writeb(driver_version[i], &cfgtable->driver_version[i]);
5797 kfree(driver_version);
5798 return 0;
5799}
5800
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005801static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
5802 unsigned char *driver_ver)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005803{
5804 int i;
5805
5806 for (i = 0; i < sizeof(cfgtable->driver_version); i++)
5807 driver_ver[i] = readb(&cfgtable->driver_version[i]);
5808}
5809
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005810static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005811{
5812
5813 char *driver_ver, *old_driver_ver;
5814 int rc, size = sizeof(cfgtable->driver_version);
5815
5816 old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
5817 if (!old_driver_ver)
5818 return -ENOMEM;
5819 driver_ver = old_driver_ver + size;
5820
5821 /* After a reset, the 32 bytes of "driver version" in the cfgtable
5822 * should have been changed, otherwise we know the reset failed.
5823 */
5824 init_driver_version(old_driver_ver, size);
5825 read_driver_ver_from_cfgtable(cfgtable, driver_ver);
5826 rc = !memcmp(driver_ver, old_driver_ver, size);
5827 kfree(old_driver_ver);
5828 return rc;
5829}
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005830/* This does a hard reset of the controller using PCI power management
5831 * states or the using the doorbell register.
5832 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005833static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev)
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005834{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005835 u64 cfg_offset;
5836 u32 cfg_base_addr;
5837 u64 cfg_base_addr_index;
5838 void __iomem *vaddr;
5839 unsigned long paddr;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005840 u32 misc_fw_support;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005841 int rc;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005842 struct CfgTable __iomem *cfgtable;
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005843 u32 use_doorbell;
Stephen M. Cameron18867652010-06-16 13:51:45 -05005844 u32 board_id;
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005845 u16 command_register;
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005846
5847 /* For controllers as old as the P600, this is very nearly
5848 * the same thing as
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005849 *
5850 * pci_save_state(pci_dev);
5851 * pci_set_power_state(pci_dev, PCI_D3hot);
5852 * pci_set_power_state(pci_dev, PCI_D0);
5853 * pci_restore_state(pci_dev);
5854 *
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005855 * For controllers newer than the P600, the pci power state
5856 * method of resetting doesn't work so we have another way
5857 * using the doorbell register.
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005858 */
Stephen M. Cameron18867652010-06-16 13:51:45 -05005859
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06005860 rc = hpsa_lookup_board_id(pdev, &board_id);
Stephen M. Cameron46380782011-05-03 15:00:01 -05005861 if (rc < 0 || !ctlr_is_resettable(board_id)) {
Stephen M. Cameron25c1e56a2011-01-06 14:48:18 -06005862 dev_warn(&pdev->dev, "Not resetting device.\n");
5863 return -ENODEV;
5864 }
Stephen M. Cameron46380782011-05-03 15:00:01 -05005865
5866 /* if controller is soft- but not hard resettable... */
5867 if (!ctlr_is_hard_resettable(board_id))
5868 return -ENOTSUPP; /* try soft reset later. */
Stephen M. Cameron18867652010-06-16 13:51:45 -05005869
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005870 /* Save the PCI command register */
5871 pci_read_config_word(pdev, 4, &command_register);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005872 pci_save_state(pdev);
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005873
5874 /* find the first memory BAR, so we can find the cfg table */
5875 rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
5876 if (rc)
5877 return rc;
5878 vaddr = remap_pci_mem(paddr, 0x250);
5879 if (!vaddr)
5880 return -ENOMEM;
5881
5882 /* find cfgtable in order to check if reset via doorbell is supported */
5883 rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
5884 &cfg_base_addr_index, &cfg_offset);
5885 if (rc)
5886 goto unmap_vaddr;
5887 cfgtable = remap_pci_mem(pci_resource_start(pdev,
5888 cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
5889 if (!cfgtable) {
5890 rc = -ENOMEM;
5891 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005892 }
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005893 rc = write_driver_ver_to_cfgtable(cfgtable);
5894 if (rc)
5895 goto unmap_vaddr;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005896
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005897 /* If reset via doorbell register is supported, use that.
5898 * There are two such methods. Favor the newest method.
5899 */
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005900 misc_fw_support = readl(&cfgtable->misc_fw_support);
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005901 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
5902 if (use_doorbell) {
5903 use_doorbell = DOORBELL_CTLR_RESET2;
5904 } else {
5905 use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
5906 if (use_doorbell) {
Mike Millerfba63092011-10-13 11:44:06 -05005907 dev_warn(&pdev->dev, "Soft reset not supported. "
5908 "Firmware update is required.\n");
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005909 rc = -ENOTSUPP; /* try soft reset */
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -05005910 goto unmap_cfgtable;
5911 }
5912 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005913
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005914 rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
5915 if (rc)
5916 goto unmap_cfgtable;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005917
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005918 pci_restore_state(pdev);
Stephen M. Cameron270d05d2011-01-06 14:48:08 -06005919 pci_write_config_word(pdev, 4, command_register);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005920
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005921 /* Some devices (notably the HP Smart Array 5i Controller)
5922 need a little pause here */
5923 msleep(HPSA_POST_RESET_PAUSE_MSECS);
5924
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005925 rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
5926 if (rc) {
5927 dev_warn(&pdev->dev,
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005928 "failed waiting for board to become ready "
5929 "after hard reset\n");
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005930 goto unmap_cfgtable;
5931 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06005932
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005933 rc = controller_reset_failed(vaddr);
5934 if (rc < 0)
5935 goto unmap_cfgtable;
5936 if (rc) {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005937 dev_warn(&pdev->dev, "Unable to successfully reset "
5938 "controller. Will try soft reset.\n");
5939 rc = -ENOTSUPP;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05005940 } else {
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05005941 dev_info(&pdev->dev, "board ready after hard reset.\n");
Stephen M. Cameron1df85522010-06-16 13:51:40 -05005942 }
5943
5944unmap_cfgtable:
5945 iounmap(cfgtable);
5946
5947unmap_vaddr:
5948 iounmap(vaddr);
5949 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005950}
5951
5952/*
5953 * We cannot read the structure directly, for portability we must use
5954 * the io functions.
5955 * This is for debug only.
5956 */
Don Brace42a91642014-11-14 17:26:27 -06005957static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005958{
Stephen M. Cameron58f86652010-05-27 15:13:58 -05005959#ifdef HPSA_DEBUG
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005960 int i;
5961 char temp_name[17];
5962
5963 dev_info(dev, "Controller Configuration information\n");
5964 dev_info(dev, "------------------------------------\n");
5965 for (i = 0; i < 4; i++)
5966 temp_name[i] = readb(&(tb->Signature[i]));
5967 temp_name[4] = '\0';
5968 dev_info(dev, " Signature = %s\n", temp_name);
5969 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
5970 dev_info(dev, " Transport methods supported = 0x%x\n",
5971 readl(&(tb->TransportSupport)));
5972 dev_info(dev, " Transport methods active = 0x%x\n",
5973 readl(&(tb->TransportActive)));
5974 dev_info(dev, " Requested transport Method = 0x%x\n",
5975 readl(&(tb->HostWrite.TransportRequest)));
5976 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
5977 readl(&(tb->HostWrite.CoalIntDelay)));
5978 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
5979 readl(&(tb->HostWrite.CoalIntCount)));
5980 dev_info(dev, " Max outstanding commands = 0x%d\n",
5981 readl(&(tb->CmdsOutMax)));
5982 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
5983 for (i = 0; i < 16; i++)
5984 temp_name[i] = readb(&(tb->ServerName[i]));
5985 temp_name[16] = '\0';
5986 dev_info(dev, " Server Name = %s\n", temp_name);
5987 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
5988 readl(&(tb->HeartBeat)));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005989#endif /* HPSA_DEBUG */
Stephen M. Cameron58f86652010-05-27 15:13:58 -05005990}
Stephen M. Cameronedd16362009-12-08 14:09:11 -08005991
5992static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
5993{
5994 int i, offset, mem_type, bar_type;
5995
5996 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
5997 return 0;
5998 offset = 0;
5999 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
6000 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
6001 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
6002 offset += 4;
6003 else {
6004 mem_type = pci_resource_flags(pdev, i) &
6005 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
6006 switch (mem_type) {
6007 case PCI_BASE_ADDRESS_MEM_TYPE_32:
6008 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
6009 offset += 4; /* 32 bit */
6010 break;
6011 case PCI_BASE_ADDRESS_MEM_TYPE_64:
6012 offset += 8;
6013 break;
6014 default: /* reserved in PCI 2.2 */
6015 dev_warn(&pdev->dev,
6016 "base address is invalid\n");
6017 return -1;
6018 break;
6019 }
6020 }
6021 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
6022 return i + 1;
6023 }
6024 return -1;
6025}
6026
6027/* If MSI/MSI-X is supported by the kernel we will try to enable it on
6028 * controllers that are capable. If not, we use IO-APIC mode.
6029 */
6030
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006031static void hpsa_interrupt_mode(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006032{
6033#ifdef CONFIG_PCI_MSI
Matt Gates254f7962012-05-01 11:43:06 -05006034 int err, i;
6035 struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
6036
6037 for (i = 0; i < MAX_REPLY_QUEUES; i++) {
6038 hpsa_msix_entries[i].vector = 0;
6039 hpsa_msix_entries[i].entry = i;
6040 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006041
6042 /* Some boards advertise MSI but don't really support it */
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006043 if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
6044 (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006045 goto default_int_mode;
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006046 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
6047 dev_info(&h->pdev->dev, "MSIX\n");
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006048 h->msix_vector = MAX_REPLY_QUEUES;
Stephen M. Cameronf89439b2014-05-29 10:53:02 -05006049 if (h->msix_vector > num_online_cpus())
6050 h->msix_vector = num_online_cpus();
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006051 err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
6052 1, h->msix_vector);
6053 if (err < 0) {
6054 dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
6055 h->msix_vector = 0;
6056 goto single_msi_mode;
6057 } else if (err < h->msix_vector) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006058 dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006059 "available\n", err);
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006060 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006061 h->msix_vector = err;
6062 for (i = 0; i < h->msix_vector; i++)
6063 h->intr[i] = hpsa_msix_entries[i].vector;
6064 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006065 }
Alexander Gordeev18fce3c2014-08-18 08:01:42 +02006066single_msi_mode:
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006067 if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
6068 dev_info(&h->pdev->dev, "MSI\n");
6069 if (!pci_enable_msi(h->pdev))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006070 h->msi_vector = 1;
6071 else
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006072 dev_warn(&h->pdev->dev, "MSI init failed\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006073 }
6074default_int_mode:
6075#endif /* CONFIG_PCI_MSI */
6076 /* if we get here we're going to use the default interrupt mode */
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006077 h->intr[h->intr_mode] = h->pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006078}
6079
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006080static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006081{
6082 int i;
6083 u32 subsystem_vendor_id, subsystem_device_id;
6084
6085 subsystem_vendor_id = pdev->subsystem_vendor;
6086 subsystem_device_id = pdev->subsystem_device;
6087 *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
6088 subsystem_vendor_id;
6089
6090 for (i = 0; i < ARRAY_SIZE(products); i++)
6091 if (*board_id == products[i].board_id)
6092 return i;
6093
Stephen M. Cameron6798cc02010-06-16 13:51:20 -05006094 if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
6095 subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
6096 !hpsa_allow_any) {
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006097 dev_warn(&pdev->dev, "unrecognized board ID: "
6098 "0x%08x, ignoring.\n", *board_id);
6099 return -ENODEV;
6100 }
6101 return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
6102}
6103
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006104static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
6105 unsigned long *memory_bar)
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006106{
6107 int i;
6108
6109 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006110 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006111 /* addressing mode bits already removed */
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006112 *memory_bar = pci_resource_start(pdev, i);
6113 dev_dbg(&pdev->dev, "memory BAR = %lx\n",
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006114 *memory_bar);
6115 return 0;
6116 }
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006117 dev_warn(&pdev->dev, "no memory BAR found\n");
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006118 return -ENODEV;
6119}
6120
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006121static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
6122 int wait_for_ready)
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006123{
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006124 int i, iterations;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006125 u32 scratchpad;
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006126 if (wait_for_ready)
6127 iterations = HPSA_BOARD_READY_ITERATIONS;
6128 else
6129 iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006130
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006131 for (i = 0; i < iterations; i++) {
6132 scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
6133 if (wait_for_ready) {
6134 if (scratchpad == HPSA_FIRMWARE_READY)
6135 return 0;
6136 } else {
6137 if (scratchpad != HPSA_FIRMWARE_READY)
6138 return 0;
6139 }
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006140 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
6141 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006142 dev_warn(&pdev->dev, "board not ready, timed out.\n");
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006143 return -ENODEV;
6144}
6145
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006146static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
6147 u32 *cfg_base_addr, u64 *cfg_base_addr_index,
6148 u64 *cfg_offset)
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006149{
6150 *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
6151 *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
6152 *cfg_base_addr &= (u32) 0x0000ffff;
6153 *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
6154 if (*cfg_base_addr_index == -1) {
6155 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
6156 return -ENODEV;
6157 }
6158 return 0;
6159}
6160
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006161static int hpsa_find_cfgtables(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006162{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06006163 u64 cfg_offset;
6164 u32 cfg_base_addr;
6165 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06006166 u32 trans_offset;
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006167 int rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006168
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006169 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
6170 &cfg_base_addr_index, &cfg_offset);
6171 if (rc)
6172 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006173 h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006174 cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006175 if (!h->cfgtable)
6176 return -ENOMEM;
Stephen M. Cameron580ada32011-05-03 14:59:10 -05006177 rc = write_driver_ver_to_cfgtable(h->cfgtable);
6178 if (rc)
6179 return rc;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006180 /* Find performant mode table. */
Stephen M. Camerona51fd472010-06-16 13:51:30 -05006181 trans_offset = readl(&h->cfgtable->TransMethodOffset);
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006182 h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
6183 cfg_base_addr_index)+cfg_offset+trans_offset,
6184 sizeof(*h->transtable));
6185 if (!h->transtable)
6186 return -ENOMEM;
6187 return 0;
6188}
6189
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006190static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006191{
6192 h->max_commands = readl(&(h->cfgtable->MaxPerformantModeCommands));
Stephen M. Cameron72ceeae2011-01-06 14:48:13 -06006193
6194 /* Limit commands in memory limited kdump scenario. */
6195 if (reset_devices && h->max_commands > 32)
6196 h->max_commands = 32;
6197
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006198 if (h->max_commands < 16) {
6199 dev_warn(&h->pdev->dev, "Controller reports "
6200 "max supported commands of %d, an obvious lie. "
6201 "Using 16. Ensure that firmware is up to date.\n",
6202 h->max_commands);
6203 h->max_commands = 16;
6204 }
6205}
6206
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006207/* Interrogate the hardware for some limits:
6208 * max commands, max SG elements without chaining, and with chaining,
6209 * SG chain block size, etc.
6210 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006211static void hpsa_find_board_params(struct ctlr_info *h)
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006212{
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05006213 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006214 h->nr_cmds = h->max_commands - 4; /* Allow room for some ioctls */
6215 h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006216 h->fw_support = readl(&(h->cfgtable->misc_fw_support));
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006217 /*
6218 * Limit in-command s/g elements to 32 save dma'able memory.
6219 * Howvever spec says if 0, use 31
6220 */
6221 h->max_cmd_sg_entries = 31;
6222 if (h->maxsgentries > 512) {
6223 h->max_cmd_sg_entries = 32;
Webb Scales1a63ea62014-11-14 17:26:43 -06006224 h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006225 h->maxsgentries--; /* save one for chain pointer */
6226 } else {
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006227 h->chainsize = 0;
Webb Scales1a63ea62014-11-14 17:26:43 -06006228 h->maxsgentries = 31; /* default to traditional values */
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006229 }
Stephen M. Cameron75167d22012-05-01 11:42:51 -05006230
6231 /* Find out what task management functions are supported and cache */
6232 h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
Scott Teel0e7a7fc2014-02-18 13:55:59 -06006233 if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
6234 dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
6235 if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
6236 dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006237}
6238
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006239static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
6240{
Akinobu Mita0fc9fd42012-04-04 22:14:59 +09006241 if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006242 dev_warn(&h->pdev->dev, "not a valid CISS config table\n");
6243 return false;
6244 }
6245 return true;
6246}
6247
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006248static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006249{
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006250 u32 driver_support;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006251
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006252 driver_support = readl(&(h->cfgtable->driver_support));
Arnd Bergmann0b9e7b72014-06-26 15:44:52 +02006253 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
6254#ifdef CONFIG_X86
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006255 driver_support |= ENABLE_SCSI_PREFETCH;
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006256#endif
Stephen M. Cameron28e13442013-12-04 17:10:21 -06006257 driver_support |= ENABLE_UNIT_ATTN;
6258 writel(driver_support, &(h->cfgtable->driver_support));
Stephen M. Cameronf7c39102010-05-27 15:13:38 -05006259}
6260
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006261/* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
6262 * in a prefetch beyond physical memory.
6263 */
6264static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
6265{
6266 u32 dma_prefetch;
6267
6268 if (h->board_id != 0x3225103C)
6269 return;
6270 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
6271 dma_prefetch |= 0x8000;
6272 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
6273}
6274
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006275static void hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
6276{
6277 int i;
6278 u32 doorbell_value;
6279 unsigned long flags;
6280 /* wait until the clear_event_notify bit 6 is cleared by controller. */
6281 for (i = 0; i < MAX_CONFIG_WAIT; i++) {
6282 spin_lock_irqsave(&h->lock, flags);
6283 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6284 spin_unlock_irqrestore(&h->lock, flags);
6285 if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
6286 break;
6287 /* delay and try again */
6288 msleep(20);
6289 }
6290}
6291
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006292static void hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006293{
6294 int i;
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006295 u32 doorbell_value;
6296 unsigned long flags;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006297
6298 /* under certain very rare conditions, this can take awhile.
6299 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
6300 * as we enter this code.)
6301 */
6302 for (i = 0; i < MAX_CONFIG_WAIT; i++) {
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006303 spin_lock_irqsave(&h->lock, flags);
6304 doorbell_value = readl(h->vaddr + SA5_DOORBELL);
6305 spin_unlock_irqrestore(&h->lock, flags);
Dan Carpenter382be662011-02-15 15:33:13 -06006306 if (!(doorbell_value & CFGTBL_ChangeReq))
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006307 break;
6308 /* delay and try again */
Stephen M. Cameron60d3f5b2011-01-06 14:48:34 -06006309 usleep_range(10000, 20000);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006310 }
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006311}
6312
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006313static int hpsa_enter_simple_mode(struct ctlr_info *h)
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006314{
6315 u32 trans_support;
6316
6317 trans_support = readl(&(h->cfgtable->TransportSupport));
6318 if (!(trans_support & SIMPLE_MODE))
6319 return -ENOTSUPP;
6320
6321 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006322
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006323 /* Update the field, and then ring the doorbell */
6324 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06006325 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05006326 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
6327 hpsa_wait_for_mode_change_ack(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006328 print_cfg_table(&h->pdev->dev, h->cfgtable);
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006329 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
6330 goto error;
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06006331 h->transMethod = CFGTBL_Trans_Simple;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006332 return 0;
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06006333error:
6334 dev_warn(&h->pdev->dev, "unable to get board into simple mode\n");
6335 return -ENODEV;
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006336}
6337
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006338static int hpsa_pci_init(struct ctlr_info *h)
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006339{
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006340 int prod_index, err;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006341
Stephen M. Camerone5c880d2010-05-27 15:12:52 -05006342 prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
6343 if (prod_index < 0)
6344 return -ENODEV;
6345 h->product_name = products[prod_index].product_name;
6346 h->access = *(products[prod_index].access);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006347
Matthew Garrette5a44df2011-11-11 11:14:23 -05006348 pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
6349 PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
6350
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006351 err = pci_enable_device(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006352 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006353 dev_warn(&h->pdev->dev, "unable to enable PCI device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006354 return err;
6355 }
6356
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006357 err = pci_request_regions(h->pdev, HPSA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006358 if (err) {
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006359 dev_err(&h->pdev->dev,
6360 "cannot obtain PCI resources, aborting\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006361 return err;
6362 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006363
6364 pci_set_master(h->pdev);
6365
Stephen M. Cameron6b3f4c52010-05-27 15:13:02 -05006366 hpsa_interrupt_mode(h);
Stephen M. Cameron12d2cd42010-06-16 13:51:25 -05006367 err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
Stephen M. Cameron3a7774c2010-05-27 15:13:07 -05006368 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006369 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006370 h->vaddr = remap_pci_mem(h->paddr, 0x250);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006371 if (!h->vaddr) {
6372 err = -ENOMEM;
6373 goto err_out_free_res;
6374 }
Stephen M. Cameronfe5389c2011-01-06 14:48:03 -06006375 err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
Stephen M. Cameron2c4c8c82010-05-27 15:13:12 -05006376 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006377 goto err_out_free_res;
Stephen M. Cameron77c44952010-05-27 15:13:17 -05006378 err = hpsa_find_cfgtables(h);
6379 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006380 goto err_out_free_res;
Stephen M. Cameronb93d7532010-05-27 15:13:27 -05006381 hpsa_find_board_params(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006382
Stephen M. Cameron76c46e42010-05-27 15:13:32 -05006383 if (!hpsa_CISS_signature_present(h)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006384 err = -ENODEV;
6385 goto err_out_free_res;
6386 }
Stephen M. Cameron97a5e982013-12-04 17:10:16 -06006387 hpsa_set_driver_support_bits(h);
Stephen M. Cameron3d0eab62010-05-27 15:13:43 -05006388 hpsa_p600_dma_prefetch_quirk(h);
Stephen M. Cameroneb6b2ae2010-05-27 15:13:48 -05006389 err = hpsa_enter_simple_mode(h);
6390 if (err)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006391 goto err_out_free_res;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006392 return 0;
6393
6394err_out_free_res:
Stephen M. Cameron204892e2010-05-27 15:13:22 -05006395 if (h->transtable)
6396 iounmap(h->transtable);
6397 if (h->cfgtable)
6398 iounmap(h->cfgtable);
6399 if (h->vaddr)
6400 iounmap(h->vaddr);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05006401 pci_disable_device(h->pdev);
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006402 pci_release_regions(h->pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006403 return err;
6404}
6405
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006406static void hpsa_hba_inquiry(struct ctlr_info *h)
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06006407{
6408 int rc;
6409
6410#define HBA_INQUIRY_BYTE_COUNT 64
6411 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
6412 if (!h->hba_inquiry_data)
6413 return;
6414 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
6415 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
6416 if (rc != 0) {
6417 kfree(h->hba_inquiry_data);
6418 h->hba_inquiry_data = NULL;
6419 }
6420}
6421
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006422static int hpsa_init_reset_devices(struct pci_dev *pdev)
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006423{
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006424 int rc, i;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006425
6426 if (!reset_devices)
6427 return 0;
6428
Tomas Henzl132aa222014-08-14 16:12:39 +02006429 /* kdump kernel is loading, we don't know in which state is
6430 * the pci interface. The dev->enable_cnt is equal zero
6431 * so we call enable+disable, wait a while and switch it on.
6432 */
6433 rc = pci_enable_device(pdev);
6434 if (rc) {
6435 dev_warn(&pdev->dev, "Failed to enable PCI device\n");
6436 return -ENODEV;
6437 }
6438 pci_disable_device(pdev);
6439 msleep(260); /* a randomly chosen number */
6440 rc = pci_enable_device(pdev);
6441 if (rc) {
6442 dev_warn(&pdev->dev, "failed to enable device.\n");
6443 return -ENODEV;
6444 }
Robert Elliott4fa604e2014-11-14 17:27:24 -06006445
Tomas Henzl859c75a2014-09-12 14:44:15 +02006446 pci_set_master(pdev);
Robert Elliott4fa604e2014-11-14 17:27:24 -06006447
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006448 /* Reset the controller with a PCI power-cycle or via doorbell */
6449 rc = hpsa_kdump_hard_reset_controller(pdev);
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006450
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006451 /* -ENOTSUPP here means we cannot reset the controller
6452 * but it's already (and still) up and running in
Stephen M. Cameron18867652010-06-16 13:51:45 -05006453 * "performant mode". Or, it might be 640x, which can't reset
6454 * due to concerns about shared bbwc between 6402/6404 pair.
Stephen M. Cameron1df85522010-06-16 13:51:40 -05006455 */
Tomas Henzl132aa222014-08-14 16:12:39 +02006456 if (rc) {
6457 if (rc != -ENOTSUPP) /* just try to do the kdump anyhow. */
6458 rc = -ENODEV;
6459 goto out_disable;
6460 }
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006461
6462 /* Now try to get the controller to respond to a no-op */
Stephen M. Cameron2b870cb2011-05-03 14:59:36 -05006463 dev_warn(&pdev->dev, "Waiting for controller to respond to no-op\n");
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006464 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
6465 if (hpsa_noop(pdev) == 0)
6466 break;
6467 else
6468 dev_warn(&pdev->dev, "no-op failed%s\n",
6469 (i < 11 ? "; re-trying" : ""));
6470 }
Tomas Henzl132aa222014-08-14 16:12:39 +02006471
6472out_disable:
6473
6474 pci_disable_device(pdev);
6475 return rc;
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006476}
6477
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006478static int hpsa_allocate_cmd_pool(struct ctlr_info *h)
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006479{
6480 h->cmd_pool_bits = kzalloc(
6481 DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
6482 sizeof(unsigned long), GFP_KERNEL);
6483 h->cmd_pool = pci_alloc_consistent(h->pdev,
6484 h->nr_cmds * sizeof(*h->cmd_pool),
6485 &(h->cmd_pool_dhandle));
6486 h->errinfo_pool = pci_alloc_consistent(h->pdev,
6487 h->nr_cmds * sizeof(*h->errinfo_pool),
6488 &(h->errinfo_pool_dhandle));
6489 if ((h->cmd_pool_bits == NULL)
6490 || (h->cmd_pool == NULL)
6491 || (h->errinfo_pool == NULL)) {
6492 dev_err(&h->pdev->dev, "out of memory in %s", __func__);
6493 return -ENOMEM;
6494 }
6495 return 0;
6496}
6497
6498static void hpsa_free_cmd_pool(struct ctlr_info *h)
6499{
6500 kfree(h->cmd_pool_bits);
6501 if (h->cmd_pool)
6502 pci_free_consistent(h->pdev,
6503 h->nr_cmds * sizeof(struct CommandList),
6504 h->cmd_pool, h->cmd_pool_dhandle);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06006505 if (h->ioaccel2_cmd_pool)
6506 pci_free_consistent(h->pdev,
6507 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
6508 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006509 if (h->errinfo_pool)
6510 pci_free_consistent(h->pdev,
6511 h->nr_cmds * sizeof(struct ErrorInfo),
6512 h->errinfo_pool,
6513 h->errinfo_pool_dhandle);
Matt Gatese1f7de02014-02-18 13:55:17 -06006514 if (h->ioaccel_cmd_pool)
6515 pci_free_consistent(h->pdev,
6516 h->nr_cmds * sizeof(struct io_accel1_cmd),
6517 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006518}
6519
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006520static void hpsa_irq_affinity_hints(struct ctlr_info *h)
6521{
6522 int i, cpu, rc;
6523
6524 cpu = cpumask_first(cpu_online_mask);
6525 for (i = 0; i < h->msix_vector; i++) {
6526 rc = irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
6527 cpu = cpumask_next(cpu, cpu_online_mask);
6528 }
6529}
6530
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006531static int hpsa_request_irq(struct ctlr_info *h,
6532 irqreturn_t (*msixhandler)(int, void *),
6533 irqreturn_t (*intxhandler)(int, void *))
6534{
Matt Gates254f7962012-05-01 11:43:06 -05006535 int rc, i;
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006536
Matt Gates254f7962012-05-01 11:43:06 -05006537 /*
6538 * initialize h->q[x] = x so that interrupt handlers know which
6539 * queue to process.
6540 */
6541 for (i = 0; i < MAX_REPLY_QUEUES; i++)
6542 h->q[i] = (u8) i;
6543
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006544 if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
Matt Gates254f7962012-05-01 11:43:06 -05006545 /* If performant mode and MSI-X, use multiple reply queues */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006546 for (i = 0; i < h->msix_vector; i++)
Matt Gates254f7962012-05-01 11:43:06 -05006547 rc = request_irq(h->intr[i], msixhandler,
6548 0, h->devname,
6549 &h->q[i]);
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006550 hpsa_irq_affinity_hints(h);
Matt Gates254f7962012-05-01 11:43:06 -05006551 } else {
6552 /* Use single reply pool */
Hannes Reineckeeee0f032014-01-15 13:30:53 +01006553 if (h->msix_vector > 0 || h->msi_vector) {
Matt Gates254f7962012-05-01 11:43:06 -05006554 rc = request_irq(h->intr[h->intr_mode],
6555 msixhandler, 0, h->devname,
6556 &h->q[h->intr_mode]);
6557 } else {
6558 rc = request_irq(h->intr[h->intr_mode],
6559 intxhandler, IRQF_SHARED, h->devname,
6560 &h->q[h->intr_mode]);
6561 }
6562 }
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006563 if (rc) {
6564 dev_err(&h->pdev->dev, "unable to get irq %d for %s\n",
6565 h->intr[h->intr_mode], h->devname);
6566 return -ENODEV;
6567 }
6568 return 0;
6569}
6570
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006571static int hpsa_kdump_soft_reset(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006572{
6573 if (hpsa_send_host_reset(h, RAID_CTLR_LUNID,
6574 HPSA_RESET_TYPE_CONTROLLER)) {
6575 dev_warn(&h->pdev->dev, "Resetting array controller failed.\n");
6576 return -EIO;
6577 }
6578
6579 dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
6580 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) {
6581 dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
6582 return -1;
6583 }
6584
6585 dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
6586 if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) {
6587 dev_warn(&h->pdev->dev, "Board failed to become ready "
6588 "after soft reset.\n");
6589 return -1;
6590 }
6591
6592 return 0;
6593}
6594
Matt Gates254f7962012-05-01 11:43:06 -05006595static void free_irqs(struct ctlr_info *h)
6596{
6597 int i;
6598
6599 if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
6600 /* Single reply queue, only one irq to free */
6601 i = h->intr_mode;
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006602 irq_set_affinity_hint(h->intr[i], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05006603 free_irq(h->intr[i], &h->q[i]);
6604 return;
6605 }
6606
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006607 for (i = 0; i < h->msix_vector; i++) {
6608 irq_set_affinity_hint(h->intr[i], NULL);
Matt Gates254f7962012-05-01 11:43:06 -05006609 free_irq(h->intr[i], &h->q[i]);
Stephen M. Cameron41b3cf02014-05-29 10:53:13 -05006610 }
Matt Gates254f7962012-05-01 11:43:06 -05006611}
6612
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006613static void hpsa_free_irqs_and_disable_msix(struct ctlr_info *h)
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006614{
Matt Gates254f7962012-05-01 11:43:06 -05006615 free_irqs(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006616#ifdef CONFIG_PCI_MSI
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006617 if (h->msix_vector) {
6618 if (h->pdev->msix_enabled)
6619 pci_disable_msix(h->pdev);
6620 } else if (h->msi_vector) {
6621 if (h->pdev->msi_enabled)
6622 pci_disable_msi(h->pdev);
6623 }
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006624#endif /* CONFIG_PCI_MSI */
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006625}
6626
Stephen M. Cameron072b0512014-05-29 10:53:07 -05006627static void hpsa_free_reply_queues(struct ctlr_info *h)
6628{
6629 int i;
6630
6631 for (i = 0; i < h->nreply_queues; i++) {
6632 if (!h->reply_queue[i].head)
6633 continue;
6634 pci_free_consistent(h->pdev, h->reply_queue_size,
6635 h->reply_queue[i].head, h->reply_queue[i].busaddr);
6636 h->reply_queue[i].head = NULL;
6637 h->reply_queue[i].busaddr = 0;
6638 }
6639}
6640
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05006641static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
6642{
6643 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006644 hpsa_free_sg_chain_blocks(h);
6645 hpsa_free_cmd_pool(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06006646 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006647 kfree(h->blockFetchTable);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05006648 hpsa_free_reply_queues(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006649 if (h->vaddr)
6650 iounmap(h->vaddr);
6651 if (h->transtable)
6652 iounmap(h->transtable);
6653 if (h->cfgtable)
6654 iounmap(h->cfgtable);
Tomas Henzl132aa222014-08-14 16:12:39 +02006655 pci_disable_device(h->pdev);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006656 pci_release_regions(h->pdev);
6657 kfree(h);
6658}
6659
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006660/* Called when controller lockup detected. */
6661static void fail_all_cmds_on_list(struct ctlr_info *h, struct list_head *list)
6662{
6663 struct CommandList *c = NULL;
6664
6665 assert_spin_locked(&h->lock);
6666 /* Mark all outstanding commands as failed and complete them. */
6667 while (!list_empty(list)) {
6668 c = list_entry(list->next, struct CommandList, list);
6669 c->err_info->CommandStatus = CMD_HARDWARE_ERR;
Stephen M. Cameron5a3d16f2012-05-01 11:42:46 -05006670 finish_cmd(c);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006671 }
6672}
6673
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006674static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
6675{
6676 int i, cpu;
6677
6678 cpu = cpumask_first(cpu_online_mask);
6679 for (i = 0; i < num_online_cpus(); i++) {
6680 u32 *lockup_detected;
6681 lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
6682 *lockup_detected = value;
6683 cpu = cpumask_next(cpu, cpu_online_mask);
6684 }
6685 wmb(); /* be sure the per-cpu variables are out to memory */
6686}
6687
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006688static void controller_lockup_detected(struct ctlr_info *h)
6689{
6690 unsigned long flags;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006691 u32 lockup_detected;
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006692
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006693 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6694 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006695 lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
6696 if (!lockup_detected) {
6697 /* no heartbeat, but controller gave us a zero. */
6698 dev_warn(&h->pdev->dev,
6699 "lockup detected but scratchpad register is zero\n");
6700 lockup_detected = 0xffffffff;
6701 }
6702 set_lockup_detected_for_all_cpus(h, lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006703 spin_unlock_irqrestore(&h->lock, flags);
6704 dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x\n",
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006705 lockup_detected);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006706 pci_disable_device(h->pdev);
6707 spin_lock_irqsave(&h->lock, flags);
6708 fail_all_cmds_on_list(h, &h->cmpQ);
6709 fail_all_cmds_on_list(h, &h->reqQ);
6710 spin_unlock_irqrestore(&h->lock, flags);
6711}
6712
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006713static void detect_controller_lockup(struct ctlr_info *h)
6714{
6715 u64 now;
6716 u32 heartbeat;
6717 unsigned long flags;
6718
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006719 now = get_jiffies_64();
6720 /* If we've received an interrupt recently, we're ok. */
6721 if (time_after64(h->last_intr_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006722 (h->heartbeat_sample_interval), now))
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006723 return;
6724
6725 /*
6726 * If we've already checked the heartbeat recently, we're ok.
6727 * This could happen if someone sends us a signal. We
6728 * otherwise don't care about signals in this thread.
6729 */
6730 if (time_after64(h->last_heartbeat_timestamp +
Stephen M. Camerone85c5972012-05-01 11:43:42 -05006731 (h->heartbeat_sample_interval), now))
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006732 return;
6733
6734 /* If heartbeat has not changed since we last looked, we're not ok. */
6735 spin_lock_irqsave(&h->lock, flags);
6736 heartbeat = readl(&h->cfgtable->HeartBeat);
6737 spin_unlock_irqrestore(&h->lock, flags);
6738 if (h->last_heartbeat == heartbeat) {
6739 controller_lockup_detected(h);
6740 return;
6741 }
6742
6743 /* We're ok. */
6744 h->last_heartbeat = heartbeat;
6745 h->last_heartbeat_timestamp = now;
6746}
6747
Stephen M. Cameron98465902014-02-21 16:25:00 -06006748static void hpsa_ack_ctlr_events(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006749{
6750 int i;
6751 char *event_type;
6752
Scott Teele863d682014-02-18 13:57:05 -06006753 /* Clear the driver-requested rescan flag */
6754 h->drv_req_rescan = 0;
6755
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006756 /* Ask the controller to clear the events we're handling. */
Stephen M. Cameron1f7cee82014-02-18 13:56:09 -06006757 if ((h->transMethod & (CFGTBL_Trans_io_accel1
6758 | CFGTBL_Trans_io_accel2)) &&
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006759 (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
6760 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
6761
6762 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
6763 event_type = "state change";
6764 if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
6765 event_type = "configuration change";
6766 /* Stop sending new RAID offload reqs via the IO accelerator */
6767 scsi_block_requests(h->scsi_host);
6768 for (i = 0; i < h->ndevices; i++)
6769 h->dev[i]->offload_enabled = 0;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06006770 hpsa_drain_accel_commands(h);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006771 /* Set 'accelerator path config change' bit */
6772 dev_warn(&h->pdev->dev,
6773 "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
6774 h->events, event_type);
6775 writel(h->events, &(h->cfgtable->clear_event_notify));
6776 /* Set the "clear event notify field update" bit 6 */
6777 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
6778 /* Wait until ctlr clears 'clear event notify field', bit 6 */
6779 hpsa_wait_for_clear_event_notify_ack(h);
6780 scsi_unblock_requests(h->scsi_host);
6781 } else {
6782 /* Acknowledge controller notification events. */
6783 writel(h->events, &(h->cfgtable->clear_event_notify));
6784 writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
6785 hpsa_wait_for_clear_event_notify_ack(h);
6786#if 0
6787 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
6788 hpsa_wait_for_mode_change_ack(h);
6789#endif
6790 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06006791 return;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006792}
6793
6794/* Check a register on the controller to see if there are configuration
6795 * changes (added/changed/removed logical drives, etc.) which mean that
Scott Teele863d682014-02-18 13:57:05 -06006796 * we should rescan the controller for devices.
6797 * Also check flag for driver-initiated rescan.
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006798 */
Stephen M. Cameron98465902014-02-21 16:25:00 -06006799static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006800{
Stephen M. Cameron98465902014-02-21 16:25:00 -06006801 if (h->drv_req_rescan)
6802 return 1;
6803
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006804 if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
Stephen M. Cameron98465902014-02-21 16:25:00 -06006805 return 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006806
6807 h->events = readl(&(h->cfgtable->event_notify));
Stephen M. Cameron98465902014-02-21 16:25:00 -06006808 return h->events & RESCAN_REQUIRED_EVENT_BITS;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06006809}
6810
Stephen M. Cameron98465902014-02-21 16:25:00 -06006811/*
6812 * Check if any of the offline devices have become ready
6813 */
6814static int hpsa_offline_devices_ready(struct ctlr_info *h)
6815{
6816 unsigned long flags;
6817 struct offline_device_entry *d;
6818 struct list_head *this, *tmp;
6819
6820 spin_lock_irqsave(&h->offline_device_lock, flags);
6821 list_for_each_safe(this, tmp, &h->offline_device_list) {
6822 d = list_entry(this, struct offline_device_entry,
6823 offline_list);
6824 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Camerond1fea472014-07-03 10:17:58 -05006825 if (!hpsa_volume_offline(h, d->scsi3addr)) {
6826 spin_lock_irqsave(&h->offline_device_lock, flags);
6827 list_del(&d->offline_list);
6828 spin_unlock_irqrestore(&h->offline_device_lock, flags);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006829 return 1;
Stephen M. Camerond1fea472014-07-03 10:17:58 -05006830 }
Stephen M. Cameron98465902014-02-21 16:25:00 -06006831 spin_lock_irqsave(&h->offline_device_lock, flags);
6832 }
6833 spin_unlock_irqrestore(&h->offline_device_lock, flags);
6834 return 0;
6835}
6836
6837
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006838static void hpsa_monitor_ctlr_worker(struct work_struct *work)
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006839{
6840 unsigned long flags;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006841 struct ctlr_info *h = container_of(to_delayed_work(work),
6842 struct ctlr_info, monitor_ctlr_work);
6843 detect_controller_lockup(h);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006844 if (lockup_detected(h))
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006845 return;
Stephen M. Cameron98465902014-02-21 16:25:00 -06006846
6847 if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
6848 scsi_host_get(h->scsi_host);
6849 h->drv_req_rescan = 0;
6850 hpsa_ack_ctlr_events(h);
6851 hpsa_scan_start(h->scsi_host);
6852 scsi_host_put(h->scsi_host);
6853 }
6854
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006855 spin_lock_irqsave(&h->lock, flags);
6856 if (h->remove_in_progress) {
6857 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006858 return;
6859 }
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06006860 schedule_delayed_work(&h->monitor_ctlr_work,
6861 h->heartbeat_sample_interval);
6862 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Camerona0c12412011-10-26 16:22:04 -05006863}
6864
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006865static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006866{
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006867 int dac, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006868 struct ctlr_info *h;
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006869 int try_soft_reset = 0;
6870 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006871
6872 if (number_of_controllers == 0)
6873 printk(KERN_INFO DRIVER_NAME "\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006874
Stephen M. Cameron4c2a8c42010-06-16 13:51:35 -05006875 rc = hpsa_init_reset_devices(pdev);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006876 if (rc) {
6877 if (rc != -ENOTSUPP)
6878 return rc;
6879 /* If the reset fails in a particular way (it has no way to do
6880 * a proper hard reset, so returns -ENOTSUPP) we can try to do
6881 * a soft reset once we get the controller configured up to the
6882 * point that it can accept a command.
6883 */
6884 try_soft_reset = 1;
6885 rc = 0;
6886 }
6887
6888reinit_after_soft_reset:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006889
Don Brace303932f2010-02-04 08:42:40 -06006890 /* Command structures must be aligned on a 32-byte boundary because
6891 * the 5 lower bits of the address are used by the hardware. and by
6892 * the driver. See comments in hpsa.h for more info.
6893 */
Don Brace303932f2010-02-04 08:42:40 -06006894 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006895 h = kzalloc(sizeof(*h), GFP_KERNEL);
6896 if (!h)
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006897 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006898
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006899 h->pdev = pdev;
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006900 h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
Stephen M. Cameron9e0fc762011-02-15 15:32:48 -06006901 INIT_LIST_HEAD(&h->cmpQ);
6902 INIT_LIST_HEAD(&h->reqQ);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006903 INIT_LIST_HEAD(&h->offline_device_list);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006904 spin_lock_init(&h->lock);
Stephen M. Cameron98465902014-02-21 16:25:00 -06006905 spin_lock_init(&h->offline_device_lock);
Stephen M. Cameron6eaf46f2011-01-06 14:48:24 -06006906 spin_lock_init(&h->scan_lock);
Stephen M. Cameron0390f0c2013-09-23 13:34:12 -05006907 spin_lock_init(&h->passthru_count_lock);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006908
6909 /* Allocate and clear per-cpu variable lockup_detected */
6910 h->lockup_detected = alloc_percpu(u32);
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05006911 if (!h->lockup_detected) {
6912 rc = -ENOMEM;
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006913 goto clean1;
Stephen M. Cameron2a5ac322014-07-03 10:18:08 -05006914 }
Stephen M. Cameron094963d2014-05-29 10:53:18 -05006915 set_lockup_detected_for_all_cpus(h, 0);
6916
Stephen M. Cameron55c06c72010-05-27 15:12:46 -05006917 rc = hpsa_pci_init(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006918 if (rc != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006919 goto clean1;
6920
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06006921 sprintf(h->devname, HPSA "%d", number_of_controllers);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006922 h->ctlr = number_of_controllers;
6923 number_of_controllers++;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006924
6925 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006926 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
6927 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006928 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06006929 } else {
6930 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6931 if (rc == 0) {
6932 dac = 0;
6933 } else {
6934 dev_err(&pdev->dev, "no suitable DMA available\n");
6935 goto clean1;
6936 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006937 }
6938
6939 /* make sure the board interrupts are off */
6940 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron10f66012010-06-16 13:51:50 -05006941
Stephen M. Cameron0ae01a32011-05-03 14:59:25 -05006942 if (hpsa_request_irq(h, do_hpsa_intr_msi, do_hpsa_intr_intx))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006943 goto clean2;
Don Brace303932f2010-02-04 08:42:40 -06006944 dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n",
6945 h->devname, pdev->device,
Stephen M. Camerona9a3a272011-02-15 15:32:53 -06006946 h->intr[h->intr_mode], dac ? "" : " not");
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05006947 if (hpsa_allocate_cmd_pool(h))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006948 goto clean4;
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06006949 if (hpsa_allocate_sg_chain_blocks(h))
6950 goto clean4;
Stephen M. Camerona08a8472010-02-04 08:43:16 -06006951 init_waitqueue_head(&h->scan_wait_queue);
6952 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08006953
6954 pci_set_drvdata(pdev, h);
Stephen M. Cameron9a413382011-05-03 14:59:41 -05006955 h->ndevices = 0;
Stephen M. Cameron316b2212014-02-21 16:25:15 -06006956 h->hba_mode_enabled = 0;
Stephen M. Cameron9a413382011-05-03 14:59:41 -05006957 h->scsi_host = NULL;
6958 spin_lock_init(&h->devlock);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006959 hpsa_put_ctlr_into_performant_mode(h);
6960
6961 /* At this point, the controller is ready to take commands.
6962 * Now, if reset_devices and the hard reset didn't work, try
6963 * the soft reset and see if that works.
6964 */
6965 if (try_soft_reset) {
6966
6967 /* This is kind of gross. We may or may not get a completion
6968 * from the soft reset command, and if we do, then the value
6969 * from the fifo may or may not be valid. So, we wait 10 secs
6970 * after the reset throwing away any completions we get during
6971 * that time. Unregister the interrupt handler and register
6972 * fake ones to scoop up any residual completions.
6973 */
6974 spin_lock_irqsave(&h->lock, flags);
6975 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6976 spin_unlock_irqrestore(&h->lock, flags);
Matt Gates254f7962012-05-01 11:43:06 -05006977 free_irqs(h);
Stephen M. Cameron64670ac2011-05-03 14:59:51 -05006978 rc = hpsa_request_irq(h, hpsa_msix_discard_completions,
6979 hpsa_intx_discard_completions);
6980 if (rc) {
6981 dev_warn(&h->pdev->dev, "Failed to request_irq after "
6982 "soft reset.\n");
6983 goto clean4;
6984 }
6985
6986 rc = hpsa_kdump_soft_reset(h);
6987 if (rc)
6988 /* Neither hard nor soft reset worked, we're hosed. */
6989 goto clean4;
6990
6991 dev_info(&h->pdev->dev, "Board READY.\n");
6992 dev_info(&h->pdev->dev,
6993 "Waiting for stale completions to drain.\n");
6994 h->access.set_intr_mask(h, HPSA_INTR_ON);
6995 msleep(10000);
6996 h->access.set_intr_mask(h, HPSA_INTR_OFF);
6997
6998 rc = controller_reset_failed(h->cfgtable);
6999 if (rc)
7000 dev_info(&h->pdev->dev,
7001 "Soft reset appears to have failed.\n");
7002
7003 /* since the controller's reset, we have to go back and re-init
7004 * everything. Easiest to just forget what we've done and do it
7005 * all over again.
7006 */
7007 hpsa_undo_allocations_after_kdump_soft_reset(h);
7008 try_soft_reset = 0;
7009 if (rc)
7010 /* don't go to clean4, we already unallocated */
7011 return -ENODEV;
7012
7013 goto reinit_after_soft_reset;
7014 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007015
Stephen M. Cameron316b2212014-02-21 16:25:15 -06007016 /* Enable Accelerated IO path at driver layer */
7017 h->acciopath_status = 1;
Scott Teelda0697b2014-02-18 13:57:00 -06007018
Scott Teele863d682014-02-18 13:57:05 -06007019 h->drv_req_rescan = 0;
7020
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007021 /* Turn the interrupts on so we can service requests */
7022 h->access.set_intr_mask(h, HPSA_INTR_ON);
7023
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007024 hpsa_hba_inquiry(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007025 hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007026
7027 /* Monitor the controller for firmware lockups */
7028 h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
7029 INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
7030 schedule_delayed_work(&h->monitor_ctlr_work,
7031 h->heartbeat_sample_interval);
Stephen M. Cameron88bf6d62013-11-01 11:02:25 -05007032 return 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007033
7034clean4:
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007035 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameron2e9d1b32011-05-03 14:59:20 -05007036 hpsa_free_cmd_pool(h);
Matt Gates254f7962012-05-01 11:43:06 -05007037 free_irqs(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007038clean2:
7039clean1:
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007040 if (h->lockup_detected)
7041 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007042 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06007043 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007044}
7045
7046static void hpsa_flush_cache(struct ctlr_info *h)
7047{
7048 char *flush_buf;
7049 struct CommandList *c;
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007050
7051 /* Don't bother trying to flush the cache if locked up */
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007052 if (unlikely(lockup_detected(h)))
Stephen M. Cameron702890e2013-09-23 13:33:30 -05007053 return;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007054 flush_buf = kzalloc(4, GFP_KERNEL);
7055 if (!flush_buf)
7056 return;
7057
7058 c = cmd_special_alloc(h);
7059 if (!c) {
7060 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
7061 goto out_of_memory;
7062 }
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007063 if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
7064 RAID_CTLR_LUNID, TYPE_CMD)) {
7065 goto out;
7066 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007067 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_TODEVICE);
7068 if (c->err_info->CommandStatus != 0)
Stephen M. Camerona2dac132013-02-20 11:24:41 -06007069out:
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007070 dev_warn(&h->pdev->dev,
7071 "error flushing cache on controller\n");
7072 cmd_special_free(h, c);
7073out_of_memory:
7074 kfree(flush_buf);
7075}
7076
7077static void hpsa_shutdown(struct pci_dev *pdev)
7078{
7079 struct ctlr_info *h;
7080
7081 h = pci_get_drvdata(pdev);
7082 /* Turn board interrupts off and send the flush cache command
7083 * sendcmd will turn off interrupt, and send the flush...
7084 * To write all data in the battery backed cache to disks
7085 */
7086 hpsa_flush_cache(h);
7087 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Stephen M. Cameron0097f0f2012-05-01 11:43:21 -05007088 hpsa_free_irqs_and_disable_msix(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007089}
7090
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007091static void hpsa_free_device_info(struct ctlr_info *h)
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007092{
7093 int i;
7094
7095 for (i = 0; i < h->ndevices; i++)
7096 kfree(h->dev[i]);
7097}
7098
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007099static void hpsa_remove_one(struct pci_dev *pdev)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007100{
7101 struct ctlr_info *h;
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007102 unsigned long flags;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007103
7104 if (pci_get_drvdata(pdev) == NULL) {
Stephen M. Camerona0c12412011-10-26 16:22:04 -05007105 dev_err(&pdev->dev, "unable to remove device\n");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007106 return;
7107 }
7108 h = pci_get_drvdata(pdev);
Stephen M. Cameron8a98db732013-12-04 17:10:07 -06007109
7110 /* Get rid of any controller monitoring work items */
7111 spin_lock_irqsave(&h->lock, flags);
7112 h->remove_in_progress = 1;
7113 cancel_delayed_work(&h->monitor_ctlr_work);
7114 spin_unlock_irqrestore(&h->lock, flags);
7115
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007116 hpsa_unregister_scsi(h); /* unhook from SCSI subsystem */
7117 hpsa_shutdown(pdev);
7118 iounmap(h->vaddr);
Stephen M. Cameron204892e2010-05-27 15:13:22 -05007119 iounmap(h->transtable);
7120 iounmap(h->cfgtable);
Stephen M. Cameron55e14e72012-01-19 14:00:42 -06007121 hpsa_free_device_info(h);
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -06007122 hpsa_free_sg_chain_blocks(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007123 pci_free_consistent(h->pdev,
7124 h->nr_cmds * sizeof(struct CommandList),
7125 h->cmd_pool, h->cmd_pool_dhandle);
7126 pci_free_consistent(h->pdev,
7127 h->nr_cmds * sizeof(struct ErrorInfo),
7128 h->errinfo_pool, h->errinfo_pool_dhandle);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007129 hpsa_free_reply_queues(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007130 kfree(h->cmd_pool_bits);
Don Brace303932f2010-02-04 08:42:40 -06007131 kfree(h->blockFetchTable);
Matt Gatese1f7de02014-02-18 13:55:17 -06007132 kfree(h->ioaccel1_blockFetchTable);
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007133 kfree(h->ioaccel2_blockFetchTable);
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06007134 kfree(h->hba_inquiry_data);
Stephen M. Cameronf0bd0b62012-05-01 11:42:09 -05007135 pci_disable_device(pdev);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007136 pci_release_regions(pdev);
Stephen M. Cameron094963d2014-05-29 10:53:18 -05007137 free_percpu(h->lockup_detected);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007138 kfree(h);
7139}
7140
7141static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
7142 __attribute__((unused)) pm_message_t state)
7143{
7144 return -ENOSYS;
7145}
7146
7147static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
7148{
7149 return -ENOSYS;
7150}
7151
7152static struct pci_driver hpsa_pci_driver = {
Stephen M. Cameronf79cfec2012-01-19 14:00:59 -06007153 .name = HPSA,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007154 .probe = hpsa_init_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007155 .remove = hpsa_remove_one,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007156 .id_table = hpsa_pci_device_id, /* id_table */
7157 .shutdown = hpsa_shutdown,
7158 .suspend = hpsa_suspend,
7159 .resume = hpsa_resume,
7160};
7161
Don Brace303932f2010-02-04 08:42:40 -06007162/* Fill in bucket_map[], given nsgs (the max number of
7163 * scatter gather elements supported) and bucket[],
7164 * which is an array of 8 integers. The bucket[] array
7165 * contains 8 different DMA transfer sizes (in 16
7166 * byte increments) which the controller uses to fetch
7167 * commands. This function fills in bucket_map[], which
7168 * maps a given number of scatter gather elements to one of
7169 * the 8 DMA transfer sizes. The point of it is to allow the
7170 * controller to only do as much DMA as needed to fetch the
7171 * command, with the DMA transfer size encoded in the lower
7172 * bits of the command address.
7173 */
7174static void calc_bucket_map(int bucket[], int num_buckets,
Matt Gatese1f7de02014-02-18 13:55:17 -06007175 int nsgs, int min_blocks, int *bucket_map)
Don Brace303932f2010-02-04 08:42:40 -06007176{
7177 int i, j, b, size;
7178
Don Brace303932f2010-02-04 08:42:40 -06007179 /* Note, bucket_map must have nsgs+1 entries. */
7180 for (i = 0; i <= nsgs; i++) {
7181 /* Compute size of a command with i SG entries */
Matt Gatese1f7de02014-02-18 13:55:17 -06007182 size = i + min_blocks;
Don Brace303932f2010-02-04 08:42:40 -06007183 b = num_buckets; /* Assume the biggest bucket */
7184 /* Find the bucket that is just big enough */
Matt Gatese1f7de02014-02-18 13:55:17 -06007185 for (j = 0; j < num_buckets; j++) {
Don Brace303932f2010-02-04 08:42:40 -06007186 if (bucket[j] >= size) {
7187 b = j;
7188 break;
7189 }
7190 }
7191 /* for a command with i SG entries, use bucket b. */
7192 bucket_map[i] = b;
7193 }
7194}
7195
Matt Gatese1f7de02014-02-18 13:55:17 -06007196static void hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
Don Brace303932f2010-02-04 08:42:40 -06007197{
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007198 int i;
7199 unsigned long register_value;
Matt Gatese1f7de02014-02-18 13:55:17 -06007200 unsigned long transMethod = CFGTBL_Trans_Performant |
7201 (trans_support & CFGTBL_Trans_use_short_tags) |
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007202 CFGTBL_Trans_enable_directed_msix |
7203 (trans_support & (CFGTBL_Trans_io_accel1 |
7204 CFGTBL_Trans_io_accel2));
Matt Gatese1f7de02014-02-18 13:55:17 -06007205 struct access_method access = SA5_performant_access;
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007206
7207 /* This is a bit complicated. There are 8 registers on
7208 * the controller which we write to to tell it 8 different
7209 * sizes of commands which there may be. It's a way of
7210 * reducing the DMA done to fetch each command. Encoded into
7211 * each command's tag are 3 bits which communicate to the controller
7212 * which of the eight sizes that command fits within. The size of
7213 * each command depends on how many scatter gather entries there are.
7214 * Each SG entry requires 16 bytes. The eight registers are programmed
7215 * with the number of 16-byte blocks a command of that size requires.
7216 * The smallest command possible requires 5 such 16 byte blocks.
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007217 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
Stephen M. Camerondef342b2010-05-27 15:14:39 -05007218 * blocks. Note, this only extends to the SG entries contained
7219 * within the command block, and does not extend to chained blocks
7220 * of SG elements. bft[] contains the eight values we write to
7221 * the registers. They are not evenly distributed, but have more
7222 * sizes for small commands, and fewer sizes for larger commands.
7223 */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007224 int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007225#define MIN_IOACCEL2_BFT_ENTRY 5
7226#define HPSA_IOACCEL2_HEADER_SZ 4
7227 int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
7228 13, 14, 15, 16, 17, 18, 19,
7229 HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
7230 BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
7231 BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
7232 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
7233 16 * MIN_IOACCEL2_BFT_ENTRY);
7234 BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007235 BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
Don Brace303932f2010-02-04 08:42:40 -06007236 /* 5 = 1 s/g entry or 4k
7237 * 6 = 2 s/g entry or 8k
7238 * 8 = 4 s/g entry or 16k
7239 * 10 = 6 s/g entry or 24k
7240 */
Don Brace303932f2010-02-04 08:42:40 -06007241
Stephen M. Cameronb3a52e72014-05-29 10:53:23 -05007242 /* If the controller supports either ioaccel method then
7243 * we can also use the RAID stack submit path that does not
7244 * perform the superfluous readl() after each command submission.
7245 */
7246 if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
7247 access = SA5_performant_access_no_read;
7248
Don Brace303932f2010-02-04 08:42:40 -06007249 /* Controller spec: zero out this buffer. */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007250 for (i = 0; i < h->nreply_queues; i++)
7251 memset(h->reply_queue[i].head, 0, h->reply_queue_size);
Don Brace303932f2010-02-04 08:42:40 -06007252
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007253 bft[7] = SG_ENTRIES_IN_CMD + 4;
7254 calc_bucket_map(bft, ARRAY_SIZE(bft),
Matt Gatese1f7de02014-02-18 13:55:17 -06007255 SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
Don Brace303932f2010-02-04 08:42:40 -06007256 for (i = 0; i < 8; i++)
7257 writel(bft[i], &h->transtable->BlockFetch[i]);
7258
7259 /* size of controller ring buffer */
7260 writel(h->max_commands, &h->transtable->RepQSize);
Matt Gates254f7962012-05-01 11:43:06 -05007261 writel(h->nreply_queues, &h->transtable->RepQCount);
Don Brace303932f2010-02-04 08:42:40 -06007262 writel(0, &h->transtable->RepQCtrAddrLow32);
7263 writel(0, &h->transtable->RepQCtrAddrHigh32);
Matt Gates254f7962012-05-01 11:43:06 -05007264
7265 for (i = 0; i < h->nreply_queues; i++) {
7266 writel(0, &h->transtable->RepQAddr[i].upper);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007267 writel(h->reply_queue[i].busaddr,
Matt Gates254f7962012-05-01 11:43:06 -05007268 &h->transtable->RepQAddr[i].lower);
7269 }
7270
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007271 writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
Matt Gatese1f7de02014-02-18 13:55:17 -06007272 writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
7273 /*
7274 * enable outbound interrupt coalescing in accelerator mode;
7275 */
7276 if (trans_support & CFGTBL_Trans_io_accel1) {
7277 access = SA5_ioaccel_mode1_access;
7278 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7279 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
Scott Teelc3497752014-02-18 13:56:34 -06007280 } else {
7281 if (trans_support & CFGTBL_Trans_io_accel2) {
7282 access = SA5_ioaccel_mode2_access;
7283 writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
7284 writel(4, &h->cfgtable->HostWrite.CoalIntCount);
7285 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007286 }
Don Brace303932f2010-02-04 08:42:40 -06007287 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
Stephen M. Cameron3f4336f2010-05-27 15:14:08 -05007288 hpsa_wait_for_mode_change_ack(h);
Don Brace303932f2010-02-04 08:42:40 -06007289 register_value = readl(&(h->cfgtable->TransportActive));
7290 if (!(register_value & CFGTBL_Trans_Performant)) {
7291 dev_warn(&h->pdev->dev, "unable to get board into"
7292 " performant mode\n");
7293 return;
7294 }
Stephen M. Cameron960a30e2011-02-15 15:33:03 -06007295 /* Change the access methods to the performant access methods */
Matt Gatese1f7de02014-02-18 13:55:17 -06007296 h->access = access;
7297 h->transMethod = transMethod;
7298
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007299 if (!((trans_support & CFGTBL_Trans_io_accel1) ||
7300 (trans_support & CFGTBL_Trans_io_accel2)))
Matt Gatese1f7de02014-02-18 13:55:17 -06007301 return;
7302
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007303 if (trans_support & CFGTBL_Trans_io_accel1) {
7304 /* Set up I/O accelerator mode */
7305 for (i = 0; i < h->nreply_queues; i++) {
7306 writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
7307 h->reply_queue[i].current_entry =
7308 readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
7309 }
7310 bft[7] = h->ioaccel_maxsg + 8;
7311 calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
7312 h->ioaccel1_blockFetchTable);
7313
7314 /* initialize all reply queue entries to unused */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007315 for (i = 0; i < h->nreply_queues; i++)
7316 memset(h->reply_queue[i].head,
7317 (u8) IOACCEL_MODE1_REPLY_UNUSED,
7318 h->reply_queue_size);
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007319
7320 /* set all the constant fields in the accelerator command
7321 * frames once at init time to save CPU cycles later.
7322 */
7323 for (i = 0; i < h->nr_cmds; i++) {
7324 struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
7325
7326 cp->function = IOACCEL1_FUNCTION_SCSIIO;
7327 cp->err_info = (u32) (h->errinfo_pool_dhandle +
7328 (i * sizeof(struct ErrorInfo)));
7329 cp->err_info_len = sizeof(struct ErrorInfo);
7330 cp->sgl_offset = IOACCEL1_SGLOFFSET;
7331 cp->host_context_flags = IOACCEL1_HCFLAGS_CISS_FORMAT;
7332 cp->timeout_sec = 0;
7333 cp->ReplyQueue = 0;
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007334 cp->tag =
7335 cpu_to_le64((i << DIRECT_LOOKUP_SHIFT) |
7336 DIRECT_LOOKUP_BIT);
7337 cp->host_addr =
7338 cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007339 (i * sizeof(struct io_accel1_cmd)));
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007340 }
7341 } else if (trans_support & CFGTBL_Trans_io_accel2) {
7342 u64 cfg_offset, cfg_base_addr_index;
7343 u32 bft2_offset, cfg_base_addr;
7344 int rc;
7345
7346 rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7347 &cfg_base_addr_index, &cfg_offset);
7348 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
7349 bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
7350 calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
7351 4, h->ioaccel2_blockFetchTable);
7352 bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
7353 BUILD_BUG_ON(offsetof(struct CfgTable,
7354 io_accel_request_size_offset) != 0xb8);
7355 h->ioaccel2_bft2_regs =
7356 remap_pci_mem(pci_resource_start(h->pdev,
7357 cfg_base_addr_index) +
7358 cfg_offset + bft2_offset,
7359 ARRAY_SIZE(bft2) *
7360 sizeof(*h->ioaccel2_bft2_regs));
7361 for (i = 0; i < ARRAY_SIZE(bft2); i++)
7362 writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
Matt Gatese1f7de02014-02-18 13:55:17 -06007363 }
Stephen M. Cameronb9af4932014-02-18 13:56:29 -06007364 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7365 hpsa_wait_for_mode_change_ack(h);
Matt Gatese1f7de02014-02-18 13:55:17 -06007366}
7367
7368static int hpsa_alloc_ioaccel_cmd_and_bft(struct ctlr_info *h)
7369{
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007370 h->ioaccel_maxsg =
7371 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7372 if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
7373 h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
7374
Matt Gatese1f7de02014-02-18 13:55:17 -06007375 /* Command structures must be aligned on a 128-byte boundary
7376 * because the 7 lower bits of the address are used by the
7377 * hardware.
7378 */
Matt Gatese1f7de02014-02-18 13:55:17 -06007379 BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
7380 IOACCEL1_COMMANDLIST_ALIGNMENT);
7381 h->ioaccel_cmd_pool =
7382 pci_alloc_consistent(h->pdev,
7383 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7384 &(h->ioaccel_cmd_pool_dhandle));
7385
7386 h->ioaccel1_blockFetchTable =
Stephen M. Cameron283b4a92014-02-18 13:55:33 -06007387 kmalloc(((h->ioaccel_maxsg + 1) *
Matt Gatese1f7de02014-02-18 13:55:17 -06007388 sizeof(u32)), GFP_KERNEL);
7389
7390 if ((h->ioaccel_cmd_pool == NULL) ||
7391 (h->ioaccel1_blockFetchTable == NULL))
7392 goto clean_up;
7393
7394 memset(h->ioaccel_cmd_pool, 0,
7395 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
7396 return 0;
7397
7398clean_up:
7399 if (h->ioaccel_cmd_pool)
7400 pci_free_consistent(h->pdev,
7401 h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
7402 h->ioaccel_cmd_pool, h->ioaccel_cmd_pool_dhandle);
7403 kfree(h->ioaccel1_blockFetchTable);
7404 return 1;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007405}
7406
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007407static int ioaccel2_alloc_cmds_and_bft(struct ctlr_info *h)
7408{
7409 /* Allocate ioaccel2 mode command blocks and block fetch table */
7410
7411 h->ioaccel_maxsg =
7412 readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
7413 if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
7414 h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
7415
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007416 BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
7417 IOACCEL2_COMMANDLIST_ALIGNMENT);
7418 h->ioaccel2_cmd_pool =
7419 pci_alloc_consistent(h->pdev,
7420 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7421 &(h->ioaccel2_cmd_pool_dhandle));
7422
7423 h->ioaccel2_blockFetchTable =
7424 kmalloc(((h->ioaccel_maxsg + 1) *
7425 sizeof(u32)), GFP_KERNEL);
7426
7427 if ((h->ioaccel2_cmd_pool == NULL) ||
7428 (h->ioaccel2_blockFetchTable == NULL))
7429 goto clean_up;
7430
7431 memset(h->ioaccel2_cmd_pool, 0,
7432 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
7433 return 0;
7434
7435clean_up:
7436 if (h->ioaccel2_cmd_pool)
7437 pci_free_consistent(h->pdev,
7438 h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
7439 h->ioaccel2_cmd_pool, h->ioaccel2_cmd_pool_dhandle);
7440 kfree(h->ioaccel2_blockFetchTable);
7441 return 1;
7442}
7443
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08007444static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007445{
7446 u32 trans_support;
Matt Gatese1f7de02014-02-18 13:55:17 -06007447 unsigned long transMethod = CFGTBL_Trans_Performant |
7448 CFGTBL_Trans_use_short_tags;
Matt Gates254f7962012-05-01 11:43:06 -05007449 int i;
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007450
Stephen M. Cameron02ec19c2011-01-06 14:48:29 -06007451 if (hpsa_simple_mode)
7452 return;
7453
scameron@beardog.cce.hp.com67c99a72014-04-14 14:01:09 -05007454 trans_support = readl(&(h->cfgtable->TransportSupport));
7455 if (!(trans_support & PERFORMANT_MODE))
7456 return;
7457
Matt Gatese1f7de02014-02-18 13:55:17 -06007458 /* Check for I/O accelerator mode support */
7459 if (trans_support & CFGTBL_Trans_io_accel1) {
7460 transMethod |= CFGTBL_Trans_io_accel1 |
7461 CFGTBL_Trans_enable_directed_msix;
7462 if (hpsa_alloc_ioaccel_cmd_and_bft(h))
7463 goto clean_up;
Stephen M. Cameronaca90122014-02-18 13:56:14 -06007464 } else {
7465 if (trans_support & CFGTBL_Trans_io_accel2) {
7466 transMethod |= CFGTBL_Trans_io_accel2 |
7467 CFGTBL_Trans_enable_directed_msix;
7468 if (ioaccel2_alloc_cmds_and_bft(h))
7469 goto clean_up;
7470 }
Matt Gatese1f7de02014-02-18 13:55:17 -06007471 }
7472
Hannes Reineckeeee0f032014-01-15 13:30:53 +01007473 h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
Stephen M. Cameroncba3d382010-06-16 13:51:56 -05007474 hpsa_get_max_perf_mode_cmds(h);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007475 /* Performant mode ring buffer and supporting data structures */
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007476 h->reply_queue_size = h->max_commands * sizeof(u64);
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007477
Matt Gates254f7962012-05-01 11:43:06 -05007478 for (i = 0; i < h->nreply_queues; i++) {
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007479 h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
7480 h->reply_queue_size,
7481 &(h->reply_queue[i].busaddr));
7482 if (!h->reply_queue[i].head)
7483 goto clean_up;
Matt Gates254f7962012-05-01 11:43:06 -05007484 h->reply_queue[i].size = h->max_commands;
7485 h->reply_queue[i].wraparound = 1; /* spec: init to 1 */
7486 h->reply_queue[i].current_entry = 0;
7487 }
7488
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007489 /* Need a block fetch table for performant mode */
Stephen M. Camerond66ae082012-01-19 14:00:48 -06007490 h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007491 sizeof(u32)), GFP_KERNEL);
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007492 if (!h->blockFetchTable)
Stephen M. Cameron6c311b52010-05-27 15:14:19 -05007493 goto clean_up;
7494
Matt Gatese1f7de02014-02-18 13:55:17 -06007495 hpsa_enter_performant_mode(h, trans_support);
Don Brace303932f2010-02-04 08:42:40 -06007496 return;
7497
7498clean_up:
Stephen M. Cameron072b0512014-05-29 10:53:07 -05007499 hpsa_free_reply_queues(h);
Don Brace303932f2010-02-04 08:42:40 -06007500 kfree(h->blockFetchTable);
7501}
7502
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007503static int is_accelerated_cmd(struct CommandList *c)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007504{
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007505 return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
7506}
7507
7508static void hpsa_drain_accel_commands(struct ctlr_info *h)
7509{
7510 struct CommandList *c = NULL;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007511 unsigned long flags;
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007512 int accel_cmds_out;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007513
7514 do { /* wait for all outstanding commands to drain out */
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007515 accel_cmds_out = 0;
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007516 spin_lock_irqsave(&h->lock, flags);
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007517 list_for_each_entry(c, &h->cmpQ, list)
7518 accel_cmds_out += is_accelerated_cmd(c);
7519 list_for_each_entry(c, &h->reqQ, list)
7520 accel_cmds_out += is_accelerated_cmd(c);
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007521 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron23100dd2014-02-18 13:57:37 -06007522 if (accel_cmds_out <= 0)
Stephen M. Cameron76438d02014-02-18 13:55:43 -06007523 break;
7524 msleep(100);
7525 } while (1);
7526}
7527
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007528/*
7529 * This is it. Register the PCI driver information for the cards we control
7530 * the OS will call our registered routines when it finds one of our cards.
7531 */
7532static int __init hpsa_init(void)
7533{
Mike Miller31468402010-02-25 14:03:12 -06007534 return pci_register_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007535}
7536
7537static void __exit hpsa_cleanup(void)
7538{
7539 pci_unregister_driver(&hpsa_pci_driver);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007540}
7541
Matt Gatese1f7de02014-02-18 13:55:17 -06007542static void __attribute__((unused)) verify_offsets(void)
7543{
7544#define VERIFY_OFFSET(member, offset) \
Scott Teeldd0e19f2014-02-18 13:57:31 -06007545 BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
7546
7547 VERIFY_OFFSET(structure_size, 0);
7548 VERIFY_OFFSET(volume_blk_size, 4);
7549 VERIFY_OFFSET(volume_blk_cnt, 8);
7550 VERIFY_OFFSET(phys_blk_shift, 16);
7551 VERIFY_OFFSET(parity_rotation_shift, 17);
7552 VERIFY_OFFSET(strip_size, 18);
7553 VERIFY_OFFSET(disk_starting_blk, 20);
7554 VERIFY_OFFSET(disk_blk_cnt, 28);
7555 VERIFY_OFFSET(data_disks_per_row, 36);
7556 VERIFY_OFFSET(metadata_disks_per_row, 38);
7557 VERIFY_OFFSET(row_cnt, 40);
7558 VERIFY_OFFSET(layout_map_count, 42);
7559 VERIFY_OFFSET(flags, 44);
7560 VERIFY_OFFSET(dekindex, 46);
7561 /* VERIFY_OFFSET(reserved, 48 */
7562 VERIFY_OFFSET(data, 64);
7563
7564#undef VERIFY_OFFSET
7565
7566#define VERIFY_OFFSET(member, offset) \
Mike Millerb66cc252014-02-18 13:56:04 -06007567 BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
7568
7569 VERIFY_OFFSET(IU_type, 0);
7570 VERIFY_OFFSET(direction, 1);
7571 VERIFY_OFFSET(reply_queue, 2);
7572 /* VERIFY_OFFSET(reserved1, 3); */
7573 VERIFY_OFFSET(scsi_nexus, 4);
7574 VERIFY_OFFSET(Tag, 8);
7575 VERIFY_OFFSET(cdb, 16);
7576 VERIFY_OFFSET(cciss_lun, 32);
7577 VERIFY_OFFSET(data_len, 40);
7578 VERIFY_OFFSET(cmd_priority_task_attr, 44);
7579 VERIFY_OFFSET(sg_count, 45);
7580 /* VERIFY_OFFSET(reserved3 */
7581 VERIFY_OFFSET(err_ptr, 48);
7582 VERIFY_OFFSET(err_len, 56);
7583 /* VERIFY_OFFSET(reserved4 */
7584 VERIFY_OFFSET(sg, 64);
7585
7586#undef VERIFY_OFFSET
7587
7588#define VERIFY_OFFSET(member, offset) \
Matt Gatese1f7de02014-02-18 13:55:17 -06007589 BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
7590
7591 VERIFY_OFFSET(dev_handle, 0x00);
7592 VERIFY_OFFSET(reserved1, 0x02);
7593 VERIFY_OFFSET(function, 0x03);
7594 VERIFY_OFFSET(reserved2, 0x04);
7595 VERIFY_OFFSET(err_info, 0x0C);
7596 VERIFY_OFFSET(reserved3, 0x10);
7597 VERIFY_OFFSET(err_info_len, 0x12);
7598 VERIFY_OFFSET(reserved4, 0x13);
7599 VERIFY_OFFSET(sgl_offset, 0x14);
7600 VERIFY_OFFSET(reserved5, 0x15);
7601 VERIFY_OFFSET(transfer_len, 0x1C);
7602 VERIFY_OFFSET(reserved6, 0x20);
7603 VERIFY_OFFSET(io_flags, 0x24);
7604 VERIFY_OFFSET(reserved7, 0x26);
7605 VERIFY_OFFSET(LUN, 0x34);
7606 VERIFY_OFFSET(control, 0x3C);
7607 VERIFY_OFFSET(CDB, 0x40);
7608 VERIFY_OFFSET(reserved8, 0x50);
7609 VERIFY_OFFSET(host_context_flags, 0x60);
7610 VERIFY_OFFSET(timeout_sec, 0x62);
7611 VERIFY_OFFSET(ReplyQueue, 0x64);
7612 VERIFY_OFFSET(reserved9, 0x65);
Stephen M. Cameron50a0dec2014-11-14 17:26:59 -06007613 VERIFY_OFFSET(tag, 0x68);
Matt Gatese1f7de02014-02-18 13:55:17 -06007614 VERIFY_OFFSET(host_addr, 0x70);
7615 VERIFY_OFFSET(CISS_LUN, 0x78);
7616 VERIFY_OFFSET(SG, 0x78 + 8);
7617#undef VERIFY_OFFSET
7618}
7619
Stephen M. Cameronedd16362009-12-08 14:09:11 -08007620module_init(hpsa_init);
7621module_exit(hpsa_cleanup);